-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
next-sitemap.config.js
357 lines (350 loc) · 24.5 KB
/
next-sitemap.config.js
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
/** @type {import('next-sitemap').IConfig} */
module.exports = {
siteUrl: process.env.SITE_URL || "https://coh3stats.com",
// generateRobotsTxt: true, // already generated
sitemapSize: 10000,
generateIndexSitemap: false, // we don't need multiple files
exclude: ["/tests/*", "/admin/*"],
changefreq: "weekly",
additionalPaths: async (config) => {
const result = [];
for (const path of customPaths) {
result.push(await config.transform(config, path));
// result.push({loc: path})
}
// // Add all unit paths
// for (const path of unitPaths) {
// result.push(await config.transform(config, path));
// }
// Unit paths are automatically generated when you run the command
// eslint-disable-next-line @typescript-eslint/no-var-requires
const fs = require("fs");
const unitPaths = fs.readFileSync("unit-paths.txt", "utf8").split("\n");
for (const path of unitPaths) {
result.push(await config.transform(config, path));
}
return result;
},
};
const customPaths = [
"https://coh3stats.com/explorer/races/dak/units",
"https://coh3stats.com/explorer/races/american/units",
"https://coh3stats.com/explorer/races/british/units",
"https://coh3stats.com/explorer/races/german/units",
"https://coh3stats.com/leaderboards?race=american&type=1v1",
"https://coh3stats.com/leaderboards?race=american&type=2v2",
"https://coh3stats.com/leaderboards?race=american&type=3v3",
"https://coh3stats.com/leaderboards?race=american&type=4v4",
"https://coh3stats.com/leaderboards?race=german&type=1v1",
"https://coh3stats.com/leaderboards?race=german&type=2v2",
"https://coh3stats.com/leaderboards?race=german&type=3v3",
"https://coh3stats.com/leaderboards?race=german&type=4v4",
"https://coh3stats.com/leaderboards?race=dak&type=1v1",
"https://coh3stats.com/leaderboards?race=dak&type=2v2",
"https://coh3stats.com/leaderboards?race=dak&type=3v3",
"https://coh3stats.com/leaderboards?race=dak&type=4v4",
"https://coh3stats.com/leaderboards?race=british&type=1v1",
"https://coh3stats.com/leaderboards?race=british&type=2v2",
"https://coh3stats.com/leaderboards?race=british&type=3v3",
"https://coh3stats.com/leaderboards?race=british&type=4v4",
// Let's add some players and their recent matches too, so we can get some famous people indexed
"https://coh3stats.com/players/61495", // Elpern
"https://coh3stats.com/players/61495?view=recentMatches",
"https://coh3stats.com/players/2946", // RuckaKimbo
"https://coh3stats.com/players/2946?view=recentMatches",
"https://coh3stats.com/players/871", // Rei
"https://coh3stats.com/players/871?view=recentMatches",
"https://coh3stats.com/players/3868",
"https://coh3stats.com/players/3868?view=recentMatches",
];
// const unitPaths = [
// "https://coh3stats.com/explorer/races/american/units/base_defense_us",
// "https://coh3stats.com/explorer/races/american/units/hmg_fighting_position_us",
// "https://coh3stats.com/explorer/races/american/units/howitzer_105mm_us",
// "https://coh3stats.com/explorer/races/american/units/mortar_pit_81mm_us",
// "https://coh3stats.com/explorer/races/american/units/assault_engineer_us",
// "https://coh3stats.com/explorer/races/american/units/bazooka_team_us",
// "https://coh3stats.com/explorer/races/american/units/captain_us",
// "https://coh3stats.com/explorer/races/american/units/engineer_us",
// "https://coh3stats.com/explorer/races/american/units/marksman_team_partisan",
// "https://coh3stats.com/explorer/races/american/units/medic_partisan",
// "https://coh3stats.com/explorer/races/american/units/medic_us",
// "https://coh3stats.com/explorer/races/american/units/paratrooper_us",
// "https://coh3stats.com/explorer/races/american/units/pathfinder_us",
// "https://coh3stats.com/explorer/races/american/units/resistance_fighters_partisan",
// "https://coh3stats.com/explorer/races/american/units/riflemen_us",
// "https://coh3stats.com/explorer/races/american/units/saboteurs_partisan",
// "https://coh3stats.com/explorer/races/american/units/scout_us",
// "https://coh3stats.com/explorer/races/american/units/sniper_us",
// "https://coh3stats.com/explorer/races/american/units/ssf_commandos_us",
// "https://coh3stats.com/explorer/races/american/units/anzioannie_us",
// "https://coh3stats.com/explorer/races/american/units/at_gun_57mm_paradrop_us",
// "https://coh3stats.com/explorer/races/american/units/at_gun_57mm_us",
// "https://coh3stats.com/explorer/races/american/units/hmg_30cal_paradrop_us",
// "https://coh3stats.com/explorer/races/american/units/hmg_30cal_us",
// "https://coh3stats.com/explorer/races/american/units/mortar_81mm_us",
// "https://coh3stats.com/explorer/races/american/units/pack_howitzer_75mm_us",
// "https://coh3stats.com/explorer/races/american/units/ambulance_us",
// "https://coh3stats.com/explorer/races/american/units/chaffee_us",
// "https://coh3stats.com/explorer/races/american/units/command_halftrack_us",
// "https://coh3stats.com/explorer/races/american/units/greyhound_recrewable_us",
// "https://coh3stats.com/explorer/races/american/units/greyhound_us",
// "https://coh3stats.com/explorer/races/american/units/halftrack_75mm_us",
// "https://coh3stats.com/explorer/races/american/units/halftrack_assault_us",
// "https://coh3stats.com/explorer/races/american/units/halftrack_medical_us",
// "https://coh3stats.com/explorer/races/american/units/halftrack_quad_us",
// "https://coh3stats.com/explorer/races/american/units/halftrack_us",
// "https://coh3stats.com/explorer/races/american/units/hellcat_us",
// "https://coh3stats.com/explorer/races/american/units/logistics_truck_us",
// "https://coh3stats.com/explorer/races/american/units/m29_weasal_us",
// "https://coh3stats.com/explorer/races/american/units/recovery_vehicle_us",
// "https://coh3stats.com/explorer/races/american/units/scott_us",
// "https://coh3stats.com/explorer/races/american/units/sherman_76mm_us",
// "https://coh3stats.com/explorer/races/american/units/sherman_bulldozer_us",
// "https://coh3stats.com/explorer/races/american/units/sherman_easy_8_us",
// "https://coh3stats.com/explorer/races/american/units/sherman_recrewable_us",
// "https://coh3stats.com/explorer/races/american/units/sherman_us",
// "https://coh3stats.com/explorer/races/american/units/sherman_whizbang_us",
// "https://coh3stats.com/explorer/races/american/units/stuart_us",
// "https://coh3stats.com/explorer/races/american/units/truck_4x4_medical_us",
// "https://coh3stats.com/explorer/races/american/units/truck_4x4_us",
// "https://coh3stats.com/explorer/races/american/units/truck_6x6_us",
// "https://coh3stats.com/explorer/races/british/units/base_defense_uk",
// "https://coh3stats.com/explorer/races/british/units/bofors_emplacement_uk",
// "https://coh3stats.com/explorer/races/british/units/howitzer_25pdr_uk",
// "https://coh3stats.com/explorer/races/british/units/howitzer_base_25pdr_uk",
// "https://coh3stats.com/explorer/races/british/units/howitzer_bl_5_5_uk",
// "https://coh3stats.com/explorer/races/british/units/australian_light_infantry_uk",
// "https://coh3stats.com/explorer/races/british/units/canadian_heavy_infantry_uk",
// "https://coh3stats.com/explorer/races/british/units/commando_lmg_uk",
// "https://coh3stats.com/explorer/races/british/units/commando_uk",
// "https://coh3stats.com/explorer/races/british/units/guards_uk",
// "https://coh3stats.com/explorer/races/british/units/gurkhas_uk",
// "https://coh3stats.com/explorer/races/british/units/indian_uk",
// "https://coh3stats.com/explorer/races/british/units/medic_uk",
// "https://coh3stats.com/explorer/races/british/units/sapper_uk",
// "https://coh3stats.com/explorer/races/british/units/sas_squad_uk",
// "https://coh3stats.com/explorer/races/british/units/sniper_uk",
// "https://coh3stats.com/explorer/races/british/units/tommy_uk",
// "https://coh3stats.com/explorer/races/british/units/anzioannie_uk",
// "https://coh3stats.com/explorer/races/british/units/at_gun_17pdr_mobile_uk",
// "https://coh3stats.com/explorer/races/british/units/at_gun_17pdr_pheasant_uk",
// "https://coh3stats.com/explorer/races/british/units/at_gun_2pdr_uk",
// "https://coh3stats.com/explorer/races/british/units/at_gun_6pdr_uk",
// "https://coh3stats.com/explorer/races/british/units/at_gun_6_pdr_recrew_uk",
// "https://coh3stats.com/explorer/races/british/units/bofors_towed_uk",
// "https://coh3stats.com/explorer/races/british/units/hmg_commando_uk",
// "https://coh3stats.com/explorer/races/british/units/hmg_vickers_recrew_uk",
// "https://coh3stats.com/explorer/races/british/units/hmg_vickers_uk",
// "https://coh3stats.com/explorer/races/british/units/mortar_81mm_recrew_uk",
// "https://coh3stats.com/explorer/races/british/units/mortar_81mm_uk",
// "https://coh3stats.com/explorer/races/british/units/mortar_heavy_4_2_uk",
// "https://coh3stats.com/explorer/races/british/units/pack_howitzer_75mm_uk",
// "https://coh3stats.com/explorer/races/british/units/archer_uk",
// "https://coh3stats.com/explorer/races/british/units/bishop_uk",
// "https://coh3stats.com/explorer/races/british/units/centaur_uk",
// "https://coh3stats.com/explorer/races/british/units/churchill_75mm_uk",
// "https://coh3stats.com/explorer/races/british/units/churchill_black_prince_uk",
// "https://coh3stats.com/explorer/races/british/units/churchill_crocodile_uk",
// "https://coh3stats.com/explorer/races/british/units/churchill_uk",
// "https://coh3stats.com/explorer/races/british/units/command_churchill_uk",
// "https://coh3stats.com/explorer/races/british/units/crusader_57mm_uk",
// "https://coh3stats.com/explorer/races/british/units/crusader_aa_uk",
// "https://coh3stats.com/explorer/races/british/units/crusader_uk",
// "https://coh3stats.com/explorer/races/british/units/cwt_15_flatbed_uk",
// "https://coh3stats.com/explorer/races/british/units/cwt_15_quad_mount_uk",
// "https://coh3stats.com/explorer/races/british/units/cwt_15_truck_medical_uk",
// "https://coh3stats.com/explorer/races/british/units/cwt_15_truck_repair_resupply_uk",
// "https://coh3stats.com/explorer/races/british/units/cwt_15_truck_uk",
// "https://coh3stats.com/explorer/races/british/units/dingo_uk",
// "https://coh3stats.com/explorer/races/british/units/grant_uk",
// "https://coh3stats.com/explorer/races/british/units/halftrack_m3_uk",
// "https://coh3stats.com/explorer/races/british/units/humber_recrewable_uk",
// "https://coh3stats.com/explorer/races/british/units/humber_uk",
// "https://coh3stats.com/explorer/races/british/units/matilda_command_uk",
// "https://coh3stats.com/explorer/races/british/units/matilda_uk",
// "https://coh3stats.com/explorer/races/british/units/pheasant_halftrack_uk",
// "https://coh3stats.com/explorer/races/british/units/sherman_uk",
// "https://coh3stats.com/explorer/races/british/units/stuart_ace_recrewable_sp_uk",
// "https://coh3stats.com/explorer/races/british/units/stuart_ace_sp_uk",
// "https://coh3stats.com/explorer/races/british/units/stuart_uk",
// "https://coh3stats.com/explorer/races/british/units/valentine_command_uk",
// "https://coh3stats.com/explorer/races/british/units/valentine_uk",
// "https://coh3stats.com/explorer/races/british/units/base_defense_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/bofors_emplacement_afrika_uk",
// "https://coh3stats.com/explorer/races/british/units/howitzer_25pdr_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/howitzer_base_25pdr_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/howitzer_bl_5_5_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/australian_light_infantry_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/canadian_heavy_infantry_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/commando_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/commando_lmg_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/guards_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/gurkhas_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/indian_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/medic_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/officer_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/sapper_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/sas_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/sniper_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/tommy_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/at_gun_17pdr_mobile_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/at_gun_2pdr_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/at_gun_6pdr_africa_recrew_uk",
// "https://coh3stats.com/explorer/races/british/units/at_gun_6pdr_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/bofors_towed_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/hmg_commando_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/hmg_vickers_africa_recrew_uk",
// "https://coh3stats.com/explorer/races/british/units/hmg_vickers_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/mortar_81mm_africa_recrew_uk",
// "https://coh3stats.com/explorer/races/british/units/mortar_81mm_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/mortar_heavy_4_2_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/pack_howitzer_75mm_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/archer_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/bishop_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/centaur_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/churchill_75mm_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/churchill_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/churchill_black_prince_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/churchill_crocodile_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/command_churchill_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/crusader_57mm_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/crusader_aa_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/crusader_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/cwt_15_flatbed_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/cwt_15_quad_mount_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/cwt_15_truck_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/cwt_15_truck_medical_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/cwt_15_truck_recrewable_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/cwt_15_truck_repair_resupply_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/dingo_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/grant_africa_recrewable_uk",
// "https://coh3stats.com/explorer/races/british/units/grant_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/humber_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/matilda_africa_recrewable_uk",
// "https://coh3stats.com/explorer/races/british/units/matilda_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/pheasant_halftrack_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/sherman_africa_uk",
// "https://coh3stats.com/explorer/races/british/units/stuart_africa_recrewable_uk",
// "https://coh3stats.com/explorer/races/british/units/stuart_africa_uk",
// "https://coh3stats.com/explorer/races/german/units/aa_gun_20mm_emplacement_ger",
// "https://coh3stats.com/explorer/races/german/units/at_gun_88mm_emplacement_ger",
// "https://coh3stats.com/explorer/races/german/units/base_defense_ger",
// "https://coh3stats.com/explorer/races/german/units/hmg_mg42_bunker_ger",
// "https://coh3stats.com/explorer/races/german/units/howitzer_105mm_ger",
// "https://coh3stats.com/explorer/races/german/units/mortar_bunker_ger",
// "https://coh3stats.com/explorer/races/german/units/bersaglieri_ger",
// "https://coh3stats.com/explorer/races/german/units/fallschirmjagers_ger",
// "https://coh3stats.com/explorer/races/german/units/fallschirmpioneers_ger",
// "https://coh3stats.com/explorer/races/german/units/fallschirmsniper_ger",
// "https://coh3stats.com/explorer/races/german/units/grenadier_ger",
// "https://coh3stats.com/explorer/races/german/units/guastatori_ger",
// "https://coh3stats.com/explorer/races/german/units/jaeger_ger",
// "https://coh3stats.com/explorer/races/german/units/medic_ger",
// "https://coh3stats.com/explorer/races/german/units/officer_ger_sp",
// "https://coh3stats.com/explorer/races/german/units/panzergrenadier_ger",
// "https://coh3stats.com/explorer/races/german/units/pioneer_ger",
// "https://coh3stats.com/explorer/races/german/units/pioneer_ger_mc_spotter",
// "https://coh3stats.com/explorer/races/german/units/sniper_ger",
// "https://coh3stats.com/explorer/races/german/units/stormtrooper_ger",
// "https://coh3stats.com/explorer/races/german/units/aa_gun_20mm_ger",
// "https://coh3stats.com/explorer/races/german/units/anzioannie_ger",
// "https://coh3stats.com/explorer/races/german/units/at_gun_75mm_ger",
// "https://coh3stats.com/explorer/races/german/units/at_gun_88mm_pak43_ger",
// "https://coh3stats.com/explorer/races/german/units/at_gun_lg40_ger",
// "https://coh3stats.com/explorer/races/german/units/hmg_mg42_ger",
// "https://coh3stats.com/explorer/races/german/units/hmg_mg42_ger_sp",
// "https://coh3stats.com/explorer/races/german/units/hmg_mg42_ger_sp_gela",
// "https://coh3stats.com/explorer/races/german/units/howitzer_cannone_da_105_ger",
// "https://coh3stats.com/explorer/races/german/units/leig_75mm_ger",
// "https://coh3stats.com/explorer/races/german/units/mortar_81mm_ger",
// "https://coh3stats.com/explorer/races/german/units/nebelwerfer_150mm_ger",
// "https://coh3stats.com/explorer/races/german/units/team_weapon_parent_ger",
// "https://coh3stats.com/explorer/races/german/units/armored_car_8_rad_ger",
// "https://coh3stats.com/explorer/races/german/units/armored_car_ger",
// "https://coh3stats.com/explorer/races/german/units/brummbar_ger",
// "https://coh3stats.com/explorer/races/german/units/halftrack_251_flak_ger",
// "https://coh3stats.com/explorer/races/german/units/halftrack_251_mortar_ger",
// "https://coh3stats.com/explorer/races/german/units/halftrack_ger",
// "https://coh3stats.com/explorer/races/german/units/halftrack_medical_ger",
// "https://coh3stats.com/explorer/races/german/units/halftrack_recrewable_ger",
// "https://coh3stats.com/explorer/races/german/units/halftrack_stummel_ger",
// "https://coh3stats.com/explorer/races/german/units/halftrack_stummel_recrewable_ger",
// "https://coh3stats.com/explorer/races/german/units/kettenkrad_ger",
// "https://coh3stats.com/explorer/races/german/units/l6_40_flame_ger",
// "https://coh3stats.com/explorer/races/german/units/l6_40_ger",
// "https://coh3stats.com/explorer/races/german/units/l6_40_recrewable_ger",
// "https://coh3stats.com/explorer/races/german/units/m13_40_ger",
// "https://coh3stats.com/explorer/races/german/units/marder_iii_ger",
// "https://coh3stats.com/explorer/races/german/units/nashorn_ger",
// "https://coh3stats.com/explorer/races/german/units/panther_ger",
// "https://coh3stats.com/explorer/races/german/units/panzer_iv_cmd_ger",
// "https://coh3stats.com/explorer/races/german/units/panzer_iv_ger",
// "https://coh3stats.com/explorer/races/german/units/recovery_vehicle_ger",
// "https://coh3stats.com/explorer/races/german/units/semovente_75_18_ger",
// "https://coh3stats.com/explorer/races/german/units/stug_iii_d_ger",
// "https://coh3stats.com/explorer/races/german/units/stug_iii_ger",
// "https://coh3stats.com/explorer/races/german/units/tiger_ger",
// "https://coh3stats.com/explorer/races/german/units/truck_2_5_cargo_ger",
// "https://coh3stats.com/explorer/races/german/units/truck_2_5_fuel_ger",
// "https://coh3stats.com/explorer/races/german/units/truck_2_5_ger",
// "https://coh3stats.com/explorer/races/german/units/truck_2_5_medical_ger",
// "https://coh3stats.com/explorer/races/german/units/wespe_ger",
// "https://coh3stats.com/explorer/races/german/units/wirbelwind_ger",
// "https://coh3stats.com/explorer/races/german/units/wirbelwind_recrewable_ger",
// "https://coh3stats.com/explorer/races/dak/units/base_defense_ak",
// "https://coh3stats.com/explorer/races/dak/units/assault_panzergrenadier_ak",
// "https://coh3stats.com/explorer/races/dak/units/bersaglieri_ak",
// "https://coh3stats.com/explorer/races/dak/units/guastatori_ak",
// "https://coh3stats.com/explorer/races/dak/units/medic_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzergrenadier_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzerjaeger_inf_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzerpioneer_ak",
// "https://coh3stats.com/explorer/races/dak/units/at_gun_50mm_pak_38_ak",
// "https://coh3stats.com/explorer/races/dak/units/at_gun_88mm_mobile_ak",
// "https://coh3stats.com/explorer/races/dak/units/hmg_mg34_ak",
// "https://coh3stats.com/explorer/races/dak/units/howitzer_cannone_da_105_ak",
// "https://coh3stats.com/explorer/races/dak/units/leig_75mm_ak",
// "https://coh3stats.com/explorer/races/dak/units/mortar_team_ak",
// "https://coh3stats.com/explorer/races/dak/units/armored_car_222_ak",
// "https://coh3stats.com/explorer/races/dak/units/armored_car_8_rad_ak",
// "https://coh3stats.com/explorer/races/dak/units/armored_tractor_254_ak",
// "https://coh3stats.com/explorer/races/dak/units/armored_tractor_254_ak_signals_sp",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_250_20mm_ak",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_250_ak",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_250_deployment_1_ak",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_250_deployment_2_ak",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_250_medical_ak",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_250_mortar_ak",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_251_stuka_ak",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_251_weapon_supply_ak",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_7_flak_ak",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_medical_ak",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_recovery_ak",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_support_250_ak",
// "https://coh3stats.com/explorer/races/dak/units/halftrack_towed_88mm_ak",
// "https://coh3stats.com/explorer/races/dak/units/kradschutzen_motorcycle_ak",
// "https://coh3stats.com/explorer/races/dak/units/l6_40_ak",
// "https://coh3stats.com/explorer/races/dak/units/l6_40_flame_ak",
// "https://coh3stats.com/explorer/races/dak/units/m13_40_ak",
// "https://coh3stats.com/explorer/races/dak/units/m13_40_ak_sp_gela",
// "https://coh3stats.com/explorer/races/dak/units/m13_40_command_ak",
// "https://coh3stats.com/explorer/races/dak/units/marder_iii_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzer_iii_37mm_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzer_iii_50mm_long_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzer_iii_50mm_short_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzer_iii_75mm_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzer_iii_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzer_iii_command_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzer_iii_flame_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzer_iv_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzer_iv_command_ak",
// "https://coh3stats.com/explorer/races/dak/units/panzer_iv_stubby_ak",
// "https://coh3stats.com/explorer/races/dak/units/semovente_75_18_ak",
// "https://coh3stats.com/explorer/races/dak/units/stug_iii_ak",
// "https://coh3stats.com/explorer/races/dak/units/stug_iii_d_ak",
// "https://coh3stats.com/explorer/races/dak/units/tiger_ak",
// "https://coh3stats.com/explorer/races/dak/units/truck_2_5_ak",
// "https://coh3stats.com/explorer/races/dak/units/truck_2_5_medical_ak",
// "https://coh3stats.com/explorer/races/dak/units/truck_2_5_towed_cannone_da_105_ak",
// ];