forked from jordanlambrecht/tracker-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
161 lines (157 loc) · 4.31 KB
/
Copy pathindex.ts
File metadata and controls
161 lines (157 loc) · 4.31 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
// src/data/trackers/index.ts
import type { TrackerRegistryEntry } from "@/data/tracker-registry"
export * from "./720pier"
export * from "./abtorrents"
export * from "./aither"
export * from "./alpharatio"
export * from "./animebytes"
export * from "./animez"
export * from "./anthelion"
export * from "./asiancinema"
export * from "./avistaz"
export * from "./beyondhd"
export * from "./bibliotik"
export * from "./blutopia"
export * from "./broadcasthenet"
export * from "./cathoderaytube"
export * from "./cinemageddon"
export * from "./cinemaz"
export * from "./concertos"
export * from "./darkpeers"
export * from "./digitalcore"
export * from "./empornium"
export * from "./exoticaz"
export * from "./fearnopeer"
export * from "./filelist"
export * from "./gazellegames"
export * from "./greatposterwall"
export * from "./hawkeuno"
export * from "./hdbits"
export * from "./hdtorrents"
export * from "./iptorrents"
export * from "./lst"
export * from "./luminarr"
export * from "./morethantv"
export * from "./myanonamouse"
export * from "./nebulance"
export * from "./oldtoons"
export * from "./onlyencodes"
export * from "./orpheus"
export * from "./passthepopcorn"
export * from "./phoenixproject"
export * from "./privatehd"
export * from "./racing4everyone"
export * from "./redacted"
export * from "./reelflix"
export * from "./secretcinema"
export * from "./seedpool"
export * from "./skipthecommercials"
export * from "./sportscult"
export * from "./torrentleech"
export * from "./tvvault"
export * from "./uhdbits"
export * from "./uploadcx"
import { pier720 } from "./720pier"
import { abtorrents } from "./abtorrents"
import { aither } from "./aither"
import { alpharatio } from "./alpharatio"
import { animebytes } from "./animebytes"
import { animez } from "./animez"
import { anthelion } from "./anthelion"
import { asiancinema } from "./asiancinema"
import { avistaz } from "./avistaz"
import { beyondhd } from "./beyondhd"
import { bibliotik } from "./bibliotik"
import { blutopia } from "./blutopia"
import { broadcasthenet } from "./broadcasthenet"
import { cathoderaytube } from "./cathoderaytube"
import { cinemageddon } from "./cinemageddon"
import { cinemaz } from "./cinemaz"
import { concertos } from "./concertos"
import { darkpeers } from "./darkpeers"
import { digitalcore } from "./digitalcore"
import { empornium } from "./empornium"
import { exoticaz } from "./exoticaz"
import { fearnopeer } from "./fearnopeer"
import { filelist } from "./filelist"
import { gazellegames } from "./gazellegames"
import { greatposterwall } from "./greatposterwall"
import { hawkeuno } from "./hawkeuno"
import { hdbits } from "./hdbits"
import { hdtorrents } from "./hdtorrents"
import { iptorrents } from "./iptorrents"
import { lst } from "./lst"
import { luminarr } from "./luminarr"
import { morethantv } from "./morethantv"
import { myanonamouse } from "./myanonamouse"
import { nebulance } from "./nebulance"
import { oldtoons } from "./oldtoons"
import { onlyencodes } from "./onlyencodes"
import { orpheus } from "./orpheus"
import { passthepopcorn } from "./passthepopcorn"
import { phoenixproject } from "./phoenixproject"
import { privatehd } from "./privatehd"
import { racing4everyone } from "./racing4everyone"
import { redacted } from "./redacted"
import { reelflix } from "./reelflix"
import { secretcinema } from "./secretcinema"
import { seedpool } from "./seedpool"
import { skipthecommercials } from "./skipthecommercials"
import { sportscult } from "./sportscult"
import { torrentleech } from "./torrentleech"
import { tvvault } from "./tvvault"
import { uhdbits } from "./uhdbits"
import { uploadcx } from "./uploadcx"
export const ALL_TRACKERS: TrackerRegistryEntry[] = [
pier720,
abtorrents,
aither,
asiancinema,
alpharatio,
animebytes,
animez,
anthelion,
avistaz,
beyondhd,
bibliotik,
blutopia,
broadcasthenet,
cathoderaytube,
cinemageddon,
cinemaz,
concertos,
darkpeers,
digitalcore,
empornium,
exoticaz,
fearnopeer,
filelist,
gazellegames,
greatposterwall,
hawkeuno,
hdbits,
hdtorrents,
iptorrents,
lst,
luminarr,
morethantv,
myanonamouse,
nebulance,
oldtoons,
onlyencodes,
orpheus,
passthepopcorn,
phoenixproject,
privatehd,
racing4everyone,
redacted,
reelflix,
secretcinema,
seedpool,
skipthecommercials,
sportscult,
torrentleech,
tvvault,
uhdbits,
uploadcx,
]