forked from exKAZUu/RepositoryProbe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
java.txt
1998 lines (1998 loc) · 109 KB
/
java.txt
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
[TestCase(@"https://github.com/nathanmarz/storm.git",
@"cdb116e942666973bc4eaa0df098d5bab82739e7", 8108)]
[TestCase(@"https://github.com/elasticsearch/elasticsearch.git",
@"e688f445ad15054d9335f71c94a0b6736877481b", 6637)]
[TestCase(@"https://github.com/JakeWharton/ActionBarSherlock.git",
@"4a79d536af872339899a90d6dc743aa57745474b", 5553)]
[TestCase(@"https://github.com/jfeinstein10/SlidingMenu.git",
@"4254feca3ece9397cd501921ee733f19ea0fdad8", 5192)]
[TestCase(@"https://github.com/nostra13/Android-Universal-Image-Loader.git",
@"29811229c3ba3da390b29353875be2c92f88a789", 4251)]
[TestCase(@"https://github.com/github/android.git",
@"9d490829b944d3a2c77dbd0010ec7a0bfe2efaee", 3881)]
[TestCase(@"https://github.com/JakeWharton/Android-ViewPagerIndicator.git",
@"8cd549f23f3d20ff920e19a2345c54983f65e26b", 3466)]
[TestCase(@"https://github.com/loopj/android-async-http.git",
@"6077c6aa7bf06b2b8c13fbb4355e094dea436b7c", 3304)]
[TestCase(@"https://github.com/spring-projects/spring-framework.git",
@"09248a0b372ad2e6019b44190ae64f4316dbc1fd", 3294)]
[TestCase(@"https://github.com/libgdx/libgdx.git",
@"ed9733d93a2e5bdf20e10e8c10437e86a66941a2", 3289)]
[TestCase(@"https://github.com/clojure/clojure.git",
@"201a0dd9701e1a0ee3998431241388eb4a854ebf", 3051)]
[TestCase(@"https://github.com/chrisbanes/Android-PullToRefresh.git",
@"3bd8ef6869c3297bfe874d2f15c2ee53c3456e99", 3007)]
[TestCase(@"https://github.com/eclipse/vert.x.git",
@"4a6498baa2269a0dc753861d0539ebeee5926769", 2866)]
[TestCase(@"https://github.com/facebook/facebook-android-sdk.git",
@"118e756568f7e9a8045e87575c190a2c304071a6", 2818)]
[TestCase(@"https://github.com/netty/netty.git",
@"8615f7a69ecbbabd6d8f7ba8cae90ba63d702fec", 2805)]
[TestCase(@"https://github.com/excilys/androidannotations.git",
@"5e769c2d90c76ebfe685f6423435b3fda5fa4bc6", 2725)]
[TestCase(@"https://github.com/Bearded-Hen/Android-Bootstrap.git",
@"9187a05fd7d91350569347f8565078441135d8d4", 2650)]
[TestCase(@"https://github.com/sparklemotion/nokogiri.git",
@"163103b0eaf904575e62909eddc00dcc9e425a2a", 2604)]
[TestCase(@"https://github.com/junit-team/junit.git",
@"e65558c174a8f5c4c7758f0d9dd1ffe027b023d8", 2461)]
[TestCase(@"https://github.com/AndroidBootstrap/android-bootstrap.git",
@"e43e3ac4a5984edf9a6ccc87bac04be177a3615a", 2446)]
[TestCase(@"https://github.com/square/picasso.git",
@"e0c3d44f53919742a0a608277be26b47742bb2a2", 2312)]
[TestCase(@"https://github.com/facebook/presto.git",
@"b4b5d67e09576ec38be1564123e5a0e2d4bc1996", 2281)]
[TestCase(@"https://github.com/chrisbanes/ActionBar-PullToRefresh.git",
@"65d4183994eaf8c450e81afadb389fca61499063", 2272)]
[TestCase(@"https://github.com/WhisperSystems/TextSecure.git",
@"4d52d2ee364c2edad50420a9afa500dde66a48d9", 2261)]
[TestCase(@"https://github.com/cyrilmottier/GreenDroid.git",
@"abd9769f677bb4a753f0bf1119f961187bdf7020", 2123)]
[TestCase(@"https://github.com/dropwizard/metrics.git",
@"e61395657d9f471a88dc0d9f3c7f78f0e773fe28", 2090)]
[TestCase(@"https://github.com/nicolasgramlich/AndEngine.git",
@"720897f99d2c56ba357e8fe361454bd8d88c37ed", 2068)]
[TestCase(@"https://github.com/Prototik/HoloEverywhere.git",
@"3b6021aa4af717cd31b1b6c877f6c30b674af6d9", 2065)]
[TestCase(@"https://github.com/Netflix/RxJava.git",
@"8bb52a0184a194f2faa4a4732f72f62be2caafe9", 2049)]
[TestCase(@"https://github.com/Bukkit/CraftBukkit.git",
@"1ab090e71ea261fe38cef980bc2ebe696a494ea3", 2032)]
[TestCase(@"https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpriseEdition.git",
@"5f399a52c8bf5626b098629906f82be1763089f4", 2005)]
[TestCase(@"https://github.com/fernandezpablo85/scribe-java.git",
@"135ad50a4e4e27e97f09e42ae50d6011c7af7a4b", 1997)]
[TestCase(@"https://github.com/LMAX-Exchange/disruptor.git",
@"1072645ad75f8b07b9145197fd4137fcfa79011a", 1836)]
[TestCase(@"https://github.com/OpenRefine/OpenRefine.git",
@"c2cadab47593d5d3f49e45b5fe434e117e67f8dd", 1827)]
[TestCase(@"https://github.com/dropwizard/dropwizard.git",
@"4758ac698ff9993879798db338b3314c6a1c6a27", 1776)]
[TestCase(@"https://github.com/square/retrofit.git",
@"1f7cc4942f71d6c6cf4770fcd93670bc93a8c710", 1776)]
[TestCase(@"https://github.com/Netflix/SimianArmy.git",
@"6a8b799af24cd638cd7110965ca8504e18cd6b24", 1743)]
[TestCase(@"https://github.com/johannilsson/android-pulltorefresh.git",
@"4277c1ecf6256518248a1143b3ee882c703b33d6", 1739)]
[TestCase(@"https://github.com/SimonVT/android-menudrawer.git",
@"1260f2f6d50d3b572ebfa98e93a0b4f8258371de", 1727)]
[TestCase(@"https://github.com/square/dagger.git",
@"21a9e0d875da31306b0f41273348f4f75741fef7", 1706)]
[TestCase(@"https://github.com/Atmosphere/atmosphere.git",
@"dd2397e03088f2bced1f8e47f8f81e935664a923", 1671)]
[TestCase(@"https://github.com/roboguice/roboguice.git",
@"c0c61a89ad8ce844858373748f09222de187d61e", 1644)]
[TestCase(@"https://github.com/thinkaurelius/titan.git",
@"c26cd982b1dc5ba792ee7a63af59887bd8b08223", 1625)]
[TestCase(@"https://github.com/Netflix/Hystrix.git",
@"04949497901e6fcd71f68d804e5b89f9e368271d", 1624)]
[TestCase(@"https://github.com/etsy/AndroidStaggeredGrid.git",
@"84a06f8da0ba70de32e7373c57f6e38b9d9b6780", 1612)]
[TestCase(@"https://github.com/chrisbanes/PhotoView.git",
@"99fc9956a2de2279e45af9e95286efec79c0d739", 1609)]
[TestCase(@"https://github.com/android/platform_frameworks_base.git",
@"aa19a2f69c33fdb6499d0bc1cfafced9f572da5b", 1606)]
[TestCase(@"https://github.com/jeresig/processing-js.git",
@"02363398a823eae731cafa180a5581fe353397bf", 1553)]
[TestCase(@"https://github.com/apache/cassandra.git",
@"6e97178a50d1cc9a6817653e463ef5f0cf132873", 1540)]
[TestCase(@"https://github.com/springside/springside4.git",
@"c92379755c041cd081c8c4cd881b44283a80f845", 1500)]
[TestCase(@"https://github.com/zxing/zxing.git",
@"41caac38e8414be512fee712dae98966b7f4f05e", 1494)]
[TestCase(@"https://github.com/47deg/android-swipelistview.git",
@"f0d4859100d7cb80e3e7ca4551daa69d5c61fd25", 1486)]
[TestCase(@"https://github.com/Bukkit/Bukkit.git",
@"ec19988db3ba9415f9453c68b4861ffbe90e4153", 1477)]
[TestCase(@"https://github.com/bauerca/drag-sort-listview.git",
@"c3cfccee21676149dfdf8e803c0ec2eaebc6b841", 1449)]
[TestCase(@"https://github.com/keyboardsurfer/Crouton.git",
@"0957a7ea09e40d521defa28c6d1ffa1127f7e7da", 1441)]
[TestCase(@"https://github.com/gabrielemariotti/cardslib.git",
@"3a1998cbf4d1ab24a5dcf22441fadafab3da655f", 1436)]
[TestCase(@"https://github.com/yui/yuicompressor.git",
@"e814062c2f1f8c75decde08e884d84387938faba", 1430)]
[TestCase(@"https://github.com/aporter/coursera-android.git",
@"a4c1fceac0d2c0a86f74ebad8ccc7539330e8290", 1405)]
[TestCase(@"https://github.com/gradle/gradle.git",
@"b690b255ecefe8724fd78e8248d91be054e8e718", 1400)]
[TestCase(@"https://github.com/emilsjolander/StickyListHeaders.git",
@"60eecee1b8a53a0c6de9a5d6ddb3cefbfef6d90a", 1379)]
[TestCase(@"https://github.com/xetorthio/jedis.git",
@"ac53759f9706b52184963e98af11d2e44bfb1297", 1373)]
[TestCase(@"https://github.com/square/okhttp.git",
@"c51e223ff96da5f6581515d7080a080808c35384", 1353)]
[TestCase(@"https://github.com/nhaarman/ListViewAnimations.git",
@"98a4793f62bbb4c9c9aaec199ccdeb3b4403a162", 1352)]
[TestCase(@"https://github.com/astuetz/PagerSlidingTabStrip.git",
@"3f4738eca833faeca563d93cd77c8df763a45fb6", 1340)]
[TestCase(@"https://github.com/koush/ion.git",
@"d14f69b87387bb57a213c871ff57dd42c3481e5b", 1324)]
[TestCase(@"https://github.com/k9mail/k-9.git",
@"8e078bc0146cf0ab02a54c1d852842f6ee734f23", 1323)]
[TestCase(@"https://github.com/stephanenicolas/robospice.git",
@"03d119df6de56c0007a65b21582c99adb22734b4", 1304)]
[TestCase(@"https://github.com/square/otto.git",
@"b821b22e283dabc08ae09786861c4a958000a5ae", 1297)]
[TestCase(@"https://github.com/videlalvaro/gifsockets.git",
@"0ccb1fd01edeb835a90c0c1140ad91dbd1a354b1", 1285)]
[TestCase(@"https://github.com/greenrobot/EventBus.git",
@"0fe7ea575c508ac3b072b4a31ecea9c8680435be", 1270)]
[TestCase(@"https://github.com/voldemort/voldemort.git",
@"351f4dee88829f2107afd5c283fb0768b5282165", 1261)]
[TestCase(@"https://github.com/JakeWharton/NineOldAndroids.git",
@"9f20fd77e04942fd50b95aeb1c492a38e36c06dd", 1252)]
[TestCase(@"https://github.com/pakerfeldt/android-viewflow.git",
@"3da74fa32a935bcbb37e5ebeb270477cde1985d4", 1247)]
[TestCase(@"https://github.com/johannilsson/android-actionbar.git",
@"093a5f8039dfade914f52b55b5536b95850ddaf1", 1242)]
[TestCase(@"https://github.com/androidquery/androidquery.git",
@"45ed6c85dcf0b3b58a08810b423886fb275b33b0", 1225)]
[TestCase(@"https://github.com/ACRA/acra.git",
@"ee7085683018b556e73f74b059040d93794cf388", 1196)]
[TestCase(@"https://github.com/AsyncHttpClient/async-http-client.git",
@"f96bcbbe906c1e472fbbd7cca5cfaf3778db02d6", 1175)]
[TestCase(@"https://github.com/xamarin/XobotOS.git",
@"f20db6295e878a2f298c5e3896528e240785805b", 1166)]
[TestCase(@"https://github.com/umano/AndroidSlidingUpPanel.git",
@"38327d828690da0771e7b35a15a118eeecc20e26", 1161)]
[TestCase(@"https://github.com/amlcurran/ShowcaseView.git",
@"cc55def081814213c94ad80be4195b17ac4ef18c", 1145)]
[TestCase(@"https://github.com/openaphid/android-flip.git",
@"ab2dea1b045ffc626221c2826ce9dd00823e696d", 1142)]
[TestCase(@"https://github.com/jhy/jsoup.git",
@"80158d6fa7445506eaaafdeadb1f4dc291ca10a5", 1129)]
[TestCase(@"https://github.com/yinwang0/pysonar2.git",
@"240192fb7827dedd9381dbfdd0df3062c47078d0", 1128)]
[TestCase(@"https://github.com/JetBrains/intellij-community.git",
@"e8b5589ad6a04a407d6af701dd72dc0540118688", 1124)]
[TestCase(@"https://github.com/commonsguy/cw-omnibus.git",
@"674f1edab621b409922028d0326e02e9ad81015f", 1124)]
[TestCase(@"https://github.com/JakeWharton/butterknife.git",
@"3a6f2eb9713cfcea3037282e4fc4d34d50f19d6c", 1121)]
[TestCase(@"https://github.com/tinkerpop/gremlin.git",
@"e622d5bf289ef8f74a088dc0237c69b98baf6792", 1111)]
[TestCase(@"https://github.com/wildfly/wildfly.git",
@"23dc89381b609dcdac4d2f9da4e4d78b235c51e3", 1102)]
[TestCase(@"https://github.com/yusuke/twitter4j.git",
@"747982dfdccd6d1b2ef4857720fe289455a435a1", 1101)]
[TestCase(@"https://github.com/twall/jna.git",
@"323a913bf610c982f43b58883b0fc54c78a29621", 1098)]
[TestCase(@"https://github.com/phonegap/phonegap-facebook-plugin.git",
@"ccb2a6f648bb2ed44e4b7b71add4fb7b7e95eaed", 1084)]
[TestCase(@"https://github.com/purplecabbage/phonegap-plugins.git",
@"319dfb7297002040ec7ab98896e68d05c7fd8180", 1083)]
[TestCase(@"https://github.com/Comcast/FreeFlow.git",
@"47bfb57e8037eecae320266cb00dd23e673362e5", 1079)]
[TestCase(@"https://github.com/ManuelPeinado/FadingActionBar.git",
@"f679e313d105075cfb389695052348ee09a8e80a", 1068)]
[TestCase(@"https://github.com/bigbluebutton/bigbluebutton.git",
@"55773f594eed3e0eff5af47ec8cbd6fcf713a56a", 1062)]
[TestCase(@"https://github.com/mttkay/ignition.git",
@"bbeb55cb4f080bdc31e549142ea745c65e4727c7", 1058)]
[TestCase(@"https://github.com/processing/processing.git",
@"9c63a2c4a227ed2329fd01006cb593ba8954962d", 1054)]
[TestCase(@"https://github.com/douglascrockford/JSON-java.git",
@"4d86b05d3c6a72e88c476430d60676f9ae2fafab", 1052)]
[TestCase(@"https://github.com/Athou/commafeed.git",
@"3a8d72cab4038e975af87d8083e2b7e68f2e328c", 1048)]
[TestCase(@"https://github.com/Graylog2/graylog2-server.git",
@"c1c5491c4a3194a19c21a7c744d5d45421ecd227", 1041)]
[TestCase(@"https://github.com/greenrobot/greenDAO.git",
@"d13a1f1d0e8d244e8033a944599adda7bb157bef", 1039)]
[TestCase(@"https://github.com/commonsguy/cw-advandroid.git",
@"ab8e52a00413592b99a7bb9f93050bee760f289f", 1028)]
[TestCase(@"https://github.com/koush/AndroidAsync.git",
@"09c60732944a20eac52301026e9c24344ccb3062", 993)]
[TestCase(@"https://github.com/ether/pad.git",
@"cb4977238f55f9b2518e7c43a5c769823b0afd45", 987)]
[TestCase(@"https://github.com/square/android-times-square.git",
@"2bb367039b3cb93e6764e55835dc023df9f4fd77", 967)]
[TestCase(@"https://github.com/grails/grails-core.git",
@"048025b9b98332645df30d82593d44b1f7a84bbd", 960)]
[TestCase(@"https://github.com/pardom/ActiveAndroid.git",
@"bd98740d466249fc085311b1c166570cfc08f532", 959)]
[TestCase(@"https://github.com/kevinsawicki/http-request.git",
@"c11e2a8b335d43adb9e273412ec7a39c7e404e72", 939)]
[TestCase(@"https://github.com/mongodb/mongo-java-driver.git",
@"244b5a26bfe1b6f9e15264d690fa944e7c6e2c54", 924)]
[TestCase(@"https://github.com/hibernate/hibernate-orm.git",
@"9bd6917d0d92c3d350b74f23c03af5a4bb80890d", 910)]
[TestCase(@"https://github.com/qii/weiciyuan.git",
@"14fdfe9f6f7f3d927a66d802b709f53ba0ff629e", 906)]
[TestCase(@"https://github.com/BonzaiThePenguin/WikiSort.git",
@"b83bde28fbf26198749eb0169d7f01052841b192", 905)]
[TestCase(@"https://github.com/tjerkw/Android-SlideExpandableListView.git",
@"a44e6f0fcfabf3a870469667b219552a5d562e87", 901)]
[TestCase(@"https://github.com/jgilfelt/android-viewbadger.git",
@"e08c3a78cb92c0c8587790b15e73434f972912cf", 900)]
[TestCase(@"https://github.com/commonsguy/cw-android.git",
@"568c11f2b9b556027dda05ad7b62c044f039b4e4", 899)]
[TestCase(@"https://github.com/orientechnologies/orientdb.git",
@"8bfc83acadc833b40ec3d485216b39b786935b4c", 897)]
[TestCase(@"https://github.com/Netflix/curator.git",
@"1e66d7ccd7ac601df3c814833f1b9e32b25331c6", 896)]
[TestCase(@"https://github.com/mttkay/droid-fu.git",
@"469b1bf7a844cc09866bad95fc06321291c649e8", 882)]
[TestCase(@"https://github.com/thest1/LazyList.git",
@"0f37d108f2067f5f44749eb0ad44e51656f96f02", 882)]
[TestCase(@"https://github.com/reactor/reactor.git",
@"83f0b805ca0a8e5fd9cd881e6370c173685ad228", 875)]
[TestCase(@"https://github.com/novoda/android.git",
@"3052e6d253bd6a29c3e9b043ba87021242857ba5", 875)]
[TestCase(@"https://github.com/pcpratts/rootbeer1.git",
@"c046801c73b9b2e48d4fe40739b0ce68c496d103", 872)]
[TestCase(@"https://github.com/spring-projects/spring-mvc-showcase.git",
@"c7b9162c061e135c081a28bf7fc209bb9a992cea", 869)]
[TestCase(@"https://github.com/yangfuhai/afinal.git",
@"e706f0e896f8f819aa9a6a8374c7fe9f71fa4950", 865)]
[TestCase(@"https://github.com/todoroo/astrid.git",
@"4fc5c7714fb1b48ae46dcacbda287bcef9c3f6bf", 848)]
[TestCase(@"https://github.com/twitter/ambrose.git",
@"9ff6dc68e6eb7e95645878082774f44acca5814f", 847)]
[TestCase(@"https://github.com/perwendel/spark.git",
@"f1f06769abacc6732e511774d4db2306cbe5db54", 843)]
[TestCase(@"https://github.com/metamx/druid.git",
@"db5f04c84dc7b23f87aac31397f1a6457f4903f7", 837)]
[TestCase(@"https://github.com/robovm/robovm.git",
@"a72f06e62dbe4afd3271fb3bfa4ca2c4d47d3329", 832)]
[TestCase(@"https://github.com/rzwitserloot/lombok.git",
@"6afa3d2ec9ec18ed8ae5f6c5217b9fb1710c69c7", 827)]
[TestCase(@"https://github.com/tinkerpop/blueprints.git",
@"34b5b83fcfd92cca3a69c425c67a9a782dd18c42", 824)]
[TestCase(@"https://github.com/addthis/stream-lib.git",
@"56c48e001341f874c37e0113c09554436e93ea10", 808)]
[TestCase(@"https://github.com/jgilfelt/android-mapviewballoons.git",
@"a47528473b562170fbed33b7cf01da2353300acd", 806)]
[TestCase(@"https://github.com/http-kit/http-kit.git",
@"7184fa8cf2526a24446e7e6602bc16d9d1c0948a", 804)]
[TestCase(@"https://github.com/alibaba/druid.git",
@"4bebaa9d86038ec563febd2f50e7b232544a3ab7", 798)]
[TestCase(@"https://github.com/apache/hadoop-common.git",
@"572bd72991fe976da586db41ac4dd03466a480dd", 795)]
[TestCase(@"https://github.com/quartzjer/TeleHash.git",
@"133f4212666911d066f59255e2e7fbd69bea8265", 791)]
[TestCase(@"https://github.com/Netflix/ice.git",
@"f5cd61177fca0ea0d45eecacc7c3209e8b1bbc57", 790)]
[TestCase(@"https://github.com/cucumber/cucumber-jvm.git",
@"08e6b87a0a21010bf35d643157b7032a40832efd", 784)]
[TestCase(@"https://github.com/BoltsFramework/Bolts-Android.git",
@"b046dfdbe9b36989ab7bf4492dc403a20118c590", 781)]
[TestCase(@"https://github.com/cloudera/flume.git",
@"1d7535638556998e895d55599a2f4a024390edd1", 774)]
[TestCase(@"https://github.com/romannurik/muzei.git",
@"a9d2ccfaeccabad26f9c6eba26355882654cc4c1", 774)]
[TestCase(@"https://github.com/linkedin/indextank-engine.git",
@"f2354fe9db43786126e304d12aae4322ae7b98b1", 770)]
[TestCase(@"https://github.com/tjake/Solandra.git",
@"64e1d192604144c06962e284523cce3c4df51c4e", 768)]
[TestCase(@"https://github.com/jankotek/MapDB.git",
@"c890d8b4edc5fb9d064bb04aa132aea8608f87dd", 763)]
[TestCase(@"https://github.com/alibaba/fastjson.git",
@"5e3ede7923bd4b7930b8f785b900e80753b97c01", 763)]
[TestCase(@"https://github.com/ginatrapani/todo.txt-android.git",
@"ce117c601510cb7343f4633e3033ec0cbfe35ff7", 761)]
[TestCase(@"https://github.com/maurycyw/StaggeredGridView.git",
@"06dbc841a6330143f114eba82566d25b5a808c61", 758)]
[TestCase(@"https://github.com/amplab/tachyon.git",
@"6ce29b2da55130e7cb32a32f029fef43cdc35ef5", 756)]
[TestCase(@"https://github.com/peter-lawrey/Java-Chronicle.git",
@"6716f0cff0750d125a07eb769bba0698a617b7fb", 756)]
[TestCase(@"https://github.com/TooTallNate/Java-WebSocket.git",
@"7c3b223536dc8bd4e8794ac265ad06679583e30f", 754)]
[TestCase(@"https://github.com/facebook/hadoop-20.git",
@"9f1ea1b28047a4b16f4962c7561613f139dd3e86", 752)]
[TestCase(@"https://github.com/derekbrameyer/android-betterpickers.git",
@"0a72367b478970b1731822e78790a158a4f7ebb4", 740)]
[TestCase(@"https://github.com/typesafehub/config.git",
@"36c1392028c82db2c146ade29a2f6940bc6f5407", 736)]
[TestCase(@"https://github.com/leachim6/hello-world.git",
@"02e3bb8c5b356739644d24c60adbe6dda020b6fc", 734)]
[TestCase(@"https://github.com/OpenTSDB/opentsdb.git",
@"a2bd5737d9d11a8fd3fa6e9c36a31dd8cb5c4af4", 733)]
[TestCase(@"https://github.com/kevinweil/elephant-bird.git",
@"ccddfc68e634fea2d05a1804057a1c4826817471", 723)]
[TestCase(@"https://github.com/inmite/android-styled-dialogs.git",
@"38975c5220aeab1d79ee3db2a8c4d269c0600c38", 723)]
[TestCase(@"https://github.com/rstudio/rstudio.git",
@"cb0b00ee99905c6e2cf1e88b4bee316214d54769", 722)]
[TestCase(@"https://github.com/JodaOrg/joda-time.git",
@"fcf264d737af5a37d45c6c5c9802487ce53c8de8", 722)]
[TestCase(@"https://github.com/neo4j/neo4j.git",
@"521ec09bd83bdee1ef39af4dc162fe0c88fedf4b", 719)]
[TestCase(@"https://github.com/jfeinstein10/JazzyViewPager.git",
@"05fab564593adffec28c76857520ab35f908dea0", 719)]
[TestCase(@"https://github.com/hazelcast/hazelcast.git",
@"67389104cdb892d040bc15e7df39ab4bd5df3895", 718)]
[TestCase(@"https://github.com/castorflex/SmoothProgressBar.git",
@"9198cb9201268cec63e69d87cdbfb879a962f827", 708)]
[TestCase(@"https://github.com/JakeWharton/hugo.git",
@"de887a549a14fba7e3735ce4c202e15502c78a43", 702)]
[TestCase(@"https://github.com/MovingBlocks/Terasology.git",
@"387497a2ea91b25339b3cbe8b18338edd7d3d1f5", 701)]
[TestCase(@"https://github.com/nathanmarz/storm-starter.git",
@"917a4c5c171009af3b130d09339355f6310a2042", 695)]
[TestCase(@"https://github.com/0xdata/h2o.git",
@"c5e4bfd7e1b1ecc59b5d9c40eb0f56bfabf646be", 694)]
[TestCase(@"https://github.com/apache/lucene-solr.git",
@"9e87821edeb3e24ca8dedaecf856f6510d61d0d3", 692)]
[TestCase(@"https://github.com/koush/UrlImageViewHelper.git",
@"a9897afbf0277727810158c9739c3ddd9cf15899", 690)]
[TestCase(@"https://github.com/mongodb/mongo-hadoop.git",
@"29788439cbc8cc9a45910ceba316a70049a8b4e8", 689)]
[TestCase(@"https://github.com/JakeWharton/scalpel.git",
@"97299acd1cc7b4138af714f1ed0bce47e9ce516d", 684)]
[TestCase(@"https://github.com/JakeWharton/u2020.git",
@"543eaea54f04fd4397aa74f4578670e279cc857a", 680)]
[TestCase(@"https://github.com/novoda/ImageLoader.git",
@"a82512b76c43e271a15717e0697055cd9e3d9031", 678)]
[TestCase(@"https://github.com/ansjsun/ansj_seg.git",
@"ab56d87c9799e543e4141840809b52aa27932d87", 671)]
[TestCase(@"https://github.com/apache/mahout.git",
@"add3038b35029cf886ac907822016c91ec4b4278", 668)]
[TestCase(@"https://github.com/RobotiumTech/robotium.git",
@"ee7d989c95f2cf380935f7a117d7f9345820cbf7", 664)]
[TestCase(@"https://github.com/harism/android_page_curl.git",
@"7a2c8f152bb4f1b0de3b1aa72b3cb79e1fe8e3bd", 664)]
[TestCase(@"https://github.com/commonsguy/cwac-endless.git",
@"7a6fe3c123fc85e08c36b6db6a88740385625340", 658)]
[TestCase(@"https://github.com/hector-client/hector.git",
@"0c760d9347ebf9bdaeec5fe195f175f674590909", 655)]
[TestCase(@"https://github.com/mortardata/mortar-recsys.git",
@"617fbf66a8e8fb7738354c224760dc2419ed0c13", 654)]
[TestCase(@"https://github.com/eishay/jvm-serializers.git",
@"3ec217ec19aff74654b40a47c010d57a44996efb", 653)]
[TestCase(@"https://github.com/notnoop/java-apns.git",
@"20c10ebd22e15a55c0c1c12695c535d37435dcfd", 652)]
[TestCase(@"https://github.com/siyamed/android-satellite-menu.git",
@"ff0964c849095eb17c5fe9f84f158e39d5a5ef03", 652)]
[TestCase(@"https://github.com/jberkel/sms-backup-plus.git",
@"3565f645126d3f9e8c0371ec57c8aac4bbf5cde1", 647)]
[TestCase(@"https://github.com/jayway/maven-android-plugin.git",
@"2ce1428c8e83365c5ac096b7855e71bd8a035013", 645)]
[TestCase(@"https://github.com/BuildCraft/BuildCraft.git",
@"080b4ba74990c6488f7c645cc64d3985f47e42fd", 643)]
[TestCase(@"https://github.com/brianfrankcooper/YCSB.git",
@"4791826f0b90c472dd04cc5eb6ed73c4d5906330", 632)]
[TestCase(@"https://github.com/facebook/buck.git",
@"def0eb1077d6c2a9f129b200e8356acaec9a17ed", 631)]
[TestCase(@"https://github.com/square/spoon.git",
@"975dacb45607ed45492fa3dd9e697f0a5263e71a", 630)]
[TestCase(@"https://github.com/aws/aws-sdk-java.git",
@"f04beb908018dcb0ca58ac6e00f2bd66953efe45", 628)]
[TestCase(@"https://github.com/fastestforward/gauges-android.git",
@"372528e3a689fa38f582330e69f7a31c62b2aa9c", 621)]
[TestCase(@"https://github.com/gephi/gephi.git",
@"5777cab4a8f649ef85f4c571f37b0df43e4db46f", 620)]
[TestCase(@"https://github.com/MinecraftForge/MinecraftForge.git",
@"2cef9c5cb29fdaa1d118591604ff7c5f2e956c09", 619)]
[TestCase(@"https://github.com/goldmansachs/gs-collections.git",
@"4e597130fbe4e6f9d745a8d5348c77c45e9341d8", 619)]
[TestCase(@"https://github.com/cloudera/oryx.git",
@"8986b58e49b55d7c57f72f232596689a16a013a9", 617)]
[TestCase(@"https://github.com/sk89q/worldedit.git",
@"33d4285f1a7af21b42585fccca5a93036c953262", 613)]
[TestCase(@"https://github.com/spring-projects/spring-boot.git",
@"620d8eb87e63ab23bf667c2b1c6518d9fd2ab187", 613)]
[TestCase(@"https://github.com/redsolution/xabber-android.git",
@"2b8e6b216fa2a928b2f62b7cd62b2c079d706d38", 612)]
[TestCase(@"https://github.com/geometer/FBReaderJ.git",
@"ec96ce8dd837f495fbeafef8592001e06b601bb0", 611)]
[TestCase(@"https://github.com/apache/hbase.git",
@"f0a4811e4bef6e66ced0b24bfdace39d99251142", 608)]
[TestCase(@"https://github.com/loopj/android-smart-image-view.git",
@"49a7facbb30455b2d3760419028a9a7ff0b1aa89", 606)]
[TestCase(@"https://github.com/sirthias/parboiled.git",
@"036214177d6ae3126b8bee179164e202c8bc9a9d", 605)]
[TestCase(@"https://github.com/jgilfelt/android-sqlite-asset-helper.git",
@"9e6a939ad6baf9946b8073a03c5d279a2eede290", 602)]
[TestCase(@"https://github.com/Trinea/android-common.git",
@"3e8308815b0d2d592276f44fdd3c6b9a02e04587", 598)]
[TestCase(@"https://github.com/liferay/liferay-portal.git",
@"917c5277997b15fd9fb2abd9694809e535132855", 597)]
[TestCase(@"https://github.com/chewiebug/GCViewer.git",
@"26a080b1555d3d14bef91afa5090c75ae6a6b657", 597)]
[TestCase(@"https://github.com/square/tape.git",
@"36cc75ee4e7c2352d75f26678c7a833fe46fb3b8", 596)]
[TestCase(@"https://github.com/afollestad/Cards-UI.git",
@"cd59ad57efd28c35b59d4abd461d669f1df9dda5", 595)]
[TestCase(@"https://github.com/lucasr/smoothie.git",
@"8532d5355649dae87243a1e4b71710314eb97652", 595)]
[TestCase(@"https://github.com/JetBrains/kotlin.git",
@"d28ca5bdfae653d91de63a8cd1ddfc1bea7545bd", 594)]
[TestCase(@"https://github.com/romainguy/ViewServer.git",
@"f7bfe2752eb47a277436480b910b0184f55f81fc", 591)]
[TestCase(@"https://github.com/tomwhite/hadoop-book.git",
@"0087add3342b36503bb60c972a0d441f91e37ef1", 589)]
[TestCase(@"https://github.com/zeromq/jeromq.git",
@"97332bcbeb6cb5f28b8e950c3440d53ea28e6588", 589)]
[TestCase(@"https://github.com/ManuelPeinado/GlassActionBar.git",
@"ca6b9416e547483c7fd004f2957209ee89bde65e", 588)]
[TestCase(@"https://github.com/Netflix/astyanax.git",
@"b9ab12712607734f8ff0d4ac692c04da01c571c7", 581)]
[TestCase(@"https://github.com/mozilla/rhino.git",
@"5f1ad11dfbf23b3afcc8caa6c230fa3533b5ffd6", 581)]
[TestCase(@"https://github.com/pahimar/Equivalent-Exchange-3.git",
@"664387f0637838e6e982471634b0b34b64705471", 579)]
[TestCase(@"https://github.com/rnewson/couchdb-lucene.git",
@"aa7d0fc8203d8a566862021101ab05ebc25f41ad", 578)]
[TestCase(@"https://github.com/facebook/rebound.git",
@"a0fe027ca170d1f50b64ac34276a35bb11e79896", 575)]
[TestCase(@"https://github.com/kikoso/android-stackblur.git",
@"668da822f334ea5a4750ab45430d349de2a57c3d", 574)]
[TestCase(@"https://github.com/Graylog2/graylog2-web-interface.git",
@"26cdb17791df1a169265da883e3c3127b505f8ac", 566)]
[TestCase(@"https://github.com/jackpal/Android-Terminal-Emulator.git",
@"60f5dd963464aa733c14d844c9b2f0414888cc79", 566)]
[TestCase(@"https://github.com/calabash/calabash-android.git",
@"14724f6ab39886516088c8a1e982febc2f36ed1b", 565)]
[TestCase(@"https://github.com/flavienlaurent/NotBoringActionBar.git",
@"dd285b3b7c228eb62cc2927659d9bac5453f58d2", 565)]
[TestCase(@"https://github.com/dim-s/jphp.git",
@"2d2353448d2df7f375512eff4c42242e5d57057b", 564)]
[TestCase(@"https://github.com/JohnPersano/SuperToasts.git",
@"eb739b3b00cdacee5ad599d9543cecb47a81976f", 555)]
[TestCase(@"https://github.com/path/android-priority-jobqueue.git",
@"89d76ea193cfded0d9401f534fedbfe14c981c04", 552)]
[TestCase(@"https://github.com/webbit/webbit.git",
@"0154b235a8dd2b3ab966f299506375f6c6538cbb", 549)]
[TestCase(@"https://github.com/jjoe64/GraphView.git",
@"638ab6ac76890e06e6180ccde7540e0ea467196f", 547)]
[TestCase(@"https://github.com/eoecn/android-app.git",
@"38f08642e11c97ec00178c529e34bae0c1ddee88", 547)]
[TestCase(@"https://github.com/matburt/mobileorg-android.git",
@"a9297345109ff97a9150ee04990a96dce2a8da0e", 545)]
[TestCase(@"https://github.com/JetBrains/ideavim.git",
@"ee1a6bbbd95ca72a64b281282e9c6fa549638e84", 542)]
[TestCase(@"https://github.com/beworker/pinned-section-listview.git",
@"2b2e0c6064b41e719026d195b3f5f52be637ed74", 541)]
[TestCase(@"https://github.com/spring-projects/spring-security-oauth.git",
@"75f0d1c09765522b10e115ed833deccc18ac8cad", 540)]
[TestCase(@"https://github.com/yixia/VitamioBundle.git",
@"1b0eacce724153f4305ecfb32190ad76172e14f8", 539)]
[TestCase(@"https://github.com/Todd-Davies/ProgressWheel.git",
@"b07bb7dd995aaf0d4ac921991bb37d9da36d72f2", 536)]
[TestCase(@"https://github.com/6wunderkinder/android-sliding-layer-lib.git",
@"3f7d6ba4ac779225268702a8364f5997361e7e17", 535)]
[TestCase(@"https://github.com/chrisbanes/Android-BitmapCache.git",
@"147e5c078324c8f61765750da756c4a7d1f2aae3", 532)]
[TestCase(@"https://github.com/linkedin/datafu.git",
@"e98e7b4284712e6ebc06138aff9355420b08f42a", 528)]
[TestCase(@"https://github.com/gitblit/gitblit.git",
@"a57d0c36910a96391b79511224eeb2989f52f6e3", 523)]
[TestCase(@"https://github.com/sikuli/sikuli.git",
@"141897fd93a1141d7214c4c07b6f6688b45e38a1", 523)]
[TestCase(@"https://github.com/jclouds/legacy-jclouds.git",
@"1665a70471609aed0314dc60e27a80c7ffa65d45", 522)]
[TestCase(@"https://github.com/mariotaku/twidere.git",
@"1f3f6a036e5d511185fc4c0dd6aabb944843b821", 520)]
[TestCase(@"https://github.com/apache/cordova-android.git",
@"b872df0f314194ad50cbaa098ebbf717e53bb354", 519)]
[TestCase(@"https://github.com/romannurik/Android-MonthCalendarWidget.git",
@"f198096a4c2f9db2b98fc41f6fb57087558c21c6", 519)]
[TestCase(@"https://github.com/johnkil/Android-AppMsg.git",
@"a701a05ba1c1e16a26cb356b9282ffc32d688994", 513)]
[TestCase(@"https://github.com/go-lang-plugin-org/go-lang-idea-plugin.git",
@"d7138f7ff36e90b0fe57bf62cfc9dcf508e81659", 510)]
[TestCase(@"https://github.com/foxykeep/DataDroid.git",
@"0553cada0d6c508eca3a9295fa7729deba8a75e4", 509)]
[TestCase(@"https://github.com/UweTrottmann/SeriesGuide.git",
@"0dd18b8dc5a36c3f1ba111f2fdca114ebaabbbd2", 508)]
[TestCase(@"https://github.com/liquibase/liquibase.git",
@"dee23ae4fd2f8c4eae4d1353d0a0f8aab76d9953", 508)]
[TestCase(@"https://github.com/mixi-inc/AndroidTraining.git",
@"83d2527dab5586dfe3ecab8af5e599441920d35d", 506)]
[TestCase(@"https://github.com/dinocore1/DevsmartLib-Android.git",
@"5572ff39b8d5627c9b31db97e7290ca986448404", 505)]
[TestCase(@"https://github.com/spullara/mustache.java.git",
@"c9e64e12d0193ffa5fc2b7fa2c7c0ea05067281d", 504)]
[TestCase(@"https://github.com/robotmedia/AndroidBillingLibrary.git",
@"4bbe429d7811d531ca6d478745b4eeebb17f1783", 504)]
[TestCase(@"https://github.com/MikeOrtiz/TouchImageView.git",
@"7594f9836a985fdec4c1ce051fe4ed869cbf84a8", 503)]
[TestCase(@"https://github.com/linkedin/rest.li.git",
@"f0f868024d9eca663d39fb7d05a49dc7985e9bf6", 503)]
[TestCase(@"https://github.com/TonicArtos/StickyGridHeaders.git",
@"6db4aa78c2ca42cdab427b3fed3822b079936644", 503)]
[TestCase(@"https://github.com/apache/zookeeper.git",
@"644542390d75af0b752ab34fde0ccbf995bb05cf", 501)]
[TestCase(@"https://github.com/oschina/android-app.git",
@"6a5bf77e7450151a3765fc7569c16d3d835df0f8", 498)]
[TestCase(@"https://github.com/fearofcode/bateman.git",
@"0c3a8287133e2195c63a52f665f912cca6fc5b65", 494)]
[TestCase(@"https://github.com/opentripplanner/OpenTripPlanner.git",
@"d47db7893b4899cada1bf074e4399fdeb175fd47", 493)]
[TestCase(@"https://github.com/vinc3m1/RoundedImageView.git",
@"2f6414bd3e2606395d9fe9de7373ef86be70f4cf", 493)]
[TestCase(@"https://github.com/daCapricorn/ArcMenu.git",
@"37b821f810b1edab6a32dac864d2a14d95285cf6", 491)]
[TestCase(@"https://github.com/nutzam/nutz.git",
@"8b1c4ac2588896ad2b6f5e34821e02d82c342805", 489)]
[TestCase(@"https://github.com/ManuelPeinado/RefreshActionItem.git",
@"b592791550ec45c5f8cf5a320c42d26c26639d8f", 489)]
[TestCase(@"https://github.com/NanoHttpd/nanohttpd.git",
@"852318439539b54ee6b4ce048df63b6c12cf0417", 488)]
[TestCase(@"https://github.com/lorensiuswlt/NewQuickAction.git",
@"9773852b297114d9826e580f9d3845e522e766a7", 481)]
[TestCase(@"https://github.com/vrapper/vrapper.git",
@"250ff536fcaa5dc77eb657d23695098096f44843", 480)]
[TestCase(@"https://github.com/mitallast/diablo-js.git",
@"bdd6b737b8071fcff218be389cd406301dad88a3", 477)]
[TestCase(@"https://github.com/saik0/UnifiedPreference.git",
@"dcfdb0c590ba0c27230bdee2808cc839d42debfe", 475)]
[TestCase(@"https://github.com/jasonpolites/gesture-imageview.git",
@"69bdabec18028f5f8138c82120f32af514e0bd38", 474)]
[TestCase(@"https://github.com/jOOQ/jOOQ.git",
@"5014e5d5c42c9744eb9129183996451f261fb46d", 472)]
[TestCase(@"https://github.com/darvds/RibbonMenu.git",
@"0d051fe76fa61d392b29ac8e1f7bd4ceeb5e0449", 471)]
[TestCase(@"https://github.com/javaee-samples/javaee7-samples.git",
@"a23fc9126b0cee80e26166073493154cf822463f", 470)]
[TestCase(@"https://github.com/RadiusNetworks/android-ibeacon-service.git",
@"e916f1d0d6e98c05e9aea3365b1cd91aec117da5", 470)]
[TestCase(@"https://github.com/etsy/oculus.git",
@"3cb3626faee58d8387a9807b4a7c6efc840151ea", 467)]
[TestCase(@"https://github.com/pingpongboss/StandOut.git",
@"1ee77f1ac862d4dbf84d21ce38519bd78e44c91d", 467)]
[TestCase(@"https://github.com/richardwilly98/elasticsearch-river-mongodb.git",
@"c2e4240fc8481b10fb0b94b2eb5d9c131ef22354", 465)]
[TestCase(@"https://github.com/owncloud/android.git",
@"70677a46fdb3fbf11dc9885b77e7dfe29646821f", 463)]
[TestCase(@"https://github.com/wyouflf/xUtils.git",
@"9cdd5bd42035b6f4c6318119cc348797327cd95d", 463)]
[TestCase(@"https://github.com/unclebob/fitnesse.git",
@"6252a712699b0bf674eaa07d3018db3854a0adbf", 461)]
[TestCase(@"https://github.com/pwnall/chromeview.git",
@"e5d3d248a4f73928b0a6ddc0b16f8a29c982d99e", 461)]
[TestCase(@"https://github.com/forcedotcom/phoenix.git",
@"5e49d5f940f9dbd2538fb890f0cc6697068c74ac", 458)]
[TestCase(@"https://github.com/sirthias/pegdown.git",
@"e645dc6118a08c385907d4fb4ce9ba0816c836d8", 457)]
[TestCase(@"https://github.com/guardianproject/ChatSecureAndroid.git",
@"acff537de56c5957c74c5670c39938f76c564ac7", 456)]
[TestCase(@"https://github.com/puniverse/quasar.git",
@"0561de92c77b0c94c3b66e57344d0e97c6f72434", 455)]
[TestCase(@"https://github.com/chrislacy/TweetLanes.git",
@"c0f13c9e5085c8a8a3290d20d419f43e9257eba8", 454)]
[TestCase(@"https://github.com/rundeck/rundeck.git",
@"6b832473d4fecad533f96d6908b1bffab97c97d3", 453)]
[TestCase(@"https://github.com/gabrielemariotti/androiddev.git",
@"e4f4399e6b23cf7d0a8ab8e2dd96c13290df5042", 453)]
[TestCase(@"https://github.com/jmxtrans/jmxtrans.git",
@"d67aa723ee8bb7cd6adc520925c453e7710097de", 452)]
[TestCase(@"https://github.com/joscha/play-authenticate.git",
@"32bdc032a8321e665f91ebcfe8df40ae53d31084", 451)]
[TestCase(@"https://github.com/apigee/usergrid-stack.git",
@"06a6ff5131327b3f39bcae1665204a4e9d78aa2d", 451)]
[TestCase(@"https://github.com/alibaba/dubbo.git",
@"17becc2d6676be84b01c0d15a81c5f33f85d21d6", 449)]
[TestCase(@"https://github.com/apache/incubator-storm.git",
@"1a0b46e95ab4ac467525314a75819a75dec92c40", 449)]
[TestCase(@"https://github.com/chrisjenx/Calligraphy.git",
@"6590aa7e2f1255d343b1c1e70358584cfe5146d3", 449)]
[TestCase(@"https://github.com/eclipse-color-theme/eclipse-color-theme.git",
@"697d04d24e86a1308562c15198aafe0a0e419df2", 447)]
[TestCase(@"https://github.com/emilsjolander/sprinkles.git",
@"64579073bac01066423b9f69b13f67a3994bb798", 446)]
[TestCase(@"https://github.com/trifork/erjang.git",
@"6e8527bfa12448303c2eb48640acdeec5dadd774", 439)]
[TestCase(@"https://github.com/FasterXML/jackson-core.git",
@"b0a2e19b1db9a26a43dc5cd3d3e7ab3fef5751b8", 438)]
[TestCase(@"https://github.com/cgeo/cgeo.git",
@"62f3d4b7c15358f80ff42e8d5816d73d7de4de7e", 438)]
[TestCase(@"https://github.com/stephanenicolas/Quality-Tools-for-Android.git",
@"1ec3bada6ae37a254db8ef1b0d8db2e10275056f", 438)]
[TestCase(@"https://github.com/jeeeyul/eclipse-themes.git",
@"13f5ae7ae9c74354b7ec271d5d3ff05189ad1bc5", 437)]
[TestCase(@"https://github.com/LarsWerkman/HoloColorPicker.git",
@"57890dca081c18fc7c4dd39a3f0cd65a58f4a43e", 437)]
[TestCase(@"https://github.com/ervandew/eclim.git",
@"67a4bb3dd5edf3ea787e068d029fbd89a599d7ac", 436)]
[TestCase(@"https://github.com/Diablo-D3/DiabloMiner.git",
@"4637a487b6ece3daef2b8b52fa231842aa6b2d95", 436)]
[TestCase(@"https://github.com/edmodo/cropper.git",
@"a80f0cc86b64d2b22ff931a933d6750b8200c597", 436)]
[TestCase(@"https://github.com/MichaelEvans/ColorArt.git",
@"c819bbe562caa373d8ceab068af781b3c8ed202e", 435)]
[TestCase(@"https://github.com/danieloeh/AntennaPod.git",
@"ae849077c78770f096f40e9360250b9e32d14f40", 434)]
[TestCase(@"https://github.com/thiagolocatelli/android-uitableview.git",
@"6a08bfa431a247b1e4b5e4f78c78a87d16949d73", 433)]
[TestCase(@"https://github.com/sephiroth74/ImageViewZoom.git",
@"221fc68f173db4abe49735b66d597341a6fd5867", 433)]
[TestCase(@"https://github.com/e-biz/androidkickstartr.git",
@"f4d756951c8411c87292a33fef3333465a588374", 431)]
[TestCase(@"https://github.com/dodola/android_waterfall.git",
@"f578873f7f74a4d65fe194f7afddc934c42f1233", 430)]
[TestCase(@"https://github.com/linkedin/cleo.git",
@"d0d298ef8ad4550f840c7e660cec314891d48942", 429)]
[TestCase(@"https://github.com/ZhouWeikuan/cocos2d.git",
@"e101a3ba63c67a237a07cca793b753b1d57e5dc7", 429)]
[TestCase(@"https://github.com/PomepuyN/BlurEffectForAndroidDesign.git",
@"18565cc259b6ddc6099a63146657db14d70e426b", 429)]
[TestCase(@"https://github.com/jersey/jersey.git",
@"9e6176cb40c8ac1f41d67dad0a89e7f17c47244c", 427)]
[TestCase(@"https://github.com/fqrouter/fqrouter.git",
@"2468f62cf9ec05a2271fa32a2593963952cc1682", 427)]
[TestCase(@"https://github.com/yanchenko/droidparts.git",
@"40bee3cc1a35e80eb9e252df06bd168529e61da7", 425)]
[TestCase(@"https://github.com/groovy/groovy-core.git",
@"e1d4d933c208d53fb1ff95d8a57774040f0a2a0a", 423)]
[TestCase(@"https://github.com/dynjs/dynjs.git",
@"8f67e07d075847e59975ff5b12f4e49f48547ba0", 423)]
[TestCase(@"https://github.com/antlr/antlr4.git",
@"3111db7a76aaab02b35aa29b1f39ec1bd06d197d", 422)]
[TestCase(@"https://github.com/lucasr/twoway-view.git",
@"317d77f53a7254528fc02ff22e94d26ca5800f9e", 421)]
[TestCase(@"https://github.com/linkedin/sensei.git",
@"b5e686c6c542b3ce1430a407bcaa46ef1ad73e2d", 419)]
[TestCase(@"https://github.com/Netflix/servo.git",
@"72a50f7cb1c356e5b6604d58eb7d13e304ac46ef", 418)]
[TestCase(@"https://github.com/cyrilmottier/Polaris.git",
@"b7af5368d0d1fd2cc24243386f800e946a2d226c", 418)]
[TestCase(@"https://github.com/vekexasia/android-edittext-validator.git",
@"d2e26fb9db61f256286304c7c26051e1be3fd99c", 416)]
[TestCase(@"https://github.com/oakes/Nightweb.git",
@"23f782a5ddf70c894e641943193e347bd99ac0e0", 415)]
[TestCase(@"https://github.com/paddybyers/anode.git",
@"9fc5e8ab7902e52e5d7ccea367e77c9113a68044", 413)]
[TestCase(@"https://github.com/chrisbanes/photup.git",
@"012290c72778f9bfaffcedfef94d8b42837930b9", 412)]
[TestCase(@"https://github.com/linkedin/databus.git",
@"a704ca5ccb0db11dd8c9eb67d32ef1e2216ef601", 410)]
[TestCase(@"https://github.com/ManuelPeinado/MultiChoiceAdapter.git",
@"2e85c36de0655d7eb5c78cda9865d1f83daa1b88", 409)]
[TestCase(@"https://github.com/58code/Argo.git",
@"083e851e1ed4f29a6e228fb1506224cbca6687eb", 408)]
[TestCase(@"https://github.com/Gottox/socket.io-java-client.git",
@"13762a3ee447f3d2e8740a270b137bcdd1ee1b7a", 408)]
[TestCase(@"https://github.com/RomainPiel/Shimmer-android.git",
@"7f461252eecf8da77a2cf78fc02f35e4b072896f", 406)]
[TestCase(@"https://github.com/mybatis/mybatis-3.git",
@"49dcb017d0bc3dea56633911d73671ca5f46e9b8", 405)]
[TestCase(@"https://github.com/korovyansk/android-fb-like-slideout-navigation.git",
@"33187a883d7a07fc5a50a1020b8ca70c41566da0", 404)]
[TestCase(@"https://github.com/square/fest-android.git",
@"570dbafdb649ce4d0fc574c2b8678589165561d1", 404)]
[TestCase(@"https://github.com/akquinet/android-archetypes.git",
@"d4b29c7a88360c60fe8b355db98afba2624c4740", 400)]
[TestCase(@"https://github.com/dreamhead/moco.git",
@"740512d6f8d36f92881a2cc49625d277f2af51e4", 398)]
[TestCase(@"https://github.com/agirbal/umongo.git",
@"5eec471d5aa3c4ff5d026646af605accffb10b70", 398)]
[TestCase(@"https://github.com/M66B/XPrivacy.git",
@"b311b574d56c306d50371312f98574c0c3e8b44b", 397)]
[TestCase(@"https://github.com/spring-projects/spring-android-samples.git",
@"9afd718a00bf346b6cd16fa5265b3965865f76e2", 397)]
[TestCase(@"https://github.com/nzakas/cssembed.git",
@"00b720f01b93019c5d036553043114dd74af8001", 396)]
[TestCase(@"https://github.com/romannurik/Android-SwipeToDismiss.git",
@"ed7ad78d78712be59812b6f427d743cf2dbd01b2", 395)]
[TestCase(@"https://github.com/nathanmarz/elephantdb.git",
@"95f9147eaff949c8b47b9ae69aca74e4d6cfb1be", 394)]
[TestCase(@"https://github.com/openhab/openhab.git",
@"fea4b9f2b2c11ef64282be680ca83538ae7010e2", 391)]
[TestCase(@"https://github.com/flavienlaurent/datetimepicker.git",
@"ee27402ab8a559c6c3687e4559d537604685f388", 387)]
[TestCase(@"https://github.com/MasDennis/Rajawali.git",
@"ce4a8e5629b8eaf38ba63dddb766be7bd06697a1", 385)]
[TestCase(@"https://github.com/spring-projects/spring-security.git",
@"ccf96a4d693cd0e0bd623e5cf51e291c62310890", 385)]
[TestCase(@"https://github.com/impetus-opensource/Kundera.git",
@"b8effcaf0f2a23e890c064a717175e15470d1dfd", 384)]
[TestCase(@"https://github.com/Issacw0ng/SwipeBackLayout.git",
@"bd50aaab1fa28fc1a0b43093732f82db28a503b6", 384)]
[TestCase(@"https://github.com/essentials/Essentials.git",
@"e007331581d2c4c58daebdce0323a1d2a169728e", 383)]
[TestCase(@"https://github.com/jhipster/generator-jhipster.git",
@"d8025cf8bc587b3d080ad37893db87858b6b1a15", 383)]
[TestCase(@"https://github.com/Activiti/Activiti.git",
@"47bac4ff42e482209290e98bb32a3b621c3ac531", 382)]
[TestCase(@"https://github.com/LarsWerkman/QuickReturnListView.git",
@"328f2f881418aa7ae3755c6ddd3519cac40b4a37", 382)]
[TestCase(@"https://github.com/gitgrimbo/android-sliding-menu-demo.git",
@"212bb2b37fb6e205bb7fe57e8eac27501300757b", 378)]
[TestCase(@"https://github.com/iPaulPro/aFileChooser.git",
@"48d65e6649d4201407702b0390326ec9d5c9d17c", 378)]
[TestCase(@"https://github.com/apache/hive.git",
@"d06ca5be1a5014b3afb0d2f33280c730a9f33248", 377)]
[TestCase(@"https://github.com/googlemaps/android-maps-utils.git",
@"ea0166d3671674be0a88c22e2e2f89639859ca06", 377)]
[TestCase(@"https://github.com/dmitry-zaitsev/AndroidSideMenu.git",
@"ef13cd47a5e021d7b4dcd2f11e4a3ac436a15602", 375)]
[TestCase(@"https://github.com/jodoglevy/gargl.git",
@"28496cecce7819ddcfdd612bbbfddb1e8412038c", 374)]
[TestCase(@"https://github.com/Netflix/eureka.git",
@"fe430880d3b878427bec81b0456842d670da2567", 372)]
[TestCase(@"https://github.com/GDG-Korea/PinterestLikeAdapterView.git",
@"dbb655413970078913d18545de6f79ba942d9cb4", 372)]
[TestCase(@"https://github.com/apache/solr.git",
@"38d4687312b711f9716a8077fc249a2e1ff8681a", 371)]
[TestCase(@"https://github.com/OnlyInAmerica/OpenSpritz-Android.git",
@"403f231c91e1ab0896c4d1e1841c550c15ca1fdc", 371)]
[TestCase(@"https://github.com/liferay/liferay-plugins.git",
@"e1c9384b37ae927c2d51dbed8883b406bcee7d96", 370)]
[TestCase(@"https://github.com/shikhar/sshj.git",
@"5159a799dfcc612474e4630aac1d5b85ab5b5347", 370)]
[TestCase(@"https://github.com/nathanmarz/storm-contrib.git",
@"b7585fbe6962437e00b5f2feee75b50de2246d51", 370)]
[TestCase(@"https://github.com/JoanZapata/android-iconify.git",
@"7588d2b58a39e1c953d61ef516729b600989cac1", 370)]
[TestCase(@"https://github.com/jgilfelt/SystemBarTint.git",
@"b72eb27d12f67bf27bcf35577dd27106cfb5d2be", 369)]
[TestCase(@"https://github.com/rtyley/agit.git",
@"685d5bb1f817b0282460ac959b83bceb749ce95a", 367)]
[TestCase(@"https://github.com/gwtbootstrap/gwt-bootstrap.git",
@"5a6c310b835f46aa69ebb428fb4a316370f4d4be", 367)]
[TestCase(@"https://github.com/kilim/kilim.git",
@"4a5cd35c5bab6b80b70e65bd2fec2a68e0b07247", 367)]
[TestCase(@"https://github.com/SpoutDev/Spout.git",
@"52f0992db0acca466e192d41e790a680a0f66b72", 366)]
[TestCase(@"https://github.com/bpellin/keepassdroid.git",
@"4b9bfde82ac8e89c87a70b479183af1847eede07", 365)]
[TestCase(@"https://github.com/erikwt/PullToRefresh-ListView.git",
@"95abe40010a585db49540ba91e03f42eef47a8a4", 365)]
[TestCase(@"https://github.com/torquebox/torquebox.git",
@"c7f450a6e34b0bf5335a33fd33d8493e0dce5084", 364)]
[TestCase(@"https://github.com/dain/leveldb.git",
@"49bd816cd368f958c5c66c115d1f455e0415fbe7", 364)]
[TestCase(@"https://github.com/johnkil/Android-ProgressFragment.git",
@"499e551b147c5270779ac62fb565f505c7516d10", 360)]
[TestCase(@"https://github.com/megamattron/SplinterNet.git",
@"7cf53a952023e75411d92ba7875f57240e29ee63", 357)]
[TestCase(@"https://github.com/CyberAgent/android-gpuimage.git",
@"febdf4900b437b2069661fd371d5469196e26f18", 357)]
[TestCase(@"https://github.com/alexo/wro4j.git",
@"22c99c8346e1af054a523f4a3d01f1fee7fdd0db", 356)]
[TestCase(@"https://github.com/flyingsaucerproject/flyingsaucer.git",
@"1f11dba5b2e37a014e42d3a452adaba4e979952e", 356)]
[TestCase(@"https://github.com/spockframework/spock.git",
@"d33d7e21ccc3c8ea1dcf7c926ac22cb44cb4a8de", 356)]
[TestCase(@"https://github.com/MiCode/FileExplorer.git",
@"d4876cd6bea3fca3f808aa6263fdc5655c089646", 356)]
[TestCase(@"https://github.com/SimonVT/MessageBar.git",
@"6815597856c951c8dc335611f95a6357fc987b4f", 354)]
[TestCase(@"https://github.com/caelum/vraptor.git",
@"16c510b1a722c71d6aff0168517479f7a219643b", 352)]
[TestCase(@"https://github.com/spring-projects/spring-social.git",
@"41244f677dc6d0888debb0e913ae45b555da16b3", 350)]
[TestCase(@"https://github.com/ragunathjawahar/android-saripaar.git",
@"2a28f35ba363c181941aa702ec11f06abbcb013d", 350)]
[TestCase(@"https://github.com/novoda/RESTProvider.git",
@"6cf1611f0e9915cb6bf93a822d22766fa09f3bad", 350)]
[TestCase(@"https://github.com/brettwooldridge/HikariCP.git",
@"1548ccf6d047fae33208b07febe228b91c5cce7e", 348)]
[TestCase(@"https://github.com/pmuellr/weinre.git",
@"8cead952e33b8631b46cbe6c1ba3c0f05772821a", 347)]
[TestCase(@"https://github.com/romainguy/road-trip.git",
@"3601c44eef2af25efe0235e8f68b1598c7fadaa0", 347)]
[TestCase(@"https://github.com/zeromq/jzmq.git",
@"b1e7b07a10ba9b5dda9873bd3db16b8dac2addeb", 345)]
[TestCase(@"https://github.com/alibaba/RocketMQ.git",
@"6a02ec65e89ac866fbc6e7b0c129447ad8855837", 345)]
[TestCase(@"https://github.com/alibaba/mdrill.git",
@"e2e8a5effcd3227e518df2ad2e425bbeef6f3a19", 345)]
[TestCase(@"https://github.com/jboss-developer/jboss-eap-quickstarts.git",
@"09f5bef9ce60328be07b7014b4cd904e94574ff4", 344)]
[TestCase(@"https://github.com/freezy/android-xbmcremote.git",
@"4fc10d7ae43f4b648470138743ba84bfe8e6d05b", 344)]
[TestCase(@"https://github.com/ruboto/ruboto-irb.git",
@"21427b0c2081ebbf65313e6c2129022e58054c95", 341)]
[TestCase(@"https://github.com/webbukkit/dynmap.git",
@"252da2a5c68c5bff7458b84f4d3ecf6cd8b96f02", 340)]
[TestCase(@"https://github.com/undertow-io/undertow.git",
@"0dd642f4a6ab1a66009f1314cffa52a32fccb9b1", 338)]
[TestCase(@"https://github.com/f2prateek/progressbutton.git",
@"0577421b2de54eb561a86f240867e4a5bcab1fb0", 337)]
[TestCase(@"https://github.com/JakeWharton/SwipeToDismissNOA.git",
@"6896c8f4915e286a01931fe4b83b589c54345a8d", 337)]
[TestCase(@"https://github.com/JakeWharton/Android-DirectionalViewPager.git",
@"f966aa804c39b86fda279d99a1e21ba21bd6260a", 337)]
[TestCase(@"https://github.com/mongodb/morphia.git",
@"c6c5a929d7e9c45b9ac26638540edaeabbb7765e", 336)]
[TestCase(@"https://github.com/mattdesl/lwjgl-basics.git",
@"552b1f9cbb00000fb4132d6a792af6e0c7476eab", 336)]
[TestCase(@"https://github.com/commonsguy/cwac-camera.git",
@"3f7e3dc436fce753836f91b751378eec07b89d31", 335)]
[TestCase(@"https://github.com/talklittle/reddit-is-fun.git",
@"ea65ab47bea3a4c79ddeafd081c12c0c5c056f30", 334)]
[TestCase(@"https://github.com/alibaba/zeus.git",
@"3acd02e8ca455d9fe49b5b1c60323eaf678a2704", 334)]
[TestCase(@"https://github.com/QuantumBadger/RedReader.git",
@"5d60f1ec583465fdc90f6a1167716868dbf3728c", 331)]
[TestCase(@"https://github.com/passsy/android-HoloCircularProgressBar.git",
@"771b6db8227a7dcbe39fdd9ea4d87f392f76f961", 331)]
[TestCase(@"https://github.com/qos-ch/logback.git",
@"469e07b3e1e19792f5026719c1074cf9692a89bd", 330)]
[TestCase(@"https://github.com/cbeust/testng.git",
@"9bad50dc3ea6c224665b3f316fc90de8a120083d", 329)]
[TestCase(@"https://github.com/killme2008/Metamorphosis.git",
@"34f902918516a431d2a378a8868bcd9b90c57ceb", 326)]
[TestCase(@"https://github.com/Netflix/Priam.git",
@"c236ce112b70bb44c8d8985af558cfa3743cda59", 324)]
[TestCase(@"https://github.com/tokudu/AndroidPushNotificationsDemo.git",
@"ea18b09073a5fed9aaf22b0733a83286464fe636", 324)]
[TestCase(@"https://github.com/gwhalin/Memcached-Java-Client.git",
@"9623cb7b5383a824def2e2b7f5fcc2e68f8f7a95", 323)]
[TestCase(@"https://github.com/jprante/elasticsearch-river-jdbc.git",
@"d3dcc3b6354e737b265d210f26607a3babf1d5d2", 322)]
[TestCase(@"https://github.com/BoD/android-switch-backport.git",
@"8659825679d47b58f0376e5230da1cf844090f4e", 322)]
[TestCase(@"https://github.com/WhisperSystems/BitHub.git",
@"8f18b7553c1da70fe58ce3c0e539e6ceb40b3782", 322)]
[TestCase(@"https://github.com/StevenRudenko/ActionsContentView.git",
@"21e63aca4f2b7c5ab7d7e87069f741cb4d0a494c", 322)]
[TestCase(@"https://github.com/SonarSource/sonarqube.git",
@"9e6bc9e42f5fbee6e39b5746a8fa8ad20609f201", 321)]
[TestCase(@"https://github.com/LWJGL/lwjgl.git",
@"c17617175b0d9477640baa3e58b286efdb452f5d", 321)]
[TestCase(@"https://github.com/commonsguy/cwac-merge.git",
@"a8149ee80144092c41a3804fe695a30d5f696988", 321)]
[TestCase(@"https://github.com/flavienlaurent/discrollview.git",
@"ee6e12ae1d3287810df66fb343a1e2917e8d3671", 321)]
[TestCase(@"https://github.com/Netflix/archaius.git",
@"edf7e6a4a7e82c2310d6d4a7673c8617792a1212", 320)]
[TestCase(@"https://github.com/EsotericSoftware/kryo.git",
@"acf4dfe5e3b9f8cb7e2824ac85e76faf9b6c8ea5", 320)]
[TestCase(@"https://github.com/dustin/java-memcached-client.git",
@"f2c370fba4374a5828fcab36df45b313c62d7cf7", 319)]
[TestCase(@"https://github.com/bumptech/glide.git",
@"43e7a52d0abb9a03d87e7dfa7bb041f91d5bf039", 319)]
[TestCase(@"https://github.com/Jasig/cas.git",
@"1fde3fbf568b2db2daabd7256506f60036c8b19b", 319)]
[TestCase(@"https://github.com/cloudera/crunch.git",
@"578e81610af74a755ff79999f107cea6969b8b55", 316)]
[TestCase(@"https://github.com/jfinal/jfinal.git",
@"d96c4105a1365ed2240fd8fe78b2d348c83c402a", 316)]
[TestCase(@"https://github.com/square/mortar.git",
@"ec09f999e3dc52e25bfbc0b8c608e269cbb75dc0", 316)]
[TestCase(@"https://github.com/mrniko/netty-socketio.git",
@"1b6ebfce193fd965cccd7349c3e3517b0e424340", 316)]
[TestCase(@"https://github.com/spring-projects/spring-roo.git",
@"32b413d11df4faa7b9f1465f9c08f9f73aeb33e3", 315)]
[TestCase(@"https://github.com/uwescience/datasci_course_materials.git",
@"aa9293c028291670bb27ec44281d282a85aeef74", 315)]
[TestCase(@"https://github.com/Netflix/exhibitor.git",
@"9a3e656f85afea1fd8e32b95923bb6c43a05e72c", 314)]
[TestCase(@"https://github.com/ps3mediaserver/ps3mediaserver.git",
@"c3db01c6982889fcb9b5d5435a212530d0d7b210", 314)]
[TestCase(@"https://github.com/jeromevdl/android-holo-colors-idea-plugin.git",
@"07ff56aef5894fcf566b2a1cd918bc0300a0a696", 314)]
[TestCase(@"https://github.com/tinkerpop/rexster.git",
@"50894ae5cb6e5daab053045de58c5ed5879c24f9", 313)]
[TestCase(@"https://github.com/ChainsDD/Superuser.git",
@"bbb2132badbb78d64a10f9e3674712affbfd8d6f", 313)]
[TestCase(@"https://github.com/wwadge/bonecp.git",
@"95db68c542fc3c55bef014e094170324a70ef5e5", 312)]
[TestCase(@"https://github.com/mcxiaoke/android-volley.git",
@"1abcab7ce0667797ad37fc97ae6b4ec7dd55f1f0", 312)]
[TestCase(@"https://github.com/jpardogo/ListBuddies.git",
@"864d5a50705a5c44fb68da8a3b58cf1e874933f2", 312)]
[TestCase(@"https://github.com/sk89q/worldguard.git",
@"4422d536b7b0cfe1fc4a90a87c95b778828205aa", 311)]
[TestCase(@"https://github.com/rtyley/roboguice-sherlock.git",
@"691d41f41bd42d6d981c4b9f3451ab342efa0293", 310)]
[TestCase(@"https://github.com/daizhenjun/ImageFilterForAndroid.git",
@"4afc0f15d31ccc0e1bf85af64db4b147f3979940", 310)]
[TestCase(@"https://github.com/spring-projects/spring-loaded.git",
@"d40246102dbd59f5ad4845f12109d856a831b620", 309)]
[TestCase(@"https://github.com/cucumber/gherkin.git",
@"8c8041c21fc3a8d70f485e66693a9b6dbc976b9a", 308)]
[TestCase(@"https://github.com/mockito/mockito.git",
@"13515114e8fb30c9c0be65b5c524dd51b3b2dae7", 306)]
[TestCase(@"https://github.com/spring-projects/spring-android.git",
@"143c29fe27e6ac5896a3328fa4628bd00cc31592", 306)]
[TestCase(@"https://github.com/eddieringle/hubroid.git",
@"ca4d694a97358fae4ffc368fb087fa7f660da8af", 305)]
[TestCase(@"https://github.com/sqlcipher/android-database-sqlcipher.git",
@"c6e293c84341d5af9e5a9cc57388a44eb34c31ed", 305)]
[TestCase(@"https://github.com/chrisjenx/ParallaxScrollView.git",
@"4ccedc487c15584e395fce1475757782467ae682", 305)]
[TestCase(@"https://github.com/codebutler/farebot.git",
@"a5606db09d3f0f4374f24b49fdafdf48845b5757", 304)]
[TestCase(@"https://github.com/twotoasters/JazzyListView.git",
@"467663fcf214ae10d41b531a89b74cd019d839aa", 304)]
[TestCase(@"https://github.com/JetBrains/MPS.git",
@"b284eb6e43723f3396f96448425d3d1c2536c8c3", 303)]
[TestCase(@"https://github.com/jacobmoncur/QuiltViewLibrary.git",
@"5e789269bb5a06fb88e08edd1733ad1240b04d49", 303)]
[TestCase(@"https://github.com/flori/json.git",
@"b93b23d87458bc1999ea9829926a097ff5b45213", 302)]
[TestCase(@"https://github.com/spring-projects/spring-petclinic.git",
@"ce7e6e8bdcc3b11571e3ada6b12ad9e5395b03f7", 302)]
[TestCase(@"https://github.com/spring-projects/spring-integration-samples.git",
@"33f8783f13a47cec9dc55559ad73c241d65c376b", 302)]
[TestCase(@"https://github.com/thebuzzmedia/imgscalr.git",
@"8b5c244adf6719b70753c5516eb130caee3e5d8c", 302)]
[TestCase(@"https://github.com/hamcrest/JavaHamcrest.git",
@"40465aa8daaa73912bf2566d260188cb9e863ab3", 302)]
[TestCase(@"https://github.com/jitsi/jitsi.git",
@"d6a2404cf5588ddf17279c0105b59ee94cb07dd3", 301)]
[TestCase(@"https://github.com/mpetazzoni/ttorrent.git",
@"04e9b9a7917141bd0ad95b60354cbd89b94e01d2", 301)]
[TestCase(@"https://github.com/alexruiz/fest-assert-2.x.git",
@"bff5925af00fc732ba3a0e85f6774acba77ec7c8", 301)]
[TestCase(@"https://github.com/spring-projects/spring-data-jpa.git",
@"7c6f4528efda381e5a1e9cb6cf7c1c0b5ea0481f", 300)]
[TestCase(@"https://github.com/entertailion/Fling.git",
@"5289fbec61caff5cb42d166ce15a620652016450", 300)]
[TestCase(@"https://github.com/spring-projects/spring-batch.git",
@"8bfc0d2ab88a83e1e210e6877c4eb4c42b6ded54", 299)]
[TestCase(@"https://github.com/twitter/hbc.git",
@"b186d51d61db8cd56def05353cf7dd4e634dcecf", 299)]
[TestCase(@"https://github.com/JakeWharton/timber.git",
@"ec67076d262bf2a436aa8b130f2a48c06593d05f", 299)]
[TestCase(@"https://github.com/jzachr/goldenorb.git",
@"e556b9c77a45d80a9eeaaa8a603bdf24066528b4", 298)]
[TestCase(@"https://github.com/rmtheis/android-ocr.git",
@"acce920fd1273210c1a6ef9e3be78eb20eddc6aa", 298)]
[TestCase(@"https://github.com/white-cat/ThinkAndroid.git",
@"81dd215e94d25e2a3d9154939a24442520026291", 298)]
[TestCase(@"https://github.com/PomepuyN/discreet-app-rate.git",
@"1e91136d78a0cac464808f527caf6f5869aaa72a", 297)]
[TestCase(@"https://github.com/ahorn/android-rss.git",
@"7763a4374c802f9ae289c105df09e3db9585afc6", 297)]
[TestCase(@"https://github.com/rno/Android-ScrollBarPanel.git",
@"9c6352632353de97cb12ec00fe1739e254e3c01b", 297)]
[TestCase(@"https://github.com/slapperwan/gh4a.git",
@"50a65abc81e34521d72179be510e3eee0aed71c3", 296)]
[TestCase(@"https://github.com/WhiteHouse/wh-app-android.git",
@"c488a018f0411518555f5e73a6f2a12b0eb6cd5d", 295)]
[TestCase(@"https://github.com/spring-projects/spring-data-jpa-examples.git",
@"efd39a593783da0bf21b4a123c53065df410d138", 295)]
[TestCase(@"https://github.com/alibaba/canal.git",
@"b44c6e33bda13fe85946bdd804cf7750edc948ff", 295)]
[TestCase(@"https://github.com/VoltDB/voltdb.git",
@"ab55db0b820fbabe64ec3c1231b035bab90cd45f", 294)]
[TestCase(@"https://github.com/code4craft/webmagic.git",
@"4a035e729a52432bca196dd2d1e3d305888b3468", 294)]
[TestCase(@"https://github.com/datastax/java-driver.git",
@"ba5a3c641c31718c4d4f755120591aee0ae02ab4", 294)]
[TestCase(@"https://github.com/FlowingMedia/TimeFlow.git",
@"5ce043f98e21647cadedef7b8b90f04aa990703f", 294)]
[TestCase(@"https://github.com/nicolasgramlich/AndEngineExamples.git",
@"75b657b2cd7e1153e005a917753b6d0390e034d5", 294)]
[TestCase(@"https://github.com/emilsjolander/android-FlipView.git",
@"76117836e0218d620f416c1657d71bfb51bd770e", 292)]
[TestCase(@"https://github.com/johnlindquist/angularjs-plugin.git",
@"e7d5f80e9e3d321e48091f34a434b178a2c24e97", 291)]
[TestCase(@"https://github.com/b3log/b3log-solo.git",
@"1caf8219d5cb8b644e93b12fb5c9f65b6bcf6183", 290)]
[TestCase(@"https://github.com/twitter/twitter-text-java.git",
@"e9fcba6147d78aff22627d5d0c523009750161ff", 290)]
[TestCase(@"https://github.com/lorensiuswlt/NewQuickAction3D.git",
@"4273b568c8aff56845484b4452e1166c3281ee42", 290)]
[TestCase(@"https://github.com/google/auto.git",
@"4aaaebcf968187d4077436a6b96b0cfac0263250", 289)]
[TestCase(@"https://github.com/yahoo/oozie.git",
@"8ab5e8d1db3a9594cd569035c7d34006b2191483", 289)]
[TestCase(@"https://github.com/eugenp/REST.git",
@"ea889ddb8dbb88cbbc113239043e975e656d3f7d", 289)]
[TestCase(@"https://github.com/jblough/Android-Pdf-Viewer-Library.git",
@"d9d2b26a2d69ffc82a78c47a51dc4c6e14b0d63f", 289)]
[TestCase(@"https://github.com/rgladwell/m2e-android.git",
@"751f1eb4411e1f11fda5328ed08f9e90becb4394", 288)]
[TestCase(@"https://github.com/droolsjbpm/jbpm.git",
@"95c1f7dc25b62be3aeca142d58592a556df9a0ce", 288)]
[TestCase(@"https://github.com/FasterXML/jackson.git",
@"904863fbea1e7f579d9c9460503462750ae352f2", 288)]
[TestCase(@"https://github.com/MiCode/Notes.git",
@"81a66024fe48eaa2206b854430856fe3875ff3ba", 288)]