-
Notifications
You must be signed in to change notification settings - Fork 0
/
Psy.result
11027 lines (11027 loc) · 581 KB
/
Psy.result
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
Comparison of the results it can be seen that 37
Comparison of the results it can be seen that the 28
Comparison of the results we can see that 17
Comparison of the results it can be observed that 13
Comparison of the results we can see that the 12
Comparison of the results we now turn to 11
Comparison of the results we see that the 11
Comparison of the results it can be observed that the 10
Comparison of the results point showed that at time 3 f1 3 10
Comparison of the results we report the 8
Comparison of the results we now turn to the 7
Comparison of the results we will focus on the 6
Comparison of the results and the 4757 6
Comparison of the results we will return to this 5
Comparison of the results it can also be seen that 5
Comparison of the results it can be seen that all 5
Comparison of the results we return to this 5
Comparison of the results did not reveal a significant difference 5
Comparison of the results we start by 4
Comparison of the results let us consider the 4
Comparison of the results for ease of 4
Comparison of the results there was an * cite- for result of other 4
Comparison of the results it can clearly be seen that the 4
Comparison of the results in the following we will 4
Comparison of the results we will discuss the 4
Comparison of the results we discuss the 4
Comparison of the results first we present the 4
Comparison of the results it could be seen that 4
Comparison of the results it can observe the 4
Comparison of the results we turn now to 3
Comparison of the results it is important to see 3
Comparison of the results to allow for a 3
Comparison of the results see cite- can be found in the 3
Comparison of the results it can be seen that for 3
Comparison of the results reveals that the 3
Comparison of the results it becomes clear that 3
Comparison of the results we can observe that 3
Comparison of the results we will first 3
Comparison of the results finally we also 3
Comparison of the results it can be seen that most 3
Comparison of the results one can see the 3
Comparison of the results cite- plots the 3
Comparison of the results we can see how the 3
Comparison of the results can be gained by 3
Comparison of the results however looking at the 3
Comparison of the results we turn to the 3
Comparison of the results in the following we present 3
Comparison of the results to summarize the 3
Comparison of the results is provided by 3
Comparison of the results weights indicated a significant 3
Comparison of the results it is shown that the 3
Comparison of the results it can be seen that a 3
Comparison of the results we report results for 3
Comparison of the results it can be seen that there is 3
Comparison of the results did not reveal significant differences 3
Comparison of the results we first present the 3
Comparison of the results as it is possible to see 3
Comparison of the results we will return to this point 3
Comparison of the results were made between the 3
Comparison of the results we also present the 3
Comparison of the results in turn how the nature of the 3
Comparison of the results was driven more by 3
Comparison of the results statistical differences in the 2 for 3
Comparison of the results time showed a significant main effect of 3
Comparison of the results we first discuss the 3
Comparison of the results we start with a 3
Comparison of the results b2 it was proven that this 3
Comparison of the results when we exclude the similar * we obtain 21 n 3
Comparison of the results we can also see the trend from the 3
Comparison of the results exhibited a general trend of 3
Comparison of the results df 1 p 005 showed that 3
Restatement of the aim or method in order to 309
Restatement of the aim or method was used to 211
Restatement of the aim or method we conducted a 166
Restatement of the aim or method we used the 165
Restatement of the aim or method based on the 153
Restatement of the aim or method were used to 146
Restatement of the aim or method were included in the 135
Restatement of the aim or method to examine the 122
Restatement of the aim or method to test the 105
Restatement of the aim or method was conducted to 97
Restatement of the aim or method we performed a 96
Restatement of the aim or method we used a 83
Restatement of the aim or method was conducted on the 83
Restatement of the aim or method we examined the 81
Restatement of the aim or method were conducted to 81
Restatement of the aim or method were excluded from the 78
Restatement of the aim or method was performed on the 74
Restatement of the aim or method for each of the 70
Restatement of the aim or method was conducted on 60
Restatement of the aim or method were used as 56
Restatement of the aim or method was conducted with 55
Restatement of the aim or method were included as 54
Restatement of the aim or method was used as a 53
Restatement of the aim or method in addition to 50
Restatement of the aim or method were entered as 48
Restatement of the aim or method was performed to 48
Restatement of the aim or method were asked to 47
Restatement of the aim or method we ran a 47
Restatement of the aim or method were removed from the 46
Restatement of the aim or method was used as the 45
Restatement of the aim or method was included as a 45
Restatement of the aim or method in addition we 44
Restatement of the aim or method were performed to 42
Restatement of the aim or method were performed on the 40
Restatement of the aim or method were conducted on the 40
Restatement of the aim or method was performed on 39
Restatement of the aim or method to this end we 39
Restatement of the aim or method was based on 39
Restatement of the aim or method we examined whether the 39
Restatement of the aim or method we predicted that 38
Restatement of the aim or method we decided to 38
Restatement of the aim or method to explore the 37
Restatement of the aim or method we compared the 37
Restatement of the aim or method focused on the 36
Restatement of the aim or method was applied to the 36
Restatement of the aim or method we conducted a 2 36
Restatement of the aim or method was conducted to examine the 36
Restatement of the aim or method we conducted an 35
Restatement of the aim or method to determine whether the 35
Restatement of the aim or method on the basis of 35
Restatement of the aim or method to determine the 35
Restatement of the aim or method we first examined the 35
Restatement of the aim or method was used to test the 34
Restatement of the aim or method was used to examine the 34
Restatement of the aim or method were conducted with 32
Restatement of the aim or method was performed with 32
Restatement of the aim or method is based on the 32
Restatement of the aim or method the extent to which 32
Restatement of the aim or method were entered into the 31
Restatement of the aim or method the relation between 30
Restatement of the aim or method was carried out 30
Restatement of the aim or method by subtracting the 30
Restatement of the aim or method were conducted using 30
Restatement of the aim or method was based on the 30
Restatement of the aim or method were carried out 30
Restatement of the aim or method was applied to 29
Restatement of the aim or method were conducted for each 29
Restatement of the aim or method was included in the 29
Restatement of the aim or method prior to the 29
Restatement of the aim or method we used the same 28
Restatement of the aim or method in order to examine the 28
Restatement of the aim or method we explored the 28
Restatement of the aim or method were conducted to examine the 28
Restatement of the aim or method to determine whether 28
Restatement of the aim or method to examine whether 28
Restatement of the aim or method next we examined the 28
Restatement of the aim or method were conducted on 28
Restatement of the aim or method we looked at the 27
Restatement of the aim or method we also examined 27
Restatement of the aim or method we also examined the 27
Restatement of the aim or method were included in this 27
Restatement of the aim or method by means of 26
Restatement of the aim or method we carried out a 26
Restatement of the aim or method we focused on the 26
Restatement of the aim or method was conducted for the 26
Restatement of the aim or method to examine whether the 26
Restatement of the aim or method was defined as the 26
Restatement of the aim or method by using the 26
Restatement of the aim or method on the basis of the 26
Restatement of the aim or method the extent to which the 26
Restatement of the aim or method was carried out with 26
Restatement of the aim or method were subjected to a 25
Restatement of the aim or method were conducted in 25
Restatement of the aim or method for each of the four 25
Restatement of the aim or method in order to further 25
Restatement of the aim or method to test this 24
Restatement of the aim or method was conducted with the 24
Restatement of the aim or method according to their 24
Restatement of the aim or method were carried out to 24
Restatement of the aim or method in order to test the 24
Restatement of the aim or method to test our 24
Restatement of the aim or method were performed on 23
Restatement of the aim or method to further explore the 23
Restatement of the aim or method separately for each 23
Restatement of the aim or method were excluded from 23
Restatement of the aim or method allowed us to 23
Restatement of the aim or method we repeated the 23
Restatement of the aim or method were coded as 23
Restatement of the aim or method and the two 23
Restatement of the aim or method were performed using 23
Restatement of the aim or method to analyze the 23
Restatement of the aim or method first we examined the 23
Restatement of the aim or method were entered in 22
Restatement of the aim or method were submitted to a 22
Restatement of the aim or method we conducted the 22
Restatement of the aim or method used in the 22
Restatement of the aim or method to account for 22
Restatement of the aim or method were included in 22
Restatement of the aim or method was conducted using 22
Restatement of the aim or method was performed using the 22
Restatement of the aim or method was used for 21
Restatement of the aim or method was entered as a 21
Restatement of the aim or method were compared to the 21
Restatement of the aim or method were performed with 20
Restatement of the aim or method was performed with the 20
Restatement of the aim or method as well as their 20
Restatement of the aim or method it was expected that 20
Restatement of the aim or method to ensure that the 20
Restatement of the aim or method was performed using 20
Restatement of the aim or method was conducted for each 20
Restatement of the aim or method in a first step we 19
Restatement of the aim or method finally we examined the 19
Restatement of the aim or method we then examined the 19
Restatement of the aim or method were divided into two 19
Restatement of the aim or method served as the 19
Restatement of the aim or method was added to the 19
Restatement of the aim or method were submitted to a 2 19
Restatement of the aim or method were subjected to 18
Restatement of the aim or method were entered into a 18
Restatement of the aim or method we considered the 18
Restatement of the aim or method to account for the 18
Restatement of the aim or method we examined whether 18
Restatement of the aim or method based on their 18
Restatement of the aim or method was run on the 18
Restatement of the aim or method we were able to 18
Restatement of the aim or method was conducted to test the 18
Restatement of the aim or method a series of 18
Restatement of the aim or method we tested whether 18
Restatement of the aim or method we tested whether the 18
Restatement of the aim or method it is necessary to 18
Restatement of the aim or method we conducted the same 18
Restatement of the aim or method it was decided to 18
Restatement of the aim or method refers to the 18
Restatement of the aim or method were performed for each 18
Restatement of the aim or method was conducted to examine 18
Restatement of the aim or method was designed to 18
Restatement of the aim or method to be equal across 18
Restatement of the aim or method to identify the 18
Restatement of the aim or method using the same 17
Restatement of the aim or method this allowed us to 17
Restatement of the aim or method were excluded from further 17
Restatement of the aim or method this was done to 17
Restatement of the aim or method were allowed to 17
Restatement of the aim or method we first examined 17
Restatement of the aim or method this was done by 17
Restatement of the aim or method given that the 17
Restatement of the aim or method were conducted for the 17
Restatement of the aim or method next we examined whether 17
Restatement of the aim or method we next examined the 17
Restatement of the aim or method was examined by 17
Restatement of the aim or method was removed from the 17
Restatement of the aim or method we focused on 17
Restatement of the aim or method we performed an 17
Restatement of the aim or method we tested the 17
Restatement of the aim or method were regressed on 17
Restatement of the aim or method were based on 17
Restatement of the aim or method based on these 17
Restatement of the aim or method we conducted two 17
Restatement of the aim or method was conducted using the 17
Restatement of the aim or method were used in the 17
Restatement of the aim or method is used to 17
Restatement of the aim or method a set of 16
Restatement of the aim or method based on a 16
Restatement of the aim or method is based on 16
Restatement of the aim or method had to be 16
Restatement of the aim or method we then conducted a 16
Restatement of the aim or method we expected that 16
Restatement of the aim or method we applied a 16
Restatement of the aim or method produced by the 16
Restatement of the aim or method was used as 16
Restatement of the aim or method to address the 16
Restatement of the aim or method were based on the 16
Restatement of the aim or method were conducted for 16
Restatement of the aim or method was to examine the 16
Restatement of the aim or method in order to explore the 16
Restatement of the aim or method participated in the 16
Restatement of the aim or method by means of a 16
Restatement of the aim or method was run to 16
Restatement of the aim or method we added the 16
Restatement of the aim or method was used for the 15
Restatement of the aim or method were carried out with 15
Restatement of the aim or method were used for the 15
Restatement of the aim or method was performed for the 15
Restatement of the aim or method were included in a 15
Restatement of the aim or method were conducted to examine 15
Restatement of the aim or method were performed for the 15
Restatement of the aim or method were extracted from the 15
Restatement of the aim or method in two ways 15
Restatement of the aim or method was carried out on the 15
Restatement of the aim or method we expected that the 15
Restatement of the aim or method was entered into the 15
Restatement of the aim or method to further examine the 15
Restatement of the aim or method in order to determine the 15
Restatement of the aim or method in order to determine whether 15
Restatement of the aim or method we did not include 15
Restatement of the aim or method were conducted with the 15
Restatement of the aim or method were used for 15
Restatement of the aim or method was performed for each 15
Restatement of the aim or method were entered in the 15
Restatement of the aim or method we also conducted a 15
Restatement of the aim or method were submitted to 14
Restatement of the aim or method to determine if the 14
Restatement of the aim or method we tested a 14
Restatement of the aim or method were conducted in order to 14
Restatement of the aim or method we conducted a series of 14
Restatement of the aim or method were not included in the 14
Restatement of the aim or method was compared to the 14
Restatement of the aim or method whether there were any 14
Restatement of the aim or method were performed with the 14
Restatement of the aim or method we divided the 14
Restatement of the aim or method and for each 14
Restatement of the aim or method were run to 14
Restatement of the aim or method were conducted using the 14
Restatement of the aim or method were added to the 14
Restatement of the aim or method we carried out 14
Restatement of the aim or method we assumed that 14
Restatement of the aim or method was used in the 14
Restatement of the aim or method was used to determine the 14
Restatement of the aim or method are based on 14
Restatement of the aim or method to do this we 14
Restatement of the aim or method were performed in 14
Restatement of the aim or method were used to examine the 14
Restatement of the aim or method was conducted in order to 14
Restatement of the aim or method we first conducted a 13
Restatement of the aim or method we asked whether the 13
Restatement of the aim or method it was possible to 13
Restatement of the aim or method so that the 13
Restatement of the aim or method by computing the 13
Restatement of the aim or method we conducted a repeated 13
Restatement of the aim or method to ensure that 13
Restatement of the aim or method is defined as the 13
Restatement of the aim or method we entered the 13
Restatement of the aim or method it was necessary to 13
Restatement of the aim or method was entered as the 13
Restatement of the aim or method from the same 13
Restatement of the aim or method taking into account the 13
Restatement of the aim or method to test this we 13
Restatement of the aim or method was performed in order to 13
Restatement of the aim or method to determine if 13
Restatement of the aim or method was fitted to the 13
Restatement of the aim or method were performed using the 13
Restatement of the aim or method we followed the 13
Restatement of the aim or method whether or not the 13
Restatement of the aim or method were compared with the 13
Restatement of the aim or method we performed a 2 13
Restatement of the aim or method in the next step we 12
Restatement of the aim or method were examined using 12
Restatement of the aim or method in order to examine 12
Restatement of the aim or method were defined as 12
Restatement of the aim or method we also examined whether 12
Restatement of the aim or method took part in the 12
Restatement of the aim or method for the purpose of 12
Restatement of the aim or method was divided into three 12
Restatement of the aim or method for each of these 12
Restatement of the aim or method to address this 12
Restatement of the aim or method it was assumed that 12
Restatement of the aim or method we therefore decided to 12
Restatement of the aim or method were used as the 12
Restatement of the aim or method were considered as 12
Restatement of the aim or method to describe the 12
Restatement of the aim or method were divided into 12
Restatement of the aim or method were considered to be 12
Restatement of the aim or method in order to better understand the 12
Restatement of the aim or method was regressed on the 12
Restatement of the aim or method we applied the 12
Restatement of the aim or method with the following 12
Restatement of the aim or method the next step was to 12
Restatement of the aim or method was used to examine 12
Restatement of the aim or method for each of the two 12
Restatement of the aim or method are used to 12
Restatement of the aim or method was conducted for 12
Restatement of the aim or method we employed a 12
Restatement of the aim or method for this purpose we 11
Restatement of the aim or method were entered into 11
Restatement of the aim or method next we examined 11
Restatement of the aim or method in the first step we 11
Restatement of the aim or method we first examined whether the 11
Restatement of the aim or method by the number of 11
Restatement of the aim or method to a 2 11
Restatement of the aim or method it was not possible to 11
Restatement of the aim or method we adopted the 11
Restatement of the aim or method was composed of 11
Restatement of the aim or method we constructed a 11
Restatement of the aim or method was calculated for each 11
Restatement of the aim or method this was done in order to 11
Restatement of the aim or method were conducted separately for 11
Restatement of the aim or method to understand the 11
Restatement of the aim or method was defined as 11
Restatement of the aim or method in which a 11
Restatement of the aim or method was excluded from the 11
Restatement of the aim or method as the difference between the 11
Restatement of the aim or method was carried out using the 11
Restatement of the aim or method were eliminated from the 11
Restatement of the aim or method were estimated using the 11
Restatement of the aim or method we also conducted 11
Restatement of the aim or method to test whether the 11
Restatement of the aim or method was performed to examine the 11
Restatement of the aim or method were used to examine 11
Restatement of the aim or method was carried out in 11
Restatement of the aim or method the first set of 11
Restatement of the aim or method consisted of a 11
Restatement of the aim or method in a second 11
Restatement of the aim or method to create a 11
Restatement of the aim or method in order to determine whether the 11
Restatement of the aim or method was used to analyze the 11
Restatement of the aim or method was modeled as a 11
Restatement of the aim or method in a next step we 11
Restatement of the aim or method we used an 11
Restatement of the aim or method were added as 11
Restatement of the aim or method were applied to the 11
Restatement of the aim or method was tested by 11
Restatement of the aim or method was carried out to 11
Restatement of the aim or method was used in order to 11
Restatement of the aim or method we conducted a 3 11
Restatement of the aim or method to calculate the 11
Restatement of the aim or method as a first step we 11
Restatement of the aim or method was made up of 11
Restatement of the aim or method were carried out for 10
Restatement of the aim or method were used to test the 10
Restatement of the aim or method each of these 10
Restatement of the aim or method we also performed a 10
Restatement of the aim or method whether there was a 10
Restatement of the aim or method we selected the 10
Restatement of the aim or method we focus on the 10
Restatement of the aim or method were conducted to determine whether 10
Restatement of the aim or method were fit to the 10
Restatement of the aim or method we use the 10
Restatement of the aim or method was considered as a 10
Restatement of the aim or method was calculated as the 10
Restatement of the aim or method we chose to 10
Restatement of the aim or method separately for the 10
Restatement of the aim or method we next examined whether 10
Restatement of the aim or method we then performed a 10
Restatement of the aim or method were examined by 10
Restatement of the aim or method was conducted to explore the 10
Restatement of the aim or method to test whether 10
Restatement of the aim or method were compared to 10
Restatement of the aim or method were obtained by 10
Restatement of the aim or method was set to 10
Restatement of the aim or method was calculated to 10
Restatement of the aim or method it was important to 10
Restatement of the aim or method were examined for 10
Restatement of the aim or method we used the following 10
Restatement of the aim or method at the end of each 10
Restatement of the aim or method was used for all 10
Restatement of the aim or method we chose the 10
Restatement of the aim or method by means of the 10
Restatement of the aim or method were randomly assigned to 10
Restatement of the aim or method we first ran a 10
Restatement of the aim or method the order of the 10
Restatement of the aim or method was conducted in 10
Restatement of the aim or method in the first step 10
Restatement of the aim or method first we conducted a 10
Restatement of the aim or method were also included in the 9
Restatement of the aim or method and the second 9
Restatement of the aim or method we calculated the 9
Restatement of the aim or method were subjected to a 2 9
Restatement of the aim or method next we performed a 9
Restatement of the aim or method to see if the 9
Restatement of the aim or method in more detail 9
Restatement of the aim or method divided by the total number of 9
Restatement of the aim or method were excluded from this 9
Restatement of the aim or method was run with 9
Restatement of the aim or method as the between 9
Restatement of the aim or method to take into account the 9
Restatement of the aim or method we then conducted 9
Restatement of the aim or method we assumed that the 9
Restatement of the aim or method were entered into an 9
Restatement of the aim or method we included the 9
Restatement of the aim or method were taken into account 9
Restatement of the aim or method was employed to 9
Restatement of the aim or method were required to 9
Restatement of the aim or method was added as a 9
Restatement of the aim or method we conducted separate 9
Restatement of the aim or method were calculated between the 9
Restatement of the aim or method and then the 9
Restatement of the aim or method we first performed a 9
Restatement of the aim or method were derived from the 9
Restatement of the aim or method were also asked to 9
Restatement of the aim or method we asked whether 9
Restatement of the aim or method was divided into two 9
Restatement of the aim or method with the aim of 9
Restatement of the aim or method to do so we 9
Restatement of the aim or method using a 2 9
Restatement of the aim or method so as to 9
Restatement of the aim or method we examine the 9
Restatement of the aim or method we controlled for 9
Restatement of the aim or method were used to analyze the 9
Restatement of the aim or method were performed to test the 9
Restatement of the aim or method was taken as the 9
Restatement of the aim or method we checked for 9
Restatement of the aim or method whether there is a 9
Restatement of the aim or method were controlled for 9
Restatement of the aim or method the first step was to 9
Restatement of the aim or method were carried out using 9
Restatement of the aim or method for this purpose 9
Restatement of the aim or method by examining the 9
Restatement of the aim or method in addition we also 9
Restatement of the aim or method would moderate the 9
Restatement of the aim or method were included for 9
Restatement of the aim or method in order to explore whether 9
Restatement of the aim or method was also performed to 9
Restatement of the aim or method were conducted in the 8
Restatement of the aim or method were carried out on 8
Restatement of the aim or method was examined using 8
Restatement of the aim or method we determined the 8
Restatement of the aim or method in this way 8
Restatement of the aim or method we carried out an 8
Restatement of the aim or method as the difference between 8
Restatement of the aim or method was then used to 8
Restatement of the aim or method as a between 8
Restatement of the aim or method were calculated for each 8
Restatement of the aim or method to facilitate the 8
Restatement of the aim or method was fit to the 8
Restatement of the aim or method we conducted two separate 8
Restatement of the aim or method to control for 8
Restatement of the aim or method were performed for 8
Restatement of the aim or method finally we conducted a 8
Restatement of the aim or method the purpose of this 8
Restatement of the aim or method first we examined 8
Restatement of the aim or method the same number of 8
Restatement of the aim or method to obtain a 8
Restatement of the aim or method in a 2 2 8
Restatement of the aim or method next we conducted a 8
Restatement of the aim or method was used to explore the 8
Restatement of the aim or method to one of the 8
Restatement of the aim or method we fit a 8
Restatement of the aim or method were estimated using 8
Restatement of the aim or method to explain the 8
Restatement of the aim or method to test for 8
Restatement of the aim or method was defined as a 8
Restatement of the aim or method we asked the 8
Restatement of the aim or method to determine the number of 8
Restatement of the aim or method were entered as a 8
Restatement of the aim or method to test these 8
Restatement of the aim or method one for each 8
Restatement of the aim or method therefore we decided to 8
Restatement of the aim or method were conducted for each of the 8
Restatement of the aim or method to the number of 8
Restatement of the aim or method were obtained from the 8
Restatement of the aim or method we performed an additional 8
Restatement of the aim or method was examined using a 8
Restatement of the aim or method to explore whether the 8
Restatement of the aim or method was used to determine 8
Restatement of the aim or method were corrected for 8
Restatement of the aim or method in order to understand the 8
Restatement of the aim or method added to the 8
Restatement of the aim or method in a second step 8
Restatement of the aim or method we also included 8
Restatement of the aim or method instead of the 8
Restatement of the aim or method we performed a repeated 8
Restatement of the aim or method in the subsequent 8
Restatement of the aim or method were selected for 8
Restatement of the aim or method to explore this 8
Restatement of the aim or method to predict the 8
Restatement of the aim or method were averaged across the 8
Restatement of the aim or method to provide a 8
Restatement of the aim or method we conducted a 2 2 8
Restatement of the aim or method and found that the 8
Restatement of the aim or method was carried out in order to 8
Restatement of the aim or method was compared with the 8
Restatement of the aim or method was to examine whether 8
Restatement of the aim or method therefore we used 8
Restatement of the aim or method in order to explore 8
Restatement of the aim or method of the previous 8
Restatement of the aim or method were used to determine 8
Restatement of the aim or method included the following 8
Restatement of the aim or method was whether the 8
Restatement of the aim or method were used in 8
Restatement of the aim or method was examined as a 8
Restatement of the aim or method to make the 8
Restatement of the aim or method predicted that the 8
Restatement of the aim or method we conducted a second 8
Restatement of the aim or method were compared between the 8
Restatement of the aim or method were subjected to an 8
Restatement of the aim or method by conducting a 8
Restatement of the aim or method we also included the 8
Restatement of the aim or method this allows us to 8
Restatement of the aim or method we fitted the 8
Restatement of the aim or method were calculated based on the 8
Restatement of the aim or method the first factor 8
Restatement of the aim or method was to examine 8
Restatement of the aim or method was used in 8
Restatement of the aim or method to better understand the 8
Restatement of the aim or method were applied to 8
Restatement of the aim or method as such we 8
Restatement of the aim or method was used with 8
Restatement of the aim or method was also used to 8
Restatement of the aim or method we decided to use 8
Restatement of the aim or method the degree to which 8
Restatement of the aim or method were run on 8
Restatement of the aim or method were conducted for the two 8
Restatement of the aim or method was subjected to a 8
Restatement of the aim or method in a second step we 8
Restatement of the aim or method above and below the mean 8
Restatement of the aim or method we predicted that the 8
Restatement of the aim or method to check the 8
Restatement of the aim or method was carried out using 8
Restatement of the aim or method were performed in order to 8
Restatement of the aim or method we also performed 8
Restatement of the aim or method we fitted a 8
Restatement of the aim or method were performed to examine 7
Restatement of the aim or method were carried out between 7
Restatement of the aim or method in order to be able to 7
Restatement of the aim or method we ran an 7
Restatement of the aim or method was divided into 7
Restatement of the aim or method was subtracted from the 7
Restatement of the aim or method to represent the 7
Restatement of the aim or method the purpose of 7
Restatement of the aim or method to rule out this 7
Restatement of the aim or method was calculated for 7
Restatement of the aim or method was tested using 7
Restatement of the aim or method were used to explore 7
Restatement of the aim or method using the following 7
Restatement of the aim or method was asked to 7
Restatement of the aim or method based on the number of 7
Restatement of the aim or method was to test the 7
Restatement of the aim or method by subtracting the mean 7
Restatement of the aim or method the purpose of the 7
Restatement of the aim or method of interest were 7
Restatement of the aim or method for the following 7
Restatement of the aim or method between each of the 7
Restatement of the aim or method were based on a 7
Restatement of the aim or method in a first step 7
Restatement of the aim or method we performed the same 7
Restatement of the aim or method we ran separate 7
Restatement of the aim or method finally we examined 7
Restatement of the aim or method were screened for 7
Restatement of the aim or method was performed for 7
Restatement of the aim or method separately for the two 7
Restatement of the aim or method was regressed on 7
Restatement of the aim or method were divided into three 7
Restatement of the aim or method the set of 7
Restatement of the aim or method as well as to 7
Restatement of the aim or method served as a 7
Restatement of the aim or method allows us to 7
Restatement of the aim or method were carried out for the 7
Restatement of the aim or method was compared between the 7
Restatement of the aim or method in order to test our 7
Restatement of the aim or method to what extent the 7
Restatement of the aim or method who had been 7
Restatement of the aim or method three types of 7
Restatement of the aim or method was conducted to identify 7
Restatement of the aim or method in order to avoid 7
Restatement of the aim or method was used as an 7
Restatement of the aim or method was obtained by 7
Restatement of the aim or method were also used to 7
Restatement of the aim or method we ran the same 7
Restatement of the aim or method were conducted by 7
Restatement of the aim or method to determine which 7
Restatement of the aim or method the remainder of the 7
Restatement of the aim or method was conducted to determine if 7
Restatement of the aim or method included as a 7
Restatement of the aim or method et al cite- to 7
Restatement of the aim or method were conducted to test the 7
Restatement of the aim or method consisted of three 7
Restatement of the aim or method applied to the 7
Restatement of the aim or method were performed to examine the 7
Restatement of the aim or method were compared with 7
Restatement of the aim or method was measured by 7
Restatement of the aim or method we fit the 7
Restatement of the aim or method were included as a 7
Restatement of the aim or method the first one 7
Restatement of the aim or method in order to obtain 7
Restatement of the aim or method we then proceeded to 7
Restatement of the aim or method a subset of 7
Restatement of the aim or method was selected as the 7
Restatement of the aim or method was also included as a 7
Restatement of the aim or method finally we examined whether 7
Restatement of the aim or method it was predicted that 7
Restatement of the aim or method was conducted by 7
Restatement of the aim or method were used to explore the 7
Restatement of the aim or method we next examined 7
Restatement of the aim or method in order to identify the 7
Restatement of the aim or method to be equal 7
Restatement of the aim or method in the following order 7
Restatement of the aim or method was conducted in the 7
Restatement of the aim or method we checked the 7
Restatement of the aim or method in order to * we used the 7
Restatement of the aim or method was set to p 005 7
Restatement of the aim or method in the same way as 7
Restatement of the aim or method was tested using the 7
Restatement of the aim or method after the end of the 7
Restatement of the aim or method were expected to be 7
Restatement of the aim or method was used in this 7
Restatement of the aim or method we checked whether the 7
Restatement of the aim or method was conducted on these 7
Restatement of the aim or method we split the 7
Restatement of the aim or method focuses on the 7
Restatement of the aim or method was used to identify 7
Restatement of the aim or method we followed the same 7
Restatement of the aim or method were included to 7
Restatement of the aim or method were asked to indicate 7
Restatement of the aim or method first we examined whether 7
Restatement of the aim or method in the same manner 7
Restatement of the aim or method in order to examine whether 7
Restatement of the aim or method in the first step of the 7
Restatement of the aim or method were carried out in order to 7
Restatement of the aim or method was conducted to determine whether 7
Restatement of the aim or method was used to predict 7
Restatement of the aim or method we further examined the 7
Restatement of the aim or method was entered in 7
Restatement of the aim or method to estimate the 7
Restatement of the aim or method were entered in the first step 7
Restatement of the aim or method we ran the 7
Restatement of the aim or method it was expected that the 7
Restatement of the aim or method in particular we 7
Restatement of the aim or method were used to determine the 7
Restatement of the aim or method were carried out to examine the 7
Restatement of the aim or method analyses were not performed 7
Restatement of the aim or method predicted that there would be a 7
Restatement of the aim or method we calculated a 6
Restatement of the aim or method coded as 1 6
Restatement of the aim or method was coded as a 6
Restatement of the aim or method it is not possible to 6
Restatement of the aim or method with each of the 6
Restatement of the aim or method was set at 005 6
Restatement of the aim or method finally in order to 6
Restatement of the aim or method from the onset of the 6
Restatement of the aim or method were regressed on the 6
Restatement of the aim or method we carried out two 6
Restatement of the aim or method we controlled for the 6
Restatement of the aim or method we first examined whether 6
Restatement of the aim or method defined as the 6
Restatement of the aim or method were tested for 6
Restatement of the aim or method in order to * we conducted a 6
Restatement of the aim or method was based on a 6
Restatement of the aim or method of a given 6
Restatement of the aim or method the ability of the 6
Restatement of the aim or method for the present 6
Restatement of the aim or method was performed by 6
Restatement of the aim or method in the center of the 6
Restatement of the aim or method were corrected using 6
Restatement of the aim or method were followed up by 6
Restatement of the aim or method to focus on the 6
Restatement of the aim or method were conducted to test for 6
Restatement of the aim or method we aimed to 6
Restatement of the aim or method was performed to examine 6
Restatement of the aim or method in order to further explore the 6
Restatement of the aim or method we consider the 6
Restatement of the aim or method were selected based on 6
Restatement of the aim or method was also conducted to 6
Restatement of the aim or method is the number of 6
Restatement of the aim or method we excluded the 6
Restatement of the aim or method from the initial 6
Restatement of the aim or method was not considered in the 6
Restatement of the aim or method was also included in the 6
Restatement of the aim or method was included in 6
Restatement of the aim or method we looked at 6
Restatement of the aim or method of 005 was used for all 6
Restatement of the aim or method therefore we used the 6
Restatement of the aim or method is based on a 6
Restatement of the aim or method we also examined whether the 6
Restatement of the aim or method to further explore this 6
Restatement of the aim or method in order to establish 6
Restatement of the aim or method rated on a 6
Restatement of the aim or method according to the following 6
Restatement of the aim or method were obtained from 6
Restatement of the aim or method was coded as 6
Restatement of the aim or method was restricted to 6
Restatement of the aim or method this was done 6
Restatement of the aim or method we also looked at 6
Restatement of the aim or method on which the 6
Restatement of the aim or method we also predicted that 6
Restatement of the aim or method were asked to provide 6
Restatement of the aim or method were submitted to a 2 2 6
Restatement of the aim or method we tested for 6
Restatement of the aim or method were classified into the 6
Restatement of the aim or method the remaining two 6
Restatement of the aim or method responded to the 6
Restatement of the aim or method using a repeated 6
Restatement of the aim or method we next examined how 6
Restatement of the aim or method we generated 1000 6
Restatement of the aim or method was determined by 6
Restatement of the aim or method to determine whether there were 6
Restatement of the aim or method to this end 6
Restatement of the aim or method explored the role of 6
Restatement of the aim or method was used in all 6
Restatement of the aim or method were then used to 6
Restatement of the aim or method above and below the 6
Restatement of the aim or method were entered in a 6
Restatement of the aim or method we ran a repeated 6
Restatement of the aim or method we performed the 6
Restatement of the aim or method were used for all 6
Restatement of the aim or method was carried out for 6
Restatement of the aim or method coded as 1 for 6
Restatement of the aim or method the second set of 6
Restatement of the aim or method the final set of 6
Restatement of the aim or method we also used 6
Restatement of the aim or method referred to as the 6
Restatement of the aim or method was conducted separately for 6
Restatement of the aim or method in order to make 6
Restatement of the aim or method by the total number of 6
Restatement of the aim or method by dividing the number of 6
Restatement of the aim or method were used in this 6
Restatement of the aim or method we further conducted a 6
Restatement of the aim or method were carried out on the 6
Restatement of the aim or method were assigned to the 6
Restatement of the aim or method was expected to be 6
Restatement of the aim or method were carried out in 6
Restatement of the aim or method were recruited from 6
Restatement of the aim or method were conducted to examine whether 6
Restatement of the aim or method and found that 6
Restatement of the aim or method was conducted to predict 6
Restatement of the aim or method were examined using a 6
Restatement of the aim or method by applying the 6
Restatement of the aim or method were published between 6
Restatement of the aim or method was performed to determine 6
Restatement of the aim or method was entered in the 6
Restatement of the aim or method were examined with 6
Restatement of the aim or method was derived from the 6
Restatement of the aim or method we carried out the 6
Restatement of the aim or method was entered as 6
Restatement of the aim or method and whether the 6
Restatement of the aim or method a subset of the 6
Restatement of the aim or method were run for each 6
Restatement of the aim or method which of the 6
Restatement of the aim or method is composed of 6
Restatement of the aim or method were adjusted using the 6
Restatement of the aim or method were included in the present 6
Restatement of the aim or method a second set of 6
Restatement of the aim or method were calculated for the 6
Restatement of the aim or method to rule out the 6
Restatement of the aim or method was excluded due to 6
Restatement of the aim or method were carried out with the 6
Restatement of the aim or method as well as all 6
Restatement of the aim or method we included a 6
Restatement of the aim or method we performed two 6
Restatement of the aim or method were entered in a first step 6
Restatement of the aim or method first we looked at the 6
Restatement of the aim or method we took the 6
Restatement of the aim or method we also tested the 6
Restatement of the aim or method was defined by the 6
Restatement of the aim or method were conducted to determine if 6
Restatement of the aim or method we checked whether 6
Restatement of the aim or method in order to test 6
Restatement of the aim or method it was proposed that 6
Restatement of the aim or method was compared to a 6
Restatement of the aim or method we first ran 6
Restatement of the aim or method have been used to 6
Restatement of the aim or method and used the 6
Restatement of the aim or method to test the mediating 6
Restatement of the aim or method were performed separately for 6
Restatement of the aim or method were replaced with the 6
Restatement of the aim or method in the third 6
Restatement of the aim or method were compared to a 6
Restatement of the aim or method was chosen as the 6
Restatement of the aim or method was set as the 6
Restatement of the aim or method we hypothesized that 6
Restatement of the aim or method to interpret the 6
Restatement of the aim or method to examine how 6
Restatement of the aim or method was used to analyze 6
Restatement of the aim or method was adopted to 6
Restatement of the aim or method based on our 6
Restatement of the aim or method carried out in 6
Restatement of the aim or method was conducted to examine whether the 6
Restatement of the aim or method was conducted to determine the 6
Restatement of the aim or method entered into the 6
Restatement of the aim or method we conducted a * to test the 6
Restatement of the aim or method were also included 6
Restatement of the aim or method to verify the 6
Restatement of the aim or method were then asked to 6
Restatement of the aim or method was conducted on ratings of 6
Restatement of the aim or method and number of roles as 6
Restatement of the aim or method we extended the * as well as their 6
Restatement of the aim or method et al cite- for a 5
Restatement of the aim or method the aim of 5
Restatement of the aim or method as much as possible 5
Restatement of the aim or method were conducted for all 5
Restatement of the aim or method if they had 5
Restatement of the aim or method we labeled this 5
Restatement of the aim or method we employed the 5
Restatement of the aim or method was included as 5
Restatement of the aim or method and the following 5
Restatement of the aim or method was coded as 0 5
Restatement of the aim or method 1 2 and 3 5
Restatement of the aim or method in order to rule out 5
Restatement of the aim or method were conducted using a 5
Restatement of the aim or method were conducted to test 5
Restatement of the aim or method first and second 5
Restatement of the aim or method was used to calculate the 5
Restatement of the aim or method were allowed to vary across 5
Restatement of the aim or method is designed to 5
Restatement of the aim or method to distinguish between the 5
Restatement of the aim or method we hypothesized that the 5
Restatement of the aim or method they were asked to 5
Restatement of the aim or method was performed to test the 5
Restatement of the aim or method was conducted to further 5
Restatement of the aim or method in the second step we 5
Restatement of the aim or method two or three 5
Restatement of the aim or method were used for each 5
Restatement of the aim or method were employed to 5
Restatement of the aim or method in a second step the 5
Restatement of the aim or method we began by 5
Restatement of the aim or method we chose to include 5
Restatement of the aim or method we averaged the 5
Restatement of the aim or method aspects of the 5
Restatement of the aim or method needs to be 5
Restatement of the aim or method has been carried out 5
Restatement of the aim or method in the next step 5
Restatement of the aim or method a 2 2 2 5
Restatement of the aim or method we examined this 5
Restatement of the aim or method finally we examined whether the 5
Restatement of the aim or method we also compared the 5
Restatement of the aim or method ratings for each 5
Restatement of the aim or method were instructed to 5
Restatement of the aim or method it was assumed that the 5
Restatement of the aim or method was performed on these 5
Restatement of the aim or method at each of the 5
Restatement of the aim or method to deal with 5
Restatement of the aim or method we next examined whether the 5
Restatement of the aim or method entered in the 5
Restatement of the aim or method we performed two separate 5
Restatement of the aim or method and the same 5
Restatement of the aim or method were calculated to 5
Restatement of the aim or method consisted of all 5
Restatement of the aim or method were also performed to 5
Restatement of the aim or method in order to * we performed a 5
Restatement of the aim or method were controlled for in 5
Restatement of the aim or method belonging to the same 5
Restatement of the aim or method the time of 5
Restatement of the aim or method we first explored the 5
Restatement of the aim or method we next conducted a 5
Restatement of the aim or method and in order to 5
Restatement of the aim or method to that end we 5
Restatement of the aim or method for each set of 5
Restatement of the aim or method were conducted separately for each 5
Restatement of the aim or method and the between 5
Restatement of the aim or method of 005 was used 5
Restatement of the aim or method on the basis of a 5
Restatement of the aim or method consisted of two 5
Restatement of the aim or method using a 2 2 5
Restatement of the aim or method at the end of this 5
Restatement of the aim or method were placed in the 5
Restatement of the aim or method are used as 5
Restatement of the aim or method were carried out using the 5
Restatement of the aim or method was considered to be 5
Restatement of the aim or method were determined by 5
Restatement of the aim or method finally we performed a 5
Restatement of the aim or method variables were the 5
Restatement of the aim or method of the correct 5
Restatement of the aim or method were checked for 5
Restatement of the aim or method were estimated from 5
Restatement of the aim or method was the same as the 5
Restatement of the aim or method were compared across the 5
Restatement of the aim or method participated in this 5
Restatement of the aim or method with a repeated 5
Restatement of the aim or method in four different 5
Restatement of the aim or method to examine this 5
Restatement of the aim or method we compute the 5
Restatement of the aim or method were entered into a 2 5
Restatement of the aim or method were submitted to separate 5
Restatement of the aim or method as well as those 5
Restatement of the aim or method we further examined whether 5
Restatement of the aim or method to address this we 5
Restatement of the aim or method to take part in the 5
Restatement of the aim or method were submitted to an 5
Restatement of the aim or method was also carried out to 5
Restatement of the aim or method a two-way repeated 5
Restatement of the aim or method was conducted of the 5
Restatement of the aim or method on the basis of their 5
Restatement of the aim or method we first tested the 5
Restatement of the aim or method for this purpose the 5
Restatement of the aim or method we sought to 5
Restatement of the aim or method on each of these 5
Restatement of the aim or method we conducted three 5
Restatement of the aim or method with number of 5
Restatement of the aim or method to this end the 5
Restatement of the aim or method we need to 5
Restatement of the aim or method was performed between the 5
Restatement of the aim or method was tested in the 5
Restatement of the aim or method were classified into four 5
Restatement of the aim or method were presented with 5
Restatement of the aim or method were used to compute 5
Restatement of the aim or method were estimated for the 5
Restatement of the aim or method as a next step 5
Restatement of the aim or method next we explored the 5
Restatement of the aim or method et al cite- and 5
Restatement of the aim or method in order to find 5
Restatement of the aim or method we also ran 5
Restatement of the aim or method to create the 5
Restatement of the aim or method for the purpose of this 5
Restatement of the aim or method since the number of 5
Restatement of the aim or method had to be excluded from 5
Restatement of the aim or method was to examine whether the 5
Restatement of the aim or method we conducted a 2 2 2 5
Restatement of the aim or method were used for further 5
Restatement of the aim or method will be used to 5
Restatement of the aim or method was verified using 5
Restatement of the aim or method in the following way 5
Restatement of the aim or method to better understand 5
Restatement of the aim or method to control the 5
Restatement of the aim or method entered as a 5
Restatement of the aim or method to what extent 5
Restatement of the aim or method were centered on the 5
Restatement of the aim or method to further examine 5
Restatement of the aim or method was estimated using 5
Restatement of the aim or method was estimated using the 5
Restatement of the aim or method in order to test this 5
Restatement of the aim or method with and without the 5
Restatement of the aim or method for each of our 5
Restatement of the aim or method with regard to their 5
Restatement of the aim or method was rated by 5
Restatement of the aim or method to verify whether 5
Restatement of the aim or method were excluded from subsequent 5
Restatement of the aim or method were selected based on the 5
Restatement of the aim or method was carried out to test 5
Restatement of the aim or method next we used the 5
Restatement of the aim or method about their own 5