diff --git a/__tests__/src/utils.test.ts b/__tests__/src/utils.test.ts index 4e07204d..73569a25 100644 --- a/__tests__/src/utils.test.ts +++ b/__tests__/src/utils.test.ts @@ -1,4 +1,51 @@ -import { calculatePageNumber, calculatePositionNumber, isBrowserEnv } from "../../src/utils"; +import config from "../../config"; +import { + calculatePageNumber, + calculatePositionNumber, + isBrowserEnv, + internalSlash, + getIconsPathOnCDN, +} from "../../src/utils"; + +describe("getIconsPathOnCDN", () => { + test("should return the correctly formed URL for the export folder", () => { + const result = getIconsPathOnCDN("/path/my_icon", "export"); + expect(result).toBe(`${config.CDN_ASSETS_HOSTING}/export/path/my_icon.png`); + }); + + test("should return the correctly formed URL for the export folder", () => { + const result = getIconsPathOnCDN("my_icon", "export"); + expect(result).toBe(`${config.CDN_ASSETS_HOSTING}/export/my_icon.png`); + }); + + test("should append .png if the filename does not end with .png in the export folder", () => { + const result = getIconsPathOnCDN("my_icon.png", "export"); + expect(result).toBe(`${config.CDN_ASSETS_HOSTING}/export/my_icon.png`); + }); + + test("should return the correctly formed URL for the export_flatten folder", () => { + const result = getIconsPathOnCDN("/path/to/my_icon", "export_flatten"); + expect(result).toBe(`${config.CDN_ASSETS_HOSTING}/export_flatten/my_icon.png`); + }); + + test("should remove the path and keep only the filename in the export_flatten folder", () => { + const result = getIconsPathOnCDN("/path/to/my_icon.png", "export_flatten"); + expect(result).toBe(`${config.CDN_ASSETS_HOSTING}/export_flatten/my_icon.png`); + }); +}); + +describe("internalSlash", () => { + test("convert backwards-slash paths to forward slash paths", () => { + expect(internalSlash("c:\\aaaa\\bbbb")).toEqual("c:/aaaa/bbbb"); + expect(internalSlash("c:\\aaaa\\bbbb\\★")).toEqual("c:/aaaa/bbbb/★"); + expect(internalSlash("c:\\aaaa\\bbbb")).toEqual("c:/aaaa/bbbb"); + }); + + test("not convert extended-length paths", () => { + const path = "\\\\?\\c:\\aaaa\\bbbb"; + expect(internalSlash(path)).toEqual(path); + }); +}); describe("calculatePositionNumber", () => { test("returns 0 for page 1", () => { diff --git a/public/sitemap.xml b/public/sitemap.xml index 63814d25..8700460f 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -1,330 +1,336 @@ -https://coh3stats.com2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/about2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/desktop-app2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/dps2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/dak2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/american2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/british2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/german2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/american/units2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/british/units2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/german/units2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=american&type=1v12023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=american&type=2v22023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=american&type=3v32023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=american&type=4v42023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=german&type=1v12023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=german&type=2v22023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=german&type=3v32023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=german&type=4v42023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=dak&type=1v12023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=dak&type=2v22023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=dak&type=3v32023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=dak&type=4v42023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=british&type=1v12023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=british&type=2v22023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=british&type=3v32023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/leaderboards?race=british&type=4v42023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/players/614952023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/players/61495?view=recentMatches2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/players/29462023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/players/2946?view=recentMatches2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/players/8712023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/players/871?view=recentMatches2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/players/38682023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/players/3868?view=recentMatches2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/base_defense_us2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/hmg_fighting_position_us2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/howitzer_105mm_us2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/mortar_pit_81mm_us2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/assault_engineer_us2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/bazooka_team_us2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/captain_us2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/engineer_us2023-04-02T18:27:49.319Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/marksman_team_partisan2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/medic_partisan2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/medic_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/paratrooper_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/pathfinder_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/resistance_fighters_partisan2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/riflemen_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/saboteurs_partisan2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/scout_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/sniper_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/ssf_commandos_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/anzioannie_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/at_gun_57mm_paradrop_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/at_gun_57mm_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/hmg_30cal_paradrop_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/hmg_30cal_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/mortar_81mm_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/pack_howitzer_75mm_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/ambulance_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/chaffee_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/command_halftrack_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/greyhound_recrewable_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/greyhound_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/halftrack_75mm_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/halftrack_assault_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/halftrack_medical_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/halftrack_quad_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/halftrack_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/hellcat_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/logistics_truck_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/m29_weasal_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/recovery_vehicle_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/scott_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/sherman_76mm_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/sherman_bulldozer_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/sherman_easy_8_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/sherman_recrewable_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/sherman_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/sherman_whizbang_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/stuart_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/truck_4x4_medical_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/truck_4x4_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/american/units/truck_6x6_us2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/base_defense_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/bofors_emplacement_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/howitzer_25pdr_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/howitzer_base_25pdr_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/howitzer_bl_5_5_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/australian_light_infantry_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/canadian_heavy_infantry_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/commando_lmg_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/commando_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/guards_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/gurkhas_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/indian_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/medic_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/sapper_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/sas_squad_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/sniper_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/tommy_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/anzioannie_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/at_gun_17pdr_mobile_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/at_gun_17pdr_pheasant_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/at_gun_2pdr_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/at_gun_6pdr_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/at_gun_6_pdr_recrew_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/bofors_towed_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/hmg_commando_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/hmg_vickers_recrew_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/hmg_vickers_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/mortar_81mm_recrew_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/mortar_81mm_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/mortar_heavy_4_2_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/pack_howitzer_75mm_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/archer_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/bishop_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/centaur_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/churchill_75mm_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/churchill_black_prince_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/churchill_crocodile_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/churchill_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/command_churchill_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/crusader_57mm_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/crusader_aa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/crusader_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/cwt_15_flatbed_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/cwt_15_quad_mount_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/cwt_15_truck_medical_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/cwt_15_truck_repair_resupply_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/cwt_15_truck_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/dingo_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/grant_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/halftrack_m3_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/humber_recrewable_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/humber_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/matilda_command_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/matilda_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/pheasant_halftrack_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/sherman_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/stuart_ace_recrewable_sp_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/stuart_ace_sp_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/stuart_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/valentine_command_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/valentine_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/base_defense_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/bofors_emplacement_afrika_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/howitzer_25pdr_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/howitzer_base_25pdr_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/howitzer_bl_5_5_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/australian_light_infantry_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/canadian_heavy_infantry_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/commando_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/commando_lmg_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/guards_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/gurkhas_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/indian_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/medic_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/officer_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/sapper_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/sas_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/sniper_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/tommy_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/at_gun_17pdr_mobile_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/at_gun_2pdr_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/at_gun_6pdr_africa_recrew_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/at_gun_6pdr_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/bofors_towed_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/hmg_commando_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/hmg_vickers_africa_recrew_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/hmg_vickers_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/mortar_81mm_africa_recrew_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/mortar_81mm_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/mortar_heavy_4_2_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/pack_howitzer_75mm_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/archer_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/bishop_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/centaur_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/churchill_75mm_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/churchill_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/churchill_black_prince_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/churchill_crocodile_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/command_churchill_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/crusader_57mm_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/crusader_aa_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/crusader_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/cwt_15_flatbed_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/cwt_15_quad_mount_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/cwt_15_truck_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/cwt_15_truck_medical_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/cwt_15_truck_recrewable_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/cwt_15_truck_repair_resupply_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/dingo_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/grant_africa_recrewable_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/grant_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/humber_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/matilda_africa_recrewable_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/matilda_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/pheasant_halftrack_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/sherman_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/stuart_africa_recrewable_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/british/units/stuart_africa_uk2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/aa_gun_20mm_emplacement_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/at_gun_88mm_emplacement_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/base_defense_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/hmg_mg42_bunker_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/howitzer_105mm_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/mortar_bunker_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/bersaglieri_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/fallschirmjagers_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/fallschirmpioneers_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/fallschirmsniper_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/grenadier_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/guastatori_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/jaeger_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/medic_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/officer_ger_sp2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/panzergrenadier_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/pioneer_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/pioneer_ger_mc_spotter2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/sniper_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/stormtrooper_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/aa_gun_20mm_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/anzioannie_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/at_gun_75mm_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/at_gun_88mm_pak43_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/at_gun_lg40_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/hmg_mg42_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/hmg_mg42_ger_sp2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/hmg_mg42_ger_sp_gela2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/howitzer_cannone_da_105_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/leig_75mm_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/mortar_81mm_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/nebelwerfer_150mm_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/team_weapon_parent_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/armored_car_8_rad_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/armored_car_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/brummbar_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/halftrack_251_flak_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/halftrack_251_mortar_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/halftrack_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/halftrack_medical_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/halftrack_recrewable_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/halftrack_stummel_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/halftrack_stummel_recrewable_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/kettenkrad_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/l6_40_flame_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/l6_40_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/l6_40_recrewable_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/m13_40_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/marder_iii_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/nashorn_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/panther_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/panzer_iv_cmd_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/panzer_iv_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/recovery_vehicle_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/semovente_75_18_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/stug_iii_d_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/stug_iii_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/tiger_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/truck_2_5_cargo_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/truck_2_5_fuel_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/truck_2_5_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/truck_2_5_medical_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/wespe_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/wirbelwind_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/german/units/wirbelwind_recrewable_ger2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/base_defense_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/assault_panzergrenadier_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/bersaglieri_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/guastatori_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/medic_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzergrenadier_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzerjaeger_inf_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzerpioneer_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/at_gun_50mm_pak_38_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/at_gun_88mm_mobile_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/hmg_mg34_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/howitzer_cannone_da_105_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/leig_75mm_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/mortar_team_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/armored_car_222_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/armored_car_8_rad_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/armored_tractor_254_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/armored_tractor_254_ak_signals_sp2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_250_20mm_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_250_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_250_deployment_1_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_250_deployment_2_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_250_medical_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_250_mortar_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_251_stuka_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_251_weapon_supply_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_7_flak_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_medical_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_recovery_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_support_250_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/halftrack_towed_88mm_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/kradschutzen_motorcycle_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/l6_40_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/l6_40_flame_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/m13_40_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/m13_40_ak_sp_gela2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/m13_40_command_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/marder_iii_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzer_iii_37mm_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzer_iii_50mm_long_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzer_iii_50mm_short_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzer_iii_75mm_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzer_iii_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzer_iii_command_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzer_iii_flame_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzer_iv_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzer_iv_command_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/panzer_iv_stubby_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/semovente_75_18_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/stug_iii_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/stug_iii_d_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/tiger_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/truck_2_5_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/truck_2_5_medical_ak2023-04-02T18:27:49.320Zweekly0.7 -https://coh3stats.com/explorer/races/dak/units/truck_2_5_towed_cannone_da_105_ak2023-04-02T18:27:49.320Zweekly0.7 +https://coh3stats.com2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/about2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/desktop-app2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/dps2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/unit-browser2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/other/open-data2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/other/ranking-tiers2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/search2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/stats/leaderboards2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/stats/players2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=american&type=1v12023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=american&type=2v22023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=american&type=3v32023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=american&type=4v42023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=german&type=1v12023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=german&type=2v22023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=german&type=3v32023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=german&type=4v42023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=dak&type=1v12023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=dak&type=2v22023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=dak&type=3v32023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=dak&type=4v42023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=british&type=1v12023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=british&type=2v22023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=british&type=3v32023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/leaderboards?race=british&type=4v42023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/players/614952023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/players/61495?view=recentMatches2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/players/29462023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/players/2946?view=recentMatches2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/players/8712023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/players/871?view=recentMatches2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/players/38682023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/players/3868?view=recentMatches2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/base_defense_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/hmg_fighting_position_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/howitzer_105mm_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/mortar_pit_81mm_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/assault_engineer_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/bazooka_team_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/captain_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/engineer_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/marksman_team_partisan2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/medic_partisan2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/medic_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/paratrooper_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/pathfinder_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/resistance_fighters_partisan2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/riflemen_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/saboteurs_partisan2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/scout_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/sniper_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/ssf_commandos_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/anzioannie_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/at_gun_57mm_paradrop_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/at_gun_57mm_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/hmg_30cal_paradrop_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/hmg_30cal_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/mortar_81mm_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/pack_howitzer_75mm_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/ambulance_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/chaffee_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/command_halftrack_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/greyhound_recrewable_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/greyhound_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/halftrack_75mm_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/halftrack_assault_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/halftrack_medical_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/halftrack_quad_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/halftrack_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/hellcat_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/logistics_truck_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/m29_weasal_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/recovery_vehicle_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/scott_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/sherman_76mm_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/sherman_bulldozer_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/sherman_easy_8_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/sherman_recrewable_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/sherman_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/sherman_whizbang_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/stuart_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/truck_4x4_medical_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/truck_4x4_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/american/units/truck_6x6_us2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/base_defense_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/bofors_emplacement_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/howitzer_25pdr_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/howitzer_base_25pdr_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/howitzer_bl_5_5_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/australian_light_infantry_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/canadian_heavy_infantry_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/commando_lmg_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/commando_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/guards_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/gurkhas_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/indian_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/medic_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/sapper_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/sas_squad_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/sniper_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/tommy_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/anzioannie_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/at_gun_17pdr_mobile_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/at_gun_17pdr_pheasant_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/at_gun_2pdr_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/at_gun_6pdr_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/at_gun_6_pdr_recrew_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/bofors_towed_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/hmg_commando_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/hmg_vickers_recrew_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/hmg_vickers_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/mortar_81mm_recrew_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/mortar_81mm_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/mortar_heavy_4_2_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/pack_howitzer_75mm_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/archer_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/bishop_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/centaur_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/churchill_75mm_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/churchill_black_prince_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/churchill_crocodile_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/churchill_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/command_churchill_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/crusader_57mm_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/crusader_aa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/crusader_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/cwt_15_flatbed_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/cwt_15_quad_mount_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/cwt_15_truck_medical_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/cwt_15_truck_repair_resupply_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/cwt_15_truck_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/dingo_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/grant_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/halftrack_m3_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/humber_recrewable_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/humber_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/matilda_command_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/matilda_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/pheasant_halftrack_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/sherman_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/stuart_ace_recrewable_sp_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/stuart_ace_sp_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/stuart_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/valentine_command_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/valentine_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/base_defense_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/bofors_emplacement_afrika_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/howitzer_25pdr_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/howitzer_base_25pdr_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/howitzer_bl_5_5_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/australian_light_infantry_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/canadian_heavy_infantry_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/commando_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/commando_lmg_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/guards_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/gurkhas_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/indian_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/medic_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/officer_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/sapper_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/sas_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/sniper_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/tommy_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/at_gun_17pdr_mobile_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/at_gun_2pdr_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/at_gun_6pdr_africa_recrew_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/at_gun_6pdr_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/bofors_towed_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/hmg_commando_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/hmg_vickers_africa_recrew_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/hmg_vickers_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/mortar_81mm_africa_recrew_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/mortar_81mm_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/mortar_heavy_4_2_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/pack_howitzer_75mm_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/archer_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/bishop_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/centaur_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/churchill_75mm_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/churchill_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/churchill_black_prince_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/churchill_crocodile_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/command_churchill_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/crusader_57mm_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/crusader_aa_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/crusader_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/cwt_15_flatbed_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/cwt_15_quad_mount_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/cwt_15_truck_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/cwt_15_truck_medical_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/cwt_15_truck_recrewable_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/cwt_15_truck_repair_resupply_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/dingo_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/grant_africa_recrewable_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/grant_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/humber_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/matilda_africa_recrewable_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/matilda_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/pheasant_halftrack_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/sherman_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/stuart_africa_recrewable_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/british/units/stuart_africa_uk2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/aa_gun_20mm_emplacement_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/at_gun_88mm_emplacement_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/base_defense_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/hmg_mg42_bunker_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/howitzer_105mm_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/mortar_bunker_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/bersaglieri_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/fallschirmjagers_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/fallschirmpioneers_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/fallschirmsniper_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/grenadier_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/guastatori_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/jaeger_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/medic_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/officer_ger_sp2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/panzergrenadier_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/pioneer_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/pioneer_ger_mc_spotter2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/sniper_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/stormtrooper_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/aa_gun_20mm_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/anzioannie_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/at_gun_75mm_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/at_gun_88mm_pak43_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/at_gun_lg40_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/hmg_mg42_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/hmg_mg42_ger_sp2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/hmg_mg42_ger_sp_gela2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/howitzer_cannone_da_105_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/leig_75mm_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/mortar_81mm_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/nebelwerfer_150mm_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/team_weapon_parent_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/armored_car_8_rad_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/armored_car_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/brummbar_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/halftrack_251_flak_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/halftrack_251_mortar_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/halftrack_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/halftrack_medical_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/halftrack_recrewable_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/halftrack_stummel_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/halftrack_stummel_recrewable_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/kettenkrad_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/l6_40_flame_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/l6_40_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/l6_40_recrewable_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/m13_40_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/marder_iii_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/nashorn_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/panther_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/panzer_iv_cmd_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/panzer_iv_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/recovery_vehicle_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/semovente_75_18_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/stug_iii_d_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/stug_iii_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/tiger_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/truck_2_5_cargo_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/truck_2_5_fuel_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/truck_2_5_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/truck_2_5_medical_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/wespe_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/wirbelwind_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/german/units/wirbelwind_recrewable_ger2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/base_defense_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/assault_panzergrenadier_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/bersaglieri_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/guastatori_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/medic_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzergrenadier_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzerjaeger_inf_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzerpioneer_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/at_gun_50mm_pak_38_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/at_gun_88mm_mobile_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/hmg_mg34_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/howitzer_cannone_da_105_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/leig_75mm_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/mortar_team_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/armored_car_222_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/armored_car_8_rad_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/armored_tractor_254_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/armored_tractor_254_ak_signals_sp2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_250_20mm_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_250_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_250_deployment_1_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_250_deployment_2_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_250_medical_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_250_mortar_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_251_stuka_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_251_weapon_supply_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_7_flak_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_medical_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_recovery_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_support_250_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/halftrack_towed_88mm_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/kradschutzen_motorcycle_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/l6_40_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/l6_40_flame_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/m13_40_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/m13_40_ak_sp_gela2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/m13_40_command_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/marder_iii_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzer_iii_37mm_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzer_iii_50mm_long_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzer_iii_50mm_short_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzer_iii_75mm_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzer_iii_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzer_iii_command_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzer_iii_flame_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzer_iv_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzer_iv_command_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/panzer_iv_stubby_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/semovente_75_18_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/stug_iii_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/stug_iii_d_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/tiger_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/truck_2_5_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/truck_2_5_medical_ak2023-07-28T15:40:31.766Zweekly0.7 +https://coh3stats.com/explorer/races/dak/units/truck_2_5_towed_cannone_da_105_ak2023-07-28T15:40:31.766Zweekly0.7 \ No newline at end of file diff --git a/src/utils.ts b/src/utils.ts index 13359a3d..28493b85 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -52,7 +52,10 @@ const getIconsPathOnCDN = ( iconPath += ".png"; } - return internalSlash(`${config.CDN_ASSETS_HOSTING}/${folder}/${iconPath}`); + // Remove double // in case we have them in the path + const urlPath = `/${folder}/${iconPath}`.replace(/\/\//g, "/"); + + return internalSlash(`${config.CDN_ASSETS_HOSTING}${urlPath}`); }; // https://stackoverflow.com/questions/11381673/detecting-a-mobile-browser/11381730#11381730