diff --git a/src/morph/benchmark/benchmark.test.ts b/src/morph/benchmark/benchmark.test.ts index 2f09eaa..7142cfd 100644 --- a/src/morph/benchmark/benchmark.test.ts +++ b/src/morph/benchmark/benchmark.test.ts @@ -3,6 +3,8 @@ import { join } from "node:path"; import { test } from "vitest"; import { validateActionInstance } from "../actions"; import { validateRule } from "../rule"; +import { Ruleset, applyRuleset, applyRulesetNew } from "../ruleset"; +import { GOOD } from "@/good/good_spec"; test("validate 10.000 action instances", () => { const jsonFile = readFileSync( @@ -49,3 +51,39 @@ test("validate 10.000 rules", () => { console.timeEnd("validation of 10.000 rules"); console.log(`Found ${foundErrs} errors`); }); + +test("morph 10.000 artifacts with 100 rules", () => { + const rulesetFile = readFileSync( + join(import.meta.dirname, "ruleset-apply-rules-bench-data.json"), + "utf8" + ); + const ruleset = JSON.parse(rulesetFile) as Ruleset; + + const goodFile = readFileSync( + join(import.meta.dirname, "ruleset-good-bench-data.json"), + "utf8" + ); + + const good = JSON.parse(goodFile) as GOOD; + + const oldStart = Date.now(); + applyRuleset(ruleset, good); + const oldEnd = Date.now(); + + const newStart = Date.now(); + applyRulesetNew(ruleset, good); + const newEnd = Date.now(); + + const oldTime = oldEnd - oldStart; + const newTime = newEnd - newStart; + + const speedup = (Math.max(newTime, oldTime)) / Math.min(newTime, oldTime); + const stats = { + oldTime, + newTime, + fastest: newTime < oldTime ? 'new' : 'old', + speedup: `${speedup.toFixed(2)}x` + } + console.table(stats); + +}); diff --git a/src/morph/benchmark/ruleset-apply-rules-bench-data-gen.js b/src/morph/benchmark/ruleset-apply-rules-bench-data-gen.js new file mode 100644 index 0000000..e9c688b --- /dev/null +++ b/src/morph/benchmark/ruleset-apply-rules-bench-data-gen.js @@ -0,0 +1,297 @@ +// @ts-check + +// TODO: use objects from good_spec + +const allLocationCharacterKeys = [ + "Albedo", + "Alhaitham", + "Aloy", + "Amber", + "AratakiItto", + "Baizhu", + "Barbara", + "Beidou", + "Bennett", + "Candace", + "Charlotte", + "Chevreuse", + "Chiori", + "Chongyun", + "Collei", + "Cyno", + "Dehya", + "Diluc", + "Diona", + "Dori", + "Eula", + "Faruzan", + "Fischl", + "Freminet", + "Furina", + "Gaming", + "Ganyu", + "Gorou", + "HuTao", + "Jean", + "KaedeharaKazuha", + "Kaeya", + "KamisatoAyaka", + "KamisatoAyato", + "Kaveh", + "Keqing", + "Kirara", + "Klee", + "KujouSara", + "KukiShinobu", + "Layla", + "Lisa", + "Lynette", + "Lyney", + "Mika", + "Mona", + "Nahida", + "Navia", + "Neuvillette", + "Nilou", + "Ningguang", + "Noelle", + "Qiqi", + "RaidenShogun", + "Razor", + "Rosaria", + "SangonomiyaKokomi", + "Sayu", + "Shenhe", + "ShikanoinHeizou", + "Sucrose", + "Tartaglia", + "Thoma", + "Tighnari", + "Venti", + "Wanderer", + "Wriothesley", + "Xiangling", + "Xianyun", + "Xiao", + "Xingqiu", + "Xinyan", + "YaeMiko", + "Yanfei", + "Yaoyao", + "Yelan", + "Yoimiya", + "YunJin", + "Zhongli", + "Traveler", +] + +const artifactSandsStatKeys = [ + "hp_", + "def_", + "atk_", + "eleMas", + "enerRech_", +] + +const artifactGobletStatKeys = [ + "hp_", + "def_", + "atk_", + "eleMas", + "physical_dmg_", + "anemo_dmg_", + "geo_dmg_", + "electro_dmg_", + "hydro_dmg_", + "pyro_dmg_", + "cryo_dmg_", + "dendro_dmg_", +] + +const artifactCircletStatKeys = [ + "hp_", + "def_", + "atk_", + "eleMas", + "critRate_", + "critDMG_", + "heal_", +] + +const allArtifactSetKeys = [ + "Adventurer", + "ArchaicPetra", + "Berserker", + "BlizzardStrayer", + "BloodstainedChivalry", + "BraveHeart", + "CrimsonWitchOfFlames", + "DeepwoodMemories", + "DefendersWill", + "DesertPavilionChronicle", + "EchoesOfAnOffering", + "EmblemOfSeveredFate", + "FlowerOfParadiseLost", + "Gambler", + "GildedDreams", + "GladiatorsFinale", + "GoldenTroupe", + "HeartOfDepth", + "HuskOfOpulentDreams", + "Instructor", + "Lavawalker", + "LuckyDog", + "MaidenBeloved", + "MarechausseeHunter", + "MartialArtist", + "NighttimeWhispersInTheEchoingWoods", + "NoblesseOblige", + "NymphsDream", + "OceanHuedClam", + "PaleFlame", + "PrayersForDestiny", + "PrayersForIllumination", + "PrayersForWisdom", + "PrayersToSpringtime", + "ResolutionOfSojourner", + "RetracingBolide", + "Scholar", + "ShimenawasReminiscence", + "SongOfDaysPast", + "TenacityOfTheMillelith", + "TheExile", + "ThunderingFury", + "Thundersoother", + "TinyMiracle", + "TravelingDoctor", + "VermillionHereafter", + "ViridescentVenerer", + "VourukashasGlow", + "WanderersTroupe", +] + +const allArtifactSlotKeys = [ + "flower", + "plume", + "sands", + "goblet", + "circlet", +] + +function random(max) { + return Math.floor(Math.random() * max) +} + +function selectRandomCharacter(excludedCharacters = []) { + const charactersToPick = allLocationCharacterKeys.filter(char => !excludedCharacters.includes(char)); + const randomIdx = random(charactersToPick.length); + return charactersToPick[randomIdx]; +} + +function createRandomArtifact(artifactId) { + + const setKey = allArtifactSetKeys[random(allArtifactSetKeys.length)] + + const level = random(20) + + const slotKey = allArtifactSlotKeys[random(allArtifactSlotKeys.length)] + + let mainStatKey; + switch (slotKey) { + case 'flower': + mainStatKey = 'hp'; + break; + case 'plume': + mainStatKey = 'atk'; + break; + case 'sands': + mainStatKey = artifactSandsStatKeys[random(artifactSandsStatKeys.length)] + break; + case 'goblet': + mainStatKey = artifactGobletStatKeys[random(artifactGobletStatKeys.length)] + break; + case 'circlet': + mainStatKey = artifactCircletStatKeys[random(artifactCircletStatKeys.length)] + break; + default: + throw new Error(`SlotKey not found: ${slotKey}`) + } + + const location = selectRandomCharacter() + + return { + "setKey": setKey, + "rarity": 5, + "level": level, + "slotKey": slotKey, + "mainStatKey": mainStatKey, + "substats": [ + // { "key": "hp_", "value": 4.7 }, + // { "key": "critDMG_", "value": 14.8 }, + // { "key": "hp", "value": 538 }, + // { "key": "critRate_", "value": 14.4 } + ], + "location": location, + "lock": true, + "id": `artifact_${artifactId}` + } +} + +// Function to generate random objects +function generateRandomRule(id) { + const actionType = Math.random() < 0.5 ? "equip" : "unequip"; + const filterCharacterName = selectRandomCharacter(); + + const obj = { + id, + action: + actionType === "equip" + ? { type: "equip", to: selectRandomCharacter([filterCharacterName]) } + : { type: "unequip" }, + filter: { + type: "equippingCharacter", + characterName: filterCharacterName, + }, + }; + + return obj; +} + +// Generate 100 rules +const rulesToGenerate = 100 +const rules = []; +for (let i = 0; i < rulesToGenerate; i++) { + rules.push(generateRandomRule(i)); +} + +const ruleset = { + name: 'bench ruleset', + rules +} + +import { writeFileSync } from "node:fs"; +import { join } from "node:path"; + +const rulesetFilePath = join(import.meta.dirname, "ruleset-apply-rules-bench-data.json"); + +writeFileSync(rulesetFilePath, JSON.stringify(ruleset)); + +// Generate 10.000 artifacts +const artifactsToGenerate = 10_000; + +const artifacts = [] +for (let i = 0; i < artifactsToGenerate; i++) { + artifacts.push(createRandomArtifact(i)); +} + +const goodFile = { + format: "GOOD", + dbVersion: 1, + source: "Bench data", + version: 1, + artifacts, +} + +const goodFilePath = join(import.meta.dirname, "ruleset-good-bench-data.json"); + +writeFileSync(goodFilePath, JSON.stringify(goodFile)); diff --git a/src/morph/benchmark/ruleset-apply-rules-bench-data.json b/src/morph/benchmark/ruleset-apply-rules-bench-data.json new file mode 100644 index 0000000..de19881 --- /dev/null +++ b/src/morph/benchmark/ruleset-apply-rules-bench-data.json @@ -0,0 +1 @@ +{"name":"bench ruleset","rules":[{"id":0,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Thoma"}},{"id":1,"action":{"type":"equip","to":"Sayu"},"filter":{"type":"equippingCharacter","characterName":"Bennett"}},{"id":2,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Xinyan"}},{"id":3,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Yoimiya"}},{"id":4,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Zhongli"}},{"id":5,"action":{"type":"equip","to":"Jean"},"filter":{"type":"equippingCharacter","characterName":"Yaoyao"}},{"id":6,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Tartaglia"}},{"id":7,"action":{"type":"equip","to":"Aloy"},"filter":{"type":"equippingCharacter","characterName":"Tighnari"}},{"id":8,"action":{"type":"equip","to":"Xingqiu"},"filter":{"type":"equippingCharacter","characterName":"Sayu"}},{"id":9,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Wriothesley"}},{"id":10,"action":{"type":"equip","to":"Lyney"},"filter":{"type":"equippingCharacter","characterName":"Jean"}},{"id":11,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Chongyun"}},{"id":12,"action":{"type":"equip","to":"Mika"},"filter":{"type":"equippingCharacter","characterName":"Tartaglia"}},{"id":13,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"KaedeharaKazuha"}},{"id":14,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Aloy"}},{"id":15,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Alhaitham"}},{"id":16,"action":{"type":"equip","to":"Mona"},"filter":{"type":"equippingCharacter","characterName":"Collei"}},{"id":17,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Razor"}},{"id":18,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Yelan"}},{"id":19,"action":{"type":"equip","to":"Klee"},"filter":{"type":"equippingCharacter","characterName":"Baizhu"}},{"id":20,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Klee"}},{"id":21,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Ningguang"}},{"id":22,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Wanderer"}},{"id":23,"action":{"type":"equip","to":"Sucrose"},"filter":{"type":"equippingCharacter","characterName":"Thoma"}},{"id":24,"action":{"type":"equip","to":"KamisatoAyaka"},"filter":{"type":"equippingCharacter","characterName":"Fischl"}},{"id":25,"action":{"type":"equip","to":"Thoma"},"filter":{"type":"equippingCharacter","characterName":"Cyno"}},{"id":26,"action":{"type":"equip","to":"Chongyun"},"filter":{"type":"equippingCharacter","characterName":"Ningguang"}},{"id":27,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Cyno"}},{"id":28,"action":{"type":"equip","to":"Gaming"},"filter":{"type":"equippingCharacter","characterName":"KamisatoAyaka"}},{"id":29,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Sucrose"}},{"id":30,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Alhaitham"}},{"id":31,"action":{"type":"equip","to":"Xinyan"},"filter":{"type":"equippingCharacter","characterName":"Tartaglia"}},{"id":32,"action":{"type":"equip","to":"Mika"},"filter":{"type":"equippingCharacter","characterName":"Kaveh"}},{"id":33,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Candace"}},{"id":34,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Chiori"}},{"id":35,"action":{"type":"equip","to":"YunJin"},"filter":{"type":"equippingCharacter","characterName":"Tighnari"}},{"id":36,"action":{"type":"equip","to":"Yaoyao"},"filter":{"type":"equippingCharacter","characterName":"KujouSara"}},{"id":37,"action":{"type":"equip","to":"HuTao"},"filter":{"type":"equippingCharacter","characterName":"Yaoyao"}},{"id":38,"action":{"type":"equip","to":"Xiao"},"filter":{"type":"equippingCharacter","characterName":"Beidou"}},{"id":39,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Mona"}},{"id":40,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Yoimiya"}},{"id":41,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Aloy"}},{"id":42,"action":{"type":"equip","to":"Klee"},"filter":{"type":"equippingCharacter","characterName":"Keqing"}},{"id":43,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Wanderer"}},{"id":44,"action":{"type":"equip","to":"Zhongli"},"filter":{"type":"equippingCharacter","characterName":"AratakiItto"}},{"id":45,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"AratakiItto"}},{"id":46,"action":{"type":"equip","to":"Eula"},"filter":{"type":"equippingCharacter","characterName":"Lyney"}},{"id":47,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"YaeMiko"}},{"id":48,"action":{"type":"equip","to":"Yanfei"},"filter":{"type":"equippingCharacter","characterName":"Diluc"}},{"id":49,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Xianyun"}},{"id":50,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"RaidenShogun"}},{"id":51,"action":{"type":"equip","to":"Navia"},"filter":{"type":"equippingCharacter","characterName":"Kirara"}},{"id":52,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Lynette"}},{"id":53,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Eula"}},{"id":54,"action":{"type":"equip","to":"Collei"},"filter":{"type":"equippingCharacter","characterName":"SangonomiyaKokomi"}},{"id":55,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"KukiShinobu"}},{"id":56,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Lynette"}},{"id":57,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Noelle"}},{"id":58,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Yanfei"}},{"id":59,"action":{"type":"equip","to":"Kirara"},"filter":{"type":"equippingCharacter","characterName":"AratakiItto"}},{"id":60,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Faruzan"}},{"id":61,"action":{"type":"equip","to":"Chiori"},"filter":{"type":"equippingCharacter","characterName":"Noelle"}},{"id":62,"action":{"type":"equip","to":"Lyney"},"filter":{"type":"equippingCharacter","characterName":"Baizhu"}},{"id":63,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"KamisatoAyato"}},{"id":64,"action":{"type":"equip","to":"Xingqiu"},"filter":{"type":"equippingCharacter","characterName":"Tighnari"}},{"id":65,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Wriothesley"}},{"id":66,"action":{"type":"equip","to":"Rosaria"},"filter":{"type":"equippingCharacter","characterName":"Navia"}},{"id":67,"action":{"type":"equip","to":"Traveler"},"filter":{"type":"equippingCharacter","characterName":"Yanfei"}},{"id":68,"action":{"type":"equip","to":"Eula"},"filter":{"type":"equippingCharacter","characterName":"Razor"}},{"id":69,"action":{"type":"equip","to":"Zhongli"},"filter":{"type":"equippingCharacter","characterName":"Mona"}},{"id":70,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Razor"}},{"id":71,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Charlotte"}},{"id":72,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Fischl"}},{"id":73,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"ShikanoinHeizou"}},{"id":74,"action":{"type":"equip","to":"Albedo"},"filter":{"type":"equippingCharacter","characterName":"Nahida"}},{"id":75,"action":{"type":"equip","to":"KujouSara"},"filter":{"type":"equippingCharacter","characterName":"Collei"}},{"id":76,"action":{"type":"equip","to":"Sucrose"},"filter":{"type":"equippingCharacter","characterName":"Chiori"}},{"id":77,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Gorou"}},{"id":78,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Dehya"}},{"id":79,"action":{"type":"equip","to":"Lisa"},"filter":{"type":"equippingCharacter","characterName":"Yaoyao"}},{"id":80,"action":{"type":"equip","to":"Wriothesley"},"filter":{"type":"equippingCharacter","characterName":"Kirara"}},{"id":81,"action":{"type":"equip","to":"KujouSara"},"filter":{"type":"equippingCharacter","characterName":"Dori"}},{"id":82,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Wriothesley"}},{"id":83,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Navia"}},{"id":84,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Chiori"}},{"id":85,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Wanderer"}},{"id":86,"action":{"type":"equip","to":"Alhaitham"},"filter":{"type":"equippingCharacter","characterName":"Dehya"}},{"id":87,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Xiao"}},{"id":88,"action":{"type":"equip","to":"KaedeharaKazuha"},"filter":{"type":"equippingCharacter","characterName":"Mika"}},{"id":89,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Lisa"}},{"id":90,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Lisa"}},{"id":91,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Chevreuse"}},{"id":92,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"AratakiItto"}},{"id":93,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Mona"}},{"id":94,"action":{"type":"equip","to":"Cyno"},"filter":{"type":"equippingCharacter","characterName":"Chiori"}},{"id":95,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Ningguang"}},{"id":96,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"RaidenShogun"}},{"id":97,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Aloy"}},{"id":98,"action":{"type":"equip","to":"Fischl"},"filter":{"type":"equippingCharacter","characterName":"Dehya"}},{"id":99,"action":{"type":"unequip"},"filter":{"type":"equippingCharacter","characterName":"Bennett"}}]} \ No newline at end of file diff --git a/src/morph/benchmark/ruleset-good-bench-data.json b/src/morph/benchmark/ruleset-good-bench-data.json new file mode 100644 index 0000000..c5ba54c --- /dev/null +++ b/src/morph/benchmark/ruleset-good-bench-data.json @@ -0,0 +1 @@ +{"format":"GOOD","dbVersion":1,"source":"Bench data","version":1,"artifacts":[{"setKey":"GladiatorsFinale","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_0"},{"setKey":"Thundersoother","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_1"},{"setKey":"BlizzardStrayer","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Albedo","lock":true,"id":"artifact_2"},{"setKey":"PaleFlame","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_3"},{"setKey":"NoblesseOblige","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_4"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"YunJin","lock":true,"id":"artifact_5"},{"setKey":"BloodstainedChivalry","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Venti","lock":true,"id":"artifact_6"},{"setKey":"OceanHuedClam","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_7"},{"setKey":"VermillionHereafter","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_8"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_10"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_11"},{"setKey":"BlizzardStrayer","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_12"},{"setKey":"LuckyDog","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_13"},{"setKey":"VourukashasGlow","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_14"},{"setKey":"MaidenBeloved","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_15"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_16"},{"setKey":"Thundersoother","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_17"},{"setKey":"ArchaicPetra","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_18"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Chiori","lock":true,"id":"artifact_19"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_20"},{"setKey":"ThunderingFury","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_21"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Jean","lock":true,"id":"artifact_22"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_23"},{"setKey":"PaleFlame","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_24"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Fischl","lock":true,"id":"artifact_25"},{"setKey":"Lavawalker","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_26"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_27"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Layla","lock":true,"id":"artifact_28"},{"setKey":"PrayersForWisdom","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_29"},{"setKey":"ThunderingFury","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_30"},{"setKey":"PrayersToSpringtime","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Albedo","lock":true,"id":"artifact_31"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_32"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_33"},{"setKey":"OceanHuedClam","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_34"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_35"},{"setKey":"NoblesseOblige","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Gaming","lock":true,"id":"artifact_36"},{"setKey":"LuckyDog","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_37"},{"setKey":"PaleFlame","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chiori","lock":true,"id":"artifact_38"},{"setKey":"TinyMiracle","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_39"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_40"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_41"},{"setKey":"PaleFlame","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_42"},{"setKey":"TheExile","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_43"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Albedo","lock":true,"id":"artifact_44"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_45"},{"setKey":"GoldenTroupe","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_46"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_47"},{"setKey":"BloodstainedChivalry","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_48"},{"setKey":"PrayersForIllumination","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_49"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_50"},{"setKey":"BraveHeart","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_51"},{"setKey":"ThunderingFury","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_52"},{"setKey":"VourukashasGlow","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_53"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_54"},{"setKey":"MarechausseeHunter","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_55"},{"setKey":"Scholar","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Razor","lock":true,"id":"artifact_56"},{"setKey":"Berserker","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_57"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_58"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_59"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_60"},{"setKey":"VermillionHereafter","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_61"},{"setKey":"ArchaicPetra","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lyney","lock":true,"id":"artifact_62"},{"setKey":"BloodstainedChivalry","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_63"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_64"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Albedo","lock":true,"id":"artifact_65"},{"setKey":"ThunderingFury","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"YunJin","lock":true,"id":"artifact_66"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_67"},{"setKey":"DeepwoodMemories","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_68"},{"setKey":"Scholar","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_69"},{"setKey":"GladiatorsFinale","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Collei","lock":true,"id":"artifact_70"},{"setKey":"ArchaicPetra","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_71"},{"setKey":"DefendersWill","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Lynette","lock":true,"id":"artifact_72"},{"setKey":"GoldenTroupe","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_73"},{"setKey":"PrayersToSpringtime","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Amber","lock":true,"id":"artifact_74"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_75"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_76"},{"setKey":"Berserker","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Freminet","lock":true,"id":"artifact_77"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_78"},{"setKey":"TinyMiracle","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_79"},{"setKey":"PrayersForDestiny","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_80"},{"setKey":"ThunderingFury","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_81"},{"setKey":"HeartOfDepth","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chiori","lock":true,"id":"artifact_82"},{"setKey":"TinyMiracle","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_83"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_84"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_85"},{"setKey":"SongOfDaysPast","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_86"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_87"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Navia","lock":true,"id":"artifact_88"},{"setKey":"OceanHuedClam","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Beidou","lock":true,"id":"artifact_89"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Nahida","lock":true,"id":"artifact_90"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_91"},{"setKey":"PaleFlame","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Lynette","lock":true,"id":"artifact_92"},{"setKey":"MartialArtist","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_93"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_94"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_95"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_96"},{"setKey":"TinyMiracle","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_97"},{"setKey":"TheExile","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_98"},{"setKey":"PrayersToSpringtime","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_99"},{"setKey":"MaidenBeloved","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_100"},{"setKey":"Lavawalker","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Diluc","lock":true,"id":"artifact_101"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_102"},{"setKey":"VermillionHereafter","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Fischl","lock":true,"id":"artifact_103"},{"setKey":"TinyMiracle","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_104"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_105"},{"setKey":"OceanHuedClam","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Navia","lock":true,"id":"artifact_106"},{"setKey":"PrayersForIllumination","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Nahida","lock":true,"id":"artifact_107"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_108"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_109"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_110"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_111"},{"setKey":"BlizzardStrayer","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_112"},{"setKey":"Instructor","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_113"},{"setKey":"GildedDreams","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Albedo","lock":true,"id":"artifact_114"},{"setKey":"DefendersWill","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_115"},{"setKey":"TheExile","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_116"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_117"},{"setKey":"Thundersoother","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_118"},{"setKey":"OceanHuedClam","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_119"},{"setKey":"BraveHeart","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Amber","lock":true,"id":"artifact_120"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_121"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_122"},{"setKey":"Berserker","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_123"},{"setKey":"PaleFlame","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_124"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_125"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_126"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_127"},{"setKey":"ThunderingFury","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_128"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_129"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Gorou","lock":true,"id":"artifact_130"},{"setKey":"Thundersoother","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_131"},{"setKey":"BlizzardStrayer","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_132"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_133"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_134"},{"setKey":"PrayersForIllumination","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_135"},{"setKey":"GladiatorsFinale","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_136"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Cyno","lock":true,"id":"artifact_137"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_138"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Furina","lock":true,"id":"artifact_139"},{"setKey":"PrayersForDestiny","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_140"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_141"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_142"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_143"},{"setKey":"VourukashasGlow","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_144"},{"setKey":"OceanHuedClam","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_145"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_146"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lyney","lock":true,"id":"artifact_147"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Diluc","lock":true,"id":"artifact_148"},{"setKey":"TinyMiracle","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_149"},{"setKey":"DefendersWill","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Diona","lock":true,"id":"artifact_150"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_151"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_152"},{"setKey":"ThunderingFury","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_153"},{"setKey":"DeepwoodMemories","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_154"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_155"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_156"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_157"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_158"},{"setKey":"PrayersForWisdom","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_159"},{"setKey":"OceanHuedClam","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_160"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_161"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_162"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_163"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_164"},{"setKey":"MartialArtist","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_165"},{"setKey":"PaleFlame","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_166"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Chiori","lock":true,"id":"artifact_167"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_168"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_169"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_170"},{"setKey":"Berserker","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_171"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_172"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_173"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_174"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_175"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Amber","lock":true,"id":"artifact_176"},{"setKey":"PrayersForWisdom","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Amber","lock":true,"id":"artifact_177"},{"setKey":"Thundersoother","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Fischl","lock":true,"id":"artifact_178"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_179"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_180"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Freminet","lock":true,"id":"artifact_181"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_182"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_183"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_184"},{"setKey":"PaleFlame","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_185"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_186"},{"setKey":"TinyMiracle","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_187"},{"setKey":"ThunderingFury","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_188"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_189"},{"setKey":"LuckyDog","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_190"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_191"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_192"},{"setKey":"MaidenBeloved","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_193"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_194"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_195"},{"setKey":"SongOfDaysPast","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_196"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Gaming","lock":true,"id":"artifact_197"},{"setKey":"NoblesseOblige","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_198"},{"setKey":"Instructor","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_199"},{"setKey":"NymphsDream","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_200"},{"setKey":"VermillionHereafter","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_201"},{"setKey":"Gambler","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_202"},{"setKey":"SongOfDaysPast","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Traveler","lock":true,"id":"artifact_203"},{"setKey":"OceanHuedClam","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_204"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_205"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Venti","lock":true,"id":"artifact_206"},{"setKey":"PrayersForDestiny","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_207"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_208"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_209"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Albedo","lock":true,"id":"artifact_210"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_211"},{"setKey":"Instructor","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_212"},{"setKey":"PrayersToSpringtime","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_213"},{"setKey":"PrayersForWisdom","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Baizhu","lock":true,"id":"artifact_214"},{"setKey":"Lavawalker","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_215"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_216"},{"setKey":"Lavawalker","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_217"},{"setKey":"RetracingBolide","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_218"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_219"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yelan","lock":true,"id":"artifact_220"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_221"},{"setKey":"GladiatorsFinale","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_222"},{"setKey":"WanderersTroupe","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Noelle","lock":true,"id":"artifact_223"},{"setKey":"WanderersTroupe","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_224"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mika","lock":true,"id":"artifact_225"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Fischl","lock":true,"id":"artifact_226"},{"setKey":"DefendersWill","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_227"},{"setKey":"PrayersForIllumination","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_228"},{"setKey":"GladiatorsFinale","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_229"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_230"},{"setKey":"VermillionHereafter","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_231"},{"setKey":"PrayersToSpringtime","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_232"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_233"},{"setKey":"VourukashasGlow","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_234"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_235"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_236"},{"setKey":"TravelingDoctor","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_237"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_238"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_239"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_240"},{"setKey":"PrayersForDestiny","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_241"},{"setKey":"TinyMiracle","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_242"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_243"},{"setKey":"TheExile","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_244"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Lyney","lock":true,"id":"artifact_245"},{"setKey":"PrayersToSpringtime","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_246"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_247"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_248"},{"setKey":"OceanHuedClam","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_249"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Amber","lock":true,"id":"artifact_250"},{"setKey":"ArchaicPetra","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_251"},{"setKey":"LuckyDog","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_252"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_253"},{"setKey":"TravelingDoctor","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_254"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_255"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_256"},{"setKey":"PaleFlame","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kaveh","lock":true,"id":"artifact_257"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_258"},{"setKey":"Thundersoother","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_259"},{"setKey":"TheExile","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_260"},{"setKey":"VourukashasGlow","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_261"},{"setKey":"OceanHuedClam","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_262"},{"setKey":"PrayersForWisdom","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_263"},{"setKey":"ViridescentVenerer","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_264"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_265"},{"setKey":"ThunderingFury","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_266"},{"setKey":"Lavawalker","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_267"},{"setKey":"MaidenBeloved","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Faruzan","lock":true,"id":"artifact_268"},{"setKey":"RetracingBolide","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_269"},{"setKey":"SongOfDaysPast","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_270"},{"setKey":"TinyMiracle","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_271"},{"setKey":"VourukashasGlow","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_272"},{"setKey":"Instructor","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Nahida","lock":true,"id":"artifact_273"},{"setKey":"NoblesseOblige","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_274"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Navia","lock":true,"id":"artifact_275"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Venti","lock":true,"id":"artifact_276"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_277"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_278"},{"setKey":"BlizzardStrayer","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_279"},{"setKey":"Adventurer","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Beidou","lock":true,"id":"artifact_280"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_281"},{"setKey":"LuckyDog","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_282"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_283"},{"setKey":"ArchaicPetra","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_284"},{"setKey":"GladiatorsFinale","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_285"},{"setKey":"Gambler","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_286"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_287"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Dori","lock":true,"id":"artifact_288"},{"setKey":"MaidenBeloved","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Furina","lock":true,"id":"artifact_289"},{"setKey":"Adventurer","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_290"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_291"},{"setKey":"PrayersForDestiny","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_292"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_293"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Razor","lock":true,"id":"artifact_294"},{"setKey":"GladiatorsFinale","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"HuTao","lock":true,"id":"artifact_295"},{"setKey":"Adventurer","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_296"},{"setKey":"Instructor","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"HuTao","lock":true,"id":"artifact_297"},{"setKey":"GoldenTroupe","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_298"},{"setKey":"RetracingBolide","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_299"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_300"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_301"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Freminet","lock":true,"id":"artifact_302"},{"setKey":"PrayersForWisdom","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_303"},{"setKey":"PrayersForDestiny","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Freminet","lock":true,"id":"artifact_304"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_305"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_306"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_307"},{"setKey":"DeepwoodMemories","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_308"},{"setKey":"GladiatorsFinale","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_309"},{"setKey":"Scholar","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_310"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_311"},{"setKey":"Adventurer","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_312"},{"setKey":"GoldenTroupe","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_313"},{"setKey":"HeartOfDepth","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_314"},{"setKey":"DeepwoodMemories","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Venti","lock":true,"id":"artifact_315"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_316"},{"setKey":"PrayersForDestiny","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_317"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_318"},{"setKey":"GildedDreams","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_319"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_320"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_321"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_322"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_323"},{"setKey":"PrayersForIllumination","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Nahida","lock":true,"id":"artifact_324"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_325"},{"setKey":"SongOfDaysPast","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_326"},{"setKey":"HeartOfDepth","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_327"},{"setKey":"SongOfDaysPast","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_328"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_329"},{"setKey":"BraveHeart","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_330"},{"setKey":"SongOfDaysPast","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lyney","lock":true,"id":"artifact_331"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_332"},{"setKey":"DeepwoodMemories","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_333"},{"setKey":"DefendersWill","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_334"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Dori","lock":true,"id":"artifact_335"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_336"},{"setKey":"GoldenTroupe","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"YunJin","lock":true,"id":"artifact_337"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_338"},{"setKey":"BloodstainedChivalry","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_339"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_340"},{"setKey":"WanderersTroupe","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_341"},{"setKey":"PrayersForWisdom","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Thoma","lock":true,"id":"artifact_342"},{"setKey":"TinyMiracle","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_343"},{"setKey":"VermillionHereafter","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_344"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_345"},{"setKey":"ThunderingFury","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Rosaria","lock":true,"id":"artifact_346"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_347"},{"setKey":"Thundersoother","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_348"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_349"},{"setKey":"ThunderingFury","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Traveler","lock":true,"id":"artifact_350"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_351"},{"setKey":"GoldenTroupe","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_352"},{"setKey":"SongOfDaysPast","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_353"},{"setKey":"Adventurer","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_354"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_355"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_356"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_357"},{"setKey":"ThunderingFury","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_358"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_359"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_360"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_361"},{"setKey":"DeepwoodMemories","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_362"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_363"},{"setKey":"Instructor","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Thoma","lock":true,"id":"artifact_364"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_365"},{"setKey":"VermillionHereafter","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Sayu","lock":true,"id":"artifact_366"},{"setKey":"NymphsDream","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_367"},{"setKey":"Lavawalker","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_368"},{"setKey":"PaleFlame","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_369"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Cyno","lock":true,"id":"artifact_370"},{"setKey":"TravelingDoctor","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_371"},{"setKey":"OceanHuedClam","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_372"},{"setKey":"SongOfDaysPast","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_373"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_374"},{"setKey":"ThunderingFury","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_375"},{"setKey":"MartialArtist","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Razor","lock":true,"id":"artifact_376"},{"setKey":"PrayersToSpringtime","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_377"},{"setKey":"MartialArtist","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Dehya","lock":true,"id":"artifact_378"},{"setKey":"BraveHeart","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_379"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_380"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_381"},{"setKey":"PrayersForIllumination","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_382"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_383"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_384"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_385"},{"setKey":"ArchaicPetra","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_386"},{"setKey":"TheExile","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_387"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_388"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_389"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_390"},{"setKey":"MaidenBeloved","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_391"},{"setKey":"Adventurer","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_392"},{"setKey":"BlizzardStrayer","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"HuTao","lock":true,"id":"artifact_393"},{"setKey":"Thundersoother","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_394"},{"setKey":"DefendersWill","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_395"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_396"},{"setKey":"OceanHuedClam","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_397"},{"setKey":"PrayersForDestiny","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_398"},{"setKey":"HeartOfDepth","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_399"},{"setKey":"MaidenBeloved","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_400"},{"setKey":"TinyMiracle","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_401"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_402"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_403"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_404"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_405"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_406"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_407"},{"setKey":"GoldenTroupe","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_408"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Collei","lock":true,"id":"artifact_409"},{"setKey":"NymphsDream","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Gaming","lock":true,"id":"artifact_410"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_411"},{"setKey":"HeartOfDepth","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Keqing","lock":true,"id":"artifact_412"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_413"},{"setKey":"PrayersForIllumination","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_414"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_415"},{"setKey":"GoldenTroupe","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yelan","lock":true,"id":"artifact_416"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Mika","lock":true,"id":"artifact_417"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_418"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Aloy","lock":true,"id":"artifact_419"},{"setKey":"GildedDreams","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Rosaria","lock":true,"id":"artifact_420"},{"setKey":"DeepwoodMemories","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_421"},{"setKey":"LuckyDog","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_422"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_423"},{"setKey":"BloodstainedChivalry","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_424"},{"setKey":"TravelingDoctor","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_425"},{"setKey":"PrayersToSpringtime","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_426"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_427"},{"setKey":"ViridescentVenerer","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_428"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_429"},{"setKey":"TinyMiracle","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_430"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_431"},{"setKey":"LuckyDog","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_432"},{"setKey":"TinyMiracle","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Cyno","lock":true,"id":"artifact_433"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_434"},{"setKey":"SongOfDaysPast","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_435"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_436"},{"setKey":"GladiatorsFinale","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_437"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Thoma","lock":true,"id":"artifact_438"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_439"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Traveler","lock":true,"id":"artifact_440"},{"setKey":"SongOfDaysPast","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_441"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_442"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_443"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_444"},{"setKey":"VourukashasGlow","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Traveler","lock":true,"id":"artifact_445"},{"setKey":"Instructor","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_446"},{"setKey":"LuckyDog","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_447"},{"setKey":"VourukashasGlow","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_448"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_449"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_450"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_451"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_452"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Bennett","lock":true,"id":"artifact_453"},{"setKey":"OceanHuedClam","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"HuTao","lock":true,"id":"artifact_454"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Collei","lock":true,"id":"artifact_455"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_456"},{"setKey":"BraveHeart","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_457"},{"setKey":"GladiatorsFinale","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_458"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_459"},{"setKey":"NoblesseOblige","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_460"},{"setKey":"ArchaicPetra","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_461"},{"setKey":"Adventurer","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_462"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_463"},{"setKey":"TinyMiracle","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_464"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_465"},{"setKey":"GoldenTroupe","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_466"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xiao","lock":true,"id":"artifact_467"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"HuTao","lock":true,"id":"artifact_468"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_469"},{"setKey":"OceanHuedClam","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_470"},{"setKey":"DeepwoodMemories","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_471"},{"setKey":"Thundersoother","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_472"},{"setKey":"MaidenBeloved","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_473"},{"setKey":"PrayersToSpringtime","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_474"},{"setKey":"BlizzardStrayer","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_475"},{"setKey":"OceanHuedClam","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Barbara","lock":true,"id":"artifact_476"},{"setKey":"TravelingDoctor","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_477"},{"setKey":"PrayersForDestiny","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_478"},{"setKey":"OceanHuedClam","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_479"},{"setKey":"MartialArtist","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_480"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Mona","lock":true,"id":"artifact_481"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_482"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_483"},{"setKey":"Berserker","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Beidou","lock":true,"id":"artifact_484"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_485"},{"setKey":"Lavawalker","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Layla","lock":true,"id":"artifact_486"},{"setKey":"MartialArtist","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_487"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Furina","lock":true,"id":"artifact_488"},{"setKey":"DefendersWill","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_489"},{"setKey":"ThunderingFury","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_490"},{"setKey":"ThunderingFury","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_491"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_492"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Candace","lock":true,"id":"artifact_493"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_494"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_495"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Barbara","lock":true,"id":"artifact_496"},{"setKey":"PrayersForIllumination","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_497"},{"setKey":"SongOfDaysPast","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Lisa","lock":true,"id":"artifact_498"},{"setKey":"PrayersForDestiny","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_499"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_500"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Chiori","lock":true,"id":"artifact_501"},{"setKey":"Berserker","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_502"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_503"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_504"},{"setKey":"PrayersForDestiny","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_505"},{"setKey":"TravelingDoctor","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_506"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_507"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_508"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_509"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_510"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_511"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Bennett","lock":true,"id":"artifact_512"},{"setKey":"PrayersForIllumination","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_513"},{"setKey":"ThunderingFury","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_514"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_515"},{"setKey":"RetracingBolide","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_516"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_517"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_518"},{"setKey":"VourukashasGlow","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_519"},{"setKey":"PrayersForIllumination","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_520"},{"setKey":"DeepwoodMemories","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Fischl","lock":true,"id":"artifact_521"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_522"},{"setKey":"PrayersForIllumination","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_523"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_524"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_525"},{"setKey":"VourukashasGlow","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_526"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_527"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_528"},{"setKey":"PrayersForIllumination","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_529"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_530"},{"setKey":"TheExile","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Aloy","lock":true,"id":"artifact_531"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_532"},{"setKey":"Thundersoother","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_533"},{"setKey":"Instructor","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_534"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_535"},{"setKey":"WanderersTroupe","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_536"},{"setKey":"PrayersForDestiny","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_537"},{"setKey":"Thundersoother","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_538"},{"setKey":"OceanHuedClam","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_539"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Sayu","lock":true,"id":"artifact_540"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Navia","lock":true,"id":"artifact_541"},{"setKey":"Adventurer","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_542"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_543"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_544"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_545"},{"setKey":"TinyMiracle","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_546"},{"setKey":"TheExile","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_547"},{"setKey":"DeepwoodMemories","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kirara","lock":true,"id":"artifact_548"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_549"},{"setKey":"Adventurer","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Layla","lock":true,"id":"artifact_550"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_551"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_552"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_553"},{"setKey":"Lavawalker","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_554"},{"setKey":"OceanHuedClam","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_555"},{"setKey":"PrayersForDestiny","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_556"},{"setKey":"PaleFlame","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_557"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Collei","lock":true,"id":"artifact_558"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_559"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_560"},{"setKey":"DefendersWill","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_561"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_562"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_563"},{"setKey":"TravelingDoctor","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_564"},{"setKey":"Adventurer","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_565"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_566"},{"setKey":"SongOfDaysPast","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_567"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_568"},{"setKey":"DefendersWill","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_569"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_570"},{"setKey":"ThunderingFury","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Keqing","lock":true,"id":"artifact_571"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_572"},{"setKey":"PrayersToSpringtime","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_573"},{"setKey":"PrayersForWisdom","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_574"},{"setKey":"SongOfDaysPast","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_575"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Noelle","lock":true,"id":"artifact_576"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_577"},{"setKey":"LuckyDog","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_578"},{"setKey":"LuckyDog","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_579"},{"setKey":"TravelingDoctor","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_580"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_581"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_582"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"YunJin","lock":true,"id":"artifact_583"},{"setKey":"VermillionHereafter","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_584"},{"setKey":"ThunderingFury","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_585"},{"setKey":"DefendersWill","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_586"},{"setKey":"Instructor","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_587"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_588"},{"setKey":"PrayersForIllumination","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_589"},{"setKey":"WanderersTroupe","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Navia","lock":true,"id":"artifact_590"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Thoma","lock":true,"id":"artifact_591"},{"setKey":"BlizzardStrayer","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_592"},{"setKey":"MaidenBeloved","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_593"},{"setKey":"SongOfDaysPast","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gaming","lock":true,"id":"artifact_594"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_595"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_596"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Yanfei","lock":true,"id":"artifact_597"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_598"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_599"},{"setKey":"Instructor","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_600"},{"setKey":"DefendersWill","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_601"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_602"},{"setKey":"ViridescentVenerer","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_603"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_604"},{"setKey":"MaidenBeloved","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_605"},{"setKey":"SongOfDaysPast","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_606"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_607"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Collei","lock":true,"id":"artifact_608"},{"setKey":"Thundersoother","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_609"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_610"},{"setKey":"ViridescentVenerer","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_611"},{"setKey":"NoblesseOblige","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_612"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_613"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_614"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Collei","lock":true,"id":"artifact_615"},{"setKey":"DefendersWill","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_616"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_617"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_618"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_619"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_620"},{"setKey":"Scholar","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_621"},{"setKey":"MaidenBeloved","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_622"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Dori","lock":true,"id":"artifact_623"},{"setKey":"Thundersoother","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_624"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_625"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_626"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_627"},{"setKey":"ThunderingFury","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_628"},{"setKey":"BraveHeart","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_629"},{"setKey":"PrayersForDestiny","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_630"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_631"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_632"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"YunJin","lock":true,"id":"artifact_633"},{"setKey":"MaidenBeloved","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lisa","lock":true,"id":"artifact_634"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_635"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_636"},{"setKey":"NymphsDream","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_637"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_638"},{"setKey":"BlizzardStrayer","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_639"},{"setKey":"PrayersForIllumination","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Cyno","lock":true,"id":"artifact_640"},{"setKey":"WanderersTroupe","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Razor","lock":true,"id":"artifact_641"},{"setKey":"PrayersForDestiny","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_642"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_643"},{"setKey":"PaleFlame","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_644"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_645"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_646"},{"setKey":"WanderersTroupe","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_647"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_648"},{"setKey":"Lavawalker","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Beidou","lock":true,"id":"artifact_649"},{"setKey":"PrayersToSpringtime","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_650"},{"setKey":"Instructor","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_651"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_652"},{"setKey":"Adventurer","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_653"},{"setKey":"OceanHuedClam","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Cyno","lock":true,"id":"artifact_654"},{"setKey":"Gambler","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_655"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yelan","lock":true,"id":"artifact_656"},{"setKey":"TravelingDoctor","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_657"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_658"},{"setKey":"BlizzardStrayer","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_659"},{"setKey":"PrayersToSpringtime","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_660"},{"setKey":"DeepwoodMemories","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Barbara","lock":true,"id":"artifact_661"},{"setKey":"RetracingBolide","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_662"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_663"},{"setKey":"BraveHeart","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_664"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_665"},{"setKey":"TravelingDoctor","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_666"},{"setKey":"DeepwoodMemories","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_667"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_668"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_669"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lynette","lock":true,"id":"artifact_670"},{"setKey":"DeepwoodMemories","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_671"},{"setKey":"Lavawalker","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xiao","lock":true,"id":"artifact_672"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_673"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_674"},{"setKey":"ViridescentVenerer","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yelan","lock":true,"id":"artifact_675"},{"setKey":"DefendersWill","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_676"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_677"},{"setKey":"Berserker","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_678"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Cyno","lock":true,"id":"artifact_679"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_680"},{"setKey":"HeartOfDepth","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Dori","lock":true,"id":"artifact_681"},{"setKey":"BraveHeart","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_682"},{"setKey":"WanderersTroupe","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_683"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_684"},{"setKey":"BlizzardStrayer","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_685"},{"setKey":"ViridescentVenerer","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_686"},{"setKey":"Scholar","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_687"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Layla","lock":true,"id":"artifact_688"},{"setKey":"PrayersForDestiny","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_689"},{"setKey":"GladiatorsFinale","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_690"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_691"},{"setKey":"VourukashasGlow","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_692"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_693"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_694"},{"setKey":"Scholar","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Bennett","lock":true,"id":"artifact_695"},{"setKey":"BlizzardStrayer","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_696"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_697"},{"setKey":"WanderersTroupe","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_698"},{"setKey":"VourukashasGlow","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Kirara","lock":true,"id":"artifact_699"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kirara","lock":true,"id":"artifact_700"},{"setKey":"Berserker","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_701"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Keqing","lock":true,"id":"artifact_702"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_703"},{"setKey":"ViridescentVenerer","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_704"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_705"},{"setKey":"Berserker","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_706"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_707"},{"setKey":"Instructor","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"HuTao","lock":true,"id":"artifact_708"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_709"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Keqing","lock":true,"id":"artifact_710"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_711"},{"setKey":"Instructor","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Mika","lock":true,"id":"artifact_712"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Lyney","lock":true,"id":"artifact_713"},{"setKey":"RetracingBolide","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_714"},{"setKey":"VourukashasGlow","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Keqing","lock":true,"id":"artifact_715"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_716"},{"setKey":"ArchaicPetra","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_717"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_718"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_719"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_720"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_721"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_722"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_723"},{"setKey":"ArchaicPetra","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_724"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_725"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_726"},{"setKey":"Thundersoother","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_727"},{"setKey":"LuckyDog","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_728"},{"setKey":"BraveHeart","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_729"},{"setKey":"PrayersForWisdom","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Mika","lock":true,"id":"artifact_730"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_731"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_732"},{"setKey":"PrayersForWisdom","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_733"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_734"},{"setKey":"VourukashasGlow","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_735"},{"setKey":"NymphsDream","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_736"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_737"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_738"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_739"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_740"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Albedo","lock":true,"id":"artifact_741"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_742"},{"setKey":"Scholar","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_743"},{"setKey":"BloodstainedChivalry","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_744"},{"setKey":"SongOfDaysPast","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"YunJin","lock":true,"id":"artifact_745"},{"setKey":"HeartOfDepth","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_746"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_747"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_748"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_749"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_750"},{"setKey":"Berserker","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_751"},{"setKey":"OceanHuedClam","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_752"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_753"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_754"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_755"},{"setKey":"LuckyDog","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_756"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_757"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_758"},{"setKey":"TravelingDoctor","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_759"},{"setKey":"Gambler","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_760"},{"setKey":"Berserker","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_761"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Nahida","lock":true,"id":"artifact_762"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_763"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_764"},{"setKey":"TheExile","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_765"},{"setKey":"PrayersForIllumination","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_766"},{"setKey":"MaidenBeloved","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_767"},{"setKey":"WanderersTroupe","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_768"},{"setKey":"MaidenBeloved","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chongyun","lock":true,"id":"artifact_769"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Diluc","lock":true,"id":"artifact_770"},{"setKey":"Berserker","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_771"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_772"},{"setKey":"PrayersForIllumination","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xiao","lock":true,"id":"artifact_773"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_774"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Beidou","lock":true,"id":"artifact_775"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_776"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Albedo","lock":true,"id":"artifact_777"},{"setKey":"PrayersForIllumination","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_778"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_779"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_780"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_781"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_782"},{"setKey":"NoblesseOblige","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_783"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_784"},{"setKey":"MaidenBeloved","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_785"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_786"},{"setKey":"TheExile","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_787"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Traveler","lock":true,"id":"artifact_788"},{"setKey":"PrayersForDestiny","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"HuTao","lock":true,"id":"artifact_789"},{"setKey":"DeepwoodMemories","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_790"},{"setKey":"DefendersWill","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_791"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_792"},{"setKey":"MartialArtist","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_793"},{"setKey":"PaleFlame","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_794"},{"setKey":"ViridescentVenerer","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_795"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_796"},{"setKey":"GladiatorsFinale","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_797"},{"setKey":"PrayersForDestiny","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Gaming","lock":true,"id":"artifact_798"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_799"},{"setKey":"PrayersForIllumination","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_800"},{"setKey":"Adventurer","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_801"},{"setKey":"TheExile","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_802"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_803"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Eula","lock":true,"id":"artifact_804"},{"setKey":"PrayersForWisdom","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_805"},{"setKey":"NymphsDream","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_806"},{"setKey":"TheExile","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_807"},{"setKey":"OceanHuedClam","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_808"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_809"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_810"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_811"},{"setKey":"GladiatorsFinale","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_812"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_813"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_814"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_815"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_816"},{"setKey":"Lavawalker","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_817"},{"setKey":"MarechausseeHunter","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_818"},{"setKey":"ViridescentVenerer","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_819"},{"setKey":"BlizzardStrayer","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_820"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_821"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Jean","lock":true,"id":"artifact_822"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Yelan","lock":true,"id":"artifact_823"},{"setKey":"MaidenBeloved","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Candace","lock":true,"id":"artifact_824"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_825"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_826"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_827"},{"setKey":"ArchaicPetra","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_828"},{"setKey":"VourukashasGlow","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_829"},{"setKey":"DefendersWill","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Dori","lock":true,"id":"artifact_830"},{"setKey":"GoldenTroupe","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_831"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_832"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_833"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_834"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_835"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_836"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_837"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_838"},{"setKey":"Instructor","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_839"},{"setKey":"PaleFlame","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_840"},{"setKey":"DeepwoodMemories","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_841"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_842"},{"setKey":"VourukashasGlow","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_843"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_844"},{"setKey":"WanderersTroupe","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_845"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_846"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Diluc","lock":true,"id":"artifact_847"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Aloy","lock":true,"id":"artifact_848"},{"setKey":"TheExile","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_849"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_850"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_851"},{"setKey":"TheExile","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_852"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Chiori","lock":true,"id":"artifact_853"},{"setKey":"Thundersoother","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_854"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_855"},{"setKey":"PrayersForDestiny","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_856"},{"setKey":"Instructor","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_857"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_858"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_859"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_860"},{"setKey":"NoblesseOblige","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_861"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_862"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_863"},{"setKey":"DeepwoodMemories","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Dori","lock":true,"id":"artifact_864"},{"setKey":"TravelingDoctor","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_865"},{"setKey":"PaleFlame","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_866"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_867"},{"setKey":"Thundersoother","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_868"},{"setKey":"VourukashasGlow","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Dehya","lock":true,"id":"artifact_869"},{"setKey":"WanderersTroupe","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_870"},{"setKey":"PrayersForDestiny","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_871"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_872"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_873"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_874"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_875"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_876"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Sayu","lock":true,"id":"artifact_877"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kaeya","lock":true,"id":"artifact_878"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_879"},{"setKey":"ViridescentVenerer","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_880"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Dori","lock":true,"id":"artifact_881"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_882"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_883"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_884"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_885"},{"setKey":"GladiatorsFinale","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_886"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_887"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_888"},{"setKey":"TinyMiracle","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_889"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_890"},{"setKey":"VermillionHereafter","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_891"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_892"},{"setKey":"Berserker","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_893"},{"setKey":"WanderersTroupe","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_894"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_895"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_896"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_897"},{"setKey":"BraveHeart","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Dori","lock":true,"id":"artifact_898"},{"setKey":"VermillionHereafter","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_899"},{"setKey":"TheExile","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_900"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Mona","lock":true,"id":"artifact_901"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_902"},{"setKey":"BlizzardStrayer","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_903"},{"setKey":"GladiatorsFinale","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_904"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_905"},{"setKey":"Lavawalker","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Klee","lock":true,"id":"artifact_906"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_907"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Nilou","lock":true,"id":"artifact_908"},{"setKey":"RetracingBolide","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_909"},{"setKey":"VermillionHereafter","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_910"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_911"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xiao","lock":true,"id":"artifact_912"},{"setKey":"OceanHuedClam","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_913"},{"setKey":"SongOfDaysPast","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_914"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Amber","lock":true,"id":"artifact_915"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_916"},{"setKey":"Lavawalker","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_917"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_918"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_919"},{"setKey":"DeepwoodMemories","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_920"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_921"},{"setKey":"Thundersoother","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_922"},{"setKey":"Lavawalker","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_923"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_924"},{"setKey":"GildedDreams","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_925"},{"setKey":"GoldenTroupe","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_926"},{"setKey":"MaidenBeloved","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_927"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_928"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_929"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_930"},{"setKey":"PrayersForIllumination","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Klee","lock":true,"id":"artifact_931"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Mona","lock":true,"id":"artifact_932"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_933"},{"setKey":"GoldenTroupe","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_934"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_935"},{"setKey":"RetracingBolide","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_936"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_937"},{"setKey":"Thundersoother","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_938"},{"setKey":"GoldenTroupe","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_939"},{"setKey":"PrayersForIllumination","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_940"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Noelle","lock":true,"id":"artifact_941"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_942"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_943"},{"setKey":"OceanHuedClam","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_944"},{"setKey":"SongOfDaysPast","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_945"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_946"},{"setKey":"PrayersForIllumination","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_947"},{"setKey":"TravelingDoctor","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_948"},{"setKey":"PaleFlame","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_949"},{"setKey":"VermillionHereafter","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_950"},{"setKey":"MartialArtist","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Noelle","lock":true,"id":"artifact_951"},{"setKey":"ThunderingFury","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_952"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Charlotte","lock":true,"id":"artifact_953"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_954"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_955"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xinyan","lock":true,"id":"artifact_956"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_957"},{"setKey":"TheExile","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_958"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_959"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_960"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Venti","lock":true,"id":"artifact_961"},{"setKey":"TinyMiracle","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_962"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_963"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_964"},{"setKey":"DeepwoodMemories","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_965"},{"setKey":"BraveHeart","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_966"},{"setKey":"VermillionHereafter","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_967"},{"setKey":"GildedDreams","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_968"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_969"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_970"},{"setKey":"WanderersTroupe","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_971"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kaveh","lock":true,"id":"artifact_972"},{"setKey":"PaleFlame","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_973"},{"setKey":"RetracingBolide","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_974"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_975"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_976"},{"setKey":"PrayersForIllumination","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_977"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_978"},{"setKey":"ViridescentVenerer","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_979"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_980"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_981"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Collei","lock":true,"id":"artifact_982"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_983"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_984"},{"setKey":"TravelingDoctor","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_985"},{"setKey":"TinyMiracle","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_986"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Amber","lock":true,"id":"artifact_987"},{"setKey":"Berserker","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Collei","lock":true,"id":"artifact_988"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_989"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_990"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_991"},{"setKey":"TinyMiracle","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_992"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_993"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_994"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_995"},{"setKey":"BlizzardStrayer","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_996"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_997"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_998"},{"setKey":"OceanHuedClam","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_999"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chiori","lock":true,"id":"artifact_1000"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1001"},{"setKey":"DeepwoodMemories","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_1002"},{"setKey":"Instructor","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1003"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1004"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_1005"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Furina","lock":true,"id":"artifact_1006"},{"setKey":"BlizzardStrayer","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Furina","lock":true,"id":"artifact_1007"},{"setKey":"NoblesseOblige","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Klee","lock":true,"id":"artifact_1008"},{"setKey":"Scholar","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_1009"},{"setKey":"PaleFlame","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_1010"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_1011"},{"setKey":"Thundersoother","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Bennett","lock":true,"id":"artifact_1012"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_1013"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_1014"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1015"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1016"},{"setKey":"BraveHeart","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1017"},{"setKey":"Adventurer","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_1018"},{"setKey":"Berserker","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_1019"},{"setKey":"PrayersToSpringtime","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_1020"},{"setKey":"PrayersForWisdom","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_1021"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_1022"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_1023"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_1024"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_1025"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1026"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_1027"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1028"},{"setKey":"NymphsDream","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1029"},{"setKey":"MaidenBeloved","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_1030"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_1031"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lynette","lock":true,"id":"artifact_1032"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_1033"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Candace","lock":true,"id":"artifact_1034"},{"setKey":"OceanHuedClam","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_1035"},{"setKey":"ViridescentVenerer","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1036"},{"setKey":"Thundersoother","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1037"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Traveler","lock":true,"id":"artifact_1038"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_1039"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_1040"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1041"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_1042"},{"setKey":"NoblesseOblige","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_1043"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1044"},{"setKey":"HeartOfDepth","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_1045"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_1046"},{"setKey":"ThunderingFury","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1047"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Candace","lock":true,"id":"artifact_1048"},{"setKey":"RetracingBolide","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Albedo","lock":true,"id":"artifact_1049"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1050"},{"setKey":"GoldenTroupe","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_1051"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_1052"},{"setKey":"Adventurer","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1053"},{"setKey":"PaleFlame","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_1054"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_1055"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1056"},{"setKey":"RetracingBolide","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1057"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_1058"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_1059"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_1060"},{"setKey":"ThunderingFury","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_1061"},{"setKey":"Adventurer","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_1062"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1063"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1064"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mika","lock":true,"id":"artifact_1065"},{"setKey":"Instructor","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_1066"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1067"},{"setKey":"MaidenBeloved","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1068"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_1069"},{"setKey":"BloodstainedChivalry","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_1070"},{"setKey":"PrayersForDestiny","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Barbara","lock":true,"id":"artifact_1071"},{"setKey":"Instructor","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Gorou","lock":true,"id":"artifact_1072"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Candace","lock":true,"id":"artifact_1073"},{"setKey":"PrayersToSpringtime","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_1074"},{"setKey":"ThunderingFury","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1075"},{"setKey":"Instructor","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1076"},{"setKey":"HeartOfDepth","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Furina","lock":true,"id":"artifact_1077"},{"setKey":"Thundersoother","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_1078"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1079"},{"setKey":"GildedDreams","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Furina","lock":true,"id":"artifact_1080"},{"setKey":"GoldenTroupe","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_1081"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xiao","lock":true,"id":"artifact_1082"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1083"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1084"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Navia","lock":true,"id":"artifact_1085"},{"setKey":"PrayersForIllumination","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1086"},{"setKey":"ViridescentVenerer","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1087"},{"setKey":"Gambler","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1088"},{"setKey":"Scholar","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1089"},{"setKey":"BraveHeart","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1090"},{"setKey":"Adventurer","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_1091"},{"setKey":"Instructor","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_1092"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_1093"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_1094"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_1095"},{"setKey":"LuckyDog","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_1096"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1097"},{"setKey":"PrayersForWisdom","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1098"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_1099"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Gorou","lock":true,"id":"artifact_1100"},{"setKey":"PaleFlame","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Barbara","lock":true,"id":"artifact_1101"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_1102"},{"setKey":"ThunderingFury","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1103"},{"setKey":"ArchaicPetra","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_1104"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chiori","lock":true,"id":"artifact_1105"},{"setKey":"PrayersForDestiny","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_1106"},{"setKey":"HeartOfDepth","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1107"},{"setKey":"TheExile","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_1108"},{"setKey":"WanderersTroupe","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_1109"},{"setKey":"ViridescentVenerer","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_1110"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_1111"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"HuTao","lock":true,"id":"artifact_1112"},{"setKey":"PrayersForIllumination","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_1113"},{"setKey":"MartialArtist","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1114"},{"setKey":"GildedDreams","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"YunJin","lock":true,"id":"artifact_1115"},{"setKey":"DeepwoodMemories","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_1116"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1117"},{"setKey":"MarechausseeHunter","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Nahida","lock":true,"id":"artifact_1118"},{"setKey":"VourukashasGlow","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Dori","lock":true,"id":"artifact_1119"},{"setKey":"PrayersToSpringtime","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_1120"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_1121"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1122"},{"setKey":"ViridescentVenerer","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1123"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_1124"},{"setKey":"PrayersForDestiny","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Venti","lock":true,"id":"artifact_1125"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1126"},{"setKey":"ArchaicPetra","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1127"},{"setKey":"BraveHeart","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1128"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Traveler","lock":true,"id":"artifact_1129"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"YunJin","lock":true,"id":"artifact_1130"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Dori","lock":true,"id":"artifact_1131"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_1132"},{"setKey":"Thundersoother","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1133"},{"setKey":"PrayersToSpringtime","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_1134"},{"setKey":"Berserker","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1135"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_1136"},{"setKey":"DeepwoodMemories","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_1137"},{"setKey":"Adventurer","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_1138"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1139"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1140"},{"setKey":"Thundersoother","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chiori","lock":true,"id":"artifact_1141"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_1142"},{"setKey":"Thundersoother","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_1143"},{"setKey":"DeepwoodMemories","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_1144"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_1145"},{"setKey":"TheExile","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1146"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_1147"},{"setKey":"PrayersForIllumination","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1148"},{"setKey":"VourukashasGlow","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Noelle","lock":true,"id":"artifact_1149"},{"setKey":"OceanHuedClam","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_1150"},{"setKey":"PrayersForDestiny","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Eula","lock":true,"id":"artifact_1151"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1152"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Gorou","lock":true,"id":"artifact_1153"},{"setKey":"ThunderingFury","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1154"},{"setKey":"TinyMiracle","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_1155"},{"setKey":"PrayersForIllumination","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_1156"},{"setKey":"Thundersoother","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Barbara","lock":true,"id":"artifact_1157"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_1158"},{"setKey":"WanderersTroupe","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1159"},{"setKey":"DeepwoodMemories","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1160"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1161"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_1162"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1163"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_1164"},{"setKey":"Scholar","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_1165"},{"setKey":"Instructor","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_1166"},{"setKey":"RetracingBolide","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_1167"},{"setKey":"TheExile","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1168"},{"setKey":"MarechausseeHunter","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_1169"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1170"},{"setKey":"PrayersToSpringtime","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_1171"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yelan","lock":true,"id":"artifact_1172"},{"setKey":"BraveHeart","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1173"},{"setKey":"LuckyDog","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mona","lock":true,"id":"artifact_1174"},{"setKey":"GildedDreams","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1175"},{"setKey":"LuckyDog","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_1176"},{"setKey":"GoldenTroupe","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Collei","lock":true,"id":"artifact_1177"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1178"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_1179"},{"setKey":"TheExile","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_1180"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1181"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1182"},{"setKey":"ThunderingFury","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_1183"},{"setKey":"TinyMiracle","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Amber","lock":true,"id":"artifact_1184"},{"setKey":"TravelingDoctor","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_1185"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_1186"},{"setKey":"GoldenTroupe","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1187"},{"setKey":"Berserker","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_1188"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Bennett","lock":true,"id":"artifact_1189"},{"setKey":"TravelingDoctor","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1190"},{"setKey":"Adventurer","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Diluc","lock":true,"id":"artifact_1191"},{"setKey":"PrayersToSpringtime","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1192"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_1193"},{"setKey":"OceanHuedClam","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Candace","lock":true,"id":"artifact_1194"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_1195"},{"setKey":"LuckyDog","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1196"},{"setKey":"ViridescentVenerer","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_1197"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Traveler","lock":true,"id":"artifact_1198"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_1199"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_1200"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_1201"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1202"},{"setKey":"Gambler","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_1203"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1204"},{"setKey":"RetracingBolide","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_1205"},{"setKey":"DefendersWill","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1206"},{"setKey":"Lavawalker","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yelan","lock":true,"id":"artifact_1207"},{"setKey":"PaleFlame","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1208"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_1209"},{"setKey":"HeartOfDepth","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_1210"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1211"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"YunJin","lock":true,"id":"artifact_1212"},{"setKey":"BloodstainedChivalry","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_1213"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1214"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_1215"},{"setKey":"OceanHuedClam","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1216"},{"setKey":"Thundersoother","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_1217"},{"setKey":"ViridescentVenerer","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_1218"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_1219"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1220"},{"setKey":"GoldenTroupe","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1221"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_1222"},{"setKey":"MaidenBeloved","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_1223"},{"setKey":"Lavawalker","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Razor","lock":true,"id":"artifact_1224"},{"setKey":"LuckyDog","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Freminet","lock":true,"id":"artifact_1225"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_1226"},{"setKey":"ViridescentVenerer","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1227"},{"setKey":"WanderersTroupe","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_1228"},{"setKey":"Berserker","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_1229"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1230"},{"setKey":"Lavawalker","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Gaming","lock":true,"id":"artifact_1231"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_1232"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_1233"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1234"},{"setKey":"GladiatorsFinale","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_1235"},{"setKey":"TinyMiracle","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1236"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1237"},{"setKey":"Gambler","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_1238"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Thoma","lock":true,"id":"artifact_1239"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_1240"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1241"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_1242"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Nahida","lock":true,"id":"artifact_1243"},{"setKey":"MarechausseeHunter","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1244"},{"setKey":"BlizzardStrayer","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1245"},{"setKey":"MaidenBeloved","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1246"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_1247"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_1248"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_1249"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1250"},{"setKey":"Lavawalker","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1251"},{"setKey":"RetracingBolide","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1252"},{"setKey":"BraveHeart","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1253"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Collei","lock":true,"id":"artifact_1254"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_1255"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_1256"},{"setKey":"TinyMiracle","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1257"},{"setKey":"SongOfDaysPast","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1258"},{"setKey":"NoblesseOblige","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_1259"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_1260"},{"setKey":"MarechausseeHunter","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_1261"},{"setKey":"OceanHuedClam","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1262"},{"setKey":"ArchaicPetra","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1263"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_1264"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_1265"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1266"},{"setKey":"BloodstainedChivalry","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_1267"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_1268"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_1269"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_1270"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_1271"},{"setKey":"MartialArtist","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_1272"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_1273"},{"setKey":"PaleFlame","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Mona","lock":true,"id":"artifact_1274"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_1275"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_1276"},{"setKey":"Adventurer","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_1277"},{"setKey":"GoldenTroupe","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1278"},{"setKey":"VermillionHereafter","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1279"},{"setKey":"ViridescentVenerer","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_1280"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1281"},{"setKey":"ArchaicPetra","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1282"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Noelle","lock":true,"id":"artifact_1283"},{"setKey":"TinyMiracle","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_1284"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_1285"},{"setKey":"Berserker","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_1286"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1287"},{"setKey":"BlizzardStrayer","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1288"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_1289"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1290"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_1291"},{"setKey":"RetracingBolide","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1292"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Eula","lock":true,"id":"artifact_1293"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_1294"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_1295"},{"setKey":"MarechausseeHunter","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_1296"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1297"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1298"},{"setKey":"PrayersForDestiny","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1299"},{"setKey":"TinyMiracle","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1300"},{"setKey":"LuckyDog","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gaming","lock":true,"id":"artifact_1301"},{"setKey":"VermillionHereafter","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1302"},{"setKey":"TheExile","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1303"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yelan","lock":true,"id":"artifact_1304"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1305"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Bennett","lock":true,"id":"artifact_1306"},{"setKey":"ThunderingFury","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_1307"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_1308"},{"setKey":"WanderersTroupe","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_1309"},{"setKey":"RetracingBolide","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_1310"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_1311"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1312"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dori","lock":true,"id":"artifact_1313"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_1314"},{"setKey":"GladiatorsFinale","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_1315"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_1316"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_1317"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Noelle","lock":true,"id":"artifact_1318"},{"setKey":"TravelingDoctor","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_1319"},{"setKey":"NoblesseOblige","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1320"},{"setKey":"GildedDreams","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_1321"},{"setKey":"DefendersWill","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_1322"},{"setKey":"MarechausseeHunter","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_1323"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1324"},{"setKey":"Gambler","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1325"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_1326"},{"setKey":"BloodstainedChivalry","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_1327"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_1328"},{"setKey":"GildedDreams","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Freminet","lock":true,"id":"artifact_1329"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1330"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1331"},{"setKey":"VourukashasGlow","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1332"},{"setKey":"MaidenBeloved","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_1333"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xiangling","lock":true,"id":"artifact_1334"},{"setKey":"Instructor","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_1335"},{"setKey":"GladiatorsFinale","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_1336"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Albedo","lock":true,"id":"artifact_1337"},{"setKey":"HeartOfDepth","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_1338"},{"setKey":"PrayersForWisdom","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_1339"},{"setKey":"MartialArtist","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_1340"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1341"},{"setKey":"RetracingBolide","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1342"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_1343"},{"setKey":"SongOfDaysPast","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Aloy","lock":true,"id":"artifact_1344"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Beidou","lock":true,"id":"artifact_1345"},{"setKey":"ThunderingFury","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Candace","lock":true,"id":"artifact_1346"},{"setKey":"WanderersTroupe","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1347"},{"setKey":"DefendersWill","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1348"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_1349"},{"setKey":"SongOfDaysPast","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Venti","lock":true,"id":"artifact_1350"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_1351"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1352"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_1353"},{"setKey":"TravelingDoctor","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1354"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_1355"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_1356"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_1357"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_1358"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_1359"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1360"},{"setKey":"DefendersWill","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_1361"},{"setKey":"Scholar","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chiori","lock":true,"id":"artifact_1362"},{"setKey":"Lavawalker","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1363"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_1364"},{"setKey":"ViridescentVenerer","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1365"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Fischl","lock":true,"id":"artifact_1366"},{"setKey":"Scholar","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_1367"},{"setKey":"Instructor","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_1368"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Mika","lock":true,"id":"artifact_1369"},{"setKey":"ThunderingFury","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_1370"},{"setKey":"PrayersForIllumination","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_1371"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Jean","lock":true,"id":"artifact_1372"},{"setKey":"ArchaicPetra","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1373"},{"setKey":"BloodstainedChivalry","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lisa","lock":true,"id":"artifact_1374"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1375"},{"setKey":"PrayersForWisdom","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1376"},{"setKey":"GoldenTroupe","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Noelle","lock":true,"id":"artifact_1377"},{"setKey":"PrayersForIllumination","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1378"},{"setKey":"GladiatorsFinale","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1379"},{"setKey":"SongOfDaysPast","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_1380"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1381"},{"setKey":"Instructor","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Lyney","lock":true,"id":"artifact_1382"},{"setKey":"GoldenTroupe","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Amber","lock":true,"id":"artifact_1383"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_1384"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1385"},{"setKey":"DeepwoodMemories","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1386"},{"setKey":"Lavawalker","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Navia","lock":true,"id":"artifact_1387"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Beidou","lock":true,"id":"artifact_1388"},{"setKey":"NoblesseOblige","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Jean","lock":true,"id":"artifact_1389"},{"setKey":"ArchaicPetra","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1390"},{"setKey":"MarechausseeHunter","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1391"},{"setKey":"BlizzardStrayer","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_1392"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1393"},{"setKey":"PrayersForWisdom","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_1394"},{"setKey":"ViridescentVenerer","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_1395"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_1396"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1397"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_1398"},{"setKey":"TinyMiracle","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_1399"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_1400"},{"setKey":"ThunderingFury","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1401"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_1402"},{"setKey":"BlizzardStrayer","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Aloy","lock":true,"id":"artifact_1403"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1404"},{"setKey":"OceanHuedClam","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1405"},{"setKey":"Berserker","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_1406"},{"setKey":"PaleFlame","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Lyney","lock":true,"id":"artifact_1407"},{"setKey":"PrayersToSpringtime","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_1408"},{"setKey":"ViridescentVenerer","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Keqing","lock":true,"id":"artifact_1409"},{"setKey":"GildedDreams","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_1410"},{"setKey":"Adventurer","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1411"},{"setKey":"PaleFlame","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Beidou","lock":true,"id":"artifact_1412"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_1413"},{"setKey":"PrayersToSpringtime","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1414"},{"setKey":"MaidenBeloved","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1415"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1416"},{"setKey":"ThunderingFury","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_1417"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1418"},{"setKey":"Scholar","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1419"},{"setKey":"VourukashasGlow","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1420"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Keqing","lock":true,"id":"artifact_1421"},{"setKey":"GladiatorsFinale","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"HuTao","lock":true,"id":"artifact_1422"},{"setKey":"ArchaicPetra","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_1423"},{"setKey":"Scholar","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_1424"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1425"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_1426"},{"setKey":"PrayersForDestiny","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_1427"},{"setKey":"GildedDreams","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Gaming","lock":true,"id":"artifact_1428"},{"setKey":"NoblesseOblige","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_1429"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Albedo","lock":true,"id":"artifact_1430"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Albedo","lock":true,"id":"artifact_1431"},{"setKey":"GladiatorsFinale","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1432"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_1433"},{"setKey":"LuckyDog","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_1434"},{"setKey":"Adventurer","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_1435"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Beidou","lock":true,"id":"artifact_1436"},{"setKey":"Adventurer","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_1437"},{"setKey":"ArchaicPetra","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Diluc","lock":true,"id":"artifact_1438"},{"setKey":"GladiatorsFinale","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_1439"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_1440"},{"setKey":"BraveHeart","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1441"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_1442"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1443"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_1444"},{"setKey":"NoblesseOblige","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_1445"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_1446"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_1447"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_1448"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_1449"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_1450"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_1451"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Furina","lock":true,"id":"artifact_1452"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_1453"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xiangling","lock":true,"id":"artifact_1454"},{"setKey":"Lavawalker","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Venti","lock":true,"id":"artifact_1455"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_1456"},{"setKey":"RetracingBolide","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1457"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Thoma","lock":true,"id":"artifact_1458"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1459"},{"setKey":"MaidenBeloved","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1460"},{"setKey":"OceanHuedClam","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1461"},{"setKey":"PrayersForWisdom","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_1462"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1463"},{"setKey":"Adventurer","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_1464"},{"setKey":"MaidenBeloved","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_1465"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1466"},{"setKey":"Gambler","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1467"},{"setKey":"TheExile","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xiao","lock":true,"id":"artifact_1468"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_1469"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1470"},{"setKey":"ThunderingFury","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_1471"},{"setKey":"Berserker","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_1472"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1473"},{"setKey":"TravelingDoctor","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Gaming","lock":true,"id":"artifact_1474"},{"setKey":"DefendersWill","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_1475"},{"setKey":"Berserker","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_1476"},{"setKey":"PrayersForWisdom","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Furina","lock":true,"id":"artifact_1477"},{"setKey":"NymphsDream","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_1478"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_1479"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1480"},{"setKey":"ThunderingFury","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_1481"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_1482"},{"setKey":"ThunderingFury","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Layla","lock":true,"id":"artifact_1483"},{"setKey":"OceanHuedClam","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1484"},{"setKey":"ViridescentVenerer","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_1485"},{"setKey":"Lavawalker","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1486"},{"setKey":"BlizzardStrayer","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1487"},{"setKey":"TheExile","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_1488"},{"setKey":"BraveHeart","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_1489"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_1490"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_1491"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Noelle","lock":true,"id":"artifact_1492"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_1493"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_1494"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1495"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1496"},{"setKey":"PaleFlame","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_1497"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1498"},{"setKey":"BlizzardStrayer","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_1499"},{"setKey":"WanderersTroupe","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1500"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_1501"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1502"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1503"},{"setKey":"TravelingDoctor","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1504"},{"setKey":"BlizzardStrayer","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Furina","lock":true,"id":"artifact_1505"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1506"},{"setKey":"GladiatorsFinale","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_1507"},{"setKey":"BloodstainedChivalry","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yelan","lock":true,"id":"artifact_1508"},{"setKey":"DefendersWill","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_1509"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_1510"},{"setKey":"TravelingDoctor","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_1511"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1512"},{"setKey":"Gambler","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_1513"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_1514"},{"setKey":"Gambler","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kirara","lock":true,"id":"artifact_1515"},{"setKey":"ThunderingFury","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_1516"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1517"},{"setKey":"Thundersoother","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_1518"},{"setKey":"Adventurer","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1519"},{"setKey":"NoblesseOblige","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_1520"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_1521"},{"setKey":"Thundersoother","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Collei","lock":true,"id":"artifact_1522"},{"setKey":"WanderersTroupe","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_1523"},{"setKey":"PaleFlame","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1524"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1525"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1526"},{"setKey":"NymphsDream","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_1527"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_1528"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_1529"},{"setKey":"Thundersoother","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_1530"},{"setKey":"WanderersTroupe","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_1531"},{"setKey":"PaleFlame","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1532"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1533"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_1534"},{"setKey":"PrayersForWisdom","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_1535"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_1536"},{"setKey":"ArchaicPetra","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_1537"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1538"},{"setKey":"ViridescentVenerer","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1539"},{"setKey":"DefendersWill","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Venti","lock":true,"id":"artifact_1540"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_1541"},{"setKey":"RetracingBolide","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_1542"},{"setKey":"Gambler","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_1543"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1544"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_1545"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_1546"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1547"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1548"},{"setKey":"RetracingBolide","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_1549"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_1550"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Keqing","lock":true,"id":"artifact_1551"},{"setKey":"Gambler","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_1552"},{"setKey":"MaidenBeloved","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Fischl","lock":true,"id":"artifact_1553"},{"setKey":"TinyMiracle","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1554"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1555"},{"setKey":"TheExile","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Candace","lock":true,"id":"artifact_1556"},{"setKey":"BloodstainedChivalry","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_1557"},{"setKey":"NoblesseOblige","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chiori","lock":true,"id":"artifact_1558"},{"setKey":"NymphsDream","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1559"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1560"},{"setKey":"ViridescentVenerer","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1561"},{"setKey":"TheExile","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_1562"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_1563"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nilou","lock":true,"id":"artifact_1564"},{"setKey":"DefendersWill","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1565"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Gorou","lock":true,"id":"artifact_1566"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_1567"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_1568"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_1569"},{"setKey":"GoldenTroupe","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_1570"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Albedo","lock":true,"id":"artifact_1571"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_1572"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_1573"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1574"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1575"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_1576"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Traveler","lock":true,"id":"artifact_1577"},{"setKey":"RetracingBolide","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_1578"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Jean","lock":true,"id":"artifact_1579"},{"setKey":"NoblesseOblige","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_1580"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Nilou","lock":true,"id":"artifact_1581"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1582"},{"setKey":"Gambler","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1583"},{"setKey":"GladiatorsFinale","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Thoma","lock":true,"id":"artifact_1584"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_1585"},{"setKey":"GoldenTroupe","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yelan","lock":true,"id":"artifact_1586"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1587"},{"setKey":"DeepwoodMemories","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1588"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_1589"},{"setKey":"TheExile","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Cyno","lock":true,"id":"artifact_1590"},{"setKey":"HeartOfDepth","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1591"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_1592"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Dori","lock":true,"id":"artifact_1593"},{"setKey":"ViridescentVenerer","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_1594"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1595"},{"setKey":"PrayersToSpringtime","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_1596"},{"setKey":"LuckyDog","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_1597"},{"setKey":"PrayersForWisdom","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_1598"},{"setKey":"DeepwoodMemories","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1599"},{"setKey":"VermillionHereafter","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_1600"},{"setKey":"Thundersoother","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_1601"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Beidou","lock":true,"id":"artifact_1602"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1603"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_1604"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1605"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_1606"},{"setKey":"Gambler","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1607"},{"setKey":"GoldenTroupe","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_1608"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1609"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1610"},{"setKey":"NoblesseOblige","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1611"},{"setKey":"MartialArtist","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_1612"},{"setKey":"PrayersToSpringtime","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1613"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Nilou","lock":true,"id":"artifact_1614"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_1615"},{"setKey":"MaidenBeloved","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Amber","lock":true,"id":"artifact_1616"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1617"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_1618"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_1619"},{"setKey":"Lavawalker","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lynette","lock":true,"id":"artifact_1620"},{"setKey":"VourukashasGlow","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1621"},{"setKey":"PrayersForWisdom","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1622"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_1623"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1624"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_1625"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_1626"},{"setKey":"ThunderingFury","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1627"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"HuTao","lock":true,"id":"artifact_1628"},{"setKey":"BloodstainedChivalry","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Furina","lock":true,"id":"artifact_1629"},{"setKey":"VermillionHereafter","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_1630"},{"setKey":"WanderersTroupe","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"HuTao","lock":true,"id":"artifact_1631"},{"setKey":"WanderersTroupe","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_1632"},{"setKey":"PrayersForWisdom","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_1633"},{"setKey":"Thundersoother","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1634"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_1635"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Razor","lock":true,"id":"artifact_1636"},{"setKey":"VermillionHereafter","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1637"},{"setKey":"TheExile","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_1638"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"YunJin","lock":true,"id":"artifact_1639"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Gaming","lock":true,"id":"artifact_1640"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chiori","lock":true,"id":"artifact_1641"},{"setKey":"BlizzardStrayer","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nilou","lock":true,"id":"artifact_1642"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_1643"},{"setKey":"GladiatorsFinale","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1644"},{"setKey":"GoldenTroupe","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_1645"},{"setKey":"Instructor","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_1646"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_1647"},{"setKey":"RetracingBolide","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Razor","lock":true,"id":"artifact_1648"},{"setKey":"WanderersTroupe","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Mona","lock":true,"id":"artifact_1649"},{"setKey":"SongOfDaysPast","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_1650"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1651"},{"setKey":"VourukashasGlow","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1652"},{"setKey":"ThunderingFury","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1653"},{"setKey":"PrayersForIllumination","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_1654"},{"setKey":"Lavawalker","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_1655"},{"setKey":"MarechausseeHunter","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1656"},{"setKey":"TheExile","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_1657"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1658"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_1659"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_1660"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Lyney","lock":true,"id":"artifact_1661"},{"setKey":"NymphsDream","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_1662"},{"setKey":"GildedDreams","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_1663"},{"setKey":"MartialArtist","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1664"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_1665"},{"setKey":"NoblesseOblige","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_1666"},{"setKey":"WanderersTroupe","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_1667"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gorou","lock":true,"id":"artifact_1668"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1669"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_1670"},{"setKey":"TinyMiracle","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mona","lock":true,"id":"artifact_1671"},{"setKey":"TheExile","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_1672"},{"setKey":"NoblesseOblige","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_1673"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_1674"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Cyno","lock":true,"id":"artifact_1675"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_1676"},{"setKey":"TravelingDoctor","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_1677"},{"setKey":"Instructor","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kirara","lock":true,"id":"artifact_1678"},{"setKey":"BlizzardStrayer","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1679"},{"setKey":"MarechausseeHunter","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1680"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_1681"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_1682"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1683"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1684"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1685"},{"setKey":"Gambler","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chiori","lock":true,"id":"artifact_1686"},{"setKey":"MaidenBeloved","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_1687"},{"setKey":"Berserker","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1688"},{"setKey":"TheExile","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1689"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1690"},{"setKey":"ViridescentVenerer","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_1691"},{"setKey":"MaidenBeloved","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_1692"},{"setKey":"GildedDreams","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1693"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Eula","lock":true,"id":"artifact_1694"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_1695"},{"setKey":"DeepwoodMemories","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_1696"},{"setKey":"SongOfDaysPast","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1697"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_1698"},{"setKey":"NoblesseOblige","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1699"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Cyno","lock":true,"id":"artifact_1700"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1701"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Noelle","lock":true,"id":"artifact_1702"},{"setKey":"Lavawalker","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1703"},{"setKey":"VourukashasGlow","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1704"},{"setKey":"PrayersForIllumination","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_1705"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_1706"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_1707"},{"setKey":"GoldenTroupe","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_1708"},{"setKey":"DeepwoodMemories","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1709"},{"setKey":"TinyMiracle","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_1710"},{"setKey":"Lavawalker","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_1711"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_1712"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1713"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_1714"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Barbara","lock":true,"id":"artifact_1715"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_1716"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_1717"},{"setKey":"VourukashasGlow","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_1718"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_1719"},{"setKey":"ThunderingFury","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_1720"},{"setKey":"Thundersoother","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Beidou","lock":true,"id":"artifact_1721"},{"setKey":"PrayersToSpringtime","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_1722"},{"setKey":"MarechausseeHunter","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_1723"},{"setKey":"PaleFlame","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1724"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_1725"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Diluc","lock":true,"id":"artifact_1726"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_1727"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1728"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Albedo","lock":true,"id":"artifact_1729"},{"setKey":"VourukashasGlow","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_1730"},{"setKey":"Thundersoother","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_1731"},{"setKey":"LuckyDog","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Diona","lock":true,"id":"artifact_1732"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"HuTao","lock":true,"id":"artifact_1733"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_1734"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Gorou","lock":true,"id":"artifact_1735"},{"setKey":"Berserker","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1736"},{"setKey":"ArchaicPetra","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_1737"},{"setKey":"VermillionHereafter","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_1738"},{"setKey":"TravelingDoctor","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_1739"},{"setKey":"TheExile","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1740"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1741"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1742"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1743"},{"setKey":"HeartOfDepth","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1744"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dori","lock":true,"id":"artifact_1745"},{"setKey":"MaidenBeloved","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1746"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_1747"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_1748"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_1749"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Klee","lock":true,"id":"artifact_1750"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_1751"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1752"},{"setKey":"MarechausseeHunter","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_1753"},{"setKey":"Gambler","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_1754"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Dori","lock":true,"id":"artifact_1755"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_1756"},{"setKey":"VourukashasGlow","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_1757"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_1758"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Mika","lock":true,"id":"artifact_1759"},{"setKey":"PrayersForDestiny","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_1760"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_1761"},{"setKey":"ThunderingFury","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_1762"},{"setKey":"Berserker","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1763"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_1764"},{"setKey":"DefendersWill","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_1765"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1766"},{"setKey":"PaleFlame","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_1767"},{"setKey":"TheExile","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_1768"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_1769"},{"setKey":"MaidenBeloved","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1770"},{"setKey":"OceanHuedClam","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1771"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1772"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1773"},{"setKey":"GildedDreams","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_1774"},{"setKey":"ThunderingFury","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_1775"},{"setKey":"TinyMiracle","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chiori","lock":true,"id":"artifact_1776"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1777"},{"setKey":"GoldenTroupe","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1778"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_1779"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Sayu","lock":true,"id":"artifact_1780"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Dehya","lock":true,"id":"artifact_1781"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Layla","lock":true,"id":"artifact_1782"},{"setKey":"RetracingBolide","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"YunJin","lock":true,"id":"artifact_1783"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_1784"},{"setKey":"GildedDreams","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Freminet","lock":true,"id":"artifact_1785"},{"setKey":"OceanHuedClam","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_1786"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1787"},{"setKey":"VermillionHereafter","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Fischl","lock":true,"id":"artifact_1788"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1789"},{"setKey":"NymphsDream","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_1790"},{"setKey":"MarechausseeHunter","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1791"},{"setKey":"MaidenBeloved","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_1792"},{"setKey":"PaleFlame","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1793"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Dori","lock":true,"id":"artifact_1794"},{"setKey":"TravelingDoctor","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1795"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_1796"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_1797"},{"setKey":"PrayersForDestiny","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1798"},{"setKey":"TheExile","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1799"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_1800"},{"setKey":"PrayersForWisdom","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_1801"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_1802"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1803"},{"setKey":"PrayersToSpringtime","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1804"},{"setKey":"Scholar","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1805"},{"setKey":"TinyMiracle","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_1806"},{"setKey":"NoblesseOblige","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_1807"},{"setKey":"PaleFlame","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_1808"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1809"},{"setKey":"Gambler","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1810"},{"setKey":"SongOfDaysPast","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_1811"},{"setKey":"GildedDreams","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1812"},{"setKey":"GladiatorsFinale","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_1813"},{"setKey":"GildedDreams","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yelan","lock":true,"id":"artifact_1814"},{"setKey":"MartialArtist","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1815"},{"setKey":"Lavawalker","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1816"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1817"},{"setKey":"RetracingBolide","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_1818"},{"setKey":"DeepwoodMemories","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Navia","lock":true,"id":"artifact_1819"},{"setKey":"PrayersForIllumination","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_1820"},{"setKey":"Adventurer","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1821"},{"setKey":"PrayersForDestiny","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1822"},{"setKey":"MaidenBeloved","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1823"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_1824"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Fischl","lock":true,"id":"artifact_1825"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1826"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Barbara","lock":true,"id":"artifact_1827"},{"setKey":"OceanHuedClam","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_1828"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Razor","lock":true,"id":"artifact_1829"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1830"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_1831"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_1832"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Thoma","lock":true,"id":"artifact_1833"},{"setKey":"TravelingDoctor","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1834"},{"setKey":"BloodstainedChivalry","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1835"},{"setKey":"GildedDreams","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Keqing","lock":true,"id":"artifact_1836"},{"setKey":"PrayersForDestiny","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1837"},{"setKey":"BlizzardStrayer","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1838"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1839"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_1840"},{"setKey":"PaleFlame","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1841"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_1842"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_1843"},{"setKey":"BlizzardStrayer","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_1844"},{"setKey":"LuckyDog","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_1845"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1846"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"YunJin","lock":true,"id":"artifact_1847"},{"setKey":"DeepwoodMemories","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_1848"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_1849"},{"setKey":"PaleFlame","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_1850"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xiao","lock":true,"id":"artifact_1851"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_1852"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Navia","lock":true,"id":"artifact_1853"},{"setKey":"NymphsDream","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1854"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1855"},{"setKey":"NoblesseOblige","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1856"},{"setKey":"DeepwoodMemories","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xiao","lock":true,"id":"artifact_1857"},{"setKey":"Gambler","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_1858"},{"setKey":"Berserker","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Gorou","lock":true,"id":"artifact_1859"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_1860"},{"setKey":"DeepwoodMemories","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1861"},{"setKey":"ThunderingFury","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_1862"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Razor","lock":true,"id":"artifact_1863"},{"setKey":"Thundersoother","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1864"},{"setKey":"Lavawalker","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1865"},{"setKey":"DefendersWill","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_1866"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Amber","lock":true,"id":"artifact_1867"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_1868"},{"setKey":"DeepwoodMemories","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1869"},{"setKey":"NoblesseOblige","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_1870"},{"setKey":"ThunderingFury","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_1871"},{"setKey":"WanderersTroupe","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_1872"},{"setKey":"Thundersoother","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_1873"},{"setKey":"Instructor","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1874"},{"setKey":"WanderersTroupe","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1875"},{"setKey":"PaleFlame","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_1876"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1877"},{"setKey":"Adventurer","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1878"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1879"},{"setKey":"OceanHuedClam","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1880"},{"setKey":"OceanHuedClam","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Gorou","lock":true,"id":"artifact_1881"},{"setKey":"OceanHuedClam","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_1882"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Keqing","lock":true,"id":"artifact_1883"},{"setKey":"Berserker","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Venti","lock":true,"id":"artifact_1884"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_1885"},{"setKey":"BloodstainedChivalry","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_1886"},{"setKey":"Thundersoother","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1887"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_1888"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1889"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Jean","lock":true,"id":"artifact_1890"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1891"},{"setKey":"HeartOfDepth","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_1892"},{"setKey":"ThunderingFury","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_1893"},{"setKey":"BlizzardStrayer","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1894"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Beidou","lock":true,"id":"artifact_1895"},{"setKey":"Berserker","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Dehya","lock":true,"id":"artifact_1896"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1897"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_1898"},{"setKey":"BloodstainedChivalry","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Jean","lock":true,"id":"artifact_1899"},{"setKey":"HeartOfDepth","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1900"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1901"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_1902"},{"setKey":"TravelingDoctor","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_1903"},{"setKey":"Adventurer","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1904"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Amber","lock":true,"id":"artifact_1905"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_1906"},{"setKey":"Gambler","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_1907"},{"setKey":"MartialArtist","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1908"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_1909"},{"setKey":"ViridescentVenerer","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Traveler","lock":true,"id":"artifact_1910"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Dori","lock":true,"id":"artifact_1911"},{"setKey":"TravelingDoctor","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_1912"},{"setKey":"TinyMiracle","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Diluc","lock":true,"id":"artifact_1913"},{"setKey":"GladiatorsFinale","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_1914"},{"setKey":"OceanHuedClam","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_1915"},{"setKey":"DeepwoodMemories","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_1916"},{"setKey":"BlizzardStrayer","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Gaming","lock":true,"id":"artifact_1917"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Thoma","lock":true,"id":"artifact_1918"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_1919"},{"setKey":"NoblesseOblige","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_1920"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_1921"},{"setKey":"Scholar","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_1922"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_1923"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_1924"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_1925"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_1926"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1927"},{"setKey":"BlizzardStrayer","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_1928"},{"setKey":"OceanHuedClam","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1929"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Fischl","lock":true,"id":"artifact_1930"},{"setKey":"Lavawalker","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_1931"},{"setKey":"Thundersoother","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_1932"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1933"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1934"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1935"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_1936"},{"setKey":"MarechausseeHunter","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_1937"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_1938"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_1939"},{"setKey":"TravelingDoctor","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_1940"},{"setKey":"VourukashasGlow","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_1941"},{"setKey":"MaidenBeloved","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Noelle","lock":true,"id":"artifact_1942"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_1943"},{"setKey":"PrayersForWisdom","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_1944"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Mona","lock":true,"id":"artifact_1945"},{"setKey":"MaidenBeloved","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_1946"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_1947"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_1948"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_1949"},{"setKey":"GladiatorsFinale","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_1950"},{"setKey":"Gambler","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Dori","lock":true,"id":"artifact_1951"},{"setKey":"DefendersWill","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_1952"},{"setKey":"GoldenTroupe","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_1953"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_1954"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1955"},{"setKey":"BraveHeart","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_1956"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Jean","lock":true,"id":"artifact_1957"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1958"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_1959"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Amber","lock":true,"id":"artifact_1960"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_1961"},{"setKey":"HeartOfDepth","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_1962"},{"setKey":"ThunderingFury","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_1963"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dori","lock":true,"id":"artifact_1964"},{"setKey":"GladiatorsFinale","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_1965"},{"setKey":"Instructor","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_1966"},{"setKey":"SongOfDaysPast","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Klee","lock":true,"id":"artifact_1967"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_1968"},{"setKey":"DefendersWill","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_1969"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_1970"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_1971"},{"setKey":"NymphsDream","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_1972"},{"setKey":"DefendersWill","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_1973"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mika","lock":true,"id":"artifact_1974"},{"setKey":"MartialArtist","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_1975"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1976"},{"setKey":"Scholar","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Aloy","lock":true,"id":"artifact_1977"},{"setKey":"LuckyDog","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_1978"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1979"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1980"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_1981"},{"setKey":"Scholar","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_1982"},{"setKey":"Scholar","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Noelle","lock":true,"id":"artifact_1983"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yelan","lock":true,"id":"artifact_1984"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_1985"},{"setKey":"HeartOfDepth","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_1986"},{"setKey":"WanderersTroupe","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_1987"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_1988"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_1989"},{"setKey":"GoldenTroupe","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"HuTao","lock":true,"id":"artifact_1990"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_1991"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_1992"},{"setKey":"LuckyDog","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_1993"},{"setKey":"PrayersToSpringtime","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_1994"},{"setKey":"ThunderingFury","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_1995"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Layla","lock":true,"id":"artifact_1996"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_1997"},{"setKey":"GladiatorsFinale","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_1998"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_1999"},{"setKey":"ThunderingFury","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_2000"},{"setKey":"Scholar","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_2001"},{"setKey":"NoblesseOblige","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2002"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_2003"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_2004"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2005"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_2006"},{"setKey":"PrayersForWisdom","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_2007"},{"setKey":"TravelingDoctor","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2008"},{"setKey":"VourukashasGlow","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_2009"},{"setKey":"PrayersForDestiny","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_2010"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_2011"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_2012"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_2013"},{"setKey":"ArchaicPetra","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_2014"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_2015"},{"setKey":"PrayersForDestiny","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Keqing","lock":true,"id":"artifact_2016"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_2017"},{"setKey":"VermillionHereafter","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_2018"},{"setKey":"Adventurer","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_2019"},{"setKey":"MartialArtist","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_2020"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_2021"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_2022"},{"setKey":"HeartOfDepth","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_2023"},{"setKey":"Adventurer","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xiao","lock":true,"id":"artifact_2024"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_2025"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2026"},{"setKey":"HeartOfDepth","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_2027"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chiori","lock":true,"id":"artifact_2028"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2029"},{"setKey":"LuckyDog","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2030"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiao","lock":true,"id":"artifact_2031"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Thoma","lock":true,"id":"artifact_2032"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_2033"},{"setKey":"BraveHeart","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2034"},{"setKey":"Berserker","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_2035"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2036"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"YunJin","lock":true,"id":"artifact_2037"},{"setKey":"Lavawalker","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_2038"},{"setKey":"BraveHeart","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Barbara","lock":true,"id":"artifact_2039"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_2040"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_2041"},{"setKey":"Instructor","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_2042"},{"setKey":"NoblesseOblige","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2043"},{"setKey":"Thundersoother","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_2044"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_2045"},{"setKey":"TheExile","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Amber","lock":true,"id":"artifact_2046"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_2047"},{"setKey":"Gambler","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2048"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Gorou","lock":true,"id":"artifact_2049"},{"setKey":"PrayersForIllumination","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_2050"},{"setKey":"GildedDreams","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_2051"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_2052"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Albedo","lock":true,"id":"artifact_2053"},{"setKey":"NoblesseOblige","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_2054"},{"setKey":"Lavawalker","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Freminet","lock":true,"id":"artifact_2055"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_2056"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_2057"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_2058"},{"setKey":"GoldenTroupe","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2059"},{"setKey":"TravelingDoctor","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Lisa","lock":true,"id":"artifact_2060"},{"setKey":"Scholar","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2061"},{"setKey":"PrayersToSpringtime","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_2062"},{"setKey":"MartialArtist","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2063"},{"setKey":"OceanHuedClam","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_2064"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_2065"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2066"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2067"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Bennett","lock":true,"id":"artifact_2068"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2069"},{"setKey":"Scholar","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xiao","lock":true,"id":"artifact_2070"},{"setKey":"TinyMiracle","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2071"},{"setKey":"DefendersWill","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2072"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_2073"},{"setKey":"PrayersForWisdom","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Furina","lock":true,"id":"artifact_2074"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2075"},{"setKey":"Instructor","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_2076"},{"setKey":"Lavawalker","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_2077"},{"setKey":"Scholar","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_2078"},{"setKey":"MaidenBeloved","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_2079"},{"setKey":"BraveHeart","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Freminet","lock":true,"id":"artifact_2080"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_2081"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_2082"},{"setKey":"ArchaicPetra","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Beidou","lock":true,"id":"artifact_2083"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_2084"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_2085"},{"setKey":"WanderersTroupe","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Cyno","lock":true,"id":"artifact_2086"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gaming","lock":true,"id":"artifact_2087"},{"setKey":"BloodstainedChivalry","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_2088"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xiao","lock":true,"id":"artifact_2089"},{"setKey":"DefendersWill","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2090"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Diona","lock":true,"id":"artifact_2091"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_2092"},{"setKey":"MarechausseeHunter","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Sayu","lock":true,"id":"artifact_2093"},{"setKey":"ArchaicPetra","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2094"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_2095"},{"setKey":"GildedDreams","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Collei","lock":true,"id":"artifact_2096"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chiori","lock":true,"id":"artifact_2097"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Cyno","lock":true,"id":"artifact_2098"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Bennett","lock":true,"id":"artifact_2099"},{"setKey":"Gambler","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Keqing","lock":true,"id":"artifact_2100"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_2101"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2102"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Gorou","lock":true,"id":"artifact_2103"},{"setKey":"GladiatorsFinale","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_2104"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_2105"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Candace","lock":true,"id":"artifact_2106"},{"setKey":"NymphsDream","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_2107"},{"setKey":"ViridescentVenerer","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_2108"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_2109"},{"setKey":"DeepwoodMemories","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Eula","lock":true,"id":"artifact_2110"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2111"},{"setKey":"RetracingBolide","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Gorou","lock":true,"id":"artifact_2112"},{"setKey":"Adventurer","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_2113"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2114"},{"setKey":"MarechausseeHunter","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Cyno","lock":true,"id":"artifact_2115"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2116"},{"setKey":"SongOfDaysPast","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_2117"},{"setKey":"ArchaicPetra","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2118"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2119"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2120"},{"setKey":"Thundersoother","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2121"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_2122"},{"setKey":"PaleFlame","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_2123"},{"setKey":"PrayersForWisdom","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2124"},{"setKey":"Adventurer","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2125"},{"setKey":"GoldenTroupe","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Diluc","lock":true,"id":"artifact_2126"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_2127"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2128"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2129"},{"setKey":"BraveHeart","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_2130"},{"setKey":"Berserker","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_2131"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Venti","lock":true,"id":"artifact_2132"},{"setKey":"HeartOfDepth","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_2133"},{"setKey":"BloodstainedChivalry","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2134"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Furina","lock":true,"id":"artifact_2135"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Venti","lock":true,"id":"artifact_2136"},{"setKey":"PrayersForWisdom","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_2137"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_2138"},{"setKey":"GildedDreams","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Jean","lock":true,"id":"artifact_2139"},{"setKey":"LuckyDog","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_2140"},{"setKey":"NoblesseOblige","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2141"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Freminet","lock":true,"id":"artifact_2142"},{"setKey":"TinyMiracle","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2143"},{"setKey":"PrayersForWisdom","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_2144"},{"setKey":"LuckyDog","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2145"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_2146"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2147"},{"setKey":"Scholar","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2148"},{"setKey":"PrayersForDestiny","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_2149"},{"setKey":"TinyMiracle","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_2150"},{"setKey":"SongOfDaysPast","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_2151"},{"setKey":"Thundersoother","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Candace","lock":true,"id":"artifact_2152"},{"setKey":"ThunderingFury","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_2153"},{"setKey":"PrayersForDestiny","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xiao","lock":true,"id":"artifact_2154"},{"setKey":"Berserker","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_2155"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_2156"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Chiori","lock":true,"id":"artifact_2157"},{"setKey":"PrayersForIllumination","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_2158"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_2159"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Layla","lock":true,"id":"artifact_2160"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Noelle","lock":true,"id":"artifact_2161"},{"setKey":"NoblesseOblige","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_2162"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_2163"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2164"},{"setKey":"RetracingBolide","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chiori","lock":true,"id":"artifact_2165"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_2166"},{"setKey":"TravelingDoctor","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_2167"},{"setKey":"Lavawalker","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kirara","lock":true,"id":"artifact_2168"},{"setKey":"RetracingBolide","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Fischl","lock":true,"id":"artifact_2169"},{"setKey":"RetracingBolide","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2170"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_2171"},{"setKey":"Thundersoother","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Keqing","lock":true,"id":"artifact_2172"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Gaming","lock":true,"id":"artifact_2173"},{"setKey":"SongOfDaysPast","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2174"},{"setKey":"ViridescentVenerer","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Freminet","lock":true,"id":"artifact_2175"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_2176"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_2177"},{"setKey":"HeartOfDepth","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_2178"},{"setKey":"WanderersTroupe","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xiao","lock":true,"id":"artifact_2179"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_2180"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2181"},{"setKey":"PrayersForDestiny","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2182"},{"setKey":"BlizzardStrayer","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_2183"},{"setKey":"TinyMiracle","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2184"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Razor","lock":true,"id":"artifact_2185"},{"setKey":"NymphsDream","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_2186"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dori","lock":true,"id":"artifact_2187"},{"setKey":"PaleFlame","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_2188"},{"setKey":"ThunderingFury","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2189"},{"setKey":"PrayersForDestiny","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_2190"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_2191"},{"setKey":"BloodstainedChivalry","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2192"},{"setKey":"Instructor","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2193"},{"setKey":"PrayersForIllumination","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_2194"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_2195"},{"setKey":"PrayersToSpringtime","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_2196"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2197"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_2198"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Dori","lock":true,"id":"artifact_2199"},{"setKey":"PrayersForIllumination","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_2200"},{"setKey":"ArchaicPetra","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_2201"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2202"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_2203"},{"setKey":"ArchaicPetra","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Eula","lock":true,"id":"artifact_2204"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_2205"},{"setKey":"PrayersForDestiny","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_2206"},{"setKey":"PrayersForIllumination","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Dori","lock":true,"id":"artifact_2207"},{"setKey":"Adventurer","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_2208"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_2209"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_2210"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_2211"},{"setKey":"GoldenTroupe","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_2212"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2213"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_2214"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_2215"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Venti","lock":true,"id":"artifact_2216"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Gaming","lock":true,"id":"artifact_2217"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Venti","lock":true,"id":"artifact_2218"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2219"},{"setKey":"NoblesseOblige","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_2220"},{"setKey":"ViridescentVenerer","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Albedo","lock":true,"id":"artifact_2221"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_2222"},{"setKey":"PaleFlame","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Nilou","lock":true,"id":"artifact_2223"},{"setKey":"ArchaicPetra","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"YunJin","lock":true,"id":"artifact_2224"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Dori","lock":true,"id":"artifact_2225"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2226"},{"setKey":"Gambler","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2227"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2228"},{"setKey":"MarechausseeHunter","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_2229"},{"setKey":"NoblesseOblige","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2230"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2231"},{"setKey":"ArchaicPetra","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Albedo","lock":true,"id":"artifact_2232"},{"setKey":"PaleFlame","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xiangling","lock":true,"id":"artifact_2233"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2234"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_2235"},{"setKey":"VourukashasGlow","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Lisa","lock":true,"id":"artifact_2236"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2237"},{"setKey":"OceanHuedClam","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2238"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_2239"},{"setKey":"MartialArtist","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_2240"},{"setKey":"BloodstainedChivalry","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2241"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_2242"},{"setKey":"PaleFlame","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_2243"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_2244"},{"setKey":"Berserker","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_2245"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"YunJin","lock":true,"id":"artifact_2246"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_2247"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2248"},{"setKey":"OceanHuedClam","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Navia","lock":true,"id":"artifact_2249"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2250"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2251"},{"setKey":"VourukashasGlow","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2252"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Beidou","lock":true,"id":"artifact_2253"},{"setKey":"PrayersForIllumination","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_2254"},{"setKey":"Lavawalker","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_2255"},{"setKey":"BloodstainedChivalry","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2256"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Dehya","lock":true,"id":"artifact_2257"},{"setKey":"TheExile","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Klee","lock":true,"id":"artifact_2258"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_2259"},{"setKey":"DeepwoodMemories","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_2260"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2261"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_2262"},{"setKey":"RetracingBolide","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2263"},{"setKey":"Berserker","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2264"},{"setKey":"TravelingDoctor","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Klee","lock":true,"id":"artifact_2265"},{"setKey":"SongOfDaysPast","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_2266"},{"setKey":"BloodstainedChivalry","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_2267"},{"setKey":"BloodstainedChivalry","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_2268"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_2269"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_2270"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2271"},{"setKey":"ThunderingFury","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_2272"},{"setKey":"VourukashasGlow","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2273"},{"setKey":"VourukashasGlow","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_2274"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Dori","lock":true,"id":"artifact_2275"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_2276"},{"setKey":"MartialArtist","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Jean","lock":true,"id":"artifact_2277"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Amber","lock":true,"id":"artifact_2278"},{"setKey":"Berserker","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_2279"},{"setKey":"Berserker","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_2280"},{"setKey":"VermillionHereafter","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2281"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_2282"},{"setKey":"BlizzardStrayer","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lyney","lock":true,"id":"artifact_2283"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2284"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2285"},{"setKey":"Instructor","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_2286"},{"setKey":"BloodstainedChivalry","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_2287"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_2288"},{"setKey":"BloodstainedChivalry","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_2289"},{"setKey":"BloodstainedChivalry","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Collei","lock":true,"id":"artifact_2290"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Sayu","lock":true,"id":"artifact_2291"},{"setKey":"OceanHuedClam","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2292"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_2293"},{"setKey":"Adventurer","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_2294"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_2295"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Venti","lock":true,"id":"artifact_2296"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_2297"},{"setKey":"TheExile","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2298"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2299"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2300"},{"setKey":"TravelingDoctor","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2301"},{"setKey":"MartialArtist","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Keqing","lock":true,"id":"artifact_2302"},{"setKey":"Thundersoother","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2303"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_2304"},{"setKey":"BloodstainedChivalry","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_2305"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2306"},{"setKey":"BraveHeart","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2307"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_2308"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_2309"},{"setKey":"TinyMiracle","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_2310"},{"setKey":"ArchaicPetra","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2311"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2312"},{"setKey":"BlizzardStrayer","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_2313"},{"setKey":"Gambler","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_2314"},{"setKey":"MaidenBeloved","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2315"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_2316"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_2317"},{"setKey":"TheExile","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_2318"},{"setKey":"Thundersoother","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_2319"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2320"},{"setKey":"Gambler","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Diluc","lock":true,"id":"artifact_2321"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2322"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lynette","lock":true,"id":"artifact_2323"},{"setKey":"GladiatorsFinale","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xinyan","lock":true,"id":"artifact_2324"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_2325"},{"setKey":"Adventurer","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2326"},{"setKey":"Adventurer","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_2327"},{"setKey":"ArchaicPetra","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2328"},{"setKey":"PrayersForWisdom","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Dehya","lock":true,"id":"artifact_2329"},{"setKey":"RetracingBolide","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_2330"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gaming","lock":true,"id":"artifact_2331"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_2332"},{"setKey":"ThunderingFury","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_2333"},{"setKey":"PrayersForDestiny","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_2334"},{"setKey":"PrayersToSpringtime","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2335"},{"setKey":"GoldenTroupe","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_2336"},{"setKey":"PaleFlame","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2337"},{"setKey":"TheExile","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Barbara","lock":true,"id":"artifact_2338"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2339"},{"setKey":"DeepwoodMemories","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Keqing","lock":true,"id":"artifact_2340"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2341"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Albedo","lock":true,"id":"artifact_2342"},{"setKey":"Adventurer","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_2343"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2344"},{"setKey":"Scholar","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2345"},{"setKey":"TinyMiracle","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Nahida","lock":true,"id":"artifact_2346"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_2347"},{"setKey":"MaidenBeloved","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2348"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Collei","lock":true,"id":"artifact_2349"},{"setKey":"Gambler","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_2350"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2351"},{"setKey":"Berserker","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Traveler","lock":true,"id":"artifact_2352"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_2353"},{"setKey":"LuckyDog","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_2354"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Navia","lock":true,"id":"artifact_2355"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Fischl","lock":true,"id":"artifact_2356"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_2357"},{"setKey":"NoblesseOblige","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2358"},{"setKey":"HeartOfDepth","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_2359"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"YunJin","lock":true,"id":"artifact_2360"},{"setKey":"DeepwoodMemories","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_2361"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lisa","lock":true,"id":"artifact_2362"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_2363"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2364"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_2365"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_2366"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"HuTao","lock":true,"id":"artifact_2367"},{"setKey":"TravelingDoctor","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chiori","lock":true,"id":"artifact_2368"},{"setKey":"PrayersForIllumination","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_2369"},{"setKey":"GoldenTroupe","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2370"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kirara","lock":true,"id":"artifact_2371"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_2372"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Thoma","lock":true,"id":"artifact_2373"},{"setKey":"HeartOfDepth","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_2374"},{"setKey":"GildedDreams","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_2375"},{"setKey":"Gambler","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2376"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_2377"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2378"},{"setKey":"Lavawalker","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Venti","lock":true,"id":"artifact_2379"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2380"},{"setKey":"Instructor","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2381"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2382"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_2383"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2384"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_2385"},{"setKey":"TravelingDoctor","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_2386"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2387"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Amber","lock":true,"id":"artifact_2388"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_2389"},{"setKey":"Scholar","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_2390"},{"setKey":"DefendersWill","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2391"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_2392"},{"setKey":"ViridescentVenerer","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2393"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Keqing","lock":true,"id":"artifact_2394"},{"setKey":"DeepwoodMemories","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2395"},{"setKey":"GoldenTroupe","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2396"},{"setKey":"Thundersoother","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Thoma","lock":true,"id":"artifact_2397"},{"setKey":"VourukashasGlow","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2398"},{"setKey":"PrayersForIllumination","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_2399"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2400"},{"setKey":"BlizzardStrayer","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_2401"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_2402"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_2403"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_2404"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Freminet","lock":true,"id":"artifact_2405"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_2406"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_2407"},{"setKey":"BraveHeart","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2408"},{"setKey":"WanderersTroupe","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_2409"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_2410"},{"setKey":"MarechausseeHunter","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_2411"},{"setKey":"PrayersForIllumination","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_2412"},{"setKey":"VermillionHereafter","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Mona","lock":true,"id":"artifact_2413"},{"setKey":"DefendersWill","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2414"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_2415"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2416"},{"setKey":"BlizzardStrayer","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2417"},{"setKey":"LuckyDog","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2418"},{"setKey":"Berserker","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2419"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_2420"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2421"},{"setKey":"TheExile","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2422"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2423"},{"setKey":"TravelingDoctor","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2424"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_2425"},{"setKey":"ThunderingFury","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_2426"},{"setKey":"Thundersoother","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_2427"},{"setKey":"PrayersForWisdom","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_2428"},{"setKey":"ViridescentVenerer","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2429"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Chiori","lock":true,"id":"artifact_2430"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2431"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_2432"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2433"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_2434"},{"setKey":"TheExile","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2435"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2436"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_2437"},{"setKey":"Scholar","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_2438"},{"setKey":"DefendersWill","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2439"},{"setKey":"Adventurer","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_2440"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_2441"},{"setKey":"RetracingBolide","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2442"},{"setKey":"NoblesseOblige","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_2443"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_2444"},{"setKey":"WanderersTroupe","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lyney","lock":true,"id":"artifact_2445"},{"setKey":"BloodstainedChivalry","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_2446"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Sayu","lock":true,"id":"artifact_2447"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2448"},{"setKey":"Gambler","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_2449"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_2450"},{"setKey":"BlizzardStrayer","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2451"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Freminet","lock":true,"id":"artifact_2452"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2453"},{"setKey":"MartialArtist","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_2454"},{"setKey":"TheExile","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Thoma","lock":true,"id":"artifact_2455"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Nilou","lock":true,"id":"artifact_2456"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_2457"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_2458"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dori","lock":true,"id":"artifact_2459"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2460"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Diona","lock":true,"id":"artifact_2461"},{"setKey":"Adventurer","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2462"},{"setKey":"ThunderingFury","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_2463"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2464"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2465"},{"setKey":"NoblesseOblige","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_2466"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_2467"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_2468"},{"setKey":"TinyMiracle","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_2469"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_2470"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_2471"},{"setKey":"PrayersToSpringtime","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2472"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2473"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_2474"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2475"},{"setKey":"WanderersTroupe","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Noelle","lock":true,"id":"artifact_2476"},{"setKey":"Thundersoother","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2477"},{"setKey":"GoldenTroupe","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Furina","lock":true,"id":"artifact_2478"},{"setKey":"HeartOfDepth","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_2479"},{"setKey":"Gambler","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2480"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2481"},{"setKey":"PaleFlame","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_2482"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_2483"},{"setKey":"TheExile","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_2484"},{"setKey":"TravelingDoctor","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_2485"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Traveler","lock":true,"id":"artifact_2486"},{"setKey":"MarechausseeHunter","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_2487"},{"setKey":"VermillionHereafter","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_2488"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_2489"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_2490"},{"setKey":"NymphsDream","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_2491"},{"setKey":"Scholar","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_2492"},{"setKey":"BraveHeart","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2493"},{"setKey":"ViridescentVenerer","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Klee","lock":true,"id":"artifact_2494"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_2495"},{"setKey":"HeartOfDepth","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2496"},{"setKey":"BraveHeart","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Noelle","lock":true,"id":"artifact_2497"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lynette","lock":true,"id":"artifact_2498"},{"setKey":"RetracingBolide","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Sayu","lock":true,"id":"artifact_2499"},{"setKey":"ViridescentVenerer","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_2500"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2501"},{"setKey":"GildedDreams","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2502"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2503"},{"setKey":"VermillionHereafter","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dori","lock":true,"id":"artifact_2504"},{"setKey":"BlizzardStrayer","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_2505"},{"setKey":"WanderersTroupe","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2506"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dori","lock":true,"id":"artifact_2507"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2508"},{"setKey":"PrayersForWisdom","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_2509"},{"setKey":"BlizzardStrayer","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2510"},{"setKey":"TinyMiracle","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Furina","lock":true,"id":"artifact_2511"},{"setKey":"Lavawalker","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_2512"},{"setKey":"Adventurer","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2513"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_2514"},{"setKey":"ArchaicPetra","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_2515"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_2516"},{"setKey":"MaidenBeloved","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_2517"},{"setKey":"MaidenBeloved","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_2518"},{"setKey":"VermillionHereafter","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_2519"},{"setKey":"GladiatorsFinale","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_2520"},{"setKey":"MaidenBeloved","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_2521"},{"setKey":"Lavawalker","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_2522"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gaming","lock":true,"id":"artifact_2523"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2524"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_2525"},{"setKey":"Thundersoother","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_2526"},{"setKey":"VermillionHereafter","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_2527"},{"setKey":"MartialArtist","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_2528"},{"setKey":"PrayersForDestiny","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_2529"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2530"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_2531"},{"setKey":"PrayersForWisdom","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_2532"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2533"},{"setKey":"GladiatorsFinale","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2534"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_2535"},{"setKey":"TinyMiracle","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Barbara","lock":true,"id":"artifact_2536"},{"setKey":"ArchaicPetra","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_2537"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2538"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_2539"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Lyney","lock":true,"id":"artifact_2540"},{"setKey":"PrayersForWisdom","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_2541"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_2542"},{"setKey":"ThunderingFury","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_2543"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_2544"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2545"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_2546"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_2547"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2548"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_2549"},{"setKey":"VermillionHereafter","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_2550"},{"setKey":"ThunderingFury","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2551"},{"setKey":"TheExile","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2552"},{"setKey":"PrayersForWisdom","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2553"},{"setKey":"OceanHuedClam","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_2554"},{"setKey":"Berserker","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2555"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_2556"},{"setKey":"GildedDreams","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Lynette","lock":true,"id":"artifact_2557"},{"setKey":"BraveHeart","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_2558"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Traveler","lock":true,"id":"artifact_2559"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2560"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_2561"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_2562"},{"setKey":"DefendersWill","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_2563"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_2564"},{"setKey":"BlizzardStrayer","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_2565"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Layla","lock":true,"id":"artifact_2566"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_2567"},{"setKey":"Berserker","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_2568"},{"setKey":"PrayersForWisdom","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Yelan","lock":true,"id":"artifact_2569"},{"setKey":"ViridescentVenerer","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2570"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_2571"},{"setKey":"HeartOfDepth","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2572"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_2573"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_2574"},{"setKey":"TravelingDoctor","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_2575"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_2576"},{"setKey":"OceanHuedClam","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Fischl","lock":true,"id":"artifact_2577"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_2578"},{"setKey":"LuckyDog","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_2579"},{"setKey":"ThunderingFury","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2580"},{"setKey":"BraveHeart","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2581"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_2582"},{"setKey":"PrayersForWisdom","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Layla","lock":true,"id":"artifact_2583"},{"setKey":"LuckyDog","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Candace","lock":true,"id":"artifact_2584"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2585"},{"setKey":"PrayersForWisdom","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Cyno","lock":true,"id":"artifact_2586"},{"setKey":"Scholar","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lynette","lock":true,"id":"artifact_2587"},{"setKey":"PrayersForIllumination","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_2588"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Jean","lock":true,"id":"artifact_2589"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2590"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2591"},{"setKey":"Scholar","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gaming","lock":true,"id":"artifact_2592"},{"setKey":"TheExile","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2593"},{"setKey":"TinyMiracle","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_2594"},{"setKey":"Scholar","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2595"},{"setKey":"Thundersoother","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_2596"},{"setKey":"ThunderingFury","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_2597"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_2598"},{"setKey":"BraveHeart","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_2599"},{"setKey":"NoblesseOblige","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_2600"},{"setKey":"DeepwoodMemories","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Cyno","lock":true,"id":"artifact_2601"},{"setKey":"MarechausseeHunter","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2602"},{"setKey":"PrayersForWisdom","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2603"},{"setKey":"WanderersTroupe","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_2604"},{"setKey":"DefendersWill","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_2605"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2606"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_2607"},{"setKey":"SongOfDaysPast","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_2608"},{"setKey":"NoblesseOblige","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_2609"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_2610"},{"setKey":"GladiatorsFinale","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_2611"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lisa","lock":true,"id":"artifact_2612"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_2613"},{"setKey":"VourukashasGlow","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_2614"},{"setKey":"ThunderingFury","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_2615"},{"setKey":"Scholar","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_2616"},{"setKey":"OceanHuedClam","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_2617"},{"setKey":"TravelingDoctor","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_2618"},{"setKey":"BlizzardStrayer","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_2619"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_2620"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_2621"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_2622"},{"setKey":"Scholar","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_2623"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_2624"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_2625"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2626"},{"setKey":"DeepwoodMemories","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_2627"},{"setKey":"GoldenTroupe","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2628"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_2629"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2630"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_2631"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2632"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2633"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2634"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Barbara","lock":true,"id":"artifact_2635"},{"setKey":"VourukashasGlow","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_2636"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2637"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_2638"},{"setKey":"PrayersForDestiny","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2639"},{"setKey":"GoldenTroupe","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_2640"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_2641"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Cyno","lock":true,"id":"artifact_2642"},{"setKey":"TravelingDoctor","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Noelle","lock":true,"id":"artifact_2643"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2644"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2645"},{"setKey":"Instructor","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_2646"},{"setKey":"PaleFlame","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_2647"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2648"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_2649"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_2650"},{"setKey":"NoblesseOblige","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_2651"},{"setKey":"PrayersToSpringtime","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Fischl","lock":true,"id":"artifact_2652"},{"setKey":"Scholar","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_2653"},{"setKey":"VermillionHereafter","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_2654"},{"setKey":"Instructor","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_2655"},{"setKey":"NoblesseOblige","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_2656"},{"setKey":"TravelingDoctor","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2657"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2658"},{"setKey":"PrayersToSpringtime","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Thoma","lock":true,"id":"artifact_2659"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_2660"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Beidou","lock":true,"id":"artifact_2661"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_2662"},{"setKey":"OceanHuedClam","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_2663"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_2664"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_2665"},{"setKey":"SongOfDaysPast","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_2666"},{"setKey":"BloodstainedChivalry","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_2667"},{"setKey":"HeartOfDepth","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_2668"},{"setKey":"ViridescentVenerer","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2669"},{"setKey":"DeepwoodMemories","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2670"},{"setKey":"TinyMiracle","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_2671"},{"setKey":"ArchaicPetra","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_2672"},{"setKey":"Instructor","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_2673"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_2674"},{"setKey":"TinyMiracle","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Layla","lock":true,"id":"artifact_2675"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_2676"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2677"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2678"},{"setKey":"Berserker","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2679"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_2680"},{"setKey":"BlizzardStrayer","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_2681"},{"setKey":"Lavawalker","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_2682"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_2683"},{"setKey":"DeepwoodMemories","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Fischl","lock":true,"id":"artifact_2684"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Eula","lock":true,"id":"artifact_2685"},{"setKey":"TinyMiracle","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2686"},{"setKey":"LuckyDog","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2687"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2688"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_2689"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_2690"},{"setKey":"Lavawalker","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_2691"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2692"},{"setKey":"GoldenTroupe","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_2693"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2694"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2695"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Nilou","lock":true,"id":"artifact_2696"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_2697"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_2698"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_2699"},{"setKey":"PrayersForWisdom","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_2700"},{"setKey":"Berserker","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Diona","lock":true,"id":"artifact_2701"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_2702"},{"setKey":"Berserker","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2703"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_2704"},{"setKey":"PrayersForWisdom","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_2705"},{"setKey":"TravelingDoctor","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Albedo","lock":true,"id":"artifact_2706"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_2707"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2708"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Gaming","lock":true,"id":"artifact_2709"},{"setKey":"TheExile","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Diluc","lock":true,"id":"artifact_2710"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2711"},{"setKey":"BraveHeart","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_2712"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_2713"},{"setKey":"BlizzardStrayer","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_2714"},{"setKey":"PrayersForDestiny","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_2715"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_2716"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Barbara","lock":true,"id":"artifact_2717"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_2718"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_2719"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lisa","lock":true,"id":"artifact_2720"},{"setKey":"MaidenBeloved","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2721"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_2722"},{"setKey":"PrayersForIllumination","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Mona","lock":true,"id":"artifact_2723"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2724"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_2725"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2726"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_2727"},{"setKey":"WanderersTroupe","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Nahida","lock":true,"id":"artifact_2728"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2729"},{"setKey":"DefendersWill","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2730"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mika","lock":true,"id":"artifact_2731"},{"setKey":"BraveHeart","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_2732"},{"setKey":"SongOfDaysPast","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2733"},{"setKey":"TravelingDoctor","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_2734"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_2735"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Barbara","lock":true,"id":"artifact_2736"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_2737"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_2738"},{"setKey":"TheExile","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_2739"},{"setKey":"GladiatorsFinale","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_2740"},{"setKey":"DefendersWill","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_2741"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Traveler","lock":true,"id":"artifact_2742"},{"setKey":"ThunderingFury","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Collei","lock":true,"id":"artifact_2743"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2744"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2745"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2746"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2747"},{"setKey":"MaidenBeloved","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2748"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_2749"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_2750"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_2751"},{"setKey":"TheExile","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_2752"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2753"},{"setKey":"VourukashasGlow","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_2754"},{"setKey":"WanderersTroupe","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2755"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Keqing","lock":true,"id":"artifact_2756"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Amber","lock":true,"id":"artifact_2757"},{"setKey":"TravelingDoctor","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_2758"},{"setKey":"BraveHeart","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2759"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_2760"},{"setKey":"Gambler","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_2761"},{"setKey":"OceanHuedClam","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_2762"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_2763"},{"setKey":"Berserker","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_2764"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_2765"},{"setKey":"LuckyDog","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_2766"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_2767"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2768"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"HuTao","lock":true,"id":"artifact_2769"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_2770"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2771"},{"setKey":"ThunderingFury","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Lyney","lock":true,"id":"artifact_2772"},{"setKey":"BraveHeart","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_2773"},{"setKey":"WanderersTroupe","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_2774"},{"setKey":"Thundersoother","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_2775"},{"setKey":"NoblesseOblige","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_2776"},{"setKey":"HeartOfDepth","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_2777"},{"setKey":"ArchaicPetra","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_2778"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_2779"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_2780"},{"setKey":"NoblesseOblige","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2781"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2782"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2783"},{"setKey":"Gambler","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_2784"},{"setKey":"WanderersTroupe","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_2785"},{"setKey":"MartialArtist","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2786"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2787"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_2788"},{"setKey":"NymphsDream","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_2789"},{"setKey":"PrayersForWisdom","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2790"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_2791"},{"setKey":"Berserker","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_2792"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2793"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Jean","lock":true,"id":"artifact_2794"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_2795"},{"setKey":"VourukashasGlow","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Furina","lock":true,"id":"artifact_2796"},{"setKey":"PrayersForWisdom","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_2797"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2798"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Fischl","lock":true,"id":"artifact_2799"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_2800"},{"setKey":"Gambler","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Beidou","lock":true,"id":"artifact_2801"},{"setKey":"Adventurer","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Beidou","lock":true,"id":"artifact_2802"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_2803"},{"setKey":"ArchaicPetra","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2804"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_2805"},{"setKey":"VermillionHereafter","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_2806"},{"setKey":"LuckyDog","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2807"},{"setKey":"ArchaicPetra","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Layla","lock":true,"id":"artifact_2808"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2809"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2810"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2811"},{"setKey":"TheExile","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2812"},{"setKey":"WanderersTroupe","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_2813"},{"setKey":"GladiatorsFinale","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2814"},{"setKey":"MaidenBeloved","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_2815"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_2816"},{"setKey":"OceanHuedClam","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2817"},{"setKey":"RetracingBolide","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_2818"},{"setKey":"ThunderingFury","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_2819"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_2820"},{"setKey":"BlizzardStrayer","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2821"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Freminet","lock":true,"id":"artifact_2822"},{"setKey":"PrayersForDestiny","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Fischl","lock":true,"id":"artifact_2823"},{"setKey":"RetracingBolide","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_2824"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"HuTao","lock":true,"id":"artifact_2825"},{"setKey":"PrayersForIllumination","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_2826"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2827"},{"setKey":"MaidenBeloved","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_2828"},{"setKey":"NymphsDream","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2829"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_2830"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2831"},{"setKey":"Thundersoother","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Nilou","lock":true,"id":"artifact_2832"},{"setKey":"ThunderingFury","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_2833"},{"setKey":"NoblesseOblige","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_2834"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Navia","lock":true,"id":"artifact_2835"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_2836"},{"setKey":"ThunderingFury","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2837"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2838"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Jean","lock":true,"id":"artifact_2839"},{"setKey":"Lavawalker","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_2840"},{"setKey":"MaidenBeloved","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2841"},{"setKey":"PrayersForIllumination","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_2842"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_2843"},{"setKey":"HeartOfDepth","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_2844"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_2845"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2846"},{"setKey":"BloodstainedChivalry","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_2847"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_2848"},{"setKey":"TinyMiracle","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2849"},{"setKey":"PrayersForWisdom","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2850"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_2851"},{"setKey":"BloodstainedChivalry","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_2852"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_2853"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2854"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_2855"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Fischl","lock":true,"id":"artifact_2856"},{"setKey":"BloodstainedChivalry","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2857"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Noelle","lock":true,"id":"artifact_2858"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Beidou","lock":true,"id":"artifact_2859"},{"setKey":"TinyMiracle","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_2860"},{"setKey":"MaidenBeloved","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_2861"},{"setKey":"PrayersForDestiny","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2862"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2863"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_2864"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_2865"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_2866"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_2867"},{"setKey":"BlizzardStrayer","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2868"},{"setKey":"VermillionHereafter","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_2869"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_2870"},{"setKey":"DeepwoodMemories","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_2871"},{"setKey":"VermillionHereafter","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2872"},{"setKey":"SongOfDaysPast","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_2873"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2874"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2875"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2876"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2877"},{"setKey":"BraveHeart","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_2878"},{"setKey":"Berserker","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_2879"},{"setKey":"GoldenTroupe","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_2880"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Nilou","lock":true,"id":"artifact_2881"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_2882"},{"setKey":"PrayersForWisdom","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2883"},{"setKey":"BloodstainedChivalry","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_2884"},{"setKey":"PaleFlame","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2885"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Razor","lock":true,"id":"artifact_2886"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_2887"},{"setKey":"TinyMiracle","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2888"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_2889"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_2890"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_2891"},{"setKey":"BraveHeart","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Noelle","lock":true,"id":"artifact_2892"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2893"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_2894"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2895"},{"setKey":"BlizzardStrayer","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2896"},{"setKey":"RetracingBolide","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Cyno","lock":true,"id":"artifact_2897"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_2898"},{"setKey":"BloodstainedChivalry","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2899"},{"setKey":"ThunderingFury","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2900"},{"setKey":"Berserker","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_2901"},{"setKey":"Berserker","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2902"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_2903"},{"setKey":"Scholar","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2904"},{"setKey":"TinyMiracle","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2905"},{"setKey":"MarechausseeHunter","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_2906"},{"setKey":"Gambler","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_2907"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_2908"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Traveler","lock":true,"id":"artifact_2909"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Diona","lock":true,"id":"artifact_2910"},{"setKey":"Adventurer","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_2911"},{"setKey":"DeepwoodMemories","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Keqing","lock":true,"id":"artifact_2912"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_2913"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Eula","lock":true,"id":"artifact_2914"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_2915"},{"setKey":"DeepwoodMemories","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lyney","lock":true,"id":"artifact_2916"},{"setKey":"PrayersForDestiny","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_2917"},{"setKey":"GildedDreams","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_2918"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_2919"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_2920"},{"setKey":"NymphsDream","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Diluc","lock":true,"id":"artifact_2921"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_2922"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_2923"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_2924"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_2925"},{"setKey":"ThunderingFury","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Nilou","lock":true,"id":"artifact_2926"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_2927"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_2928"},{"setKey":"ViridescentVenerer","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_2929"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Nilou","lock":true,"id":"artifact_2930"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_2931"},{"setKey":"DefendersWill","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Keqing","lock":true,"id":"artifact_2932"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2933"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_2934"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_2935"},{"setKey":"Thundersoother","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_2936"},{"setKey":"ArchaicPetra","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_2937"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2938"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_2939"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lisa","lock":true,"id":"artifact_2940"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_2941"},{"setKey":"PrayersForDestiny","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_2942"},{"setKey":"RetracingBolide","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_2943"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2944"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Beidou","lock":true,"id":"artifact_2945"},{"setKey":"RetracingBolide","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2946"},{"setKey":"PrayersForDestiny","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_2947"},{"setKey":"RetracingBolide","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_2948"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_2949"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2950"},{"setKey":"Gambler","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2951"},{"setKey":"NymphsDream","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_2952"},{"setKey":"GladiatorsFinale","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Venti","lock":true,"id":"artifact_2953"},{"setKey":"OceanHuedClam","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Gaming","lock":true,"id":"artifact_2954"},{"setKey":"VourukashasGlow","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2955"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2956"},{"setKey":"VourukashasGlow","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2957"},{"setKey":"TheExile","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YunJin","lock":true,"id":"artifact_2958"},{"setKey":"NymphsDream","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_2959"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_2960"},{"setKey":"PrayersForWisdom","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Eula","lock":true,"id":"artifact_2961"},{"setKey":"OceanHuedClam","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_2962"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_2963"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_2964"},{"setKey":"BlizzardStrayer","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_2965"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Venti","lock":true,"id":"artifact_2966"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_2967"},{"setKey":"VermillionHereafter","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xiao","lock":true,"id":"artifact_2968"},{"setKey":"ViridescentVenerer","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_2969"},{"setKey":"PrayersForIllumination","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_2970"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_2971"},{"setKey":"PrayersForIllumination","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_2972"},{"setKey":"WanderersTroupe","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_2973"},{"setKey":"VermillionHereafter","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_2974"},{"setKey":"TinyMiracle","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_2975"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_2976"},{"setKey":"VourukashasGlow","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_2977"},{"setKey":"PrayersToSpringtime","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Nahida","lock":true,"id":"artifact_2978"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Chiori","lock":true,"id":"artifact_2979"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chiori","lock":true,"id":"artifact_2980"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_2981"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Sayu","lock":true,"id":"artifact_2982"},{"setKey":"PrayersForWisdom","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Dehya","lock":true,"id":"artifact_2983"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_2984"},{"setKey":"LuckyDog","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_2985"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_2986"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_2987"},{"setKey":"Thundersoother","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Diluc","lock":true,"id":"artifact_2988"},{"setKey":"ArchaicPetra","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_2989"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"YunJin","lock":true,"id":"artifact_2990"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_2991"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_2992"},{"setKey":"PrayersForWisdom","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Thoma","lock":true,"id":"artifact_2993"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_2994"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_2995"},{"setKey":"Instructor","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_2996"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_2997"},{"setKey":"PrayersToSpringtime","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_2998"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_2999"},{"setKey":"Instructor","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_3000"},{"setKey":"PaleFlame","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_3001"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_3002"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3003"},{"setKey":"TravelingDoctor","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_3004"},{"setKey":"GildedDreams","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_3005"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_3006"},{"setKey":"ThunderingFury","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Jean","lock":true,"id":"artifact_3007"},{"setKey":"ViridescentVenerer","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_3008"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_3009"},{"setKey":"ArchaicPetra","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_3010"},{"setKey":"Adventurer","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3011"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3012"},{"setKey":"TinyMiracle","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_3013"},{"setKey":"DeepwoodMemories","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Sayu","lock":true,"id":"artifact_3014"},{"setKey":"TinyMiracle","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_3015"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_3016"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Traveler","lock":true,"id":"artifact_3017"},{"setKey":"Lavawalker","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_3018"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_3019"},{"setKey":"TinyMiracle","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_3020"},{"setKey":"WanderersTroupe","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Mika","lock":true,"id":"artifact_3021"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yelan","lock":true,"id":"artifact_3022"},{"setKey":"MaidenBeloved","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3023"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_3024"},{"setKey":"TinyMiracle","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_3025"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3026"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3027"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3028"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_3029"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_3030"},{"setKey":"GoldenTroupe","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_3031"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_3032"},{"setKey":"Scholar","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3033"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3034"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_3035"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_3036"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_3037"},{"setKey":"OceanHuedClam","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Rosaria","lock":true,"id":"artifact_3038"},{"setKey":"GildedDreams","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"HuTao","lock":true,"id":"artifact_3039"},{"setKey":"PrayersToSpringtime","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3040"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_3041"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_3042"},{"setKey":"ArchaicPetra","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_3043"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_3044"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3045"},{"setKey":"PaleFlame","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_3046"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Freminet","lock":true,"id":"artifact_3047"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Beidou","lock":true,"id":"artifact_3048"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3049"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_3050"},{"setKey":"MaidenBeloved","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_3051"},{"setKey":"VermillionHereafter","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_3052"},{"setKey":"Thundersoother","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_3053"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_3054"},{"setKey":"Berserker","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3055"},{"setKey":"Berserker","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_3056"},{"setKey":"PrayersForWisdom","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3057"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3058"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_3059"},{"setKey":"LuckyDog","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yelan","lock":true,"id":"artifact_3060"},{"setKey":"DeepwoodMemories","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_3061"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_3062"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3063"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Furina","lock":true,"id":"artifact_3064"},{"setKey":"GoldenTroupe","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3065"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_3066"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Freminet","lock":true,"id":"artifact_3067"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3068"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Beidou","lock":true,"id":"artifact_3069"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3070"},{"setKey":"HeartOfDepth","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_3071"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3072"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3073"},{"setKey":"Gambler","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_3074"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_3075"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_3076"},{"setKey":"Scholar","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3077"},{"setKey":"PrayersForDestiny","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3078"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_3079"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3080"},{"setKey":"Thundersoother","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3081"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3082"},{"setKey":"PaleFlame","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_3083"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3084"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_3085"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Diona","lock":true,"id":"artifact_3086"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"YunJin","lock":true,"id":"artifact_3087"},{"setKey":"RetracingBolide","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lyney","lock":true,"id":"artifact_3088"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3089"},{"setKey":"ThunderingFury","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Beidou","lock":true,"id":"artifact_3090"},{"setKey":"TinyMiracle","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3091"},{"setKey":"SongOfDaysPast","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_3092"},{"setKey":"TravelingDoctor","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mika","lock":true,"id":"artifact_3093"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_3094"},{"setKey":"TravelingDoctor","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3095"},{"setKey":"ArchaicPetra","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_3096"},{"setKey":"Thundersoother","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_3097"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"YunJin","lock":true,"id":"artifact_3098"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_3099"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_3100"},{"setKey":"DefendersWill","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_3101"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3102"},{"setKey":"PaleFlame","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_3103"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3104"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_3105"},{"setKey":"BraveHeart","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_3106"},{"setKey":"TheExile","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_3107"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_3108"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3109"},{"setKey":"HeartOfDepth","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3110"},{"setKey":"WanderersTroupe","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chiori","lock":true,"id":"artifact_3111"},{"setKey":"GladiatorsFinale","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3112"},{"setKey":"Thundersoother","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3113"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3114"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_3115"},{"setKey":"NoblesseOblige","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_3116"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_3117"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_3118"},{"setKey":"ViridescentVenerer","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Candace","lock":true,"id":"artifact_3119"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3120"},{"setKey":"Scholar","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Diluc","lock":true,"id":"artifact_3121"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_3122"},{"setKey":"BraveHeart","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_3123"},{"setKey":"MaidenBeloved","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_3124"},{"setKey":"MartialArtist","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_3125"},{"setKey":"BraveHeart","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Nilou","lock":true,"id":"artifact_3126"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_3127"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3128"},{"setKey":"TravelingDoctor","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_3129"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_3130"},{"setKey":"GoldenTroupe","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_3131"},{"setKey":"PrayersToSpringtime","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Collei","lock":true,"id":"artifact_3132"},{"setKey":"PrayersForWisdom","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_3133"},{"setKey":"Scholar","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Keqing","lock":true,"id":"artifact_3134"},{"setKey":"GladiatorsFinale","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xinyan","lock":true,"id":"artifact_3135"},{"setKey":"BloodstainedChivalry","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Albedo","lock":true,"id":"artifact_3136"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Venti","lock":true,"id":"artifact_3137"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kirara","lock":true,"id":"artifact_3138"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Bennett","lock":true,"id":"artifact_3139"},{"setKey":"PrayersToSpringtime","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3140"},{"setKey":"BraveHeart","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Amber","lock":true,"id":"artifact_3141"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3142"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_3143"},{"setKey":"VourukashasGlow","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_3144"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3145"},{"setKey":"MaidenBeloved","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_3146"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"YunJin","lock":true,"id":"artifact_3147"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_3148"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Lisa","lock":true,"id":"artifact_3149"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_3150"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_3151"},{"setKey":"BloodstainedChivalry","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_3152"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_3153"},{"setKey":"TravelingDoctor","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_3154"},{"setKey":"Gambler","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_3155"},{"setKey":"DefendersWill","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_3156"},{"setKey":"PaleFlame","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Qiqi","lock":true,"id":"artifact_3157"},{"setKey":"HeartOfDepth","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_3158"},{"setKey":"DefendersWill","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3159"},{"setKey":"Lavawalker","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_3160"},{"setKey":"TinyMiracle","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_3161"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Fischl","lock":true,"id":"artifact_3162"},{"setKey":"Scholar","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Diona","lock":true,"id":"artifact_3163"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3164"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_3165"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Kirara","lock":true,"id":"artifact_3166"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_3167"},{"setKey":"ViridescentVenerer","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_3168"},{"setKey":"VourukashasGlow","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_3169"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3170"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3171"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3172"},{"setKey":"Instructor","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_3173"},{"setKey":"Gambler","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_3174"},{"setKey":"RetracingBolide","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_3175"},{"setKey":"OceanHuedClam","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3176"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3177"},{"setKey":"ThunderingFury","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3178"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_3179"},{"setKey":"Gambler","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Beidou","lock":true,"id":"artifact_3180"},{"setKey":"Scholar","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_3181"},{"setKey":"SongOfDaysPast","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3182"},{"setKey":"TinyMiracle","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Mona","lock":true,"id":"artifact_3183"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3184"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_3185"},{"setKey":"ArchaicPetra","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_3186"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_3187"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_3188"},{"setKey":"ViridescentVenerer","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_3189"},{"setKey":"ViridescentVenerer","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_3190"},{"setKey":"HeartOfDepth","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Diluc","lock":true,"id":"artifact_3191"},{"setKey":"TinyMiracle","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_3192"},{"setKey":"BlizzardStrayer","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Furina","lock":true,"id":"artifact_3193"},{"setKey":"GladiatorsFinale","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_3194"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3195"},{"setKey":"NymphsDream","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_3196"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3197"},{"setKey":"ViridescentVenerer","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Cyno","lock":true,"id":"artifact_3198"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_3199"},{"setKey":"ThunderingFury","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Diona","lock":true,"id":"artifact_3200"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_3201"},{"setKey":"NoblesseOblige","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_3202"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Keqing","lock":true,"id":"artifact_3203"},{"setKey":"Thundersoother","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_3204"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_3205"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3206"},{"setKey":"BloodstainedChivalry","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3207"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_3208"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3209"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_3210"},{"setKey":"PrayersToSpringtime","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_3211"},{"setKey":"BloodstainedChivalry","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_3212"},{"setKey":"RetracingBolide","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_3213"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3214"},{"setKey":"GladiatorsFinale","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3215"},{"setKey":"ViridescentVenerer","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3216"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Chiori","lock":true,"id":"artifact_3217"},{"setKey":"Gambler","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_3218"},{"setKey":"TinyMiracle","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3219"},{"setKey":"TravelingDoctor","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"YunJin","lock":true,"id":"artifact_3220"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3221"},{"setKey":"VourukashasGlow","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_3222"},{"setKey":"OceanHuedClam","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_3223"},{"setKey":"DeepwoodMemories","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Diluc","lock":true,"id":"artifact_3224"},{"setKey":"NymphsDream","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3225"},{"setKey":"PrayersToSpringtime","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Aloy","lock":true,"id":"artifact_3226"},{"setKey":"Berserker","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_3227"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Aloy","lock":true,"id":"artifact_3228"},{"setKey":"TravelingDoctor","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3229"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_3230"},{"setKey":"GildedDreams","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Klee","lock":true,"id":"artifact_3231"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_3232"},{"setKey":"ArchaicPetra","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_3233"},{"setKey":"PrayersForDestiny","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_3234"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_3235"},{"setKey":"BlizzardStrayer","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_3236"},{"setKey":"Lavawalker","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3237"},{"setKey":"TheExile","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Nahida","lock":true,"id":"artifact_3238"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_3239"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_3240"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3241"},{"setKey":"DeepwoodMemories","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Eula","lock":true,"id":"artifact_3242"},{"setKey":"BraveHeart","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_3243"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_3244"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3245"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_3246"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_3247"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3248"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3249"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3250"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3251"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_3252"},{"setKey":"HeartOfDepth","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_3253"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_3254"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"HuTao","lock":true,"id":"artifact_3255"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_3256"},{"setKey":"ArchaicPetra","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3257"},{"setKey":"DefendersWill","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3258"},{"setKey":"MartialArtist","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3259"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_3260"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_3261"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_3262"},{"setKey":"DeepwoodMemories","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Dori","lock":true,"id":"artifact_3263"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_3264"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xiao","lock":true,"id":"artifact_3265"},{"setKey":"MartialArtist","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3266"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_3267"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3268"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_3269"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_3270"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_3271"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_3272"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_3273"},{"setKey":"TinyMiracle","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_3274"},{"setKey":"PrayersForIllumination","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_3275"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_3276"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_3277"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_3278"},{"setKey":"TinyMiracle","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_3279"},{"setKey":"WanderersTroupe","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_3280"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3281"},{"setKey":"Instructor","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_3282"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lisa","lock":true,"id":"artifact_3283"},{"setKey":"GladiatorsFinale","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_3284"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"HuTao","lock":true,"id":"artifact_3285"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3286"},{"setKey":"VermillionHereafter","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3287"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Keqing","lock":true,"id":"artifact_3288"},{"setKey":"VourukashasGlow","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_3289"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_3290"},{"setKey":"OceanHuedClam","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3291"},{"setKey":"PrayersForIllumination","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3292"},{"setKey":"MarechausseeHunter","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_3293"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_3294"},{"setKey":"MaidenBeloved","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_3295"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_3296"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_3297"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_3298"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3299"},{"setKey":"DeepwoodMemories","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_3300"},{"setKey":"Thundersoother","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_3301"},{"setKey":"TravelingDoctor","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_3302"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_3303"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Baizhu","lock":true,"id":"artifact_3304"},{"setKey":"OceanHuedClam","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_3305"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_3306"},{"setKey":"TinyMiracle","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3307"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_3308"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_3309"},{"setKey":"BraveHeart","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_3310"},{"setKey":"Lavawalker","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3311"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Freminet","lock":true,"id":"artifact_3312"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_3313"},{"setKey":"Thundersoother","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3314"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_3315"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Diluc","lock":true,"id":"artifact_3316"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_3317"},{"setKey":"DeepwoodMemories","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3318"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3319"},{"setKey":"VourukashasGlow","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3320"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3321"},{"setKey":"OceanHuedClam","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3322"},{"setKey":"BlizzardStrayer","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_3323"},{"setKey":"BraveHeart","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_3324"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3325"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Diona","lock":true,"id":"artifact_3326"},{"setKey":"TheExile","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3327"},{"setKey":"Adventurer","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3328"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Collei","lock":true,"id":"artifact_3329"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_3330"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_3331"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gaming","lock":true,"id":"artifact_3332"},{"setKey":"MaidenBeloved","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_3333"},{"setKey":"MarechausseeHunter","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Dori","lock":true,"id":"artifact_3334"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_3335"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3336"},{"setKey":"PrayersForIllumination","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Dehya","lock":true,"id":"artifact_3337"},{"setKey":"MaidenBeloved","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_3338"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_3339"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_3340"},{"setKey":"GladiatorsFinale","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Candace","lock":true,"id":"artifact_3341"},{"setKey":"MartialArtist","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3342"},{"setKey":"PrayersForWisdom","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_3343"},{"setKey":"NoblesseOblige","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_3344"},{"setKey":"RetracingBolide","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Faruzan","lock":true,"id":"artifact_3345"},{"setKey":"RetracingBolide","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_3346"},{"setKey":"BlizzardStrayer","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_3347"},{"setKey":"Lavawalker","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_3348"},{"setKey":"GildedDreams","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3349"},{"setKey":"Berserker","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Jean","lock":true,"id":"artifact_3350"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_3351"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_3352"},{"setKey":"BraveHeart","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_3353"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_3354"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_3355"},{"setKey":"BlizzardStrayer","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_3356"},{"setKey":"ArchaicPetra","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3357"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_3358"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_3359"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3360"},{"setKey":"PrayersForIllumination","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3361"},{"setKey":"ViridescentVenerer","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_3362"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3363"},{"setKey":"PaleFlame","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_3364"},{"setKey":"DeepwoodMemories","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_3365"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_3366"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_3367"},{"setKey":"VourukashasGlow","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_3368"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_3369"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_3370"},{"setKey":"BraveHeart","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_3371"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_3372"},{"setKey":"VourukashasGlow","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3373"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_3374"},{"setKey":"PrayersToSpringtime","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_3375"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_3376"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_3377"},{"setKey":"TravelingDoctor","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_3378"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3379"},{"setKey":"DeepwoodMemories","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_3380"},{"setKey":"RetracingBolide","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_3381"},{"setKey":"TravelingDoctor","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Beidou","lock":true,"id":"artifact_3382"},{"setKey":"VourukashasGlow","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_3383"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lyney","lock":true,"id":"artifact_3384"},{"setKey":"GladiatorsFinale","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3385"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3386"},{"setKey":"BlizzardStrayer","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_3387"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_3388"},{"setKey":"DefendersWill","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_3389"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3390"},{"setKey":"TravelingDoctor","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_3391"},{"setKey":"ThunderingFury","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3392"},{"setKey":"MaidenBeloved","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_3393"},{"setKey":"GildedDreams","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_3394"},{"setKey":"PrayersForIllumination","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3395"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_3396"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_3397"},{"setKey":"Lavawalker","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3398"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_3399"},{"setKey":"TheExile","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3400"},{"setKey":"LuckyDog","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_3401"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Lynette","lock":true,"id":"artifact_3402"},{"setKey":"GoldenTroupe","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3403"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_3404"},{"setKey":"BloodstainedChivalry","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_3405"},{"setKey":"TheExile","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_3406"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_3407"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Sayu","lock":true,"id":"artifact_3408"},{"setKey":"BraveHeart","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_3409"},{"setKey":"Adventurer","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3410"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_3411"},{"setKey":"OceanHuedClam","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_3412"},{"setKey":"Adventurer","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xiao","lock":true,"id":"artifact_3413"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Beidou","lock":true,"id":"artifact_3414"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Bennett","lock":true,"id":"artifact_3415"},{"setKey":"PrayersToSpringtime","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_3416"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_3417"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_3418"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_3419"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yelan","lock":true,"id":"artifact_3420"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_3421"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_3422"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3423"},{"setKey":"MaidenBeloved","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3424"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_3425"},{"setKey":"BraveHeart","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3426"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Collei","lock":true,"id":"artifact_3427"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_3428"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_3429"},{"setKey":"Adventurer","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3430"},{"setKey":"TravelingDoctor","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Noelle","lock":true,"id":"artifact_3431"},{"setKey":"RetracingBolide","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_3432"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_3433"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3434"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Beidou","lock":true,"id":"artifact_3435"},{"setKey":"VermillionHereafter","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Jean","lock":true,"id":"artifact_3436"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_3437"},{"setKey":"Gambler","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Kaeya","lock":true,"id":"artifact_3438"},{"setKey":"PrayersForDestiny","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3439"},{"setKey":"GladiatorsFinale","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mika","lock":true,"id":"artifact_3440"},{"setKey":"PrayersForIllumination","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3441"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Navia","lock":true,"id":"artifact_3442"},{"setKey":"GoldenTroupe","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Barbara","lock":true,"id":"artifact_3443"},{"setKey":"RetracingBolide","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_3444"},{"setKey":"Thundersoother","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3445"},{"setKey":"PrayersForWisdom","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_3446"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Mona","lock":true,"id":"artifact_3447"},{"setKey":"NoblesseOblige","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_3448"},{"setKey":"TheExile","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_3449"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_3450"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_3451"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3452"},{"setKey":"PrayersForWisdom","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_3453"},{"setKey":"OceanHuedClam","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_3454"},{"setKey":"NoblesseOblige","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Albedo","lock":true,"id":"artifact_3455"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_3456"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Chiori","lock":true,"id":"artifact_3457"},{"setKey":"Lavawalker","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_3458"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_3459"},{"setKey":"NoblesseOblige","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_3460"},{"setKey":"GoldenTroupe","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_3461"},{"setKey":"GladiatorsFinale","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_3462"},{"setKey":"BraveHeart","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_3463"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3464"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Diluc","lock":true,"id":"artifact_3465"},{"setKey":"VourukashasGlow","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_3466"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3467"},{"setKey":"LuckyDog","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3468"},{"setKey":"OceanHuedClam","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_3469"},{"setKey":"TheExile","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3470"},{"setKey":"SongOfDaysPast","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_3471"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_3472"},{"setKey":"GladiatorsFinale","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xinyan","lock":true,"id":"artifact_3473"},{"setKey":"BloodstainedChivalry","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_3474"},{"setKey":"TheExile","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3475"},{"setKey":"GladiatorsFinale","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_3476"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3477"},{"setKey":"Instructor","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_3478"},{"setKey":"TheExile","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3479"},{"setKey":"ViridescentVenerer","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3480"},{"setKey":"DefendersWill","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Thoma","lock":true,"id":"artifact_3481"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_3482"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Furina","lock":true,"id":"artifact_3483"},{"setKey":"Berserker","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_3484"},{"setKey":"Instructor","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_3485"},{"setKey":"DeepwoodMemories","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_3486"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3487"},{"setKey":"TinyMiracle","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3488"},{"setKey":"BloodstainedChivalry","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_3489"},{"setKey":"NoblesseOblige","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_3490"},{"setKey":"MaidenBeloved","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_3491"},{"setKey":"PaleFlame","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_3492"},{"setKey":"VourukashasGlow","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3493"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_3494"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3495"},{"setKey":"Berserker","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_3496"},{"setKey":"PrayersForIllumination","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_3497"},{"setKey":"Adventurer","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3498"},{"setKey":"TheExile","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3499"},{"setKey":"PaleFlame","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3500"},{"setKey":"WanderersTroupe","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3501"},{"setKey":"Thundersoother","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_3502"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_3503"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3504"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3505"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3506"},{"setKey":"MarechausseeHunter","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_3507"},{"setKey":"VourukashasGlow","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_3508"},{"setKey":"PrayersForIllumination","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_3509"},{"setKey":"HeartOfDepth","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_3510"},{"setKey":"Berserker","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3511"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_3512"},{"setKey":"VourukashasGlow","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3513"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3514"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3515"},{"setKey":"GoldenTroupe","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3516"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_3517"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_3518"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Mika","lock":true,"id":"artifact_3519"},{"setKey":"GoldenTroupe","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_3520"},{"setKey":"PaleFlame","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3521"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_3522"},{"setKey":"OceanHuedClam","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_3523"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_3524"},{"setKey":"TheExile","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_3525"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_3526"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_3527"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3528"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Traveler","lock":true,"id":"artifact_3529"},{"setKey":"VermillionHereafter","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Amber","lock":true,"id":"artifact_3530"},{"setKey":"Berserker","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_3531"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3532"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3533"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_3534"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_3535"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Beidou","lock":true,"id":"artifact_3536"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_3537"},{"setKey":"PrayersForIllumination","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_3538"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3539"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3540"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_3541"},{"setKey":"Berserker","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3542"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3543"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_3544"},{"setKey":"SongOfDaysPast","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_3545"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3546"},{"setKey":"TinyMiracle","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3547"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Collei","lock":true,"id":"artifact_3548"},{"setKey":"PaleFlame","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_3549"},{"setKey":"Gambler","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3550"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3551"},{"setKey":"TinyMiracle","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Lisa","lock":true,"id":"artifact_3552"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"HuTao","lock":true,"id":"artifact_3553"},{"setKey":"PrayersForDestiny","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_3554"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Freminet","lock":true,"id":"artifact_3555"},{"setKey":"PrayersForDestiny","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_3556"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_3557"},{"setKey":"TravelingDoctor","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_3558"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_3559"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Klee","lock":true,"id":"artifact_3560"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3561"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_3562"},{"setKey":"VermillionHereafter","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_3563"},{"setKey":"TinyMiracle","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_3564"},{"setKey":"PrayersForWisdom","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Furina","lock":true,"id":"artifact_3565"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Amber","lock":true,"id":"artifact_3566"},{"setKey":"WanderersTroupe","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3567"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_3568"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_3569"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3570"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Lynette","lock":true,"id":"artifact_3571"},{"setKey":"NoblesseOblige","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3572"},{"setKey":"PrayersForIllumination","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3573"},{"setKey":"SongOfDaysPast","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_3574"},{"setKey":"DeepwoodMemories","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3575"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_3576"},{"setKey":"SongOfDaysPast","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chiori","lock":true,"id":"artifact_3577"},{"setKey":"ViridescentVenerer","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_3578"},{"setKey":"MartialArtist","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_3579"},{"setKey":"Scholar","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_3580"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_3581"},{"setKey":"WanderersTroupe","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_3582"},{"setKey":"Scholar","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_3583"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_3584"},{"setKey":"BraveHeart","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3585"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_3586"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3587"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3588"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Barbara","lock":true,"id":"artifact_3589"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_3590"},{"setKey":"PrayersForWisdom","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_3591"},{"setKey":"Gambler","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_3592"},{"setKey":"PrayersForWisdom","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_3593"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_3594"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_3595"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3596"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Freminet","lock":true,"id":"artifact_3597"},{"setKey":"SongOfDaysPast","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Candace","lock":true,"id":"artifact_3598"},{"setKey":"ArchaicPetra","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3599"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_3600"},{"setKey":"NoblesseOblige","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Collei","lock":true,"id":"artifact_3601"},{"setKey":"PaleFlame","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Aloy","lock":true,"id":"artifact_3602"},{"setKey":"LuckyDog","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3603"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_3604"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3605"},{"setKey":"DeepwoodMemories","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yelan","lock":true,"id":"artifact_3606"},{"setKey":"GildedDreams","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_3607"},{"setKey":"HeartOfDepth","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_3608"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Amber","lock":true,"id":"artifact_3609"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3610"},{"setKey":"Lavawalker","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Nahida","lock":true,"id":"artifact_3611"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3612"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3613"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Albedo","lock":true,"id":"artifact_3614"},{"setKey":"Berserker","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3615"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_3616"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_3617"},{"setKey":"NoblesseOblige","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_3618"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_3619"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Nahida","lock":true,"id":"artifact_3620"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_3621"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3622"},{"setKey":"SongOfDaysPast","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3623"},{"setKey":"ThunderingFury","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3624"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3625"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_3626"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3627"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_3628"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3629"},{"setKey":"VourukashasGlow","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Jean","lock":true,"id":"artifact_3630"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3631"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Razor","lock":true,"id":"artifact_3632"},{"setKey":"Gambler","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Venti","lock":true,"id":"artifact_3633"},{"setKey":"NoblesseOblige","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3634"},{"setKey":"ViridescentVenerer","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_3635"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_3636"},{"setKey":"HeartOfDepth","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_3637"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Chiori","lock":true,"id":"artifact_3638"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_3639"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3640"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3641"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3642"},{"setKey":"SongOfDaysPast","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_3643"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_3644"},{"setKey":"Adventurer","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_3645"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3646"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_3647"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3648"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3649"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_3650"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_3651"},{"setKey":"TinyMiracle","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_3652"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_3653"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3654"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_3655"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_3656"},{"setKey":"Lavawalker","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3657"},{"setKey":"ViridescentVenerer","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_3658"},{"setKey":"DeepwoodMemories","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Fischl","lock":true,"id":"artifact_3659"},{"setKey":"DeepwoodMemories","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_3660"},{"setKey":"LuckyDog","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_3661"},{"setKey":"GoldenTroupe","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_3662"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Candace","lock":true,"id":"artifact_3663"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_3664"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3665"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3666"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lyney","lock":true,"id":"artifact_3667"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Freminet","lock":true,"id":"artifact_3668"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_3669"},{"setKey":"TravelingDoctor","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Venti","lock":true,"id":"artifact_3670"},{"setKey":"ArchaicPetra","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_3671"},{"setKey":"GoldenTroupe","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_3672"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Eula","lock":true,"id":"artifact_3673"},{"setKey":"DeepwoodMemories","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_3674"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lynette","lock":true,"id":"artifact_3675"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Navia","lock":true,"id":"artifact_3676"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_3677"},{"setKey":"LuckyDog","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_3678"},{"setKey":"ThunderingFury","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_3679"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_3680"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3681"},{"setKey":"BlizzardStrayer","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_3682"},{"setKey":"Lavawalker","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_3683"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3684"},{"setKey":"TravelingDoctor","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3685"},{"setKey":"DefendersWill","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_3686"},{"setKey":"PrayersToSpringtime","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kaeya","lock":true,"id":"artifact_3687"},{"setKey":"TheExile","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Mona","lock":true,"id":"artifact_3688"},{"setKey":"MartialArtist","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_3689"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_3690"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_3691"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_3692"},{"setKey":"ArchaicPetra","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_3693"},{"setKey":"VermillionHereafter","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_3694"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_3695"},{"setKey":"Lavawalker","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_3696"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3697"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_3698"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_3699"},{"setKey":"PrayersForIllumination","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Venti","lock":true,"id":"artifact_3700"},{"setKey":"WanderersTroupe","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_3701"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Barbara","lock":true,"id":"artifact_3702"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_3703"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_3704"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3705"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3706"},{"setKey":"ThunderingFury","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_3707"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3708"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_3709"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_3710"},{"setKey":"RetracingBolide","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_3711"},{"setKey":"NoblesseOblige","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3712"},{"setKey":"NoblesseOblige","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Ningguang","lock":true,"id":"artifact_3713"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_3714"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_3715"},{"setKey":"LuckyDog","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3716"},{"setKey":"BloodstainedChivalry","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Aloy","lock":true,"id":"artifact_3717"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3718"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3719"},{"setKey":"Thundersoother","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_3720"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_3721"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_3722"},{"setKey":"ArchaicPetra","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3723"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3724"},{"setKey":"BlizzardStrayer","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3725"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_3726"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_3727"},{"setKey":"TheExile","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3728"},{"setKey":"PrayersForWisdom","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_3729"},{"setKey":"PrayersToSpringtime","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3730"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_3731"},{"setKey":"MarechausseeHunter","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_3732"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_3733"},{"setKey":"ViridescentVenerer","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_3734"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_3735"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"YunJin","lock":true,"id":"artifact_3736"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3737"},{"setKey":"BlizzardStrayer","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3738"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3739"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Gaming","lock":true,"id":"artifact_3740"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Gorou","lock":true,"id":"artifact_3741"},{"setKey":"Thundersoother","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_3742"},{"setKey":"PrayersForWisdom","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_3743"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_3744"},{"setKey":"HeartOfDepth","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_3745"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_3746"},{"setKey":"ThunderingFury","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_3747"},{"setKey":"TinyMiracle","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Amber","lock":true,"id":"artifact_3748"},{"setKey":"BloodstainedChivalry","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3749"},{"setKey":"TinyMiracle","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_3750"},{"setKey":"ViridescentVenerer","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_3751"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_3752"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3753"},{"setKey":"WanderersTroupe","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"YunJin","lock":true,"id":"artifact_3754"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Candace","lock":true,"id":"artifact_3755"},{"setKey":"Gambler","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_3756"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_3757"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3758"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_3759"},{"setKey":"Gambler","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Mona","lock":true,"id":"artifact_3760"},{"setKey":"MaidenBeloved","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_3761"},{"setKey":"Berserker","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_3762"},{"setKey":"DeepwoodMemories","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mona","lock":true,"id":"artifact_3763"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_3764"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_3765"},{"setKey":"SongOfDaysPast","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_3766"},{"setKey":"RetracingBolide","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_3767"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_3768"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3769"},{"setKey":"TravelingDoctor","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3770"},{"setKey":"ArchaicPetra","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_3771"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_3772"},{"setKey":"Thundersoother","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3773"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3774"},{"setKey":"RetracingBolide","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Traveler","lock":true,"id":"artifact_3775"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_3776"},{"setKey":"BloodstainedChivalry","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Collei","lock":true,"id":"artifact_3777"},{"setKey":"Scholar","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Cyno","lock":true,"id":"artifact_3778"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3779"},{"setKey":"GladiatorsFinale","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3780"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Cyno","lock":true,"id":"artifact_3781"},{"setKey":"PrayersForIllumination","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_3782"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3783"},{"setKey":"TheExile","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3784"},{"setKey":"BraveHeart","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_3785"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3786"},{"setKey":"ViridescentVenerer","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Nahida","lock":true,"id":"artifact_3787"},{"setKey":"Adventurer","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_3788"},{"setKey":"PrayersForWisdom","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_3789"},{"setKey":"BloodstainedChivalry","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3790"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_3791"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_3792"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"YunJin","lock":true,"id":"artifact_3793"},{"setKey":"Gambler","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Dori","lock":true,"id":"artifact_3794"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3795"},{"setKey":"ArchaicPetra","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3796"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Furina","lock":true,"id":"artifact_3797"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_3798"},{"setKey":"LuckyDog","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3799"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_3800"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3801"},{"setKey":"ViridescentVenerer","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_3802"},{"setKey":"DeepwoodMemories","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3803"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Amber","lock":true,"id":"artifact_3804"},{"setKey":"Adventurer","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_3805"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Beidou","lock":true,"id":"artifact_3806"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_3807"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_3808"},{"setKey":"Gambler","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_3809"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3810"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_3811"},{"setKey":"Instructor","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Aloy","lock":true,"id":"artifact_3812"},{"setKey":"DefendersWill","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3813"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Gaming","lock":true,"id":"artifact_3814"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_3815"},{"setKey":"PaleFlame","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_3816"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3817"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lyney","lock":true,"id":"artifact_3818"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3819"},{"setKey":"MaidenBeloved","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_3820"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3821"},{"setKey":"TheExile","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3822"},{"setKey":"OceanHuedClam","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_3823"},{"setKey":"PrayersForIllumination","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Klee","lock":true,"id":"artifact_3824"},{"setKey":"PrayersToSpringtime","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_3825"},{"setKey":"Adventurer","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Chiori","lock":true,"id":"artifact_3826"},{"setKey":"BlizzardStrayer","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_3827"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_3828"},{"setKey":"MaidenBeloved","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3829"},{"setKey":"WanderersTroupe","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_3830"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3831"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Jean","lock":true,"id":"artifact_3832"},{"setKey":"OceanHuedClam","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_3833"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3834"},{"setKey":"NoblesseOblige","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_3835"},{"setKey":"PrayersForIllumination","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3836"},{"setKey":"Scholar","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_3837"},{"setKey":"Scholar","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_3838"},{"setKey":"Gambler","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3839"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_3840"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_3841"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_3842"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_3843"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_3844"},{"setKey":"OceanHuedClam","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3845"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3846"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3847"},{"setKey":"MaidenBeloved","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_3848"},{"setKey":"RetracingBolide","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3849"},{"setKey":"TinyMiracle","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3850"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yelan","lock":true,"id":"artifact_3851"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_3852"},{"setKey":"Thundersoother","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_3853"},{"setKey":"TheExile","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_3854"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_3855"},{"setKey":"BlizzardStrayer","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_3856"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3857"},{"setKey":"PaleFlame","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_3858"},{"setKey":"Adventurer","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_3859"},{"setKey":"PrayersForIllumination","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_3860"},{"setKey":"BraveHeart","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_3861"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3862"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_3863"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_3864"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3865"},{"setKey":"NoblesseOblige","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_3866"},{"setKey":"VermillionHereafter","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_3867"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_3868"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_3869"},{"setKey":"GoldenTroupe","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3870"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_3871"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_3872"},{"setKey":"Berserker","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_3873"},{"setKey":"TheExile","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3874"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Nahida","lock":true,"id":"artifact_3875"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_3876"},{"setKey":"WanderersTroupe","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_3877"},{"setKey":"BlizzardStrayer","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3878"},{"setKey":"ThunderingFury","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3879"},{"setKey":"TinyMiracle","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_3880"},{"setKey":"Lavawalker","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3881"},{"setKey":"DefendersWill","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3882"},{"setKey":"PrayersForWisdom","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Keqing","lock":true,"id":"artifact_3883"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_3884"},{"setKey":"Berserker","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_3885"},{"setKey":"BlizzardStrayer","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_3886"},{"setKey":"PrayersForDestiny","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_3887"},{"setKey":"BloodstainedChivalry","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_3888"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Keqing","lock":true,"id":"artifact_3889"},{"setKey":"TinyMiracle","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_3890"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3891"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_3892"},{"setKey":"PrayersForWisdom","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_3893"},{"setKey":"MarechausseeHunter","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_3894"},{"setKey":"ThunderingFury","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_3895"},{"setKey":"Lavawalker","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_3896"},{"setKey":"Lavawalker","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3897"},{"setKey":"PrayersForDestiny","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_3898"},{"setKey":"GladiatorsFinale","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_3899"},{"setKey":"Instructor","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_3900"},{"setKey":"Thundersoother","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Thoma","lock":true,"id":"artifact_3901"},{"setKey":"PaleFlame","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_3902"},{"setKey":"PaleFlame","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_3903"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_3904"},{"setKey":"PaleFlame","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_3905"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_3906"},{"setKey":"Thundersoother","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_3907"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3908"},{"setKey":"GladiatorsFinale","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3909"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_3910"},{"setKey":"Scholar","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"YunJin","lock":true,"id":"artifact_3911"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3912"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3913"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_3914"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Klee","lock":true,"id":"artifact_3915"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_3916"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_3917"},{"setKey":"Gambler","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Collei","lock":true,"id":"artifact_3918"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_3919"},{"setKey":"Lavawalker","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_3920"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3921"},{"setKey":"ThunderingFury","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_3922"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_3923"},{"setKey":"Thundersoother","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_3924"},{"setKey":"DefendersWill","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_3925"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_3926"},{"setKey":"MartialArtist","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Collei","lock":true,"id":"artifact_3927"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_3928"},{"setKey":"NoblesseOblige","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_3929"},{"setKey":"Gambler","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_3930"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3931"},{"setKey":"Adventurer","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3932"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Albedo","lock":true,"id":"artifact_3933"},{"setKey":"Thundersoother","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_3934"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_3935"},{"setKey":"SongOfDaysPast","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_3936"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_3937"},{"setKey":"TravelingDoctor","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Beidou","lock":true,"id":"artifact_3938"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_3939"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3940"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_3941"},{"setKey":"TravelingDoctor","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Diluc","lock":true,"id":"artifact_3942"},{"setKey":"Scholar","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_3943"},{"setKey":"BloodstainedChivalry","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3944"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_3945"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_3946"},{"setKey":"MartialArtist","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_3947"},{"setKey":"VermillionHereafter","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_3948"},{"setKey":"PrayersToSpringtime","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Freminet","lock":true,"id":"artifact_3949"},{"setKey":"ThunderingFury","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Gaming","lock":true,"id":"artifact_3950"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_3951"},{"setKey":"NymphsDream","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_3952"},{"setKey":"Berserker","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_3953"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_3954"},{"setKey":"PaleFlame","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lyney","lock":true,"id":"artifact_3955"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Qiqi","lock":true,"id":"artifact_3956"},{"setKey":"DeepwoodMemories","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_3957"},{"setKey":"GladiatorsFinale","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Diona","lock":true,"id":"artifact_3958"},{"setKey":"BloodstainedChivalry","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_3959"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3960"},{"setKey":"PaleFlame","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3961"},{"setKey":"HeartOfDepth","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_3962"},{"setKey":"PrayersForWisdom","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_3963"},{"setKey":"MartialArtist","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_3964"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_3965"},{"setKey":"OceanHuedClam","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_3966"},{"setKey":"VermillionHereafter","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_3967"},{"setKey":"GladiatorsFinale","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_3968"},{"setKey":"GildedDreams","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_3969"},{"setKey":"GoldenTroupe","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_3970"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_3971"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_3972"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_3973"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_3974"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_3975"},{"setKey":"TravelingDoctor","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Gorou","lock":true,"id":"artifact_3976"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_3977"},{"setKey":"SongOfDaysPast","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_3978"},{"setKey":"Thundersoother","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_3979"},{"setKey":"PrayersToSpringtime","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_3980"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lyney","lock":true,"id":"artifact_3981"},{"setKey":"DefendersWill","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Fischl","lock":true,"id":"artifact_3982"},{"setKey":"Berserker","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_3983"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_3984"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_3985"},{"setKey":"DefendersWill","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yelan","lock":true,"id":"artifact_3986"},{"setKey":"Scholar","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_3987"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_3988"},{"setKey":"ThunderingFury","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_3989"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_3990"},{"setKey":"Instructor","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_3991"},{"setKey":"Thundersoother","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Kirara","lock":true,"id":"artifact_3992"},{"setKey":"Lavawalker","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_3993"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Gaming","lock":true,"id":"artifact_3994"},{"setKey":"WanderersTroupe","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_3995"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_3996"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_3997"},{"setKey":"ThunderingFury","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_3998"},{"setKey":"Berserker","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_3999"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_4000"},{"setKey":"GoldenTroupe","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Nilou","lock":true,"id":"artifact_4001"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_4002"},{"setKey":"ArchaicPetra","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_4003"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_4004"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4005"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_4006"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Klee","lock":true,"id":"artifact_4007"},{"setKey":"MarechausseeHunter","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Chiori","lock":true,"id":"artifact_4008"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4009"},{"setKey":"BlizzardStrayer","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_4010"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4011"},{"setKey":"OceanHuedClam","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Freminet","lock":true,"id":"artifact_4012"},{"setKey":"Berserker","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4013"},{"setKey":"DeepwoodMemories","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4014"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_4015"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Bennett","lock":true,"id":"artifact_4016"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4017"},{"setKey":"HeartOfDepth","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Nahida","lock":true,"id":"artifact_4018"},{"setKey":"DeepwoodMemories","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_4019"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_4020"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4021"},{"setKey":"DefendersWill","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_4022"},{"setKey":"PrayersForDestiny","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_4023"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lisa","lock":true,"id":"artifact_4024"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_4025"},{"setKey":"VermillionHereafter","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4026"},{"setKey":"LuckyDog","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xiao","lock":true,"id":"artifact_4027"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_4028"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lisa","lock":true,"id":"artifact_4029"},{"setKey":"ThunderingFury","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4030"},{"setKey":"TheExile","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4031"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_4032"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_4033"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_4034"},{"setKey":"BloodstainedChivalry","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4035"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_4036"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_4037"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_4038"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_4039"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4040"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4041"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_4042"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_4043"},{"setKey":"MaidenBeloved","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4044"},{"setKey":"TheExile","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Gorou","lock":true,"id":"artifact_4045"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_4046"},{"setKey":"GildedDreams","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Candace","lock":true,"id":"artifact_4047"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Lynette","lock":true,"id":"artifact_4048"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4049"},{"setKey":"Instructor","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_4050"},{"setKey":"ThunderingFury","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_4051"},{"setKey":"RetracingBolide","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_4052"},{"setKey":"MarechausseeHunter","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_4053"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_4054"},{"setKey":"VourukashasGlow","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_4055"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Sayu","lock":true,"id":"artifact_4056"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Cyno","lock":true,"id":"artifact_4057"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_4058"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Collei","lock":true,"id":"artifact_4059"},{"setKey":"ThunderingFury","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4060"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_4061"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_4062"},{"setKey":"LuckyDog","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_4063"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4064"},{"setKey":"PrayersForDestiny","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4065"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_4066"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gorou","lock":true,"id":"artifact_4067"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4068"},{"setKey":"RetracingBolide","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4069"},{"setKey":"Instructor","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_4070"},{"setKey":"TinyMiracle","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_4071"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_4072"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Amber","lock":true,"id":"artifact_4073"},{"setKey":"RetracingBolide","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_4074"},{"setKey":"NymphsDream","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4075"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_4076"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_4077"},{"setKey":"OceanHuedClam","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Barbara","lock":true,"id":"artifact_4078"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4079"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_4080"},{"setKey":"TheExile","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_4081"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_4082"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4083"},{"setKey":"GoldenTroupe","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Venti","lock":true,"id":"artifact_4084"},{"setKey":"PaleFlame","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Dehya","lock":true,"id":"artifact_4085"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4086"},{"setKey":"PaleFlame","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_4087"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kirara","lock":true,"id":"artifact_4088"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Albedo","lock":true,"id":"artifact_4089"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4090"},{"setKey":"NoblesseOblige","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_4091"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4092"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_4093"},{"setKey":"WanderersTroupe","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_4094"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4095"},{"setKey":"RetracingBolide","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Cyno","lock":true,"id":"artifact_4096"},{"setKey":"MaidenBeloved","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4097"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_4098"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_4099"},{"setKey":"ThunderingFury","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4100"},{"setKey":"ArchaicPetra","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Candace","lock":true,"id":"artifact_4101"},{"setKey":"TravelingDoctor","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4102"},{"setKey":"ThunderingFury","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_4103"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_4104"},{"setKey":"MartialArtist","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_4105"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_4106"},{"setKey":"GladiatorsFinale","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_4107"},{"setKey":"TheExile","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_4108"},{"setKey":"Instructor","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Gaming","lock":true,"id":"artifact_4109"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_4110"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Traveler","lock":true,"id":"artifact_4111"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_4112"},{"setKey":"TheExile","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4113"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4114"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_4115"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4116"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nilou","lock":true,"id":"artifact_4117"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_4118"},{"setKey":"MaidenBeloved","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4119"},{"setKey":"PrayersToSpringtime","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_4120"},{"setKey":"BloodstainedChivalry","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4121"},{"setKey":"Berserker","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_4122"},{"setKey":"PrayersForIllumination","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4123"},{"setKey":"DeepwoodMemories","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_4124"},{"setKey":"VermillionHereafter","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_4125"},{"setKey":"Instructor","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Layla","lock":true,"id":"artifact_4126"},{"setKey":"TravelingDoctor","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4127"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_4128"},{"setKey":"TinyMiracle","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4129"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Nilou","lock":true,"id":"artifact_4130"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_4131"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Dori","lock":true,"id":"artifact_4132"},{"setKey":"PrayersToSpringtime","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Gorou","lock":true,"id":"artifact_4133"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_4134"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Layla","lock":true,"id":"artifact_4135"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4136"},{"setKey":"Adventurer","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_4137"},{"setKey":"PaleFlame","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_4138"},{"setKey":"Adventurer","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_4139"},{"setKey":"PrayersForDestiny","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4140"},{"setKey":"LuckyDog","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_4141"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_4142"},{"setKey":"Gambler","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_4143"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_4144"},{"setKey":"Berserker","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_4145"},{"setKey":"PrayersForIllumination","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_4146"},{"setKey":"LuckyDog","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_4147"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4148"},{"setKey":"OceanHuedClam","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4149"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_4150"},{"setKey":"Adventurer","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Jean","lock":true,"id":"artifact_4151"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_4152"},{"setKey":"ThunderingFury","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_4153"},{"setKey":"GladiatorsFinale","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_4154"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_4155"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4156"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_4157"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Layla","lock":true,"id":"artifact_4158"},{"setKey":"LuckyDog","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4159"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Jean","lock":true,"id":"artifact_4160"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Layla","lock":true,"id":"artifact_4161"},{"setKey":"OceanHuedClam","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_4162"},{"setKey":"PrayersForIllumination","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4163"},{"setKey":"GoldenTroupe","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"YunJin","lock":true,"id":"artifact_4164"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4165"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4166"},{"setKey":"PrayersForDestiny","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4167"},{"setKey":"MaidenBeloved","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_4168"},{"setKey":"RetracingBolide","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_4169"},{"setKey":"RetracingBolide","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_4170"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_4171"},{"setKey":"DeepwoodMemories","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_4172"},{"setKey":"MartialArtist","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_4173"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_4174"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_4175"},{"setKey":"NoblesseOblige","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_4176"},{"setKey":"GladiatorsFinale","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4177"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Noelle","lock":true,"id":"artifact_4178"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_4179"},{"setKey":"ViridescentVenerer","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_4180"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_4181"},{"setKey":"PrayersForDestiny","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_4182"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_4183"},{"setKey":"RetracingBolide","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_4184"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4185"},{"setKey":"LuckyDog","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_4186"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_4187"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_4188"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_4189"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_4190"},{"setKey":"VourukashasGlow","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4191"},{"setKey":"PrayersForDestiny","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_4192"},{"setKey":"Lavawalker","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Chiori","lock":true,"id":"artifact_4193"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Dori","lock":true,"id":"artifact_4194"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_4195"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Bennett","lock":true,"id":"artifact_4196"},{"setKey":"DefendersWill","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Razor","lock":true,"id":"artifact_4197"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_4198"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_4199"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_4200"},{"setKey":"NoblesseOblige","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Venti","lock":true,"id":"artifact_4201"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Venti","lock":true,"id":"artifact_4202"},{"setKey":"VourukashasGlow","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_4203"},{"setKey":"ViridescentVenerer","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_4204"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4205"},{"setKey":"Adventurer","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_4206"},{"setKey":"MaidenBeloved","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"HuTao","lock":true,"id":"artifact_4207"},{"setKey":"BloodstainedChivalry","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Razor","lock":true,"id":"artifact_4208"},{"setKey":"MarechausseeHunter","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4209"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4210"},{"setKey":"ThunderingFury","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Lyney","lock":true,"id":"artifact_4211"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chiori","lock":true,"id":"artifact_4212"},{"setKey":"Lavawalker","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4213"},{"setKey":"WanderersTroupe","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Cyno","lock":true,"id":"artifact_4214"},{"setKey":"HeartOfDepth","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_4215"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4216"},{"setKey":"PrayersToSpringtime","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4217"},{"setKey":"ArchaicPetra","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_4218"},{"setKey":"PrayersToSpringtime","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_4219"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4220"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4221"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_4222"},{"setKey":"BraveHeart","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4223"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Fischl","lock":true,"id":"artifact_4224"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4225"},{"setKey":"PaleFlame","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_4226"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_4227"},{"setKey":"PaleFlame","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_4228"},{"setKey":"TinyMiracle","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4229"},{"setKey":"TheExile","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4230"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_4231"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_4232"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_4233"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_4234"},{"setKey":"DeepwoodMemories","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_4235"},{"setKey":"PrayersForIllumination","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_4236"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_4237"},{"setKey":"MaidenBeloved","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4238"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_4239"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_4240"},{"setKey":"Adventurer","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_4241"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4242"},{"setKey":"Lavawalker","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4243"},{"setKey":"Thundersoother","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4244"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Chiori","lock":true,"id":"artifact_4245"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"YunJin","lock":true,"id":"artifact_4246"},{"setKey":"HeartOfDepth","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kaveh","lock":true,"id":"artifact_4247"},{"setKey":"PrayersForDestiny","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4248"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_4249"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_4250"},{"setKey":"GoldenTroupe","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_4251"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4252"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_4253"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_4254"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_4255"},{"setKey":"VourukashasGlow","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_4256"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_4257"},{"setKey":"HeartOfDepth","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_4258"},{"setKey":"LuckyDog","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_4259"},{"setKey":"PrayersForWisdom","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4260"},{"setKey":"GildedDreams","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_4261"},{"setKey":"TravelingDoctor","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_4262"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4263"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4264"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_4265"},{"setKey":"MarechausseeHunter","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4266"},{"setKey":"BraveHeart","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Jean","lock":true,"id":"artifact_4267"},{"setKey":"GladiatorsFinale","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4268"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_4269"},{"setKey":"SongOfDaysPast","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_4270"},{"setKey":"Thundersoother","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lynette","lock":true,"id":"artifact_4271"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_4272"},{"setKey":"LuckyDog","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Klee","lock":true,"id":"artifact_4273"},{"setKey":"GildedDreams","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4274"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_4275"},{"setKey":"MaidenBeloved","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4276"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_4277"},{"setKey":"TravelingDoctor","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_4278"},{"setKey":"Berserker","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_4279"},{"setKey":"ViridescentVenerer","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Jean","lock":true,"id":"artifact_4280"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Dehya","lock":true,"id":"artifact_4281"},{"setKey":"TheExile","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Nahida","lock":true,"id":"artifact_4282"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4283"},{"setKey":"VourukashasGlow","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Fischl","lock":true,"id":"artifact_4284"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Jean","lock":true,"id":"artifact_4285"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4286"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_4287"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_4288"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4289"},{"setKey":"Scholar","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_4290"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Fischl","lock":true,"id":"artifact_4291"},{"setKey":"PrayersForIllumination","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_4292"},{"setKey":"SongOfDaysPast","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_4293"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Barbara","lock":true,"id":"artifact_4294"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4295"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lyney","lock":true,"id":"artifact_4296"},{"setKey":"Gambler","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_4297"},{"setKey":"VermillionHereafter","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4298"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_4299"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4300"},{"setKey":"PrayersForIllumination","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_4301"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_4302"},{"setKey":"VourukashasGlow","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_4303"},{"setKey":"RetracingBolide","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4304"},{"setKey":"Scholar","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_4305"},{"setKey":"Lavawalker","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_4306"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4307"},{"setKey":"Adventurer","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4308"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4309"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_4310"},{"setKey":"BloodstainedChivalry","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Layla","lock":true,"id":"artifact_4311"},{"setKey":"ViridescentVenerer","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Albedo","lock":true,"id":"artifact_4312"},{"setKey":"ThunderingFury","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_4313"},{"setKey":"HeartOfDepth","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_4314"},{"setKey":"WanderersTroupe","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chiori","lock":true,"id":"artifact_4315"},{"setKey":"PrayersForWisdom","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4316"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4317"},{"setKey":"TinyMiracle","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_4318"},{"setKey":"TinyMiracle","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4319"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4320"},{"setKey":"Instructor","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4321"},{"setKey":"TinyMiracle","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Keqing","lock":true,"id":"artifact_4322"},{"setKey":"OceanHuedClam","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_4323"},{"setKey":"GladiatorsFinale","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4324"},{"setKey":"ThunderingFury","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_4325"},{"setKey":"Lavawalker","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4326"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_4327"},{"setKey":"TheExile","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_4328"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_4329"},{"setKey":"TheExile","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_4330"},{"setKey":"HeartOfDepth","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4331"},{"setKey":"SongOfDaysPast","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4332"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_4333"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Traveler","lock":true,"id":"artifact_4334"},{"setKey":"GildedDreams","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_4335"},{"setKey":"TravelingDoctor","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4336"},{"setKey":"TheExile","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_4337"},{"setKey":"Instructor","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Gaming","lock":true,"id":"artifact_4338"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4339"},{"setKey":"Instructor","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_4340"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_4341"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_4342"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_4343"},{"setKey":"LuckyDog","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_4344"},{"setKey":"TravelingDoctor","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_4345"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_4346"},{"setKey":"BraveHeart","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Fischl","lock":true,"id":"artifact_4347"},{"setKey":"ThunderingFury","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_4348"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Albedo","lock":true,"id":"artifact_4349"},{"setKey":"ThunderingFury","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Chiori","lock":true,"id":"artifact_4350"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_4351"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_4352"},{"setKey":"Scholar","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_4353"},{"setKey":"ArchaicPetra","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4354"},{"setKey":"DeepwoodMemories","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Gorou","lock":true,"id":"artifact_4355"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_4356"},{"setKey":"LuckyDog","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_4357"},{"setKey":"TravelingDoctor","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_4358"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4359"},{"setKey":"ViridescentVenerer","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4360"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_4361"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_4362"},{"setKey":"MartialArtist","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4363"},{"setKey":"Adventurer","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4364"},{"setKey":"GildedDreams","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_4365"},{"setKey":"GladiatorsFinale","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Diluc","lock":true,"id":"artifact_4366"},{"setKey":"Lavawalker","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_4367"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_4368"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_4369"},{"setKey":"RetracingBolide","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_4370"},{"setKey":"GladiatorsFinale","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4371"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_4372"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_4373"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_4374"},{"setKey":"VourukashasGlow","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_4375"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_4376"},{"setKey":"PaleFlame","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_4377"},{"setKey":"VourukashasGlow","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xiao","lock":true,"id":"artifact_4378"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_4379"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_4380"},{"setKey":"Adventurer","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_4381"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_4382"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Xiao","lock":true,"id":"artifact_4383"},{"setKey":"PrayersToSpringtime","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4384"},{"setKey":"BlizzardStrayer","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_4385"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"HuTao","lock":true,"id":"artifact_4386"},{"setKey":"VourukashasGlow","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_4387"},{"setKey":"GoldenTroupe","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_4388"},{"setKey":"OceanHuedClam","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_4389"},{"setKey":"PrayersForWisdom","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Xiao","lock":true,"id":"artifact_4390"},{"setKey":"DeepwoodMemories","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_4391"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_4392"},{"setKey":"GildedDreams","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Lisa","lock":true,"id":"artifact_4393"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_4394"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_4395"},{"setKey":"PaleFlame","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_4396"},{"setKey":"MartialArtist","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_4397"},{"setKey":"MartialArtist","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Keqing","lock":true,"id":"artifact_4398"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4399"},{"setKey":"TinyMiracle","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4400"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_4401"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_4402"},{"setKey":"NymphsDream","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_4403"},{"setKey":"DeepwoodMemories","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4404"},{"setKey":"SongOfDaysPast","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4405"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4406"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_4407"},{"setKey":"Berserker","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_4408"},{"setKey":"VourukashasGlow","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_4409"},{"setKey":"Gambler","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Aloy","lock":true,"id":"artifact_4410"},{"setKey":"NymphsDream","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_4411"},{"setKey":"MartialArtist","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4412"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_4413"},{"setKey":"Lavawalker","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4414"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Noelle","lock":true,"id":"artifact_4415"},{"setKey":"Lavawalker","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kirara","lock":true,"id":"artifact_4416"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_4417"},{"setKey":"DeepwoodMemories","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4418"},{"setKey":"BloodstainedChivalry","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_4419"},{"setKey":"Instructor","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_4420"},{"setKey":"MartialArtist","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_4421"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4422"},{"setKey":"TheExile","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4423"},{"setKey":"PrayersForDestiny","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4424"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Razor","lock":true,"id":"artifact_4425"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_4426"},{"setKey":"DeepwoodMemories","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Freminet","lock":true,"id":"artifact_4427"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4428"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4429"},{"setKey":"Instructor","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4430"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4431"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xiao","lock":true,"id":"artifact_4432"},{"setKey":"DefendersWill","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Keqing","lock":true,"id":"artifact_4433"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Aloy","lock":true,"id":"artifact_4434"},{"setKey":"SongOfDaysPast","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Lynette","lock":true,"id":"artifact_4435"},{"setKey":"BlizzardStrayer","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_4436"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_4437"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4438"},{"setKey":"Lavawalker","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_4439"},{"setKey":"Instructor","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_4440"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Noelle","lock":true,"id":"artifact_4441"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Kirara","lock":true,"id":"artifact_4442"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Furina","lock":true,"id":"artifact_4443"},{"setKey":"Adventurer","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Barbara","lock":true,"id":"artifact_4444"},{"setKey":"VourukashasGlow","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Traveler","lock":true,"id":"artifact_4445"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_4446"},{"setKey":"Gambler","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_4447"},{"setKey":"SongOfDaysPast","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Gorou","lock":true,"id":"artifact_4448"},{"setKey":"BraveHeart","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4449"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_4450"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_4451"},{"setKey":"PaleFlame","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_4452"},{"setKey":"ViridescentVenerer","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_4453"},{"setKey":"TinyMiracle","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4454"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_4455"},{"setKey":"MartialArtist","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_4456"},{"setKey":"PrayersForIllumination","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Sayu","lock":true,"id":"artifact_4457"},{"setKey":"Scholar","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_4458"},{"setKey":"LuckyDog","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kaveh","lock":true,"id":"artifact_4459"},{"setKey":"OceanHuedClam","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Freminet","lock":true,"id":"artifact_4460"},{"setKey":"NymphsDream","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_4461"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4462"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_4463"},{"setKey":"TravelingDoctor","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_4464"},{"setKey":"ThunderingFury","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_4465"},{"setKey":"Lavawalker","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_4466"},{"setKey":"RetracingBolide","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Noelle","lock":true,"id":"artifact_4467"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4468"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_4469"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lyney","lock":true,"id":"artifact_4470"},{"setKey":"BloodstainedChivalry","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yelan","lock":true,"id":"artifact_4471"},{"setKey":"SongOfDaysPast","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_4472"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_4473"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4474"},{"setKey":"GildedDreams","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4475"},{"setKey":"DefendersWill","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Aloy","lock":true,"id":"artifact_4476"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_4477"},{"setKey":"PaleFlame","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_4478"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4479"},{"setKey":"Scholar","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_4480"},{"setKey":"MaidenBeloved","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4481"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"YunJin","lock":true,"id":"artifact_4482"},{"setKey":"ArchaicPetra","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4483"},{"setKey":"TinyMiracle","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Venti","lock":true,"id":"artifact_4484"},{"setKey":"Gambler","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_4485"},{"setKey":"NymphsDream","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_4486"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_4487"},{"setKey":"HeartOfDepth","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_4488"},{"setKey":"Gambler","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4489"},{"setKey":"TinyMiracle","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Klee","lock":true,"id":"artifact_4490"},{"setKey":"OceanHuedClam","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4491"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_4492"},{"setKey":"PaleFlame","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_4493"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4494"},{"setKey":"WanderersTroupe","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_4495"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4496"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4497"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_4498"},{"setKey":"MaidenBeloved","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_4499"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_4500"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_4501"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_4502"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_4503"},{"setKey":"NymphsDream","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_4504"},{"setKey":"ViridescentVenerer","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4505"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_4506"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_4507"},{"setKey":"DeepwoodMemories","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4508"},{"setKey":"TinyMiracle","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4509"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_4510"},{"setKey":"MarechausseeHunter","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_4511"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4512"},{"setKey":"MartialArtist","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_4513"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_4514"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_4515"},{"setKey":"ArchaicPetra","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_4516"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4517"},{"setKey":"DeepwoodMemories","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4518"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4519"},{"setKey":"NymphsDream","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_4520"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_4521"},{"setKey":"PrayersToSpringtime","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_4522"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4523"},{"setKey":"LuckyDog","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4524"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4525"},{"setKey":"VermillionHereafter","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_4526"},{"setKey":"BloodstainedChivalry","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_4527"},{"setKey":"BloodstainedChivalry","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4528"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_4529"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_4530"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_4531"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_4532"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_4533"},{"setKey":"DefendersWill","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4534"},{"setKey":"BloodstainedChivalry","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_4535"},{"setKey":"GladiatorsFinale","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Freminet","lock":true,"id":"artifact_4536"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_4537"},{"setKey":"BraveHeart","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_4538"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4539"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Collei","lock":true,"id":"artifact_4540"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_4541"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Razor","lock":true,"id":"artifact_4542"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Collei","lock":true,"id":"artifact_4543"},{"setKey":"PrayersForIllumination","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_4544"},{"setKey":"BloodstainedChivalry","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Mona","lock":true,"id":"artifact_4545"},{"setKey":"ThunderingFury","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_4546"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_4547"},{"setKey":"Adventurer","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_4548"},{"setKey":"PrayersForDestiny","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_4549"},{"setKey":"PrayersForWisdom","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Venti","lock":true,"id":"artifact_4550"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Keqing","lock":true,"id":"artifact_4551"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_4552"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4553"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Dori","lock":true,"id":"artifact_4554"},{"setKey":"BraveHeart","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_4555"},{"setKey":"MaidenBeloved","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_4556"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4557"},{"setKey":"RetracingBolide","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4558"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4559"},{"setKey":"RetracingBolide","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_4560"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_4561"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_4562"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Nilou","lock":true,"id":"artifact_4563"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_4564"},{"setKey":"WanderersTroupe","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_4565"},{"setKey":"Instructor","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4566"},{"setKey":"OceanHuedClam","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4567"},{"setKey":"GildedDreams","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Beidou","lock":true,"id":"artifact_4568"},{"setKey":"WanderersTroupe","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Nahida","lock":true,"id":"artifact_4569"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Layla","lock":true,"id":"artifact_4570"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_4571"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_4572"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_4573"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Mona","lock":true,"id":"artifact_4574"},{"setKey":"Instructor","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4575"},{"setKey":"BlizzardStrayer","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4576"},{"setKey":"Berserker","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_4577"},{"setKey":"Gambler","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4578"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4579"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Beidou","lock":true,"id":"artifact_4580"},{"setKey":"LuckyDog","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_4581"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_4582"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_4583"},{"setKey":"TinyMiracle","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_4584"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_4585"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Jean","lock":true,"id":"artifact_4586"},{"setKey":"DefendersWill","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_4587"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4588"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_4589"},{"setKey":"LuckyDog","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4590"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4591"},{"setKey":"BloodstainedChivalry","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_4592"},{"setKey":"TinyMiracle","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Venti","lock":true,"id":"artifact_4593"},{"setKey":"PrayersForDestiny","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Dori","lock":true,"id":"artifact_4594"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_4595"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_4596"},{"setKey":"PrayersToSpringtime","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Layla","lock":true,"id":"artifact_4597"},{"setKey":"Adventurer","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_4598"},{"setKey":"Berserker","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_4599"},{"setKey":"GladiatorsFinale","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4600"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_4601"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_4602"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_4603"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_4604"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_4605"},{"setKey":"TravelingDoctor","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4606"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_4607"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Gaming","lock":true,"id":"artifact_4608"},{"setKey":"GildedDreams","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Diona","lock":true,"id":"artifact_4609"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Bennett","lock":true,"id":"artifact_4610"},{"setKey":"SongOfDaysPast","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Albedo","lock":true,"id":"artifact_4611"},{"setKey":"TinyMiracle","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4612"},{"setKey":"PrayersForWisdom","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4613"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kirara","lock":true,"id":"artifact_4614"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_4615"},{"setKey":"ThunderingFury","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_4616"},{"setKey":"GoldenTroupe","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4617"},{"setKey":"Thundersoother","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_4618"},{"setKey":"RetracingBolide","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_4619"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_4620"},{"setKey":"Gambler","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_4621"},{"setKey":"BlizzardStrayer","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Beidou","lock":true,"id":"artifact_4622"},{"setKey":"VourukashasGlow","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chiori","lock":true,"id":"artifact_4623"},{"setKey":"WanderersTroupe","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Lisa","lock":true,"id":"artifact_4624"},{"setKey":"PaleFlame","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4625"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_4626"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_4627"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Gaming","lock":true,"id":"artifact_4628"},{"setKey":"TravelingDoctor","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_4629"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_4630"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Dori","lock":true,"id":"artifact_4631"},{"setKey":"RetracingBolide","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Diona","lock":true,"id":"artifact_4632"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_4633"},{"setKey":"VourukashasGlow","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_4634"},{"setKey":"PrayersForDestiny","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"YunJin","lock":true,"id":"artifact_4635"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_4636"},{"setKey":"DeepwoodMemories","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_4637"},{"setKey":"ThunderingFury","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_4638"},{"setKey":"Gambler","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kaveh","lock":true,"id":"artifact_4639"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_4640"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nilou","lock":true,"id":"artifact_4641"},{"setKey":"BloodstainedChivalry","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"YunJin","lock":true,"id":"artifact_4642"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4643"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_4644"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_4645"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_4646"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_4647"},{"setKey":"NoblesseOblige","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_4648"},{"setKey":"GildedDreams","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4649"},{"setKey":"Berserker","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_4650"},{"setKey":"ViridescentVenerer","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_4651"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Bennett","lock":true,"id":"artifact_4652"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4653"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_4654"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Mika","lock":true,"id":"artifact_4655"},{"setKey":"PrayersToSpringtime","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4656"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_4657"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4658"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Sayu","lock":true,"id":"artifact_4659"},{"setKey":"NoblesseOblige","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Dori","lock":true,"id":"artifact_4660"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4661"},{"setKey":"Adventurer","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Mika","lock":true,"id":"artifact_4662"},{"setKey":"TinyMiracle","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Venti","lock":true,"id":"artifact_4663"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_4664"},{"setKey":"PaleFlame","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_4665"},{"setKey":"LuckyDog","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4666"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_4667"},{"setKey":"BlizzardStrayer","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_4668"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_4669"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Nahida","lock":true,"id":"artifact_4670"},{"setKey":"ArchaicPetra","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chiori","lock":true,"id":"artifact_4671"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4672"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_4673"},{"setKey":"LuckyDog","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4674"},{"setKey":"GladiatorsFinale","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Beidou","lock":true,"id":"artifact_4675"},{"setKey":"MartialArtist","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4676"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_4677"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_4678"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Mika","lock":true,"id":"artifact_4679"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_4680"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_4681"},{"setKey":"LuckyDog","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_4682"},{"setKey":"Instructor","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_4683"},{"setKey":"RetracingBolide","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4684"},{"setKey":"VermillionHereafter","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Aloy","lock":true,"id":"artifact_4685"},{"setKey":"ArchaicPetra","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_4686"},{"setKey":"PrayersToSpringtime","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4687"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_4688"},{"setKey":"PaleFlame","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_4689"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Beidou","lock":true,"id":"artifact_4690"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_4691"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"YunJin","lock":true,"id":"artifact_4692"},{"setKey":"PaleFlame","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_4693"},{"setKey":"Thundersoother","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Venti","lock":true,"id":"artifact_4694"},{"setKey":"RetracingBolide","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Dori","lock":true,"id":"artifact_4695"},{"setKey":"GoldenTroupe","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"HuTao","lock":true,"id":"artifact_4696"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_4697"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4698"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Beidou","lock":true,"id":"artifact_4699"},{"setKey":"ArchaicPetra","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_4700"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Barbara","lock":true,"id":"artifact_4701"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Albedo","lock":true,"id":"artifact_4702"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_4703"},{"setKey":"BloodstainedChivalry","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_4704"},{"setKey":"ThunderingFury","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_4705"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kirara","lock":true,"id":"artifact_4706"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_4707"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_4708"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_4709"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4710"},{"setKey":"VourukashasGlow","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Klee","lock":true,"id":"artifact_4711"},{"setKey":"MaidenBeloved","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_4712"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_4713"},{"setKey":"VermillionHereafter","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_4714"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_4715"},{"setKey":"TravelingDoctor","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_4716"},{"setKey":"ThunderingFury","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_4717"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4718"},{"setKey":"PrayersForDestiny","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4719"},{"setKey":"SongOfDaysPast","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4720"},{"setKey":"Lavawalker","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_4721"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Amber","lock":true,"id":"artifact_4722"},{"setKey":"Instructor","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_4723"},{"setKey":"ThunderingFury","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4724"},{"setKey":"GildedDreams","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_4725"},{"setKey":"GildedDreams","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_4726"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_4727"},{"setKey":"PrayersForWisdom","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4728"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_4729"},{"setKey":"PrayersForWisdom","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_4730"},{"setKey":"BraveHeart","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_4731"},{"setKey":"Thundersoother","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_4732"},{"setKey":"MarechausseeHunter","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4733"},{"setKey":"BlizzardStrayer","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4734"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4735"},{"setKey":"MaidenBeloved","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Razor","lock":true,"id":"artifact_4736"},{"setKey":"NymphsDream","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_4737"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Thoma","lock":true,"id":"artifact_4738"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Candace","lock":true,"id":"artifact_4739"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_4740"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_4741"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_4742"},{"setKey":"MartialArtist","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_4743"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_4744"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_4745"},{"setKey":"VourukashasGlow","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_4746"},{"setKey":"HeartOfDepth","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_4747"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4748"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_4749"},{"setKey":"Lavawalker","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_4750"},{"setKey":"GoldenTroupe","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_4751"},{"setKey":"Thundersoother","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4752"},{"setKey":"PrayersForWisdom","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_4753"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4754"},{"setKey":"ViridescentVenerer","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4755"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4756"},{"setKey":"Gambler","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_4757"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_4758"},{"setKey":"Adventurer","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Beidou","lock":true,"id":"artifact_4759"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_4760"},{"setKey":"PrayersForWisdom","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_4761"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_4762"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_4763"},{"setKey":"Scholar","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_4764"},{"setKey":"PaleFlame","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_4765"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_4766"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xiao","lock":true,"id":"artifact_4767"},{"setKey":"DeepwoodMemories","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Gaming","lock":true,"id":"artifact_4768"},{"setKey":"BloodstainedChivalry","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4769"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4770"},{"setKey":"LuckyDog","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4771"},{"setKey":"NymphsDream","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_4772"},{"setKey":"Berserker","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_4773"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4774"},{"setKey":"DeepwoodMemories","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_4775"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_4776"},{"setKey":"BraveHeart","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KujouSara","lock":true,"id":"artifact_4777"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4778"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Bennett","lock":true,"id":"artifact_4779"},{"setKey":"ViridescentVenerer","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4780"},{"setKey":"ThunderingFury","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_4781"},{"setKey":"BraveHeart","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_4782"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_4783"},{"setKey":"PaleFlame","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_4784"},{"setKey":"Lavawalker","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_4785"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_4786"},{"setKey":"GoldenTroupe","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_4787"},{"setKey":"Adventurer","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_4788"},{"setKey":"GildedDreams","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_4789"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Yelan","lock":true,"id":"artifact_4790"},{"setKey":"BloodstainedChivalry","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_4791"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_4792"},{"setKey":"TravelingDoctor","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_4793"},{"setKey":"SongOfDaysPast","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_4794"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_4795"},{"setKey":"PrayersToSpringtime","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4796"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4797"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4798"},{"setKey":"DeepwoodMemories","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_4799"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Chiori","lock":true,"id":"artifact_4800"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4801"},{"setKey":"BloodstainedChivalry","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4802"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Beidou","lock":true,"id":"artifact_4803"},{"setKey":"BlizzardStrayer","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4804"},{"setKey":"MartialArtist","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_4805"},{"setKey":"VourukashasGlow","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Furina","lock":true,"id":"artifact_4806"},{"setKey":"BlizzardStrayer","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Nahida","lock":true,"id":"artifact_4807"},{"setKey":"Lavawalker","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Eula","lock":true,"id":"artifact_4808"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_4809"},{"setKey":"BloodstainedChivalry","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_4810"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_4811"},{"setKey":"PrayersForDestiny","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_4812"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Diluc","lock":true,"id":"artifact_4813"},{"setKey":"MarechausseeHunter","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_4814"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_4815"},{"setKey":"BlizzardStrayer","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Keqing","lock":true,"id":"artifact_4816"},{"setKey":"Scholar","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_4817"},{"setKey":"Gambler","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4818"},{"setKey":"PaleFlame","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_4819"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_4820"},{"setKey":"BloodstainedChivalry","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_4821"},{"setKey":"VourukashasGlow","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_4822"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4823"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_4824"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_4825"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_4826"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_4827"},{"setKey":"MaidenBeloved","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4828"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4829"},{"setKey":"BloodstainedChivalry","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_4830"},{"setKey":"GildedDreams","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"YunJin","lock":true,"id":"artifact_4831"},{"setKey":"BloodstainedChivalry","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4832"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4833"},{"setKey":"Gambler","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_4834"},{"setKey":"ArchaicPetra","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_4835"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_4836"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Dehya","lock":true,"id":"artifact_4837"},{"setKey":"PrayersForWisdom","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4838"},{"setKey":"Scholar","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4839"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4840"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4841"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4842"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4843"},{"setKey":"BlizzardStrayer","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_4844"},{"setKey":"VermillionHereafter","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lisa","lock":true,"id":"artifact_4845"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4846"},{"setKey":"NoblesseOblige","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Razor","lock":true,"id":"artifact_4847"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_4848"},{"setKey":"ThunderingFury","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_4849"},{"setKey":"BlizzardStrayer","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_4850"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_4851"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Bennett","lock":true,"id":"artifact_4852"},{"setKey":"RetracingBolide","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Diona","lock":true,"id":"artifact_4853"},{"setKey":"GoldenTroupe","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_4854"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xiangling","lock":true,"id":"artifact_4855"},{"setKey":"RetracingBolide","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Noelle","lock":true,"id":"artifact_4856"},{"setKey":"GoldenTroupe","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Beidou","lock":true,"id":"artifact_4857"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_4858"},{"setKey":"GildedDreams","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_4859"},{"setKey":"GildedDreams","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_4860"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Candace","lock":true,"id":"artifact_4861"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_4862"},{"setKey":"Instructor","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Cyno","lock":true,"id":"artifact_4863"},{"setKey":"ViridescentVenerer","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_4864"},{"setKey":"PrayersToSpringtime","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lyney","lock":true,"id":"artifact_4865"},{"setKey":"DefendersWill","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4866"},{"setKey":"MartialArtist","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_4867"},{"setKey":"TravelingDoctor","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4868"},{"setKey":"PrayersForIllumination","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_4869"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4870"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Freminet","lock":true,"id":"artifact_4871"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_4872"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4873"},{"setKey":"PrayersForDestiny","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4874"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_4875"},{"setKey":"PrayersToSpringtime","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_4876"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4877"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4878"},{"setKey":"LuckyDog","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_4879"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_4880"},{"setKey":"OceanHuedClam","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4881"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4882"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_4883"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_4884"},{"setKey":"ArchaicPetra","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Jean","lock":true,"id":"artifact_4885"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4886"},{"setKey":"ViridescentVenerer","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_4887"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_4888"},{"setKey":"BloodstainedChivalry","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_4889"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_4890"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_4891"},{"setKey":"Adventurer","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_4892"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_4893"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xiao","lock":true,"id":"artifact_4894"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Dehya","lock":true,"id":"artifact_4895"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4896"},{"setKey":"BlizzardStrayer","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_4897"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_4898"},{"setKey":"PrayersToSpringtime","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_4899"},{"setKey":"ThunderingFury","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_4900"},{"setKey":"RetracingBolide","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_4901"},{"setKey":"HeartOfDepth","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_4902"},{"setKey":"GoldenTroupe","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_4903"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_4904"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_4905"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_4906"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_4907"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4908"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_4909"},{"setKey":"ThunderingFury","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_4910"},{"setKey":"TinyMiracle","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_4911"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Cyno","lock":true,"id":"artifact_4912"},{"setKey":"Instructor","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_4913"},{"setKey":"Adventurer","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_4914"},{"setKey":"Gambler","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yelan","lock":true,"id":"artifact_4915"},{"setKey":"MaidenBeloved","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4916"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4917"},{"setKey":"Lavawalker","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_4918"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_4919"},{"setKey":"HeartOfDepth","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_4920"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_4921"},{"setKey":"DeepwoodMemories","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4922"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Amber","lock":true,"id":"artifact_4923"},{"setKey":"LuckyDog","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4924"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_4925"},{"setKey":"GoldenTroupe","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_4926"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4927"},{"setKey":"VermillionHereafter","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_4928"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"HuTao","lock":true,"id":"artifact_4929"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_4930"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_4931"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_4932"},{"setKey":"TravelingDoctor","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4933"},{"setKey":"BraveHeart","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_4934"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4935"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_4936"},{"setKey":"Lavawalker","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_4937"},{"setKey":"OceanHuedClam","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4938"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4939"},{"setKey":"GladiatorsFinale","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_4940"},{"setKey":"DeepwoodMemories","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4941"},{"setKey":"Berserker","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_4942"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_4943"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4944"},{"setKey":"TinyMiracle","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4945"},{"setKey":"PrayersForIllumination","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_4946"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_4947"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_4948"},{"setKey":"MaidenBeloved","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_4949"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Collei","lock":true,"id":"artifact_4950"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4951"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4952"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4953"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kirara","lock":true,"id":"artifact_4954"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_4955"},{"setKey":"GoldenTroupe","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_4956"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_4957"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_4958"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_4959"},{"setKey":"DeepwoodMemories","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_4960"},{"setKey":"SongOfDaysPast","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_4961"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"HuTao","lock":true,"id":"artifact_4962"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_4963"},{"setKey":"Gambler","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Dehya","lock":true,"id":"artifact_4964"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_4965"},{"setKey":"MaidenBeloved","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_4966"},{"setKey":"MartialArtist","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_4967"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_4968"},{"setKey":"PrayersForDestiny","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Jean","lock":true,"id":"artifact_4969"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_4970"},{"setKey":"WanderersTroupe","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_4971"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_4972"},{"setKey":"VourukashasGlow","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_4973"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_4974"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_4975"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4976"},{"setKey":"Adventurer","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_4977"},{"setKey":"BlizzardStrayer","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xinyan","lock":true,"id":"artifact_4978"},{"setKey":"PrayersForDestiny","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_4979"},{"setKey":"DefendersWill","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_4980"},{"setKey":"Scholar","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_4981"},{"setKey":"MaidenBeloved","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_4982"},{"setKey":"MarechausseeHunter","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Jean","lock":true,"id":"artifact_4983"},{"setKey":"Berserker","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_4984"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Eula","lock":true,"id":"artifact_4985"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_4986"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_4987"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_4988"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Furina","lock":true,"id":"artifact_4989"},{"setKey":"PrayersForIllumination","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_4990"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4991"},{"setKey":"RetracingBolide","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chongyun","lock":true,"id":"artifact_4992"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_4993"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_4994"},{"setKey":"BlizzardStrayer","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_4995"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Keqing","lock":true,"id":"artifact_4996"},{"setKey":"MaidenBeloved","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_4997"},{"setKey":"PrayersForDestiny","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_4998"},{"setKey":"OceanHuedClam","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_4999"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5000"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5001"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_5002"},{"setKey":"PrayersForDestiny","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Dehya","lock":true,"id":"artifact_5003"},{"setKey":"Thundersoother","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_5004"},{"setKey":"PaleFlame","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_5005"},{"setKey":"ViridescentVenerer","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Albedo","lock":true,"id":"artifact_5006"},{"setKey":"PrayersForDestiny","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Gorou","lock":true,"id":"artifact_5007"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Eula","lock":true,"id":"artifact_5008"},{"setKey":"PrayersForDestiny","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_5009"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_5010"},{"setKey":"HeartOfDepth","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_5011"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_5012"},{"setKey":"PrayersForDestiny","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_5013"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5014"},{"setKey":"MaidenBeloved","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Barbara","lock":true,"id":"artifact_5015"},{"setKey":"TravelingDoctor","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5016"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_5017"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5018"},{"setKey":"TheExile","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_5019"},{"setKey":"ViridescentVenerer","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5020"},{"setKey":"BraveHeart","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_5021"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"HuTao","lock":true,"id":"artifact_5022"},{"setKey":"DeepwoodMemories","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_5023"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Lyney","lock":true,"id":"artifact_5024"},{"setKey":"Lavawalker","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_5025"},{"setKey":"Instructor","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_5026"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5027"},{"setKey":"VermillionHereafter","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_5028"},{"setKey":"DefendersWill","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5029"},{"setKey":"BlizzardStrayer","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_5030"},{"setKey":"HeartOfDepth","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_5031"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_5032"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5033"},{"setKey":"OceanHuedClam","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_5034"},{"setKey":"PrayersForWisdom","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5035"},{"setKey":"DeepwoodMemories","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Noelle","lock":true,"id":"artifact_5036"},{"setKey":"Thundersoother","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chiori","lock":true,"id":"artifact_5037"},{"setKey":"HeartOfDepth","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_5038"},{"setKey":"PrayersForWisdom","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5039"},{"setKey":"ThunderingFury","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_5040"},{"setKey":"BraveHeart","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5041"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Traveler","lock":true,"id":"artifact_5042"},{"setKey":"RetracingBolide","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_5043"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_5044"},{"setKey":"Berserker","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Diona","lock":true,"id":"artifact_5045"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_5046"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Chiori","lock":true,"id":"artifact_5047"},{"setKey":"GildedDreams","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_5048"},{"setKey":"PrayersForIllumination","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_5049"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_5050"},{"setKey":"PrayersForIllumination","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5051"},{"setKey":"Lavawalker","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5052"},{"setKey":"DeepwoodMemories","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Mona","lock":true,"id":"artifact_5053"},{"setKey":"PrayersForWisdom","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_5054"},{"setKey":"MartialArtist","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yelan","lock":true,"id":"artifact_5055"},{"setKey":"GladiatorsFinale","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_5056"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5057"},{"setKey":"DeepwoodMemories","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_5058"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Gorou","lock":true,"id":"artifact_5059"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_5060"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Sayu","lock":true,"id":"artifact_5061"},{"setKey":"TheExile","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Diluc","lock":true,"id":"artifact_5062"},{"setKey":"PrayersForDestiny","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5063"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_5064"},{"setKey":"NymphsDream","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_5065"},{"setKey":"GoldenTroupe","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5066"},{"setKey":"Lavawalker","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_5067"},{"setKey":"NymphsDream","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_5068"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_5069"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Razor","lock":true,"id":"artifact_5070"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kirara","lock":true,"id":"artifact_5071"},{"setKey":"MartialArtist","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5072"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5073"},{"setKey":"VourukashasGlow","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_5074"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Furina","lock":true,"id":"artifact_5075"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5076"},{"setKey":"DefendersWill","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_5077"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_5078"},{"setKey":"GladiatorsFinale","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xiao","lock":true,"id":"artifact_5079"},{"setKey":"Instructor","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_5080"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5081"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_5082"},{"setKey":"WanderersTroupe","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Gorou","lock":true,"id":"artifact_5083"},{"setKey":"PrayersToSpringtime","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Navia","lock":true,"id":"artifact_5084"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lisa","lock":true,"id":"artifact_5085"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Diona","lock":true,"id":"artifact_5086"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_5087"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Yelan","lock":true,"id":"artifact_5088"},{"setKey":"NymphsDream","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_5089"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5090"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5091"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Chongyun","lock":true,"id":"artifact_5092"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_5093"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5094"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_5095"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_5096"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5097"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Chongyun","lock":true,"id":"artifact_5098"},{"setKey":"BloodstainedChivalry","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_5099"},{"setKey":"BraveHeart","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5100"},{"setKey":"PrayersForDestiny","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_5101"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_5102"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_5103"},{"setKey":"TinyMiracle","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5104"},{"setKey":"Scholar","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_5105"},{"setKey":"PrayersForIllumination","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_5106"},{"setKey":"GladiatorsFinale","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_5107"},{"setKey":"GladiatorsFinale","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_5108"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5109"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_5110"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5111"},{"setKey":"MaidenBeloved","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Eula","lock":true,"id":"artifact_5112"},{"setKey":"NymphsDream","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_5113"},{"setKey":"PaleFlame","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5114"},{"setKey":"PrayersForWisdom","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5115"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_5116"},{"setKey":"DefendersWill","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5117"},{"setKey":"GildedDreams","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_5118"},{"setKey":"ArchaicPetra","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_5119"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_5120"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_5121"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_5122"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_5123"},{"setKey":"TheExile","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_5124"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_5125"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Noelle","lock":true,"id":"artifact_5126"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Razor","lock":true,"id":"artifact_5127"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_5128"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Sayu","lock":true,"id":"artifact_5129"},{"setKey":"BlizzardStrayer","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Cyno","lock":true,"id":"artifact_5130"},{"setKey":"ArchaicPetra","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_5131"},{"setKey":"NymphsDream","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Diluc","lock":true,"id":"artifact_5132"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5133"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Dehya","lock":true,"id":"artifact_5134"},{"setKey":"ArchaicPetra","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Lynette","lock":true,"id":"artifact_5135"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5136"},{"setKey":"Gambler","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5137"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_5138"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_5139"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Candace","lock":true,"id":"artifact_5140"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_5141"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_5142"},{"setKey":"MartialArtist","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_5143"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_5144"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5145"},{"setKey":"BraveHeart","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5146"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5147"},{"setKey":"GoldenTroupe","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_5148"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Ganyu","lock":true,"id":"artifact_5149"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_5150"},{"setKey":"Berserker","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Bennett","lock":true,"id":"artifact_5151"},{"setKey":"DeepwoodMemories","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_5152"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Layla","lock":true,"id":"artifact_5153"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5154"},{"setKey":"BraveHeart","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_5155"},{"setKey":"Scholar","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Cyno","lock":true,"id":"artifact_5156"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_5157"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_5158"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_5159"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5160"},{"setKey":"WanderersTroupe","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5161"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_5162"},{"setKey":"PrayersForDestiny","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5163"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_5164"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_5165"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_5166"},{"setKey":"NoblesseOblige","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Albedo","lock":true,"id":"artifact_5167"},{"setKey":"TravelingDoctor","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Layla","lock":true,"id":"artifact_5168"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_5169"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_5170"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"HuTao","lock":true,"id":"artifact_5171"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_5172"},{"setKey":"BraveHeart","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_5173"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Freminet","lock":true,"id":"artifact_5174"},{"setKey":"Adventurer","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5175"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_5176"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_5177"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Mona","lock":true,"id":"artifact_5178"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_5179"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_5180"},{"setKey":"TheExile","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Mika","lock":true,"id":"artifact_5181"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_5182"},{"setKey":"Lavawalker","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_5183"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5184"},{"setKey":"LuckyDog","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5185"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_5186"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_5187"},{"setKey":"ThunderingFury","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_5188"},{"setKey":"HeartOfDepth","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_5189"},{"setKey":"ArchaicPetra","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Lynette","lock":true,"id":"artifact_5190"},{"setKey":"BraveHeart","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_5191"},{"setKey":"BraveHeart","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_5192"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_5193"},{"setKey":"OceanHuedClam","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5194"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lyney","lock":true,"id":"artifact_5195"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5196"},{"setKey":"PaleFlame","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_5197"},{"setKey":"LuckyDog","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_5198"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_5199"},{"setKey":"ArchaicPetra","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5200"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_5201"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Barbara","lock":true,"id":"artifact_5202"},{"setKey":"BraveHeart","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5203"},{"setKey":"VermillionHereafter","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5204"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Diona","lock":true,"id":"artifact_5205"},{"setKey":"PrayersForDestiny","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_5206"},{"setKey":"VermillionHereafter","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5207"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Eula","lock":true,"id":"artifact_5208"},{"setKey":"VermillionHereafter","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_5209"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_5210"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Cyno","lock":true,"id":"artifact_5211"},{"setKey":"Instructor","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5212"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5213"},{"setKey":"ThunderingFury","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5214"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_5215"},{"setKey":"Gambler","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Layla","lock":true,"id":"artifact_5216"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_5217"},{"setKey":"Gambler","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5218"},{"setKey":"OceanHuedClam","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_5219"},{"setKey":"PaleFlame","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_5220"},{"setKey":"ArchaicPetra","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5221"},{"setKey":"PrayersToSpringtime","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yelan","lock":true,"id":"artifact_5222"},{"setKey":"GoldenTroupe","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5223"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_5224"},{"setKey":"ViridescentVenerer","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5225"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_5226"},{"setKey":"MartialArtist","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_5227"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Candace","lock":true,"id":"artifact_5228"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5229"},{"setKey":"VourukashasGlow","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_5230"},{"setKey":"BlizzardStrayer","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_5231"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Noelle","lock":true,"id":"artifact_5232"},{"setKey":"PrayersForDestiny","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5233"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KujouSara","lock":true,"id":"artifact_5234"},{"setKey":"VermillionHereafter","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5235"},{"setKey":"RetracingBolide","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5236"},{"setKey":"Scholar","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_5237"},{"setKey":"DeepwoodMemories","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_5238"},{"setKey":"Berserker","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Navia","lock":true,"id":"artifact_5239"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_5240"},{"setKey":"LuckyDog","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_5241"},{"setKey":"GildedDreams","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5242"},{"setKey":"VourukashasGlow","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Razor","lock":true,"id":"artifact_5243"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Aloy","lock":true,"id":"artifact_5244"},{"setKey":"Lavawalker","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5245"},{"setKey":"WanderersTroupe","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"YunJin","lock":true,"id":"artifact_5246"},{"setKey":"Scholar","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_5247"},{"setKey":"ViridescentVenerer","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_5248"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Gaming","lock":true,"id":"artifact_5249"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Barbara","lock":true,"id":"artifact_5250"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_5251"},{"setKey":"NymphsDream","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_5252"},{"setKey":"SongOfDaysPast","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_5253"},{"setKey":"SongOfDaysPast","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5254"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_5255"},{"setKey":"Scholar","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5256"},{"setKey":"Gambler","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_5257"},{"setKey":"MartialArtist","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5258"},{"setKey":"BloodstainedChivalry","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Collei","lock":true,"id":"artifact_5259"},{"setKey":"Lavawalker","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5260"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_5261"},{"setKey":"LuckyDog","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Aloy","lock":true,"id":"artifact_5262"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yelan","lock":true,"id":"artifact_5263"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Jean","lock":true,"id":"artifact_5264"},{"setKey":"PaleFlame","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5265"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_5266"},{"setKey":"GildedDreams","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5267"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_5268"},{"setKey":"GladiatorsFinale","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5269"},{"setKey":"BlizzardStrayer","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5270"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5271"},{"setKey":"GoldenTroupe","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_5272"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Furina","lock":true,"id":"artifact_5273"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_5274"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5275"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5276"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Chiori","lock":true,"id":"artifact_5277"},{"setKey":"OceanHuedClam","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5278"},{"setKey":"BlizzardStrayer","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_5279"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_5280"},{"setKey":"Instructor","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_5281"},{"setKey":"PaleFlame","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5282"},{"setKey":"BlizzardStrayer","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_5283"},{"setKey":"MarechausseeHunter","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5284"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Thoma","lock":true,"id":"artifact_5285"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_5286"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Dehya","lock":true,"id":"artifact_5287"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xiao","lock":true,"id":"artifact_5288"},{"setKey":"NoblesseOblige","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_5289"},{"setKey":"LuckyDog","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_5290"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Layla","lock":true,"id":"artifact_5291"},{"setKey":"Adventurer","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Charlotte","lock":true,"id":"artifact_5292"},{"setKey":"VourukashasGlow","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_5293"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_5294"},{"setKey":"OceanHuedClam","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5295"},{"setKey":"Lavawalker","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Thoma","lock":true,"id":"artifact_5296"},{"setKey":"BraveHeart","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_5297"},{"setKey":"OceanHuedClam","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5298"},{"setKey":"SongOfDaysPast","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Klee","lock":true,"id":"artifact_5299"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5300"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Cyno","lock":true,"id":"artifact_5301"},{"setKey":"Adventurer","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_5302"},{"setKey":"Instructor","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5303"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_5304"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5305"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5306"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_5307"},{"setKey":"DeepwoodMemories","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5308"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5309"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Dori","lock":true,"id":"artifact_5310"},{"setKey":"LuckyDog","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5311"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_5312"},{"setKey":"TravelingDoctor","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5313"},{"setKey":"GoldenTroupe","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_5314"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"HuTao","lock":true,"id":"artifact_5315"},{"setKey":"BraveHeart","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_5316"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_5317"},{"setKey":"SongOfDaysPast","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_5318"},{"setKey":"TravelingDoctor","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5319"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Noelle","lock":true,"id":"artifact_5320"},{"setKey":"BraveHeart","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Diluc","lock":true,"id":"artifact_5321"},{"setKey":"PaleFlame","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_5322"},{"setKey":"Berserker","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_5323"},{"setKey":"GladiatorsFinale","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_5324"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lyney","lock":true,"id":"artifact_5325"},{"setKey":"Berserker","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_5326"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Albedo","lock":true,"id":"artifact_5327"},{"setKey":"GladiatorsFinale","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Gorou","lock":true,"id":"artifact_5328"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5329"},{"setKey":"PaleFlame","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_5330"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Keqing","lock":true,"id":"artifact_5331"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_5332"},{"setKey":"NoblesseOblige","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5333"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_5334"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_5335"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_5336"},{"setKey":"GoldenTroupe","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_5337"},{"setKey":"ThunderingFury","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_5338"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Freminet","lock":true,"id":"artifact_5339"},{"setKey":"HeartOfDepth","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5340"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_5341"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"YunJin","lock":true,"id":"artifact_5342"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_5343"},{"setKey":"PrayersForIllumination","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_5344"},{"setKey":"Instructor","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5345"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Bennett","lock":true,"id":"artifact_5346"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_5347"},{"setKey":"Thundersoother","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_5348"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_5349"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5350"},{"setKey":"TheExile","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Mona","lock":true,"id":"artifact_5351"},{"setKey":"NoblesseOblige","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5352"},{"setKey":"Instructor","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_5353"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_5354"},{"setKey":"BloodstainedChivalry","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_5355"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_5356"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"YunJin","lock":true,"id":"artifact_5357"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Cyno","lock":true,"id":"artifact_5358"},{"setKey":"SongOfDaysPast","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5359"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_5360"},{"setKey":"GladiatorsFinale","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_5361"},{"setKey":"VourukashasGlow","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5362"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_5363"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_5364"},{"setKey":"ThunderingFury","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_5365"},{"setKey":"PrayersForWisdom","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_5366"},{"setKey":"Adventurer","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"HuTao","lock":true,"id":"artifact_5367"},{"setKey":"BraveHeart","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_5368"},{"setKey":"VourukashasGlow","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5369"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_5370"},{"setKey":"VermillionHereafter","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_5371"},{"setKey":"NymphsDream","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Cyno","lock":true,"id":"artifact_5372"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5373"},{"setKey":"Gambler","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Traveler","lock":true,"id":"artifact_5374"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5375"},{"setKey":"BraveHeart","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Fischl","lock":true,"id":"artifact_5376"},{"setKey":"OceanHuedClam","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"HuTao","lock":true,"id":"artifact_5377"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_5378"},{"setKey":"ArchaicPetra","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_5379"},{"setKey":"GildedDreams","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_5380"},{"setKey":"ArchaicPetra","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_5381"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_5382"},{"setKey":"Scholar","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_5383"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chiori","lock":true,"id":"artifact_5384"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_5385"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_5386"},{"setKey":"PaleFlame","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Traveler","lock":true,"id":"artifact_5387"},{"setKey":"PaleFlame","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_5388"},{"setKey":"Lavawalker","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Aloy","lock":true,"id":"artifact_5389"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5390"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5391"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_5392"},{"setKey":"LuckyDog","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_5393"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Candace","lock":true,"id":"artifact_5394"},{"setKey":"DeepwoodMemories","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_5395"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5396"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_5397"},{"setKey":"Lavawalker","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_5398"},{"setKey":"BraveHeart","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Amber","lock":true,"id":"artifact_5399"},{"setKey":"Gambler","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5400"},{"setKey":"ThunderingFury","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5401"},{"setKey":"BraveHeart","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_5402"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5403"},{"setKey":"MartialArtist","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Freminet","lock":true,"id":"artifact_5404"},{"setKey":"SongOfDaysPast","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Gaming","lock":true,"id":"artifact_5405"},{"setKey":"ViridescentVenerer","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dori","lock":true,"id":"artifact_5406"},{"setKey":"ThunderingFury","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5407"},{"setKey":"SongOfDaysPast","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5408"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_5409"},{"setKey":"PrayersForDestiny","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_5410"},{"setKey":"PrayersForIllumination","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_5411"},{"setKey":"BloodstainedChivalry","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Nahida","lock":true,"id":"artifact_5412"},{"setKey":"Scholar","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_5413"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_5414"},{"setKey":"DefendersWill","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_5415"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Freminet","lock":true,"id":"artifact_5416"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_5417"},{"setKey":"TravelingDoctor","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xiao","lock":true,"id":"artifact_5418"},{"setKey":"Adventurer","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_5419"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5420"},{"setKey":"NoblesseOblige","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5421"},{"setKey":"PrayersToSpringtime","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_5422"},{"setKey":"PrayersForIllumination","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Fischl","lock":true,"id":"artifact_5423"},{"setKey":"Adventurer","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Thoma","lock":true,"id":"artifact_5424"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_5425"},{"setKey":"WanderersTroupe","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5426"},{"setKey":"PrayersForIllumination","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5427"},{"setKey":"Berserker","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5428"},{"setKey":"HeartOfDepth","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_5429"},{"setKey":"Scholar","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5430"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_5431"},{"setKey":"NymphsDream","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"HuTao","lock":true,"id":"artifact_5432"},{"setKey":"DeepwoodMemories","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5433"},{"setKey":"TheExile","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5434"},{"setKey":"BraveHeart","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5435"},{"setKey":"BlizzardStrayer","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5436"},{"setKey":"ArchaicPetra","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_5437"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_5438"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_5439"},{"setKey":"ThunderingFury","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_5440"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_5441"},{"setKey":"VourukashasGlow","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5442"},{"setKey":"OceanHuedClam","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_5443"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5444"},{"setKey":"MaidenBeloved","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5445"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Beidou","lock":true,"id":"artifact_5446"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5447"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_5448"},{"setKey":"ThunderingFury","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_5449"},{"setKey":"NoblesseOblige","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5450"},{"setKey":"Adventurer","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_5451"},{"setKey":"GildedDreams","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_5452"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Albedo","lock":true,"id":"artifact_5453"},{"setKey":"Berserker","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5454"},{"setKey":"BlizzardStrayer","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xiao","lock":true,"id":"artifact_5455"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5456"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5457"},{"setKey":"TravelingDoctor","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5458"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_5459"},{"setKey":"PrayersForWisdom","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_5460"},{"setKey":"TinyMiracle","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_5461"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5462"},{"setKey":"VermillionHereafter","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_5463"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_5464"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_5465"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_5466"},{"setKey":"BraveHeart","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Nahida","lock":true,"id":"artifact_5467"},{"setKey":"Lavawalker","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5468"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Freminet","lock":true,"id":"artifact_5469"},{"setKey":"ArchaicPetra","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_5470"},{"setKey":"NoblesseOblige","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Sayu","lock":true,"id":"artifact_5471"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_5472"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_5473"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_5474"},{"setKey":"NoblesseOblige","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Freminet","lock":true,"id":"artifact_5475"},{"setKey":"SongOfDaysPast","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_5476"},{"setKey":"Lavawalker","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5477"},{"setKey":"RetracingBolide","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Mona","lock":true,"id":"artifact_5478"},{"setKey":"DeepwoodMemories","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_5479"},{"setKey":"Lavawalker","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_5480"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5481"},{"setKey":"TravelingDoctor","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_5482"},{"setKey":"DeepwoodMemories","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Bennett","lock":true,"id":"artifact_5483"},{"setKey":"Instructor","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_5484"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5485"},{"setKey":"Scholar","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_5486"},{"setKey":"ThunderingFury","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Gaming","lock":true,"id":"artifact_5487"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_5488"},{"setKey":"PrayersToSpringtime","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5489"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Nilou","lock":true,"id":"artifact_5490"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Sayu","lock":true,"id":"artifact_5491"},{"setKey":"MarechausseeHunter","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5492"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5493"},{"setKey":"ViridescentVenerer","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5494"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_5495"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5496"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Freminet","lock":true,"id":"artifact_5497"},{"setKey":"ThunderingFury","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_5498"},{"setKey":"GladiatorsFinale","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5499"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5500"},{"setKey":"GoldenTroupe","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5501"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5502"},{"setKey":"MartialArtist","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_5503"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5504"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_5505"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_5506"},{"setKey":"RetracingBolide","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5507"},{"setKey":"Scholar","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"YunJin","lock":true,"id":"artifact_5508"},{"setKey":"GildedDreams","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lisa","lock":true,"id":"artifact_5509"},{"setKey":"OceanHuedClam","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_5510"},{"setKey":"ThunderingFury","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_5511"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_5512"},{"setKey":"Adventurer","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Baizhu","lock":true,"id":"artifact_5513"},{"setKey":"TheExile","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5514"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_5515"},{"setKey":"SongOfDaysPast","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Beidou","lock":true,"id":"artifact_5516"},{"setKey":"OceanHuedClam","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_5517"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5518"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"YunJin","lock":true,"id":"artifact_5519"},{"setKey":"ArchaicPetra","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_5520"},{"setKey":"Lavawalker","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_5521"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5522"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_5523"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_5524"},{"setKey":"HeartOfDepth","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5525"},{"setKey":"Scholar","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_5526"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_5527"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5528"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_5529"},{"setKey":"TheExile","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5530"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_5531"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_5532"},{"setKey":"TravelingDoctor","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5533"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Chiori","lock":true,"id":"artifact_5534"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_5535"},{"setKey":"RetracingBolide","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5536"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_5537"},{"setKey":"Berserker","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5538"},{"setKey":"Instructor","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5539"},{"setKey":"Thundersoother","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Razor","lock":true,"id":"artifact_5540"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5541"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Bennett","lock":true,"id":"artifact_5542"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_5543"},{"setKey":"RetracingBolide","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_5544"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5545"},{"setKey":"Berserker","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_5546"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_5547"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_5548"},{"setKey":"LuckyDog","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_5549"},{"setKey":"GladiatorsFinale","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_5550"},{"setKey":"MarechausseeHunter","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5551"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5552"},{"setKey":"PrayersForDestiny","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_5553"},{"setKey":"WanderersTroupe","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_5554"},{"setKey":"DeepwoodMemories","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_5555"},{"setKey":"TravelingDoctor","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_5556"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_5557"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_5558"},{"setKey":"NymphsDream","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5559"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Klee","lock":true,"id":"artifact_5560"},{"setKey":"LuckyDog","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_5561"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5562"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_5563"},{"setKey":"Thundersoother","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_5564"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_5565"},{"setKey":"RetracingBolide","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5566"},{"setKey":"PaleFlame","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_5567"},{"setKey":"MaidenBeloved","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_5568"},{"setKey":"GoldenTroupe","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_5569"},{"setKey":"VourukashasGlow","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5570"},{"setKey":"RetracingBolide","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5571"},{"setKey":"MarechausseeHunter","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5572"},{"setKey":"PrayersForDestiny","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5573"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_5574"},{"setKey":"GoldenTroupe","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_5575"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_5576"},{"setKey":"TravelingDoctor","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Yelan","lock":true,"id":"artifact_5577"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_5578"},{"setKey":"ArchaicPetra","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_5579"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_5580"},{"setKey":"TinyMiracle","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Rosaria","lock":true,"id":"artifact_5581"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_5582"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_5583"},{"setKey":"PaleFlame","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_5584"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5585"},{"setKey":"BlizzardStrayer","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_5586"},{"setKey":"RetracingBolide","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_5587"},{"setKey":"LuckyDog","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5588"},{"setKey":"Scholar","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_5589"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_5590"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"YunJin","lock":true,"id":"artifact_5591"},{"setKey":"TheExile","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kirara","lock":true,"id":"artifact_5592"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_5593"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_5594"},{"setKey":"RetracingBolide","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_5595"},{"setKey":"TravelingDoctor","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_5596"},{"setKey":"PaleFlame","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5597"},{"setKey":"GladiatorsFinale","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5598"},{"setKey":"MaidenBeloved","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_5599"},{"setKey":"GladiatorsFinale","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_5600"},{"setKey":"Thundersoother","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5601"},{"setKey":"Instructor","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_5602"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_5603"},{"setKey":"TravelingDoctor","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_5604"},{"setKey":"HeartOfDepth","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Noelle","lock":true,"id":"artifact_5605"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5606"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Dori","lock":true,"id":"artifact_5607"},{"setKey":"Scholar","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_5608"},{"setKey":"Instructor","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5609"},{"setKey":"GladiatorsFinale","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"HuTao","lock":true,"id":"artifact_5610"},{"setKey":"RetracingBolide","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5611"},{"setKey":"Adventurer","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_5612"},{"setKey":"PrayersForIllumination","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5613"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Nilou","lock":true,"id":"artifact_5614"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5615"},{"setKey":"MaidenBeloved","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_5616"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_5617"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Thoma","lock":true,"id":"artifact_5618"},{"setKey":"PrayersForIllumination","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_5619"},{"setKey":"VourukashasGlow","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_5620"},{"setKey":"TheExile","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Diona","lock":true,"id":"artifact_5621"},{"setKey":"Adventurer","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5622"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_5623"},{"setKey":"TravelingDoctor","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Amber","lock":true,"id":"artifact_5624"},{"setKey":"ViridescentVenerer","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Candace","lock":true,"id":"artifact_5625"},{"setKey":"PrayersToSpringtime","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_5626"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_5627"},{"setKey":"Lavawalker","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_5628"},{"setKey":"GladiatorsFinale","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chiori","lock":true,"id":"artifact_5629"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_5630"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_5631"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5632"},{"setKey":"PrayersToSpringtime","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Collei","lock":true,"id":"artifact_5633"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mona","lock":true,"id":"artifact_5634"},{"setKey":"TinyMiracle","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Diona","lock":true,"id":"artifact_5635"},{"setKey":"Gambler","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5636"},{"setKey":"GladiatorsFinale","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_5637"},{"setKey":"RetracingBolide","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_5638"},{"setKey":"LuckyDog","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5639"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_5640"},{"setKey":"Scholar","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_5641"},{"setKey":"TheExile","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_5642"},{"setKey":"Scholar","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5643"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_5644"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Collei","lock":true,"id":"artifact_5645"},{"setKey":"PrayersForWisdom","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chiori","lock":true,"id":"artifact_5646"},{"setKey":"TravelingDoctor","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5647"},{"setKey":"PrayersForDestiny","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_5648"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xiao","lock":true,"id":"artifact_5649"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_5650"},{"setKey":"Lavawalker","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5651"},{"setKey":"ViridescentVenerer","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5652"},{"setKey":"Adventurer","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Mona","lock":true,"id":"artifact_5653"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_5654"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_5655"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_5656"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Layla","lock":true,"id":"artifact_5657"},{"setKey":"GoldenTroupe","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_5658"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_5659"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_5660"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_5661"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xiangling","lock":true,"id":"artifact_5662"},{"setKey":"PrayersForWisdom","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_5663"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Aloy","lock":true,"id":"artifact_5664"},{"setKey":"NymphsDream","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_5665"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_5666"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5667"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Noelle","lock":true,"id":"artifact_5668"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_5669"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5670"},{"setKey":"PrayersForDestiny","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lynette","lock":true,"id":"artifact_5671"},{"setKey":"Instructor","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_5672"},{"setKey":"Lavawalker","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_5673"},{"setKey":"VourukashasGlow","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5674"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5675"},{"setKey":"PrayersForDestiny","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5676"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lyney","lock":true,"id":"artifact_5677"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5678"},{"setKey":"RetracingBolide","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Gaming","lock":true,"id":"artifact_5679"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_5680"},{"setKey":"ArchaicPetra","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Sayu","lock":true,"id":"artifact_5681"},{"setKey":"RetracingBolide","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5682"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_5683"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Jean","lock":true,"id":"artifact_5684"},{"setKey":"BlizzardStrayer","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_5685"},{"setKey":"MaidenBeloved","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5686"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_5687"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_5688"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_5689"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_5690"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5691"},{"setKey":"TinyMiracle","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_5692"},{"setKey":"SongOfDaysPast","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_5693"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_5694"},{"setKey":"SongOfDaysPast","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5695"},{"setKey":"PrayersForWisdom","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gaming","lock":true,"id":"artifact_5696"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Collei","lock":true,"id":"artifact_5697"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Collei","lock":true,"id":"artifact_5698"},{"setKey":"NoblesseOblige","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_5699"},{"setKey":"GladiatorsFinale","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_5700"},{"setKey":"PrayersForIllumination","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_5701"},{"setKey":"LuckyDog","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_5702"},{"setKey":"WanderersTroupe","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Mona","lock":true,"id":"artifact_5703"},{"setKey":"TravelingDoctor","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_5704"},{"setKey":"SongOfDaysPast","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5705"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_5706"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_5707"},{"setKey":"DefendersWill","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_5708"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_5709"},{"setKey":"HeartOfDepth","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_5710"},{"setKey":"ThunderingFury","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_5711"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_5712"},{"setKey":"MartialArtist","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_5713"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_5714"},{"setKey":"PrayersForWisdom","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_5715"},{"setKey":"PrayersForWisdom","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_5716"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_5717"},{"setKey":"VermillionHereafter","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_5718"},{"setKey":"SongOfDaysPast","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Barbara","lock":true,"id":"artifact_5719"},{"setKey":"ViridescentVenerer","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Layla","lock":true,"id":"artifact_5720"},{"setKey":"GoldenTroupe","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_5721"},{"setKey":"TheExile","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_5722"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_5723"},{"setKey":"NoblesseOblige","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_5724"},{"setKey":"HeartOfDepth","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5725"},{"setKey":"NoblesseOblige","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Fischl","lock":true,"id":"artifact_5726"},{"setKey":"TravelingDoctor","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5727"},{"setKey":"ViridescentVenerer","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Fischl","lock":true,"id":"artifact_5728"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5729"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kirara","lock":true,"id":"artifact_5730"},{"setKey":"Gambler","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Bennett","lock":true,"id":"artifact_5731"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_5732"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"HuTao","lock":true,"id":"artifact_5733"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5734"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_5735"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5736"},{"setKey":"PrayersToSpringtime","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Venti","lock":true,"id":"artifact_5737"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_5738"},{"setKey":"PrayersForIllumination","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_5739"},{"setKey":"TheExile","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5740"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5741"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Keqing","lock":true,"id":"artifact_5742"},{"setKey":"VermillionHereafter","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_5743"},{"setKey":"BraveHeart","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_5744"},{"setKey":"PaleFlame","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_5745"},{"setKey":"BloodstainedChivalry","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5746"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5747"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_5748"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_5749"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_5750"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5751"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_5752"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_5753"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_5754"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_5755"},{"setKey":"RetracingBolide","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_5756"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_5757"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gaming","lock":true,"id":"artifact_5758"},{"setKey":"WanderersTroupe","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_5759"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5760"},{"setKey":"TravelingDoctor","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Yelan","lock":true,"id":"artifact_5761"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_5762"},{"setKey":"PrayersToSpringtime","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5763"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Sayu","lock":true,"id":"artifact_5764"},{"setKey":"DeepwoodMemories","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_5765"},{"setKey":"ArchaicPetra","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5766"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_5767"},{"setKey":"NymphsDream","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_5768"},{"setKey":"Thundersoother","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_5769"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_5770"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5771"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5772"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5773"},{"setKey":"WanderersTroupe","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_5774"},{"setKey":"GildedDreams","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Amber","lock":true,"id":"artifact_5775"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_5776"},{"setKey":"GoldenTroupe","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_5777"},{"setKey":"TheExile","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_5778"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5779"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5780"},{"setKey":"VermillionHereafter","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_5781"},{"setKey":"LuckyDog","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5782"},{"setKey":"PrayersForIllumination","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_5783"},{"setKey":"OceanHuedClam","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_5784"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_5785"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kaveh","lock":true,"id":"artifact_5786"},{"setKey":"ThunderingFury","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_5787"},{"setKey":"DefendersWill","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_5788"},{"setKey":"RetracingBolide","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_5789"},{"setKey":"PrayersForDestiny","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lisa","lock":true,"id":"artifact_5790"},{"setKey":"BraveHeart","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5791"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_5792"},{"setKey":"PrayersForWisdom","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Mona","lock":true,"id":"artifact_5793"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5794"},{"setKey":"MaidenBeloved","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5795"},{"setKey":"Gambler","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_5796"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_5797"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5798"},{"setKey":"GoldenTroupe","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_5799"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_5800"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_5801"},{"setKey":"LuckyDog","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Furina","lock":true,"id":"artifact_5802"},{"setKey":"TheExile","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_5803"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_5804"},{"setKey":"TravelingDoctor","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_5805"},{"setKey":"Adventurer","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Venti","lock":true,"id":"artifact_5806"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_5807"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_5808"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_5809"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_5810"},{"setKey":"Scholar","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_5811"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_5812"},{"setKey":"BraveHeart","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5813"},{"setKey":"PrayersForIllumination","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_5814"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_5815"},{"setKey":"TinyMiracle","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_5816"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_5817"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_5818"},{"setKey":"ArchaicPetra","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Noelle","lock":true,"id":"artifact_5819"},{"setKey":"BraveHeart","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_5820"},{"setKey":"TheExile","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_5821"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_5822"},{"setKey":"Berserker","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_5823"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_5824"},{"setKey":"Gambler","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_5825"},{"setKey":"MaidenBeloved","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_5826"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_5827"},{"setKey":"ThunderingFury","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_5828"},{"setKey":"Instructor","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_5829"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5830"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5831"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5832"},{"setKey":"VermillionHereafter","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5833"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_5834"},{"setKey":"Instructor","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_5835"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_5836"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5837"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_5838"},{"setKey":"PrayersForWisdom","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_5839"},{"setKey":"Scholar","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5840"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lyney","lock":true,"id":"artifact_5841"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiao","lock":true,"id":"artifact_5842"},{"setKey":"Gambler","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5843"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_5844"},{"setKey":"Gambler","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_5845"},{"setKey":"WanderersTroupe","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_5846"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_5847"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chiori","lock":true,"id":"artifact_5848"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_5849"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_5850"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_5851"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5852"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Traveler","lock":true,"id":"artifact_5853"},{"setKey":"GildedDreams","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_5854"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Fischl","lock":true,"id":"artifact_5855"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_5856"},{"setKey":"GladiatorsFinale","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_5857"},{"setKey":"PrayersForWisdom","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"HuTao","lock":true,"id":"artifact_5858"},{"setKey":"Gambler","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_5859"},{"setKey":"Lavawalker","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_5860"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_5861"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5862"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Layla","lock":true,"id":"artifact_5863"},{"setKey":"OceanHuedClam","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"HuTao","lock":true,"id":"artifact_5864"},{"setKey":"VourukashasGlow","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_5865"},{"setKey":"DeepwoodMemories","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_5866"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_5867"},{"setKey":"PrayersForDestiny","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_5868"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_5869"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5870"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_5871"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Jean","lock":true,"id":"artifact_5872"},{"setKey":"DefendersWill","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_5873"},{"setKey":"Berserker","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_5874"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_5875"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5876"},{"setKey":"DeepwoodMemories","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_5877"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_5878"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_5879"},{"setKey":"ArchaicPetra","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_5880"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_5881"},{"setKey":"PrayersForIllumination","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5882"},{"setKey":"WanderersTroupe","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5883"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_5884"},{"setKey":"Lavawalker","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5885"},{"setKey":"LuckyDog","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_5886"},{"setKey":"NoblesseOblige","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_5887"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Razor","lock":true,"id":"artifact_5888"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5889"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_5890"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"HuTao","lock":true,"id":"artifact_5891"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5892"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_5893"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"YunJin","lock":true,"id":"artifact_5894"},{"setKey":"NoblesseOblige","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Eula","lock":true,"id":"artifact_5895"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_5896"},{"setKey":"Instructor","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5897"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Razor","lock":true,"id":"artifact_5898"},{"setKey":"ThunderingFury","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_5899"},{"setKey":"Thundersoother","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_5900"},{"setKey":"GladiatorsFinale","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_5901"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5902"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5903"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_5904"},{"setKey":"Gambler","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_5905"},{"setKey":"ArchaicPetra","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Charlotte","lock":true,"id":"artifact_5906"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_5907"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_5908"},{"setKey":"Berserker","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xiao","lock":true,"id":"artifact_5909"},{"setKey":"VermillionHereafter","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5910"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5911"},{"setKey":"TravelingDoctor","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5912"},{"setKey":"PaleFlame","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_5913"},{"setKey":"PrayersForIllumination","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5914"},{"setKey":"MaidenBeloved","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Chongyun","lock":true,"id":"artifact_5915"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_5916"},{"setKey":"SongOfDaysPast","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_5917"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_5918"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"YunJin","lock":true,"id":"artifact_5919"},{"setKey":"BloodstainedChivalry","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Keqing","lock":true,"id":"artifact_5920"},{"setKey":"MaidenBeloved","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5921"},{"setKey":"Lavawalker","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_5922"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_5923"},{"setKey":"Gambler","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_5924"},{"setKey":"Thundersoother","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5925"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Diona","lock":true,"id":"artifact_5926"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Jean","lock":true,"id":"artifact_5927"},{"setKey":"VermillionHereafter","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_5928"},{"setKey":"OceanHuedClam","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_5929"},{"setKey":"LuckyDog","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Sayu","lock":true,"id":"artifact_5930"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Furina","lock":true,"id":"artifact_5931"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_5932"},{"setKey":"TravelingDoctor","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_5933"},{"setKey":"ViridescentVenerer","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_5934"},{"setKey":"TinyMiracle","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5935"},{"setKey":"TheExile","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_5936"},{"setKey":"Lavawalker","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_5937"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_5938"},{"setKey":"TheExile","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_5939"},{"setKey":"BloodstainedChivalry","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_5940"},{"setKey":"MarechausseeHunter","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5941"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_5942"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_5943"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Traveler","lock":true,"id":"artifact_5944"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_5945"},{"setKey":"PrayersForIllumination","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_5946"},{"setKey":"GoldenTroupe","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_5947"},{"setKey":"RetracingBolide","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Ganyu","lock":true,"id":"artifact_5948"},{"setKey":"OceanHuedClam","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Venti","lock":true,"id":"artifact_5949"},{"setKey":"WanderersTroupe","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_5950"},{"setKey":"DeepwoodMemories","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Noelle","lock":true,"id":"artifact_5951"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5952"},{"setKey":"BlizzardStrayer","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_5953"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_5954"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_5955"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_5956"},{"setKey":"RetracingBolide","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_5957"},{"setKey":"TravelingDoctor","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Venti","lock":true,"id":"artifact_5958"},{"setKey":"LuckyDog","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_5959"},{"setKey":"ViridescentVenerer","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_5960"},{"setKey":"Adventurer","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_5961"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_5962"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Thoma","lock":true,"id":"artifact_5963"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_5964"},{"setKey":"DeepwoodMemories","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Barbara","lock":true,"id":"artifact_5965"},{"setKey":"PrayersToSpringtime","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Razor","lock":true,"id":"artifact_5966"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_5967"},{"setKey":"GildedDreams","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_5968"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_5969"},{"setKey":"RetracingBolide","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_5970"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_5971"},{"setKey":"GladiatorsFinale","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_5972"},{"setKey":"TinyMiracle","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_5973"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_5974"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_5975"},{"setKey":"MarechausseeHunter","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5976"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_5977"},{"setKey":"GildedDreams","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mika","lock":true,"id":"artifact_5978"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Fischl","lock":true,"id":"artifact_5979"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_5980"},{"setKey":"Scholar","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_5981"},{"setKey":"PrayersForDestiny","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_5982"},{"setKey":"SongOfDaysPast","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_5983"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_5984"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5985"},{"setKey":"ThunderingFury","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_5986"},{"setKey":"TheExile","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_5987"},{"setKey":"LuckyDog","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_5988"},{"setKey":"HeartOfDepth","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_5989"},{"setKey":"BloodstainedChivalry","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_5990"},{"setKey":"ArchaicPetra","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yelan","lock":true,"id":"artifact_5991"},{"setKey":"GladiatorsFinale","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_5992"},{"setKey":"ViridescentVenerer","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Noelle","lock":true,"id":"artifact_5993"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_5994"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Freminet","lock":true,"id":"artifact_5995"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_5996"},{"setKey":"Gambler","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_5997"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_5998"},{"setKey":"Adventurer","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Layla","lock":true,"id":"artifact_5999"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_6000"},{"setKey":"PrayersForDestiny","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_6001"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Dori","lock":true,"id":"artifact_6002"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_6003"},{"setKey":"LuckyDog","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_6004"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_6005"},{"setKey":"PrayersForIllumination","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6006"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Gaming","lock":true,"id":"artifact_6007"},{"setKey":"SongOfDaysPast","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Albedo","lock":true,"id":"artifact_6008"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gorou","lock":true,"id":"artifact_6009"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_6010"},{"setKey":"HeartOfDepth","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_6011"},{"setKey":"Lavawalker","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6012"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6013"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Fischl","lock":true,"id":"artifact_6014"},{"setKey":"Thundersoother","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Freminet","lock":true,"id":"artifact_6015"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_6016"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_6017"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Gorou","lock":true,"id":"artifact_6018"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_6019"},{"setKey":"DefendersWill","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_6020"},{"setKey":"TheExile","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_6021"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_6022"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Lyney","lock":true,"id":"artifact_6023"},{"setKey":"VourukashasGlow","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_6024"},{"setKey":"Gambler","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Lyney","lock":true,"id":"artifact_6025"},{"setKey":"DefendersWill","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_6026"},{"setKey":"BloodstainedChivalry","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_6027"},{"setKey":"GoldenTroupe","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6028"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_6029"},{"setKey":"WanderersTroupe","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_6030"},{"setKey":"DefendersWill","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_6031"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_6032"},{"setKey":"ArchaicPetra","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_6033"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6034"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_6035"},{"setKey":"WanderersTroupe","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_6036"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Nahida","lock":true,"id":"artifact_6037"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_6038"},{"setKey":"ThunderingFury","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_6039"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_6040"},{"setKey":"TheExile","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_6041"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6042"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Dori","lock":true,"id":"artifact_6043"},{"setKey":"TravelingDoctor","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_6044"},{"setKey":"MaidenBeloved","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_6045"},{"setKey":"Lavawalker","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Noelle","lock":true,"id":"artifact_6046"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6047"},{"setKey":"SongOfDaysPast","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6048"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_6049"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_6050"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6051"},{"setKey":"DefendersWill","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_6052"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6053"},{"setKey":"MarechausseeHunter","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_6054"},{"setKey":"BloodstainedChivalry","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Cyno","lock":true,"id":"artifact_6055"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_6056"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6057"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_6058"},{"setKey":"Berserker","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_6059"},{"setKey":"DeepwoodMemories","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_6060"},{"setKey":"Thundersoother","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Diluc","lock":true,"id":"artifact_6061"},{"setKey":"ArchaicPetra","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_6062"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_6063"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6064"},{"setKey":"MaidenBeloved","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_6065"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_6066"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_6067"},{"setKey":"GoldenTroupe","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_6068"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_6069"},{"setKey":"PrayersForDestiny","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6070"},{"setKey":"VourukashasGlow","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_6071"},{"setKey":"Instructor","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_6072"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_6073"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_6074"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_6075"},{"setKey":"RetracingBolide","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6076"},{"setKey":"GildedDreams","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_6077"},{"setKey":"Gambler","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6078"},{"setKey":"DefendersWill","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_6079"},{"setKey":"TravelingDoctor","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_6080"},{"setKey":"TinyMiracle","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_6081"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_6082"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_6083"},{"setKey":"TravelingDoctor","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6084"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_6085"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6086"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_6087"},{"setKey":"OceanHuedClam","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_6088"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6089"},{"setKey":"HeartOfDepth","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_6090"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_6091"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_6092"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_6093"},{"setKey":"ViridescentVenerer","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6094"},{"setKey":"Adventurer","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_6095"},{"setKey":"TheExile","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Chiori","lock":true,"id":"artifact_6096"},{"setKey":"PrayersToSpringtime","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_6097"},{"setKey":"VourukashasGlow","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_6098"},{"setKey":"OceanHuedClam","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_6099"},{"setKey":"NymphsDream","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Freminet","lock":true,"id":"artifact_6100"},{"setKey":"Gambler","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_6101"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Candace","lock":true,"id":"artifact_6102"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_6103"},{"setKey":"Gambler","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_6104"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_6105"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Nilou","lock":true,"id":"artifact_6106"},{"setKey":"GildedDreams","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6107"},{"setKey":"ViridescentVenerer","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_6108"},{"setKey":"PaleFlame","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6109"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Dori","lock":true,"id":"artifact_6110"},{"setKey":"MaidenBeloved","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6111"},{"setKey":"SongOfDaysPast","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_6112"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6113"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_6114"},{"setKey":"PaleFlame","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_6115"},{"setKey":"DeepwoodMemories","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6116"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_6117"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_6118"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_6119"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_6120"},{"setKey":"PaleFlame","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_6121"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_6122"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6123"},{"setKey":"TheExile","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_6124"},{"setKey":"BlizzardStrayer","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Dori","lock":true,"id":"artifact_6125"},{"setKey":"GildedDreams","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_6126"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_6127"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_6128"},{"setKey":"BlizzardStrayer","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6129"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6130"},{"setKey":"VourukashasGlow","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_6131"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Noelle","lock":true,"id":"artifact_6132"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_6133"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6134"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Keqing","lock":true,"id":"artifact_6135"},{"setKey":"BraveHeart","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Aloy","lock":true,"id":"artifact_6136"},{"setKey":"BloodstainedChivalry","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6137"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_6138"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_6139"},{"setKey":"HeartOfDepth","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_6140"},{"setKey":"PrayersForDestiny","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_6141"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_6142"},{"setKey":"HeartOfDepth","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Gorou","lock":true,"id":"artifact_6143"},{"setKey":"ViridescentVenerer","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Fischl","lock":true,"id":"artifact_6144"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_6145"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_6146"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_6147"},{"setKey":"VourukashasGlow","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_6148"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_6149"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_6150"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_6151"},{"setKey":"BlizzardStrayer","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6152"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_6153"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_6154"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_6155"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6156"},{"setKey":"GladiatorsFinale","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_6157"},{"setKey":"PrayersForIllumination","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_6158"},{"setKey":"Gambler","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_6159"},{"setKey":"BloodstainedChivalry","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6160"},{"setKey":"TheExile","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_6161"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Keqing","lock":true,"id":"artifact_6162"},{"setKey":"OceanHuedClam","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Dori","lock":true,"id":"artifact_6163"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_6164"},{"setKey":"NoblesseOblige","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_6165"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_6166"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6167"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_6168"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_6169"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Cyno","lock":true,"id":"artifact_6170"},{"setKey":"ThunderingFury","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gaming","lock":true,"id":"artifact_6171"},{"setKey":"NymphsDream","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_6172"},{"setKey":"BloodstainedChivalry","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6173"},{"setKey":"RetracingBolide","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_6174"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_6175"},{"setKey":"PrayersForWisdom","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_6176"},{"setKey":"PrayersForDestiny","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_6177"},{"setKey":"GoldenTroupe","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_6178"},{"setKey":"MartialArtist","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_6179"},{"setKey":"ThunderingFury","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_6180"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_6181"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Razor","lock":true,"id":"artifact_6182"},{"setKey":"DefendersWill","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6183"},{"setKey":"PrayersForWisdom","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_6184"},{"setKey":"Instructor","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_6185"},{"setKey":"MartialArtist","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_6186"},{"setKey":"MarechausseeHunter","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"YunJin","lock":true,"id":"artifact_6187"},{"setKey":"LuckyDog","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_6188"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"YunJin","lock":true,"id":"artifact_6189"},{"setKey":"GladiatorsFinale","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_6190"},{"setKey":"Thundersoother","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_6191"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Candace","lock":true,"id":"artifact_6192"},{"setKey":"PrayersForDestiny","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_6193"},{"setKey":"VourukashasGlow","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_6194"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Freminet","lock":true,"id":"artifact_6195"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6196"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6197"},{"setKey":"MartialArtist","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_6198"},{"setKey":"Thundersoother","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_6199"},{"setKey":"DeepwoodMemories","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Lynette","lock":true,"id":"artifact_6200"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_6201"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_6202"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_6203"},{"setKey":"MaidenBeloved","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_6204"},{"setKey":"NoblesseOblige","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_6205"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6206"},{"setKey":"PrayersForIllumination","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Collei","lock":true,"id":"artifact_6207"},{"setKey":"DeepwoodMemories","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6208"},{"setKey":"ThunderingFury","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Fischl","lock":true,"id":"artifact_6209"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_6210"},{"setKey":"DeepwoodMemories","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Layla","lock":true,"id":"artifact_6211"},{"setKey":"BraveHeart","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_6212"},{"setKey":"Scholar","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_6213"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_6214"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6215"},{"setKey":"Instructor","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_6216"},{"setKey":"PrayersForDestiny","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_6217"},{"setKey":"MarechausseeHunter","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Gaming","lock":true,"id":"artifact_6218"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_6219"},{"setKey":"MartialArtist","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6220"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6221"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_6222"},{"setKey":"RetracingBolide","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6223"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_6224"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6225"},{"setKey":"TheExile","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Albedo","lock":true,"id":"artifact_6226"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_6227"},{"setKey":"Instructor","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_6228"},{"setKey":"TheExile","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_6229"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_6230"},{"setKey":"Berserker","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Chiori","lock":true,"id":"artifact_6231"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_6232"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_6233"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_6234"},{"setKey":"GildedDreams","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6235"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_6236"},{"setKey":"MartialArtist","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_6237"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Collei","lock":true,"id":"artifact_6238"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_6239"},{"setKey":"PrayersForIllumination","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_6240"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Dehya","lock":true,"id":"artifact_6241"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Mika","lock":true,"id":"artifact_6242"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Chiori","lock":true,"id":"artifact_6243"},{"setKey":"PrayersForDestiny","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_6244"},{"setKey":"NymphsDream","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6245"},{"setKey":"SongOfDaysPast","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Qiqi","lock":true,"id":"artifact_6246"},{"setKey":"PrayersForIllumination","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_6247"},{"setKey":"PrayersForWisdom","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_6248"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_6249"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Dori","lock":true,"id":"artifact_6250"},{"setKey":"NoblesseOblige","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6251"},{"setKey":"BloodstainedChivalry","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Mona","lock":true,"id":"artifact_6252"},{"setKey":"Thundersoother","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6253"},{"setKey":"DefendersWill","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_6254"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_6255"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6256"},{"setKey":"NymphsDream","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_6257"},{"setKey":"BloodstainedChivalry","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_6258"},{"setKey":"DeepwoodMemories","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6259"},{"setKey":"BlizzardStrayer","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_6260"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_6261"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_6262"},{"setKey":"GoldenTroupe","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6263"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_6264"},{"setKey":"PrayersForWisdom","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"YunJin","lock":true,"id":"artifact_6265"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6266"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_6267"},{"setKey":"VourukashasGlow","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6268"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_6269"},{"setKey":"RetracingBolide","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_6270"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Collei","lock":true,"id":"artifact_6271"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_6272"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_6273"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_6274"},{"setKey":"SongOfDaysPast","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_6275"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_6276"},{"setKey":"TheExile","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_6277"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_6278"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_6279"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_6280"},{"setKey":"GoldenTroupe","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_6281"},{"setKey":"PrayersForDestiny","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Collei","lock":true,"id":"artifact_6282"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"YunJin","lock":true,"id":"artifact_6283"},{"setKey":"TravelingDoctor","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_6284"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_6285"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_6286"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_6287"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_6288"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Charlotte","lock":true,"id":"artifact_6289"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_6290"},{"setKey":"ArchaicPetra","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Razor","lock":true,"id":"artifact_6291"},{"setKey":"PrayersForWisdom","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_6292"},{"setKey":"NoblesseOblige","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_6293"},{"setKey":"ArchaicPetra","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_6294"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_6295"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_6296"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_6297"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_6298"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Freminet","lock":true,"id":"artifact_6299"},{"setKey":"PrayersForIllumination","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6300"},{"setKey":"NoblesseOblige","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_6301"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_6302"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_6303"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Venti","lock":true,"id":"artifact_6304"},{"setKey":"BloodstainedChivalry","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6305"},{"setKey":"PrayersForDestiny","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6306"},{"setKey":"RetracingBolide","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_6307"},{"setKey":"GoldenTroupe","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Gorou","lock":true,"id":"artifact_6308"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_6309"},{"setKey":"MaidenBeloved","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Jean","lock":true,"id":"artifact_6310"},{"setKey":"OceanHuedClam","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_6311"},{"setKey":"ViridescentVenerer","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6312"},{"setKey":"VermillionHereafter","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_6313"},{"setKey":"GoldenTroupe","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6314"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_6315"},{"setKey":"GladiatorsFinale","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Albedo","lock":true,"id":"artifact_6316"},{"setKey":"DeepwoodMemories","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Jean","lock":true,"id":"artifact_6317"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_6318"},{"setKey":"Berserker","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_6319"},{"setKey":"TinyMiracle","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Mika","lock":true,"id":"artifact_6320"},{"setKey":"PrayersForIllumination","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_6321"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_6322"},{"setKey":"RetracingBolide","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_6323"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_6324"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_6325"},{"setKey":"TinyMiracle","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Gaming","lock":true,"id":"artifact_6326"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_6327"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_6328"},{"setKey":"NymphsDream","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_6329"},{"setKey":"MartialArtist","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Lyney","lock":true,"id":"artifact_6330"},{"setKey":"LuckyDog","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_6331"},{"setKey":"Berserker","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_6332"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_6333"},{"setKey":"Thundersoother","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_6334"},{"setKey":"DeepwoodMemories","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_6335"},{"setKey":"Adventurer","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_6336"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_6337"},{"setKey":"OceanHuedClam","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_6338"},{"setKey":"ArchaicPetra","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6339"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_6340"},{"setKey":"TravelingDoctor","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_6341"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_6342"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_6343"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_6344"},{"setKey":"ArchaicPetra","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6345"},{"setKey":"TinyMiracle","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_6346"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Amber","lock":true,"id":"artifact_6347"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_6348"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Noelle","lock":true,"id":"artifact_6349"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_6350"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_6351"},{"setKey":"GoldenTroupe","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_6352"},{"setKey":"PrayersForDestiny","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Bennett","lock":true,"id":"artifact_6353"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_6354"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_6355"},{"setKey":"TinyMiracle","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kirara","lock":true,"id":"artifact_6356"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_6357"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_6358"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_6359"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Noelle","lock":true,"id":"artifact_6360"},{"setKey":"DeepwoodMemories","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xiao","lock":true,"id":"artifact_6361"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_6362"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6363"},{"setKey":"DeepwoodMemories","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_6364"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6365"},{"setKey":"OceanHuedClam","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_6366"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_6367"},{"setKey":"DefendersWill","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6368"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Freminet","lock":true,"id":"artifact_6369"},{"setKey":"PrayersToSpringtime","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_6370"},{"setKey":"ThunderingFury","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_6371"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Gorou","lock":true,"id":"artifact_6372"},{"setKey":"Thundersoother","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_6373"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6374"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6375"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_6376"},{"setKey":"MarechausseeHunter","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_6377"},{"setKey":"NymphsDream","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_6378"},{"setKey":"Scholar","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_6379"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Aloy","lock":true,"id":"artifact_6380"},{"setKey":"GladiatorsFinale","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Dori","lock":true,"id":"artifact_6381"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6382"},{"setKey":"Thundersoother","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_6383"},{"setKey":"TravelingDoctor","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6384"},{"setKey":"PrayersForDestiny","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Cyno","lock":true,"id":"artifact_6385"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"YunJin","lock":true,"id":"artifact_6386"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_6387"},{"setKey":"TravelingDoctor","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6388"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6389"},{"setKey":"PrayersForDestiny","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_6390"},{"setKey":"TinyMiracle","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_6391"},{"setKey":"ThunderingFury","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6392"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Aloy","lock":true,"id":"artifact_6393"},{"setKey":"VourukashasGlow","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Collei","lock":true,"id":"artifact_6394"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6395"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6396"},{"setKey":"OceanHuedClam","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_6397"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Navia","lock":true,"id":"artifact_6398"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_6399"},{"setKey":"Instructor","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Layla","lock":true,"id":"artifact_6400"},{"setKey":"Gambler","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Gorou","lock":true,"id":"artifact_6401"},{"setKey":"WanderersTroupe","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_6402"},{"setKey":"RetracingBolide","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_6403"},{"setKey":"ViridescentVenerer","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Collei","lock":true,"id":"artifact_6404"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6405"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_6406"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_6407"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_6408"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_6409"},{"setKey":"HeartOfDepth","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_6410"},{"setKey":"PaleFlame","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_6411"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_6412"},{"setKey":"VourukashasGlow","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_6413"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Venti","lock":true,"id":"artifact_6414"},{"setKey":"TinyMiracle","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_6415"},{"setKey":"NoblesseOblige","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_6416"},{"setKey":"BloodstainedChivalry","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_6417"},{"setKey":"NymphsDream","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6418"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_6419"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Aloy","lock":true,"id":"artifact_6420"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6421"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_6422"},{"setKey":"Thundersoother","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_6423"},{"setKey":"ThunderingFury","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6424"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_6425"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Barbara","lock":true,"id":"artifact_6426"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_6427"},{"setKey":"NymphsDream","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_6428"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_6429"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_6430"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6431"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_6432"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_6433"},{"setKey":"NoblesseOblige","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_6434"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_6435"},{"setKey":"TheExile","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6436"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_6437"},{"setKey":"PaleFlame","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6438"},{"setKey":"Berserker","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6439"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6440"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_6441"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Furina","lock":true,"id":"artifact_6442"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_6443"},{"setKey":"TheExile","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_6444"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Charlotte","lock":true,"id":"artifact_6445"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_6446"},{"setKey":"TinyMiracle","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_6447"},{"setKey":"GladiatorsFinale","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_6448"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_6449"},{"setKey":"MaidenBeloved","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_6450"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_6451"},{"setKey":"GildedDreams","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_6452"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6453"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_6454"},{"setKey":"PaleFlame","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Gaming","lock":true,"id":"artifact_6455"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6456"},{"setKey":"VermillionHereafter","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6457"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_6458"},{"setKey":"GoldenTroupe","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_6459"},{"setKey":"GladiatorsFinale","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6460"},{"setKey":"PaleFlame","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_6461"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_6462"},{"setKey":"TinyMiracle","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_6463"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Barbara","lock":true,"id":"artifact_6464"},{"setKey":"SongOfDaysPast","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6465"},{"setKey":"WanderersTroupe","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_6466"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_6467"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gorou","lock":true,"id":"artifact_6468"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_6469"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_6470"},{"setKey":"PaleFlame","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6471"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_6472"},{"setKey":"LuckyDog","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_6473"},{"setKey":"VermillionHereafter","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"HuTao","lock":true,"id":"artifact_6474"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_6475"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6476"},{"setKey":"Thundersoother","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Beidou","lock":true,"id":"artifact_6477"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_6478"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Gaming","lock":true,"id":"artifact_6479"},{"setKey":"Lavawalker","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6480"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_6481"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Razor","lock":true,"id":"artifact_6482"},{"setKey":"DefendersWill","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_6483"},{"setKey":"Gambler","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6484"},{"setKey":"RetracingBolide","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Freminet","lock":true,"id":"artifact_6485"},{"setKey":"ThunderingFury","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6486"},{"setKey":"DefendersWill","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_6487"},{"setKey":"NoblesseOblige","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_6488"},{"setKey":"GoldenTroupe","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_6489"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6490"},{"setKey":"NoblesseOblige","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_6491"},{"setKey":"DefendersWill","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Razor","lock":true,"id":"artifact_6492"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6493"},{"setKey":"GoldenTroupe","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_6494"},{"setKey":"MartialArtist","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_6495"},{"setKey":"BloodstainedChivalry","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_6496"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"YunJin","lock":true,"id":"artifact_6497"},{"setKey":"VermillionHereafter","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_6498"},{"setKey":"OceanHuedClam","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6499"},{"setKey":"Scholar","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6500"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_6501"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Layla","lock":true,"id":"artifact_6502"},{"setKey":"HeartOfDepth","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6503"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_6504"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Beidou","lock":true,"id":"artifact_6505"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_6506"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Collei","lock":true,"id":"artifact_6507"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Freminet","lock":true,"id":"artifact_6508"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_6509"},{"setKey":"Thundersoother","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6510"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6511"},{"setKey":"PaleFlame","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Diluc","lock":true,"id":"artifact_6512"},{"setKey":"PrayersForIllumination","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_6513"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6514"},{"setKey":"Scholar","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_6515"},{"setKey":"OceanHuedClam","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Freminet","lock":true,"id":"artifact_6516"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6517"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Dehya","lock":true,"id":"artifact_6518"},{"setKey":"GoldenTroupe","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_6519"},{"setKey":"PaleFlame","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_6520"},{"setKey":"TravelingDoctor","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_6521"},{"setKey":"LuckyDog","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Amber","lock":true,"id":"artifact_6522"},{"setKey":"MaidenBeloved","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_6523"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6524"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6525"},{"setKey":"PrayersForIllumination","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_6526"},{"setKey":"ThunderingFury","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_6527"},{"setKey":"BraveHeart","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6528"},{"setKey":"MaidenBeloved","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Freminet","lock":true,"id":"artifact_6529"},{"setKey":"DefendersWill","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_6530"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6531"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Layla","lock":true,"id":"artifact_6532"},{"setKey":"MartialArtist","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6533"},{"setKey":"Lavawalker","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_6534"},{"setKey":"RetracingBolide","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6535"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_6536"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_6537"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_6538"},{"setKey":"PrayersToSpringtime","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Gaming","lock":true,"id":"artifact_6539"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_6540"},{"setKey":"ViridescentVenerer","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6541"},{"setKey":"OceanHuedClam","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6542"},{"setKey":"Adventurer","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6543"},{"setKey":"Adventurer","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_6544"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Furina","lock":true,"id":"artifact_6545"},{"setKey":"PrayersForWisdom","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_6546"},{"setKey":"MaidenBeloved","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_6547"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_6548"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_6549"},{"setKey":"PrayersForDestiny","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6550"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_6551"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_6552"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Traveler","lock":true,"id":"artifact_6553"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_6554"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6555"},{"setKey":"DeepwoodMemories","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_6556"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_6557"},{"setKey":"ThunderingFury","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_6558"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_6559"},{"setKey":"NymphsDream","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_6560"},{"setKey":"RetracingBolide","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_6561"},{"setKey":"TheExile","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Lisa","lock":true,"id":"artifact_6562"},{"setKey":"GladiatorsFinale","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_6563"},{"setKey":"MaidenBeloved","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_6564"},{"setKey":"TheExile","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_6565"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xiao","lock":true,"id":"artifact_6566"},{"setKey":"PrayersToSpringtime","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Yanfei","lock":true,"id":"artifact_6567"},{"setKey":"Adventurer","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Diona","lock":true,"id":"artifact_6568"},{"setKey":"GoldenTroupe","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Jean","lock":true,"id":"artifact_6569"},{"setKey":"TinyMiracle","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6570"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Chiori","lock":true,"id":"artifact_6571"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"YunJin","lock":true,"id":"artifact_6572"},{"setKey":"BlizzardStrayer","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_6573"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_6574"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_6575"},{"setKey":"Berserker","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6576"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6577"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6578"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_6579"},{"setKey":"Gambler","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6580"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_6581"},{"setKey":"WanderersTroupe","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6582"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_6583"},{"setKey":"NoblesseOblige","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6584"},{"setKey":"TheExile","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6585"},{"setKey":"MartialArtist","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6586"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Candace","lock":true,"id":"artifact_6587"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Venti","lock":true,"id":"artifact_6588"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6589"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_6590"},{"setKey":"Scholar","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_6591"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Noelle","lock":true,"id":"artifact_6592"},{"setKey":"GladiatorsFinale","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_6593"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_6594"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6595"},{"setKey":"MarechausseeHunter","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_6596"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xiao","lock":true,"id":"artifact_6597"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Sayu","lock":true,"id":"artifact_6598"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_6599"},{"setKey":"NymphsDream","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_6600"},{"setKey":"LuckyDog","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6601"},{"setKey":"NoblesseOblige","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6602"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_6603"},{"setKey":"ViridescentVenerer","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_6604"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Keqing","lock":true,"id":"artifact_6605"},{"setKey":"PaleFlame","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Freminet","lock":true,"id":"artifact_6606"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Jean","lock":true,"id":"artifact_6607"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dori","lock":true,"id":"artifact_6608"},{"setKey":"WanderersTroupe","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6609"},{"setKey":"PrayersForIllumination","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_6610"},{"setKey":"DeepwoodMemories","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6611"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_6612"},{"setKey":"RetracingBolide","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_6613"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_6614"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_6615"},{"setKey":"Gambler","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lyney","lock":true,"id":"artifact_6616"},{"setKey":"TheExile","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_6617"},{"setKey":"Instructor","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Ningguang","lock":true,"id":"artifact_6618"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_6619"},{"setKey":"Gambler","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6620"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Albedo","lock":true,"id":"artifact_6621"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Dori","lock":true,"id":"artifact_6622"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_6623"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6624"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Thoma","lock":true,"id":"artifact_6625"},{"setKey":"Berserker","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6626"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_6627"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6628"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_6629"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_6630"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lyney","lock":true,"id":"artifact_6631"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_6632"},{"setKey":"PrayersForWisdom","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_6633"},{"setKey":"PaleFlame","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Diona","lock":true,"id":"artifact_6634"},{"setKey":"Scholar","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6635"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_6636"},{"setKey":"BloodstainedChivalry","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_6637"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_6638"},{"setKey":"BraveHeart","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Mona","lock":true,"id":"artifact_6639"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_6640"},{"setKey":"ArchaicPetra","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Jean","lock":true,"id":"artifact_6641"},{"setKey":"BraveHeart","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6642"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Keqing","lock":true,"id":"artifact_6643"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Jean","lock":true,"id":"artifact_6644"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Layla","lock":true,"id":"artifact_6645"},{"setKey":"TinyMiracle","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_6646"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_6647"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_6648"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6649"},{"setKey":"RetracingBolide","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"YunJin","lock":true,"id":"artifact_6650"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_6651"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6652"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_6653"},{"setKey":"MarechausseeHunter","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_6654"},{"setKey":"Lavawalker","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_6655"},{"setKey":"Instructor","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6656"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_6657"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_6658"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_6659"},{"setKey":"DeepwoodMemories","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_6660"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_6661"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_6662"},{"setKey":"BloodstainedChivalry","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_6663"},{"setKey":"ThunderingFury","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6664"},{"setKey":"PaleFlame","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_6665"},{"setKey":"Lavawalker","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_6666"},{"setKey":"ArchaicPetra","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_6667"},{"setKey":"Thundersoother","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_6668"},{"setKey":"PrayersForWisdom","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6669"},{"setKey":"ViridescentVenerer","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6670"},{"setKey":"LuckyDog","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_6671"},{"setKey":"DeepwoodMemories","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_6672"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6673"},{"setKey":"PrayersForDestiny","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_6674"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_6675"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Diluc","lock":true,"id":"artifact_6676"},{"setKey":"OceanHuedClam","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6677"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_6678"},{"setKey":"LuckyDog","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Jean","lock":true,"id":"artifact_6679"},{"setKey":"GildedDreams","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6680"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_6681"},{"setKey":"HeartOfDepth","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_6682"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_6683"},{"setKey":"MartialArtist","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_6684"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_6685"},{"setKey":"WanderersTroupe","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6686"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_6687"},{"setKey":"Instructor","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6688"},{"setKey":"VermillionHereafter","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Qiqi","lock":true,"id":"artifact_6689"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_6690"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6691"},{"setKey":"PrayersForDestiny","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6692"},{"setKey":"GladiatorsFinale","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6693"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_6694"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_6695"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_6696"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_6697"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Diona","lock":true,"id":"artifact_6698"},{"setKey":"DefendersWill","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_6699"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_6700"},{"setKey":"WanderersTroupe","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_6701"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_6702"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_6703"},{"setKey":"DeepwoodMemories","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_6704"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Albedo","lock":true,"id":"artifact_6705"},{"setKey":"DeepwoodMemories","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6706"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6707"},{"setKey":"Gambler","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_6708"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_6709"},{"setKey":"PrayersToSpringtime","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_6710"},{"setKey":"VermillionHereafter","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_6711"},{"setKey":"BlizzardStrayer","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6712"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_6713"},{"setKey":"WanderersTroupe","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6714"},{"setKey":"VourukashasGlow","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_6715"},{"setKey":"RetracingBolide","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_6716"},{"setKey":"OceanHuedClam","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_6717"},{"setKey":"Berserker","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_6718"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_6719"},{"setKey":"GildedDreams","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6720"},{"setKey":"PaleFlame","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6721"},{"setKey":"Scholar","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_6722"},{"setKey":"Instructor","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_6723"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_6724"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Venti","lock":true,"id":"artifact_6725"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_6726"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_6727"},{"setKey":"SongOfDaysPast","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_6728"},{"setKey":"Thundersoother","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_6729"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_6730"},{"setKey":"Gambler","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_6731"},{"setKey":"PaleFlame","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_6732"},{"setKey":"Berserker","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yelan","lock":true,"id":"artifact_6733"},{"setKey":"Lavawalker","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_6734"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6735"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_6736"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Layla","lock":true,"id":"artifact_6737"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_6738"},{"setKey":"Gambler","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lisa","lock":true,"id":"artifact_6739"},{"setKey":"ArchaicPetra","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_6740"},{"setKey":"SongOfDaysPast","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6741"},{"setKey":"Instructor","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_6742"},{"setKey":"PaleFlame","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_6743"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xiao","lock":true,"id":"artifact_6744"},{"setKey":"BraveHeart","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_6745"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_6746"},{"setKey":"ThunderingFury","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Mona","lock":true,"id":"artifact_6747"},{"setKey":"PrayersForIllumination","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_6748"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_6749"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Jean","lock":true,"id":"artifact_6750"},{"setKey":"TravelingDoctor","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_6751"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_6752"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Chiori","lock":true,"id":"artifact_6753"},{"setKey":"Gambler","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_6754"},{"setKey":"GildedDreams","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Beidou","lock":true,"id":"artifact_6755"},{"setKey":"OceanHuedClam","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_6756"},{"setKey":"Scholar","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6757"},{"setKey":"MarechausseeHunter","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_6758"},{"setKey":"NoblesseOblige","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_6759"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_6760"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Sayu","lock":true,"id":"artifact_6761"},{"setKey":"GildedDreams","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6762"},{"setKey":"NoblesseOblige","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_6763"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_6764"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_6765"},{"setKey":"Lavawalker","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_6766"},{"setKey":"RetracingBolide","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_6767"},{"setKey":"PrayersToSpringtime","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6768"},{"setKey":"VourukashasGlow","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6769"},{"setKey":"BraveHeart","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_6770"},{"setKey":"MaidenBeloved","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6771"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_6772"},{"setKey":"PrayersForIllumination","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_6773"},{"setKey":"TinyMiracle","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6774"},{"setKey":"ArchaicPetra","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_6775"},{"setKey":"BraveHeart","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xiao","lock":true,"id":"artifact_6776"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_6777"},{"setKey":"Scholar","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6778"},{"setKey":"Gambler","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_6779"},{"setKey":"PrayersForDestiny","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_6780"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6781"},{"setKey":"Lavawalker","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Ningguang","lock":true,"id":"artifact_6782"},{"setKey":"TheExile","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_6783"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6784"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_6785"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_6786"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_6787"},{"setKey":"BraveHeart","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_6788"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Dori","lock":true,"id":"artifact_6789"},{"setKey":"PrayersToSpringtime","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Albedo","lock":true,"id":"artifact_6790"},{"setKey":"LuckyDog","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6791"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_6792"},{"setKey":"TravelingDoctor","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_6793"},{"setKey":"VourukashasGlow","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_6794"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gorou","lock":true,"id":"artifact_6795"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_6796"},{"setKey":"ViridescentVenerer","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_6797"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_6798"},{"setKey":"RetracingBolide","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Fischl","lock":true,"id":"artifact_6799"},{"setKey":"Lavawalker","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_6800"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_6801"},{"setKey":"MarechausseeHunter","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_6802"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_6803"},{"setKey":"TravelingDoctor","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_6804"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_6805"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_6806"},{"setKey":"Gambler","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Venti","lock":true,"id":"artifact_6807"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Candace","lock":true,"id":"artifact_6808"},{"setKey":"MaidenBeloved","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_6809"},{"setKey":"PaleFlame","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Traveler","lock":true,"id":"artifact_6810"},{"setKey":"Gambler","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_6811"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_6812"},{"setKey":"MarechausseeHunter","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_6813"},{"setKey":"VermillionHereafter","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_6814"},{"setKey":"NoblesseOblige","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_6815"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_6816"},{"setKey":"Scholar","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_6817"},{"setKey":"DefendersWill","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_6818"},{"setKey":"PrayersForDestiny","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_6819"},{"setKey":"Lavawalker","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_6820"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Noelle","lock":true,"id":"artifact_6821"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_6822"},{"setKey":"ArchaicPetra","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_6823"},{"setKey":"VermillionHereafter","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiao","lock":true,"id":"artifact_6824"},{"setKey":"MaidenBeloved","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Traveler","lock":true,"id":"artifact_6825"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Jean","lock":true,"id":"artifact_6826"},{"setKey":"WanderersTroupe","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_6827"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dori","lock":true,"id":"artifact_6828"},{"setKey":"OceanHuedClam","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Gorou","lock":true,"id":"artifact_6829"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_6830"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_6831"},{"setKey":"GladiatorsFinale","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_6832"},{"setKey":"TinyMiracle","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_6833"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_6834"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6835"},{"setKey":"Scholar","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Thoma","lock":true,"id":"artifact_6836"},{"setKey":"Thundersoother","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiao","lock":true,"id":"artifact_6837"},{"setKey":"GildedDreams","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mika","lock":true,"id":"artifact_6838"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Mika","lock":true,"id":"artifact_6839"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_6840"},{"setKey":"Lavawalker","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_6841"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_6842"},{"setKey":"PrayersForIllumination","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_6843"},{"setKey":"PaleFlame","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_6844"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Jean","lock":true,"id":"artifact_6845"},{"setKey":"WanderersTroupe","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6846"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_6847"},{"setKey":"BlizzardStrayer","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_6848"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_6849"},{"setKey":"DeepwoodMemories","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6850"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Mika","lock":true,"id":"artifact_6851"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_6852"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_6853"},{"setKey":"BloodstainedChivalry","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Keqing","lock":true,"id":"artifact_6854"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_6855"},{"setKey":"MarechausseeHunter","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Lyney","lock":true,"id":"artifact_6856"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_6857"},{"setKey":"GoldenTroupe","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_6858"},{"setKey":"MarechausseeHunter","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_6859"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_6860"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_6861"},{"setKey":"BloodstainedChivalry","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_6862"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_6863"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_6864"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6865"},{"setKey":"PrayersForIllumination","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_6866"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_6867"},{"setKey":"LuckyDog","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6868"},{"setKey":"PrayersToSpringtime","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_6869"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_6870"},{"setKey":"OceanHuedClam","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_6871"},{"setKey":"DefendersWill","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Nahida","lock":true,"id":"artifact_6872"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Qiqi","lock":true,"id":"artifact_6873"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_6874"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Dehya","lock":true,"id":"artifact_6875"},{"setKey":"TravelingDoctor","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_6876"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6877"},{"setKey":"OceanHuedClam","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_6878"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Dori","lock":true,"id":"artifact_6879"},{"setKey":"Thundersoother","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Diona","lock":true,"id":"artifact_6880"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6881"},{"setKey":"TinyMiracle","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_6882"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_6883"},{"setKey":"GoldenTroupe","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_6884"},{"setKey":"PrayersForIllumination","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_6885"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_6886"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_6887"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_6888"},{"setKey":"TinyMiracle","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_6889"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_6890"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_6891"},{"setKey":"TravelingDoctor","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Beidou","lock":true,"id":"artifact_6892"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_6893"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_6894"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Mika","lock":true,"id":"artifact_6895"},{"setKey":"BraveHeart","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_6896"},{"setKey":"Lavawalker","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_6897"},{"setKey":"Thundersoother","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_6898"},{"setKey":"WanderersTroupe","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6899"},{"setKey":"OceanHuedClam","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_6900"},{"setKey":"VermillionHereafter","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Gorou","lock":true,"id":"artifact_6901"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_6902"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Dori","lock":true,"id":"artifact_6903"},{"setKey":"Instructor","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_6904"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6905"},{"setKey":"Adventurer","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_6906"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_6907"},{"setKey":"DefendersWill","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6908"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_6909"},{"setKey":"PrayersToSpringtime","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_6910"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_6911"},{"setKey":"Berserker","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_6912"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_6913"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_6914"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_6915"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6916"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lyney","lock":true,"id":"artifact_6917"},{"setKey":"SongOfDaysPast","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Layla","lock":true,"id":"artifact_6918"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_6919"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Mona","lock":true,"id":"artifact_6920"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_6921"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_6922"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6923"},{"setKey":"GildedDreams","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_6924"},{"setKey":"TheExile","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_6925"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_6926"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Yelan","lock":true,"id":"artifact_6927"},{"setKey":"RetracingBolide","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_6928"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_6929"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_6930"},{"setKey":"WanderersTroupe","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_6931"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6932"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Chiori","lock":true,"id":"artifact_6933"},{"setKey":"Lavawalker","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6934"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiao","lock":true,"id":"artifact_6935"},{"setKey":"Berserker","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Navia","lock":true,"id":"artifact_6936"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_6937"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_6938"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Freminet","lock":true,"id":"artifact_6939"},{"setKey":"PaleFlame","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Traveler","lock":true,"id":"artifact_6940"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_6941"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6942"},{"setKey":"HeartOfDepth","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yelan","lock":true,"id":"artifact_6943"},{"setKey":"BlizzardStrayer","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_6944"},{"setKey":"Gambler","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6945"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_6946"},{"setKey":"VermillionHereafter","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Chiori","lock":true,"id":"artifact_6947"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_6948"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_6949"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_6950"},{"setKey":"VermillionHereafter","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Fischl","lock":true,"id":"artifact_6951"},{"setKey":"GoldenTroupe","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_6952"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_6953"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_6954"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_6955"},{"setKey":"Thundersoother","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_6956"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_6957"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_6958"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_6959"},{"setKey":"GoldenTroupe","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_6960"},{"setKey":"RetracingBolide","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"HuTao","lock":true,"id":"artifact_6961"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Mona","lock":true,"id":"artifact_6962"},{"setKey":"DefendersWill","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6963"},{"setKey":"NoblesseOblige","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_6964"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_6965"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_6966"},{"setKey":"Berserker","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6967"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Candace","lock":true,"id":"artifact_6968"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nilou","lock":true,"id":"artifact_6969"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6970"},{"setKey":"Berserker","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_6971"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_6972"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_6973"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_6974"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_6975"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Cyno","lock":true,"id":"artifact_6976"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_6977"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6978"},{"setKey":"MaidenBeloved","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_6979"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_6980"},{"setKey":"Gambler","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Diona","lock":true,"id":"artifact_6981"},{"setKey":"DefendersWill","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6982"},{"setKey":"DeepwoodMemories","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_6983"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Noelle","lock":true,"id":"artifact_6984"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_6985"},{"setKey":"PrayersForDestiny","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Layla","lock":true,"id":"artifact_6986"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_6987"},{"setKey":"Lavawalker","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_6988"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_6989"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_6990"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6991"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Dori","lock":true,"id":"artifact_6992"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_6993"},{"setKey":"Berserker","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_6994"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_6995"},{"setKey":"WanderersTroupe","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_6996"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_6997"},{"setKey":"Instructor","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_6998"},{"setKey":"DeepwoodMemories","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_6999"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7000"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_7001"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7002"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_7003"},{"setKey":"Gambler","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7004"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_7005"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7006"},{"setKey":"ArchaicPetra","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_7007"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7008"},{"setKey":"TravelingDoctor","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7009"},{"setKey":"TheExile","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_7010"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Beidou","lock":true,"id":"artifact_7011"},{"setKey":"TravelingDoctor","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7012"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_7013"},{"setKey":"ArchaicPetra","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_7014"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Keqing","lock":true,"id":"artifact_7015"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yelan","lock":true,"id":"artifact_7016"},{"setKey":"ArchaicPetra","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gorou","lock":true,"id":"artifact_7017"},{"setKey":"BlizzardStrayer","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7018"},{"setKey":"SongOfDaysPast","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_7019"},{"setKey":"MarechausseeHunter","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_7020"},{"setKey":"PrayersForIllumination","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_7021"},{"setKey":"Berserker","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_7022"},{"setKey":"ArchaicPetra","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_7023"},{"setKey":"Berserker","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Jean","lock":true,"id":"artifact_7024"},{"setKey":"SongOfDaysPast","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_7025"},{"setKey":"BraveHeart","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"YunJin","lock":true,"id":"artifact_7026"},{"setKey":"HeartOfDepth","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7027"},{"setKey":"SongOfDaysPast","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7028"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_7029"},{"setKey":"SongOfDaysPast","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_7030"},{"setKey":"Gambler","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_7031"},{"setKey":"ViridescentVenerer","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_7032"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7033"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Noelle","lock":true,"id":"artifact_7034"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Xiao","lock":true,"id":"artifact_7035"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_7036"},{"setKey":"Thundersoother","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_7037"},{"setKey":"BloodstainedChivalry","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7038"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Albedo","lock":true,"id":"artifact_7039"},{"setKey":"PrayersForWisdom","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_7040"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7041"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_7042"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_7043"},{"setKey":"MarechausseeHunter","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_7044"},{"setKey":"BraveHeart","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7045"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_7046"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7047"},{"setKey":"Thundersoother","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_7048"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_7049"},{"setKey":"ArchaicPetra","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_7050"},{"setKey":"Berserker","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_7051"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_7052"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7053"},{"setKey":"RetracingBolide","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7054"},{"setKey":"Scholar","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_7055"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_7056"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_7057"},{"setKey":"SongOfDaysPast","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_7058"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7059"},{"setKey":"PaleFlame","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7060"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7061"},{"setKey":"BlizzardStrayer","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_7062"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7063"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7064"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Barbara","lock":true,"id":"artifact_7065"},{"setKey":"Instructor","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7066"},{"setKey":"Gambler","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Keqing","lock":true,"id":"artifact_7067"},{"setKey":"OceanHuedClam","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_7068"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_7069"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Jean","lock":true,"id":"artifact_7070"},{"setKey":"SongOfDaysPast","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_7071"},{"setKey":"BlizzardStrayer","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_7072"},{"setKey":"WanderersTroupe","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_7073"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7074"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7075"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7076"},{"setKey":"BlizzardStrayer","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_7077"},{"setKey":"NymphsDream","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7078"},{"setKey":"HeartOfDepth","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_7079"},{"setKey":"Thundersoother","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_7080"},{"setKey":"Instructor","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_7081"},{"setKey":"ArchaicPetra","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7082"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Nilou","lock":true,"id":"artifact_7083"},{"setKey":"Scholar","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_7084"},{"setKey":"MaidenBeloved","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7085"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7086"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_7087"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_7088"},{"setKey":"VourukashasGlow","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_7089"},{"setKey":"GoldenTroupe","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_7090"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7091"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7092"},{"setKey":"ViridescentVenerer","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7093"},{"setKey":"Scholar","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7094"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7095"},{"setKey":"Thundersoother","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7096"},{"setKey":"GoldenTroupe","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_7097"},{"setKey":"PaleFlame","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_7098"},{"setKey":"Instructor","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_7099"},{"setKey":"ThunderingFury","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_7100"},{"setKey":"RetracingBolide","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_7101"},{"setKey":"TinyMiracle","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Bennett","lock":true,"id":"artifact_7102"},{"setKey":"PrayersToSpringtime","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_7103"},{"setKey":"Instructor","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_7104"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_7105"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_7106"},{"setKey":"WanderersTroupe","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_7107"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_7108"},{"setKey":"MaidenBeloved","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7109"},{"setKey":"NoblesseOblige","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_7110"},{"setKey":"ViridescentVenerer","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7111"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_7112"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_7113"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7114"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_7115"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Thoma","lock":true,"id":"artifact_7116"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Fischl","lock":true,"id":"artifact_7117"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_7118"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_7119"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7120"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7121"},{"setKey":"Adventurer","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7122"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7123"},{"setKey":"MaidenBeloved","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_7124"},{"setKey":"PaleFlame","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_7125"},{"setKey":"DefendersWill","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_7126"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7127"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7128"},{"setKey":"BlizzardStrayer","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_7129"},{"setKey":"Gambler","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Sayu","lock":true,"id":"artifact_7130"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7131"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7132"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_7133"},{"setKey":"ThunderingFury","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_7134"},{"setKey":"OceanHuedClam","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_7135"},{"setKey":"Instructor","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Lynette","lock":true,"id":"artifact_7136"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_7137"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_7138"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_7139"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_7140"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"YunJin","lock":true,"id":"artifact_7141"},{"setKey":"RetracingBolide","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_7142"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7143"},{"setKey":"ViridescentVenerer","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_7144"},{"setKey":"ViridescentVenerer","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7145"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_7146"},{"setKey":"Berserker","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7147"},{"setKey":"BlizzardStrayer","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_7148"},{"setKey":"BlizzardStrayer","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"HuTao","lock":true,"id":"artifact_7149"},{"setKey":"PrayersForIllumination","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_7150"},{"setKey":"NoblesseOblige","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Bennett","lock":true,"id":"artifact_7151"},{"setKey":"WanderersTroupe","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7152"},{"setKey":"Instructor","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7153"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_7154"},{"setKey":"PaleFlame","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_7155"},{"setKey":"PaleFlame","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_7156"},{"setKey":"TheExile","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Razor","lock":true,"id":"artifact_7157"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7158"},{"setKey":"WanderersTroupe","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Bennett","lock":true,"id":"artifact_7159"},{"setKey":"PrayersForIllumination","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Lyney","lock":true,"id":"artifact_7160"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_7161"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_7162"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7163"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Candace","lock":true,"id":"artifact_7164"},{"setKey":"ArchaicPetra","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7165"},{"setKey":"PrayersForIllumination","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7166"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_7167"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Mona","lock":true,"id":"artifact_7168"},{"setKey":"BloodstainedChivalry","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_7169"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7170"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7171"},{"setKey":"PrayersForDestiny","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_7172"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_7173"},{"setKey":"SongOfDaysPast","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_7174"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Gaming","lock":true,"id":"artifact_7175"},{"setKey":"DeepwoodMemories","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_7176"},{"setKey":"SongOfDaysPast","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7177"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7178"},{"setKey":"PrayersForDestiny","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7179"},{"setKey":"MaidenBeloved","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_7180"},{"setKey":"MaidenBeloved","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7181"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_7182"},{"setKey":"DefendersWill","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Mona","lock":true,"id":"artifact_7183"},{"setKey":"Thundersoother","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7184"},{"setKey":"OceanHuedClam","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_7185"},{"setKey":"ArchaicPetra","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_7186"},{"setKey":"ViridescentVenerer","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_7187"},{"setKey":"TinyMiracle","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7188"},{"setKey":"PrayersForWisdom","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_7189"},{"setKey":"HeartOfDepth","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7190"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_7191"},{"setKey":"Thundersoother","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_7192"},{"setKey":"BloodstainedChivalry","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7193"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_7194"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Traveler","lock":true,"id":"artifact_7195"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7196"},{"setKey":"Instructor","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Mika","lock":true,"id":"artifact_7197"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Barbara","lock":true,"id":"artifact_7198"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7199"},{"setKey":"MarechausseeHunter","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_7200"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_7201"},{"setKey":"PrayersForWisdom","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7202"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7203"},{"setKey":"PrayersForIllumination","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7204"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Cyno","lock":true,"id":"artifact_7205"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Venti","lock":true,"id":"artifact_7206"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7207"},{"setKey":"BraveHeart","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"HuTao","lock":true,"id":"artifact_7208"},{"setKey":"PrayersForWisdom","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7209"},{"setKey":"ViridescentVenerer","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_7210"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_7211"},{"setKey":"Scholar","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Razor","lock":true,"id":"artifact_7212"},{"setKey":"Lavawalker","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7213"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Razor","lock":true,"id":"artifact_7214"},{"setKey":"ArchaicPetra","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_7215"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7216"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7217"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7218"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_7219"},{"setKey":"TinyMiracle","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Venti","lock":true,"id":"artifact_7220"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Noelle","lock":true,"id":"artifact_7221"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_7222"},{"setKey":"ViridescentVenerer","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7223"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Eula","lock":true,"id":"artifact_7224"},{"setKey":"SongOfDaysPast","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_7225"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_7226"},{"setKey":"OceanHuedClam","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_7227"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7228"},{"setKey":"GoldenTroupe","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7229"},{"setKey":"Scholar","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7230"},{"setKey":"VourukashasGlow","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7231"},{"setKey":"PrayersForIllumination","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_7232"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7233"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7234"},{"setKey":"LuckyDog","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_7235"},{"setKey":"GoldenTroupe","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_7236"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_7237"},{"setKey":"Berserker","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_7238"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Nahida","lock":true,"id":"artifact_7239"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_7240"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7241"},{"setKey":"LuckyDog","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_7242"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_7243"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_7244"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_7245"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Keqing","lock":true,"id":"artifact_7246"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_7247"},{"setKey":"SongOfDaysPast","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_7248"},{"setKey":"DefendersWill","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_7249"},{"setKey":"TheExile","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Bennett","lock":true,"id":"artifact_7250"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_7251"},{"setKey":"ThunderingFury","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_7252"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7253"},{"setKey":"NoblesseOblige","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_7254"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_7255"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_7256"},{"setKey":"Scholar","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Nahida","lock":true,"id":"artifact_7257"},{"setKey":"GladiatorsFinale","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_7258"},{"setKey":"PrayersForIllumination","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7259"},{"setKey":"Lavawalker","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_7260"},{"setKey":"PrayersForIllumination","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Razor","lock":true,"id":"artifact_7261"},{"setKey":"Lavawalker","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_7262"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_7263"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_7264"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7265"},{"setKey":"BlizzardStrayer","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_7266"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7267"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7268"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_7269"},{"setKey":"Thundersoother","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7270"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7271"},{"setKey":"ThunderingFury","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7272"},{"setKey":"Berserker","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_7273"},{"setKey":"PrayersForIllumination","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_7274"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7275"},{"setKey":"MaidenBeloved","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7276"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7277"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_7278"},{"setKey":"TinyMiracle","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Bennett","lock":true,"id":"artifact_7279"},{"setKey":"ThunderingFury","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7280"},{"setKey":"SongOfDaysPast","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Barbara","lock":true,"id":"artifact_7281"},{"setKey":"MaidenBeloved","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7282"},{"setKey":"GladiatorsFinale","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_7283"},{"setKey":"NoblesseOblige","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7284"},{"setKey":"MartialArtist","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_7285"},{"setKey":"OceanHuedClam","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_7286"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7287"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7288"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7289"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Freminet","lock":true,"id":"artifact_7290"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7291"},{"setKey":"WanderersTroupe","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_7292"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_7293"},{"setKey":"PaleFlame","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_7294"},{"setKey":"Berserker","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_7295"},{"setKey":"NymphsDream","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mika","lock":true,"id":"artifact_7296"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_7297"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_7298"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Noelle","lock":true,"id":"artifact_7299"},{"setKey":"VourukashasGlow","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_7300"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_7301"},{"setKey":"LuckyDog","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_7302"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_7303"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_7304"},{"setKey":"MarechausseeHunter","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_7305"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Albedo","lock":true,"id":"artifact_7306"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7307"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7308"},{"setKey":"TinyMiracle","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_7309"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Baizhu","lock":true,"id":"artifact_7310"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_7311"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7312"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_7313"},{"setKey":"MaidenBeloved","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yelan","lock":true,"id":"artifact_7314"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7315"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7316"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7317"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_7318"},{"setKey":"Berserker","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7319"},{"setKey":"RetracingBolide","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_7320"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_7321"},{"setKey":"Gambler","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7322"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7323"},{"setKey":"VermillionHereafter","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7324"},{"setKey":"Scholar","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Keqing","lock":true,"id":"artifact_7325"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_7326"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Albedo","lock":true,"id":"artifact_7327"},{"setKey":"PrayersForIllumination","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_7328"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_7329"},{"setKey":"MaidenBeloved","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_7330"},{"setKey":"RetracingBolide","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Noelle","lock":true,"id":"artifact_7331"},{"setKey":"TheExile","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_7332"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7333"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Albedo","lock":true,"id":"artifact_7334"},{"setKey":"WanderersTroupe","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7335"},{"setKey":"NymphsDream","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7336"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_7337"},{"setKey":"PrayersForIllumination","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_7338"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7339"},{"setKey":"Gambler","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_7340"},{"setKey":"ViridescentVenerer","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7341"},{"setKey":"Instructor","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_7342"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_7343"},{"setKey":"VermillionHereafter","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_7344"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_7345"},{"setKey":"Thundersoother","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_7346"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_7347"},{"setKey":"Gambler","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_7348"},{"setKey":"VourukashasGlow","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_7349"},{"setKey":"PrayersForIllumination","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_7350"},{"setKey":"ViridescentVenerer","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_7351"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Mika","lock":true,"id":"artifact_7352"},{"setKey":"Berserker","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_7353"},{"setKey":"PrayersForIllumination","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_7354"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_7355"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_7356"},{"setKey":"BlizzardStrayer","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7357"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Mona","lock":true,"id":"artifact_7358"},{"setKey":"MartialArtist","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_7359"},{"setKey":"OceanHuedClam","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_7360"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7361"},{"setKey":"BlizzardStrayer","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_7362"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_7363"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7364"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7365"},{"setKey":"LuckyDog","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7366"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_7367"},{"setKey":"Scholar","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_7368"},{"setKey":"WanderersTroupe","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_7369"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_7370"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7371"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_7372"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_7373"},{"setKey":"PrayersToSpringtime","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_7374"},{"setKey":"OceanHuedClam","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_7375"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7376"},{"setKey":"BloodstainedChivalry","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7377"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Sayu","lock":true,"id":"artifact_7378"},{"setKey":"PrayersForWisdom","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7379"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_7380"},{"setKey":"MaidenBeloved","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7381"},{"setKey":"Berserker","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_7382"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_7383"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_7384"},{"setKey":"VermillionHereafter","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nilou","lock":true,"id":"artifact_7385"},{"setKey":"SongOfDaysPast","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Klee","lock":true,"id":"artifact_7386"},{"setKey":"MarechausseeHunter","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_7387"},{"setKey":"BlizzardStrayer","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_7388"},{"setKey":"PrayersToSpringtime","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_7389"},{"setKey":"DeepwoodMemories","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Nahida","lock":true,"id":"artifact_7390"},{"setKey":"Berserker","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7391"},{"setKey":"GladiatorsFinale","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Fischl","lock":true,"id":"artifact_7392"},{"setKey":"Thundersoother","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_7393"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_7394"},{"setKey":"BlizzardStrayer","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_7395"},{"setKey":"Scholar","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_7396"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7397"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_7398"},{"setKey":"Berserker","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Keqing","lock":true,"id":"artifact_7399"},{"setKey":"PrayersToSpringtime","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_7400"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_7401"},{"setKey":"TinyMiracle","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Traveler","lock":true,"id":"artifact_7402"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7403"},{"setKey":"Scholar","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_7404"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_7405"},{"setKey":"LuckyDog","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Diona","lock":true,"id":"artifact_7406"},{"setKey":"TheExile","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_7407"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_7408"},{"setKey":"Instructor","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Jean","lock":true,"id":"artifact_7409"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Gaming","lock":true,"id":"artifact_7410"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7411"},{"setKey":"PrayersToSpringtime","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gaming","lock":true,"id":"artifact_7412"},{"setKey":"GladiatorsFinale","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Traveler","lock":true,"id":"artifact_7413"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7414"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7415"},{"setKey":"WanderersTroupe","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_7416"},{"setKey":"Adventurer","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7417"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_7418"},{"setKey":"Berserker","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_7419"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_7420"},{"setKey":"PrayersToSpringtime","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_7421"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7422"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7423"},{"setKey":"LuckyDog","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7424"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_7425"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Nahida","lock":true,"id":"artifact_7426"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Nilou","lock":true,"id":"artifact_7427"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Chiori","lock":true,"id":"artifact_7428"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_7429"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_7430"},{"setKey":"Gambler","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Noelle","lock":true,"id":"artifact_7431"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7432"},{"setKey":"PaleFlame","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7433"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Freminet","lock":true,"id":"artifact_7434"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_7435"},{"setKey":"PaleFlame","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_7436"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_7437"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_7438"},{"setKey":"GladiatorsFinale","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7439"},{"setKey":"NymphsDream","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Yanfei","lock":true,"id":"artifact_7440"},{"setKey":"GoldenTroupe","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_7441"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_7442"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_7443"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Venti","lock":true,"id":"artifact_7444"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_7445"},{"setKey":"RetracingBolide","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7446"},{"setKey":"TinyMiracle","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_7447"},{"setKey":"BloodstainedChivalry","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7448"},{"setKey":"Adventurer","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_7449"},{"setKey":"VourukashasGlow","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_7450"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_7451"},{"setKey":"BraveHeart","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_7452"},{"setKey":"GildedDreams","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_7453"},{"setKey":"LuckyDog","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_7454"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_7455"},{"setKey":"SongOfDaysPast","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7456"},{"setKey":"TheExile","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Lyney","lock":true,"id":"artifact_7457"},{"setKey":"RetracingBolide","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_7458"},{"setKey":"MarechausseeHunter","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_7459"},{"setKey":"DeepwoodMemories","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_7460"},{"setKey":"ArchaicPetra","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Chiori","lock":true,"id":"artifact_7461"},{"setKey":"TravelingDoctor","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_7462"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_7463"},{"setKey":"PrayersForDestiny","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_7464"},{"setKey":"LuckyDog","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7465"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7466"},{"setKey":"BraveHeart","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7467"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7468"},{"setKey":"Berserker","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_7469"},{"setKey":"MartialArtist","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7470"},{"setKey":"MaidenBeloved","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7471"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_7472"},{"setKey":"PrayersForWisdom","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7473"},{"setKey":"Instructor","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_7474"},{"setKey":"Gambler","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Layla","lock":true,"id":"artifact_7475"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_7476"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_7477"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YunJin","lock":true,"id":"artifact_7478"},{"setKey":"LuckyDog","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_7479"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_7480"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_7481"},{"setKey":"Lavawalker","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Dori","lock":true,"id":"artifact_7482"},{"setKey":"NoblesseOblige","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Diluc","lock":true,"id":"artifact_7483"},{"setKey":"ViridescentVenerer","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7484"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Bennett","lock":true,"id":"artifact_7485"},{"setKey":"Gambler","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_7486"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Baizhu","lock":true,"id":"artifact_7487"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_7488"},{"setKey":"DeepwoodMemories","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_7489"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Razor","lock":true,"id":"artifact_7490"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7491"},{"setKey":"BraveHeart","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Dori","lock":true,"id":"artifact_7492"},{"setKey":"OceanHuedClam","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_7493"},{"setKey":"BraveHeart","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7494"},{"setKey":"Gambler","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"HuTao","lock":true,"id":"artifact_7495"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7496"},{"setKey":"PrayersToSpringtime","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_7497"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Freminet","lock":true,"id":"artifact_7498"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_7499"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_7500"},{"setKey":"BlizzardStrayer","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7501"},{"setKey":"VermillionHereafter","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7502"},{"setKey":"Lavawalker","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7503"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_7504"},{"setKey":"NymphsDream","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Xiao","lock":true,"id":"artifact_7505"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_7506"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yanfei","lock":true,"id":"artifact_7507"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7508"},{"setKey":"DefendersWill","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7509"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_7510"},{"setKey":"Adventurer","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7511"},{"setKey":"ThunderingFury","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_7512"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Chiori","lock":true,"id":"artifact_7513"},{"setKey":"PrayersForDestiny","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chiori","lock":true,"id":"artifact_7514"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_7515"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_7516"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_7517"},{"setKey":"PrayersForWisdom","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Freminet","lock":true,"id":"artifact_7518"},{"setKey":"Berserker","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_7519"},{"setKey":"Gambler","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_7520"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7521"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_7522"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7523"},{"setKey":"Gambler","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_7524"},{"setKey":"Berserker","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Gaming","lock":true,"id":"artifact_7525"},{"setKey":"Instructor","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7526"},{"setKey":"PrayersToSpringtime","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_7527"},{"setKey":"PrayersToSpringtime","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Barbara","lock":true,"id":"artifact_7528"},{"setKey":"NoblesseOblige","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_7529"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Nilou","lock":true,"id":"artifact_7530"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_7531"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_7532"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_7533"},{"setKey":"MaidenBeloved","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Razor","lock":true,"id":"artifact_7534"},{"setKey":"BloodstainedChivalry","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Traveler","lock":true,"id":"artifact_7535"},{"setKey":"BraveHeart","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7536"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7537"},{"setKey":"BraveHeart","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_7538"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_7539"},{"setKey":"MaidenBeloved","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7540"},{"setKey":"OceanHuedClam","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_7541"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_7542"},{"setKey":"ThunderingFury","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_7543"},{"setKey":"MarechausseeHunter","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_7544"},{"setKey":"OceanHuedClam","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_7545"},{"setKey":"Instructor","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7546"},{"setKey":"PrayersForWisdom","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7547"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_7548"},{"setKey":"DeepwoodMemories","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_7549"},{"setKey":"OceanHuedClam","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_7550"},{"setKey":"DefendersWill","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Candace","lock":true,"id":"artifact_7551"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7552"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_7553"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_7554"},{"setKey":"ViridescentVenerer","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_7555"},{"setKey":"PrayersForDestiny","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_7556"},{"setKey":"TheExile","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"HuTao","lock":true,"id":"artifact_7557"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_7558"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_7559"},{"setKey":"MaidenBeloved","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_7560"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Nahida","lock":true,"id":"artifact_7561"},{"setKey":"TravelingDoctor","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7562"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Bennett","lock":true,"id":"artifact_7563"},{"setKey":"VermillionHereafter","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_7564"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_7565"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7566"},{"setKey":"TinyMiracle","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7567"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_7568"},{"setKey":"LuckyDog","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7569"},{"setKey":"TravelingDoctor","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_7570"},{"setKey":"ViridescentVenerer","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7571"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_7572"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Yelan","lock":true,"id":"artifact_7573"},{"setKey":"Instructor","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_7574"},{"setKey":"PaleFlame","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Thoma","lock":true,"id":"artifact_7575"},{"setKey":"Thundersoother","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_7576"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7577"},{"setKey":"GildedDreams","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7578"},{"setKey":"GildedDreams","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_7579"},{"setKey":"DeepwoodMemories","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7580"},{"setKey":"PaleFlame","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7581"},{"setKey":"Berserker","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Nilou","lock":true,"id":"artifact_7582"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7583"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Diluc","lock":true,"id":"artifact_7584"},{"setKey":"DefendersWill","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_7585"},{"setKey":"GladiatorsFinale","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_7586"},{"setKey":"MartialArtist","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_7587"},{"setKey":"MaidenBeloved","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7588"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_7589"},{"setKey":"BraveHeart","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_7590"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7591"},{"setKey":"Gambler","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7592"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7593"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_7594"},{"setKey":"MarechausseeHunter","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7595"},{"setKey":"Adventurer","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_7596"},{"setKey":"MartialArtist","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_7597"},{"setKey":"PrayersToSpringtime","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7598"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Kirara","lock":true,"id":"artifact_7599"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7600"},{"setKey":"Lavawalker","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7601"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_7602"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_7603"},{"setKey":"ThunderingFury","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7604"},{"setKey":"TinyMiracle","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_7605"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7606"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7607"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_7608"},{"setKey":"Adventurer","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Navia","lock":true,"id":"artifact_7609"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7610"},{"setKey":"Instructor","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_7611"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_7612"},{"setKey":"GildedDreams","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_7613"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_7614"},{"setKey":"PrayersForDestiny","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_7615"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7616"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Cyno","lock":true,"id":"artifact_7617"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_7618"},{"setKey":"MaidenBeloved","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7619"},{"setKey":"VourukashasGlow","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7620"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_7621"},{"setKey":"PaleFlame","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7622"},{"setKey":"Scholar","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Thoma","lock":true,"id":"artifact_7623"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_7624"},{"setKey":"MartialArtist","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_7625"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7626"},{"setKey":"ArchaicPetra","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xiao","lock":true,"id":"artifact_7627"},{"setKey":"SongOfDaysPast","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_7628"},{"setKey":"BloodstainedChivalry","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7629"},{"setKey":"BraveHeart","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7630"},{"setKey":"NymphsDream","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7631"},{"setKey":"LuckyDog","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_7632"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_7633"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7634"},{"setKey":"Thundersoother","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_7635"},{"setKey":"GoldenTroupe","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_7636"},{"setKey":"Instructor","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_7637"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_7638"},{"setKey":"SongOfDaysPast","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7639"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7640"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_7641"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7642"},{"setKey":"Berserker","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_7643"},{"setKey":"ThunderingFury","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_7644"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_7645"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_7646"},{"setKey":"ThunderingFury","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7647"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_7648"},{"setKey":"WanderersTroupe","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_7649"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_7650"},{"setKey":"Berserker","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Razor","lock":true,"id":"artifact_7651"},{"setKey":"Berserker","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7652"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_7653"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Aloy","lock":true,"id":"artifact_7654"},{"setKey":"MaidenBeloved","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_7655"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Diona","lock":true,"id":"artifact_7656"},{"setKey":"BlizzardStrayer","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7657"},{"setKey":"PaleFlame","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7658"},{"setKey":"WanderersTroupe","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Furina","lock":true,"id":"artifact_7659"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_7660"},{"setKey":"ArchaicPetra","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_7661"},{"setKey":"DeepwoodMemories","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_7662"},{"setKey":"BloodstainedChivalry","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_7663"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7664"},{"setKey":"Adventurer","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Yelan","lock":true,"id":"artifact_7665"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_7666"},{"setKey":"TheExile","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Razor","lock":true,"id":"artifact_7667"},{"setKey":"GoldenTroupe","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_7668"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7669"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7670"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7671"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Bennett","lock":true,"id":"artifact_7672"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7673"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_7674"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_7675"},{"setKey":"PrayersForIllumination","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7676"},{"setKey":"HeartOfDepth","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7677"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Mika","lock":true,"id":"artifact_7678"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_7679"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7680"},{"setKey":"OceanHuedClam","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_7681"},{"setKey":"MartialArtist","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_7682"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Furina","lock":true,"id":"artifact_7683"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Albedo","lock":true,"id":"artifact_7684"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7685"},{"setKey":"NymphsDream","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7686"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Diluc","lock":true,"id":"artifact_7687"},{"setKey":"Thundersoother","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Mika","lock":true,"id":"artifact_7688"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7689"},{"setKey":"RetracingBolide","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_7690"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_7691"},{"setKey":"PrayersForDestiny","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7692"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_7693"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_7694"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_7695"},{"setKey":"MartialArtist","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7696"},{"setKey":"VermillionHereafter","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_7697"},{"setKey":"MartialArtist","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"HuTao","lock":true,"id":"artifact_7698"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7699"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_7700"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_7701"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_7702"},{"setKey":"HeartOfDepth","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7703"},{"setKey":"VourukashasGlow","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_7704"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Yanfei","lock":true,"id":"artifact_7705"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kirara","lock":true,"id":"artifact_7706"},{"setKey":"BraveHeart","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7707"},{"setKey":"PrayersForWisdom","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_7708"},{"setKey":"MarechausseeHunter","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_7709"},{"setKey":"LuckyDog","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7710"},{"setKey":"OceanHuedClam","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_7711"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_7712"},{"setKey":"RetracingBolide","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7713"},{"setKey":"Instructor","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Freminet","lock":true,"id":"artifact_7714"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_7715"},{"setKey":"Thundersoother","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7716"},{"setKey":"BlizzardStrayer","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_7717"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Mona","lock":true,"id":"artifact_7718"},{"setKey":"TinyMiracle","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_7719"},{"setKey":"WanderersTroupe","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7720"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_7721"},{"setKey":"MartialArtist","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_7722"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_7723"},{"setKey":"BlizzardStrayer","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7724"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_7725"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Beidou","lock":true,"id":"artifact_7726"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_7727"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_7728"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7729"},{"setKey":"ViridescentVenerer","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_7730"},{"setKey":"GildedDreams","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7731"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_7732"},{"setKey":"Thundersoother","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7733"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7734"},{"setKey":"Berserker","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7735"},{"setKey":"PrayersToSpringtime","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Freminet","lock":true,"id":"artifact_7736"},{"setKey":"BraveHeart","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7737"},{"setKey":"ArchaicPetra","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_7738"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_7739"},{"setKey":"MarechausseeHunter","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7740"},{"setKey":"GladiatorsFinale","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_7741"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_7742"},{"setKey":"RetracingBolide","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Amber","lock":true,"id":"artifact_7743"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_7744"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_7745"},{"setKey":"GoldenTroupe","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Fischl","lock":true,"id":"artifact_7746"},{"setKey":"TinyMiracle","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Freminet","lock":true,"id":"artifact_7747"},{"setKey":"GildedDreams","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7748"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Chiori","lock":true,"id":"artifact_7749"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_7750"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7751"},{"setKey":"GladiatorsFinale","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7752"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_7753"},{"setKey":"BraveHeart","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7754"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Navia","lock":true,"id":"artifact_7755"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"YunJin","lock":true,"id":"artifact_7756"},{"setKey":"BraveHeart","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"HuTao","lock":true,"id":"artifact_7757"},{"setKey":"Thundersoother","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7758"},{"setKey":"BlizzardStrayer","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Fischl","lock":true,"id":"artifact_7759"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7760"},{"setKey":"MaidenBeloved","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_7761"},{"setKey":"NoblesseOblige","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_7762"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_7763"},{"setKey":"PrayersForIllumination","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_7764"},{"setKey":"TravelingDoctor","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_7765"},{"setKey":"MarechausseeHunter","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7766"},{"setKey":"TinyMiracle","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_7767"},{"setKey":"Instructor","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_7768"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_7769"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_7770"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7771"},{"setKey":"Lavawalker","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_7772"},{"setKey":"Lavawalker","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Jean","lock":true,"id":"artifact_7773"},{"setKey":"TinyMiracle","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7774"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Jean","lock":true,"id":"artifact_7775"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Cyno","lock":true,"id":"artifact_7776"},{"setKey":"PrayersForIllumination","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_7777"},{"setKey":"TheExile","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7778"},{"setKey":"GildedDreams","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7779"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7780"},{"setKey":"PrayersToSpringtime","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_7781"},{"setKey":"DeepwoodMemories","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lisa","lock":true,"id":"artifact_7782"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_7783"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_7784"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_7785"},{"setKey":"Adventurer","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_7786"},{"setKey":"Instructor","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Keqing","lock":true,"id":"artifact_7787"},{"setKey":"Instructor","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7788"},{"setKey":"VermillionHereafter","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7789"},{"setKey":"Gambler","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xiao","lock":true,"id":"artifact_7790"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7791"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Diluc","lock":true,"id":"artifact_7792"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7793"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_7794"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_7795"},{"setKey":"NymphsDream","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Beidou","lock":true,"id":"artifact_7796"},{"setKey":"VermillionHereafter","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Nilou","lock":true,"id":"artifact_7797"},{"setKey":"OceanHuedClam","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7798"},{"setKey":"Adventurer","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_7799"},{"setKey":"OceanHuedClam","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7800"},{"setKey":"VourukashasGlow","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7801"},{"setKey":"Scholar","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_7802"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_7803"},{"setKey":"Berserker","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7804"},{"setKey":"ArchaicPetra","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Keqing","lock":true,"id":"artifact_7805"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_7806"},{"setKey":"MartialArtist","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_7807"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Collei","lock":true,"id":"artifact_7808"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7809"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Klee","lock":true,"id":"artifact_7810"},{"setKey":"SongOfDaysPast","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Aloy","lock":true,"id":"artifact_7811"},{"setKey":"MarechausseeHunter","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_7812"},{"setKey":"GildedDreams","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7813"},{"setKey":"HeartOfDepth","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7814"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_7815"},{"setKey":"TinyMiracle","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Gorou","lock":true,"id":"artifact_7816"},{"setKey":"PrayersForWisdom","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Diona","lock":true,"id":"artifact_7817"},{"setKey":"SongOfDaysPast","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Freminet","lock":true,"id":"artifact_7818"},{"setKey":"Lavawalker","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_7819"},{"setKey":"BlizzardStrayer","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Furina","lock":true,"id":"artifact_7820"},{"setKey":"GildedDreams","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7821"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_7822"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_7823"},{"setKey":"Thundersoother","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_7824"},{"setKey":"BloodstainedChivalry","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7825"},{"setKey":"RetracingBolide","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_7826"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_7827"},{"setKey":"GoldenTroupe","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7828"},{"setKey":"GladiatorsFinale","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_7829"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7830"},{"setKey":"ArchaicPetra","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_7831"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_7832"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7833"},{"setKey":"TinyMiracle","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_7834"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7835"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"HuTao","lock":true,"id":"artifact_7836"},{"setKey":"GildedDreams","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_7837"},{"setKey":"Lavawalker","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7838"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Nahida","lock":true,"id":"artifact_7839"},{"setKey":"PaleFlame","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_7840"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7841"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7842"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_7843"},{"setKey":"ThunderingFury","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7844"},{"setKey":"VermillionHereafter","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7845"},{"setKey":"TheExile","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7846"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7847"},{"setKey":"Adventurer","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_7848"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lisa","lock":true,"id":"artifact_7849"},{"setKey":"ViridescentVenerer","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lynette","lock":true,"id":"artifact_7850"},{"setKey":"OceanHuedClam","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7851"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7852"},{"setKey":"OceanHuedClam","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Nahida","lock":true,"id":"artifact_7853"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7854"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_7855"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Noelle","lock":true,"id":"artifact_7856"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7857"},{"setKey":"BraveHeart","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_7858"},{"setKey":"OceanHuedClam","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_7859"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7860"},{"setKey":"NymphsDream","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_7861"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7862"},{"setKey":"SongOfDaysPast","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Traveler","lock":true,"id":"artifact_7863"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_7864"},{"setKey":"PrayersForWisdom","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Dehya","lock":true,"id":"artifact_7865"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Candace","lock":true,"id":"artifact_7866"},{"setKey":"GladiatorsFinale","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_7867"},{"setKey":"Scholar","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_7868"},{"setKey":"PrayersToSpringtime","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_7869"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Dori","lock":true,"id":"artifact_7870"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_7871"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_7872"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_7873"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_7874"},{"setKey":"Berserker","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_7875"},{"setKey":"Scholar","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7876"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_7877"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_7878"},{"setKey":"Adventurer","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_7879"},{"setKey":"Adventurer","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"HuTao","lock":true,"id":"artifact_7880"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7881"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_7882"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_7883"},{"setKey":"Adventurer","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Beidou","lock":true,"id":"artifact_7884"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7885"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_7886"},{"setKey":"Gambler","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Diluc","lock":true,"id":"artifact_7887"},{"setKey":"Adventurer","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7888"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_7889"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7890"},{"setKey":"MartialArtist","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_7891"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Chiori","lock":true,"id":"artifact_7892"},{"setKey":"BlizzardStrayer","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7893"},{"setKey":"HeartOfDepth","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7894"},{"setKey":"HeartOfDepth","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_7895"},{"setKey":"BraveHeart","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7896"},{"setKey":"SongOfDaysPast","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_7897"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_7898"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_7899"},{"setKey":"RetracingBolide","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7900"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7901"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Sayu","lock":true,"id":"artifact_7902"},{"setKey":"VermillionHereafter","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_7903"},{"setKey":"GladiatorsFinale","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7904"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Aloy","lock":true,"id":"artifact_7905"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_7906"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_7907"},{"setKey":"TheExile","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_7908"},{"setKey":"PrayersToSpringtime","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_7909"},{"setKey":"BraveHeart","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7910"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_7911"},{"setKey":"PaleFlame","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_7912"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7913"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_7914"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_7915"},{"setKey":"VermillionHereafter","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_7916"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Navia","lock":true,"id":"artifact_7917"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7918"},{"setKey":"GoldenTroupe","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7919"},{"setKey":"OceanHuedClam","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_7920"},{"setKey":"VourukashasGlow","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_7921"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_7922"},{"setKey":"VermillionHereafter","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7923"},{"setKey":"Adventurer","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_7924"},{"setKey":"Instructor","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Mika","lock":true,"id":"artifact_7925"},{"setKey":"BlizzardStrayer","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7926"},{"setKey":"TheExile","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Furina","lock":true,"id":"artifact_7927"},{"setKey":"NymphsDream","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_7928"},{"setKey":"Lavawalker","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Gorou","lock":true,"id":"artifact_7929"},{"setKey":"TheExile","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_7930"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7931"},{"setKey":"PrayersForDestiny","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_7932"},{"setKey":"TheExile","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_7933"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7934"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_7935"},{"setKey":"RetracingBolide","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_7936"},{"setKey":"ArchaicPetra","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_7937"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_7938"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Candace","lock":true,"id":"artifact_7939"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_7940"},{"setKey":"PrayersForWisdom","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_7941"},{"setKey":"GladiatorsFinale","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_7942"},{"setKey":"Thundersoother","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Furina","lock":true,"id":"artifact_7943"},{"setKey":"PrayersForWisdom","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_7944"},{"setKey":"PrayersForWisdom","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_7945"},{"setKey":"LuckyDog","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Diluc","lock":true,"id":"artifact_7946"},{"setKey":"ArchaicPetra","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Barbara","lock":true,"id":"artifact_7947"},{"setKey":"Gambler","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_7948"},{"setKey":"Thundersoother","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_7949"},{"setKey":"PrayersToSpringtime","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7950"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_7951"},{"setKey":"GildedDreams","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Razor","lock":true,"id":"artifact_7952"},{"setKey":"Scholar","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_7953"},{"setKey":"Adventurer","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_7954"},{"setKey":"GladiatorsFinale","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_7955"},{"setKey":"PaleFlame","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_7956"},{"setKey":"Adventurer","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_7957"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7958"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_7959"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_7960"},{"setKey":"Scholar","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_7961"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Fischl","lock":true,"id":"artifact_7962"},{"setKey":"TheExile","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_7963"},{"setKey":"TheExile","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Candace","lock":true,"id":"artifact_7964"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Diluc","lock":true,"id":"artifact_7965"},{"setKey":"Lavawalker","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_7966"},{"setKey":"SongOfDaysPast","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_7967"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_7968"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_7969"},{"setKey":"PaleFlame","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7970"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_7971"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_7972"},{"setKey":"VermillionHereafter","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_7973"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_7974"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_7975"},{"setKey":"PaleFlame","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_7976"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_7977"},{"setKey":"PaleFlame","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7978"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7979"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_7980"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_7981"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Albedo","lock":true,"id":"artifact_7982"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_7983"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7984"},{"setKey":"GildedDreams","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_7985"},{"setKey":"Scholar","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_7986"},{"setKey":"TravelingDoctor","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Albedo","lock":true,"id":"artifact_7987"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Fischl","lock":true,"id":"artifact_7988"},{"setKey":"Thundersoother","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_7989"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Venti","lock":true,"id":"artifact_7990"},{"setKey":"Adventurer","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Cyno","lock":true,"id":"artifact_7991"},{"setKey":"OceanHuedClam","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_7992"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_7993"},{"setKey":"RetracingBolide","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_7994"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_7995"},{"setKey":"SongOfDaysPast","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_7996"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_7997"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_7998"},{"setKey":"WanderersTroupe","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_7999"},{"setKey":"BlizzardStrayer","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8000"},{"setKey":"BlizzardStrayer","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8001"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_8002"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_8003"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_8004"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_8005"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_8006"},{"setKey":"TravelingDoctor","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_8007"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_8008"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Bennett","lock":true,"id":"artifact_8009"},{"setKey":"BlizzardStrayer","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_8010"},{"setKey":"PrayersForDestiny","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_8011"},{"setKey":"Lavawalker","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_8012"},{"setKey":"BraveHeart","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8013"},{"setKey":"MaidenBeloved","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Diona","lock":true,"id":"artifact_8014"},{"setKey":"ThunderingFury","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Eula","lock":true,"id":"artifact_8015"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_8016"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Cyno","lock":true,"id":"artifact_8017"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_8018"},{"setKey":"MartialArtist","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_8019"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_8020"},{"setKey":"PrayersForWisdom","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Freminet","lock":true,"id":"artifact_8021"},{"setKey":"BlizzardStrayer","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_8022"},{"setKey":"GildedDreams","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8023"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_8024"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_8025"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Aloy","lock":true,"id":"artifact_8026"},{"setKey":"WanderersTroupe","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8027"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Razor","lock":true,"id":"artifact_8028"},{"setKey":"Thundersoother","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_8029"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8030"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Barbara","lock":true,"id":"artifact_8031"},{"setKey":"ThunderingFury","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8032"},{"setKey":"MaidenBeloved","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Nahida","lock":true,"id":"artifact_8033"},{"setKey":"PrayersForIllumination","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_8034"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8035"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_8036"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_8037"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8038"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_8039"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"HuTao","lock":true,"id":"artifact_8040"},{"setKey":"DeepwoodMemories","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8041"},{"setKey":"NymphsDream","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_8042"},{"setKey":"Scholar","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_8043"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_8044"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_8045"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8046"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Noelle","lock":true,"id":"artifact_8047"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8048"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8049"},{"setKey":"ViridescentVenerer","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8050"},{"setKey":"PaleFlame","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Barbara","lock":true,"id":"artifact_8051"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_8052"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_8053"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chiori","lock":true,"id":"artifact_8054"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_8055"},{"setKey":"Lavawalker","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_8056"},{"setKey":"DeepwoodMemories","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8057"},{"setKey":"Thundersoother","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Chiori","lock":true,"id":"artifact_8058"},{"setKey":"SongOfDaysPast","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_8059"},{"setKey":"DefendersWill","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_8060"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_8061"},{"setKey":"ArchaicPetra","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Lisa","lock":true,"id":"artifact_8062"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8063"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8064"},{"setKey":"PaleFlame","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8065"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Yelan","lock":true,"id":"artifact_8066"},{"setKey":"BraveHeart","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Amber","lock":true,"id":"artifact_8067"},{"setKey":"Thundersoother","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Dehya","lock":true,"id":"artifact_8068"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lynette","lock":true,"id":"artifact_8069"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8070"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Ganyu","lock":true,"id":"artifact_8071"},{"setKey":"Gambler","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_8072"},{"setKey":"GoldenTroupe","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_8073"},{"setKey":"GoldenTroupe","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_8074"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_8075"},{"setKey":"OceanHuedClam","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8076"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_8077"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8078"},{"setKey":"DefendersWill","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Yanfei","lock":true,"id":"artifact_8079"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_8080"},{"setKey":"DeepwoodMemories","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_8081"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_8082"},{"setKey":"TheExile","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_8083"},{"setKey":"WanderersTroupe","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8084"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8085"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_8086"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_8087"},{"setKey":"Gambler","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_8088"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_8089"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8090"},{"setKey":"MaidenBeloved","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8091"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_8092"},{"setKey":"NoblesseOblige","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Layla","lock":true,"id":"artifact_8093"},{"setKey":"HeartOfDepth","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_8094"},{"setKey":"ViridescentVenerer","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_8095"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_8096"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8097"},{"setKey":"TheExile","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_8098"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_8099"},{"setKey":"Thundersoother","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_8100"},{"setKey":"ThunderingFury","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_8101"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Lyney","lock":true,"id":"artifact_8102"},{"setKey":"BraveHeart","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8103"},{"setKey":"ArchaicPetra","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_8104"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_8105"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Kirara","lock":true,"id":"artifact_8106"},{"setKey":"HeartOfDepth","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_8107"},{"setKey":"PaleFlame","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_8108"},{"setKey":"GildedDreams","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8109"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_8110"},{"setKey":"WanderersTroupe","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_8111"},{"setKey":"LuckyDog","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_8112"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8113"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8114"},{"setKey":"ThunderingFury","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8115"},{"setKey":"VourukashasGlow","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_8116"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8117"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Barbara","lock":true,"id":"artifact_8118"},{"setKey":"BraveHeart","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_8119"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8120"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Collei","lock":true,"id":"artifact_8121"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_8122"},{"setKey":"MartialArtist","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_8123"},{"setKey":"GladiatorsFinale","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_8124"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_8125"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mika","lock":true,"id":"artifact_8126"},{"setKey":"BloodstainedChivalry","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Eula","lock":true,"id":"artifact_8127"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_8128"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_8129"},{"setKey":"ArchaicPetra","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_8130"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_8131"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8132"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8133"},{"setKey":"GoldenTroupe","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Candace","lock":true,"id":"artifact_8134"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_8135"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_8136"},{"setKey":"PrayersForIllumination","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Diona","lock":true,"id":"artifact_8137"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8138"},{"setKey":"RetracingBolide","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_8139"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_8140"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8141"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_8142"},{"setKey":"TinyMiracle","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_8143"},{"setKey":"NoblesseOblige","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Freminet","lock":true,"id":"artifact_8144"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_8145"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_8146"},{"setKey":"TravelingDoctor","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_8147"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_8148"},{"setKey":"PrayersForIllumination","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_8149"},{"setKey":"ViridescentVenerer","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Mona","lock":true,"id":"artifact_8150"},{"setKey":"PaleFlame","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Venti","lock":true,"id":"artifact_8151"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_8152"},{"setKey":"MaidenBeloved","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8153"},{"setKey":"TheExile","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8154"},{"setKey":"MaidenBeloved","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_8155"},{"setKey":"VourukashasGlow","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8156"},{"setKey":"MarechausseeHunter","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8157"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_8158"},{"setKey":"HeartOfDepth","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_8159"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_8160"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_8161"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8162"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Freminet","lock":true,"id":"artifact_8163"},{"setKey":"RetracingBolide","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_8164"},{"setKey":"ThunderingFury","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_8165"},{"setKey":"VourukashasGlow","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_8166"},{"setKey":"BloodstainedChivalry","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_8167"},{"setKey":"MaidenBeloved","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_8168"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_8169"},{"setKey":"BlizzardStrayer","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_8170"},{"setKey":"Gambler","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_8171"},{"setKey":"GildedDreams","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8172"},{"setKey":"PrayersForWisdom","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_8173"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Sayu","lock":true,"id":"artifact_8174"},{"setKey":"RetracingBolide","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_8175"},{"setKey":"WanderersTroupe","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_8176"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_8177"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8178"},{"setKey":"Berserker","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8179"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_8180"},{"setKey":"BlizzardStrayer","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Noelle","lock":true,"id":"artifact_8181"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Noelle","lock":true,"id":"artifact_8182"},{"setKey":"GoldenTroupe","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_8183"},{"setKey":"MarechausseeHunter","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xiao","lock":true,"id":"artifact_8184"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_8185"},{"setKey":"LuckyDog","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_8186"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_8187"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Razor","lock":true,"id":"artifact_8188"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8189"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_8190"},{"setKey":"VourukashasGlow","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_8191"},{"setKey":"GildedDreams","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Mika","lock":true,"id":"artifact_8192"},{"setKey":"Instructor","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_8193"},{"setKey":"PaleFlame","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8194"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xiao","lock":true,"id":"artifact_8195"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Diluc","lock":true,"id":"artifact_8196"},{"setKey":"TravelingDoctor","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8197"},{"setKey":"Scholar","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_8198"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8199"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_8200"},{"setKey":"NymphsDream","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_8201"},{"setKey":"Berserker","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_8202"},{"setKey":"DefendersWill","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8203"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_8204"},{"setKey":"HeartOfDepth","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8205"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_8206"},{"setKey":"MaidenBeloved","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_8207"},{"setKey":"ArchaicPetra","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Jean","lock":true,"id":"artifact_8208"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_8209"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chiori","lock":true,"id":"artifact_8210"},{"setKey":"NymphsDream","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_8211"},{"setKey":"MaidenBeloved","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_8212"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_8213"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_8214"},{"setKey":"PaleFlame","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8215"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8216"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8217"},{"setKey":"WanderersTroupe","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_8218"},{"setKey":"GildedDreams","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Klee","lock":true,"id":"artifact_8219"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8220"},{"setKey":"HeartOfDepth","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8221"},{"setKey":"Scholar","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_8222"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8223"},{"setKey":"MartialArtist","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_8224"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_8225"},{"setKey":"Lavawalker","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Keqing","lock":true,"id":"artifact_8226"},{"setKey":"BloodstainedChivalry","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_8227"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_8228"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8229"},{"setKey":"BloodstainedChivalry","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_8230"},{"setKey":"Thundersoother","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Freminet","lock":true,"id":"artifact_8231"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_8232"},{"setKey":"NoblesseOblige","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_8233"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8234"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Dehya","lock":true,"id":"artifact_8235"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8236"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_8237"},{"setKey":"Thundersoother","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_8238"},{"setKey":"ViridescentVenerer","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Razor","lock":true,"id":"artifact_8239"},{"setKey":"Berserker","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_8240"},{"setKey":"DefendersWill","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nahida","lock":true,"id":"artifact_8241"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_8242"},{"setKey":"PrayersToSpringtime","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8243"},{"setKey":"VermillionHereafter","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_8244"},{"setKey":"GoldenTroupe","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_8245"},{"setKey":"MartialArtist","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_8246"},{"setKey":"TheExile","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_8247"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_8248"},{"setKey":"DeepwoodMemories","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8249"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8250"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_8251"},{"setKey":"OceanHuedClam","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_8252"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8253"},{"setKey":"PrayersForIllumination","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Mona","lock":true,"id":"artifact_8254"},{"setKey":"Adventurer","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8255"},{"setKey":"WanderersTroupe","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8256"},{"setKey":"PrayersToSpringtime","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8257"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_8258"},{"setKey":"LuckyDog","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_8259"},{"setKey":"Gambler","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_8260"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_8261"},{"setKey":"Thundersoother","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_8262"},{"setKey":"TravelingDoctor","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_8263"},{"setKey":"Lavawalker","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8264"},{"setKey":"PrayersForWisdom","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8265"},{"setKey":"LuckyDog","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_8266"},{"setKey":"WanderersTroupe","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8267"},{"setKey":"DeepwoodMemories","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8268"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8269"},{"setKey":"BlizzardStrayer","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_8270"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Bennett","lock":true,"id":"artifact_8271"},{"setKey":"RetracingBolide","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_8272"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_8273"},{"setKey":"DefendersWill","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_8274"},{"setKey":"NoblesseOblige","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_8275"},{"setKey":"GoldenTroupe","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_8276"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Lyney","lock":true,"id":"artifact_8277"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Kaveh","lock":true,"id":"artifact_8278"},{"setKey":"TravelingDoctor","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_8279"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_8280"},{"setKey":"PrayersForIllumination","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Nilou","lock":true,"id":"artifact_8281"},{"setKey":"Lavawalker","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8282"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Collei","lock":true,"id":"artifact_8283"},{"setKey":"PrayersToSpringtime","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_8284"},{"setKey":"MartialArtist","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_8285"},{"setKey":"PrayersToSpringtime","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_8286"},{"setKey":"BraveHeart","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8287"},{"setKey":"DefendersWill","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8288"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8289"},{"setKey":"NoblesseOblige","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_8290"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_8291"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_8292"},{"setKey":"BlizzardStrayer","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Diluc","lock":true,"id":"artifact_8293"},{"setKey":"PrayersForIllumination","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8294"},{"setKey":"BlizzardStrayer","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_8295"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dori","lock":true,"id":"artifact_8296"},{"setKey":"OceanHuedClam","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_8297"},{"setKey":"Adventurer","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_8298"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_8299"},{"setKey":"ThunderingFury","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_8300"},{"setKey":"TinyMiracle","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_8301"},{"setKey":"VourukashasGlow","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_8302"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_8303"},{"setKey":"HeartOfDepth","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chiori","lock":true,"id":"artifact_8304"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8305"},{"setKey":"PrayersForWisdom","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_8306"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lynette","lock":true,"id":"artifact_8307"},{"setKey":"NoblesseOblige","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Noelle","lock":true,"id":"artifact_8308"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_8309"},{"setKey":"TinyMiracle","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_8310"},{"setKey":"NoblesseOblige","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_8311"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8312"},{"setKey":"OceanHuedClam","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Barbara","lock":true,"id":"artifact_8313"},{"setKey":"DefendersWill","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8314"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_8315"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_8316"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Razor","lock":true,"id":"artifact_8317"},{"setKey":"PrayersForWisdom","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8318"},{"setKey":"Thundersoother","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_8319"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_8320"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8321"},{"setKey":"ViridescentVenerer","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_8322"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_8323"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Gaming","lock":true,"id":"artifact_8324"},{"setKey":"BlizzardStrayer","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_8325"},{"setKey":"PrayersForWisdom","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_8326"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8327"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_8328"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_8329"},{"setKey":"NoblesseOblige","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_8330"},{"setKey":"MaidenBeloved","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_8331"},{"setKey":"TinyMiracle","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_8332"},{"setKey":"DefendersWill","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Jean","lock":true,"id":"artifact_8333"},{"setKey":"PrayersForIllumination","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_8334"},{"setKey":"Scholar","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_8335"},{"setKey":"GildedDreams","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Kirara","lock":true,"id":"artifact_8336"},{"setKey":"DeepwoodMemories","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_8337"},{"setKey":"GoldenTroupe","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Venti","lock":true,"id":"artifact_8338"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xiao","lock":true,"id":"artifact_8339"},{"setKey":"DeepwoodMemories","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Dori","lock":true,"id":"artifact_8340"},{"setKey":"NoblesseOblige","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_8341"},{"setKey":"SongOfDaysPast","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_8342"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Freminet","lock":true,"id":"artifact_8343"},{"setKey":"TheExile","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8344"},{"setKey":"WanderersTroupe","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_8345"},{"setKey":"PaleFlame","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_8346"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8347"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Mona","lock":true,"id":"artifact_8348"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_8349"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8350"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8351"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Fischl","lock":true,"id":"artifact_8352"},{"setKey":"MaidenBeloved","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Venti","lock":true,"id":"artifact_8353"},{"setKey":"Adventurer","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"YunJin","lock":true,"id":"artifact_8354"},{"setKey":"NymphsDream","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_8355"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_8356"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_8357"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_8358"},{"setKey":"NoblesseOblige","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Amber","lock":true,"id":"artifact_8359"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_8360"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_8361"},{"setKey":"ArchaicPetra","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Candace","lock":true,"id":"artifact_8362"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_8363"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_8364"},{"setKey":"GoldenTroupe","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_8365"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8366"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"YunJin","lock":true,"id":"artifact_8367"},{"setKey":"LuckyDog","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_8368"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_8369"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8370"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_8371"},{"setKey":"NoblesseOblige","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yanfei","lock":true,"id":"artifact_8372"},{"setKey":"VourukashasGlow","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_8373"},{"setKey":"Scholar","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Lisa","lock":true,"id":"artifact_8374"},{"setKey":"TravelingDoctor","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_8375"},{"setKey":"HeartOfDepth","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8376"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_8377"},{"setKey":"TheExile","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_8378"},{"setKey":"NymphsDream","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_8379"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Jean","lock":true,"id":"artifact_8380"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Razor","lock":true,"id":"artifact_8381"},{"setKey":"VourukashasGlow","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Candace","lock":true,"id":"artifact_8382"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8383"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_8384"},{"setKey":"TheExile","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8385"},{"setKey":"PaleFlame","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_8386"},{"setKey":"Instructor","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chiori","lock":true,"id":"artifact_8387"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_8388"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Aloy","lock":true,"id":"artifact_8389"},{"setKey":"TravelingDoctor","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_8390"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8391"},{"setKey":"PrayersForWisdom","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_8392"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_8393"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Freminet","lock":true,"id":"artifact_8394"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_8395"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_8396"},{"setKey":"PrayersForWisdom","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_8397"},{"setKey":"DefendersWill","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8398"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Bennett","lock":true,"id":"artifact_8399"},{"setKey":"ThunderingFury","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_8400"},{"setKey":"ThunderingFury","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8401"},{"setKey":"HeartOfDepth","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_8402"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_8403"},{"setKey":"Gambler","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_8404"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yelan","lock":true,"id":"artifact_8405"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_8406"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8407"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_8408"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8409"},{"setKey":"GladiatorsFinale","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_8410"},{"setKey":"ThunderingFury","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_8411"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_8412"},{"setKey":"PrayersToSpringtime","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8413"},{"setKey":"TravelingDoctor","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8414"},{"setKey":"SongOfDaysPast","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_8415"},{"setKey":"ArchaicPetra","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_8416"},{"setKey":"Thundersoother","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Razor","lock":true,"id":"artifact_8417"},{"setKey":"BloodstainedChivalry","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_8418"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_8419"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_8420"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_8421"},{"setKey":"PaleFlame","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8422"},{"setKey":"Thundersoother","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8423"},{"setKey":"PrayersForDestiny","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_8424"},{"setKey":"ViridescentVenerer","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Freminet","lock":true,"id":"artifact_8425"},{"setKey":"Adventurer","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_8426"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8427"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8428"},{"setKey":"RetracingBolide","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_8429"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_8430"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_8431"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_8432"},{"setKey":"MaidenBeloved","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_8433"},{"setKey":"VourukashasGlow","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_8434"},{"setKey":"OceanHuedClam","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_8435"},{"setKey":"PaleFlame","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_8436"},{"setKey":"Berserker","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8437"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Lyney","lock":true,"id":"artifact_8438"},{"setKey":"DeepwoodMemories","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_8439"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"HuTao","lock":true,"id":"artifact_8440"},{"setKey":"MarechausseeHunter","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_8441"},{"setKey":"OceanHuedClam","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_8442"},{"setKey":"SongOfDaysPast","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8443"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8444"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_8445"},{"setKey":"PrayersForDestiny","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_8446"},{"setKey":"Scholar","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_8447"},{"setKey":"PrayersForDestiny","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8448"},{"setKey":"ThunderingFury","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_8449"},{"setKey":"VourukashasGlow","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_8450"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8451"},{"setKey":"NoblesseOblige","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8452"},{"setKey":"ArchaicPetra","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_8453"},{"setKey":"TravelingDoctor","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Ningguang","lock":true,"id":"artifact_8454"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_8455"},{"setKey":"PrayersToSpringtime","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_8456"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_8457"},{"setKey":"SongOfDaysPast","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_8458"},{"setKey":"BloodstainedChivalry","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8459"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_8460"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8461"},{"setKey":"HeartOfDepth","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_8462"},{"setKey":"OceanHuedClam","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8463"},{"setKey":"PrayersToSpringtime","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_8464"},{"setKey":"LuckyDog","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Noelle","lock":true,"id":"artifact_8465"},{"setKey":"Instructor","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_8466"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8467"},{"setKey":"PrayersForDestiny","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Klee","lock":true,"id":"artifact_8468"},{"setKey":"MarechausseeHunter","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_8469"},{"setKey":"PrayersForIllumination","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8470"},{"setKey":"TravelingDoctor","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_8471"},{"setKey":"ThunderingFury","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Lynette","lock":true,"id":"artifact_8472"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Fischl","lock":true,"id":"artifact_8473"},{"setKey":"PrayersToSpringtime","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8474"},{"setKey":"PrayersForWisdom","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_8475"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_8476"},{"setKey":"GildedDreams","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_8477"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Keqing","lock":true,"id":"artifact_8478"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_8479"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_8480"},{"setKey":"BloodstainedChivalry","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_8481"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Collei","lock":true,"id":"artifact_8482"},{"setKey":"VermillionHereafter","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8483"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Lyney","lock":true,"id":"artifact_8484"},{"setKey":"BraveHeart","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_8485"},{"setKey":"ArchaicPetra","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Navia","lock":true,"id":"artifact_8486"},{"setKey":"PrayersForWisdom","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Freminet","lock":true,"id":"artifact_8487"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8488"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8489"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8490"},{"setKey":"GoldenTroupe","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Klee","lock":true,"id":"artifact_8491"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8492"},{"setKey":"NoblesseOblige","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_8493"},{"setKey":"ThunderingFury","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8494"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_8495"},{"setKey":"HeartOfDepth","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_8496"},{"setKey":"TinyMiracle","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_8497"},{"setKey":"PaleFlame","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8498"},{"setKey":"SongOfDaysPast","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Sayu","lock":true,"id":"artifact_8499"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_8500"},{"setKey":"TravelingDoctor","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8501"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8502"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_8503"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_8504"},{"setKey":"PrayersForIllumination","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Dori","lock":true,"id":"artifact_8505"},{"setKey":"PrayersForIllumination","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"YunJin","lock":true,"id":"artifact_8506"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_8507"},{"setKey":"WanderersTroupe","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_8508"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Jean","lock":true,"id":"artifact_8509"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_8510"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_8511"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_8512"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_8513"},{"setKey":"TheExile","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yelan","lock":true,"id":"artifact_8514"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_8515"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lisa","lock":true,"id":"artifact_8516"},{"setKey":"OceanHuedClam","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_8517"},{"setKey":"Lavawalker","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_8518"},{"setKey":"VermillionHereafter","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Noelle","lock":true,"id":"artifact_8519"},{"setKey":"ViridescentVenerer","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_8520"},{"setKey":"ViridescentVenerer","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8521"},{"setKey":"VourukashasGlow","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Nilou","lock":true,"id":"artifact_8522"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8523"},{"setKey":"DefendersWill","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8524"},{"setKey":"PrayersForWisdom","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Bennett","lock":true,"id":"artifact_8525"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_8526"},{"setKey":"PaleFlame","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Chiori","lock":true,"id":"artifact_8527"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8528"},{"setKey":"GildedDreams","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8529"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8530"},{"setKey":"ArchaicPetra","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Klee","lock":true,"id":"artifact_8531"},{"setKey":"DefendersWill","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_8532"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8533"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_8534"},{"setKey":"MartialArtist","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Ganyu","lock":true,"id":"artifact_8535"},{"setKey":"ThunderingFury","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_8536"},{"setKey":"NymphsDream","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_8537"},{"setKey":"MaidenBeloved","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8538"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_8539"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8540"},{"setKey":"TinyMiracle","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Traveler","lock":true,"id":"artifact_8541"},{"setKey":"ThunderingFury","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8542"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_8543"},{"setKey":"ArchaicPetra","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_8544"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"YunJin","lock":true,"id":"artifact_8545"},{"setKey":"BraveHeart","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_8546"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Layla","lock":true,"id":"artifact_8547"},{"setKey":"Lavawalker","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8548"},{"setKey":"PrayersForWisdom","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8549"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8550"},{"setKey":"Thundersoother","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Collei","lock":true,"id":"artifact_8551"},{"setKey":"NoblesseOblige","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Albedo","lock":true,"id":"artifact_8552"},{"setKey":"DefendersWill","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chiori","lock":true,"id":"artifact_8553"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_8554"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Navia","lock":true,"id":"artifact_8555"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_8556"},{"setKey":"PrayersForIllumination","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8557"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8558"},{"setKey":"Berserker","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8559"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8560"},{"setKey":"DefendersWill","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Jean","lock":true,"id":"artifact_8561"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_8562"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xiao","lock":true,"id":"artifact_8563"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8564"},{"setKey":"WanderersTroupe","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8565"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_8566"},{"setKey":"ViridescentVenerer","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8567"},{"setKey":"HeartOfDepth","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8568"},{"setKey":"PaleFlame","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Thoma","lock":true,"id":"artifact_8569"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_8570"},{"setKey":"DefendersWill","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Jean","lock":true,"id":"artifact_8571"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_8572"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_8573"},{"setKey":"MarechausseeHunter","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_8574"},{"setKey":"RetracingBolide","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_8575"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8576"},{"setKey":"BlizzardStrayer","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Cyno","lock":true,"id":"artifact_8577"},{"setKey":"ArchaicPetra","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_8578"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8579"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_8580"},{"setKey":"OceanHuedClam","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8581"},{"setKey":"Instructor","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"HuTao","lock":true,"id":"artifact_8582"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_8583"},{"setKey":"GildedDreams","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_8584"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Amber","lock":true,"id":"artifact_8585"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_8586"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_8587"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8588"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8589"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_8590"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_8591"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8592"},{"setKey":"PrayersToSpringtime","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_8593"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8594"},{"setKey":"LuckyDog","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_8595"},{"setKey":"DeepwoodMemories","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_8596"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_8597"},{"setKey":"BloodstainedChivalry","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_8598"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Mona","lock":true,"id":"artifact_8599"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lyney","lock":true,"id":"artifact_8600"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_8601"},{"setKey":"Scholar","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_8602"},{"setKey":"DefendersWill","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8603"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8604"},{"setKey":"Instructor","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_8605"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_8606"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_8607"},{"setKey":"PrayersToSpringtime","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Amber","lock":true,"id":"artifact_8608"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_8609"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_8610"},{"setKey":"DefendersWill","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_8611"},{"setKey":"Lavawalker","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Noelle","lock":true,"id":"artifact_8612"},{"setKey":"GoldenTroupe","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8613"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_8614"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Traveler","lock":true,"id":"artifact_8615"},{"setKey":"Instructor","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8616"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_8617"},{"setKey":"LuckyDog","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8618"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_8619"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_8620"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_8621"},{"setKey":"ArchaicPetra","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8622"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8623"},{"setKey":"MartialArtist","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8624"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Mika","lock":true,"id":"artifact_8625"},{"setKey":"ViridescentVenerer","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8626"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_8627"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_8628"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8629"},{"setKey":"NoblesseOblige","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8630"},{"setKey":"GoldenTroupe","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8631"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8632"},{"setKey":"Adventurer","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_8633"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8634"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8635"},{"setKey":"OceanHuedClam","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Diluc","lock":true,"id":"artifact_8636"},{"setKey":"BraveHeart","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_8637"},{"setKey":"TravelingDoctor","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_8638"},{"setKey":"DeepwoodMemories","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8639"},{"setKey":"BloodstainedChivalry","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_8640"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_8641"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_8642"},{"setKey":"MartialArtist","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8643"},{"setKey":"PrayersForIllumination","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_8644"},{"setKey":"SongOfDaysPast","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8645"},{"setKey":"LuckyDog","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_8646"},{"setKey":"GoldenTroupe","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_8647"},{"setKey":"Gambler","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8648"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Venti","lock":true,"id":"artifact_8649"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_8650"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_8651"},{"setKey":"ArchaicPetra","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Aloy","lock":true,"id":"artifact_8652"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Bennett","lock":true,"id":"artifact_8653"},{"setKey":"RetracingBolide","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Gorou","lock":true,"id":"artifact_8654"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8655"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Sayu","lock":true,"id":"artifact_8656"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8657"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_8658"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_8659"},{"setKey":"PrayersForWisdom","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_8660"},{"setKey":"PrayersForWisdom","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_8661"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Lisa","lock":true,"id":"artifact_8662"},{"setKey":"BlizzardStrayer","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8663"},{"setKey":"Adventurer","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Fischl","lock":true,"id":"artifact_8664"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_8665"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_8666"},{"setKey":"MarechausseeHunter","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Lyney","lock":true,"id":"artifact_8667"},{"setKey":"RetracingBolide","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_8668"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_8669"},{"setKey":"GoldenTroupe","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8670"},{"setKey":"ViridescentVenerer","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_8671"},{"setKey":"WanderersTroupe","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_8672"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_8673"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8674"},{"setKey":"GladiatorsFinale","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_8675"},{"setKey":"ThunderingFury","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8676"},{"setKey":"BlizzardStrayer","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_8677"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Noelle","lock":true,"id":"artifact_8678"},{"setKey":"DefendersWill","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_8679"},{"setKey":"TravelingDoctor","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Mona","lock":true,"id":"artifact_8680"},{"setKey":"HeartOfDepth","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_8681"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8682"},{"setKey":"GladiatorsFinale","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8683"},{"setKey":"RetracingBolide","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Lyney","lock":true,"id":"artifact_8684"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Collei","lock":true,"id":"artifact_8685"},{"setKey":"Gambler","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_8686"},{"setKey":"TinyMiracle","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kirara","lock":true,"id":"artifact_8687"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_8688"},{"setKey":"ThunderingFury","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Eula","lock":true,"id":"artifact_8689"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_8690"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8691"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_8692"},{"setKey":"Thundersoother","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Freminet","lock":true,"id":"artifact_8693"},{"setKey":"TinyMiracle","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_8694"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Sayu","lock":true,"id":"artifact_8695"},{"setKey":"VourukashasGlow","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_8696"},{"setKey":"Gambler","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_8697"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_8698"},{"setKey":"PaleFlame","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_8699"},{"setKey":"LuckyDog","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_8700"},{"setKey":"PrayersForWisdom","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_8701"},{"setKey":"WanderersTroupe","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_8702"},{"setKey":"Berserker","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_8703"},{"setKey":"SongOfDaysPast","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Thoma","lock":true,"id":"artifact_8704"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_8705"},{"setKey":"DefendersWill","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8706"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Venti","lock":true,"id":"artifact_8707"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Fischl","lock":true,"id":"artifact_8708"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diluc","lock":true,"id":"artifact_8709"},{"setKey":"Thundersoother","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Layla","lock":true,"id":"artifact_8710"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_8711"},{"setKey":"BlizzardStrayer","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8712"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8713"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gaming","lock":true,"id":"artifact_8714"},{"setKey":"MarechausseeHunter","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_8715"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8716"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8717"},{"setKey":"Adventurer","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_8718"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_8719"},{"setKey":"GildedDreams","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_8720"},{"setKey":"VermillionHereafter","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8721"},{"setKey":"BlizzardStrayer","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8722"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"HuTao","lock":true,"id":"artifact_8723"},{"setKey":"PrayersForWisdom","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8724"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_8725"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_8726"},{"setKey":"TravelingDoctor","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_8727"},{"setKey":"PaleFlame","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_8728"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Layla","lock":true,"id":"artifact_8729"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Beidou","lock":true,"id":"artifact_8730"},{"setKey":"Thundersoother","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8731"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_8732"},{"setKey":"PrayersToSpringtime","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8733"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_8734"},{"setKey":"MarechausseeHunter","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Sayu","lock":true,"id":"artifact_8735"},{"setKey":"TravelingDoctor","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_8736"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_8737"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_8738"},{"setKey":"Lavawalker","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_8739"},{"setKey":"PrayersForIllumination","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Dehya","lock":true,"id":"artifact_8740"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8741"},{"setKey":"SongOfDaysPast","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_8742"},{"setKey":"ArchaicPetra","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8743"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Aloy","lock":true,"id":"artifact_8744"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xiao","lock":true,"id":"artifact_8745"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nilou","lock":true,"id":"artifact_8746"},{"setKey":"BraveHeart","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_8747"},{"setKey":"Gambler","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_8748"},{"setKey":"Berserker","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Keqing","lock":true,"id":"artifact_8749"},{"setKey":"PrayersForWisdom","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xiao","lock":true,"id":"artifact_8750"},{"setKey":"Adventurer","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_8751"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Klee","lock":true,"id":"artifact_8752"},{"setKey":"HeartOfDepth","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_8753"},{"setKey":"VourukashasGlow","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8754"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_8755"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_8756"},{"setKey":"ThunderingFury","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Layla","lock":true,"id":"artifact_8757"},{"setKey":"NoblesseOblige","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_8758"},{"setKey":"GildedDreams","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Cyno","lock":true,"id":"artifact_8759"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8760"},{"setKey":"WanderersTroupe","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_8761"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_8762"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8763"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Fischl","lock":true,"id":"artifact_8764"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_8765"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lyney","lock":true,"id":"artifact_8766"},{"setKey":"TheExile","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8767"},{"setKey":"GildedDreams","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Navia","lock":true,"id":"artifact_8768"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8769"},{"setKey":"GildedDreams","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_8770"},{"setKey":"VourukashasGlow","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_8771"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_8772"},{"setKey":"PrayersToSpringtime","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_8773"},{"setKey":"PrayersToSpringtime","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_8774"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8775"},{"setKey":"NymphsDream","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8776"},{"setKey":"MartialArtist","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_8777"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_8778"},{"setKey":"Gambler","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_8779"},{"setKey":"Scholar","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8780"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Venti","lock":true,"id":"artifact_8781"},{"setKey":"DefendersWill","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Navia","lock":true,"id":"artifact_8782"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8783"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Layla","lock":true,"id":"artifact_8784"},{"setKey":"MaidenBeloved","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8785"},{"setKey":"TinyMiracle","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_8786"},{"setKey":"OceanHuedClam","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_8787"},{"setKey":"TheExile","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8788"},{"setKey":"MaidenBeloved","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_8789"},{"setKey":"ThunderingFury","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_8790"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8791"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Layla","lock":true,"id":"artifact_8792"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_8793"},{"setKey":"GildedDreams","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gaming","lock":true,"id":"artifact_8794"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_8795"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Cyno","lock":true,"id":"artifact_8796"},{"setKey":"DeepwoodMemories","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_8797"},{"setKey":"MaidenBeloved","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Nahida","lock":true,"id":"artifact_8798"},{"setKey":"VermillionHereafter","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_8799"},{"setKey":"BlizzardStrayer","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Lisa","lock":true,"id":"artifact_8800"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Kirara","lock":true,"id":"artifact_8801"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_8802"},{"setKey":"LuckyDog","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8803"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_8804"},{"setKey":"VermillionHereafter","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lyney","lock":true,"id":"artifact_8805"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_8806"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_8807"},{"setKey":"GildedDreams","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_8808"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_8809"},{"setKey":"Gambler","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_8810"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8811"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xiao","lock":true,"id":"artifact_8812"},{"setKey":"SongOfDaysPast","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8813"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_8814"},{"setKey":"DefendersWill","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Eula","lock":true,"id":"artifact_8815"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_8816"},{"setKey":"Berserker","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_8817"},{"setKey":"TheExile","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_8818"},{"setKey":"TheExile","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_8819"},{"setKey":"MarechausseeHunter","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8820"},{"setKey":"DeepwoodMemories","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8821"},{"setKey":"VermillionHereafter","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_8822"},{"setKey":"NoblesseOblige","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_8823"},{"setKey":"GladiatorsFinale","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8824"},{"setKey":"Scholar","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_8825"},{"setKey":"DefendersWill","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_8826"},{"setKey":"TheExile","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_8827"},{"setKey":"GildedDreams","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_8828"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8829"},{"setKey":"PrayersToSpringtime","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8830"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8831"},{"setKey":"TinyMiracle","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Diona","lock":true,"id":"artifact_8832"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_8833"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Albedo","lock":true,"id":"artifact_8834"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_8835"},{"setKey":"PaleFlame","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_8836"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_8837"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Nilou","lock":true,"id":"artifact_8838"},{"setKey":"TheExile","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Bennett","lock":true,"id":"artifact_8839"},{"setKey":"PrayersForDestiny","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_8840"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Sayu","lock":true,"id":"artifact_8841"},{"setKey":"Adventurer","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_8842"},{"setKey":"BlizzardStrayer","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Nahida","lock":true,"id":"artifact_8843"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Kirara","lock":true,"id":"artifact_8844"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_8845"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Ningguang","lock":true,"id":"artifact_8846"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Diona","lock":true,"id":"artifact_8847"},{"setKey":"ViridescentVenerer","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_8848"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yanfei","lock":true,"id":"artifact_8849"},{"setKey":"GoldenTroupe","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_8850"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8851"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Furina","lock":true,"id":"artifact_8852"},{"setKey":"Instructor","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_8853"},{"setKey":"Thundersoother","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_8854"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Gorou","lock":true,"id":"artifact_8855"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_8856"},{"setKey":"MartialArtist","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_8857"},{"setKey":"BloodstainedChivalry","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_8858"},{"setKey":"NoblesseOblige","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8859"},{"setKey":"MartialArtist","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8860"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_8861"},{"setKey":"BloodstainedChivalry","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8862"},{"setKey":"TravelingDoctor","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_8863"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Thoma","lock":true,"id":"artifact_8864"},{"setKey":"VourukashasGlow","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8865"},{"setKey":"Adventurer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8866"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8867"},{"setKey":"NymphsDream","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_8868"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_8869"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Gorou","lock":true,"id":"artifact_8870"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8871"},{"setKey":"MartialArtist","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_8872"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_8873"},{"setKey":"SongOfDaysPast","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_8874"},{"setKey":"GildedDreams","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_8875"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Fischl","lock":true,"id":"artifact_8876"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_8877"},{"setKey":"MaidenBeloved","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8878"},{"setKey":"BloodstainedChivalry","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8879"},{"setKey":"Lavawalker","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mona","lock":true,"id":"artifact_8880"},{"setKey":"ViridescentVenerer","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8881"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8882"},{"setKey":"Adventurer","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_8883"},{"setKey":"GladiatorsFinale","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_8884"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_8885"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Barbara","lock":true,"id":"artifact_8886"},{"setKey":"Instructor","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_8887"},{"setKey":"HeartOfDepth","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_8888"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_8889"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Traveler","lock":true,"id":"artifact_8890"},{"setKey":"PrayersForWisdom","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_8891"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_8892"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_8893"},{"setKey":"PrayersForDestiny","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Nilou","lock":true,"id":"artifact_8894"},{"setKey":"PrayersForWisdom","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_8895"},{"setKey":"LuckyDog","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_8896"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Rosaria","lock":true,"id":"artifact_8897"},{"setKey":"PrayersToSpringtime","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_8898"},{"setKey":"PrayersForIllumination","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_8899"},{"setKey":"VourukashasGlow","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8900"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8901"},{"setKey":"GildedDreams","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Barbara","lock":true,"id":"artifact_8902"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_8903"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_8904"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8905"},{"setKey":"Gambler","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_8906"},{"setKey":"VourukashasGlow","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8907"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_8908"},{"setKey":"ThunderingFury","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_8909"},{"setKey":"PaleFlame","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Candace","lock":true,"id":"artifact_8910"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_8911"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8912"},{"setKey":"NoblesseOblige","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8913"},{"setKey":"DefendersWill","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_8914"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"HuTao","lock":true,"id":"artifact_8915"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Freminet","lock":true,"id":"artifact_8916"},{"setKey":"TinyMiracle","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_8917"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8918"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_8919"},{"setKey":"DeepwoodMemories","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lynette","lock":true,"id":"artifact_8920"},{"setKey":"ViridescentVenerer","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_8921"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_8922"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Chiori","lock":true,"id":"artifact_8923"},{"setKey":"TravelingDoctor","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_8924"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Gaming","lock":true,"id":"artifact_8925"},{"setKey":"BlizzardStrayer","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_8926"},{"setKey":"Berserker","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_8927"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_8928"},{"setKey":"BloodstainedChivalry","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_8929"},{"setKey":"WanderersTroupe","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lyney","lock":true,"id":"artifact_8930"},{"setKey":"GildedDreams","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_8931"},{"setKey":"TheExile","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_8932"},{"setKey":"MartialArtist","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Thoma","lock":true,"id":"artifact_8933"},{"setKey":"PrayersForIllumination","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Thoma","lock":true,"id":"artifact_8934"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_8935"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_8936"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_8937"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xiao","lock":true,"id":"artifact_8938"},{"setKey":"MaidenBeloved","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8939"},{"setKey":"Adventurer","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_8940"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_8941"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chiori","lock":true,"id":"artifact_8942"},{"setKey":"BloodstainedChivalry","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_8943"},{"setKey":"Lavawalker","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_8944"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_8945"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_8946"},{"setKey":"Gambler","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_8947"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_8948"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_8949"},{"setKey":"MaidenBeloved","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8950"},{"setKey":"DefendersWill","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Lisa","lock":true,"id":"artifact_8951"},{"setKey":"ThunderingFury","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_8952"},{"setKey":"TravelingDoctor","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_8953"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8954"},{"setKey":"VermillionHereafter","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Candace","lock":true,"id":"artifact_8955"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_8956"},{"setKey":"MartialArtist","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Aloy","lock":true,"id":"artifact_8957"},{"setKey":"OceanHuedClam","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_8958"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8959"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_8960"},{"setKey":"VourukashasGlow","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Venti","lock":true,"id":"artifact_8961"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_8962"},{"setKey":"Instructor","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_8963"},{"setKey":"Instructor","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_8964"},{"setKey":"PrayersToSpringtime","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_8965"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_8966"},{"setKey":"ThunderingFury","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Aloy","lock":true,"id":"artifact_8967"},{"setKey":"LuckyDog","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_8968"},{"setKey":"OceanHuedClam","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Dehya","lock":true,"id":"artifact_8969"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_8970"},{"setKey":"VourukashasGlow","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_8971"},{"setKey":"ArchaicPetra","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Eula","lock":true,"id":"artifact_8972"},{"setKey":"Instructor","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_8973"},{"setKey":"Gambler","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8974"},{"setKey":"PrayersForWisdom","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_8975"},{"setKey":"Scholar","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8976"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8977"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_8978"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_8979"},{"setKey":"VermillionHereafter","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_8980"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_8981"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Noelle","lock":true,"id":"artifact_8982"},{"setKey":"BloodstainedChivalry","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Razor","lock":true,"id":"artifact_8983"},{"setKey":"GoldenTroupe","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_8984"},{"setKey":"MaidenBeloved","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_8985"},{"setKey":"GildedDreams","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_8986"},{"setKey":"ThunderingFury","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_8987"},{"setKey":"NoblesseOblige","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_8988"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_8989"},{"setKey":"VourukashasGlow","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_8990"},{"setKey":"RetracingBolide","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Noelle","lock":true,"id":"artifact_8991"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Nahida","lock":true,"id":"artifact_8992"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_8993"},{"setKey":"LuckyDog","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Beidou","lock":true,"id":"artifact_8994"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Nahida","lock":true,"id":"artifact_8995"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kirara","lock":true,"id":"artifact_8996"},{"setKey":"BraveHeart","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_8997"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_8998"},{"setKey":"RetracingBolide","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_8999"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9000"},{"setKey":"GoldenTroupe","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Furina","lock":true,"id":"artifact_9001"},{"setKey":"WanderersTroupe","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9002"},{"setKey":"NymphsDream","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9003"},{"setKey":"PrayersToSpringtime","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_9004"},{"setKey":"TinyMiracle","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9005"},{"setKey":"LuckyDog","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_9006"},{"setKey":"Instructor","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_9007"},{"setKey":"MaidenBeloved","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9008"},{"setKey":"PrayersForWisdom","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9009"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Xiao","lock":true,"id":"artifact_9010"},{"setKey":"DefendersWill","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_9011"},{"setKey":"GildedDreams","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_9012"},{"setKey":"DeepwoodMemories","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_9013"},{"setKey":"TheExile","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Dori","lock":true,"id":"artifact_9014"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_9015"},{"setKey":"Scholar","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9016"},{"setKey":"PrayersForDestiny","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_9017"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_9018"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Kaeya","lock":true,"id":"artifact_9019"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Bennett","lock":true,"id":"artifact_9020"},{"setKey":"WanderersTroupe","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9021"},{"setKey":"GoldenTroupe","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_9022"},{"setKey":"ViridescentVenerer","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9023"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_9024"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9025"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_9026"},{"setKey":"PrayersToSpringtime","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_9027"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_9028"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_9029"},{"setKey":"Scholar","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_9030"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_9031"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_9032"},{"setKey":"Adventurer","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_9033"},{"setKey":"Gambler","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_9034"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_9035"},{"setKey":"GladiatorsFinale","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_9036"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_9037"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_9038"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9039"},{"setKey":"ArchaicPetra","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_9040"},{"setKey":"Thundersoother","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9041"},{"setKey":"LuckyDog","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_9042"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9043"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_9044"},{"setKey":"BraveHeart","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_9045"},{"setKey":"LuckyDog","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Dori","lock":true,"id":"artifact_9046"},{"setKey":"PrayersForWisdom","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9047"},{"setKey":"VermillionHereafter","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaeya","lock":true,"id":"artifact_9048"},{"setKey":"BraveHeart","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_9049"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Beidou","lock":true,"id":"artifact_9050"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Aloy","lock":true,"id":"artifact_9051"},{"setKey":"RetracingBolide","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9052"},{"setKey":"BlizzardStrayer","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9053"},{"setKey":"PaleFlame","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_9054"},{"setKey":"TheExile","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_9055"},{"setKey":"Gambler","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Amber","lock":true,"id":"artifact_9056"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_9057"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9058"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_9059"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9060"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_9061"},{"setKey":"HeartOfDepth","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_9062"},{"setKey":"NymphsDream","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_9063"},{"setKey":"BlizzardStrayer","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Cyno","lock":true,"id":"artifact_9064"},{"setKey":"MaidenBeloved","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9065"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_9066"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9067"},{"setKey":"Gambler","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Noelle","lock":true,"id":"artifact_9068"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_9069"},{"setKey":"BloodstainedChivalry","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_9070"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_9071"},{"setKey":"DefendersWill","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9072"},{"setKey":"MaidenBeloved","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_9073"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_9074"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Lyney","lock":true,"id":"artifact_9075"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Venti","lock":true,"id":"artifact_9076"},{"setKey":"Lavawalker","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_9077"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_9078"},{"setKey":"ViridescentVenerer","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_9079"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9080"},{"setKey":"PrayersForWisdom","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_9081"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_9082"},{"setKey":"BlizzardStrayer","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9083"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_9084"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Navia","lock":true,"id":"artifact_9085"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_9086"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_9087"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_9088"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Furina","lock":true,"id":"artifact_9089"},{"setKey":"TheExile","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_9090"},{"setKey":"TheExile","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Razor","lock":true,"id":"artifact_9091"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_9092"},{"setKey":"SongOfDaysPast","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9093"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_9094"},{"setKey":"ThunderingFury","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9095"},{"setKey":"TinyMiracle","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_9096"},{"setKey":"WanderersTroupe","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_9097"},{"setKey":"PrayersToSpringtime","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_9098"},{"setKey":"Scholar","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Cyno","lock":true,"id":"artifact_9099"},{"setKey":"DeepwoodMemories","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9100"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Eula","lock":true,"id":"artifact_9101"},{"setKey":"RetracingBolide","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Sucrose","lock":true,"id":"artifact_9102"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_9103"},{"setKey":"Adventurer","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9104"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_9105"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_9106"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Sayu","lock":true,"id":"artifact_9107"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_9108"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_9109"},{"setKey":"BlizzardStrayer","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9110"},{"setKey":"Thundersoother","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9111"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9112"},{"setKey":"DefendersWill","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Noelle","lock":true,"id":"artifact_9113"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9114"},{"setKey":"PrayersForWisdom","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9115"},{"setKey":"GladiatorsFinale","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Qiqi","lock":true,"id":"artifact_9116"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9117"},{"setKey":"Gambler","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_9118"},{"setKey":"ViridescentVenerer","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_9119"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9120"},{"setKey":"BraveHeart","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mona","lock":true,"id":"artifact_9121"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_9122"},{"setKey":"Scholar","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9123"},{"setKey":"MartialArtist","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Nilou","lock":true,"id":"artifact_9124"},{"setKey":"PrayersForWisdom","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Amber","lock":true,"id":"artifact_9125"},{"setKey":"LuckyDog","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_9126"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Noelle","lock":true,"id":"artifact_9127"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Freminet","lock":true,"id":"artifact_9128"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_9129"},{"setKey":"HeartOfDepth","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9130"},{"setKey":"BlizzardStrayer","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_9131"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Cyno","lock":true,"id":"artifact_9132"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9133"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9134"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Mona","lock":true,"id":"artifact_9135"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9136"},{"setKey":"MartialArtist","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_9137"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_9138"},{"setKey":"PrayersToSpringtime","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_9139"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_9140"},{"setKey":"OceanHuedClam","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lynette","lock":true,"id":"artifact_9141"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Chiori","lock":true,"id":"artifact_9142"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_9143"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9144"},{"setKey":"OceanHuedClam","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9145"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_9146"},{"setKey":"GladiatorsFinale","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9147"},{"setKey":"PrayersForWisdom","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9148"},{"setKey":"OceanHuedClam","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_9149"},{"setKey":"MarechausseeHunter","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_9150"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_9151"},{"setKey":"NoblesseOblige","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_9152"},{"setKey":"NymphsDream","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9153"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Navia","lock":true,"id":"artifact_9154"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_9155"},{"setKey":"Berserker","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Nilou","lock":true,"id":"artifact_9156"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Klee","lock":true,"id":"artifact_9157"},{"setKey":"TheExile","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9158"},{"setKey":"OceanHuedClam","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Mona","lock":true,"id":"artifact_9159"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_9160"},{"setKey":"TravelingDoctor","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9161"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_9162"},{"setKey":"RetracingBolide","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_9163"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_9164"},{"setKey":"BraveHeart","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_9165"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_9166"},{"setKey":"BraveHeart","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_9167"},{"setKey":"GladiatorsFinale","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Freminet","lock":true,"id":"artifact_9168"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9169"},{"setKey":"GladiatorsFinale","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Chiori","lock":true,"id":"artifact_9170"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_9171"},{"setKey":"ViridescentVenerer","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9172"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_9173"},{"setKey":"RetracingBolide","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9174"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_9175"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_9176"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9177"},{"setKey":"PrayersToSpringtime","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9178"},{"setKey":"VermillionHereafter","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Navia","lock":true,"id":"artifact_9179"},{"setKey":"BlizzardStrayer","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Traveler","lock":true,"id":"artifact_9180"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9181"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_9182"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9183"},{"setKey":"DeepwoodMemories","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_9184"},{"setKey":"GladiatorsFinale","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_9185"},{"setKey":"Adventurer","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_9186"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9187"},{"setKey":"PrayersForWisdom","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_9188"},{"setKey":"Adventurer","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_9189"},{"setKey":"MaidenBeloved","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9190"},{"setKey":"RetracingBolide","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9191"},{"setKey":"Berserker","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9192"},{"setKey":"ViridescentVenerer","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Barbara","lock":true,"id":"artifact_9193"},{"setKey":"GladiatorsFinale","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_9194"},{"setKey":"Gambler","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_9195"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9196"},{"setKey":"GladiatorsFinale","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9197"},{"setKey":"Gambler","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_9198"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9199"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_9200"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_9201"},{"setKey":"PrayersToSpringtime","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_9202"},{"setKey":"TravelingDoctor","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9203"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9204"},{"setKey":"ThunderingFury","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_9205"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_9206"},{"setKey":"Instructor","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_9207"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_9208"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_9209"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_9210"},{"setKey":"GoldenTroupe","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_9211"},{"setKey":"PaleFlame","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Collei","lock":true,"id":"artifact_9212"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_9213"},{"setKey":"GildedDreams","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_9214"},{"setKey":"GildedDreams","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Kirara","lock":true,"id":"artifact_9215"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_9216"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Chiori","lock":true,"id":"artifact_9217"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_9218"},{"setKey":"VermillionHereafter","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_9219"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_9220"},{"setKey":"NymphsDream","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9221"},{"setKey":"PrayersForWisdom","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_9222"},{"setKey":"DeepwoodMemories","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9223"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9224"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_9225"},{"setKey":"BlizzardStrayer","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_9226"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_9227"},{"setKey":"MaidenBeloved","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_9228"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_9229"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Candace","lock":true,"id":"artifact_9230"},{"setKey":"ThunderingFury","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_9231"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9232"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_9233"},{"setKey":"SongOfDaysPast","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9234"},{"setKey":"TheExile","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Freminet","lock":true,"id":"artifact_9235"},{"setKey":"MarechausseeHunter","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Lisa","lock":true,"id":"artifact_9236"},{"setKey":"SongOfDaysPast","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_9237"},{"setKey":"BlizzardStrayer","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_9238"},{"setKey":"OceanHuedClam","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_9239"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_9240"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9241"},{"setKey":"GoldenTroupe","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_9242"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_9243"},{"setKey":"Gambler","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9244"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_9245"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_9246"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_9247"},{"setKey":"LuckyDog","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_9248"},{"setKey":"OceanHuedClam","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9249"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_9250"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Klee","lock":true,"id":"artifact_9251"},{"setKey":"Scholar","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9252"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Traveler","lock":true,"id":"artifact_9253"},{"setKey":"OceanHuedClam","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Dehya","lock":true,"id":"artifact_9254"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9255"},{"setKey":"SongOfDaysPast","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"HuTao","lock":true,"id":"artifact_9256"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_9257"},{"setKey":"PaleFlame","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_9258"},{"setKey":"PaleFlame","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yelan","lock":true,"id":"artifact_9259"},{"setKey":"TinyMiracle","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Mona","lock":true,"id":"artifact_9260"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_9261"},{"setKey":"RetracingBolide","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_9262"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_9263"},{"setKey":"SongOfDaysPast","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_9264"},{"setKey":"HeartOfDepth","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9265"},{"setKey":"GildedDreams","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_9266"},{"setKey":"GoldenTroupe","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_9267"},{"setKey":"DefendersWill","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9268"},{"setKey":"VourukashasGlow","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_9269"},{"setKey":"TinyMiracle","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Klee","lock":true,"id":"artifact_9270"},{"setKey":"MartialArtist","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9271"},{"setKey":"VourukashasGlow","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9272"},{"setKey":"Adventurer","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_9273"},{"setKey":"HeartOfDepth","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_9274"},{"setKey":"PrayersForWisdom","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9275"},{"setKey":"MarechausseeHunter","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_9276"},{"setKey":"DeepwoodMemories","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9277"},{"setKey":"ArchaicPetra","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_9278"},{"setKey":"SongOfDaysPast","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_9279"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gaming","lock":true,"id":"artifact_9280"},{"setKey":"VourukashasGlow","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Lisa","lock":true,"id":"artifact_9281"},{"setKey":"Lavawalker","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_9282"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Collei","lock":true,"id":"artifact_9283"},{"setKey":"MaidenBeloved","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_9284"},{"setKey":"BraveHeart","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Furina","lock":true,"id":"artifact_9285"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ningguang","lock":true,"id":"artifact_9286"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_9287"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kirara","lock":true,"id":"artifact_9288"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Venti","lock":true,"id":"artifact_9289"},{"setKey":"ThunderingFury","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Cyno","lock":true,"id":"artifact_9290"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_9291"},{"setKey":"GildedDreams","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_9292"},{"setKey":"VermillionHereafter","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9293"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lisa","lock":true,"id":"artifact_9294"},{"setKey":"PaleFlame","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9295"},{"setKey":"BlizzardStrayer","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_9296"},{"setKey":"Adventurer","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9297"},{"setKey":"PrayersToSpringtime","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_9298"},{"setKey":"ThunderingFury","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_9299"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Thoma","lock":true,"id":"artifact_9300"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9301"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Qiqi","lock":true,"id":"artifact_9302"},{"setKey":"RetracingBolide","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_9303"},{"setKey":"NymphsDream","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9304"},{"setKey":"PrayersToSpringtime","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_9305"},{"setKey":"MarechausseeHunter","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_9306"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9307"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xiao","lock":true,"id":"artifact_9308"},{"setKey":"PrayersForWisdom","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_9309"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Furina","lock":true,"id":"artifact_9310"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_9311"},{"setKey":"LuckyDog","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_9312"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9313"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Gorou","lock":true,"id":"artifact_9314"},{"setKey":"GildedDreams","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_9315"},{"setKey":"MaidenBeloved","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9316"},{"setKey":"TravelingDoctor","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_9317"},{"setKey":"MartialArtist","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Nahida","lock":true,"id":"artifact_9318"},{"setKey":"Lavawalker","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_9319"},{"setKey":"GoldenTroupe","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_9320"},{"setKey":"RetracingBolide","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9321"},{"setKey":"TheExile","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_9322"},{"setKey":"ViridescentVenerer","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_9323"},{"setKey":"TheExile","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_9324"},{"setKey":"LuckyDog","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_9325"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lisa","lock":true,"id":"artifact_9326"},{"setKey":"Berserker","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_9327"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_9328"},{"setKey":"Berserker","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"YunJin","lock":true,"id":"artifact_9329"},{"setKey":"TheExile","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diluc","lock":true,"id":"artifact_9330"},{"setKey":"RetracingBolide","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kaeya","lock":true,"id":"artifact_9331"},{"setKey":"Gambler","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Faruzan","lock":true,"id":"artifact_9332"},{"setKey":"DeepwoodMemories","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9333"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Aloy","lock":true,"id":"artifact_9334"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Jean","lock":true,"id":"artifact_9335"},{"setKey":"BlizzardStrayer","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_9336"},{"setKey":"BlizzardStrayer","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"HuTao","lock":true,"id":"artifact_9337"},{"setKey":"BlizzardStrayer","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Eula","lock":true,"id":"artifact_9338"},{"setKey":"GladiatorsFinale","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Mona","lock":true,"id":"artifact_9339"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9340"},{"setKey":"DeepwoodMemories","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_9341"},{"setKey":"VourukashasGlow","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_9342"},{"setKey":"VourukashasGlow","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_9343"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9344"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_9345"},{"setKey":"LuckyDog","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Gaming","lock":true,"id":"artifact_9346"},{"setKey":"Thundersoother","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9347"},{"setKey":"Thundersoother","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9348"},{"setKey":"NoblesseOblige","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Gaming","lock":true,"id":"artifact_9349"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9350"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9351"},{"setKey":"DeepwoodMemories","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9352"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Keqing","lock":true,"id":"artifact_9353"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_9354"},{"setKey":"NoblesseOblige","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9355"},{"setKey":"BloodstainedChivalry","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9356"},{"setKey":"TheExile","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chongyun","lock":true,"id":"artifact_9357"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_9358"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YunJin","lock":true,"id":"artifact_9359"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_9360"},{"setKey":"HeartOfDepth","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9361"},{"setKey":"Scholar","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_9362"},{"setKey":"DeepwoodMemories","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9363"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_9364"},{"setKey":"Gambler","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_9365"},{"setKey":"PrayersToSpringtime","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Diluc","lock":true,"id":"artifact_9366"},{"setKey":"RetracingBolide","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9367"},{"setKey":"DefendersWill","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_9368"},{"setKey":"NoblesseOblige","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9369"},{"setKey":"Lavawalker","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Furina","lock":true,"id":"artifact_9370"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_9371"},{"setKey":"GoldenTroupe","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9372"},{"setKey":"NoblesseOblige","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9373"},{"setKey":"GildedDreams","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9374"},{"setKey":"Berserker","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Thoma","lock":true,"id":"artifact_9375"},{"setKey":"VourukashasGlow","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_9376"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9377"},{"setKey":"NoblesseOblige","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Thoma","lock":true,"id":"artifact_9378"},{"setKey":"DeepwoodMemories","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xiao","lock":true,"id":"artifact_9379"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_9380"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_9381"},{"setKey":"GladiatorsFinale","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Xiao","lock":true,"id":"artifact_9382"},{"setKey":"MaidenBeloved","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Candace","lock":true,"id":"artifact_9383"},{"setKey":"HeartOfDepth","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_9384"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_9385"},{"setKey":"DeepwoodMemories","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gorou","lock":true,"id":"artifact_9386"},{"setKey":"BraveHeart","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_9387"},{"setKey":"TinyMiracle","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Klee","lock":true,"id":"artifact_9388"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_9389"},{"setKey":"WanderersTroupe","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9390"},{"setKey":"Scholar","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Yelan","lock":true,"id":"artifact_9391"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_9392"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9393"},{"setKey":"ViridescentVenerer","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_9394"},{"setKey":"TheExile","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_9395"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9396"},{"setKey":"NoblesseOblige","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9397"},{"setKey":"GildedDreams","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_9398"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Shenhe","lock":true,"id":"artifact_9399"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Noelle","lock":true,"id":"artifact_9400"},{"setKey":"TravelingDoctor","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_9401"},{"setKey":"OceanHuedClam","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_9402"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_9403"},{"setKey":"PrayersForWisdom","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Freminet","lock":true,"id":"artifact_9404"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_9405"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_9406"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Diona","lock":true,"id":"artifact_9407"},{"setKey":"TravelingDoctor","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_9408"},{"setKey":"NymphsDream","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_9409"},{"setKey":"Berserker","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"HuTao","lock":true,"id":"artifact_9410"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9411"},{"setKey":"PrayersForDestiny","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9412"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_9413"},{"setKey":"TheExile","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9414"},{"setKey":"Gambler","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9415"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Sayu","lock":true,"id":"artifact_9416"},{"setKey":"Scholar","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Collei","lock":true,"id":"artifact_9417"},{"setKey":"ArchaicPetra","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dori","lock":true,"id":"artifact_9418"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_9419"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9420"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Sucrose","lock":true,"id":"artifact_9421"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9422"},{"setKey":"PrayersForWisdom","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_9423"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9424"},{"setKey":"MartialArtist","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_9425"},{"setKey":"WanderersTroupe","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Albedo","lock":true,"id":"artifact_9426"},{"setKey":"BlizzardStrayer","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Xinyan","lock":true,"id":"artifact_9427"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KujouSara","lock":true,"id":"artifact_9428"},{"setKey":"DefendersWill","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9429"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_9430"},{"setKey":"DeepwoodMemories","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9431"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_9432"},{"setKey":"DeepwoodMemories","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9433"},{"setKey":"Berserker","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9434"},{"setKey":"BlizzardStrayer","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9435"},{"setKey":"PrayersForWisdom","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Mika","lock":true,"id":"artifact_9436"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_9437"},{"setKey":"BlizzardStrayer","rarity":5,"level":17,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Dehya","lock":true,"id":"artifact_9438"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_9439"},{"setKey":"BloodstainedChivalry","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_9440"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_9441"},{"setKey":"Adventurer","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Faruzan","lock":true,"id":"artifact_9442"},{"setKey":"BloodstainedChivalry","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9443"},{"setKey":"GladiatorsFinale","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9444"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_9445"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Navia","lock":true,"id":"artifact_9446"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_9447"},{"setKey":"VourukashasGlow","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Lynette","lock":true,"id":"artifact_9448"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_9449"},{"setKey":"ViridescentVenerer","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Nilou","lock":true,"id":"artifact_9450"},{"setKey":"MartialArtist","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_9451"},{"setKey":"GoldenTroupe","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9452"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9453"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_9454"},{"setKey":"GladiatorsFinale","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_9455"},{"setKey":"TravelingDoctor","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_9456"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9457"},{"setKey":"ThunderingFury","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Kirara","lock":true,"id":"artifact_9458"},{"setKey":"Thundersoother","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Eula","lock":true,"id":"artifact_9459"},{"setKey":"ViridescentVenerer","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9460"},{"setKey":"ViridescentVenerer","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9461"},{"setKey":"OceanHuedClam","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_9462"},{"setKey":"HeartOfDepth","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_9463"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_9464"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Charlotte","lock":true,"id":"artifact_9465"},{"setKey":"GoldenTroupe","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9466"},{"setKey":"NymphsDream","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nilou","lock":true,"id":"artifact_9467"},{"setKey":"RetracingBolide","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_9468"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_9469"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Lisa","lock":true,"id":"artifact_9470"},{"setKey":"Gambler","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Venti","lock":true,"id":"artifact_9471"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_9472"},{"setKey":"Lavawalker","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9473"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9474"},{"setKey":"TravelingDoctor","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Traveler","lock":true,"id":"artifact_9475"},{"setKey":"HeartOfDepth","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_9476"},{"setKey":"PrayersForDestiny","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_9477"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9478"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Mona","lock":true,"id":"artifact_9479"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9480"},{"setKey":"VermillionHereafter","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Freminet","lock":true,"id":"artifact_9481"},{"setKey":"Instructor","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9482"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9483"},{"setKey":"OceanHuedClam","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_9484"},{"setKey":"HeartOfDepth","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Lyney","lock":true,"id":"artifact_9485"},{"setKey":"HeartOfDepth","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_9486"},{"setKey":"TheExile","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Sayu","lock":true,"id":"artifact_9487"},{"setKey":"VermillionHereafter","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_9488"},{"setKey":"GoldenTroupe","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Razor","lock":true,"id":"artifact_9489"},{"setKey":"WanderersTroupe","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Freminet","lock":true,"id":"artifact_9490"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"HuTao","lock":true,"id":"artifact_9491"},{"setKey":"GoldenTroupe","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_9492"},{"setKey":"TravelingDoctor","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9493"},{"setKey":"PrayersForDestiny","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Traveler","lock":true,"id":"artifact_9494"},{"setKey":"WanderersTroupe","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9495"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_9496"},{"setKey":"PrayersForWisdom","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_9497"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Lynette","lock":true,"id":"artifact_9498"},{"setKey":"BraveHeart","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_9499"},{"setKey":"PrayersForWisdom","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_9500"},{"setKey":"OceanHuedClam","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_9501"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9502"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_9503"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_9504"},{"setKey":"TheExile","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9505"},{"setKey":"DefendersWill","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_9506"},{"setKey":"DefendersWill","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_9507"},{"setKey":"Adventurer","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_9508"},{"setKey":"TheExile","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_9509"},{"setKey":"ThunderingFury","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Bennett","lock":true,"id":"artifact_9510"},{"setKey":"WanderersTroupe","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Yelan","lock":true,"id":"artifact_9511"},{"setKey":"Berserker","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Layla","lock":true,"id":"artifact_9512"},{"setKey":"BraveHeart","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9513"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Gorou","lock":true,"id":"artifact_9514"},{"setKey":"ThunderingFury","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Nilou","lock":true,"id":"artifact_9515"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_9516"},{"setKey":"PrayersForWisdom","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_9517"},{"setKey":"MartialArtist","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Noelle","lock":true,"id":"artifact_9518"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_9519"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_9520"},{"setKey":"Berserker","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_9521"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mika","lock":true,"id":"artifact_9522"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_9523"},{"setKey":"PrayersForWisdom","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Lyney","lock":true,"id":"artifact_9524"},{"setKey":"PrayersForIllumination","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9525"},{"setKey":"BraveHeart","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Layla","lock":true,"id":"artifact_9526"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_9527"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9528"},{"setKey":"MartialArtist","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_9529"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_9530"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9531"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Venti","lock":true,"id":"artifact_9532"},{"setKey":"MaidenBeloved","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Beidou","lock":true,"id":"artifact_9533"},{"setKey":"PaleFlame","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_9534"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9535"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Cyno","lock":true,"id":"artifact_9536"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Lyney","lock":true,"id":"artifact_9537"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_9538"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Collei","lock":true,"id":"artifact_9539"},{"setKey":"WanderersTroupe","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Barbara","lock":true,"id":"artifact_9540"},{"setKey":"Instructor","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_9541"},{"setKey":"NoblesseOblige","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Thoma","lock":true,"id":"artifact_9542"},{"setKey":"DeepwoodMemories","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_9543"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Diluc","lock":true,"id":"artifact_9544"},{"setKey":"DeepwoodMemories","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Candace","lock":true,"id":"artifact_9545"},{"setKey":"Instructor","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9546"},{"setKey":"PrayersForDestiny","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Nilou","lock":true,"id":"artifact_9547"},{"setKey":"PrayersToSpringtime","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9548"},{"setKey":"HeartOfDepth","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_9549"},{"setKey":"DeepwoodMemories","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_9550"},{"setKey":"Scholar","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Gaming","lock":true,"id":"artifact_9551"},{"setKey":"DeepwoodMemories","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_9552"},{"setKey":"NymphsDream","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9553"},{"setKey":"DeepwoodMemories","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Beidou","lock":true,"id":"artifact_9554"},{"setKey":"Thundersoother","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Klee","lock":true,"id":"artifact_9555"},{"setKey":"RetracingBolide","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_9556"},{"setKey":"PrayersForIllumination","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Sayu","lock":true,"id":"artifact_9557"},{"setKey":"Gambler","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Noelle","lock":true,"id":"artifact_9558"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Xiao","lock":true,"id":"artifact_9559"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_9560"},{"setKey":"Lavawalker","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_9561"},{"setKey":"ThunderingFury","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Mona","lock":true,"id":"artifact_9562"},{"setKey":"PrayersForWisdom","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_9563"},{"setKey":"Thundersoother","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9564"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_9565"},{"setKey":"TravelingDoctor","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_9566"},{"setKey":"HeartOfDepth","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_9567"},{"setKey":"BloodstainedChivalry","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Klee","lock":true,"id":"artifact_9568"},{"setKey":"Gambler","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_9569"},{"setKey":"PrayersForIllumination","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_9570"},{"setKey":"MartialArtist","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_9571"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xinyan","lock":true,"id":"artifact_9572"},{"setKey":"PaleFlame","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_9573"},{"setKey":"TheExile","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_9574"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_9575"},{"setKey":"VermillionHereafter","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_9576"},{"setKey":"Scholar","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_9577"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_9578"},{"setKey":"Gambler","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9579"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9580"},{"setKey":"TinyMiracle","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9581"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_9582"},{"setKey":"Lavawalker","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9583"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_9584"},{"setKey":"MaidenBeloved","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9585"},{"setKey":"GildedDreams","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9586"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaeya","lock":true,"id":"artifact_9587"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_9588"},{"setKey":"GoldenTroupe","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Amber","lock":true,"id":"artifact_9589"},{"setKey":"RetracingBolide","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Layla","lock":true,"id":"artifact_9590"},{"setKey":"TheExile","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9591"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Gorou","lock":true,"id":"artifact_9592"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Dori","lock":true,"id":"artifact_9593"},{"setKey":"BraveHeart","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9594"},{"setKey":"SongOfDaysPast","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9595"},{"setKey":"SongOfDaysPast","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Venti","lock":true,"id":"artifact_9596"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiao","lock":true,"id":"artifact_9597"},{"setKey":"PrayersForWisdom","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9598"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Lynette","lock":true,"id":"artifact_9599"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_9600"},{"setKey":"Berserker","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Sayu","lock":true,"id":"artifact_9601"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9602"},{"setKey":"RetracingBolide","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Lynette","lock":true,"id":"artifact_9603"},{"setKey":"MartialArtist","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_9604"},{"setKey":"MartialArtist","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_9605"},{"setKey":"ArchaicPetra","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_9606"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_9607"},{"setKey":"BlizzardStrayer","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_9608"},{"setKey":"Thundersoother","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_9609"},{"setKey":"NoblesseOblige","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_9610"},{"setKey":"HeartOfDepth","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Aloy","lock":true,"id":"artifact_9611"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_9612"},{"setKey":"Scholar","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Klee","lock":true,"id":"artifact_9613"},{"setKey":"PrayersToSpringtime","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mika","lock":true,"id":"artifact_9614"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Jean","lock":true,"id":"artifact_9615"},{"setKey":"Scholar","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_9616"},{"setKey":"BraveHeart","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_9617"},{"setKey":"MarechausseeHunter","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_9618"},{"setKey":"ArchaicPetra","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_9619"},{"setKey":"Berserker","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Diona","lock":true,"id":"artifact_9620"},{"setKey":"NoblesseOblige","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_9621"},{"setKey":"DeepwoodMemories","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Bennett","lock":true,"id":"artifact_9622"},{"setKey":"PrayersToSpringtime","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9623"},{"setKey":"MarechausseeHunter","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_9624"},{"setKey":"PaleFlame","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Eula","lock":true,"id":"artifact_9625"},{"setKey":"NymphsDream","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Keqing","lock":true,"id":"artifact_9626"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9627"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9628"},{"setKey":"DeepwoodMemories","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"HuTao","lock":true,"id":"artifact_9629"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Gorou","lock":true,"id":"artifact_9630"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9631"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9632"},{"setKey":"OceanHuedClam","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Gorou","lock":true,"id":"artifact_9633"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Diluc","lock":true,"id":"artifact_9634"},{"setKey":"HeartOfDepth","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_9635"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Furina","lock":true,"id":"artifact_9636"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_9637"},{"setKey":"PrayersForWisdom","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lisa","lock":true,"id":"artifact_9638"},{"setKey":"VermillionHereafter","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Mika","lock":true,"id":"artifact_9639"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9640"},{"setKey":"TinyMiracle","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_9641"},{"setKey":"MaidenBeloved","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9642"},{"setKey":"Thundersoother","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_9643"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Dori","lock":true,"id":"artifact_9644"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Shenhe","lock":true,"id":"artifact_9645"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Sayu","lock":true,"id":"artifact_9646"},{"setKey":"MartialArtist","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Bennett","lock":true,"id":"artifact_9647"},{"setKey":"WanderersTroupe","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_9648"},{"setKey":"HeartOfDepth","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_9649"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_9650"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":14,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Dori","lock":true,"id":"artifact_9651"},{"setKey":"ThunderingFury","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xiao","lock":true,"id":"artifact_9652"},{"setKey":"Adventurer","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_9653"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Keqing","lock":true,"id":"artifact_9654"},{"setKey":"PrayersForIllumination","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9655"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_9656"},{"setKey":"MaidenBeloved","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Kaveh","lock":true,"id":"artifact_9657"},{"setKey":"MartialArtist","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9658"},{"setKey":"MaidenBeloved","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9659"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_9660"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YunJin","lock":true,"id":"artifact_9661"},{"setKey":"GladiatorsFinale","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_9662"},{"setKey":"GoldenTroupe","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Venti","lock":true,"id":"artifact_9663"},{"setKey":"OceanHuedClam","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_9664"},{"setKey":"PaleFlame","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_9665"},{"setKey":"VourukashasGlow","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_9666"},{"setKey":"GildedDreams","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"HuTao","lock":true,"id":"artifact_9667"},{"setKey":"HeartOfDepth","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiao","lock":true,"id":"artifact_9668"},{"setKey":"HeartOfDepth","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Shenhe","lock":true,"id":"artifact_9669"},{"setKey":"MarechausseeHunter","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_9670"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_9671"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Barbara","lock":true,"id":"artifact_9672"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Faruzan","lock":true,"id":"artifact_9673"},{"setKey":"BlizzardStrayer","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Albedo","lock":true,"id":"artifact_9674"},{"setKey":"VermillionHereafter","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9675"},{"setKey":"PrayersForWisdom","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_9676"},{"setKey":"OceanHuedClam","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9677"},{"setKey":"ArchaicPetra","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9678"},{"setKey":"TinyMiracle","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Nilou","lock":true,"id":"artifact_9679"},{"setKey":"MaidenBeloved","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_9680"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_9681"},{"setKey":"Instructor","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9682"},{"setKey":"GoldenTroupe","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9683"},{"setKey":"VourukashasGlow","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9684"},{"setKey":"SongOfDaysPast","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9685"},{"setKey":"BloodstainedChivalry","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9686"},{"setKey":"ThunderingFury","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9687"},{"setKey":"LuckyDog","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Yelan","lock":true,"id":"artifact_9688"},{"setKey":"PrayersForIllumination","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xianyun","lock":true,"id":"artifact_9689"},{"setKey":"Thundersoother","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_9690"},{"setKey":"NymphsDream","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_9691"},{"setKey":"PaleFlame","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_9692"},{"setKey":"Berserker","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9693"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Nahida","lock":true,"id":"artifact_9694"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_9695"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Collei","lock":true,"id":"artifact_9696"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9697"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_9698"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Gaming","lock":true,"id":"artifact_9699"},{"setKey":"Adventurer","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_9700"},{"setKey":"PrayersForDestiny","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_9701"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Gorou","lock":true,"id":"artifact_9702"},{"setKey":"BlizzardStrayer","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9703"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Dori","lock":true,"id":"artifact_9704"},{"setKey":"Scholar","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9705"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9706"},{"setKey":"Berserker","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Mika","lock":true,"id":"artifact_9707"},{"setKey":"BloodstainedChivalry","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9708"},{"setKey":"BraveHeart","rarity":5,"level":12,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Lynette","lock":true,"id":"artifact_9709"},{"setKey":"Thundersoother","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9710"},{"setKey":"TravelingDoctor","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9711"},{"setKey":"BloodstainedChivalry","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Fischl","lock":true,"id":"artifact_9712"},{"setKey":"Gambler","rarity":5,"level":11,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Nahida","lock":true,"id":"artifact_9713"},{"setKey":"BlizzardStrayer","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_9714"},{"setKey":"LuckyDog","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Freminet","lock":true,"id":"artifact_9715"},{"setKey":"ArchaicPetra","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9716"},{"setKey":"RetracingBolide","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_9717"},{"setKey":"PrayersForWisdom","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9718"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Yelan","lock":true,"id":"artifact_9719"},{"setKey":"OceanHuedClam","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9720"},{"setKey":"TinyMiracle","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Bennett","lock":true,"id":"artifact_9721"},{"setKey":"VermillionHereafter","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Amber","lock":true,"id":"artifact_9722"},{"setKey":"ViridescentVenerer","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9723"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_9724"},{"setKey":"MartialArtist","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"YunJin","lock":true,"id":"artifact_9725"},{"setKey":"Gambler","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Gorou","lock":true,"id":"artifact_9726"},{"setKey":"GladiatorsFinale","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_9727"},{"setKey":"PrayersForWisdom","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Chiori","lock":true,"id":"artifact_9728"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"HuTao","lock":true,"id":"artifact_9729"},{"setKey":"RetracingBolide","rarity":5,"level":15,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"YunJin","lock":true,"id":"artifact_9730"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_9731"},{"setKey":"WanderersTroupe","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9732"},{"setKey":"PrayersToSpringtime","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Lyney","lock":true,"id":"artifact_9733"},{"setKey":"MarechausseeHunter","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Jean","lock":true,"id":"artifact_9734"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9735"},{"setKey":"HeartOfDepth","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"HuTao","lock":true,"id":"artifact_9736"},{"setKey":"Adventurer","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kaveh","lock":true,"id":"artifact_9737"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sayu","lock":true,"id":"artifact_9738"},{"setKey":"PrayersForIllumination","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Navia","lock":true,"id":"artifact_9739"},{"setKey":"GladiatorsFinale","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9740"},{"setKey":"MartialArtist","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Albedo","lock":true,"id":"artifact_9741"},{"setKey":"DeepwoodMemories","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Collei","lock":true,"id":"artifact_9742"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_9743"},{"setKey":"SongOfDaysPast","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_9744"},{"setKey":"PrayersForDestiny","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Venti","lock":true,"id":"artifact_9745"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Collei","lock":true,"id":"artifact_9746"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Aloy","lock":true,"id":"artifact_9747"},{"setKey":"WanderersTroupe","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9748"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9749"},{"setKey":"TravelingDoctor","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_9750"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Cyno","lock":true,"id":"artifact_9751"},{"setKey":"TravelingDoctor","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_9752"},{"setKey":"Lavawalker","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_9753"},{"setKey":"BlizzardStrayer","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9754"},{"setKey":"TravelingDoctor","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Eula","lock":true,"id":"artifact_9755"},{"setKey":"GladiatorsFinale","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9756"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Mika","lock":true,"id":"artifact_9757"},{"setKey":"Scholar","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9758"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Noelle","lock":true,"id":"artifact_9759"},{"setKey":"DefendersWill","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_9760"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":16,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Razor","lock":true,"id":"artifact_9761"},{"setKey":"PrayersForIllumination","rarity":5,"level":1,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_9762"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lisa","lock":true,"id":"artifact_9763"},{"setKey":"PrayersToSpringtime","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Jean","lock":true,"id":"artifact_9764"},{"setKey":"OceanHuedClam","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Dehya","lock":true,"id":"artifact_9765"},{"setKey":"PaleFlame","rarity":5,"level":9,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9766"},{"setKey":"DefendersWill","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9767"},{"setKey":"Lavawalker","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"HuTao","lock":true,"id":"artifact_9768"},{"setKey":"ViridescentVenerer","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_9769"},{"setKey":"ViridescentVenerer","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lynette","lock":true,"id":"artifact_9770"},{"setKey":"BraveHeart","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_9771"},{"setKey":"MartialArtist","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Furina","lock":true,"id":"artifact_9772"},{"setKey":"TravelingDoctor","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"YaeMiko","lock":true,"id":"artifact_9773"},{"setKey":"BloodstainedChivalry","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_9774"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9775"},{"setKey":"TheExile","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KujouSara","lock":true,"id":"artifact_9776"},{"setKey":"Thundersoother","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Barbara","lock":true,"id":"artifact_9777"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Cyno","lock":true,"id":"artifact_9778"},{"setKey":"DeepwoodMemories","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chongyun","lock":true,"id":"artifact_9779"},{"setKey":"BlizzardStrayer","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_9780"},{"setKey":"NoblesseOblige","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9781"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":2,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_9782"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Charlotte","lock":true,"id":"artifact_9783"},{"setKey":"MartialArtist","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Dori","lock":true,"id":"artifact_9784"},{"setKey":"PaleFlame","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9785"},{"setKey":"Lavawalker","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dori","lock":true,"id":"artifact_9786"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Kirara","lock":true,"id":"artifact_9787"},{"setKey":"Lavawalker","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lyney","lock":true,"id":"artifact_9788"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9789"},{"setKey":"ArchaicPetra","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9790"},{"setKey":"MarechausseeHunter","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Diona","lock":true,"id":"artifact_9791"},{"setKey":"ThunderingFury","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_9792"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Sucrose","lock":true,"id":"artifact_9793"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Candace","lock":true,"id":"artifact_9794"},{"setKey":"SongOfDaysPast","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Zhongli","lock":true,"id":"artifact_9795"},{"setKey":"BloodstainedChivalry","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Klee","lock":true,"id":"artifact_9796"},{"setKey":"BlizzardStrayer","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Freminet","lock":true,"id":"artifact_9797"},{"setKey":"MarechausseeHunter","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Diona","lock":true,"id":"artifact_9798"},{"setKey":"PrayersForIllumination","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_9799"},{"setKey":"Thundersoother","rarity":5,"level":13,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xinyan","lock":true,"id":"artifact_9800"},{"setKey":"BraveHeart","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9801"},{"setKey":"Scholar","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9802"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Amber","lock":true,"id":"artifact_9803"},{"setKey":"Berserker","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Xiao","lock":true,"id":"artifact_9804"},{"setKey":"NoblesseOblige","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9805"},{"setKey":"PrayersToSpringtime","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Chevreuse","lock":true,"id":"artifact_9806"},{"setKey":"VourukashasGlow","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Yanfei","lock":true,"id":"artifact_9807"},{"setKey":"MarechausseeHunter","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Wanderer","lock":true,"id":"artifact_9808"},{"setKey":"ThunderingFury","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lisa","lock":true,"id":"artifact_9809"},{"setKey":"VourukashasGlow","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_9810"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9811"},{"setKey":"GildedDreams","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_9812"},{"setKey":"MartialArtist","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_9813"},{"setKey":"PrayersForIllumination","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9814"},{"setKey":"DeepwoodMemories","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Lyney","lock":true,"id":"artifact_9815"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":4,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_9816"},{"setKey":"TinyMiracle","rarity":5,"level":11,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Collei","lock":true,"id":"artifact_9817"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Albedo","lock":true,"id":"artifact_9818"},{"setKey":"Gambler","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9819"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9820"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Fischl","lock":true,"id":"artifact_9821"},{"setKey":"PrayersForIllumination","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Faruzan","lock":true,"id":"artifact_9822"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_9823"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Fischl","lock":true,"id":"artifact_9824"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":4,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_9825"},{"setKey":"MartialArtist","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Eula","lock":true,"id":"artifact_9826"},{"setKey":"PrayersForWisdom","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Chiori","lock":true,"id":"artifact_9827"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":4,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9828"},{"setKey":"GoldenTroupe","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_9829"},{"setKey":"DeepwoodMemories","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_9830"},{"setKey":"GladiatorsFinale","rarity":5,"level":13,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Sayu","lock":true,"id":"artifact_9831"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9832"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Charlotte","lock":true,"id":"artifact_9833"},{"setKey":"Adventurer","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_9834"},{"setKey":"GildedDreams","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_9835"},{"setKey":"TinyMiracle","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9836"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":19,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Mika","lock":true,"id":"artifact_9837"},{"setKey":"Instructor","rarity":5,"level":14,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yelan","lock":true,"id":"artifact_9838"},{"setKey":"DefendersWill","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9839"},{"setKey":"Lavawalker","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Aloy","lock":true,"id":"artifact_9840"},{"setKey":"ThunderingFury","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Albedo","lock":true,"id":"artifact_9841"},{"setKey":"VourukashasGlow","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Nahida","lock":true,"id":"artifact_9842"},{"setKey":"SongOfDaysPast","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Nilou","lock":true,"id":"artifact_9843"},{"setKey":"HeartOfDepth","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9844"},{"setKey":"PrayersForIllumination","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9845"},{"setKey":"HeartOfDepth","rarity":5,"level":8,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_9846"},{"setKey":"MarechausseeHunter","rarity":5,"level":6,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Thoma","lock":true,"id":"artifact_9847"},{"setKey":"Instructor","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Amber","lock":true,"id":"artifact_9848"},{"setKey":"PrayersToSpringtime","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_9849"},{"setKey":"PrayersForDestiny","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Lisa","lock":true,"id":"artifact_9850"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"HuTao","lock":true,"id":"artifact_9851"},{"setKey":"Berserker","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Candace","lock":true,"id":"artifact_9852"},{"setKey":"MaidenBeloved","rarity":5,"level":13,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9853"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Dori","lock":true,"id":"artifact_9854"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Beidou","lock":true,"id":"artifact_9855"},{"setKey":"MarechausseeHunter","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9856"},{"setKey":"PrayersForWisdom","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9857"},{"setKey":"PrayersForWisdom","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Venti","lock":true,"id":"artifact_9858"},{"setKey":"TinyMiracle","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Noelle","lock":true,"id":"artifact_9859"},{"setKey":"SongOfDaysPast","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Bennett","lock":true,"id":"artifact_9860"},{"setKey":"LuckyDog","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9861"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":12,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lynette","lock":true,"id":"artifact_9862"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Razor","lock":true,"id":"artifact_9863"},{"setKey":"DeepwoodMemories","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Rosaria","lock":true,"id":"artifact_9864"},{"setKey":"MaidenBeloved","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"HuTao","lock":true,"id":"artifact_9865"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9866"},{"setKey":"MaidenBeloved","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"anemo_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9867"},{"setKey":"MartialArtist","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_9868"},{"setKey":"Adventurer","rarity":5,"level":1,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Jean","lock":true,"id":"artifact_9869"},{"setKey":"Instructor","rarity":5,"level":6,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Eula","lock":true,"id":"artifact_9870"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lyney","lock":true,"id":"artifact_9871"},{"setKey":"Gambler","rarity":5,"level":0,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"Baizhu","lock":true,"id":"artifact_9872"},{"setKey":"PrayersForDestiny","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sayu","lock":true,"id":"artifact_9873"},{"setKey":"TheExile","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Lisa","lock":true,"id":"artifact_9874"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Thoma","lock":true,"id":"artifact_9875"},{"setKey":"SongOfDaysPast","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Zhongli","lock":true,"id":"artifact_9876"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Nahida","lock":true,"id":"artifact_9877"},{"setKey":"OceanHuedClam","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"HuTao","lock":true,"id":"artifact_9878"},{"setKey":"RetracingBolide","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Wriothesley","lock":true,"id":"artifact_9879"},{"setKey":"GladiatorsFinale","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Dehya","lock":true,"id":"artifact_9880"},{"setKey":"Scholar","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Chiori","lock":true,"id":"artifact_9881"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_9882"},{"setKey":"VourukashasGlow","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Kirara","lock":true,"id":"artifact_9883"},{"setKey":"GildedDreams","rarity":5,"level":11,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Razor","lock":true,"id":"artifact_9884"},{"setKey":"PrayersForWisdom","rarity":5,"level":2,"slotKey":"goblet","mainStatKey":"eleMas","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_9885"},{"setKey":"BraveHeart","rarity":5,"level":18,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Albedo","lock":true,"id":"artifact_9886"},{"setKey":"VourukashasGlow","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9887"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Razor","lock":true,"id":"artifact_9888"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kaveh","lock":true,"id":"artifact_9889"},{"setKey":"MartialArtist","rarity":5,"level":17,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Keqing","lock":true,"id":"artifact_9890"},{"setKey":"RetracingBolide","rarity":5,"level":5,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_9891"},{"setKey":"Gambler","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Jean","lock":true,"id":"artifact_9892"},{"setKey":"MarechausseeHunter","rarity":5,"level":5,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Beidou","lock":true,"id":"artifact_9893"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kirara","lock":true,"id":"artifact_9894"},{"setKey":"RetracingBolide","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9895"},{"setKey":"BlizzardStrayer","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyato","lock":true,"id":"artifact_9896"},{"setKey":"Adventurer","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Aloy","lock":true,"id":"artifact_9897"},{"setKey":"ViridescentVenerer","rarity":5,"level":4,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Venti","lock":true,"id":"artifact_9898"},{"setKey":"MaidenBeloved","rarity":5,"level":16,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Noelle","lock":true,"id":"artifact_9899"},{"setKey":"NoblesseOblige","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Mona","lock":true,"id":"artifact_9900"},{"setKey":"TheExile","rarity":5,"level":8,"slotKey":"goblet","mainStatKey":"def_","substats":[],"location":"Furina","lock":true,"id":"artifact_9901"},{"setKey":"BloodstainedChivalry","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nilou","lock":true,"id":"artifact_9902"},{"setKey":"ThunderingFury","rarity":5,"level":9,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Qiqi","lock":true,"id":"artifact_9903"},{"setKey":"DefendersWill","rarity":5,"level":7,"slotKey":"goblet","mainStatKey":"electro_dmg_","substats":[],"location":"SangonomiyaKokomi","lock":true,"id":"artifact_9904"},{"setKey":"MartialArtist","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"YunJin","lock":true,"id":"artifact_9905"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":7,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Albedo","lock":true,"id":"artifact_9906"},{"setKey":"PrayersToSpringtime","rarity":5,"level":1,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_9907"},{"setKey":"ResolutionOfSojourner","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Klee","lock":true,"id":"artifact_9908"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Sucrose","lock":true,"id":"artifact_9909"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":14,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Collei","lock":true,"id":"artifact_9910"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":7,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9911"},{"setKey":"Adventurer","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Jean","lock":true,"id":"artifact_9912"},{"setKey":"GoldenTroupe","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Venti","lock":true,"id":"artifact_9913"},{"setKey":"GoldenTroupe","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9914"},{"setKey":"VermillionHereafter","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_9915"},{"setKey":"ThunderingFury","rarity":5,"level":17,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Ningguang","lock":true,"id":"artifact_9916"},{"setKey":"PrayersToSpringtime","rarity":5,"level":16,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Keqing","lock":true,"id":"artifact_9917"},{"setKey":"PrayersForDestiny","rarity":5,"level":0,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9918"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":6,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"YunJin","lock":true,"id":"artifact_9919"},{"setKey":"Lavawalker","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Nahida","lock":true,"id":"artifact_9920"},{"setKey":"Scholar","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Barbara","lock":true,"id":"artifact_9921"},{"setKey":"PrayersForDestiny","rarity":5,"level":13,"slotKey":"circlet","mainStatKey":"hp_","substats":[],"location":"Chiori","lock":true,"id":"artifact_9922"},{"setKey":"PrayersToSpringtime","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Razor","lock":true,"id":"artifact_9923"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":15,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Amber","lock":true,"id":"artifact_9924"},{"setKey":"ViridescentVenerer","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Diona","lock":true,"id":"artifact_9925"},{"setKey":"ViridescentVenerer","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9926"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Bennett","lock":true,"id":"artifact_9927"},{"setKey":"GildedDreams","rarity":5,"level":10,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Ganyu","lock":true,"id":"artifact_9928"},{"setKey":"ViridescentVenerer","rarity":5,"level":10,"slotKey":"goblet","mainStatKey":"physical_dmg_","substats":[],"location":"Chongyun","lock":true,"id":"artifact_9929"},{"setKey":"TenacityOfTheMillelith","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Keqing","lock":true,"id":"artifact_9930"},{"setKey":"VourukashasGlow","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Qiqi","lock":true,"id":"artifact_9931"},{"setKey":"Gambler","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9932"},{"setKey":"PrayersForIllumination","rarity":5,"level":16,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KamisatoAyaka","lock":true,"id":"artifact_9933"},{"setKey":"HeartOfDepth","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_9934"},{"setKey":"PrayersForDestiny","rarity":5,"level":17,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Aloy","lock":true,"id":"artifact_9935"},{"setKey":"LuckyDog","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Lyney","lock":true,"id":"artifact_9936"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":2,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9937"},{"setKey":"GladiatorsFinale","rarity":5,"level":18,"slotKey":"goblet","mainStatKey":"atk_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9938"},{"setKey":"Instructor","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9939"},{"setKey":"MartialArtist","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Zhongli","lock":true,"id":"artifact_9940"},{"setKey":"ViridescentVenerer","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_9941"},{"setKey":"VermillionHereafter","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Gorou","lock":true,"id":"artifact_9942"},{"setKey":"VermillionHereafter","rarity":5,"level":1,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Klee","lock":true,"id":"artifact_9943"},{"setKey":"LuckyDog","rarity":5,"level":10,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Qiqi","lock":true,"id":"artifact_9944"},{"setKey":"HeartOfDepth","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Kaveh","lock":true,"id":"artifact_9945"},{"setKey":"NymphsDream","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hydro_dmg_","substats":[],"location":"Gorou","lock":true,"id":"artifact_9946"},{"setKey":"PaleFlame","rarity":5,"level":3,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Lynette","lock":true,"id":"artifact_9947"},{"setKey":"MaidenBeloved","rarity":5,"level":19,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Xiao","lock":true,"id":"artifact_9948"},{"setKey":"PrayersForDestiny","rarity":5,"level":15,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Venti","lock":true,"id":"artifact_9949"},{"setKey":"WanderersTroupe","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Yoimiya","lock":true,"id":"artifact_9950"},{"setKey":"ArchaicPetra","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Shenhe","lock":true,"id":"artifact_9951"},{"setKey":"TravelingDoctor","rarity":5,"level":3,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Lisa","lock":true,"id":"artifact_9952"},{"setKey":"Thundersoother","rarity":5,"level":10,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Furina","lock":true,"id":"artifact_9953"},{"setKey":"VermillionHereafter","rarity":5,"level":19,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Traveler","lock":true,"id":"artifact_9954"},{"setKey":"ArchaicPetra","rarity":5,"level":9,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"HuTao","lock":true,"id":"artifact_9955"},{"setKey":"EmblemOfSeveredFate","rarity":5,"level":12,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Navia","lock":true,"id":"artifact_9956"},{"setKey":"GladiatorsFinale","rarity":5,"level":3,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"AratakiItto","lock":true,"id":"artifact_9957"},{"setKey":"RetracingBolide","rarity":5,"level":18,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Zhongli","lock":true,"id":"artifact_9958"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9959"},{"setKey":"DeepwoodMemories","rarity":5,"level":19,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"Barbara","lock":true,"id":"artifact_9960"},{"setKey":"MartialArtist","rarity":5,"level":12,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Layla","lock":true,"id":"artifact_9961"},{"setKey":"PrayersForWisdom","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"critDMG_","substats":[],"location":"Beidou","lock":true,"id":"artifact_9962"},{"setKey":"CrimsonWitchOfFlames","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Diona","lock":true,"id":"artifact_9963"},{"setKey":"Instructor","rarity":5,"level":8,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Mona","lock":true,"id":"artifact_9964"},{"setKey":"GoldenTroupe","rarity":5,"level":6,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Eula","lock":true,"id":"artifact_9965"},{"setKey":"EchoesOfAnOffering","rarity":5,"level":12,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_9966"},{"setKey":"TravelingDoctor","rarity":5,"level":0,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"ShikanoinHeizou","lock":true,"id":"artifact_9967"},{"setKey":"Lavawalker","rarity":5,"level":7,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Fischl","lock":true,"id":"artifact_9968"},{"setKey":"TravelingDoctor","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"eleMas","substats":[],"location":"Dehya","lock":true,"id":"artifact_9969"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":2,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"KujouSara","lock":true,"id":"artifact_9970"},{"setKey":"MarechausseeHunter","rarity":5,"level":8,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Yelan","lock":true,"id":"artifact_9971"},{"setKey":"VourukashasGlow","rarity":5,"level":5,"slotKey":"circlet","mainStatKey":"atk_","substats":[],"location":"Barbara","lock":true,"id":"artifact_9972"},{"setKey":"TravelingDoctor","rarity":5,"level":9,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"Neuvillette","lock":true,"id":"artifact_9973"},{"setKey":"NymphsDream","rarity":5,"level":7,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"Tartaglia","lock":true,"id":"artifact_9974"},{"setKey":"PrayersToSpringtime","rarity":5,"level":3,"slotKey":"goblet","mainStatKey":"geo_dmg_","substats":[],"location":"Collei","lock":true,"id":"artifact_9975"},{"setKey":"SongOfDaysPast","rarity":5,"level":19,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_9976"},{"setKey":"VermillionHereafter","rarity":5,"level":5,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Kaveh","lock":true,"id":"artifact_9977"},{"setKey":"PaleFlame","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"hp_","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_9978"},{"setKey":"BraveHeart","rarity":5,"level":16,"slotKey":"sands","mainStatKey":"atk_","substats":[],"location":"Navia","lock":true,"id":"artifact_9979"},{"setKey":"MaidenBeloved","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"hp_","substats":[],"location":"Xingqiu","lock":true,"id":"artifact_9980"},{"setKey":"MarechausseeHunter","rarity":5,"level":3,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Chiori","lock":true,"id":"artifact_9981"},{"setKey":"SongOfDaysPast","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"heal_","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_9982"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":0,"slotKey":"circlet","mainStatKey":"eleMas","substats":[],"location":"Eula","lock":true,"id":"artifact_9983"},{"setKey":"Adventurer","rarity":5,"level":14,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Lisa","lock":true,"id":"artifact_9984"},{"setKey":"WanderersTroupe","rarity":5,"level":2,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"Ningguang","lock":true,"id":"artifact_9985"},{"setKey":"Instructor","rarity":5,"level":5,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Xiangling","lock":true,"id":"artifact_9986"},{"setKey":"HuskOfOpulentDreams","rarity":5,"level":15,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KaedeharaKazuha","lock":true,"id":"artifact_9987"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":6,"slotKey":"goblet","mainStatKey":"dendro_dmg_","substats":[],"location":"Furina","lock":true,"id":"artifact_9988"},{"setKey":"MarechausseeHunter","rarity":5,"level":15,"slotKey":"circlet","mainStatKey":"def_","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9989"},{"setKey":"MarechausseeHunter","rarity":5,"level":1,"slotKey":"goblet","mainStatKey":"cryo_dmg_","substats":[],"location":"Navia","lock":true,"id":"artifact_9990"},{"setKey":"PaleFlame","rarity":5,"level":10,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Kirara","lock":true,"id":"artifact_9991"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":17,"slotKey":"goblet","mainStatKey":"pyro_dmg_","substats":[],"location":"Dori","lock":true,"id":"artifact_9992"},{"setKey":"Adventurer","rarity":5,"level":4,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"KukiShinobu","lock":true,"id":"artifact_9993"},{"setKey":"NighttimeWhispersInTheEchoingWoods","rarity":5,"level":11,"slotKey":"circlet","mainStatKey":"critRate_","substats":[],"location":"Chiori","lock":true,"id":"artifact_9994"},{"setKey":"DefendersWill","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"def_","substats":[],"location":"Yaoyao","lock":true,"id":"artifact_9995"},{"setKey":"ShimenawasReminiscence","rarity":5,"level":18,"slotKey":"flower","mainStatKey":"hp","substats":[],"location":"RaidenShogun","lock":true,"id":"artifact_9996"},{"setKey":"PrayersForDestiny","rarity":5,"level":8,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Alhaitham","lock":true,"id":"artifact_9997"},{"setKey":"FlowerOfParadiseLost","rarity":5,"level":11,"slotKey":"plume","mainStatKey":"atk","substats":[],"location":"Tighnari","lock":true,"id":"artifact_9998"},{"setKey":"DesertPavilionChronicle","rarity":5,"level":9,"slotKey":"sands","mainStatKey":"enerRech_","substats":[],"location":"Sayu","lock":true,"id":"artifact_9999"}]} \ No newline at end of file diff --git a/src/morph/rule.test.ts b/src/morph/rule.test.ts index 18f2ab7..2f989a9 100644 --- a/src/morph/rule.test.ts +++ b/src/morph/rule.test.ts @@ -1,5 +1,6 @@ import { assert, test } from "vitest"; -import { validateRule } from "./rule"; +import { Rule, createRuleFunction, validateRule } from "./rule"; +import { Artifact } from "@/good/good_spec"; test("validateRule with undefined should return expected validation error", () => { // Arrange @@ -176,3 +177,87 @@ test("validateRule with an object with name, action and filter properties should }, }); }); + +test("createRuleFunction returns a function that takes in an artifact and returns a mutated artifact if the filter matches the artifact", () => { + // Arrange + const rule: Rule = { + action: { + type: "unequip", + }, + filter: { + type: "equippingCharacter", + characterName: "KamisatoAyaka", + }, + id: 1, + }; + + const ruleFn = createRuleFunction(rule); + + const matchingArtifact: Artifact = { + level: 0, + location: "KamisatoAyaka", + lock: false, + mainStatKey: "critDMG_", + rarity: 5, + setKey: "BlizzardStrayer", + slotKey: "circlet", + substats: [], + }; + + // Act + const mutatedArtifact = ruleFn(matchingArtifact); + + // Assert + assert.deepEqual(mutatedArtifact, { + level: 0, + location: "", + lock: false, + mainStatKey: "critDMG_", + rarity: 5, + setKey: "BlizzardStrayer", + slotKey: "circlet", + substats: [], + }); +}); + +test("createRuleFunction returns a function that takes in an artifact and returns the original artifact if the filter does not match the artifact", () => { + // Arrange + const rule: Rule = { + action: { + type: "unequip", + }, + filter: { + type: "equippingCharacter", + characterName: "KamisatoAyaka", + }, + id: 1, + }; + + const ruleFn = createRuleFunction(rule); + + const matchingArtifact: Artifact = { + level: 0, + location: "Barbara", + lock: false, + mainStatKey: "eleMas", + rarity: 5, + setKey: "FlowerOfParadiseLost", + slotKey: "circlet", + substats: [], + }; + + // Act + const mutatedArtifact = ruleFn(matchingArtifact); + + // Assert + assert.deepEqual(mutatedArtifact, { + level: 0, + location: "Barbara", + lock: false, + mainStatKey: "eleMas", + rarity: 5, + setKey: "FlowerOfParadiseLost", + slotKey: "circlet", + substats: [], + }); +}); diff --git a/src/morph/rule.ts b/src/morph/rule.ts index a6d833e..bf006e1 100644 --- a/src/morph/rule.ts +++ b/src/morph/rule.ts @@ -1,5 +1,15 @@ -import { ActionInstance, validateActionInstance } from "./actions"; -import { FilterInstance, validateFilterInstance } from "./filters"; +import { type Artifact } from "@/good/good_spec"; +import { + ActionDefinitionType, + ActionInstance, + actionDefinitionsByType, + validateActionInstance, +} from "./actions"; +import { + FilterInstance, + filterDefinitionsByType, + validateFilterInstance, +} from "./filters"; import { ValidationErrorDetail, ValidationResult, @@ -85,3 +95,23 @@ export function validateRule(rule: unknown): ValidationResult { return createSuccess(sanitizedRule); } + +export function createRuleFunction(rule: Rule) { + const { action, filter } = rule; + + const filterType = filter.type; + // TODO fix this cast + const filterDef = + filterDefinitionsByType[filterType as "equippingCharacter"]!; + const predicate = filterDef.predicateFactory(filter); + + const actionType = action.type; + // TODO: fix this cast + const actionDef = actionDefinitionsByType[actionType as ActionDefinitionType]; + const mutation = actionDef.mutationFactory(action); + + return (artifact: Artifact) => { + if (predicate(artifact)) return mutation(artifact); + return artifact; + }; +} diff --git a/src/morph/ruleset.test.ts b/src/morph/ruleset.test.ts index 3c53325..1d75775 100644 --- a/src/morph/ruleset.test.ts +++ b/src/morph/ruleset.test.ts @@ -1,6 +1,6 @@ import { GOOD } from "@/good/good_spec"; import { assert, test } from "vitest"; -import { Ruleset, applyRuleset, validateRuleset } from "./ruleset"; +import { Ruleset, applyRuleset, applyRulesetNew, validateRuleset } from "./ruleset"; const GOODFile: GOOD = { format: "GOOD", @@ -388,6 +388,140 @@ test("applyRuleset with 2 rules that both match should return expected morphed G assert.deepEqual(morphedGOOD, expectedGOODFile); }); +test("applyRulesetNew with 2 rules that both match should return expected morphed GOOD", async () => { + // Arrange + const ruleset: Ruleset = { + name: "test", + rules: [ + { + action: { + type: "equip", + to: "Xingqiu", + }, + filter: { + characterName: "Yelan", + type: "equippingCharacter", + }, + id: 1, + }, + { + action: { + type: "equip", + to: "Neuvillette", + }, + filter: { + characterName: "Barbara", + type: "equippingCharacter", + }, + id: 2, + }, + ], + }; + + // Act + const morphedGOOD = applyRulesetNew(ruleset, GOODFile); + + // Assert + const expectedGOODFile: GOOD = { + format: "GOOD", + source: "test", + version: 1, + artifacts: [ + { + setKey: "HeartOfDepth", + rarity: 5, + level: 20, + slotKey: "goblet", + mainStatKey: "hydro_dmg_", + substats: [ + { key: "hp_", value: 4.7 }, + { key: "critDMG_", value: 14.8 }, + { key: "hp", value: 538 }, + { key: "critRate_", value: 14.4 }, + ], + location: "Xingqiu", + lock: true, + }, + { + setKey: "EmblemOfSeveredFate", + rarity: 5, + level: 20, + slotKey: "sands", + mainStatKey: "hp_", + substats: [ + { key: "enerRech_", value: 16.8 }, + { key: "atk", value: 16 }, + { key: "eleMas", value: 42 }, + { key: "critRate_", value: 8.9 }, + ], + location: "Xingqiu", + lock: true, + }, + { + setKey: "EmblemOfSeveredFate", + rarity: 5, + level: 20, + slotKey: "circlet", + mainStatKey: "critRate_", + substats: [ + { key: "hp_", value: 15.7 }, + { key: "atk_", value: 10.5 }, + { key: "def_", value: 5.1 }, + { key: "critDMG_", value: 18.7 }, + ], + location: "Xingqiu", + lock: true, + }, + { + setKey: "EmblemOfSeveredFate", + rarity: 5, + level: 20, + slotKey: "plume", + mainStatKey: "atk", + substats: [ + { key: "enerRech_", value: 11.7 }, + { key: "critDMG_", value: 28.8 }, + { key: "hp_", value: 4.1 }, + { key: "hp", value: 448 }, + ], + location: "Xingqiu", + lock: true, + }, + { + setKey: "EmblemOfSeveredFate", + rarity: 5, + level: 20, + slotKey: "flower", + mainStatKey: "hp", + substats: [ + { key: "eleMas", value: 37 }, + { key: "critRate_", value: 3.1 }, + { key: "enerRech_", value: 21.4 }, + { key: "critDMG_", value: 7.8 }, + ], + location: "Xingqiu", + lock: true, + }, + { + setKey: "MarechausseeHunter", + rarity: 5, + level: 20, + slotKey: "flower", + mainStatKey: "hp", + substats: [ + { key: "eleMas", value: 37 }, + { key: "critRate_", value: 3.1 }, + { key: "enerRech_", value: 21.4 }, + { key: "critDMG_", value: 7.8 }, + ], + location: "Neuvillette", + lock: true, + }, + ], + }; + assert.deepEqual(morphedGOOD, expectedGOODFile); +}); + test("validateRuleset returns error when ruleset is not an object", () => { // Arrange // Act diff --git a/src/morph/ruleset.ts b/src/morph/ruleset.ts index acb6a96..fa0496f 100644 --- a/src/morph/ruleset.ts +++ b/src/morph/ruleset.ts @@ -5,7 +5,7 @@ import { actionDefinitionsByType, } from "./actions"; import { FilterInstance, filterDefinitionsByType } from "./filters"; -import { Rule, validateRule } from "./rule"; +import { Rule, createRuleFunction, validateRule } from "./rule"; import { ValidationError, ValidationErrorDetail, @@ -22,13 +22,6 @@ export type Ruleset = { rules: Rule[]; }; -function composePredicatesInOr( - predicates: ((predicateInput: PredicateInput) => boolean)[] -) { - return (predicateInput: PredicateInput) => - predicates.some((predicate) => predicate(predicateInput)); -} - function createPredicate(filter: FilterInstance) { const filterType = filter.type; // TODO fix this cast @@ -109,6 +102,13 @@ export function validateRuleset(ruleset: unknown): ValidationResult { }); } +// Higher-order function to combine multiple functions +function combineFunctions(functions: ((data: T) => T)[]) { + return function (obj: T) { + return functions.reduce((acc, fn) => fn(acc), obj); + }; +} + export function applyRuleset(ruleset: Ruleset, good: GOOD): GOOD { // TODO: Validate ruleset? @@ -120,6 +120,7 @@ export function applyRuleset(ruleset: Ruleset, good: GOOD): GOOD { console.time("applyRuleset"); const { rules } = ruleset; + const editedGood = clone(good); const artifacts = editedGood.artifacts!; @@ -149,6 +150,44 @@ export function applyRuleset(ruleset: Ruleset, good: GOOD): GOOD { return editedGood; } +export function applyRulesetNew(ruleset: Ruleset, good: GOOD): GOOD { + // TODO: Validate ruleset? + + // Exit early in case of no artifacts... + if (good.artifacts === undefined) { + return good; + } + + console.time("applyRuleset"); + + const { rules } = ruleset; + + const ruleFns = rules.map((rule) => createRuleFunction(rule)); + + const combinedFn = combineFunctions(ruleFns); + + const editedGood = clone(good); + + const artifacts = editedGood.artifacts!; + + // artifacts.filter((art) => art.location === "Yelan").forEach(console.log); + + for (let i = 0; i < artifacts.length; i++) { + const ogArtifact = artifacts[i]; + artifacts[i] = combinedFn(ogArtifact); + } + + // console.log("editedGood", editedGood); + + console.timeEnd("applyRuleset"); + const stats = { + rules: ruleset.rules.length, + goodFile: good.artifacts.length, + }; + console.log("stats", stats); + return editedGood; +} + /** * From a local bench, recursive seems to be faster than the iterative solution... * @param value Object to clone