-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackages
More file actions
1278 lines (1207 loc) · 54.9 KB
/
Copy pathPackages
File metadata and controls
1278 lines (1207 loc) · 54.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Package: com.FireproofStudios.TheRoom
Version: 1.03
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.0), uikittools, appsync
Filename: ./game/com.FireproofStudios.TheRoom-1.03-iOS-5.0.deb
Size: 176137200
MD5sum: 804e8be50aaee7e45934e874f525baa2
SHA1: 9cc9bb7ee54a00196fd78163bbf49e846446afcc
SHA256: 28bff149e0e59acf609c0677385600ed7aeefff9c5f7d925c81e1381fc23982e
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: The%20Room%20v1.0.3.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: The Room v1.03 (iOS 5.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.FireproofStudios.TheRoom
Version: 1.04
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.1.1), uikittools, appsync
Filename: ./game/com.FireproofStudios.TheRoom-1.04-iOS-5.1.1.deb
Size: 180914232
MD5sum: 51011772a03c22afcbf6e03629e13fec
SHA1: 6b3ae8b633134b0a5731502455149534f194b859
SHA256: 6f4aefc775d7798412de8442ba69c565abf65fd6ac4c4e84291fa28bb013c82e
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: The_Room_v1.04_applegamebox.net.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: The Room v1.04 (iOS 5.1.1)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.FireproofStudios.TheRoom2
Version: 6
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.1.1), uikittools, appsync
Filename: ./game/com.FireproofStudios.TheRoom2-6-iOS-5.1.1.deb
Size: 310950622
MD5sum: 0039f536a76ca50d79e43a7529370f96
SHA1: 4031e39fdb9b3344d4732234b54cc5b15d168d27
SHA256: 4f3a3ef63346984305859310e3f5807c73e0d2c24b4ab8dfc54d153bc2943918
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: TheRoomTwo1.1.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: The Room Two v6 (iOS 5.1.1)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.FireproofStudios.TheRoom3
Version: 8
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.1.1), uikittools, appsync
Filename: ./game/com.FireproofStudios.TheRoom3-8-iOS-5.1.1.deb
Size: 571069710
MD5sum: f84942a03e72e01c0baca87bf2e3fa70
SHA1: 8d5acb5d3899736c182032ee56dfef693156c3a8
SHA256: 189fb0edccec378cc9e83b3cad4f32d297530b123baea2b4007efb11280d4417
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: TheRoomThree2.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: The Room Three v8 (iOS 5.1.1)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.FireproofStudios.TheRoomiPhone
Version: 0.3
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.1), uikittools, appsync
Filename: ./game/com.FireproofStudios.TheRoomiPhone-0.3-iOS-5.1.deb
Size: 141840046
MD5sum: e17b871b63c8752b1be4599c65c7581f
SHA1: 094b457fdb3a0e90e75bfa8d7e48998f851b5a40
SHA256: f3ff56c81668c2270bbf18e6a326e3b9c47cb0e33997cc7fa7a1b43619f419e2
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: The%20Room-(com.FireproofStudios.TheRoomiPhone)-0.3-(iOS_5.1)-23b07e6a05b5b819991b8671b7a2e008.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: The Room v0.3 (iOS 5.1)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.afoli.pikachu
Version: 1.0
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.0), uikittools, appsync
Filename: ./game/com.afoli.pikachu-1.0-iOS-3.0.deb
Size: 3216234
MD5sum: 227769a9f8988ebc7915207d77a0c647
SHA1: 50a5941ca8f4e3abfc344cb0ab60b6edfc3d832e
SHA256: a0266b1f5ad5d38de5038cc2b87cca0c0351967e8e4175af3ad2b3a3afeeb02d
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Pikachu%28v1.0%29.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Pikachu v1.0 (iOS 3.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.chillingo.cuttherope
Version: 2.3.2
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 4.3), uikittools, appsync
Filename: ./game/com.chillingo.cuttherope-2.3.2-iOS-4.3.deb
Size: 28653188
MD5sum: 474b016c53457a550f91ea0e5ea35bcb
SHA1: a3e96bae16eaaf35fd12bbaaaa92dd689ac0cb3f
SHA256: d3c746ff03f6fab9c7cc201cc43aaf29bb7b2262a78b7ca529681dc9fff9796e
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: 21%20Cut%20the%20Rope%202.3.2%20(186342633).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Cut the Rope v2.3.2 (iOS 4.3)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.chillingo.cuttherope
Version: 2.5
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.0), uikittools, appsync
Filename: ./game/com.chillingo.cuttherope-2.5-iOS-5.0.deb
Size: 42212512
MD5sum: 77b5fdeccc1d42c6b919b3347eb7eea4
SHA1: ca7f8c35253c736eb55bb541b39d51238091949e
SHA256: 706dc9f260659b61c159155225bed78320793bdc11de0fbb61241839a00d59e9
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: 26%20Cut%20the%20Rope%202.5%20(811729051).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Cut the Rope v2.5 (iOS 5.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.chillingo.cuttherope
Version: 2.6
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 6.0), uikittools, appsync
Filename: ./game/com.chillingo.cuttherope-2.6-iOS-6.0.deb
Size: 43284172
MD5sum: 039a473760a6a23eb08aefd18f68ed77
SHA1: 736002aed434cae0326cdc8f65387c00c48f44d9
SHA256: a019e14729d2a842b3be8ee7960554caedb9a15cc6b8cf6ed2a74a56250f1d52
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: 28%20Cut%20the%20Rope%202.6%20(838565593).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Cut the Rope v2.6 (iOS 6.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.dotgears.flap
Version: 1.0.0
Architecture: iphoneos-arm
Maintainer: dopaemon <actions@github.com>
Depends: firmware (>= 6.0), uikittools, appsync
Filename: ./game/com.dotgears.flap-1.0.0-iOS-6.0.deb
Size: 1403834
MD5sum: eb143054b30012ee23edb0b4cd444fb6
SHA1: b853ae7e024c92d7b7a8605f88e745a18edd51cb
SHA256: 91aea7589a6f1bc56f72822d2a6954145932adc94eee0aa980697eed9db6dc78
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Flappy%20Bird-v1.0.0-iDexRiky-iOS6.0-(Clutch-1.4.6).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <actions@github.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Flappy Bird v1.0.0 (iOS 6.0)
Sponsor: dopaemon <actions@github.com>
Package: com.gameloft.9mm
Version: 1.0.3
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.1), uikittools, appsync
Filename: ./game/com.gameloft.9mm-1.0.3-iOS-5.1.deb
Size: 753905952
MD5sum: 3c599c2fca1cff81bf25056fed28125e
SHA1: d654c2c7215337bc12a46cd613e9ee93a4385c1e
SHA256: 972c17bc9f9df418ce8ca7aac5ae29d14b2db811913d012122847f22c93944ea
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: 9mm%20by%20Gameloft%20%281.0.3%29.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: 9mm v1.0.3 (iOS 5.1)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.ASPHALT4
Version: 1.3.8
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 2.1), uikittools, appsync
Filename: ./game/com.gameloft.ASPHALT4-1.3.8-iOS-2.1.deb
Size: 91251554
MD5sum: 0f5e3a1b3cf6bd71c009601f830dbeb4
SHA1: 012e2dba9894aa153a77a5a6a1d709edd570f261
SHA256: 16b9a1e1db5b5190eb6372e59a10c95d0529570c53d16262661ec1c51f802181
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: ASPHALT4.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: ASPHALT4 v1.3.8 (iOS 2.1)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.AVATAR
Version: 1.4.9
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.1.3), uikittools, appsync
Filename: ./game/com.gameloft.AVATAR-1.4.9-iOS-3.1.3.deb
Size: 203080708
MD5sum: 35da62a7aaaadd2e5f8ec8f9f4ffd17b
SHA1: c7022cab621d71f9a722a94641d702821490fd65
SHA256: a46c45dfe4ecf572264b190768ecc91e33391768da6e79beb0215b4b6d153940
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: AVATAR_v1.4.9_os313.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: AVATAR v1.4.9 (iOS 3.1.3)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.AVATARiPad
Version: 1.1.0
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.2), uikittools, appsync
Filename: ./game/com.gameloft.AVATARiPad-1.1.0-iOS-3.2.deb
Size: 211245234
MD5sum: 411bd5aa6b6571319ee2ebc4a2c3a198
SHA1: d758f39de40cff72907ad016414af09a491797ed
SHA256: cbf2922f0364defbfa06e3f895f00af9e4bfae78bfedd56f4ff58a3b819051f7
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: AVATARiPad_v1.1.0_os32_namanh.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: AVATARiPad v1.1.0 (iOS 3.2)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.AmazingSpiderMan
Version: 1.0.3
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 4.0), uikittools, appsync
Filename: ./game/com.gameloft.AmazingSpiderMan-1.0.3-iOS-4.0.deb
Size: 824989406
MD5sum: e30cf5279bc22601f160f65d9e0c84a0
SHA1: 2f31b0e90d2db49fca7f459263065a2a38d78bed
SHA256: 2d628c8b58de391a44e99b2f392a5c88f145ef0f3d53d8a6b01c536878ec1980
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: AmazingSpiderMan_v1.0.3_os40.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: AmazingSpiderMan v1.0.3 (iOS 4.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.Asphalt5
Version: 1.2.6
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.0), uikittools, appsync
Filename: ./game/com.gameloft.Asphalt5-1.2.6-iOS-3.0.deb
Size: 279858036
MD5sum: 14e2fac30bacb8fc8c98b0a9c4a5cffd
SHA1: 258954842158152c3703688288d9e53f6738e27a
SHA256: f64faf4f73a2768b1cca82ccf54526a98ce2496b28d85997a6b93e4a1e5f6d4c
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Asphalt5-v1.2.6--iOS3.0-(Clutch-1.4.6).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Asphalt5 v1.2.6 (iOS 3.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.Asphalt5iPad
Version: 1.1.1
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.2), uikittools, appsync
Filename: ./game/com.gameloft.Asphalt5iPad-1.1.1-iOS-3.2.deb
Size: 363971446
MD5sum: d93a0f9c0e1e452c000d35016c6cefb5
SHA1: 99395e3d5898310f0cdbd923453a44df848a642c
SHA256: ddb12eb018caa16e72de4327d06085a09055d09c61e08917dd5ef969b897e4a4
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Asphalt%205%20HD%201.1.1%20(app.maiyadi.com)_namanh.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Asphalt5iPad v1.1.1 (iOS 3.2)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.Asphalt6ipad
Version: 1.5.1
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.2), uikittools, appsync
Filename: ./game/com.gameloft.Asphalt6ipad-1.5.1-iOS-3.2.deb
Size: 909985144
MD5sum: e9f58fc5aecc70d5020c2664242d904a
SHA1: 9e8b8ceec368a17e582b14d9bd077b6d489fbcd4
SHA256: 90c3221bbd0a2698ff40e0f96b6a260a302a5ca9fd059342fc1d9b3bf87b75bc
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Asphalt%206%20Adrenaline%20HD%20v1.5.1%20(IOS%203.2+%20for%20iPads%20Only).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Asphalt 6 v1.5.1 (iOS 3.2)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.Asphalt7
Version: 1.8.1
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.0), uikittools, appsync
Filename: ./game/com.gameloft.Asphalt7-1.8.1-iOS-5.0.deb
Size: 1404837484
MD5sum: 563f7dab1205f9101037cf29c77ee60b
SHA1: 293d3fce3f87039f0e31e39cd2c1aaafb2a6c3de
SHA256: ac4bbba6de05f96acfc97ad29f948371ae8ac5f3018a4ec4fceb3926a34f5aaa
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Asphalt7-v1.8.1--iOS5.0-(Clutch-1.4.6).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Asphalt7 v1.8.1 (iOS 5.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.AsphaltAudiRS3
Version: 1.0.1
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.1.3), uikittools, appsync
Filename: ./game/com.gameloft.AsphaltAudiRS3-1.0.1-iOS-3.1.3.deb
Size: 228479630
MD5sum: a56c890092e779932243e78ae6b0aa5d
SHA1: 1f18bd5f17a5113935e26e1d3248ce96c07619e1
SHA256: c79321689d7cb99871b61ce825aed799ae36bef163bf29fb2a68a5623b9f6279
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: AsphaltAudiRS3-(com.gameloft.AsphaltAudiRS3)-1.0.1-(iOS_3.1.3)-69101d4a34688279b9a21e151fc6ce09.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: AsphaltAudiRS3 v1.0.1 (iOS 3.1.3)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.AssassinsCreed
Version: 1.3.3
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.0), uikittools, appsync
Filename: ./game/com.gameloft.AssassinsCreed-1.3.3-iOS-3.0.deb
Size: 165780100
MD5sum: 04aae843b16325ccf89d1478f18da6c4
SHA1: d6940bb8ebcafe7a537aebc1ed0e8e57bff223e4
SHA256: 39bcbb667cd03323be1881aefd7167f26127ac3390479a6bbf7efd73291f0d20
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: com.gameloft.AssassinsCreed-iOS3.0-(Clutch-2.0.4).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: AssassinsCreed v1.3.3 (iOS 3.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.AssassinsCreediPad
Version: 1.0.1
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 4.3), uikittools, appsync
Filename: ./game/com.gameloft.AssassinsCreediPad-1.0.1-iOS-4.3.deb
Size: 273456700
MD5sum: c7e4a58a77c11dd2801ebb8529373e4d
SHA1: 30fb2cef23c3121d1da49e83b2374ffb8366d068
SHA256: b9ed40a7076c62370117e68b1c576c2b86d1367d7b5cbe41684039180caeeb0b
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Assassins_Creed_Altairs_Chronicles_HD_1.0.1_namanh.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Assassins Creed HD v1.0.1 (iOS 4.3)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.BIA
Version: 1.3.5
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.1.2), uikittools, appsync
Filename: ./game/com.gameloft.BIA-1.3.5-iOS-3.1.2.deb
Size: 91113258
MD5sum: cfc87b0a173c4039ea5d1023955ed020
SHA1: 623ef467c90f149f8a7dc2f32a367a78eb2735eb
SHA256: d3fc58e0e180b6f11f6756970c36053381c3afc7dce57675c38f253c186734e9
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Brothers%20In%20Arms%20-%20Hour%20of%20Heroes%201.3.5.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: BIA v1.3.5 (iOS 3.1.2)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.BIA2
Version: 1.1.3
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.1.2), uikittools, appsync
Filename: ./game/com.gameloft.BIA2-1.1.3-iOS-3.1.2.deb
Size: 266806438
MD5sum: 1dc096f0c42b85b1a7240d23d683bf34
SHA1: 95d18e2a57bfe83501cbf81e6b329bba64811328
SHA256: db9aeca6541b9fe95daa0aece71b2cf079e552bf6132cd8f2900feaf369b8d8b
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: com.gameloft.BIA2-iOS3.1.2-(Clutch-2.0.4).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: BIA2 v1.1.3 (iOS 3.1.2)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.BIA2ipad
Version: 1.0.2
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.2), uikittools, appsync
Filename: ./game/com.gameloft.BIA2ipad-1.0.2-iOS-3.2.deb
Size: 264084480
MD5sum: 7e3a914c1dc93547af8efe3d027567cd
SHA1: 66ae13868ac47150ac75671168e92992f9e23eea
SHA256: 515614856d71cb43f86195b829304400cec38e3fe34069a268b27e4a28f47563
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: BIA2HD_v1.0.2_os32_namanh.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: BIA2HD v1.0.2 (iOS 3.2)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.BackStab
Version: 1.0.0
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.1.3), uikittools, appsync
Filename: ./game/com.gameloft.BackStab-1.0.0-iOS-3.1.3.deb
Size: 609553076
MD5sum: 6a209531eac7b3ceef5d2af1abb57a3f
SHA1: a44cbc8e0bf2df08234e98bcafc59e62b2cd2516
SHA256: 3b61c12580a55b9ce0df286cb80689a924654c6b15cdc5e6ea08934ce281363a
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: BackStab%201.0.0.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: BackStab v1.0.0 (iOS 3.1.3)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.BladesOfFury
Version: 1.1.3
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 2.2.1), uikittools, appsync
Filename: ./game/com.gameloft.BladesOfFury-1.1.3-iOS-2.2.1.deb
Size: 125795498
MD5sum: 6028f6dd6ce06cd9d483e5f1e805374c
SHA1: da5966e1a3f68c4df16fdf011abb1c3f92d5d143
SHA256: 3a197edba15c4b443dd7ff0b9cc04f1cf29ab9060748cafbf8057c18c770a555
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Blades%20of%20Fury_v.1.1.3.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: BladesOfFury v1.1.3 (iOS 2.2.1)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.OneVsHundred
Version: 1.1.4
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 2.2.1), uikittools, appsync
Filename: ./game/com.gameloft.OneVsHundred-1.1.4-iOS-2.2.1.deb
Size: 102797208
MD5sum: c0f36f450c4eaa06e0673c57ebc6ca27
SHA1: c193fbd0c13b8a0956546e91fc835f6b6fb79938
SHA256: bd1c50b0d302c6c53ca9b1a07729a961d275acf0bd800f50babb3be0150801f6
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: 1%20vs%20100™_v.1.1.4.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: 1 vs 100 v1.1.4 (iOS 2.2.1)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.asphalt8
Version: 1.0.0
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.0), uikittools, appsync
Filename: ./game/com.gameloft.asphalt8-1.0.0-iOS-5.0.deb
Size: 878462642
MD5sum: b79afa201e44f829b9dbe627373b77f2
SHA1: af57e68e602ae47d7f5045be1d891fd7d083efde
SHA256: a2958204442e17cd422329dfcf5fc24e398446c0ca50e1f3919d37090f977269
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: com.gameloft.asphalt8-iOS5.0-(Clutch-2.0.4).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Asphalt 8 v1.0.0 (iOS 5.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.asphalt8
Version: 1.4.0
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.0), uikittools, appsync
Filename: ./game/com.gameloft.asphalt8-1.4.0-iOS-5.0.deb
Size: 862261194
MD5sum: 7c28399ebe568f63ba37a13e5cd388c5
SHA1: f7ba7ea675aa19146caccdec2679978fbda6780d
SHA256: 994f428c40c056b77242a22a711df391c92b4bf1c30e6f8312422655774b77ce
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Asphalt%208%201.4.0.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Asphalt 8 v1.4.0 (iOS 5.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.asphalt8
Version: 1.7.2
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.0), uikittools, appsync
Filename: ./game/com.gameloft.asphalt8-1.7.2-iOS-5.0.deb
Size: 1144814314
MD5sum: 9003b3660a84e7de80dd50eab48beb7e
SHA1: 80f7537c37ed4a74016743185b75c6a7d39e782c
SHA256: 8d8d41c4fb0f5ccbb4538b1a4e407be93db81820ff21bb7af563f059182ed231
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Asphalt%208-v1.7.2--iOS5.0-(Clutch-1.4.6)_namanh.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Asphalt 8 v1.7.2 (iOS 5.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.asphaltexplosion
Version: 1.0.2
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 6.0), uikittools, appsync
Filename: ./game/com.gameloft.asphaltexplosion-1.0.2-iOS-6.0.deb
Size: 87747818
MD5sum: 93a14abd247a07dc815dc4b3fc2c4b66
SHA1: 6302d773d62c5a0ec4826a519da8e99b016ba4a8
SHA256: 2ad29ae2b3b9898d93291ced37e79ed457dd17f2dc6b8b1c74680a9503fc9be4
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: com.gameloft.asphaltexplosion_1.0.2_ios-6.0_asphalt-o_afb1949f.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Asphalt O v1.0.2 (iOS 6.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.bia3
Version: 1.4.0
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 6.0), uikittools, appsync
Filename: ./game/com.gameloft.bia3-1.4.0-iOS-6.0.deb
Size: 827118718
MD5sum: 7aaf486b5d77cb68b3c7c9eaa3f8d6d3
SHA1: 5ccb121e835ec7c2e9ab533b5fceda532461f26d
SHA256: cfdeb757d2e7f02bac8eb031545ce01518fba02aab01ab6ee430831a5f16a0fb
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: com.gameloft.bia3_namanh.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: bia3 v1.4.0 (iOS 6.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.gangstar4
Version: 1.0.0
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.0), uikittools, appsync
Filename: ./game/com.gameloft.gangstar4-1.0.0-iOS-5.0.deb
Size: 1392494718
MD5sum: 301ddc3017bafe7df135a13b26e0ee3c
SHA1: ba15a332451c107254a821c0adcc042916ad5893
SHA256: ea30c5701a43302188e18c3dc9c411bc074f2cd726fe0585f9e68c179d4f9fef
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: gangstar4-(com.gameloft.gangstar4)-1.0.0-(iOS_5.0)-4487b3ee852a3bd071064020040a05df.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: gangstar4 v1.0.0 (iOS 5.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.gangstar4
Version: 1.5.0
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 6.0), uikittools, appsync
Filename: ./game/com.gameloft.gangstar4-1.5.0-iOS-6.0.deb
Size: 1291526390
MD5sum: 9626a7861c8011b164d70ae7f9ddc084
SHA1: 7108195d1c9a44ca5488cc9cc0307f0997cb4241
SHA256: a8f65ac13b099113730f288044a7ffbf4288ac21155f01bb32fc0e45377901e2
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Gangstar%20Vegas%201.5.0_namanh.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: gangstar4 v1.5.0 (iOS 6.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.glu.ewarriors4
Version: 1170
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 6.0), uikittools, appsync
Filename: ./game/com.glu.ewarriors4-1170-iOS-6.0.deb
Size: 176072564
MD5sum: 13d47fae59c554e697e231e1b82e936a
SHA1: 0229e0778c48bec0243bcc062db5804d380854cf
SHA256: f354543132ac65ec5198bc6a6332fff352e0da9712f013ea8634a70ae60a09d8
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Eternity_Warriors__Hero_s_Call_0.1.0_ios_6.0.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Warriors 4 v1170 (iOS 6.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.hzapptech.tetris-lite
Version: 121
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.0), uikittools, appsync
Filename: ./game/com.hzapptech.tetris-lite-121-iOS-5.0.deb
Size: 18886518
MD5sum: 517d88e604609ab10ae6f0e726df8bc7
SHA1: 04a32e70c0e267954e9e7c7a2f77c591fa9e6ec5
SHA256: 491d6da34d3a83cc93f346a9e7652557f6f7e8d5fc6ed83e41830489c6ad3c2d
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Bricks_4.2.1_AppOnly.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: MyTetris-Lite v121 (iOS 5.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.ketchapp.2048
Version: 1.4
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 4.3), uikittools, appsync
Filename: ./game/com.ketchapp.2048-1.4-iOS-4.3.deb
Size: 2170342
MD5sum: 5e855da17d4a205d228ba845ddf2d8a5
SHA1: 5fb5ff860029b5ada3d49e1ad2bea0660de1e231
SHA256: 147b1a5dda9b907949d9be33c19a009018f8b8b69316c5aa2d333792e65ca5b6
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: com.ketchapp.2048_1.4_ios-4.3_2048_762fdc1e.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: 2048 v1.4 (iOS 4.3)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.masq.321jump
Version: 2.0
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 2.0), uikittools, appsync
Filename: ./game/com.masq.321jump-2.0-iOS-2.0.deb
Size: 4612768
MD5sum: b9620bda9e34182a49075475dec32aa8
SHA1: dc0898d8c9679d5f4749b7a49c2223c66de7c44b
SHA256: 7d0c98cfa4b87e705366deff4a647a71732cc6982ffc9ca8626eb20ff495babf
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: 321Jump_2.0_AppOnly.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: 321Jump v2.0 (iOS 2.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.ndemiccreations.plagueinc
Version: 1.10.1
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 4.3), uikittools, appsync
Filename: ./game/com.ndemiccreations.plagueinc-1.10.1-iOS-4.3.deb
Size: 52995418
MD5sum: 414ab4f9243944818e4ca568e2384a23
SHA1: 11ef9d32adfde80a1b85a647f044b0c82aae7e02
SHA256: b27936027fe20d7e25630cc954b9d49ed4371b74ab8152992591fd6afd3dd7fa
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Plague%20Inc.-v1.10.1-no-name-cracker-(Clutch-1.4.1).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Plague Inc. v1.10.1 (iOS 4.3)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.ndemiccreations.plagueinc
Version: 1.12.6
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 6.0), uikittools, appsync
Filename: ./game/com.ndemiccreations.plagueinc-1.12.6-iOS-6.0.deb
Size: 55149338
MD5sum: 0aed6c113a2449c3ba50b2b9788c3a46
SHA1: 16c6bd459f3d8009bcd7e6776e828a504e8f760d
SHA256: e6a95b91a762996628ec90b79c911eff6b364467496a48b693c0250d36e8c6dc
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Plague%20Inc.-v1.12.5-no-name-cracker-(Clutch-1.4.1).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Plague Inc. v1.12.6 (iOS 6.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.ninjakiwi.bloonstd5
Version: 13454
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 4.3), uikittools, appsync
Filename: ./game/com.ninjakiwi.bloonstd5-13454-iOS-4.3.deb
Size: 93077588
MD5sum: 7172c13412fa10a55329fe8fb8ac65d2
SHA1: b30d32a2bd5152b9ef3f1123279d3c6b051a4f99
SHA256: d66278ef8f4c5abddf724fa24e797c1730a6bc1a89f27897e15da2c791b4d28e
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Bloons%20TD%205-v2.16--iOS4.3-(Clutch-1.4.6).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Bloons TD 5 v13454 (iOS 4.3)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.ninjakiwi.bloonstd5
Version: 20421
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 6.0), uikittools, appsync
Filename: ./game/com.ninjakiwi.bloonstd5-20421-iOS-6.0.deb
Size: 91839770
MD5sum: 351a9991fd4c3d8abbff449ee483e696
SHA1: e63c8b5e1371f91899a1130a0ed32c8de47ac4cf
SHA256: 26d79ad7a5d5bd2c7e236fb11604d1cdc5535371bbaaf24de9948f79e90861db
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Bloons%20TD%205-v3.18--iOS6.0-(Clutch-1.4.6).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Bloons TD 5 v20421 (iOS 6.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.ninjakiwi.bloonstd5hd
Version: 13198
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 4.3), uikittools, appsync
Filename: ./game/com.ninjakiwi.bloonstd5hd-13198-iOS-4.3.deb
Size: 237304478
MD5sum: bad645189575e02a362ed5cb1bbbbc48
SHA1: 19540c263397ad814e46c1dd56543381e38a608c
SHA256: 4e5ea2a491a5440d4f7c914ccf376e7039e15847c070590a7e3a4c29d3b6bc2a
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Bloons_TD_5_HD-v2.15(www.Downloadha.com).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Bloons TD 5 HD v13198 (iOS 4.3)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.nordcurrent.101in1HD
Version: 1.0.6
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.0), uikittools, appsync
Filename: ./game/com.nordcurrent.101in1HD-1.0.6-iOS-5.0.deb
Size: 224201134
MD5sum: c4f510a752e0c54b749e2de7b3810ea8
SHA1: bce49fe0219f6fbe002ca89b04a933a871514573
SHA256: e0593749399f45fb28576f76c02595c6845f4113d5e461f202622c207ee1c636
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: 101+GamesHD_1.0.6_AppOnly.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: 101 GamesHD v1.0.6 (iOS 5.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.nordicgames.nfh
Version: 1
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 6.0), uikittools, appsync
Filename: ./game/com.nordicgames.nfh-1-iOS-6.0.deb
Size: 299862956
MD5sum: 30e6bc52e88a850d0d013d05dd55a8f1
SHA1: 8f732a4e0e24cf16f3b4c98c1e94b03b82d27264
SHA256: bb21cf842e1c2ce6cf520577c384983eb0f397dc40d6aaf9d8deaac2c1d8cd32
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Neighbours_From_Hell_3.5_ios_6.0.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Neighbours From Hell v1 (iOS 6.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.outfit7.talkinggina
Version: 2.0
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 4.1), uikittools, appsync
Filename: ./game/com.outfit7.talkinggina-2.0-iOS-4.1.deb
Size: 41826700
MD5sum: bb7f621a1b011becf1e29cae225111a5
SHA1: e7d486e5e5da5230eaec399ad4f6464202f1a9f3
SHA256: 8e16697e7e85306f063bc170b3de157acc890a90ed0aff2d1977a3c55490e36e
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: 402688503%2B2.0%2BTalking+Gina+the+Giraffe+New%2BAP.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Talking Gina v2.0 (iOS 4.1)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.popcap.PvZiPad
Version: 4111.1.32
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.1.1), uikittools, appsync
Filename: ./game/com.popcap.PvZiPad-4111.1.32-iOS-5.1.1.deb
Size: 154278748
MD5sum: 7a379cc851f3069212d7769d5a7ac312
SHA1: f31a73b802d2c9040d2765382d54e140f488f1fc
SHA256: f2ba4d2f8f9ebbc89ad01f0d629d6bc36ac241a3c4d889436d01ae2316c3d811
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: PvZ%20HD%201.9.9.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: PvZ HD v4111.1.32 (iOS 5.1.1)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.rockstargames.gta3vc
Version: 1.3
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 4.3), uikittools, appsync
Filename: ./game/com.rockstargames.gta3vc-1.3-iOS-4.3.deb
Size: 923405350
MD5sum: d2d96abf44e6e0453e00328700255ef2
SHA1: f36c4639dae2636ac02c1d61c1dbe05868fc61f5
SHA256: 942ead9fc7f3966909b105d3ec1a279236c6b55d022be7a2177fb0c69720125b
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Grand%20Theft%20Auto%20-%20Vice%20City%20v1.3%20(IOS%204.3+).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: GTA Vice City v1.3 (iOS 4.3)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.rockstargames.gta3vc
Version: 1.5.1
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.1.1), uikittools, appsync
Filename: ./game/com.rockstargames.gta3vc-1.5.1-iOS-5.1.1.deb
Size: 923935922
MD5sum: 4ad6c6e7d6000a9e520a3efd9c67c3e7
SHA1: 640ad2b82d97d9779d2c5ee36367b66a21231b89
SHA256: 8c75f616a77e6981a5be5ae26052782e361435abe4b48d5bc60dcb6bfa089a22
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: GTA%20Vice%20City-v1.5.1--iOS5.1.1-(Clutch-1.4.6).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: GTA Vice City v1.5.1 (iOS 5.1.1)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: net.mobigame.ZombieCarnaval
Version: 13
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 6.0), uikittools, appsync
Filename: ./game/net.mobigame.ZombieCarnaval-13-iOS-6.0.deb
Size: 57080082
MD5sum: 3fba39ad0647edb4c5522a936c229831
SHA1: 702ef5dea5569cb13b168695b3807a21fbef224a
SHA256: 9a5b712b549fb072e4b8689896c887865b85386e8c29c871c45e95d06dd3f3ce
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Z.Tsunami-v3.2.0-no-name-cracker-(Clutch-1.4.1).ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Z.Tsunami v13 (iOS 6.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: net.mobigame.ZombieCarnaval
Version: 14
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 6.0), uikittools, appsync
Filename: ./game/net.mobigame.ZombieCarnaval-14-iOS-6.0.deb
Size: 68050474
MD5sum: 609fce38a1cb9b79e0c30f293eb2e055
SHA1: a4a6986307cfac63ee7b47cca7213f4fec992983
SHA256: 434c53ae0ef6400772e8d878a517966c6a78b90e40f55dda91c3c336b097930c
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Z.Tsunami-(net.mobigame.ZombieCarnaval)-14-(iOS_6.0)-2476488bcea0c06745c661d13c4e3959.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Z.Tsunami v14 (iOS 6.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.apple.iBooks
Version: 1929
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 5.0), uikittools, appsync
Filename: ./game/com.apple.iBooks-1929-iOS-5.0.deb
Size: 29762498
MD5sum: 735a1dd350e73eb843523b0a9b02ed37
SHA1: 8c9b2efa8df0b0a5fe5fcf39e58ee0cc50607a25
SHA256: e3235d3fd2d5a3149fdfafc2c9b1ef39256dec1ae7eb24784f99df3f65cee7bb
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: iBooks_3.1.3_AppOnly.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: iBooks v1929 (iOS 5.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.gameloft.Asphalt6
Version: 1.3.8
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.1.3), uikittools, appsync
Filename: ./game/com.gameloft.Asphalt6-1.3.8-iOS-3.1.3.deb
Size: 617744958
MD5sum: 4dee29062388ad678b1c103dd900968a
SHA1: 402cc17c798cf7cd6724d00f0654b55467a9441c
SHA256: 19c677fcec17c29631629046106ba9c25b5c33e983716ade20ad91d5ec15918d
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: Asphalt%206%201.3.8.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: Asphalt 6 v1.3.8 (iOS 3.1.3)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.treehouse.1951
Version: 1.0
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 3.0), uikittools, appsync
Filename: ./game/com.treehouse.1951-1.0-iOS-3.0.deb
Size: 15627470
MD5sum: b1affe861d52236a11c11d8f992490e5
SHA1: dc08158e6a995be4413dca3aaf42850a1dd8e418
SHA256: bf0b974352ab9146d55b4ed4710bc73804ec4caf791358ec4ac25ad239c483b2
Section: AppStore Apps
Homepage: https://github.com/CydiaBlock/AppStore
Description: The decrypted ipa file: 1951_1.0_AppOnly.ipa converted to .deb automatically by https://alex-free.github.io/ipa2deb .
Author: dopaemon <polarisdp@gmail.com>
Depiction: https://github.com/CydiaBlock/AppStore
Name: 1951 v1.0 (iOS 3.0)
Sponsor: dopaemon <polarisdp@gmail.com>
Package: com.google.Maps
Version: 4.3.51252
Architecture: iphoneos-arm
Maintainer: dopaemon <polarisdp@gmail.com>
Depends: firmware (>= 6.0), uikittools, appsync
Filename: ./game/com.google.Maps-4.3.51252-iOS-6.0.deb
Size: 20313054
MD5sum: 65062ba9ac2ca85471cfa2df2dadddee
SHA1: 30f4d37b6d0c5054722e359ce8d3eba576eb5c16
SHA256: ac62d2d9bb3d951734129d246c98b452e98289bd55b0e9e8e9e034aebde13ac5