From 0dd084a32563cf84ced09cec372e481bcaec43cc Mon Sep 17 00:00:00 2001 From: Wesley Hamilton Date: Wed, 23 Sep 2020 23:24:05 -0600 Subject: [PATCH] 3.12.4 --- DataModel.cs | 60 +- Enchants/EnchantCsv.cs | 5 + Enchants/EnchantmentSource.cs | 1 + JsonData.cs | 28 +- MainForm.cs | 7 + PoE Price Lister.csproj | 1 + Resources/Filters/Filters.zip | Bin 213699 -> 210750 bytes Resources/Filters/L1_Regular_Highwind.filter | 58 +- Resources/Filters/L2_Mapping_Highwind.filter | 58 +- .../Filters/L3_Semi_Strict_Highwind.filter | 58 +- Resources/Filters/L4_Strict_Highwind.filter | 58 +- .../Filters/L5_Very_Strict_Highwind.filter | 53 +- Resources/Filters/S1_Regular_Highwind.filter | 58 +- Resources/Filters/S2_Mapping_Highwind.filter | 58 +- .../Filters/S3_Semi_Strict_Highwind.filter | 58 +- Resources/Filters/S4_Strict_Highwind.filter | 58 +- .../Filters/S5_Very_Strict_Highwind.filter | 53 +- Resources/filterblast_config.txt | 4 +- Unique/UniqueBaseType.cs | 7 +- Unique/UniqueItem.cs | 4 +- poe_helm_enchants.csv | 2477 +++++++++-------- poe_uniques.csv | 101 +- 22 files changed, 1738 insertions(+), 1527 deletions(-) diff --git a/DataModel.cs b/DataModel.cs index e99bb74..0c9a191 100644 --- a/DataModel.cs +++ b/DataModel.cs @@ -18,6 +18,7 @@ using System; using System.Collections.Generic; +using System.ComponentModel; using System.IO; using System.Linq; using System.Text; @@ -69,16 +70,16 @@ public class DataModel public IReadOnlyList Enchantments { get; private set; } private const int MaxErrors = 5; - private int ErrorCount = 0; private List> conflicts { get; } = new List>(); public IReadOnlyList> DivinationCardNameConflicts => conflicts; public void Load() { - ErrorCount = 0; LoadUniquesCsv(); LoadEnchantsCsv(); + UniquesErrors.Clear(); + EnchantsErrors.Clear(); GetJsonData(HC); GetJsonData(SC); string filterString = Util.ReadWebPage(FiltersUrl + filterFile); @@ -93,6 +94,19 @@ public void Load() VersionMinor = int.Parse(m.Groups[2].Value); VersionRelease = int.Parse(m.Groups[3].Value); Version = VersionMajor.ToString() + "." + VersionMinor + "." + VersionRelease; + + if (UniquesErrors.Count > 0 || EnchantsErrors.Count > 0) { + UniquesErrors = UniquesErrors.Distinct().OrderBy(x => x.BaseType).ThenBy(x => x.Name).ToList(); + EnchantsErrors = EnchantsErrors.Distinct().OrderBy(x => x.BaseType).ThenBy(x => x.Name).ToList(); + List errs = new List(); + if (UniquesErrors.Count > 0) { + errs.Add(UniquesErrors.Count + " uniques"); + } + if (EnchantsErrors.Count > 0) { + errs.Add(EnchantsErrors.Count + " enchantments"); + } + MessageBox.Show("Missing " + string.Join(", ", errs) + "\n\nThese will be copied to the clipboard. Add them to the CSV files.", "Load JSON", MessageBoxButtons.OK, MessageBoxIcon.Error); + } } public void Load(string filename) @@ -109,9 +123,6 @@ public void Load(string filename) public void Load(string[] lines) { - ErrorCount = 0; - //HC.ClearFilterValues(); - //SC.ClearFilterValues(); GetFilterData(lines); DivinationCards = SC.DivinationCards.Keys.OrderBy(x => x).ToList(); @@ -133,6 +144,17 @@ public void Load(string[] lines) Enchantments = SC.Enchantments.Keys.OrderBy(x => x).ToList(); } + private List UniquesErrors = new List(); + private List EnchantsErrors = new List(); + + public string GetErrorsString() + { + return "Type\tBaseType\tName" + Environment.NewLine + + string.Join(Environment.NewLine, + UniquesErrors.Select(e => "Unique\t" + e.BaseType + "\t" + e.Name) + .Concat(EnchantsErrors.Select(e => "Enchants\t" + e.BaseType + "\t" + e.Name))); + } + private void GetJsonData(LeagueData data) { string leagueStr = data.IsHardcore ? "Hardcore " + league : league; @@ -167,13 +189,9 @@ private void EnchantJsonHandler(JsonData jdata, LeagueData data) if (!data.EnchantmentsDescriptions.TryGetValue(description, out Enchantment ench)) { ench = new Enchantment(description); data.EnchantmentsDescriptions.Add(description, ench); - MessageBox.Show("JSON: The CSV file is missing Enchantment: " + description, "Error", MessageBoxButtons.OK); - ErrorCount++; + EnchantsErrors.Add(jdata); } ench.Load(jdata); - if (ErrorCount > MaxErrors) { - Environment.Exit(1); - } } private void UniqueJsonHandler(JsonData jdata, LeagueData data) @@ -182,25 +200,17 @@ private void UniqueJsonHandler(JsonData jdata, LeagueData data) if (!data.Uniques.TryGetValue(baseTy, out UniqueBaseType uniq)) { uniq = new UniqueBaseType(baseTy); data.Uniques.Add(baseTy, uniq); - if (!data.IsHardcore) { - MessageBox.Show("JSON: The CSV file is missing BaseType: " + baseTy, "Error", MessageBoxButtons.OK); - ErrorCount++; - } - } - if (!uniq.Add(jdata) && !data.IsHardcore) { - MessageBox.Show("JSON: The CSV file is missing: " + jdata.BaseType + " " + jdata.Name, "Error", MessageBoxButtons.OK); - ErrorCount++; } - if (ErrorCount > MaxErrors) { - Environment.Exit(1); + if (!uniq.Add(jdata)) { + UniquesErrors.Add(jdata); } } private void DivinationJsonHandler(JsonData jdata, LeagueData data) { string name = jdata.Name; - if (!data.DivinationCards.TryGetValue(name, out DivinationCard div)) { - div = new DivinationCard(); + if (!data.DivinationCards.ContainsKey(name)) { + DivinationCard div = new DivinationCard(); data.DivinationCards.Add(name, div); } data.DivinationCards[name].Load(jdata); @@ -241,6 +251,10 @@ private void LoadEnchantsCsv() : Util.ReadWebPage(repoURL + helmEnchantCsvFile, "", Encoding.UTF8); EnchantCsv[] records = engine.ReadString(csvText); foreach (EnchantCsv csvdata in records) { + if (string.IsNullOrWhiteSpace(csvdata.Description)) + continue; // skip unknowns + if (csvdata.Description[0] == '=') + csvdata.Description = csvdata.Description.Substring(1); if (!SC.Enchantments.ContainsKey(csvdata.Description)) { Enchantment scData = new Enchantment(csvdata.Name); SC.Enchantments.Add(csvdata.Name, scData); @@ -364,8 +378,6 @@ private void GetFilterEnchantsData(IEnumerable lines) else if (line.Contains("10c+")) value = EnchantmentValue.Chaos10; else { - //if (!line.Contains("Other")) - // MessageBox.Show("Unexpected Enchant input: " + line, "Error", MessageBoxButtons.OK); lines = lines.Skip(1); continue; } diff --git a/Enchants/EnchantCsv.cs b/Enchants/EnchantCsv.cs index cb4a212..c14a8a0 100644 --- a/Enchants/EnchantCsv.cs +++ b/Enchants/EnchantCsv.cs @@ -25,6 +25,9 @@ namespace PoE_Price_Lister [IgnoreFirst(1)] public class EnchantCsv { + [FieldQuoted('"', QuoteMode.OptionalForBoth, MultilineMode.AllowForRead)] + public string Item { get; set; } + [FieldQuoted('"', QuoteMode.OptionalForBoth, MultilineMode.AllowForRead)] public string Name { get; set; } @@ -40,6 +43,8 @@ internal class DifficultyConverter : ConverterBase { public override object StringToField(string from) { + if (from.Equals("Eternal Labyrinth of Potential")) + return EnchantmentSource.EternalLabyrinthOfPotential; if (from.Equals("Merciless Labyrinth")) return EnchantmentSource.MercilessLab; if (from.Equals("Eternal Labyrinth")) diff --git a/Enchants/EnchantmentSource.cs b/Enchants/EnchantmentSource.cs index 6a1efbc..21d2e1b 100644 --- a/Enchants/EnchantmentSource.cs +++ b/Enchants/EnchantmentSource.cs @@ -26,5 +26,6 @@ public enum EnchantmentSource CruelLab, MercilessLab, EternalLab, + EternalLabyrinthOfPotential, } } diff --git a/JsonData.cs b/JsonData.cs index 508b0e5..b5f8c21 100644 --- a/JsonData.cs +++ b/JsonData.cs @@ -17,14 +17,14 @@ #endregion using System; - +using System.Collections.Generic; using Newtonsoft.Json; namespace PoE_Price_Lister { [JsonObject(MemberSerialization = MemberSerialization.OptIn)] - public class JsonData - { + public sealed class JsonData : IEquatable + { public JsonData() { } //[JsonProperty(PropertyName = "id")] @@ -98,7 +98,27 @@ public JsonData() { } [JsonProperty(PropertyName = "count")] public int Count { get; set; } // too low means low accuracy - public override string ToString() + public override bool Equals(object obj) + { + return Equals(obj as JsonData); + } + + public bool Equals(JsonData other) + { + return other != null && + Name == other.Name && + BaseType == other.BaseType; + } + + public override int GetHashCode() + { + int hashCode = -1412448124; + hashCode = hashCode * -1521134295 + EqualityComparer.Default.GetHashCode(Name); + hashCode = hashCode * -1521134295 + EqualityComparer.Default.GetHashCode(BaseType); + return hashCode; + } + + public override string ToString() { return JsonConvert.SerializeObject(this, Formatting.Indented); } diff --git a/MainForm.cs b/MainForm.cs index a35a126..c973bc2 100644 --- a/MainForm.cs +++ b/MainForm.cs @@ -268,6 +268,13 @@ await Task.Run( buttonGenFilter.Enabled = true; buttonLoad.Enabled = true; Text += " (v" + model.Version + ")"; + + string errors = model.GetErrorsString(); + if (errors.Length > 0) { + Invoke(new Action(() => { + Clipboard.SetText(errors); + })); + } } private void LoadDataGridViews() diff --git a/PoE Price Lister.csproj b/PoE Price Lister.csproj index c6d6161..6ca5fe4 100644 --- a/PoE Price Lister.csproj +++ b/PoE Price Lister.csproj @@ -117,6 +117,7 @@ Resources.resx True + diff --git a/Resources/Filters/Filters.zip b/Resources/Filters/Filters.zip index ad1afea39955cb679d40c71776f5966a10e5a6eb..e9e95588e927da79c6bba7cd9599b184613a4cb4 100644 GIT binary patch literal 210750 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�)#HE@WCkw3QG_x>80?S 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 z

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ξ)XUe`X4-?B$9p{66P7JpK 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�~RrT9xZIcYfnj(JeQm6c! zg2u1*r~ZgtN*~FwO_uHY#JA9-%Tk@Csk?O^6g|P_hIoiN9|+2pveL9=cJR$WO9z0_ zuKR6N{fu5y7wy-I2>rUpuN6E$&hb71i(MLvg+|SvgVZ`cTT#VvFL?4WD^m+R?E0sz zG;bRj=Y$iu=^2vA6 zDPjGdo(F!+XV>B$dIK@t^)Q=OcuPINcWtNTx;ZvjL61Q>T;-xtqpY{tWM*dZwq_sLOgTURKcaP#pu3Qi=1A^PKSKMV_Zs zYO{X&q5kvEKdv_I1;N-d)rPGaB3OkliG zCG@`OFv?d~@kY;KkZ?W`QjeF>T6&1^rUBaCh~>Rm12OR0J)o)yn?=x1Kg>8hh~MH2 zPb>}xah9W$eDHCU#{ol@or|C#Tp{O%0L8YPiwI<2a2DqXzz?0v(q^vi6ZaoE6@bai zVk>q>g72Ic)^7J-%WR%7e6!?xu7f#5k$0X2v8nj$xE3yAC#BFLXKfJP>ZF6xO?1$i zuN2~I;2v#J-OZAFNYud-@9M1wi)GEnyfFo>F~C8sMw|I(fo*w^kVsHL({wT*)m9*s zF8Ln*h}c{OXHiRLH-CVVW|`fGT+BPMDz*uZ7#1KxGSbJAA0l~qN+FRL5$G5-BUAWM zec6~bzfcc$G?A=+EyB53JkP&?sTQrJStufOIJ?m0qP1g_&#v;mXKgacE9ZqU>+A2?ae3B&uH-LA~Ev1Fn>jRIzh6_TuxA#pOe z1H~{%kot$FwCehAw3icZqt*@tg&$6&j;$=BzU>;FzbTInescK;BN z2tNcQ?mq-1i>`{XgZuxt1F3*LhVW%A_JXq}#IEwIXb}Kt40aV^qYfx2J>KYDcUF@$*k#2d3`}*MF z<>3Bws1J_ldVY5?w`=z0%*poxCp#w^uC}upkB!yW>(V{TGZ?StT{1+WXpRd${Ue(# z;a+;G#(2-#rt5|^G*c+n2Un5pu7~%t78d5BH!Eob*ZA8Qgc)>MsH`_ zqHb5(qb-UfG*By)MB;%PkkM+w1!(x7K#4!8TxF9ziDkO6qRVK7<-%g+zsw}z0^acv)%|2I zB8>_V&8~bB;25c6&eOOUQS|}p#3+em`t=hA!++%r!G*oh_~wEmdG)yOT3hY7LiN<% zc1)U+0nj3{g&=nr-F4pX<_>QqjB&{pMR6D<(8fAo#573*Lj`_IH}Rn_V!`_yho<#S%Y$XJ)35P-VasfE>eAmLg>Pb z9Gwdruen>{r zFg_&Hbo@pl5$SoBbahosg!?%HN{M3_QDODn&KY3r(0Tf7gc>5yO5fD={LnJEmhS(m zLF&-W{l9CFe}6Q{K?zov|Ir{V{?#B$B)A9u(IC#L~sNQQWI6IUztG>;lMvCCI3B7EX+_ zK+^PbN~Gu~DM-ahqP|iLH>yEi>~p}7+~N6z$r#MCF@a&G%UkI9+ZCp_-J=9I_$(+G zC!P>j&03>`2*bj3_ty)QqIq$c=%(}cSV?knFw;G?4qagnGLo0lR?R4n7~P%GWsM5f zX%r@W(n@F6sXuUNEL+=S&{tgN8KoSRjg8kTm55Q@$vd5J!4S-2v!&-|Xdic!Vb*cn zF%|(Qd$6wM(Wq5-7)aBMYqJ4{@o2klPj{8MMzFlXid+c`#(J@$@C-iN(D;gidY>5| zc_WFHb;0+ZQk3@llw$-bnfX1KB>;T|M7+%I!jCNVqXf$+rxa%7*%M#5RwBuuY*UBS zId4R%4dAtrA%TN!nnO(2xz4BCa6hXp_GfGnD3wlm)>nn2%AYU}79AC_z}^x>!HK^n zfMl0TP%)I29c}4<5tkT0M`Gtyx*rK)E#%7y2Km8?7(?WUvN49kiy!jx5 z6ZD5-u-VRINI?C}Q&fU)m0ZTbEZEvybbE4;3IS4zo9=v;h?@g2#c%P` zXiX%6Gh(~aZPhV*==_V@CPvC zE0UMM`^BS=U1&o5I|$NWG?08J?&<*c%#ALAd*;NoAiAYFr)5$H5 z53XmpQG`@R5L^1;*kAhCz64k-ZepG|%@E!r4h!T8ATb%_nH%X?!KlRy7^dwuTPWX{ zo`iu^19X#GOCqjF6mGt9ALOx!^N6~x@w#qN6x+vNTs(Z>BG`ZsDh^8y*kCTNg7Cum zMwoaR02EVY*D)T#C`Unl`4-GM&Wzy6-f`d_cVdQ|vi`Rz5R{o}hZOt6fL@Ly5^JL# ze>GC8e%(P--lHOKTk>FnGNwm;#8_U=G8a4d+NT>UuKT8YDi)#W{L8Lt&&QCsiC7(8 z)QVbNA>q>=h+`LCXxcHscS{?~!%VZr@QHMPPlt@b&UQl-K2d?Dx*5V{kDMOeRa}M0=VD@|~?rH1UG39v#AvAtcfP=>=geMg9VIdr09nq3?tx ztU$_F1pmFvEJ;l}Cm7tb5(vhqGf~WDM$1%|H-COfY6iO)wGz=~Y9#5VBSNX!`_YW* z2ywoqrUB4kRF5@IjP+Y+D@2q<(quEf;UAwO_kz(3Lt#e9yGL5MZeWYE)**f*dhW(@__X!fgPfZX-hH}q(G zj|fW8qBIW>q`((0OCdX9nZ)U(RT^gW_WX-FpjSSFYK}n&S;|y^RpgmhNZ^p=sP|}l z(mX}^X$waeI2xwqa|!`oCyuiFw)304E+;}U(n$4AB?vU>KA(XOyW8G)V|m*X%R1Xz z{oVYSe46qC`%Nzv6C0m$XwzWZyBPFL2ar|`sl-u5R7Rxe*P*&fgl5S1=G=K*u99-JW``y5K302ko8+=+9ZLcOGi+EQu42CBie;;@5;iGG3qU zFG*QjZ4*bNw`tp3&Dm9HHVq|=gDqT-TKCQRCM|D~`8j!8>k?V*RKx`9gupF#LHtf8OEd=R~ihWj^i$0 z3PPDaQojX5Z07|kf4MkoJ0b>4=sGdtjM_3w(1y5w+yf*3C{db#b1+a4OX-+GH41> z!HsDrI8%DjsWPwWa(lgUhL{-U?=f=ORlOr4++L90)UbF={E8qaN0gXK^7;e$g44V| zY21%em(Vje54qvj#9hXz9zbE(c`{%SWv2&2>u}E2cG9+`ROK=q^7{?Nw4t^M5Eq~$ zkXmoR`!OKR?rD{I*kN~v>`;1@70gj$yX-JzO^Tt`d2(P|nOQpm#KH2EY1+99)3&r2 z3^;S}X>Tuxey2r&i~S2jK@#&#&`r@Bw(Cg=Bsgom0AO`WqognuQZKsOXNXXE+}TWR z=8QZF?Hre?gdNtjR(cui<^wM@;MrvUqf>5{H}|&RqKQyxnJP=Qf2B^7LyJ>dEd(@m zp*l_uv)QA)tdyuE?kV6ag;IYZIGZX`p9DgOx`9#7VV-$m$f(s`_7wWjKFn!uChWoW zJhS528l2~>Cwp|yZr*3$mY`eYgkUhAT!T5`~EMw?kPHx{#_Gr zY}>YN+qP}nR>$txPRB`yZ``qM+eycqeBXceUVCQEoYbmS2X$QaJiq(8`(JH?B@5&EV&Be}9nlP~q+V6=68UOyy* zxKJ98@}`%R4>NYJrK5)u{@ z*Dk$~GEEcForVnhtaQDzkvp~o#Fj$E89bq%l=LVP4>_0?AAmbkvEr{lij+8u5sMPN zZ%XHAy!eVSN|wBtHx^vv9(L2wgce&1C_@(LZ5SU6pcvA4;Dw>$GW2hVU&?goDaWpo z5+8>^vdEZMrjaSi*1U(YMlNdf_Nf(a)psNZHI3|*fH0&L0ued@`9&>Z$WX)hA$Qz` znm{BcU^#N9dB8ZW1X!EcE;2VD=r-pqsMXKcD$P}C4*k4UJIGk#YZtGUsOwG?xZEak zMT}eX==E=8(`JyA(-@{m2|}JByElqN*AH+vVYYb_hLafKRc3HVowv4Bk|w^AGW$dK z#ys=p_!8amDKm^>*GH&QJ}DUhWY%D8iO)dmw3eFdl0=1QSt?>E2IW-kq$6H(YY5qeUR)FdGt0AwT;{W23OECQ6Wi7 zYrJdmDE?Zp8y5^VWM9pBEiXxxM5IP-d&oy(o53($I!^E#8E#uCuF>LO#5lu;qDCUz zTeYTetMvMRxCRaF@lAger*v+F+V06_cH?!bn-pUG8@ zq1i|fA*8#Jk-5ha6~m9r1$jN}#s|pB^@%@vhN`UAd1f+4WtuKva~uCC1DC6tjlT+^ ztET;k;K{-uk+J?&2cC10`XFNdtB#&&MulCWl22I2e#D;ZUVr6RcZri>Wyl_k%DqrD zE_RwG$}4P`?VCnCfAE|FY_W`;9GhM|Z=4D;uqK2&T=OjEJ%L79ra*6k}+^{j*NzKup2F z=?0|q@CfaQlB`Hy1&aKQA>gDKPv%lRZoTQ@up_w#g`OdIJ>1NfoZi{J!JUSrZP z_pNg*#O<+s+pQ`}h?{`S;9s(<65u?43&5}(QF#l&>JqxehYQn>UV>nI{6M8_famSI z5UT=oh!y7XTGd9D-5ZsXqL!%{Aa_HCqAk zfbOV3nzZy_myV6_!!V&9YQKqb{**fajt;JC@=&OP!U*QdsnrM@Ly+!ZJ>XdQ10{=e z1O{31=Nx7$)XCZxm^nw4UX)41dw5yln1*muNmNn&=r11bfZ2KUD4~RysU-N#8VeI| zjs1=1GPOpb4<|GdjIhi)RJC<)AW;~ARTfEzV+k!FXX?*JFHXtKg@bWH{*9K32(%?bqlYM5rrz0%3$4^F z@e<66PSqgniI)Kf>vfK|tqD1@z4LThs$FwRi_Bk4GwS0MD7; z>Cdo{;l4QRTW7vPjcHI2_jF12&xRJ&b^My!FoDi(`v2x2w{idBAk#SnB|MS!$pVMW z^8#tJVU~aIbyw0f=_M}yT@L=#U^P*wyEE$6+iqhWqE_toh^ju1#EjJJwA{X0+Z`T> z4C*Au)t8px5)`ml(vv%G26#{2YzOH6D);W@;NU+P>`^PoTc1p=R{L(1(#bEOXP0J> zZCaXTQ>G~ef-+qqni8xu%%v&QK){0}mS)?~@985JD*dwsX@n?%;e==Id2S^vgD0Uce~3vy%fal1{Bz`P5%Hm|%4)=8$Od|ZdBt7zj%LYM6p>eq)j>)Mh-AqHwbP~W0)>p_4#yRG?scG~QEl8b|t zv|DbKms}?rV2wyt+!wx4tq7N0W>wdzD9hg6u7Y%cdN8DSjM#Es1D%k78hkA65k%8< zHef`VeqZ8LK`$08cbo>#yo$m-oAE;G9R2AVm7TepU3BeqrVdo`V4@ir$HzYAf(cs; z4=N^xq9BAt)sclZXCoRe2~L>ReZ%4{ElM+w$QsEIb0$1CQ%%nKjRWDN=mQ+;>M;*) zX98qq~4O}t$ zKBb8uh_yhRy%0Ly(7qk$Iy{jsxys{0E~>}MQddq6C)ZG$Rk?Ccq|;@#$uvX~(@85? z*qb2=8*2Goj~{ z=uV?<)zpQ9#N$WQ=`74a+B7v2B{OTvDrN2Ptm-(og93a?)szWWq3%xDAs~5$dyXE;C64km#6;u#0$WZB?(rV~33WRZT}2H*I|KD~nJB zGFl+`$2E&VLlNg6n{*QntB6jUCAyadcOgCmnjOQl{2WdIW^VxF#Xg3KFI^TBz2hSI zwMlz-SCLX#B!vFN$8+v%X>^gbnPBXnO<42-{-l-stQoF&(ZBw&Z^4^LWqNBpuHX}( z$8Oh%J;!kTPyDTs?>$L!wYfZKoE{NJngg?kSD}PePh<8*zE9g928R_j{5`&3FSGs+bFQ1hM78`?P zQHh%IigWV952n~z0fABVBt_s z#5bHk_BZ)?PxwH>+Y0_T#=(VEV05lS(mXYO=CsmZO*D&6I`X81urFg#<$Q8sYl`N+ zB3}|7G>2Ek#Y=uwbDP8}M875-vr&+yD2m)8ruFab2BCOZZ76Ku zkXLfp!eLz8Vo*558gVH;Fed9$FtWL=wt5vE?Or@@rnY49?a)w%&1|06G09O151WF^ z3lx>TL)xxc^>yloUjJcj(_$&;Ztqkh_m;I&f>nV0--@EI!Lx}6^tP8$kv|i%kVa^c zrB*r?yH}TK78nLp9|)z9hie`_6Bfn{>Z16+)T&o&#mbvTOr{V@Hnlmq--_+`+s-2* zjg1QwMOX5gJI5$w{NHm&=GZP4c`9&hE(#T@*Mt|jdE$P2XfbxQ18^{0aM{V|v}Ms* z5M;%Dq^Z*yVq9y_V`+Dd@|8a=Nr*4=TjLFL$&XHcu5+o!^<ldiBf!i2E|eqWHaHb?A-t;wxEeF8@QgIGtP9^hH0GUCwqnqr zIjsMKK}MvZY<^>qcFZY@E{m-+S;oWEvYBl)3%{(^i8Ktxs*VY3!D<~>W=`$VOu_ds zixl>_!<);?3FrDlD-WL~eilc%`MEFc=r5FV4Od<Yoltmoc!* zDPbP>jGi^DD0ED*YRhYN<7?!Pl{>7})gy7ppA`=QEN-O84x*3bHnnhm^!$L-6K3Bf z#XjU>w+-HAB^uYgPDJ zlYM4ZcCt=t*|t8rCuw&9gP#FL{yBS{(f*L$KAJJ8h|26&AirB{9rQ;aUGpu(8*bH< z+l$DXPCF)FI9n2{o}|y$X@{_PlP}R3&H>HZu;tZ%U+~DHbe)BoggZk*>;HdmQ2|FrC{rG}Z&1RnU6F${<1k*1Z@zKh!! zS}%uV^jmn+f{lrQlAmMzxp{{p;#Xwnz0Sr=D7K5NeMH*^0Qg7OHby*tj@^DMfNOQg z@vE*ttzdMSJo^jXzm{eJOFf5Z0`HSPmc!PHH4?kyr@a8pRcZLJzegC=tH9P5=N@&n9spBq zNZ|w-tr71QA)!s+R zy=;tEz!RQv9IT(MEyZGrjGWKfWd9;sk$?HsrCnB{zb7(hzZ`II5m02 zOR*LzbT!sr+c`{Lnc=72hIUs_r{-aS95AN1+=Y;D(*6@D6)Lw}^a5JPNia5Q2Q%qg z$s5ExRY^a=@F>F#=u1ZktTMiL+s+bewgar~msY4r@47q-k_hqqF;^FMo8qCo4~k&w z-hJV7(ey8x-!x4me0vPh*R;B5P974PwY?DI`;Io9l?m>@_t>vq7JbJ}Oiq*X<2cu! z?djG&&}>YT$k!X_Z#J-A&-IJ887DLo*d84ask zx;4wY>~61W9)9Uvteo0G+|Meo@202%RGrFSO9sh{j1Ia*D?h-NA5xD~evpTf9>o%p zROX0og|5D1M@c6ztw-v@^I_wF;*7&%$$rUF8ZkfHH$tK+2c+B7zi; zXHbwlB5R4XYuvh{6O?tYWjKXhJ`xV`v0-OU3`4u8)V;F|xI65`yUNZ{BB7UV!s9y@ z*o9mKLZTK7STghHSU`FLe?gU%tRBqv$!x^+9`wHC2^mlS&m|Kprd1 zNKCuf^%L(p8SfL(Uj3@)hWRs5HZuh6eX@-FI@ssCRnf#p3cX7$rg%0?6>J+|mQ_$3 zYZ&d+=EJuzGmIZ?j2ze8&8)Y3a@#l;-`R%2JI+661pZw+e%0l1TR!>IswG9Z4}2GH ztGeMQKrs&#_t0}S`__4a`9>rG>YR9{Z4VqZci378UYRc96!L5lJgF2-bcLr-JD+GI zfMWIOAXd~RLQ;Fg^3BqD{Mjj^L3F6MjYRF;Liv`_2RVgQBHw$gbPy77OK{ zJb=%`QQ;aB1@t={U1TZ3u+e~|OL^S7AakQ?2$Pqxzph=9qm!`!zz;JL2TS!5v!NSd zU2&jm1E%E6LROUKqIGc$R9w0pi%(8~s~rRnpU-1_`lC1;+jX-!N`J+Wyl~pe7o$%}<$b;pY)1}T|sk%Wj z?ov_OfY#MeNrEWb!@0b~Afy)I?Abc11`B`iwam(jNO0p;6K6EwZ-_=l!H4*WWsk=Q zX3Y4apc{^*T#W7X?2wV8#IYYX4B7e~otT2%K?XG`R&48!h|wTW$=b zi9AUL5N{f&C&a=IO8e=b3cim%RmFb#C{KeX7M>uHpyl!FpDK6ZM+4ncu;k5xs+?QWum9PguE5__f$=I zSrdpbd0;{zmC;r>!wDRqrrs*1A9o0iq}>Q$-gLQ**23+(@@U?nk(7xzirOWB^@~3C z-{}}N+Z&sW@kDE5HEk1@Wmm3EK^%@XyZTxqNVfWKb8GNX_LPIhM-E~Nq?kF{ z%Et~Mf3nzO#^$Ur6-kpR!hcDI;3=!TDK3oA0^mR=}UL4~gtB`iN4`D#|a365I!^Uyng;yMz8twg&L zq-FexvTh<%2+a~Cj?gh(_s4xwL5vxC#u*W(f+kIHaV z+ad`xvF!$rZiz{i538olK)c*~5K>-7^UU%6RC^rI%fhcb(d9w2!6X!rGq9QxILy1e zR^O4Gpb$+Gqu9M+3wJGJ(8-y!k&%$tOt^5}a#>;S7h=kfv#ed4&J=AR0c#N!@qnLD zbD6@M<+Dznia@B@5FtD3Wv=7r)_!d6HsVHmGO^x@^)m2V{pMo?57Hz4=EvtJDd<`$ z;poa*&TWn}0eJ1riB2^{6Mj-nnb4@&^1!f3x2&TSJb8t3v*X+~1{B^#uLG$b2vBJK zKuIW36jL_)WOe32qm9DcmU|q#SULe-v{-oVyrorXTL+E1cq()tYK0X;W}GZ2S|zae zSp+_fEZ7D(zyxsRG(QoU3kK=$e;9{1KbwpAs54j`3bX25bSa3Xx2jVv|?hQsTol!Fr;F@#A!%FskCm%R>k%skQ%g8=L zW{gd;1cE!y_SVFGzueeE7AHVjiSEJ!GRKEXpfK)# zCcjs{#G(SyA&O~+{&03hcPYT&&q5HVTb}?=yKlP4+ewma_lG6bNkt!<9lFu(AvyqC z81%99McoriVPQ$hFYuM?a!h5oO9sGgtlgoM*EfkoXlc~wld-atj%202pKHRdR%<2V z(N2D;*WN<_kr}<5rS^aU{s6&3cuj(+M{Rc`asZ)=dw(<|w+dVJ^sP)h;S=Tm;owRD z9ihevA*KXO#W_0IAz{^R$W~*0T$mGMtuhi3(ue3XwK48Zp8!J{-B^I(rkYP&<+5dG z%g-fEDgmu?1(%_8ChAHiXiIt}dXx<#0@Gq&ER6jTuY93!ZPR6yUGhg0>*m25@GZ!U5RmSk##y>gAg{YSrJNo|q@OlGlPhXvLHM z(rv4EZ(}zGS!TR9atx2prfr@;T|!!n;Ip?H>Aa$UUaD*{I?vmg3_xeY`Q6$%UfUM9 z(A~+-;~QzXZp{5u%xT`ipPa71U6b?!$_^rj z6rC{&8;i6^X8}OMPv^gD-?PCz-)%zopw&AsT-@ZIo5K;(dgXE?I7Ox_0E;79_;8G4ZO5AoS3x2{ zS3klg*f)0K-Y6~Zc}FyF1_OCjtnll!<@p%Mhcs`XD|F49ezH?rvmQU}J@3rWuh%{9}22R7}fnibIFq}>_q`INmukDc9*52=TbgrUkL{t3j1J_{lt_7VpP-3D*@AW zcyNcRZ2m~4id9|H`F5K5YLg?wesQ~6E3euiQV9h3aJmk)ast5Iqm#NRHnJ}Jb|zPh z&Wx}bd2`A(fY>j78PfFk06Rxl>DB!$Zs=B1ZhShoZmBSv+8ldueY5+-7zvIX%ZI-> zpKc)GckJp|c}%cnfY_4wz$oPy2=qc?8rUH!pG+fAj6Q&gQqt688?Bg)ov$@-WX$y* ziqP!K1NwGT?Cy*R&?|#Gr_J5t9(1{1Sy{oDMbn8LI=XrpW^m}2Q+L2|r1V6!@Fe8N zxsLbAyJE3ioLC1iwqAIbF;n+crNw>Bj<~&@42GLUM^N)%>{=T1TC({JU$&8IUNYra zmf2sk%AIO~0bdvriC9OE)G}JGDc*>~h-|*ZYPb_Uwr}H<$Lj&ex*`38L2mquK|0t9 zGwl^^HE}vF zAipH0`=$SbL0*gNvi^j{BZaYc#4RD#4br4#zuV7=kcuQFhz^%gF5s#SHgy=m&VTMS2FD2N66mLT&pd%s9f zu^yb@s|?*`2H^?uNIUzY3GmZX-R~9az`GYc{m)DD&Jg#Z^^8o(^?P?_Raoj0RVA+; zc~Zb`X^TLb5MGy++%GyB!p7Y^+A}-_p@o>th$wi}tYu}J;hha{tOdoTYBEu{RqtIG zy1`h5_O%#<#Ng%ZcmJLaZPJ0xp=<)Pb7Zr&w0H!~Taieu?KnwEiuwtFpo!VL;{~^~ zSaweo#yw3OQna-1XQ>kIUbp~bLQ(W0`HTWJNzzuVLzHm!74IY~BE*!!orsxe0>KUD z^jtAGpSgO9&&B31<`wiKCH#y88@L){T>L}poyte^`5sU%x6AKc?FMN4@=Mp+h|z=cuWs*XTyX)Z~ffHl8Wvds?RQ zR)EIXTg-m9%**uL^Z&^~R?F@?tgbhHTaeIpmKC4Zbl(=Fqwjw#$l-4blK5W>lD=`} zijp$sm0^I3nrj>&qKHf2={H>W=W*Wob9&d0L{v}l@NHka18=Rg%iXH;(tj=6e?zvF zyyBjlZ&PWR=^yD#Q=3PRHW?ax zghp>Q9l_tv`aj7A(l0i8h8d+Fzk@U57$gV|Z~q?)()V8r($?HIJ2h=3Yx30%2)jHd zXX~-d44;pu)aNS4B2K#faci{&Kb||kmTNSjjo?(AOCuy^&`lM!V**ZFCsYLzJq!G(#CH@f8;I(1Ba*Sg z#2OwX3i|GSo9)qeC$z5FD-Q;m7oW8V`DhF2Y5Z>*U)P3@lg5q-skMRx4ZXqc-Z=VQ z7b-?Y1}_9>T#SCgT2RdA9IG$$HZ<>^-drw!-v=-R?S-jrxtqzhe6uojVz7H}J{PqD z6k;;bt%hvK3{=jkCz4Undm_a3X@hLu_bp5J+Xopwxk6{Eg0=mePD3*P<7L?8xTK7f zK+H$m(){N(%meK4oIL{hVB3@O8e6mxU1|4QPp@MNo3PLAc0XqjB1{X7O@q$4pJ@bp zKYzVuM=1)SJv@#C{9{3qWE%g+g3S8Yf<&+P{MUj6{VxlW!08e3B2-r~>2fY0@wsAq zifXfJfTlRe2XaqC|AozAKtU|tov-hlYQp;^93VCFdLbwz^@)4wQCg1OYFH%vr{@eV z_Dyy-ff^4GqC{{~g^uTX2Y*laVuvRL5t=M!BGT=+7nX^a%VmOohUdULPhAQ%?NSpN zlv~-}_&YYz!;*1AcDFKs`W?JV+_9IQ@<5m~0&>$LzA|FIk0tjFHs;~TrRRy@lD8@% zM--DHy^|oI?{XAP8_vbnj_p8r+^9sI~BmqT^=Efw)+?ucOKukv*sQ~dN&#dB@~hAv2rK$(GNsOg*W|2 zlOT*j!rcBK?*+)PzYNw1i{RE^s#WbrCtq}89@)h@bX@tTb80c!o66p-H%`OUFNnjE zc<+`!Mm>_?pOAeTYKgxMY|2yv>sFX^kx8N`6W@XPcNlaTJ2PQ3;VR{!p zq15;%wc^ihtg0eR_+%|}A9pJ_%Wzn3SDqtw74YL?gLOC9!brm5QZ)F?_;{wgn zf-gYxMi5USxwF0DTK_r)F~0#B(z|YgHz}m0*|!AyfW_2fcApz zG6MaE#OCC2i~gJd()C4E0|TWU)E#TQ2xNJjp>%*nLb5Gck?;rTjoE$7fZ!XOF0x^B z=?%X-aP-D23HN@%DrKRCiT+mgb3m^Gs87sO!6WnZF%ETt(=qQHzB|sQ@rIR=8+M_X z$uEEyS;RXDXP*u9T(x#H2O$Z}t@M&ilMT_n9a+(A-T_7fk%+Zp`JB_ubVtmyu{_;F zRdwI%FMOu2KU)nPoC=^ltOJ2JYy(c5%P!VydjDSx^2}V?gPu|$i$L>#V33yI800if zp^ZAkbu01$_>L;_HwKCR4+iPOp?AaU#M&r>FyfhD3NAE-a-V;_#?jkojc9_W$P|J% zS!YP^I`_y`)ZviT;;3c3kaJUc12@Kea^P6Cg@HmDklWjvv4 zlu;U$Q{5G_*-SY!{OGB~BmZ^y=oZ6Fu$M~yd&=#~?%Z;d@I_#O4q*vmD1{muX|%Zw z-7yYVszzGw$HqdzKkDNGC0d;#4r635xAUD4W)QN8Tx{{Vwa>Ler6hEZab-d4{S00y zC-yuA3Lj<;6A9_?1n-&~S6=Y80WS?l5$ZD+GI6s7H^Yur;Rn;$CK;7c7rgng8r*~I zxB3{alRS%RKR#X;oI{;EcN7liBPeQibrtpm-3$|fqqqy3%!qua$jh6v-g%Sp=|K9% zKVAp|!Hh1S*J!%~lqHD@_qi)GMZH&5L%x@+ZG!@QUwpNPMmSY@guO3q5M&I#y$xhz zibqCs+MvTG0*uc{bQ}wHFg=`y9_0MfIb6SwG48 zIJaTTf$LxNu_Pkl_S_mZ=|AYB(?95=r_xC$oR|;nCN=to(ID_Tcm*VdH}LKy?oG!J zN})v{Xb}S1y=+V9N@}G^?BT*n5x6a$e2`szpJ+Jn1N#|88+E7eyghqGCJK(xD|ene zUz!hi1cQ>W@)J#{jAv^Fz0j-kZ3gsuBThwr=H2f(MbHpBqQ^PM#0caY`BBc*wurj` zxwvgE*|H&U#Ve1GzO$N@D(%2NYQQH*wp;BAbHh?M)`^ewGW%5obV6)s1p>czUvVAG0_AK zp~z-X4f+rK7$5+us8BR{Z1a`J6gF|;Bo~Q9y;crT^-K=V)T)I>zI+I~;+5xHe`{>( z`GIYp3eI)*W$8KUgFIN4%wjYQW3t!$7YghvX7c2Z2Uy++l`!&pEXqx>|LuEWohzT# z>&$R)Km6rSTm!X^Tr1s0=Y%dSy-DkvuRxWi>gU>)ohIHJC^0(9ZSb(g{Q}@#tL<2( zY{drb(evgRNYrb)wKS z{B9;oS>K0-rS~XuQL3se@grz%Qqy1TVmXC89DnbVkrMNnZmRD#%wbQ}h~jvp^F~t+ zvXL`;_ob?Sn82L882&A}vK0t6?8Vp_8sEMh0~zkWh5N;0;;UAVI3k#LcL9NC4pu(j zodbsS%5{iTpL9pY+qD&ob@ienQX*!P8t#I_tFCHlFlw7WeuIorIc=lqL<1?pcW3bY zHl`%7uVrOKWQ$A_Y3=#8NC5c!Qm1e2B;b*$uY?zW`$t*JN(qWnDJ1 zjeq~H_Ivu6&$KJUqF=X>Bm_a0^ywOMVb6*O2JL;9FGP?|wN(HmANue(;#wEE-Gi-t zWc+*mm!_xqTPXT+LbM^5<b*ARo005C*WmemRo{=19B#?@KcnA#92qFAjlFbKv~S$Fbi{G?uG zYtu#n(^zaL+26mk#9<}-4GQuQpg?pw&AO5J-KNg;RB?|(j5(X~^Wmkl%+j&G2mWL3 zH1$2@ca#~{Gz+B&@Kur24qv55Og!+$EE*GS2C6;?h5#b=ZYt&)?!Ms`+T&K#C)d2V zD1)1PRZgDQhxhx-zV+&piw|SZ2F9a z$~YCqj0z)QrGwjUG~rbyXyDP=T&7Hnt?_$tZ+l7S+I*%yQx4qGDRT(0QW*v_C7gfgM>VtgSvi4x=Ks)- z849)H?P)Q>c|n~JjwTGA=Rg@I2%M{{^rCPMAEfQ23<#CxQzTIgI-!?q-zon$c^ zQ{u3A@Je=?R}vb`G(ICzahP3s7nEw)fJ}v5n7bF!M_|K3kK!X>3SOM=CU2p$<1gs* z>h3cvd4CSJA42AQ%h*h`Lb-<8BMTq>EkAw;q^Dc&e34rOiWoj0o~Q87UVK z3!$>WUh{NA3nUpn#f4z4!#n-L@XOkcjwIz0{et`ei!GejW!=pKx^T0<^-M?8V_;(R z3i#=i5j|g|mQsF8$2omGe-O|=W)Hl`@?xgK(zEMEpmb8NI|b_@+cW7Op6GtM7LWGx z)MmtQ&zm+ckY$B$@;e`5(-KE&mM7FMJM>hLcbk}c%dFqOtMd_57Z`a0>e4bw#4q^X zY)&KWf6ZNxceC;+@t`yRIFEHVgmk&Pj7a#gWml#m4K5lO{}nxaQ2c`uH81U@m`_$k z@iSFn1=3Hkul_S>D=Vz2XK>myFMhD@x_2;o7B1wdT)O|dlwzsT8T#Wq?}mY@&DY_O zmdlzV;L?%^rWoG!FY<9@h9#+XgVE@=(HJky){_kOSL3bpY5<+c6~;ht?yfSQ9bRiz z-$C(~BwW^%qz{O9e#pX9eG%pWs}g9&2leRK*o+70dqS9;x-IT30+_^5Q#C4?@nqw{ z;UWKx-5^Y@gX@dP18cc&=0gmuGH}$rxkB15W>nJa3%{)8%TM#Hn$Wl5p7&Bob$(zV z;C6Tb7kb#vGw*CZ2NQ?|%TH3b$0E@@zAU}yhD=Q6@he-&l3Hb63TZ?9Cc13$wQ8&c zE?HG>{U*WHZMkkxaDnWJyK+7ec;To}{rUad!+wRXbrY}$l9?MUXSONZ!%?+{1;0u( zcQkM&?|zn|+1cn~PeqSl{YF6^x+2%mq?L*fGO$7fH?(Ns7u7BaQSX)so20fffZ#Z$-XplBpO zjo_#c<6xO;NxQ_)-5<5Yv3w9#{#4O?faQl%|NTZJBX{$YoxDz$>ld5PRboPl@DRy|5d+7K4W&tZG*NrkY=YcF7 zpaf0dPqb5cHDmAh>fPY4l%L|KRR-*802Zy;Ere7rqn96VoxpHMsYbnzYd{e>Fu*|$ zF`9pAb9mX4#Za*YBFB&ekVqsRFd)rhyf@?EjOXdaMnFb?R@Q<+={gb%B8s*wYxvZs zE%lS~AR^;a^Iey%f^|7{6WoDQ34tra8>V(9XDQ{1KF~loMHZn{nTH5lrza=@L>|`8 zP|X0d!~%b_A0X7V(z~G+(9~+Y={$Np>^O7IUC+aW?1dIZT7+)$bvb#wnh=49sJgW* zIhDlHh0*mV64!iyGxE)v_8te|5UiAi!Y4<@K~>6H7i=HJ9j{^4*7IyjF&lGO>-!)P zYxm_QalYrOej|;D+!0G#v17uUxVLng2Cis`WiR>|po*tK>|n4B4EvlWHj4(XYIP@V zkc?76!KI}IZ*gAfXSLkv9u#@2qI7F3Hde*7|hdyDm1lS5vtnZ9ScqHx2NVnPPO8dk@j=BP-(VQ~PvA#d|*4@{Rs z6ZCL1gXjCIluvxq3Ru$Ql zeAP$l;2l8x9>c#15EfMjJlJ(Ax==Yi@hQ<2wk1#O|P2(pbBHKO@y&}_~ z7JP*^AwDnkaY_+=U41E_Oh>ceKjZp){KH>5`w-rlq*CTG5te8lRAje+iLz(oBQooX zXT#eI3W~@Bm&kzAfp@{f!h^tu$9BV~q@lQ3WZKs?q{e{Ks}(YZob`TQ5|gQX<5mW! zkUa7!PKMG-w5o$N|Eb1jeLd6ltr`Pnzz;Gu4}6$}1n5%ZhY;%#usb|SrANC z)9e3Yk1p{_ulCP>FVFSQrA|>zG@@+nxLbX4UYu)#fuFrJ)0Wbo6FjmT!1Z@S>%CVM z+fFRu+RTdK0DH{jACtAT7N-ePm{4=tK1R}P?^Y7b&B%Pwoy41@@qOPPf3|O5e)m^5 zAL4G#Za0rztm|KvdGY0$ZY)QOo^}WhP1L29)92SKMD%4DzUN?4UYPnhewy@!sj5Jd zf)u{Qolt*aGm>X$%Z`Rjp#_2=kZ?QdcBYK7yH_a?76UCg1Vol{IDmy?;akLfm+sat zF1!!!p1$7sBil8H=nKg_*ny?fG~kL4rJ2TWEI~6uOgAKIfOWdWrSZU!e1I_rNu=x~ z6W6-iY6gN0Kql7Dqx+6sr5`AjXodBy&}w0n>fO zU#yuH39moR|FJ)y<4>3L{_cOcSNS=XU^uTiemjQ9M>x14Vj$_j{=lxXzJiE_kDi0* zC%2m_pv)V!X34j^@zXw&N4Em04X4;uh(|j0z02xT>Ur>oMh;Q%RR(fCgfylr+Jwq6 zrljt$qheh=Ly>_bW#u$$w>zFGSK!DmU(LakXG8a7!gFeg`<}k?yI{z*!{y-#cV zMRM|!d?NnF>0>qdjm<2A6>ty+cZq6#1JHMwMEwQYnkxmx0}<9| z^O8>^T>1_2s$>LVoQ8`*w;#DtzwRRG2N$=%{YM_&^M6~9KWnxAu^z`}(l?e~*dSc4 zO?CXJC2bgo%7iABTU8eP=_Avu=kc{$q`_V-SGtA)s-lvH&|$?u)FG{{5H3+8YcnMT zEXvz_NuKi%IdfkfuKBP})mPuz3hh2ytN(hBsdXXG zS=fvJc#oD?0F4Ulf4#?PwQuk75|nHHzK+_06}3Z_iEeWr2C;=Oy{^x^2&6y?*HnjMZ7LMs25#}TI30) zVIKjTy9!k&Uwjq~n?BS8z2-6V^ZBasj-c!2 z5zUEc@<*xItH(J^2d?V3yRMhn3ozz3!A-124Kcvn z^i7O-xPprV^5RKq6=$MmOsu}37KllvUGd4bliD5N`K<@YahJr#oUKRC{Vqj_Xb*sMaFz@E`BdO60FPFI%01sg8Y! z`YH(dOgx56pNEa-4CDaKv9{%weOO6&8yg%lR<=GIvQ;U8vX?e%{*vNv`ET#B^?!Je zE)o^V|I>Ta=zR?N%ITQxe8RMRE1w-dvHLo>6qbzi7)L1dkwmt6vGdTpaV{+u1N_H( z%yyTbmR8YC!YGQ9wR=lDe09fyuhYk;F0FC_CB69NkBgYcXMJuF{!q)W+9y&_!y&FH z$yQ&cK;uMr@$%e)gR`=59ZMA&ERROz6a`{dRU}i9H~~pl!5K=vl{ z#lU?cEe>W4319oJGBqQ%oLhLj2B~tzlXyiH4C}54K@}TuUcsviveK@-zyDfA7;;`6 z@YKek2=q5X)H(|~VgS=1C+;XNbl2$t)r3jHAG27v_v)a&ryJ`Mfj<_+tGRQCZ|#<8 z4Pj??3dfY~hWXoo+(Bk)JdVz7KaR#%40O<(Lg%e*xdS_f!PPW&x))8v|7F!^6$7FW z2y($gr@^<*7=~6mI%%^pFk%kdd)w0A`}unn<3eb|=kQkYR@Cab1=pV`9^%e@06E?9 zmQKo(3^H>IBh{M8@Rn&fWD~_1N4pUw7yDhaiZ++?4O4RVv#)RV@bE3B)rq+s6f)8o zhM%@3G|zV}_X;-FLAuMP4t_Rka4Q})e>NtLd#WZ?z;UIBO4HtZyPO2C#hR9Jl+MqT zbgjB?p{II%7d%hGsb)RSb)c(va_Ad;tla@Y;*dm!jSTzU*AL#VjH|jQrii<&dh*W% z@;~6?GP1DT*WnW`{Ce2Ut)Cr@=N?o5Jk=yMHD+7+7F+@OS&YzXW%IHK^jLjqb zu8=6nw#*1l>DCI7J&F1}*n#(+5t!AY(3Qk79&?vlX@CQPhG;#f9dzGTeUjiJ|EzPv zYkYdAe^FeFY~qhrN=Jp=p6cR(W96Sq;4r!%U+8{xzhZ(u6pf$Ox7PxyURZWg*XG~b zLeQVptL#(fd-ZkfX}beD9E4F!Z+u^tc8 zmoRW zg9wEP*}LetWTSOI{9sKd_{I$UU^1#Z}USaah)SQ8qpU#!+Nz$xa> zf3`=RA0Eztm3@M8Hs7`FRN3i6e{#@+KzHZIY2h4;yJZpq8mmb2Kb=*flz8G1R^ZFm zplJc{JhC*ha!*x*O9eO2vazQl^=UDu?AsM`W^GG2lzNZT7OQP?_ixTaRDT*7d?NAX zwIIlEC@^de`MOtmEJy_yFbOQ+77+Yv(4wsu7$cO~vNtwakg`=dcA=fnB9S7IhfpT) zlm2k-JcSM=0Wv@*-RghqKvry<5Y0gAiw33@#}Rz=<{V@1SA-+7K#g`5qR3+0X}6S- zZ?ahqfy4yAKOxueJtc}@!3)7$@)fa40)Z2WwW-BvsRrHetSc zM0EQsXT#cXt-SXbAm>p-C}BqO^ks^TK<9i}n`y(9n_f8~R@-$auU%I}*6hGgPWa{Z zHERSLS+1{Fc|j_SDDXC(qNjZ}J>#p0EdD)r4lnh-J(01Z-BG0VX)C&Ei{A3uI=Kg9 zn4w%|6)2NT7*SffaG_yLL7KK#jb zcu8~%rKGliM(6TU)n@Iip;*E+bsit>f4Kv-tQ@v;rKB;!>~lD$HtInY6;l*l6YEmQ4YJGRg)si}X5U z@jVL}DiKy^e3fUr6|={n273{{Y|)mx;`v6$;Rekay&sosgTvBLP~5KcwRY(&p$Fy! zVsvgHhjVJ35V+gye{pq>?RmCa!?x4dwr$&uZQHihIB9G&Nn_i#Z98df+wa-yn)80< z^8Se9!#MUa*3DiWdxs#LpBSco?EGDWR4uCuVZia(s*y83r1#^%X$^2Q6KGytVReDV5J=mp&B;{L{4g`+s?yKKq!cwYuF^tCCG z92y}fuGQng?cAVIojMtx7I~jceHAUXU#Y}$=qpDg(c=Eqs6-!c>MF;sQt>^hNA%8> zOb{@;$&Vb&fM&h0pUCOZG7Jo$v^Jn+k07sWc?}HRIyP3BO+Fyx8I}P4aooF6sSvLo_x)@?OFOZmO5t=+vriP~B!zF(V`;38~c)m;eGyd%9epA=%3>g2zy|S6%b4zu` zJKNCm#uZL?3A)w4D`SyddVeCQAtKxypG3*%>T$){{m_7AcK!qJ=ru^q;G#&>D^aQ< zYQFmk_FO7i8y>;rPNapOGGr3sr2hMy)Ds;=&zuAo*4{XjBL#BN0H}wV@tB3g*a@zH zf_{tu?Bc0?h&Bhg4$n~wHqcGO z?uiplE7E7C$^jm^OW_jzy7g&8qLWggc7&^F!3F784-u&xYlh)roJ_Zt?|%F(^h=xL zr07)K?O}tPDV$x-?B=l@P_*Cs#ntoID)jg6=a+hO{I86x%nV=tcHVcxKbiWvaGiVg zcRRDu%@2D+hq3D!LC)3J{jS?13K1$^p~Q*ZH{edcMo%Qjw+@$R?CZN%pE}si#6Fh` z2?k~rVyfvwxBi?@iyvdM%ZuFE zAd9$Dn_1r-#8OVN*<5*4cgB@TvY^d!AXW1s@ke-`P6B^zjhkn5G)C^1;zGRKC#Mv* zLiT%d^^-G49aN6=pC_k;iKsE#*pUcxi}tGPkrJ3FNo{(VE6wH(*4%)r6EGk^JZnIv z!>Qa8_US|ko%lorb{{hP9LNT?ho^v9JP^twW4+v|Z}}4c{4QC~nQ)RGN%+tS!*n;r z*iC6rj!AJtd+^&b_(*9ZSBU;D;*Nk~*N!?Lw$~cT6a`Csi*QO<)eOco4kp|$$4D>7 z>N`fhCo*AkgaV5IBK**z-en&9mtLMPAGWT3R1q>>A$1NFA1r>LgvmEX$cS%)Pe@8hc}qZtdsIp)2^}OyCxY zjbr8WgweYYaX(xyY4R)5c;;J$MPviEz87jFB+A{!kkFu0*Q^O4Qrh1(iC1DVvvm6~ zMfIGrAS`zlwnv5T_##gSr>A%QC)pGhFO$Bh;~ahohM3>Gc8EH;QX`Ki0snc$RNRt> zAG1b>ek2*8i`&mh687JucOQPUFeOrWdV=TA*g#aI1*Lun33bDbxW@-+%T;5isCE@5 zP8;&P6?^WIndeOVA^42wW$&&>|E(gu%&zg`QU6rP`EpE<*p9_Wh9n-D2v0_2Um9hM zZVs`<@E!aV=0Bd8u|2m9hGoD8dYw{A#99o+s^%3 zy0q)aPU|Z`9mlE0p${Q&0Ks$Y!s8)tw`HaDo%nL*%gkj@D*>~|eSSJVNQN{kf_Ih; z4;&bjQ!FWW;+x+2XgLWRiNpRyXT_6)J*=)IHQJT8iz%ZKjtcJZLM$%g1JYDVe;@6=$uc zWo#A{o;tcesmS>&+^$)I3BoW-$gcj{y`f^~l-tN)TW-ALcR4l9yj~$O)3oqTVLfA* zgqMwJLWo-_guT_u<;Zv#yv65-LrR-LD{w4RFYS*=C<71I3%KbRJ9OucEmhJ^Wu)jI zdiKwlXVV|gOk|+Gaive1q@}OisP68h*iUv&s7kr`bNP*r2e!9-d9!}}=*TGKv+t3H&5M*4lFv=A+EZv^dxZPzJ%ZQ&<2?e1kUsJMdXJ(1@g7g}w>nQK z<(a6aF5;6|I0m|QAkE~KhW=ijsdtw z%73^=-|bKSc~33sHbnOT{YrCV>l8l@cQ*wDb4@)shVx{t64oy}n|JI+2YB_-M2fpV zdy|v12ff)@oM~~b1@bh{_7#|hL!rrw5|}|)A`R<3!+Ew)VB3UUykN0h5to4yWBZ|~ z<6mK7PzS_xD$n&k5`_IPG64ITxf7b(_KH=ozS?X+?VOK7xi6AhX%+a;-H<7?rYgD+ ztmfCmlTexoh}FpYOo`YiEzcaPzQ48n;Q0hZ`EjB}si~vx`|%?>V)1jCOaJ`MY8me| zw$k>G4+0KvYK!YPj;*0}ep;F<|5_gw*G8%m!{>Iqr1jtr(|lIB_1DP4q_)=j29->x zdyM^R=XmZ+&%wHCJbwwDlp4$ojG=WLlVc{y>n4fnU|*2$;r%mG?G2PHz!)Kcg)ECC`d}4lGr?CueO_R1lGrA)Cc9JSam&vq zJH5f3POqLTH_1>5OMmQ%KFJBY0=P$cj$654u=86Y+-W>30QXqC?S&J;u;7dC9C3uk z4#!n33u>$w8Goxopb;iS7TSI3vo6icE}|Nm<&q?jd_o1;$N{ z8eifkx$Si`LwC#8Hq6eP+$FMmRPuVWjMiTUC3_hPkA(1f^ua25G02yxV=ZM{39hBe z`e9yf+CS=Z9;i>wtJdx>#{ptv-&VqcxlNcbS7zmu|7242OzSi;eNz2{Mztk= z_D02%w=)_i-9g8hYyKFEdPb|2W1*q;ub$``@ia-BOWH%^#?`B$!I_LE>!HGTJTlv{ zReB|stM!|9VL2ELIf)_fHaLs|t@cdSYZ;wW=Nsb$kgW%GqImygiLns z`umg?MT;Lv#m_H2n9XO>gHp=+O7BU@pTcp;5BxFo6C+L?-;)gE{=kCq*UBBnxubx} z_^E$Ws&s%Eq`IT$59w8@(=pCn=+xBy75%H~L@1)R9u1{4pUS4Mj_SL!94?Qg42iPg z@=fW7kGJWbBY&^YjD+>a-*H5A_)c~pkye=tvE!=@O1!Vx+p z@naE|=RtLQZV@m1;UEdOy=FjIPcFm1AvwF1R;obGSgK;8J5nsr% zi7l>)TS^2v$d~Dob_{t$%Ay4kYFA|}E0VRHn!d<%NO(=$i9lU2wTe3oB%?>VgtQbR z&JEP>4nCgsCXRTB6TLvFQs!B3_ll{hZ~1r)GsuVaZ3u4+IAxl%gIcw#tFbWr2ho3$O zGGVO~(~EXF5FKxCRJ~Hc zi!U_`8ahxzOlG|C`|CO?z1d9X>)P7X$iuMX5dvdoZ&A4#Mi*oD=iXn1i{TT2hyh&3 z%5tWm`dh1tnb!QCT!b!O)#I5(m6NV&`IUtSkjxoXw_`t&)n01s%fv$t)rJOKOYk0^ zC?=}piqs=%OE;9<-x{;HXH?$z3c-sOIq^X2(`7fqj>O_jwQW{oiiIs6&6hR;whpu%i)AM!6iO(KeNv36e+Kq_R#{oE13u=RHlj1c zawLWhI3;hftly$FEa1OYkrV<{N8{^zLfX-Mfa>^q%_`{J=nD%_9c^Czs*ck&ZCit4 zGqAe~X50=y!4i96LLmar?a7>#Ky6|S5Tt%)b%YLCM_shg1woShYT^Mp8;bk=3d+=O z$ic?{s*aLvW(rZO#f{5g2&PG6N;HyLzqDTXNmVA^t`#!7cM_qN>aD>F92YqH=gEj1{&%_lvtj$-H!A7QHW zbP83AZt4VPnt16lz+wW4GXZ#NDp8B!gBB>EOqfJC)Vdpl z#m?P12|^pSBN3YLMmbOVcWA0{$&Y)se^o~lk$+XkReBhQwZp8xs$=oLs-rv0h%}<< z6aV%A2SdvlAR?e!-z?I zM$klO#3NIW)Nm-u3FT|xK&&D+QbV&yBbT?61b2F_w1IP7DX_YKM7wj3shxliw879e=a70s~k=e^box$h|%E22v*x_w`P+Og6~1`v7u9{o)Fec7+gnB^=|7-jWnRLitkgylb?z!tI@3&$#HOai;*IS&oHMaUxEjG=2DpdH<_)L$f73z2? zFVO(UC={^018S_Q#0r%8&7l;ecFj0i$#fqdG&TIT!Y7Z1m;4rSuxDA5n?ey(iV)t4 zCR$;YNYZVn4bG7%5V|kpPh5eAZZ8BPy)6S_h%+@CC`ran^t z-r*dIq~LL>;tn3`Fqs4B))GJ4H6@In*i6w?2trR@9)Z6?#gdUFIUEvOa}30dw!)Tb z3r4`#s`M-=HFo&Nn47ZHZ&~cl&RS>=M@h7a?IZ2qwsVO`2k32yABU2no=hFD2!cPK zl)#YbBNJzXHk%Dl+@xxCLP9QJReddKJe%3hH-%H&x92QUV-AkTY3JPAp3L3eSG3B) ze)8v?%}=*ZM5?_>4o7QO*$!4}tD3#!sZQ%dT=Pu2aCMH^zesuR(PI|#zSQB-+YspD zZ=PrRwU4_IkPt+!;;rsU(FES<8JkTGHvI0~vSWF7-$FaH%&Lx-Mc}$&Kr1zH! zbv~$DqOg>fO&Fh}HDr}dlA;3YOJxijk3CZli6~7bnHH2N$FQ^6-kr%!&>#S=0VWv3 z7GKTeQu+*|C|OY}tBEVQpBh=rB-~V~!8?{MMDOtvytL;+i<9G?9^kj#4&Fy2%$Fv3 z^W;1|A@#w-hhDTHmWfF3D)mr_Zz5;pC5Kn{z>Ph;uD0ypKKc$S^JcE%N`TKsKZb{zBvqNDI) zV498bjxomHXGlRe&I}B1bA#iyNRtBmHypwF#q4bj&m+PcMqt_Ecfxl0r$&59xop|E zcd}f7!H;Z;VWyh=@nvq6k8{ppXLH4=eAzIQBHRK+OGS8Oq*l*r1S>zZD&+$dSGV(n z6uG+aB(9Fjit&X@ZPX)G8smZz%l#A|8)4O9q4zNCxRRu%;PIlMYw-vNJ{8%wJ=@ny z6yBn|W6CWUc&_Hvp}7zju}hBhw_DU7MVdE;#4F52(m_?}h6d-;sGHIH zt2y4fpClg%+%{FM%KxJ|QiFal%wN<8F3Mi0c;2s0I)dBA3TV32MMRedI9LyV^4GVb z>w;_@TX(FUV>mIOl;~8g+0di@t2xrbmgnIdN_&hT`g?h8?{#b)f|IBbtgJM>5r8JXIY&Phju@cp=UnD&*fz-Fo$zr_NM^B3C`g}#kwRtM%@pRlUz}NvI_Cn2uB>RA-}APrFbhQW^UK|^ zX-wtZ4JA^o53yQ+EuB8(v z+Q2V+)3fibm>O&34If(C@AEbKt^xG^cM(l3XEPQ3RbwEpY$lfjw=%A0L1rm}drqv? z?$J4llA8hfmaQZnpFeVMD(>W!^_;f8U$-4xG^EIM&6i7Ob68Q<3}*R}=zuvsiccT2%9+_D79qMc z>FPv!EB18=E!CY=4GXeiEIBT(0%_-3d3RjENeJ8m8h>rHUt*yc1y5{B55Pbogrp_Jf zf3j!ae;+D}K7}u)onil<=m`2B(Qz>TAJGxN@C_h3^8710(p9KL0z}91X24}XdcmfT zrIVZZ`jF!?9KuJRKz2wCo~3)TY|`tqc6_1bO1Y~7+ro-)rdnfAnX?NvN_(xIi*vDR z0F5D0v!ZZcLZb?iakomrJar*+ljBqh_ns7I%Y4AnCr?}r>!+ZAZx83|1H7C93y(Jc zs@xt?f%jWgFU()k(XsyOS7V#1wX1oh8r5=LZzZ^QRWs5vwdKQnXW25hc4=eo<|lU$$zogW%(o(u|sObD@-*}u$ zreL;W?2|}Z9_E@nfZ!7U1NpoCFWmU{7jE3qlK%&8M4mgzsJd9*tEOP8LiiuJu^03o zxG^i|Li=d_4*+gFVs#1!z>O^w0JyOb05^78(;b{X{;Hl>K$gaD_u%l{`2lKyN4$AS`V`JlJ(dKbdtV@9flcyBQ?k28=C)AjcEJ&vN)Sz!oD1Rw3J{6B^f%zQn(oW!3t^VZKKIgmF|AtC}+x|7SmZ z6&!n-93dGBg@-R?!9koTYWaM0bqHkf<`$zWhAyJ^;jw~mhr}hTQQQPrHEYxEw=b=D zu$l<&C!)1o5d9m!*6 ztbf3+Th?Fd^*jtbhW2{$kKWjc2hbZuH>lNV6XucUj&<{+jewg zVP9b)^T1<9;wzP9y*X)SW>yyV$9Q%4E^i$ZM|w2|M7=i0TsD5v6<>c=>ovJ$xTRU4 zc4feC(1cYk2ygx#FrzS_1n}?hfBZ=z4@F zdk;6)6TI_HT=))qBSi!2^tyihnYWbFjC(XVkjSf~OS(}87OWd-=4Qc!I#cv48~l+r zm-M^EH;JBE42@A+$UU`J>4Q|7oOWtrW%&K1qclxgzu=Vg?l1z+6ah3}e}jmOSXRkq zBHb9W7YkCQB%x{{SGURR8K2kVnA4~so7(iOK7-j zFI9*2_#qjR*(p>s?dY-YoIOT%%jruycrw2wdS-y8o$QKer+YML?n(#E>6}ZW{>SX# zhNE$FVVE1?2D|z4wA0kC`<`}uXdUmJ9o^Q?q@h*9N4*g&3&-cn6ldd6tfwk<Q6GPnMJ4b06yGKnUv}j#!yl@wOuhpPk43VJX4+d!4fa?a8f{3x05+Xyy~5H4VTv z{^^0(vj2x|1Qz~>ZS?ar!Os5=+t|TAGdLak58F7azaw+;FWaa+UTNvx2cWv?otpq` zaT&X&@l1T~440S$G0czDn3#TE5!(|qa?A|Ix8%nx@~yv~ zb110jjT#S3F=x6u27hoti+h%EtR!W`c=UHGBG!o1g&w(&kW@jJscPj{Z;~kq63_D} z#6U@Iu!FUx5x(sd#s87pTM!`+gCnDwn!8R&fbhf-rGV6MdGm?s?kb^xwfIsUwi588 ztQ*GqowKv^fzHDIqdN;9t1iAFPh#HwF&M}!0*eXB(PmC=)>4M&nvsQx330}ZFETHc zS7Mzoyx&pjX{MC`CuYc}s%Fnw2Hwb4qLK*Hfs4PT@F&vxo?6xK^`;syo@}Gazigv9 z;$OBA_%GX7E&lnzV8`F;fY@?4efNezI;R&T7m|b@H71YY*3H4`YkL15}T2#fK^`s?U*;{fyXqrrH&?WGEw5u^~cR7n()-d_qQbmRo%vB`y+XVH>;O z$7qtI6FG4|37!7Mw;m*x7nS57CG#J)@%OC!w^|b)khQe3l3}iY*~V4*80jptS^z@p z+Jl<3Jg=t<#~jKBU>k|x5r;wl%QmtguWkU?Mmo*RF<8TFy*l_{v%#U88XXa@7@|k)h7>$YiSrU?J0i`TYwL z=25#G7eLGcR1J|2_?BWkP$8WLxeVt6Z^_arZ^04dYpfb@ywFcAt~huYqbmzV&p4Et zD}sW+4we)a$|CG}I`uJ=Pq9V7E12P3p9~0vD;|ub*Kid!<>LDnJHy^drnu_!mODZ7 z*hjI^Of3-@KI3hERtyJv)Bj617Ca))K$xzN5BHfz4t5!wJRgt4f{taHi=iYKpUDfT z?NY}`a`_7G;=yvdHn|F@43|#`$^}(?-^(p@#l|NvP?>zpm<)MmulEeo5tvJ3G}Ew% zv%=fY@7{O+hi;Tx(3UiYD<>fs-W{o|LwX7LP4akJLFSvGPrOL|vv_v8AM7C65t_9 zUt!fyH1-+T&9Ergkl_>~%n2&p{3)f$FwhByI{78YnuX{RedF z3M(S0enp1nrTkugsWNw9I8E)TPp=UB3S0^mPeifl70nx}c=kCmd)B%r40qTY_{DI% zGz`=-^muyggRNEHfQNFAkjXn`ZFo#ErLxPG?CS(4f{b7496eBg5GJ9LbU}FiEm!3q z<{p#PoD3$%bO+eh?;R+xF>MD*i&FBks}3=)bigV^Z9^uK%+_@hN5^cP`X=g@oTQ*0 zj2Wj=KEdC}hS%~)on<2~+mKuP5y zk{;$ED~#Y#b=G8K#Dn~DNFL=as?HpX>^gH;+AzI2Z!Zvgp&c64z&G78!=^#n@l z)eE5QQs5TA2~aD;)7uW{BCgppvfue2jF{KLP3;1mp~CgXB`$gIt!v|e4$;VuQHymS zYCwuT!iN^slg{Xr4)BKoq>rS!13vFmtfzp}$ z!(}E6TH1s;*J-N{{aZM#s4hOszKX|RxN%&Y@jIFcyzduq(UgKDiWtd#lE!R5Cb8Ue zaBK7NGgM3RYS`BU-mfX-H!h|LCYm-@*j%o3&;Hwi?F$EbL>dX?wQ+Ahp(4`2 zwBJDO-O6)j7dq$l+y-Cl+PeSLHR9u0v2eUFXn&j2b6Jc;o=R1%b}pqVw;S~u%Y}Ts zantiUGEX4@-@Z&kC`00tZr20r$)W7VMYwh#@7#QEr+a2R>;QkQ_v+T?D zw6@NAF~uQ0oRSqk`>)qn4e%Q4^OR1v;&6X;-MZ;rWmz{<{_>*za{@a1BK@z|sC)2z z>O}_NHNF76#ug9_gHjlDY(;&-pfh*XTr|=h+du!j*8yRf4ku zFXT&pKh1Oxt)ta|@CiSV>hlTpu|+-l0Vw)f2SQrcatA%VZvr-CWEo50tTCAWdX1N6 z5Mg(_56V3qDB!1ZbUtuJQn{J%h3-b0A8eYx_+Ag0t0oKA`2481G1w?Mn;PPfA676X z?08In-8i&kA#4f`2t95Q=dEuZhE|(r8Pxh|NgX@GY1kc_I%GhJ)0`({4SyJeY#Ofvp>t&&i zrxdfWbmymQn`%}*+lKAOx_Vf)jier4LCQ=+EjP{gYWN!63}mzeQDsveV@9s^kIM3l zvsN&@0o>Cm=e8^td((97_AmG*P29(!Ktp#B1BzzTww*lX%_Y%P?^CyHE4{OMt9)l& z`=d3OwhoNRSc@M_M)4t2iw+mA>{T9kcyxI`@yu@wzHEM(vGwCSpkKYLH#6v0%(qbM z-(}so^(r*eOkSRQkDIx>p&No4c^q1K7jC(1j^77PRowL)H7zq350XWB;c?4OwW$Zq zH=nK5PkmqP*aEDNoNOIj?;bmGUU$XQ>tNbw`Rg!c#U4EP5ecjtaBgr7 z=E~WmM88PjQDI5GV^}dK-LHkN8Qrpb9pt?+`g2P!2ktH^S;h9efu@Q11{g<(q|vaC zw@#R0X@(FOT^e|=H~s_(+hN(V46=<8qXdJKm$j)RON~YJM~lV_+*f`-FlZw^f>SBz z$l3vY!|^^7EZ~Q`RhR)cwr)BbUP5?)QVn_uMDcFO zE}yBqv(d7?Cvp=wK6qJJKlMqWzo=X514|lu&xGRtb->*n?K072$>P)Y|#LdAYvN^xII_c!I<^>cr z>`jTQ1fxy$yVj<5o_cFO6CIc)i^YN*Z;bs+X-$<(27Q6cF-VJ}l&}cfXkRI=jDreG zU>4Va{+yUY0&FqPf+r34ssCXL9W(?JIs+pEvv;pmctX1Fa@?y?P(5r!4(rh|G-6vz zA4D-JC9PmZK}w%JMlGo81{jxtBqh5eTOK;$zZ@e9lUcuhV^K~Uhq{wTH9=T z)uEWd#V(Ut-8f-gAWOT1;i~I|RyaK7+35hTA-QK77LpDhjInlxVcnm%SLHWPi_dRX z?>=mwUD$s5(dzoq>+%S+Gma@Q{c9KHU)tkns(W}>%L>scXj(pdl6+t-E>wrOFiS@5 zFTW?w-XQx6{xCm+^VxdbU-5MluU&#)^JMfM3vXQRpDq8N$Jptx)~#~|wt%eCmceRA zdEHP+^zK2xF#UObbBu$ZsFHBuS3F*_yMrp443m9Rb5afP7)Pxhof@U6GYe_~9%K9L zHHEt5D@>j9*OIyr=#A@tW;Aor&MlI6|YuEQ-r@f5}NTVtp}ptZes8(Z)n?Fg*kZ=UqIoLxJTb=U;C zY~}`w5hA_e2I^X;@F>I+H%jSy3VDFzEVoHqpXlN{nQh%bpx98p64F*d($!ft)9M#G z{-bic&v@43d^8M4LWfSt7Tht(1QYNu*(evEFdUEshb;m{)m~YB+2Lz1 z>Cjzbk3Z5Z6(PU*ctl^ml#9?N5M8ZI0#AhF96`kIfAfk9jYObMhq(ffjMDdFymEwp zNyhrvAAd>4{MNG}feAp~uKnj6f-Wzl6Rl|sF9LZF+x`3!8{~dwLEAG=hdT}f z_FG8Y0+5Wyfu>ZjjE@LD#WO1A)(7Rcv`odeKyW$$$QZgSw;9W-*DNOr&zJSb75A{h z*N_3(+UJp==3kJJ;>}Gj|9?P6-W&kPc%p~=u665rLGVI|{U4CA%J?tHsH_=@%q$T++&&K^Rr`VYw1$DCOW2>=<%JD$D)K*k~N zQ2Ho3cfQxa@(`*z%>AVmi;?tD56n2Gr|BM>$Vy zkFhwe(HfhI%aHFOjBrrx8ghluWOTyY3G?P92aYo=`pD!}>SpW_haP6RNruP`SJcF5 zHRtb1sW}104H56izDt(drME_!OGJMg3?5SM#y==Y_My5t=8e`cZxH0FGS*9EZpl)4 z*@kb*^KW?2V#$2vX^J_4MHJ)>=s03_u7$Pu{g&tl;lAp%Ii)k=Vxwj^Y<(}(jGznm z^oLHjZfEB=?^z2m#Qu_jO>l4!Aqd&6EW~ge?sf!VxN7ij4--K>BX)-q%qwJYlFgq& zJxe)L{l0+=;21gM0UTqfa&_tNMykkWY7xDsS&$xqR3om#C4Ab?(rXxHjb9M8XmoNYxWi;k4Ubq$sj`8>}#~29U7>)jNjA5{UImUF0e>p~`_CGBDaEu7RUb5Q}{u(ed zDMS_6f6j4HA~G_n=X^XDhR1>0zq$4SI7afn9OIck%)zMs9j64$-7S-pshSSuSYXXf zW%E-ZVTvL;uC<$H5&^Ih!~TbeTw?}TR6em$f2@Jj$~Qfeh^FskH_DEazCX>82{guM zT8M{9DTr^8OhVY*-}F0zVH+8KbI!lfZBzd*$9N&t-{YkgrMUVVbn6NKHt#O}*7wok z^1wJigBMQl*?*m)-Tq8jp)>pTQQwZXcMs1*Xq!I#8=n0sFW7sefh&nQ<7kAK!byW& zEYgQP&}sHLp0)EH>ov>7H39D=W6umgcWi*@PnlarTWg>DHGC~AD`Gw67;yn~uw381 z)bGXl>(0unp$BoiuAyD4QmuTEUgpIkIQK*Xclo(V>uIN&&78n^bjC5%6%OaSq1iz z0HnslS0i0;_35(jbtsb25Ueb)D$0sY3675XU5n%_t$y=lyFg)5{@k?j*$RXLxyN|D zBguN$Wk9Ixl`(kRG4tZuADnW}c+%2dFxE?sUMWn4a(&LdP$Wu_57>a#R-$Br$XH4J zw=yUxYUVXrr;YQvz8cNh%M{8SIu=!7J=g~tkeKcWr?;{!dJW<(aHpdE*(n$#eZRmF zUf!f%+;Kgai@ZM>!n(&a0>>ClbYVh<@7+;WuQcJ&81<}H_qp1CA_=HE1uKf$OmT_p zB%4X*7c?J;06mnnaSn${mwEPjBw*wO_dU7$uOU)|%OuirtSAUnVVaCkJA+^6<}(=z z6zi<+B>9&6dyE?~D+Mx#%XlAnW$oAeMw$Y60d7X26wS3co@CgJjFfKw@*=LK`{ z=VIa{Whf#2;V-n@p=36vkg3#*7sAXqS!iXHFo?R<^$o`K1+>J9FksYJ())v!a1pGI z%hqI3)xy7-eptXGJ3VA7yWah{B|cfpw#i;MUHoE=O6OmZ_FmYQ!P zzX9lSIND9^bjLTx*KCei_B$J7o_|P+F9-*$!3L?{ysv=r7TnSejyWMan(48HkWY zrCLZ@*gHfoew07(T|12p{KNr1gUM>-IS@8!c_YrdWtB;BgiwuE7w`|h6g`? zT(ZbYa7SIqzpbc4^s7qI1weu`%B^I70{1Ah5crn(bj-95_-5TFZp^Dz@16*6i$er` z8?^CrF?9bCYx6}&V}!)GmtyMmz0X5WiyC|mI?{*wg=Ja{^I8!H0l^bI$>8(_7}hF$ zZsNmiNojZvW*X`xP$^jHuIHW=1g=2~W%rgwx3^K3%j(1R#shu#Q*$R{)3@2VjdBn@Y+nw^)yT^p(I zU64Pc#c-1A<;zc}o@Q8AvUi%`(vW4?i8)e$QUD$q=n*6x>5!C~oy4&mi@Oh#Oh2^} z66^KFAmKpeh(AOg^ebtCm9*OI0T1@%9UwJ+cGZgE1xdvT-amFP(066NK092`8Sp(L zMtGM)qC!|WXV$bhWS-6_;yGV0*rCJ`FfrQSZQ!FPlnP*<%w$7_eolrp^c#{6h%kZQ zZ&Z6KJ+Tq=GGL-(Myq%4O(Mno?1!>&Wj$By-P(J;Niugg2qNK(eq4k{$PLY;1WhX_ zm|W7Z7lV!6f+J6$Wg8I^$L3aj?B3v6x}@wE*C72~zKJ{50e92mxr6`p7UevtC+Zce z!4|L4gtjN*Xc{GfA`)vN_5!`b;zD+)3<2O8F>y-J7+IG_bJ-V8h@aw?m;%xc3&x{v zj53l#Qqhna^wV1X znbd<9- z&|6R4a1Y|Awu$+aJ`|7LXBlrx9oag@z-%EisHpy?kExFH7OFf2>|)6t0sjl9!0R`} zx@F|Bu-C`Cnov(wOl^IZv%c{hr=+oqjws>Ou_7Hb(MrgevPYJZZ4_|0wz73C1xO;z zYn@{9pl|*}znitKId%GXwG^-)qV+j{U=}+&=NBee+>Nv+mEW8C#SQ{m04600Xz;4C z%DkE~51Bx}`wA+KJv)o;&#!zWjlA`Yu&o0l&+?+S)mRrb;fc9>{nR#(pO?q)>ig@{ zk9Rj`cZK3UgY3jH6O4H$p!m@`ag| zLgb7jLN0^D_aEiln8&7g!kiz1C8_F11v>a6nAFM1ANxWGsDKNsP+6UrqJq-SuPgX!5c+%*ot>1|e!l+coMyr~AsDb?A*{oKE_h_GUo& z0bjGHHC3vn%V4otzXX3STDKDctg5*4S zQJP3Ow$*gjR?xGA)xiR1qq4`(iJb{{o=nx|G{t4@M1V$i$>sMXtFjq}NB6>1*MZAScO{GCefviVYLX0}GBD1we9y`eiQeWKGpQbP z#;NX@4=ab>MGc)vyI?jf99s&7+?m90A$n z@??}(cpwWbS?g03de&=Q6GZ0lvsk_#_lj2!hSbR(;P*$*)gBV;zdcxYHC??6OeIG~ zv*(b0#9mR6uYT{-N_2Qsf4K`T4!T`-&oLS-0T;a6Bi)G=LZ;bj3Hel&_n1VT;CtFd z^Z1?I4bN=wvp1wmCHzbn_RU`LFW8tfrcJ!nC}sIp*Cd(d1^^rJ^XqhTXz+(iV?h!>mYrzGoFCzSmPvF7>>l_|pl{Ol2I2x9%f9 zt-KsG5F4!4i3j7-p>vYU4+WcDE~6*)y`*C>3ENk3C~OL|sTz-UfTg+h)!8IajvMp- zp_Ls>nEEvFW4VD3em7wqUA95@b3r}Aj0FCG3nL)IVM7Fk@SVN)SULwS2Lca`K2wF! z9n^rPE~H$e^d0lMk)Rag^ooXD^dPK2%ru2I2ouVx{We5Iu%slb#?&H^#3zi87}pNd z6{&Q#`2N+Y32+;=W&m!Zi41GI2i&LgSzw6Y`}oa^E5L1>II7qn86#pAuK3h$2&N)F8VxmpoBOGqFB66Mz|uX4T;qYS_3Z#;9B_=lJ(m{9 z9)oXC;5OZG2Dw0Ckvn=o@4`Dr@lN4=M+)%02tt?zdMW+}(bX3}o6|zsEHLqoS>>X9&4bp-cr75$@fvFYEqCs2f56mo?g zcv)NmWDu#v0tHKPJWXk#&~aT+-RTh2RvhU#HsbAmp{Wpwh&9wfPtyni|AbJr&dP%M zg8|?ib-Eicr&_Q6O)c_cEKk85Q59=AqWdAtTpO36J}m``Pb*7*`prtCR2TL-}nWkW+E490lWEUVeiGRB}o5b9`j7|ezr*HpEE9~ zj^yt)%7<_pPA^q{xooZKrT5&DOZfj7yT|sxmUUggvDvZFv2Av2Cmq|iZQHhO+qP}9 z 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

? zC}e`kaG28wW&RKE=z;K;cg)bA{FisM2;Iau;2M*XqHcO(yqeGlLF0BU=js=AOP+}+ zh9rEpXq_8BL71TV%?~wsc?9+f8AC#nXm?0x$u$_7W%?2m$DQ0ZG)B+=m;ZEDO^ zzh$;NJ8R}1g&F4(H6nO?;OZFt1GuvzMh!1sp^&S&yK zuA;1M@ribD?i0UTQ&kjK*4bdbvRnr}(vK`1#|35HB|%SHH>Fx77PVS`KZviXB<$BQ zTjEF~7b!sb(wo5UzVE%_lp0tZ;5#D33-y!SYi2$xYMcuKJnk3*4$HeVN23J}kSSSF zDXWPod6+s~$i&)EuE5l z75Z-fdMnGwy%zj^nDl3w!1H1nZa;B>2O=&H9}0V%^7Ym5wvhzBrh+N>QzL#l`%VUD2{@Yg`V=mP3t6QFPeug z@GDqcei)SraaknR(e?Zf-Vp&Bi0WV7F&~9obq!K$Qn;N!v@sH^h|8V<#fi4UF0m|q z!KSN*s8V&qIxTFQ)uByrZ4I}(gX z#P-7QTsvGP8PkH$5NXgmGfrCEVa>v+@8<~!%+#t3dZsnt&(!^+8UEGo0>PMn@kfvd zg)o=Y#JXku0FAdsjU3>DI%vti_#;>B)-0^dU;MF3rTjnm<5&KHL^wAK%us}5J)|H2V)Vs>7%z#qAlwHPHB&Y1ra@{}-Q_`Q?wWG3%mUnnZyh0J zgB8*a!DqOG#!@%zv{P4PgXwt0am02kT0W*`Mv0L$Qu2R|JGHCSw3TgA*;XR7W7jnp z`w!;ND_cpy2Cj2Gx=tQyIElK}SKpXa=#F$s@jHte@%GloYsOfowWp`KS{S@BXsznVmn#kc)1LUa&zda?&o?(h7~1_z zf||(|JC~I*LmAF{;TbaSae+{zy(n!3I?TSyehS%k432)w=JNjB79(Aj!3oc3_r9z6 zbL`;S3%}@j@MUZNwEd-XP+IxZ=kYUzO>xTZ&*=G=tKqqD^8~h6>^@yTOk-lS*jx_> zyta_XGOeuS6o$5T#M0_WF~_D$BOeYUm-okbEQP6VP5NK`5!6UoUk;3zM%5%@=lKh~ zX-pjTY)!+^LR5>TNa3x?7xW6ZgMKHQuNS9e^iMK=lNXid*Xm-=9Bbaia>61n?3*&E z6JTaa!-aN;366_0?o2g-BU!R(xhJQY3nnwIXnltzNR-4W9Jcg0PVe0|bX4OMueAHg zPyf7S8rzaiBL{F@RQupMv~YIHgJ;1-X8yAAv_O|D?szN7B_HSzJn$8q@xy%~bNXJH z=8==c=!ufj7b>WF?d13og1)bsywdUbTxR4oy;&Ya8Ys4plG8_>QbrcBMer_VnmQvt z_0d+o`KtZ$KCy1!nQ#5^kbb?3haXQkuqpuBN5oAtaN%Hba?v*k3{6nN^Pa}!5{PK5 zNl&?~?sq8HrI86vlt@O#S-G(1ZdOF9?CA{o=mBzWL!)+ZLS>h-gCk^0`;RGNu zX>AB+r3JY1(J?cri(%*Sq0AXjRbbGD2rQ)Jl0s1AheDi;f`qZvUgjC+o&X()k8b&x7sW^T}>(%vyNb7f`*#@1#4OhkfJq7PsEQ;z-Rj) z+sfx$qYG~unXZxLcIdTTO-^S5yyWi&XF8rdpBFNhA53Ccm5h?{!<&HR%So~uXQihnO*@hO;DZYn>9;JzwXv|(~HnQc@##aZBvI_n< z&CE<}wG%bH>wjp-B9|^iM`aSrmh{hW?z>a48xZ3?Sg(i}MaiP}%u(yr2Tv)(hALM; zid^pDOY!H>dKsncK4mo=NwoFNs}_1UAs56%A>a{F>1re=e%jfZY{RX2AMQUiWK(N5 zIMYG%8jM{V7ci1r4-Jkc`|6PmmtFnT_NVU8GX4Y`3+9(%Xld&!UU1$a2UyCM69rtE zr2-i=x$4;&czQ@>nw8MZ5h|*rQx@X zyqjpkx_#feW9gF9A8aX0tE(EE=cOZOE*DX>^`)vAqoqD)$2w=*_E1+}CS6VYjU_4t z*N2Wfc-dA(VEt|m5liR3%#ThbimK~)g_Qxhf=xO-npK@_FAfIQ1HgZ@b0lk=zc`8^ zu6FJhPKLIQ?{E9D&$aPkx@-)>^_a34ci@hz6r3{O<3+&Ac#6)nZzrTg-q)sn#THu4 z2O;NzGfHkAo#zoCUB`jpIb!!yCVy(YFhd_p#Ed3h@fxt; z5&a>aTK^^H5-MKTj`%|&Pc@Ho?~m;01;3-HlZYYfgS6exC($L{!&*)Pc+h6_o=+AT z0jYzHj8O1J(Kr0EOvu9+95OQ-$|D^T#8CqhkFdxDF2p$C#FX;otx-40wL98bFb@aD zxY2wq;kYlexCCc5z^x5wB`b!kuRsTog&kUnA7N2X2jTRoGOH=5qQ6lN?Z<|)h8$Ww zl;OrvY~=?B9~;p*y!m_?;|2=Fr1K&!(-`uw73*c&ZRn!}D9`OO&w==2Yp7Zgmf}Jj zta%zvnrk0pmZ-owyGVcuQ5e0V2iCLSl(q^-ZVZ3O;D^(_PL>-~FjDmsUv_@;;lhBX zrjCbDR<+!p#myP7YNk{=``Nl(E!1SmcrUA-9Rb_J`4_U4tZ3@>xE%o58D2hJu+|=I zz169suS^@{R5ND!sSUWQ%VAJfW;vTU|}rNfEeQSu%dSYh`4f z_T?^6m&!SbtwJb~8&4E0Vz%0{ZoHV9jO+%}u9)J7IJbb4M>G6V?%4L{^4cg_Z?1z9 zDFic4d4e5%LQtY?zY*MRKL_CkQF1R?;x2(9B54iNLw}3vK^|%htth*uzFHXeBQ~%5 zVBE|a88PCMFG_dcPQa|R`EgCti0AMtB|5V?cKX#r)_>tj`NHK4-Akn7Zh*cMr^cHk zh=SMH64$OwLjH2}Bro6~KR}!=Pq&66jH<`a#PM;fIoEqk4{xXIuHJAVC+Me)r=dvNrr2I7>F~%+15Q! z&OnTqKk3B_wkS>8%u$GT(E1{`shAb7K)h?C|T_B+8&Vu zS>-2b5zFh^1t}^CV;AsYYV2T1S2R%@q9u=@}qkIXzsEWGS)2Eztxh+{7@Y;h#vbnk`%2ztfI(6CU$1n2(; z4e7ZKCXO4O(C)DC@xN$DiD13n!{?o35aP$BDjk-VU;0eS#C&ph0*^2P@?a1uWtHxeI)J*mF`VaBrJgkkqwnKSYC^zF#d7tQ z6(MRMO@sl=l?3bprgR0>b~04T{n4i=+dmcNvQ^8t_RTx3tdkWYde)!CdudRV+WcZT z@b!S11lg_Lm`w$WJH!sbN+cn;FCTd6W;uxdR2OKetnSWc97nv5binSfwU)2Zhqsuf zZZj>UQb%F}xiIw8GV>X%Rjp1lKinDBI*2Q>M>>CUkm`V4yYYd0){nR3&r?;uCPn%! zOe8I702U|>h|jMu)&iqDc?#IjTTUN#i&szF4GH2#omFf8vu#%z#VsI&JQnMsIVZ@n z@ktXmb@*{U{~@AdeHnhR-~J(JEgX8=*`1F~vYZM5vv&NMXe(d}rfzwauIkA5)Hxid z`cn8n#C|#rwd;~pu1S2QlsftGT8-%B9~+W|^xrll-CrBB%ahu(S?wHp`L7MhpS$5^ z!c6!A^7UUEvT&=63#2Lgg9nV)PDD>SlijnWjpC9i*z$SRyjg zJcMi%0FC1~xCd>AWdd=Cgy3Ml{!GZX;f7P}MYVteg#$hIO(~px238E(M@)PA$lA$j zrT=nC?AwNfEYzPh!9wpX1X3#@EA zv&s$+JDrmHf%IP+GH2tzHsl3z0-~q{btzL*Jfqeq_!a;WG62oQG)|cmcn-(Sbh~0W35zl-W*&j~tQ~SSlHI922<( za%A>xfU9q(RFhV@>RuuR_D`%OVlLDY3z=km+!#?-!OH!8Lel*8I>faeyRx`fC?Kiz zi7X6NK;G8};BwKZW+^ld>qf$d3 z-RoIu7cx0(puBA8&2NeUJ1uq~+FiJI$Pjh_O?uiBwjemF#7Yya zR?>L7drfUtGU3`>{dXnmN%;P-SsJE$XuHFqMPAMyRa*zLlct%+OaHPV51kIB6^=t$ z5$mM>4;%96zc!>Mv2HtQnj88A2=RO@!9O-+L+0fs``t2+8>?-_6jkQLG!&+RdXrDw zQ-@*D=-@^(;aO8V5VCvKZ7HB0x?+<}B040<|@I{dg z(7X>YL#FK~Ur)649cnm&5;KV4%=>Y+?yjbvdY$&{RR;HhsX=;1J-(ie)Xsf7d7*p* zq6EHu8HAMz$qXGS3s%;w3ZkrnfK~+{=@RDx*2X*rxV!ReX?Q$fl}5E0ROskMM;R~& z)~Gb_>(5nEP}d#Osaoa#zDb1pI)_ z6Bg7`Xm*kI6@s2zqHc7Et3zUT*Qa2LHMMVy> zmPX7#8GwJphNuj{hAT_aoNC13C3W4nusclGJR*zmpj|oL9h<8Y7DTR>vu58%UXIOi zR%m^eMnGyHp(Qd!*wG4dguR|jx>OVZ_k{{s3)-!cXK5imS#01fG0)S;L!u1i+6JRo zUGc_(6XqOLRr54<@Q9gs^o@yWy+;3qL*Dasp?%@-+YADyJ;`y|6uOC@VKoQD>Z*N6 zMmm97bFH<+hZsy&BL;bwC*OPjO1NP88K_#v8Su2XdHFg)mbw_+6oIj~%4*_L0X(Sg z`hi1#73kNlD2YE+reIdGaGs^6@)brsksa)SnKN0mhFeI9PRK&R-rN|A^za*f(wfUS z`Q}=h39r2&Ea<#TSg7SKcpD~Xm#07V!Zr%lrb5&E{WSNT2TjH(kh3%+11jp|K$zFhtxfEaQJ@T+6eEA6c$KKSm*V-EtSp<&?*sJ1u^D3p zKi@jYfMr_sN+F@+dYG5@@L^e`zH$|VGfI%dpyugodtP%uHT&gvnTsm}`)UV97QRko z@D`iK7CL_%nvgL=wk+18R|AN0yEkHBmw>PHqpglpxI_7GK%BcDKQ-7$Z*C{tm06yEA(iLzC4rPOy*{_LhG(+uX9b zVhkt7npogZ&)x-=`;)IoB=GJx6j`n8@E3{XpsAuRwS~1*}+(aRk^>ZEvzi?ap$|v>i*EAd(eW% zoY?`&pgI8pi%E`m3(C~6r>kZXN9ZAUxj354p{@Ty38G2`@q5t{1l-7OZ!o8TND15Q zJ7XSwC}C%B=V&sxAhm?GQxc(*e!xCvcrNpwV%!DOvvz*M zVX%cuYi-Fv%ORMZmIvJv;yVQYY%0!er@y++wjtacRA1xOE|0{GsPGD_)s7Y1G&i@7 zAE~~MZ-dRsn1k=*7?ydaVk+qLQXTJz*sqp&aWQ|_#_~xS-Y&ZN=UPJ>wGJ;tt+r2l z2iv@^`qh$5MH}VPxou$HSvjl7D)xlfri9`U4O;*ElAQeRm3DyQN9#TgwREoiXSoKJTv2 zu(IBiQ;$6h&?+~bQTgLRvgyC?VNVSt+S9w}s^cX>0<7?omaUoJS5rtnKv&y*WOd_V za%+kv(1_r^2c1jSe?HRBBVC_VQXcZz2R&VZmsr%D&d3(E2v%+b8bGhEp&64ln>6s^ z^AAgtm(aNz*TdmuDe$<+Gz=GNc>rDv!;NIhs%9RDYQ@|W;ZXGn8?=`}Y9EgPZEWsm zYq?BJlzS{>aA%crHSvHTZyf9ccMzg%D@@YEjAB9$-4rR$FFh;Oax7PnAc2zmcLkJL zs)y2(oBWCf4hy$+-(YcgX33sr^1_9N;>P31i$6Gza}?D~>S}9!KCW+{6kE%UQPCRY z-x*G}o|sct!_?Olziay}zNzXLlMr^4Y&oq}_DaUnnx8?QB?X za&#ZsqkTTcn;YUb$ymk?p8Q`>B+Nn9KTxC#GK@8Pu=T~#X%9-1?HfN@zHNcN-`LBA|ZXj^;X-Xat+LJ)j-eWp#4=Ag&u>OOh zAI>5tD!3|`po?4xE~n!qb|lV3_LcjPI->g16Ljao0?VdffC9JMW-U}a%dHK5V5nc^ zO!Sv@L43uwA5a2rg%v8cOJi)aJ_ikU0GKcmNMVp}17XM}_Ktg@%B2qMw^HPZMBEci zc)-pzN8@XZcxzeRj5Z-9uNT*jibf2hRdsW*;52t}7GsHI(ELUtGv9gS92bRqdun?F)$uN%tCpNe z8$H3gpxs$O9(y6dl68g0tAh<3F!{jsFP3VqNq_7W#OToxLm~i7leM4;;sPsj|~UVYcWH;!!u(#u;C0r%uuT`4o}2iXD~($y5CnCXR3CleNm z5vNH@4H#bOigz1uP5GZ|TeDInpZ;}*oPt6KvIHT$lUmfk=|`Uj+kM*2Y-?%IY0*&! z&YdFA?Ov5jwoTjfq}X`Xqw29#j0Cc$n=C~XT&gyWnnxDe<4fV zgI^)cE{}=84cSL5GJ)|Ah~5mX6dhH&ec!93cggNXP9;W$ic z{K2MayMey+ebEVvlmQ8$XHyU>v3AaJki&5Vg$_a>9_ldkW{PE2Ck9qYWR;>s{-Gji z{!2v)|CCn=jOys^q66)Utlyb!n8??nn!Od+l08s5ODp(GMQRcMn~HpEz~Vz+IahTh zyYVB(#8N#-JwO-c^`D$Qvi^!liOqX7MmBZtxmXWsum7X+qO`R2<^w+IQ|D4S6}8a& zAKr1QNh_W8qVKxs-U<9d+kC?CxtJ`U;Gu2AJcUW-yj7sKG1!;Fzv$gNe;H8_3aS#zzviBtaZx z`mBpIi{8sYj!1>1H$0j85owYudUEQ?0s)HDi)-NAqZs;&MH*Bz6H)ycC+weORCjTT z3t8>}dzjUiSagFAIZ%r(b}?`UH!xF*IeYCrY9frNsny7nUm0pES(4X|-lHK$E^?eQ zUx&pO{x|e{iKIub2AejjGv$2s$l_7p%uJD8it^3zc6O@WOJq!KJ`1FK0HG4ToYZkS za#n(Q$GCl?Njg~N04S_g(YV`@3*ed`>@v?Zl9KMwmdkeT84N`-{SJMQ#0n4(SXGOa z3F7fWN8|U=`tCfZ3)rG#zlS;5|42v}|?4Ok57ZvWDreV)mqiOM? zTy#R?zK}!?KDrvG{6L1ek0{*)pOgc{lmoF&3z&Ed+tNlorW{JW2(`uursrTH0Lo*C zU=np4e_-sC(@CS^w~~6k2vny9^ht6=t3B0E&P#HQcdG{pwR9AUBM7Q--3)22iQZ$Xneewen~?vQ?yMHd2m0+ zDpw?Phtm7~n!BcS=Ek4nL22Jfq~QoTNr1LsWc4wpl!u9!u|VYe2B&xfv%%?hlsm#NVU z&KE3hDo`m%{j$X%PK1IW#yy&JOT32iKH)h}K)%A@^2dC76_ zU>&9L=MQ*O?iimG#oLnz!1C4cwR7=MrPD6fv70GB(nswG-@e*J4&&sw*!n^6upNM&)QHVBoZ(L=c~cP zH49?T9TJazpSo^d(Gwu@Yslo@f(wYsI*}mamk8uC%57|g?AI*%i)5KHI7R;nM*dwA3!h!bPUfP|17VgPb`Y{ZjMN>(C!l#Gsngc3UG zRS=l32J~b0Mjnw&<}FvsXP15&6!J{0PxYNpxDn zI-3gJb!+PriZ23FKNd4Au{WRWGQ5ap^b8cfZ7Ad7OyeWM`!*t(JaUAqwot`v&dZ%) zCkPC1fU6@B&Haz#CMj%)JcB=bJdbvIQveNtn}C9cIWNDZYVCvUN=|301u(}r2A#-; zdG~rE|3@mOrz=bYJ9<12MsFXy;j4_r2T=yc0fN)n5GtaTXd-m=kJ}Z3_>u&gSOcy* zIja&0h80ajP+-NG^x*kcM{cpbH!TbwRYC4N`(I-$d+9@C+oPZRjXJd!{!i)olHH z;vhl#Y|yjr*-Eo1d=ORn{=K5=Ul^$)$1FjPaEJa+W#RM(?w|JZ%3J)iYxyBI*+GxZ z6!d_Pe#S9=gzqh*?3q1i!z=GjZfi!8%_)O(MT{WAx|`m{8`4`Svg9yJrTh52U)21s zfC%*~NTH#xk9V~pZp!T1x=d&N6S?+@;}`jnf~n)hTByQR5YgWOxYBK8Fxd9;bqzTP zLUXrj#e_b9UId!8Di)k-eLEV8sMle-%*~jEptd;$@kX};!Et4*rk;^K@=|j~sZywl z^5P$O;KgfkImPrpsN8jGe(=0`)QCmWNk|z=+uHq_c>XmcmGy@pANk#MDJt6MJ6P!Q ze96iAWxJ@eG3zs{3bAh%8N$(5LNqNdqAF;v65X7c&Zt*0F%HY#lzcYvGqDzcqMwCP zSdP_^QJB$@T#97XrM^%;dFN+l1-Vponl#wngM1_h7lXX~q4WOTl=Yd33-MMi$K4Mm zaKh(FT-3|s(ZNZ=Jt3uES*E`7o}Pq2uL!{WD*;5<@ML>0nfg4v(Az~ru8xYy*lyH; zq8qSk$PRWI;Cix*?(?RGw>P0*Lp!UddD#KZ?o^RFvqs?&Hx`(9+BzPHm@SlPb7gY$_$(rz#<4^nm8Eig3o4l8g=11o z$HH1I7WO<2?E@#d1X7HP2*uGE)r~829<=}KzbzVB=_0)Z7#<$TEIv^*Yba+pKPfNzyX~n`f4C1*t zEQn{%$Pze9wYGNzc#^KmhhbRxa!}r{T48p2L)iMK9=JN8Vxyqn!?Ne$4YFwO3I_tD z+Bq>Ai1^oaG?y1q@_*_;`Yk79%-)cD&}`ls@McwImR|<@zAp~0CPgC*C-ie8)MiC% zoeH8v8N}y#i&no7Gstc;s<{nGeYNcDzgK&*gXO&P9h2+9WNn>*KB4G+tA;%dg*yfT zZew?EfddMeXi4eZQRHpj-5BKX#45j_OOwOMv!-8Z$bEVhf;a7SYPnvkuIK{KC0Cq_ ze+ST(Ox~rkVcnSqO~rBRGn$tF7l{P?Hxh~ZZzNL4`d>&SL>B)+2ftV$%#`0J`YSxds31&~I9qu{R3kYs^Zf^IUCeVfP}m1?B@3jf zPZFQ3D<_4I7dWL#qy+*qpA6C`0ZH9n6xFfrL!gUb--ZLZj$euT%NYT%3Wn8jMr3FC;G3}l%8>QmIMG_U-n>~OeoU*R`R(Sa121IG#;V@ zkGZ{6ZaiJAF>`D=s1iq=L28dw&N$^LOhwGW4akXl@%+fR8{Y(+~&^yL4X0B!!JtS^U9G+c?#kAQG2=E`grok6mE(U`zU-t$_A}M zX)u7pOsu^K`vYZ_gcTT(gyX!h%?P8d7Jd=N`z&8yT@&W~b{da@=AW*fEG-CdpLdH< z-F%;i&*zj-W!OiRD%P}z2x)*z`1+zGo3HNxL4TP@aE%2!9%K4X?$d83lIY1$YD3-c z?O#l!OTu3!lDBrTp|9W;3u5MlK0DIHS53uL38O}YTHM4}>?#F556fi=4V(?$O@~%l zene5QCR9n0STv{iOZ+q-a8`#iDI9xv9>DedqC@haag;RQ7GlpZ(rpGR8TC{r9v|?{*-Sv&M*#|qSt zNu{rah)keW8az=5$2a*yQJ@HN=}u}2?S)9m8zi7!mx@h*6l}?o@`vqllcVjSK$lQ1 zRF#-NKPLausi``&VdOik}IHD zwn@U?#x&`g3F?24e;|+b)+6YyMUud7I`1sx<^a&Ypn83woZVj&sLZ9HQc>2{8 z(~JnSB8>H~b8HoS(m+}Tvfe_U2A~j3Oe<C@3D1WHrzUAN7wK;$J4m1FS@TZ8wPMAZgMyIs~KXmc-C{ z4f~f-#{RxkaRdaXu9nk3Svq!UP$~yH#5D+TD|RXJ(XU=0;6HVik(zE-k+URe)yGp0 zjLUZl#Ni}k;;d-h?Z!l&&XZRZOKvw6wF9(oJ99`N=YtCo7^A0yRsva!$-S`2|C~9#gqVN0<&y zAvN{}PiHb*C17U(mKyQ8^mR^&wWGbW?So)O$?jhtazNN_=j18+c80)xuB8DNrZoKP z`b{+ToIV%DegtepI=psW`RgQEpD0X4XPQ%Q`?)N%F5ZlXMC{WW|8ppNax0fm*9KSd zDq(Y1kclUz-H)Rneb(7tEP2=`2VwoKj*%QhXdByevMQ5uNt7*ymLwz*-Wg7sEsXGf zFkawFl!obpTc7sCw}Xs?M7fM5aE4%CsW|nlu540S3PEN`9)^zh}g1i%MULL2acd1_k z!KenAn=>=mmtWae1_3;u*O1=kta1KgkqFIj9c?I^MgXc-v3aQ6#qZs#QKrhDfk)or zoQ7L;VZk|*l|ifrmD)&Ucy`lH{$Ey`pMUnBMDb}0CiVwh(5p@!`R*Lqrvnigp0+(W zIwyt`-FR}muRzTihM6@=`1{|EZ|}MIL>1ftGA~kFg6{F8P;(^(YP?Q0Ls6e4zGD@$ zU8aui>-STvQL~Fz@9Nex0)QSC<%!$M&2tvrvL)fXLm3mNTL@Tgy8S^S_>|=mXzUJG z&4PN&&Y$k<@A=@8W>O>B-nkPkqv|{}eP$740m8ArqY0qB?ATzz-6831YN){QT62DC z11!Fn?v?|9UYO{oU)G>3f||7x@y{X9gUhS_)gop5CYCYwGRceDcTSVv&GI>b!1);!LVa13PlTCQX|{=dYlfM`Ch)YkNwk zu0xU8UNKO%4pFkh=K=0?{ki$l_h5HFanm;x@}w$H#Z?N-e1WD_>UkZ10qU_ z$^H!Mu^Zf3q1V=qR;q%(Nt#R>^KjuI^To|y&QiGJBdr#0t#34de z8p-edWF<%Z>iOgt5oni!|8eW0Dm#^E4WP1EYH>-{XtR-r=*a?R6yQncP0z*#+g7p5 ztuI@^`nbTW)ngOMTFb}Ebtu1)V6n@XUi>L(wNBF7bev0SHVZIt-MwoN0uuZO68lWT zA!c8BN%KD0{JQq;ZWa(b^Kk;MzS-E1i9?H$plpxu?hhyQng@hQg{C_CJHg9(^j(D< zJ$9q4?7db{)2DD72pIj+R0e00Ay9@4Dr`$}PZkXC#a`#ug_td|#e21#19*N}Rc|2_ zY4CKr*AS8AVxwURJ zlL!B8Mn?T(MtZnap&D&=bkoq$~MLyCvR3 z$;n+^ovgSLm$mD{Yj|ZDfWKkkyGljpFHM*+XwR}0`D&9tV3*v$P6g`*%b!xw(`ZLi zjJ}xHwgNMC){*L*k*mzg4_R2?r%;={hIijr8}78M;bKW>-b>4(2y$eCtq7u#7ERH4 zUtQ9G_HQ#1tgrR>uNevXFEi4gi6wF&IbbgSuNleJ=cBTD{1Gy77tnC*Z2dTzc);nMO2fJqJ|K>p^#8Bo*G2*8>7N_tm zI-O5R02sk!i5;Q7YctL!ghIr_L22C-spW-Lb9s$4!WV8d5p2f6pj%|aAYibph`KaO z=>5UNLSN~!hN$+~e6*|51vrA$RcJxFf2+xC#drV*|M)ybAJmI%XBFx4T^RFr@nTrJ z;KBfnoV&z|nTrmXbMD2ssALe~K`-!SIOPEnIntSNhNDrMQ=xg z8f^_x--SwpCN1B4SOemLg+`@wfi3{`bl}c*sb>Ta-FwqC*!#}PkFJ%u$+`3*dc$k> z%97zlALG8~w23Qr4{9EB(7UisYHYEn>UgA9t4Snt5nCx>0`{eR3bjAgcWCEm>+0(1 z^ssx2tHo^H*P9n5Ku7tOn-c9<@&**ZWk9#xMA${n5VJo%b38PR<4u(`V;N0RuKa-> z8jk-dx1ztjUtPzk?>3I~~G5fo!s zWm|L~5N(?!lUK2~%W7hN?~r+?1$sRDp}K9enEBc_GR2wT$!!{wr@DCtXs5OUFT>9{ z#@eAlF?M^|=m!Ww1*oh*1bH#xHivwM?g{$YDO(Z`yX*9;v>4;N2si@b>Yo zLbiXakZ03f*X2%6P{aG1C+kelSFg{<#*0V&5x`l!KA`x?&^EnudSyr%+v#MPFY#?k zYl?$C!BZzrQe%ZpoYAt%rc@l%xHEvb(>N|-oC_PxJ4=lfU2jaCy3B+}e>KRO*JPSt zuco4hA)WKFZw=DW_&*w?$v+yTde~nL(g8io1SdwQ=qk^fo7Od1V9X`q+&L4d-xcwx zkDC4STZ5$d)*x}0mFTSE(f*}DD$dITVh>khnC2T*{na25zsO^6RUxh7lF+x5`_vUS z%Kk8YYmlC(+e7A1lb%^askw=Y;b`Zi4OEsR))17`XMCGEK-TZrBGVKmJF9j7)2)O`5oY z-M&6L(6kIgo__n2V5LU-IzVrjNTY_@H4-gC9f0JDoMLcD)V;~656oMMhGz^j2#0v5G@ZNN#l*|#Qvo9i7A#y?$= z{>iwB!PCw_PRBSb4~1`npzSPpBt|{hU?pwWZY?tdiU$0GPk;gPj#0-RXY85~CvENe zh)62a?{^JqKA>iknciSuK|auMNyj3HpjUkiuQ;)D6VJ2*8rKk;?RleXMKNhfEi^s?JclluX z9}RLEtl?XO)X{3mA*yyX)B~%(|4isZdk_DmRd$a26Q1{NVpmK4w0ibU_FIDld(tn{ z?7@wr(Qdc! z-%vLfDW@?#&}QIcMBfeR|G3%!q?EXsPZk*mus0t>M6mHfk7s%UZP%Q(&OchnSMeF7~j$k4L+~g z3O@^4z6-SWhnYX7#jxEiZ_TJT+ms@8cw#ab~e$!_>5*-yL7U?5Mdk@WrICxcb_AS(mWFUM_nZjj)_ zYWhw*{3-%M#7JLL)?y={!t80t!P_M-lJjC~rj1sH&t;C0rsSPG$PCg9ss7%MSnv8my2R zbeM{VjySB!_9kN_R>?+Eu?cqDkVp?t+BUIK8x5BnLLM$&=%H4*)>3*b@@)?yn{L=X zBhN`47kCRpNH&*rR0dDpd`*2$_1-7Q|J#J5;PXzM`8FXDzfDNIza}J$u8Og}+y6HV zsem(v`1wop8Fx*PT?MLe2>@seZWVE(7AP<+&ge~dPLckXd;5r&uSm@izBfsaf6rw5 zYvv{3uVU31T; zjy~tOS=mwWHJw%XY^*+>7jBszLHN~g62S_E^IQmN?^$f|cT&^U#(Tf4yRKP7G6ZA1 z@f6u^d#FF;U`tPq2ZnxQXMG+bBsKrlA*=4K{r~EaJX{`^(nDSM%eo$H|D!`Tju!uP ztT1S1UHM0cd}w}}hb~KJRzws;zUfEa4NxoG;=aD>^qd~kxf5eH1eQx^KB@3@h%+W*{y`1n0yIp9HwtgI;gIb{`kYtx= zF-2WVg=;E}8td4876@%j8zmCD{>ZnY+#kgraw{FT%7d{dyophogjTvR-E)rv8Lc8( zgh2=l5N}H1DxK;{DAkP-SwSx-6A~?hGLwM!e?VyY!BSXQYlkOXXrj z(+8*(r6iW_*N-0zgUTL)4}GTb$pJ_9>~Y)uWwql1-BWYZF=b8;K#Rl{jM8Cr+j+B_ zGrSc)#wAl2$*t4`q84TQ85;_La-%RX@biID_J|N^jcom(BOcii`o({hTV|nml3Qb4 z=V{vixLQlw%bWe<4uz&?4cg)5bcPXTKSY(gQ1uNOu?s6=bUt*v`u6u0)2b`H!sPz3 zGAFDNyW2wxH$YV*kduwe*T)SiqA-r#w==6J%?8rHqsdNbb@OClX3d+ zSU+_C+pI@JS2swlb@}U3Gn3Xz5ZXr4htP)6U~09nL|`KyY8;(3Ma;V^>%jX_S?8GG zQt4TgxnlrU)j;{;9;pc&%`)V`lu26o#BW=a!b!fGJ@Hq8xZn)a@oVt} z@{kt)@Q}sg+yj4kNc8`oJfySbzj#O&x~_!}c=Up0$ZdEezJnhv`%3~tc6G=v!W;Qt zQ^&(iBn-Y+#W}>HX=2={Zk3jt5Fik?{uIFC71r&irzAWJo_ z$pRS0r|r5q*;VEm!S)O-bRo(g>&1@5H~45n=PL~CePVpzjUZ9h1>bv2R@(1VjuxO~ z=67cn2lV+V>}hrzc4Vm^DNsr|tuQOcp76}|JAxeACS^#S^IC-306`lC5;(}ZIoNca z>ujbC@1x3Mf7S+(Qt5=E-|$w3ht>@{8loaA#7NM@xN4O3~w!G<1+q}cc= z0w=e^?MM)NF;7+?&=*eF7$RGQjWG;CxC|z)w`Hs}#@+vQ`heyL7qS7f&%ze)C}j$w zXC`PSYP2l#=b4iJQd|o~YYYea&%LPL4RdReI|4+)S8o(>!u}9UHk$=Zap;rpm9+@1 z5-Ye^`CFT-PT2-ZN<|Qk{gxzJ!9Yr}Go4T3vGV|?1TDTAtqDX}>F-~PY9AAlKOp`18A6pubmfeDFxAf%s2 z0L4!1<@czKD_uPI?6H~23)v7o@FqiZf7{NHuqWYPjSQulxSr2g0y z1B=E^E|8=eBDlw5gIoe6B!N6}BmYq_YB2+bZM(@5%rmAZWgyc4-K5qMk1Z5|U#Qpz zc_`#OqONVYs$CMn@%9rF3mZ5OG9ZGE#g+v&n9nUII(NDjB3S_d#ZuXIh=VZ7R*+k{ z0dtBqBYd=T7`VfmoTZ?wlQ#u|HdF18WWOKK%a%Z9ZP4SdLT=TsJ&4SGP~>e(8jM%Q za<2;?%gtWlV&`7_aAn1F+jL98CK6eA-c{{+9}+VWt;LT_tm79xAA&q`=YwOI5&X1q zusqKD)f73G7U<)WG1%K7d{l(!h+XN`HHnpR;DlusQv ztWjsGq|L0BiQLbUm38S^oN~-MRF9d_#Ouy*rDorkUo=Mu%T0BS07hd5Y>DEm`N5sA zQ5K1l?ZnbI9IcO1ld@j5;e=($8t5xS@HW-}cHuP^Y}~jx7xAW5gb!J4?{)(v{$M>m ze|~jh_SfH{VQ?`ks%H3O1@~-?+lO+#!CRRiGYzfX1h&bhpB3o6!_tn&NIQZY$%Rt%1|%aJa3>> zRFYAHXopa^xCnT_w=Woj$5-5N6ZOO)Mt);;-O8#TakhO#3MF7&RtyMH_2Wf={MDru|QpM-o@1ohJ|hYmPJg^ zNucbx@AhS<$AemeHdcL51p!U*N6=7*-E)7uwWjBZb&d0_{&8ViK3n-W$9*3j3p>A3 zc*jupn*{V?7m!vhnbe=k$ndFIM|O1xXYeSn`=#_otYGgvm_O_VnN>~L8T8)kF- z<&abzrDsWEXoiD8&QmO~QoCZi{rG>;bx%Q}1?#q;%eHOXwr$(CU8`){wpQ7$Rkm&0 zM%Uga?uqV*+ix@SX~uk*kr_GuZ-~SOK3%&w;p~&EQSk@vpd@E+cT66WJ?8D~w-z>L z*fo_ijdt@s>OFKATeiPPmX;K3ugm0g(2b$ zNp5P%c3*FjA8B=8$U{FPW~N<0hpCoXH=n3|71ssda37gfq}``6vIC3>1}Rs!iwq?a z>naxb=gi(e+LnSxW4nQ=`oI`xlH}qKn$%ZTv+0`7WhPxQ2DCZj9Cvm<7Jb$|bKX!u z-Y^T({4;JImu5g*oaZajy9N%Q*`HE~*(p_)^8A5N;gDS4cVwD3`75}kyT{z<2l7GF zY=7WzoKkr(h|1H`k#!_j2Ul6A8u}`QZiVCaGKMJU49H86Nl3j9pyMRa7N5MDQrzf= zLoRs3>c6b!~MiO0$W zYGHJ!MCa3`8nfV-aCa~&#jJ~OOqqZ6HvGi_bx%uLJ4pZG``y^`Z4WK;wo*U&6m_1k z^2$(e2Q_Rbr^4u;1< z^>SGm&2tvDNw>8M5xArKT`+totsBFo(#QFJDa_|%-xj%fJ-@&rE>K})0=UwmmoQxo zVi1W(fp_=dX!zM)qF~urImz(5Y8pt??MIa7_qG{j(4N{-DFb2O+Va}0i{Kt7@7I{a z7S;PL@+teucsI`ZXn{ryVy{`-PG8IVtjx7)nYpn8zE4}+HlAv`A$roh|w~O;^O8I)Gs~})6Ef5T?CDIZS?#y z6I-?Thn0fG>OP=c=6A{vj9cp!?*loKGvF?P3FkQq;|USIuSw*pK6wk%i08kUG!>qw zo%GRC`sY~k%7GQ=t{LtPBj{1N;RYgL(G9N)-AHw7DTXf-;+^|}F-sa2r4q|Z)cgiA z2Cb-f4JsAvHFPEWG))|p0Mo`5{=l;X@QGMMm!N?5K}9 zpQmet(Q3(CQLS34Q&=uhA53^qImuY(ZWgK*sq0JRJ=@2(hl$y8@A7G8(xefSRT(Eq z_CZ)6dHo%Xr0eCX$7uc{03$xkp+ILJKl@GA7bCcnG#I6RVVr)o`iScKml#8~?7~+p z924^cG_3w@giAx^upO6cmq-q4R4Sk+0%=oit9n5aS?irqXB_|OOKst{MbmEd%HU&Z zQj6WVTlrWo`H_#6a6Nt1vFG=0&G3@p!q-U?y9<;<8v`BPtkP%~k9YAQNrKyLCGm@% zugKTMshrwN5}tp<(FMv%l0|I;QrXP$qjLs67ZwmVx5T*-4d<;DxphKgLG)H%(C`pf zibrVBv;}`Av>FQ5reO!YmEyFP;20~aCd3*!5;hRx+^#i-S)^iNQHiM%KO}zmxR6u((J!79OJc<{Q1N>&h zg{M0^$1C>u6{4a_>y^P2nPDcM#bx5F6jY{eF7`T*ri%J2lq(aBNXoLh4mA5R`ANvM zx{j7%R*6-vf=5uxcGQ;RQFpbvr`SQiB5)r{=}{mO8#6^6=^Z-Q`a><2H(*{4x=6}K zhD9fqJ4Oi+P#sJbrfG+%Snx~VH{FF%DA7^=?B$pw;(v%p-v1Jjv?2mE!v7^AxBf#! z#{FN2$b}fT{}Peo@}W^?zeHqPx_lIMh;QcEJdiO6D9xaR4i3HzL4pPGd(2MdG!}^N zMF5$qei@G#aqFi0(Lt_Oqj3Z6nIA7idm#+J(R)ce_P-F<~Qs3G7=| zWgLuq3m+8IF@>i9v^Ks=Y=|K3*cA|_TLdzBJuG+srATFWhe$y#w?%DO>Eo}qgIubD z-`F^%%}+6>adIAdT+mTjaZ{|OqL8v&6WpO)-OVyjv^mKxsVLbhN_riZGJ6?5g>foa zY-d$`KFjrN+K90g+KT8<`VJb|L)ClL$6Qv(uNP+zLR|6~fOCAx_y^mNdvf+dVmm+< z(wTco`H*e#AA~f*F$j3^zYD1CAO}ltK*nrkT44qu z&yf|m6Ds^I1z~yB;|CnibtVSx8r$EL3Z+_s7ds>Zl%UiGMxPYl zw3jr1F#s^c3iLHpe})Fe7PM-#6-|9=K(v_~6msc0=aAm={N zSJDwJSHgLM_53<_%OPhcKEj^}DMdS&x!jTg{kYC`&eDQMNBUzh?;Lpw)MkKzTvNrL z8hf&ux8|_qPa8kB0{_>C?7sW;A+0SRj9t*@MDNXYjy=m{OHOJjS6cRaDySND;+Gy) z0>0IljpXX?4SIBT+L(ta<$K)1t1iOO!_+&?cdpm>Mn=Q_bdqB0N=k9?^O-H{$dplD zPFaWkJZ~8BPCYc&pAnLOmjFF&+Lh{*Sk>w*zmwQjNIGd|HpiAmC{cn6U^Id`eoKCx zt1vb@?Q%d!7VcfY!@>bl(LVD5c;D9lIiTp&7KawvN2Y2?qM{+8>Spe6qnBVuy#(`8 zu0VTjJ^W5p28=0rk-3~pm6P~JWa`LiNDEs5&MC$PHb`L2gG$;jwI{<~p9C z+)?7u4V6z(lsY5HwmQz?0AO3Qr%nj;6-*}PKO&@cpGfFjS>a&FHki|k<&S?+(04(F zE2=HMhmJ$d!srN>HhDV_^U_geG2u3D206sIWvgxtnz|N=d6W!~s_;SCF5H}nX|dQx z)cA-pYpU52q9x-446GWo8~e(%S{^@Tr!HzGKH8j3JmpfoOLwE}_-JUyHEAB!3!+Im z6^l`NM$0ZY)5gU)XxVa_L{wI_)Rn4}lxEBgFMe-d7J2 ztgxWhNS1OLEKcr*!(Qa7UV2BtNa5Az!bmyj40uen(>iBN9)JF=y@lrFXn)^m;2%%_ zm(PHApDJ8&_&nENj<5kNbV+IUP}BN=g=%$^G2^h}(fzXRTM`efSQFs&J%ar?&i9tO z@fH50voI{^ih7_VW%W>RVhxpXt^?OdDos|abZH17jg+j3y(T=1p1NJT8fi{u)4m-> zW)qQjwI~8SN$r&$cddGb*>Wlop$C{ zW8kXXslKg6=*DScIRO$ST2{51js?-$^4nrCwd9uOW?X(}=B)95c*wO%y|!z1qbx+2 zszU6ed}3ZWD!NK^T&^ZZ)u*833H@MI^C{Y0N6*Z^Rfs&ve?hpWwW|PQU{^jmHPg2m z@OL{TTh|4TK%aPOUE+$oZFaqk@4fU_M`(xLq;X^>v|al}1MIE80?XRZi;>`9WW z%i#XScc?1r6pJ7KT>PTTjYb6Q!?W{eB-e+pTQd=Nx zd+}<%Em!NP@}YM>1va)_EtU<{j{pa;m|l!LOFKq_%)$f@oLDA0#b(Qkzx(EzHj#OL zx@R>mz7~?xav3o^zwV#crOD{;RT0f8s#J#*DM#=tOChCnr%9UBPwP#z8@{zUKHK89 z>TLw4W1q`b&(Jt?<`dpvSp7u}TPBo{-Xvb}*-)M|k&?}XuxUET3x)See^j=%nN>@{ zD&G6pt3*?27^pe5S+1mNsiGeTA!7{YE#VrkiclXFMNYZeZq1{~B_(vXS2bWYEb?)c z))5^To$)agTT)d^#v6#P+mbR|S+MMFs;khhBHZbW_$q`CNYdi|%pa>^%C)@9jZKm2 zTytsbav{K7(qtXvfW3qtudu{Xy~|fm>*xn$=~JmpcDVqEIch|fnxb8A>sgxZh0Nb5 zcxlwymW|k;9V@Xe_DeNqUP-xdMbR8z3asb2CN=V}v&DAWd0?P{y|V;gNp@D*6fTbJ zM9|0%>eU2Q77XK^H&x=Q*GC zL{snWy1{FG%!mlB^V{S0a!F6l(YHEQV)?VLq{+8v-ytaVyx9&?uBBvdDNWhYSi4m% zUv7k&ahrRi#G^CuuH#MF`G1%#S?tuZtzL;YOSPxM+Oet}cwsBblGga8YCdV1Q@b{S z*T8n;UG^trT+6;B9HhvRyb$)TbE6*z)&$8=H{zn`(_ggvIawD7?X~vMY1MtJ3NhWX8{7}W^;2+v7!l_k8r-U(@W z(zRmkT{yiYM%2w=w?%a$owLucmCCcYTF);4>YzV-mQ(DqP0p1DL0lcbv#Rl;u8J>s zl9qyxHVmICe9lY1pr8#GiutTIt-<0%gla9O7h_5iUb8&tAk`Lf1pWZ)YT<>w*#^oDRd7~f;t7e4>abDEgG}M|g&zV?O;@jN3 z{r~EaT`vEtLq5MLY3;I;=pLuH4=bGqj7e>J>qPat9&K24c@@^I7p&pPgbufWh&Q*F zqQ~k{-iTk`fG>|w_EfF9$CtS`bKD`Q9?%(hUz{(8_%OU!s-a-Zqoz=6F=f?mWcw>a zS9s+$^>iC$Bhszu?KNymXEi%?aOKSi2DYK12NRlB$+XsVg}L|vBM*~xALV1|+|i^` zE9UjuHmKb`cTRk&=*h|NEn|4L7Uf~dXvT>8(nG^?y|(nJ@-B%iN`ANWDJ;H+lT0`Y zGH-wO0(ya#H}U1KloSw}M#)*gNv-|(Gc;o&PoXDoKZ(t%CRA@&z4JpcJovmx_wBNS zP~#TlD+TG+9nAkcti#6lfRX=kFVB3nyO@2Et?;;(m%`qm^y*d@?r^$ z>3oN)W97XydmyY=^X8J{s$z-4hZDE$g^If(z+rpSh?Scl#&_#_X{pwo=7Qijmd8Mh`c->;LGG*9*vH=Nxa~SeV7n z(Y5Yl^v;-fz#Qy?i4BtIa(}MJXny}GVSy5T;#eNDvJh1o@76~PH2KuLM9Muc$qTuj zH2%Rs`Mr_&p5B6}Jz-)|+3+m(?1Wo{WdF{!iYY?$Le9hU_(@xV=V+HOWmgy32SK;+ zRsB;2&;RhCtm=KfuW&#zru?>TUMu2X`4>CUCG$I_=XYmlcqE7rL?v93GRfJAiohx4 zR%wA7pU_&abP8Z!PK}8WMLD60eiw<#t#6@tICHDk|8x09rbCbk+Mp;QVcSlk9xz}t z)>p$ZR8F2CMR!M|-@R7lq)_e?MMUPF)jNFs0vH#8OCn+oq4P2r4z`;d?{VC8>yDOw3jz`z_G+DYau+G1nk8$gk1QV<<`p5}q4|c8WnUp&OU&7%_(R0dN z6=-R|5tr^X}3+wW<+Azj1k(EMPE%?~@ujXz{v z!(`0O2AYRG^xF%4)2%K*moeeVyiHy$cW!{eoSTPpYX%MF!8HM5Ae;J4KrTM3BDfG( zCTEyjD%k{X1+N?8GDCtA+d}+3(u==9gpSfqQ1*JD0Q+*qYa${?a9|>>GW%wUl3u&Z z+nSdeo!gBo3(&VoS@!i%6aJ zAIxZ;xCc4zyzq2$q*JW}#IqI}cl}Df#K9#9w!r&D{!(BP;9L;-Y&)p$l&Lf#+!rKO zp;pyLHzcg0j*Se*u=6X75nfh|?7>lJ>yWy4(jf=C?O-$U5mH3d(p`82n<9(gW2YbF z^j1>_zHF^uw~s%N(vr>7=g;h>42{G-?UR4i-zDY4$fVt`)T<=s&!?e;2_8m^kQ{sdXse0 zC-$cMZ03XG4AV7BJm3YvQtQz#a^i@kAdC`a_#WWpDriFa51~cQVwoJGAy4v|m-8S# zdruMVe(hUxlZg+<>@uE_p%wzQS5xIPN^j^ee9k=AiSkac&NF+&s&0}YpVu>}EEFa7 zUZL)97H8*i5>QO!AJRnKE*+8SU{wW4%a|TFZ%NPy8GAuaG7?8h^h2}2%YkgMz^XiE zf(sjly9Z7cyAc9&0jXczmQ2-u5c@di zyJ@4HjAoCJo3Y3oo$Q#In9%3K;fVM>bK04Ky^J0Z$EzzCFIAqbvM8?)8pPWVG*OWQ zj!cYh!1t$U8eu6NnK@Fw?0 zHvxQKtG$Vwgh0f0*6fj5s#;S&z|D;6+)!|}MgvDw;3X+3F-b4HJ-Q7pJ2rQ#FW(3hu_J5fJPDoS)bfd zUk)H^n~0qkBbB`W?P8Jx^nT7tbu?T)!tPTGr6ow-Wrs-|8q~SAHVo%39x$_D8#Oyi zsesAbZ~+)8Bt-YQLytXddy#+YENxX)U0Jjf2=BpWC_^>&qV;M}CbRT4=9yIL5RBl5 z1_AmyKJ#UYwV4(t2NSxdNkulu#}?3nU69*n9iL1 zyvjZ8AbKNMAI)DXnZmB1%kVm2K|JX)8!ZJp4`k8p-95W-$xCE&w2Sd6}uJD*R@^@1p zFp6I5HF4Ee1(;n(nHmU;$%OZo&y*D8{6-~vJIvbFuT9YY$Y;jOBcH1`xcqoNeBFVd2Z>Xd$MzAsKHYS1SdzI%G76`yx5%uf1`-n}9Bx7>c5(;ap=k z;fvGJlIT!FFyqhLm<DfbDPe9AOL#F|qmKRU@(rAgwYe>0Ti00V_E2o!@9Ml`N- zj9FtEG}tIiXSB(3gr?$eLxG8J$yHdDu(#WAgrP(Ms8UoiuEj)ypq&AAmxkq5%Y>$h z{Q)1W7(Wt*p>TxuHPSG&DeJNWXN89Ro9t1#BavyousDQX3QbS^cSaw3Xzv<7@_J7) z*%3E5kdCS(Bm>rOPJiSwild$|+Dj^WL<}?bU;xnpl6_j1W5{tOkn*>9$R$0!RDQR% zqs?t@n_oA^fVHuYHr%H`|G0sXG7!{vzs$(c?^`z5PO)Goh?+j;8Qvm_T2W|TfQ zx%`SDy2Ir;<7Gs=;+(TP;XWxa?q(-PMXR1Moa^PuL|1&!ggUtqH|6&TfP!F8GE<4f z6{kUYz?yO#uX!LX|4MKm-SSZrzKM%~jirXXQ6-&rLJ?kj-(MA!U`PpY*R}w}0Ke!+v5g&I1!#O0mg!n%hgn z=o9Xb(NUgO|Hdv!_Qa5-2g?*?Zm`y$uvSi1vC*nOLA*2%bs{bVcvBA`F3{*~aP4H% z`<|eASG5Zcj-hBDf>}kH3FWb|?rXiFdt9w(S3Af(8udYALa(l_8>p}ISaqEp*0|&` zTrtx=pXC0ypzA*Ig)r+bUFcY~Rc_SeI)McGbzQmMTt4o9oo;md3b7WNTkc>3W1t+R zB_Zlzl!({<{2DCHj^}^P)-O7>iyGZun{iW}`Ms1&H;66Ik{7Tt!u!nnIF;@K(*qcZ zDn+-b=LhG}x1T3+n6IdZmEu5oa9OytSH>)fJuc|XzYlosSz@ijde4mm$`IlD zPsJ5>di3g2RQfm&E2he8Q%Rdn0{o|>2erVwj{^*gFjQ)7iePia8}>{d+m=kr(b`5v zW#HA;!r}Q2A#D*8WKrJp^rHOX^4a$}C%MaWR_431TtPPkM{g>=NryXt+_A4FMu`~> z#lwa8Wu(1&Tl(NK2?nY(a{9fW-ORr{k!7p~*9BqjY_J;}*MRqFy8PhMUj_uWDoTDW zBg&?gwI@9q>sN_X)0v+3=(uC0t!sr8;dm?*9Br!-5#Hz2wX4!eCcGZIVPSWq`gq@2 zF&FN-w~$*-J^bi3xRur0)Q*J_dl;`7H!iJXn-s7)1<4hVf%#=d>L?3_vBwwGJDV@x z?4g%zamt@XxUlSy_#oL_V3@zyyx?tweu)}ih|RD4**Gz4zRJ<_i?^FzMAS2L#6Iy~ z8>B-sWQpqFXP|29@zdjPHNZCb^0K17b1G|77&6m#)5GcQ*|P0uI$YXhP{>;_&YeG2)cU$rY{55veD)>$NC;MWLnE!lgC*o)-^^QI`?q94%sn3b9MErLtb5_`f+JTU%)H23e{tsRJm7-ae5fz z<3Ffb6KgKpz;q86Y}T%P{Met>>`}}6tS@qRt@5vRW90qnkmCPu9dZU0?*HhJLI2eu zxm-h)D^>xsZ!-k`SBI>k`;QKZksNj1{~sNa_Fq-WVoTTyq*dl8P#R7|L!V8mbH*1x zliSY7X8&ucJ@m(~4(a)S(IIOU?lJ#IhlKiH9n$uHbx8A;i8CO1oB!yLhrc@H(XS49 zu=A@!R{W0+*==Ec>=a-uLU?5x#9{({YgHoVm%V^+<}f5&KWh=&JwR2B2wjny$a0iI zgvZodCtr>=iH;*!OluWl*KNLlwF-ZVdk#P5dTtBbLp`acd%6oW4sn|U>0=J`6D4D? zILKP=w?v7^?&A=B2}bSZqM@`r_v@y zAPv=pLrrp>>I*N`UkoGBEvy|GZGVvf^v4IJpDL8l($29B`SzE6p%6BkNgc|}O|-uv zO#;Liw*w%uGBk(GlwrF!!bnKFfG@7vOfN341IiUe5LgBc65_(%y+J4-G%q=V9FJ$e zF@>>hGpA)O9>-eC`35&mfa(yW0|=jz0#D-AA;cLJ9Ne;UU3vQunH$*PT8+SqK#pScAoI>HI;abeXN8M=rx=<$VXR z%brJ2l%3~FDWa6i6Vs@Py-QOg=D-O9#y*F@%-I%rmSaZ04d=V*Z(s+h0O;|CTIw0WLclH(^L=Q8VJs5ut~vox0k8)Cs06HowgYMEu9&r zk`;7mxvPk~$Jqtf-15bxg2|1h_L+2`g*2?Ae}0oBPIr&g8Jml}D9_h9I_Fm1Ow9A6 zHu(j8#5d*sX8yI4<(n?1SNh<;k9xXT?)c#rn!h+CNDH&dkNbac$ky)v!6A)*aY%&! z;*e;XHox0&QQtJfY?SOHy@E2>IPRW<6{AjE0>3b34BzmJ3Lk$S=``Wa#XQ7&ra%G#lvt^L+WC4}@4RM9I8)8JtAtBw)N(lYE z9>D!2nS5pIF82KTl1skqTAB6qwwa*UXUn>eT6tGjbkfV=fiVG_rs!i+@RfI@? zg@L}oxfUAHWQ1ncfj}WqHlF(wj$e#!9l{P#*GCFH9QI4SE}LnSEVuA7Rw`TNY#w=1bCK z6IJjZzBut%C>5e$lTmKB2LR{&;Ws@J&p&vFh97Iz&S5(r)pR|25n+@paG)yQ+0HLf z#W$Z`dmW5O&i6M1el?HC_%DGx#u>_+MU)P(UrnwtK%UeUbl-3{n<6o@Kip~basY<| zzazBP>hBHn!k>w%{>XQb;f33HYjM9gq&^Ar<$rNVedqt;kU-CL|HUBz{tpfbJpCQu z>u^EYpt}x_g#WaGS)%Q#VTz(~Bd}RXoi}W|8ZlZQOYVUi!b#uz7adYF?+YAa%)e-> z_L1e_S(>H%RXr!b(Vy~@F{DTxVH{YuInY?HC*YenF9vwjKp{~=X7oiin<1$PS-e^( zXVBK1s|00Fv-Sz$FEgw9a_Zge^<{`BCC?IlNUuQiDQw$OFwg1mZT`k2_|M$PGnK< zF-ecE2vMYK0(d0B+&a4F2H{i=?@?cMnP&`gfr)RhJ`CM>tVpxWQnjpRmnvbABxdS9 zN7i*zr$^x;5jvSU@a0&bPb60D1G1RrZ0G$Lt#>z5_5vf3GwRiEC-J$IMJNoZqg)pg zIZ1=hN1#kNbAH4UfK8sVh8yu z03cpax6X-BLLOmQ_Fs5GU~_c+fFFv!kGT2DKk=Za6Buf+4sNlKqOpWT_rAgJ8ZdwH zmCG)V_IxtQE5(SxbtvS&Q%3}~($nG;sTvFODX0gAId`wq0`Cu~JPB_~ zol2i39dS?*v11XG2jFgrl$$;fWAdV`;i!3%Ui*q*VyK;D?xTqC1ATNvr?l{d z+FKE6Imas7fK&A5ZY@nDUTVo@v+!yegqv!vr>Rw?G*y{n5vk2k6!g)+5*#LJrfMyfe??*eZDU-k=w=* zS6-BAeuScmO+n^C&E(?*$!(v6EJkz)T=adppe$Ifz=&JgN%8y(M;z_~4b_YsZ6EJk zmGw6AvGE5lS$Nd9lW)a1Ae7TIx{x`UZt+|GO1Kf8+BdK@;K@h?OpuAvzFTe!Sj-$s z9+icq0zCgK;wyCbUVP^Sk&R3a?*fQHI6TDBkz4w5o$Qr-i=7JPB@I8N=#|81OVs}# z29n8Xva3io>;Uuis=3IBm@6O-8BxeO^#CXqbsfHFQ#KH2ctgQW?w>;Mki(~HIVmRZ zTuayIF9SJGX{$Gy|H3SCd@bjZCs1Wje)r2jz9A9*G&K&kcSFaW-LN(6G~!ShASllr zQg(vD<$JR9@8Z`UW)sz}YZ1|9l#n3`@SoGk-R)&t%lYQJCGAOG-dM*attl6Dth<`G`2cpU@B|6eFdvSF@1SP5ZDU?sg(elx z+pCCKy<+s{vLSjx?f!8vf)UqKkaPnN>6s8HZk^3h>W3A>`K$ZK%ODXQVY>&gF3ST* z1vZ}Gu%4*LGc`UFXerwfCzEPux8{KoVY{SkR6$@H?5kJ}RNb*(DJYY&0I)RgU~Ndb zLfzmL2o=S(j;Y+mJ!&1O7#}?@<1cMhz-lI>UmL7~FA} z&BPMC2SeuSYigt8TS)JoLfzPBfp(6iW4SxYM6wnTB8@>80@om1-@+iO-zjJ@OYEUg zVsv;{VU^%nIHWKBRh$^g)#rBD)(x){d@0AAzW|1Qc(hmWU18HAkV!R^JNKn|t}KH` z;hh%lEeu8f;{&FL6Ot{T`o~K!p@~_TF;}p}9N$$=M-t5BkdthpQa0Gn4>@aRopR%@Bb`Pk5o?BLgkA;Aq=q=9JRi1|Nh5G_8P}<>@5}F)EMos_J>&5aL1=FP1|xb0~Q~ z6)v;uNU|it2>SS0=c)9pT;qwffA6&M+QY%D7C`8kS+8>h2NUD&(gvF4KFaB4Ji|Dsp< z1+#xv5JHXRR?(UB%EY{0B*h&m&gTOZ-PgUdKFLwK0x*;6p%Xh(qe##g!d7DE&>)w; zFD#uNRr;4bsO7E0!izrh;M-{c=O&Y*|1`L)bmluqedvyVg)Eev6W$E7Lt<*#+w zHr)=2+0xSoJ<%n0F5S#Ryb~-k$o)%tg9G(j?S!7Xz3#3M2wfwkK_v# z1AqA=d4>g*a%o&F6?o;%Z|NyR7pwu3>U78M(np*gFF`9GMI$Zez&LC5X?ybP6CP~D z?p^+0ed_Vz?QA2cRef&lWANHY|2xP$hyiWLB^%j?%PJGeWlE}w$zi^#A~5#7a8pPL zyF`ycu^%XZ^uU)gu)z=sD6xp!kcqY{?JVkkJ$7G*-!O2*hApuU-guHbV$4m7{V~^` zoVztidkiclBTkb8qTl?CLQ-751PM-&yus>(2{=%R6rG6z781aPm#X2+f-G+aV;Q*X zR#!`ge5G)6{2zgQpKcI4V_K&xz%xw|c_Vu%9{ig=Ol}TdCaHz_-vR7b+t9W{^_BM@ z$a-kMU|jOIpJ?|466avt6)Cy)M7#sO5yBFtMW7?vTD#F|#oum56^f8JtRf&pixD1c zDwen=)!_~c=6M>ggvFXnoteaINiGbCMi|;)t)2`jc!@Vu?0`hXbxJyn%L1|mqJk4< zHHLS|6_ZlX?U$l5{W5nSkzP3lIte87A0g;K-$LHI&c%F+KD4EqhqbF{Q&4pI(t=~d zhFauAvQ``t`Pg-c$BwgNJgnbbn&JwQ-in97y`1#OtdTp7j@8+_(7xkpKSJ zsW+#5l+Mm=K2lh0X*I;(mK8M?*pTosYQkABDP+9QF}+G-PsTcQ>blBaf_!Hyr<-w+ z_I*i1dx*BMSf6uYl5nHc0$*|QJ94M&9z%wQ@q};t{<60k4~{_QNB>#*J`ApIR^)5Q zKDiY%e{;$HBcO-C6L-k43JzK+R!^)Mrw1QC*=zFZO*94CBzZE@2W+_$z!133qb`Hi z$BoTjY$>hwO2RRtHguACM*Hq_&ESDWK7G1ki7htX6X=Kzb0^4aSXgOz#04_U`U$w_ z8@CXCbcrnJ@$+^ewF2a+`{a+;fbj4}x(W_2o8#&Z^D>|7GXf}L*vH4j)9{QlVhu+9iM{>F?kZh3DNNs{2T2WI8o`^i zp}^dOMINghcC0~T;@xo=EIDzHAoqNr6*-2Y^r7bYU<@D1i76=sS75LBkQtTBY=yWG z(b4AW z@uRN~opGiYV;?`=I+lWtnZ5skAe~rSk$xe_i@+HF$BDT!Qxqlk%f$>0QYy5yxo&(z z%cAKMRbUh%fCfWGv9}X+Z1wP@E4jIjS59i z;9zqfoEb9sKNM6vRMBb3sU-0KBS9W_B1U~(eDI(vt1ecR8=8q!TE-X2@BS1&2@0nl zu$4q&FE0Xkbge&>N!S-cO&sXM!hhy<(MYL3RTiA5^hZ9st)IXCtV7)$ zf0P{n%je;MYi_m7(1~{>oa#Hu*z|0s0(ZV0Zr*;MS>(Ymb<=?1Aq8Gds1fdp*^8)L z^_*GcB|5_EAqWIRLks#_jNPc>K2_hud}kvRnm{A=-81Duoci2)5oj?Oy}RrGw)gEG z&D)N-7GQ{#(E7_f9{L+BK#~dW(*T3onyy(L_vn6EBJD!KpNqSMR|A-uk8HdT!3X){RTb{ov9P=3FznC|EE+@4AV zu@u&V039Lmv=+{~cgKgdrDHUGNTs5G-7-^|PJn#mJi(l`Lt|(<43l5`^8opXOVha* z{cAr8dx90fBdhScfdPd}uuVC5{o0RjgUyQnu^-Xh$(docOzv4k^l{`UiNRp906M~d z?Z>^71(3Miz#}m7)-s8}sq*Z5vUekX)3wv*?-H&hECTM10M`30kRR2>m{|E2djC@= z^Bgs}?dc90xJ}8OIdk4{y~nG;Fw}CXC$aZ9hSh)ql&}%dk(uPb8!JB^9xXuO=^f7G0Lxo+OOLEkkl&jzP4$ zNf!d*OPa70>pF7bvsjRJ!?u7>y0Cg~2?ww;AACO^NqqJuF@m-f);s{B{eUrq;iJEi z`Y_l6>MsHrb-*w>WeqOd3@+(_qjSg@!00fzCjg9RL55qPhY2vEbNxq!qpN1`iZ2sr zGl;h-eD10rzc$~S3aQ5hZMX)?N?d{{V`SN17hAFnd}%w}$z#NxHUlztUto|$ooA-R zkt)3z9)xy95I#>9W8mnXsI0A)WyVa!JF}M1_1m(QJYIT!;bIs6Lvgmx0f4+I zj7qwxBu#dL+C3dHp*KM{^aE5z^7^;9=|R&^J_}$Z{DQiPX|uq-F;wt=GdV0inz=wm z5ME!9YB8hbmzBdCr}O=t*L%Y7GTug-JXA|YP%$5A*u(>AhWY&upmZ0bRnhtnn!O?t zIAE||A80)U(gtF23%%WiLw*{-!*hqx?U|0!7mO8YIdsf`Dj?MI+yKj#Hf1^Vtc&QM zLSsX?!dip|HJ0jtiDrgh{BfY`);GdW4%EUIq^hog)?*-E78`wa%pG&&p#`PRPAX4^ z?AF45-S!3hreh@!vA}=qQ=v~9D>VBeUVz5V0%6XA`G|SJqApdVJ9UxDzDfvRVRx?T z1jAYvs&K&Wqj^|PVrkxC({Jl||AUAEmQ~6LgdVf2de=i_EO z_evjEv=`?puh-ul)3srLUHtbbuezO%P|2M)tCf*hXy2Y(>WxGcBf}a|&AZIY6e@p! z;-fE=c0%#osZp6%q@EH6t2@K{bug&qOOx>V>3g(a@jV`=zo0&GHxAE(KeQ>NCvM03 z#HzHh3Xg${nhozGvzMG(fh%&woa=Bs(IS&Ws{)}DGsj7gLn7s;$Kp@I<6MYJE|Je| zHuOMnW)vH!dH%U?aq)U}wlpWYcyUVd0LYYcM&pW%8F>4Ef9C3kPk`!D?amwx2C z73jp_O6F`gP`$Q6-4ex1opJP=k*=8=iiM@4gtk$=2H}ngz0IOuJsIb1!!|Rqlx*+1~h=Q z5!7rA*ViK`j{>W!xF1|s1BlL}&m&vw+xQZ=8;0Gq_rOn;y^prZl z0fj*H_IX(V4p9?3b5WS=Jd6C^ZvBt)yT1Fi^Pb-l@9M?|+NO%V-e2ocSYH?Tmwfu& z;kS_xbvY?$AzqEp_(%O!+>gWO&@OV2FYrIN+V;yBgauTlsi&SwlEfNQi_ft+FmCE? zYh{3NkgOqM>75_#hh3*uEzD9gJ0UyY9dRqc5N4+9$qZFto9OfdC7e-?qddCK2r$pz z&6@}qxQr9~Xjxe5W`(LX~;8Lg9# zY_&!3hkZKbe_*Lie*H)3Iai^_*uKgshXQ8oy=F_5|N4(?f*Ww}NISf$+k-AY3R-Mg zSoUTP_5j18*)e^GO|dbcxcth1i9m40ob|~PJ9fH)?#5J>YPr=qUylzLbDfz-thB(w{r>*0p!W=TOi1eK%JhxLieEO4$)g8zDyUb zKeaS3N>jQ9RLasyEDO!99nP+5nS0zY0H&6=SO7Ia@`Tu;mTbB(VfBR%`)SM_$#6Vr z1=JgR?;UB)&{+!JDseN_TN!KE`YUY$kSxTZOANT1xle-(Qy!|BZ`g$9g>YGad?RNDg(-IjY|z~ytBTpI_xR&py07-!Wo3(JVHG?d9vInbVcKDA(B zZO+}rlKcC}pinqO0GU)3NmV3{fs>ve8$L>7shtS{FonSreM|h)a2|_^0-J)s)cq*U zEebEDXPvKrDcx};+>`r4I>>=h#0Fg#b7%oCH>>X)eV5?-pHzFjb+X9+cn%h@Oo0sU zLDNr*Jq-6dw7o+zVifg6%@G*5JFV*LN4tgLi2?Gg>l))-d0^Or-&&Z*Fk-!8fZkf% zLSU>p|C`=){uf)u-%5QFiMyiZ8R#4mQ^mmXPB;pu#-iCI3RuPu=!T0%o%jqSXVfm^(2@#vXc{CB4og z-MHT_f+L1TGh`a(n|di_I_oQ{$l_;r_w@e$>z{U8`es1TAV)|KMNLr8V-xolI>uI_ z$C4g)A!|f8E;(NjI<|ARHl^?OUs1){_4^)qQ4XsGHN8a5*I}_H^`HuW_0~aXo|s*& zR_v2d&w#9$Ujb6LAC$l*mIw_F(l#gr+Np@GbSNU1t+s5|)X^Wgk>#Cp+Ow88F#UVt zh8?Q~a_``6RpojJ@e@lSQ(1}5LB1PPKzb29ph4NPE(B@Fmyse1xU%I>s7OyrJgZc9 zz2LgY@2t$|!%#oOY-PY^%rvKw$C=dECQo&!f&D5{V7DQ$f2DWffzcB#t^0=vHhLNX zvc3Fv_JF^-c$mJJt`<6l4dkc#ZT(+5plAM&Eqj0KkBZ}oKgw3}4+l_cyXwCiV>W9z zAF4bG<;R(`@WKjY+F|=-)U2h$s4n6 z-RNIU$fj-(fqqGkzS4NKCb0XY!XxbjW6^gfb}snc>N3NkA^yXX;0pIk1I_rr`$S!MS&OO!^?r({UTw>|xr_j{KAq11U0ZbLV?z|E1i* zU}bJc@p>3HQs;~(Ri=?}X@>bAKAiX3{NL!2{Rf?Osa~piGdjcY95|vYSJE;1RsS9Y z{ntuc4f=<0npRS;gEuvx4MidJYc)>1mZfd2D;rigr;V5Wqk>|WeRG=Y#wN#cOHZ9A zBPGdslZV{WPvf}Vxrn(KP#JLE3;C<#~ znF_^enj`E*y)4`-u9aB8Dr3oIJQHQaO+wmqMo-EpOq~}I7dtkPsV&TJbs2YRM zn&--TqIx%~_x{R^KSJ19y=lG0mh0#5-ZZWqZ*~o~V9a#f&hfsM0ok;VJ0`c}S`E}7 zng6Rnimj+YdOC$l7Pm+~i>WT{K)qi`V>t)B%Vc#(qzqdgNUTA3j=j{Bv+W%4Ht6@$ zM7q$f0y)T=rG6-*QzH(B$ihCpakRR8>bbzo!UPc{m$T=15FrO;Fo87M`sK}U+ircX zrm3YfqEL+C-rryK?+)t^r8P;FqSH>jKM%xHIgHp5|4R7b3*IcI<4~V z%059Fx(9ejzJH6)IdwLvRVJit(10b8nn6~!?&&cnG;ki@vBSkytE-9+)orF`Di$@| z&5m*sdCJI&;vdeY$;;p0^r;ZD_i4*KJ0@3-(SE1Mzq~cUFHAx6d0hiilusW)hv?iZ zPl1pw;wxV_?YE~YJ#g}ff97I4?Tt}FYj~);v%|YjFNKx3S?iK*9}eE@tMq>I5?f`n z-aj#*gBro#T5xmpsY5R6>+X9{m?`$`r~UpHM7YW2PM()9z7aM3{*m*)nNz@+nJ#D8{Q{xF%KrTk4-&uD0XQv z)gq{Qcz`RP#SJ;-E150Wz(TKiWIvQN;1oLTNcX2qh+v%5p_7C;a3^fj!Y2O06? z8L@!Ou{oLm^dK|rPfEwVu+Cr`@F~@aUQ_d~FuYFUGZ{iZ0)`eMEn_Pj z_f(y_ZZ1kskr9&C5wcm_6ya;to`QR;TVm1iTuAD)$25sk7hZA#c&>pA2-*db}ju43|8Hi-^ve(>xhSG^nq!P9v2vilCu?HqN5s zKFzf?aZ)cnVCuIr`Crq;Y*J3#z-SR3EwVLDWBsGt;CJ-U1g1CrIx8cIa z?8TAcxAwtz$C(@}xl{|2;)wa8I&%tZ=3?gG6i+0-7~~-%=0C&)gN?p*j*i82&u=4k z8{0XApRPPPa`&o;J-p;OLRJ5DN%&6S7 zlXVZDko_39`%ihrH*~{N83Q;pPj=m+3efDL;5-#&<>NyoLunAyqpop;Q(n(B)@EP9;<*=+fp;0(7eJP# zU?CJ}E0BF$4;n1fwK95S9^wteApLn@kQ@jGTwi`E2|hs}GX(Ag!9CaqAA~dUboU7H z^mEm4^YkGSg2cYx0|r4r(CvCmt>jj4#PK77De_0%!;08e@ZYT#-K5AnfJIyUyF~-8 znrY$8@c{vze(wKdT{vbSFpQoW2_`eAX;llGn5Rbpezo;07>Hc1JXbIcu=e7x1Yghp zle}DcHfgMhz>$$O6-<2F$5p*az6G@&@HBv^rtA-%*(~5`uYpnuvl0-{tJZ>fD5iH+ z%EuWy_#B}A+wWX?wByELkl8=hJXap=<9l0yb5G7*FvrV2|K!nt6+v+t_0I#|&nt5D zHW-9m(~9Wtkd9hjk#$*Yft6h83?rZVaYdFbi3N?SJiz*SMHWT@YfUSXUm_>43_~Ua zR+yv9s@7ZCUyL3A*3T=_r6&Z!u6aca1GWo1>a|IMmyol%r!A4k?*hD^SEMo?@Yb>- zt{;^J)VOuVjKkqQ@4*_R>^ZX%omHx<8irec+f<&}t? z(T^{kt>MG)922@y%Wxh zH_mkwrcUC275IuBH(aL+KfIAK+gmSwKz1(S&5rZR3810Xf2En=rumym*xOTH3ed)w*EJ^@dZvc=ik@2MyiaQY(Qb+G} zDjL*`8)tg)@%&(lk4D^#P|%$lWbRcUoR6XZw@f52orQn1a8e(&j&lAm@3>@Q1N`vlL;9;0HHM7a|Is zX_N&r&o=S^3WqEWKXtFxu@7h&AxD5P?9a=s+(l{Ltw8yzH>$h{RmCbw7C=LK z;NSV7oBC+P*p25hfyV9+;$8&#ejRZ`W^UjE?V$vuL72pG6wBagbdQK1`TNYD6POBmC7o;J?Ca92_II$8K4n7{s8=3}ljB6WXn{Ql^YCPgDssWsfS z!@x~$(VLwL{gfwB6wgm1)gQ8OQE* zN{s2sO=u#G7jEbY9m+y4S}rlZSt72pKvrs7qbnUzrBz%NYW#qaLygsmVMnt#tBcfd z=qJoSFQa+#Qcev!&IIsDO($-nNiw64f_UsD7btU#mZ`FTad`mY<#dng$J7t}bZtg= z`_&ssuP=$4lrT*>xjjyfCG1_Tlcd5RDmm?#8?Iq+QW)GnW-hlV7M{Nng>k!&;&c&! zG88>oY#UPAQ?CNUpTvu-Tc5 zBJppjNQ=Qp(c-)97u>g&0YBUO;GB#v&Zmt7KK5fT;2}5tRYJvbv19SYy+Qly$&E{i zBOu=nKSxeeH+E#?kt*rHcQFCyh|-v}vf^cBzRY4D1I)wp0Zem&0g?&Rzh&rm;{^P; zO8mJvi0;GV2y>k(!yH~wYhPmO3N?Ob5i)W6sHRXe+YbPv?lKLzen|Wp--e_r^V2f( z;uuP9Q{d@|mbph|erHjxSZRfsO&9J;#IGm8T*Rv0{EQg~SpvPy;NQ+=g;(1Ujr;Do z%+g#ISsM28EOOUb;5x}F@I%rbJDH@OyVQc$6>7KBOREm3{-@b4HNkKN?qiHmcA6)^ z?BatnJDFTIbG*StD4b(AoDZDA>^@ST`_X+u1binF=d&9p^6S98xgphfaG4>K3=NPT z&J*C@r7Rva`B?F_AVMY-6{QL0P_PvEJJ^rrYiEzeSu${@EMgFy7YPGNZl;81JG(EQ zb2;i;md2qU5y}emMtsjCqdaN}$~zS|7Fyc zJ+4G7#1dMk49kYRL&h=2-1TE;3g%8@GhO+y8=&onkslyDNx6EH&P19^KLDX(g3EN( zpdrfLTV7=edPPOLzDjt5gb#s>S&%KA_pzT)2bY*`KGkq5+;Ct~bb=BHhmvM4Rsd1o zvj|O^M>+_mb?t^i2Ne%n%P{pYyo+uz=rY1K@faNe(w-(zN$+zlVH%@q1kDH?!W{KO zpF^sVyC~zm8)v>EM?HEvXy^;{-b4|$HPZ|LF*VcDf%=?$jh5?F=!D3htIq?GtfEu} z4k4KrvA;qmR3}G-ZXbgc`*%DNXTnWyPzNfq{X2s~%V>%t473c|QMeSCl8QWZtBzun zlc<R zq6`u(#6GUCdEEUaDn%hC>eR&o+Lmq;CSKsL5~0I-6f~+;0#^){oD#PFkj-xdv1FNs zR%~K2sKPo2lf%7_r?aWk4cl&rm@cCGU;XkIQ;{CRelTTY!LE$hk7A7VI0`V%L;i1T zd+4BUxr|Xju6KJAN1(qpKujZ=w<1>~j>d+Dv>&WjR~Jq4|BHU^)sq zb8mdFT+V2Fmw&f*c2Ew3v=_sIy;KV2=HJoiN0h=4wva~;=J?~~<>Y+)=SL1EbS~kM z1plp3BXs{DS+#~ST|q^=_B{w~Gg0u3$(JSIF_ZAd4~2-ICJ_Hu)JrTbl3anm*oOu( zTd#yOsLwMfk<*)M`^%`%PgDEz)|tAs)0(Tw1cnXpRW4GUXHGuvD~ljf z*99yFr@8(PrYTxX8obFeD3IUOi=!Yg+AayD7;5%1OIeR4Wt_#x9@$FsQKgn{y+Oo* zpHNi?kpD~%JzD&b#zxo9XFr)o%gQVnKCBTi&h>A^2V{gGlWhTJq&`X$m*U)2wNX7< zKoh2a6Tlz{35Ag&4KqNtWa+01wB<9@Q(j>X4E$b3V=TezTloajX}IHcHkU|%wC>UK z{*A`cDM}1IU5Xnw$WfOE<#=sLiwon1{mvOlzEJsT<`mCLY#MrAj}jWWyj{fGuOv5X zH$Vc`ddZ5FOkEJEI9Zw&dfyg7`{K9cy!% z7@KpN3K39Lb)t4o2O@SO3LY>Sa+0;T0NvVx(ESm=B}G9uqd|TGdS~doVP&^9Usa86 zsHjtf9>Zi-Pct6`80tJDk{w5W*k>XYW=DZ`bYWc7phYhAY75Pt-OkoD)Lx!CyPHjy>V`&o$9!&tAb9-myT^K5GqJhgJ(hc%Kw~C=L?Oqud;CpJ?1lg@pGw<8+`eRNhSXN2K zc-jpYq#C=OS>WkRYVU5)(v+=DnlkkRn2UJwkr}h(YX<6r~3mD_%Y5<;1hB(gT5Ohpxe6%k}8=yW}Gzd;$!A7 z1?x2iOZ}@gdD&=btInlpJ6k@{nJi%w7IpB`rZ^X(W0Kvp5r}3w!j6@HKX^W?y6D@!4kj!YqrgvH*)_Qv$74uVOcWK|ddN5~eY9 zB~+Y?#N?EVJsYWaRcuVhhzGQfWIrzaAlbANW1PT?DJLy2pzXN)%{xRw$3u&l<5-Xk zbu!^Qfxm~?3V%Rr_E2ezs#Jd3H;Mfle{RDxaM&2~Y|PZd%4s1KOlAJO8WqXp9A=LV zmxr76K`z_mBCWc_9V4up40bL1X6V2H4W=#<9j&&JYNl5N}39=bs}8f4^x?Wg7V!zdP45wW^*%EeUzStRD=cx$gNr|2D{avr%sf`lk5Hdm2- zxwZCeK&5l6yj6q4E)BT{Jj}q%)>%-#|&CS{|6K0RVIm5(#930PZ!>$(g~xySVWEzt2bbGx&0&TfgU&~|g;uVup{LR)eW^#0LmpgDxd`a`0WjBgE+X>}B#Da8sQufrzA7yBN#oCgN zvube(bP|AUad%{adl5GF*u{x(FQS9mMR004s^i0ywrJObIh~Ms3Z!)c|>DRNPZXqI-#_C$Y%1%+uRHXXK0s}Rbkm2UzP+lr$KjqI+7HrNcvdNORC==W4!tAn$zCaYUvu8=leK zE(<{Ijd1xT#g(hVY9dWtLJm`1v=z?eb-OVJY>$Hy&5ByvQ5+r3ep6$-l619hst zN_mJzZn*EpM<11D$J4f;`}LT}C1v;l!=E>}A1$IJ&1=KhPew%r4VeWXYslYJePq0| z_0c6`j+6(qu=Oy{u`sA4*_|lOE^!VfGGQy2tw=SOcqr6!7tgj(=N@cy0z~KPV+}X3 z)pH-UWo~Z&9?DCL>UL&H1(j*tN~pch*-InM<4u2)6cu!DQsAakfy@rsjDZ$}^3Fmc zk8fjdIE~P3_}u_!s$M1NtMZ!$JhLkL!}a)DG*U_*%wdckg19Mm>GXV^id(QLSKrgp z(fh)cd$st^8Cqvi<}FCI_0dBYzq1AUDz#`JItAhqi(Q)hW77khB&e4InaTKMC(#IasHp z&9LTm=muOE&VP~`V)kqKk}ppt7TbHNb80C93!WRHs>1F zAW3GoYmNPw`;rhzSaXrF8=}kPT!xlgeu4(ER>0O$DPAy-S4A_k+Gyh5QEz#T8IpF5 z$O-iFn>9zxL0-;BtPe>kQjJlu(-inqQD;)WBtky&uXT@)qB+%i<`b&ZEUfU4?cK_z zZ5>Y-_93fHD2m096;SH7bU{2lsjm~AzYXd7^fS)${9D;ixU>zoZe^Z!p;d*iBKVzR zx}09-w|u3%b{C9O9(~yk7q%zolgqu+Z+F@5W9UJc-H<)5AQ7zh8a-+@rgPZdzG3|D zyvvtUKVG9P2ax!eGE|}MNZCT=SXt2OAZ^P*vLN*uM%_TklpG?o34^%&yn1CQpISQd z><1*haAW%#hYqF2dgp@`cv!4)l-Zf1#UJqmj_tmJXfRP~oz|;+VY)73H`42JHQ>Ji z`dbbKw3FT=u}|AK0eJ;T>C(r37F-QflDZC$1=VWd>J&SCOZQ$znv&clG=nSPw-8TP zz!PbJlKKay>TxFyfDQGVQl!fs5Q>qXvVfMh#mK#@E1YqTu|O}zABa1sDyj%eQI`wx zh5L#P3zfwtvMlui)vq!cvQ4p^12PMA8&vDT#&*m-?QwUug>W&H529P-`?<*$RXl)d ze^F1imAjYu#7AIobKJFD@F|0qdcRfbz3C}KLnES-_4#Arh3L&XS;*R}lZ71Jq)`BG zpoucr=G0Inh7*Vd7psJf%~)l6c%T$07TOD4^;!E7M>&t}r9E9Sb?FRN?$}Z}soPXx zdRi^GUmr`E+Iv@pw*8V`luT!2ke4TYeMxgA7-U3hfuJ z9ZLmghZaY<*d7>S|0rAUoZUAlQ2C5}hO1~VdhgShGFcQ=DyYIg+_+ctMAvTPBi3_8 zn*`-mj7=%1%}0VQCuEkh5PJKS%vpulNdT)6lvxwmL(u1z-ZtBY=OawM-UlR1j-Ty> zL=DbMdY?^r7?S!JKMe2&C~36TTaZmp{ir~ZBa%tIkn_JfZ=d9>ZgQu} zq0fGfGiZARi$$xen3xI*w|C6%69d(B4R|zEbh9yEjR{xVyOkT=qW9aX zNw?fU>HG66Dm9Ozdu-M^GxGJG+q2EZ_EG^zpc||Ty4-GmG{qSATRz*=) zG7cj5_N5Ha{zv33bZ8buf&MFme zXm_Z86&@{gANr83m(KEM!)mGs)Oy`xQ(;gSm(GK}`N`{Qul)U}2lkwClm@ zpThm70y>Az3)*+@#_m|UCZ|l} z1$MgKj85c;Y>AS;A~V}%DT#bC{0|$7`YZ_wBcTiy-2>5~aMORXZ0DKGQ^8cV<6Gq{ zEep&NWP_$%f-2)kJr_`mCY5F>+dS1kA9;eVq6>d!c!-14<@4cVV;Yx`X_JPdOkeH_8|oV%NBqE!3eNi22U-mHPL zqS_X!w6Yyko}*Kg*pKz1nLC?NA=gnM!h*F_663ItrI(bFfL)yPg#z4&2K)5#zk>)1 z{h#{e2aKa%?cfA8v$OWWwksYY%D3-oyufZ$?KW5YuC3PXO07E&s+FMHI=30}x!hXh z%cRXu_sUi)uzW+ijU+^QJtmALJk^@+L%18A(d|Q!mG=(x^-_zOM)otvzhc#MMPXM5 zxy(&_FgC|%Sjy4OfHY)-;iv*tHQv|bj#FCMnkiJT@tQDJT--^o|CcTw{lvQh>fFb+fo8X}kdOpg2R5N2vSS`Zo9^66raOT%uMe6z)kY zag(G9XWYA1QZBBq`N~X{&@2__vy{3p36lUXUQw`|61$qTODSW%lI43fNgpzdTx~A- z&|oRzhMs+poT-@s$CL4;4$BN1gZF_YWP|m)o%}~BmS>15ZuJ~Fu95}D@%7Et18)vH( zrXcQw`9VNnrQtS(_mIwSv8dmo=M`jy8=g+GIjZBgL+f|mkhZ{&<>mAwYK4(^ySb_0 zl+{?2_bOMR#cu;%ZmmkYqW^X~tXsH%KobmDUIJ$}lvfblr)~K>_^# zhf?b)QGY?{eNl_LGLd!L5&uUKrk}BX1swc_aHS$7Rw}sbb%6MP9#x~aB~&5izZ+G& z!6;#BS8-J&add|(=Bn@w*gaM%G%}m8W&kygXK|11BR)U3gD$J?wq6t)Ixx&_%k2RR z-5ZgB{kC}Q;AEp8dvUVSkN;O#%FW3)l{xvQ*PI+a20!_oehICcRK-*I@Q*>1&Ghpl zjEswTdOIMLVT-s^uV~WJq>}@+KDAPo_Wt%L!>RO5@5B9^G+FcVbtADwe<9Y+!o5Rzw2hI7l`EZU z!;^bMCgIyBoNPtLxN8|+A%}7aGfJkl@ zGB%&ie}XlFiGLF&l*Bf8@~7u7m+X*;Cf&`rAy>_bYF;5r@iym!3wp~>lj;}^URF8wGdj+90RLsRyR}NnOv>id4{@M z&!&vtlB8(OT0OnIZ7#z!=BsX%b|C2-gBPqVqu&%`nn>yfsBR#uICXj>6(X?{siU{G zS-W3it;_NNe2#|Ri!Qt=$6ADw6wdB=&npq0g3zqSD4HZana9kxh%b@1wqEU7v!ivT~o~0b?nkay%hK4IJurFQ8cR7e&r}p zpwhf^QrZbo{@&OJ+%loiniBWm{>|sEOj34><|~I_YSWH#@4-u$tcdUGNiSWz|7|=o z=NoylT!JW-Q%?BwlymSaY8W(eNiv9gc*#qZPk!h-0+{--YUXilIoKT91b&dYNIT6bX~HieqO3`f~+RH(JGE;4TeNO0)F_ z7m{=Y?R@bA12RG#8F{aFT0cepT+_`YFi!jAwB;)Bv_v1LE}GTV@~qKtg9FrUxh=%6W)DC$}z`#jT4sdais|rSG%r zaN=FKhPl)eAY-khs_9WA)(}q<<7<>+Vo)SeLWxzuo8_8VoaCJpk;UZM(J)Hwq8K7) z6(zoYhZo57eEAxM%R~cifcI#~UHxbG1~g-K#{WQm*rjuB4?FJ(@+jGH7}I=C;5tik z(RIn|>X~~_od!avA?Fb}tMnw_6!@SQPtGDmwB)f_=G6RlUtHs5COJt+Fp)PamL-=U z^yL*FF;Pr1PW7CjY?wuB%_Wq@gagGF1s^Nhe0f7nvEDab63}xS290JWf~NQF8Z>5ufgqNw-jdvpzKF!683G`ts6N#b z3|3_X_LQGknv=pL#6ZC$CpACE5(Czo246){jznY00v&oeOnJKweV6^?LRk0Xwk;f! zxKIy8zei@~x4k*F%vxo+e3rI3L-o}<+)P&t*eP&ePU&7>{i??bfgd5E+gX;FU^hS= ztX%nDrDl8JUdfjLh$8ptCQ?<2Q;$#aGUXDpc*#*2$ZlS6WekqTg@c6yR8A$BX)%9e zeWE5^+qkERRQt+rAL7LzRz;3osEe#%ux@}#k29#@yqrGuwSQgpuo_Y&gVk>#o{8A= zsmY{ux=YI-_CSyeG}HktKJByx}M&TOssl2rqyPyPWwUN|VmBvEnn) zw0N?lYis}P^Gh+87=S_5co7R;2XQbKAY&4ztU9P+Q7Oy>S<-&uCoqUZ1wtbG|Iz-? z&QaJ|xL!Pe02zT|wDae^0Apz|Y)N=8B+s2|WME377`!=2Yg$Ady5#kf;?l2p!sIE< zQcNfknS0sX^>{?~U0#Jxm}_y9nDGSUTKy9yG_f7aw5$?Fi*%R}t88pcla9sEIHRUl zACgh42I>YMp;dFO$!bV3_$)6gGkI{`F_`2VQGRU zEWi(V5)AmM%`0{^Zst9qSuACB&5d77N!J#9>{| z0FHVECS%P2X3=k-*R)2ZKY*mwK$B)M$XP_`TksiS`I4J*pe{Y&#~Eu1q$Eg1A{kig z>FGLg7qa4&)HlvJr;jK(8fRD<0A*1qn=TJk3j#P7cf12g))ZvCbbY1-etlPkLPtgOwfQvCgELdU_!~y=N1qb+;xm*U3kc~>nIAwxgjA#d=FokLL z$A&`;A1>AFaDem6Im45B5NQ&tdXzs?TL7l~(l0zkU=@f2%qS;j|B%aP^nTPQ%!Znylm!7OHb4!jE>{9WAfT+&_M8bS#U%zUcNF7&yBLj%W*p75`)Td}k~W?}Zt(*}cy) zmK|u>xX>(8eXJWSb!h+MIwY>>YBa(B^<9(R>fb3XJLbG*BQY+mTg44da-)1p&$8&JQ>>_oW3Dtd)PDk5PR}9= zYne8(gZ&o={G@r2!CtyozI^<~((8?|>jE+gQ9!-8gS`$qKrf|Y7PHzS4!mx{(k!H-Z!BV(XyoP9SC%a;Kh837endM>fiUdSgjp5Jkj;_-OEtm9lmRa zMd$}_S#*0HEu7nWLIwq}8E}roeM!tfTesx$<29)<$xCPF)$XbC2V-WBK|CFuI(?y% zlUnpv-OBvOdEKe)*Dilm`vgA-4LMFioCi{mn!bDUqLNc0)3yNq)h`Dt zdF$v0gS8pDbO{}G@Hmp`Af?BuJ_K?(b_8I0fXYN%c#tQw#X;*jsGrK-_t}TWh374A zp|D*E{SMY87PJBHJpCntVvXCH=B4AQJ7;Hyu6k&eEU0SRdQgWEUVU+cJcF)Wr9loijLwf=<2R>+;bh~f(#qSkf6O7n6R9o@3yrsx*20G7nJ8EXI zQiZ6fxO*IDw6`g(GYe=t>id#-w)#GbqdSI?iayoDA#1kcV4W`njqF-q2)2u#1gzLJ zTReY7&cuwR9lg{gJU8CPievNuKV$!P3GuUuW);JpGKll+?b{d6 zA5yu@UvV4swxO$UO4aV{e9LNgcA6*xF+6e=zEZ8a>R!8{F%Nm!^o=ttQpGt;ay=SN zUdlJa)3#)va+u4<^AWY7r`KyzG0r1tkPFZr z4h}vpao`b~J99qxMT?9$`YTl#2zus3o&a!0gJRZw7+9^Pt08-5E|?#wa)tJ-cIX3_ z_M6I3(pv9)f}SM4z{`g`#8iPAySzP$Dq)3dDry{yrObZje({&U%#m2*aq4PE#%qta zefLs&avp|gy0x)Y57bZ_qLT&LV`&N>@Jr8L4N#QPE7sEhz=UP8b}!a+jtCt`r9ez2 z5AUfa3zxQ3awCIQ`nRIemBWD4$Cx&mkgOZ~0WpU#ynkI20mRkjQ>x$%xepoUU2fPL zuyHJ~f}PWFD+8sfss|vBp1F`B7>T?3(LDj?&Z9e57ddKAFXu-E0iNLuXz|!x8J$Cn zKxTAkn7j_7r4qGC6_l@NPJKFHQ$I(ldFW_kpH{4~l?|#u<6-abTlmzA$Y?C5L6J71 zxPmttNj&}?Xiv=8cY}l{1(wX!>rKJ8TEGi^9rXpQmWX`~**V47dLstAO1!fuFzI8& z3VK5Ix`{WbJtb}1ml>O=YlaPNY##6tPSq@8>eyb!Mo*zt)tq0zvuGb*cJJu_i5Ksq=v13 zUt1cbx=OnPv^c zP<%qC_8=MN>T z3>+l6ZPIS!aa0=ralAINprMVEBw^8e5Th-sz;>WUMUPJiUx5Ofia7*X@!eNu`8@ulTYxR-q1Yu{<}ZM0f?FL;2OYbi`9QpbG(|+&<6D z&n(;GYCdM0q>?sDykj@Tq0esIT2*iF2Dgwl$#Bv~Rny?={#B`$A#<8WdqaHK3xV%KPb3$hQ&l2V6MDx#6ZpNSD;)_JOa&^8tPBzCu&vBoxcF z&OZZhs*IHyQ?%a-sO|xV{*}n*>e9yc$$Jn2VwyQnX=&RE-CX8$f$KRTmWMO^wJKxV zSWcJGEjv2LKM^|wZ$fxZ`BL>afn?ZG%a8ZP6%98e2aRl#W<0&+OYK)tnsj4W=dnt7 zW0QDA*pd3#y=z*9&V+|be6Njt@wJ&KHo{Tfaa2RuqN6tyr}Tv$3!-+#;&@Tw=I?s*cfI+) zUvKW#k{j&CZH~2fhw}ffzCx84n`G(gH(0?eGfMtjAN{i+e`))Z{r{%4-)1kObhxHs7(2fw8i}U(J5;zyUdsA-v(oi zY;B7`iLDvX$0JC;alz>o++4)uAf^UADy4ksnMRGLa^*qoE7Ki)Ia+d(A8>le39&GO zPdW192Ce1?gLl(@AfC&vBDg@mY}4ZFp#hYzWRUY{B}EKHY2%8|S5WmGQj-j|kexzH z*BXe>*E1D_jZnf1F$V&sD_mZ-^-jJ<%XO-}a6s3`8=+K|aTL>hQC9knAx+Rjp*CWS z8?iV4V()638>fNrXPDtXc$#70h8EJ7vv?vq z7u&L9IZ4|TuD}q>vb4Ke?XFhRu5W7aQpr4$QJ9A28HRjd9uRd+2ACH9hdV^4l97OZ z7O6CK@E|XHQA|jVZSspBX93#H=;2Lvh3FAE4Vtg>s$j3)yF7Bxg@1bkJ0kx~-w-_f zDCl=~b!R#s`XBrVt*Lv!!vJnb)XaZ}?+s~((-@Q~jK}5ebc(F+Vj}P|rcj#Gm}fmj#9*5O0j|B|hTiy|p2oKU2Yxo+>Tf*sJK6M3 za~mVUqMbssZc?*XQE17tp+BQ=xCTa!YRd?y z2ManBXX7!^Nrb74PYce8JkaY_%~W=@^8+lp5vZU_?1%st0Y^2pW$z3B`r0*c_$pO! z^K57STWtE~`gZONmUU`bU#-!^*k*rgiRP9$?>|VkqS>;$B_*FJQ+G*?(Q4obCPkh%^Upu|G5RZui#8RxQ3r5bB64<_WHR)DUCdEjEJx2D3gaXun}FnT0}| zb5KX`%{z<&46%Yumj+iQU3WR1`Tri}kGqcZr2{8+ZA)!9)HkMeHwn8&m@5btj|-@VG8@ygFItKLg<^l}J}GXo&_JL2{f}Nu9@S@c!s^G}ky%l*2hr!}gPL zE*ag351O{L`O}4s96G?0I-m38$26t3mZEDiVWzyq|A?QXng5qsuy}E86hr> zl~3K0A=|*yT!n8uQAS8;FP|m^f^$Nqb9D z{?xw$=Gr9UZuM$ae{f0<=ky9diV*8oZv))S*`@TFkz&~0-zx9@HIXNl8u{wvq@ zUcY&H`Wpi69KY~>IvgIaDF3hyBROWBsw3@Gf=sr?l`KV}w89cKk5u0~P@C(zGsj%c zIy~5_VCJQP6cI^5&(9GfaNYXj8{v=3FYHYLUJTZ?VKIJv%Km}giz`y<9*9r|rW(0) zu)jQbdgkMYUXe))My||QKPNR^?Gz4I@b})~XvEpp?rhlY-o5IPj7rc|Fyl9QYIeqW zSz2laGK#E&Kf9US^AHkP@<2I6tDm0*AA#||-1NTL z_Tbs`LSnH^FNEjo%V+bxPAD3{ypJ838|@bxUY5HnL5}O=6xyMWKXHx4HG68@wG{k% zMlnzPgx9r*W-cHBV25vdlrlNp^hSAz5_Cji7N3<{kuvn_Q5Gj$=O(}>l7Dh$8uQ6f z{T+sM`OeWuecx20i9r>}5WRzM%&E#=bBJraEU_LwL{Xgu~HzF_BJzp8d55o4ytk{KBwcG`{G`zVT4Ex_Qlr>)q^VP- z8k5?wwnrHsQIYyguK%#)t9VXSBFSK6y)fG)KV`JN5N|YWP?`OO>JbrZMQA(*72iV1 zzwuy<$P>hjWUMa_;Pj@LJ2?2#VQf&#VQ8#vp<}3%s9a>9U$8wqAP06|z+&v`@I^X} zb63X$5p+bd1iJ)GMn*KoK+STM@e_HY#L~=9P94WTD z2*q}b6tmBwkznxkv!S7KHXV<`V3vs77x^&6lP1@e(h-+%dfpQIPos9hY6!wwR5iv; zY1PP&774j-txjDUrRV)`^f=1JE)awH>eKRf(<`wB=8)1z{TzYvXH@w+=%Ok7_H@3J z&I@8=O2p2#FPhaW`#LVtl&J7hzv>uR#6{FVI*W47>r_n`J~;erSyR4*U}cH!zIc|_ z+p@qo_y_KL3`)X(i+$tCchZlWe3u^?sY&!Fa0n2i-Puh*2GgZ*z!a6~-r3t1tIMMBkiTNvozxP+_xj2TpC}`g{--EC59w zm5T@zS{90UL?Hy&(H;76?k1;9;35=Pd9)8M04I)uL_bmT_Bb2K*DnIfGEX^93wP5# z-OH`q%k9J)JZJvP%)tnL;*J7$^i-;B7jYu1uAFDUD0O@xgPSu0pzBc@Pe+-2KJ%#_ z@S=B7I-OkQ<>eH38+_jC3f{y-?$!b9EaoS(H>Mt6hz~xVD?PMx(C+>N-aYR!#pQUd zTK+$w;ldBMlPUk7`F;kXLB>+Yjhs`gr02Lj;=}9;wIICn^LsK`?{5*%%?ZVYlKHqX zF36*!n`cdh)|vL8Q69R?v=Y6T>mHh1pE%v(bQlO(Ocp}pxS1+*xct%|LCECNDM)?n zp@!2ma{Da?45b-|B$cM`;jz&{Ib+ESAmNgB9c#t22KJ`L|Cez7f3EjCZ@a_)E~ z_&i`P!)}B~{Tu#m?iskOOV@U$)C@Xv@~1KHH0GZSHcRrj$(%-MQ(-cTp{h&9w-C>C zNXqz_hB#cSAL#X;xZy8XoBlulg!ozJsgUHo<$!v^bK9ELYfalvbI6)QyocXBee`>? znaU+K1NwXLAsDldCYVe_TpSLvbf1vF43o7*JI;?2{?nJvZ_dPMYPv4r8#wXv5qX&tf#^4TOy)@&Ak_993qm;jwO zV186=G@l?m@T;cBlV&Gq0gA^NG@BNtN=X$IN=dYFAd>as5m$_8^jZ;WIDznh=-j6O zM&Rez=j;vRMyjbQB`%Ob&Ub z{9f1R_pOUUz*^;@qdPyUS*LM%3xsE49AuL@Am$Yw6~^Jj55qYi^85RTP>;J|i^HqC zB+2!X;*197;F<7+ya(4MWkuBdnt6*_A`+ z0~ZEqwj~fo?s--5wljIR5u;8!a8e0ao3&QON7Q-;HkuFBL02ZCRyy;L>YO>m;-NRw zcmgMzEof{$a*#1x!)9NLd0Z&(Dpa^$%?w>36S#^IXHc3(UOP*i1xFLbZO=m`rnHe8 z_DHwO3a;QHBRYA7mlYw7!h@@|PtO(b3$^RcE(?nZM*&ecXiM7v-qEW=gcRe5Vk^6I zlIQzV@x%;WOD}-tNt~rO?=u|9;t&d(o|S8(NL(rE%2&IsFGy@#zLTEI63)Pe59Y4j zOwHPnorm%ZKYpK3OvFvE7zVu+&tl~@NAYNy%;ErJ%15dZ9;9^rz7^9_?KMaBk`H)@ zlo=R9S_oy|if5tjnqyf`lCg=5A8|nA`#Kh_SeCzC7esvBV|O6hwl3?Y}>YN+tx|doNMiUZoBP#89!mP(R+Kx^B#tJV}5SGwsMo&?EhAV0htZ+ zXnvU$_(1h$%L%yys%L7K^DBOsrdIY&{nnJ9_l$#!DULrjB5I~aDpT>nK*F3Uj&{@*1G}DRsq5>0;&V~uW zTcB)?3RZHkG6Y1CekNEShRz*NyW6g1ISx{!Wa$$A?evK_TrO9imMrk`9+Nglv&Xnx zfYReZ;4oGaWe6**{M>fpn!@*ll!)iHqvPr){ij-;eBsr){Cqc)>xO}@NS!XJK!kp5 zg=3E7b?YaTWl(&ki+DnzUc)gmy|5qGA;I@^y5M3WZjX`g>5|!5Rc8adL~is#t`R!H z_@P;LJpg@pX#@G0*hLC&HkJafH3qr;>!L#4sS;`+m#3(+qHwlIfS@gVo1Ch>lfS{S zTLSlkYFFe5x_>K6`0RLkqCH<99bB+GM$P*=I{=&Swc37^7N53raAJMbjI29ov8uEl z*DTpSdMIaI>bPAu-oldDB)p8@YSS*$W@EV)0!6JKJZNcu8mkQm#FlfUHS%^|t7FIz zEw_l5z4-%v6l9LH=j60(xEZ!eI|{?ztCOr@9RyXFd7O#>5PgjGxOQPS2p6?azvjm> z6g-(2TL`xB+{;K(m>Wy;N_!=b2!nQdtu|wA0B7N%hncg?l!S^X$~c3r^PY3V6lI^J ze=ki#uPDbkYZ*Ep*ceL`^mKmEdcIxAC}+*M_7bGGx@D>#BUIQaFm7kfQL5x?K@lKb z^0a$$N0pJHmlb!fQ$Qb6I^L(rHOaOTU}s#nRhhQwtx|e9OJLJ9vYED8-)hKXwGJ5V z1usFivvg^HabvQWiRy~BgCtqP_0Z=RV7yCy7!4-778EQ#JDbOwMvm};L<5G5_~7)R zH38PIgc#W3>RK`f)^CIu*zokJUj05Gg&eW|3ZP#I9dS;E#y+8Qcb13$+-8>{Jrchh zYq}muGMRi|uvN7GiJvzE*EwzUpFi(*>!Yi8Q2zSHDdYt`Rr!e6=;qXmJ z^E^!fD0=~sk0>w^BLBiqj~f2N2Cd`QETXAn4kiyw9mBj^QwkJxNU+M^rZdz~0U17H z25j`;IH}rayx}NQk|iyHb31$(iXC4SKyrkoNj0Lw$wwZf4UDo_Hj0h4a>a zNbUZ8GCsaur=eO?w}tQKEgq7qW4=-4UNa;{_2z$=O-xI2>?@p#-p*s?_Q%WFX7~iq zU+(M`x_#eA0w%;Ed4yb*9Ncb_*>O9Z)9|I}O3DM&%X>|oUS2-1Zg362=q#O#SI0*} zTaqFAtf)Fz0Lo1vGlHB_^QWFBk8|}Z)G$2e5-0bn)%b7&U17*>pHRcQaqfd)K1gFb7N&!8gBdNT=7gN~H~`w)~vY7;x}_)>NaNE2G||lik;xVJULShnJ`- zEAGXrgEkv(IBV|4at38EPz*lS$P4g3-|`gH^fZjS4rsSZ_y;ZFE%$xX8PN@vPsJ0r zU~8=`Y%Lu3%P82%%?@-oa#c*M*jajHvh7gFdGf3)w&+?{YemxW!S~y@pZA1h=fF5; zGQ*~D-P3WS;{j++(PHV6?zwNw91b@gX+}USz0*SF73$JU|iAt3!^?eQ$L8#D4>bExlef5=H-E> zKYcU9)F00v=V+UjGm2ulO7Vzp#+>-F@}3NF z=9XKttKP6ge?oCyJEM#p_4xhdk}Ji@1h18xG!D4_p=;nGPdM$kIfWBmeu)qe@m^EpSW;NQrPK#k`x0#AD4?Lq% z@3ZYEzy{4*FS(+#^(x#!8HQUm4h4{PoL0D5uZ7yw58o4og>ir(0EHqqvQIyI{8!9`lO| z=NkJvmemZmqDz6C8p27&t4{0(^L~`2ox1#np5F%+-r2$`QIL4NV9JI|4A#&$CHDGq zU?g^T*e1#XK&Qx31?V>WN$~cB271294VjIP4(UcsG$X?mBpUOeH6!YQ0?zk}@JuU~ znE*?Rab~C>2Zb^8R=a*8T6Gd-Qz;KlwELoN=|=XeO!B!gm8m^vo=F8S0i@AF$=}n# zqy>9h(o8E;8x6FkY`Fu$vki^T*>$1cB5|q2z!9REEGxySV5ubkL%sQMVO z)V#>4t&>z8xDHl5KdfbXS06)~4c5gRmf_1*l2O=}L##eyk09i@A!@*vosP&qFN&i$ z=ib{q^bF0~Mr<0eZwW$#X;{UL^V28Pidnc}3M>Nljs=t z#X^t!)~#Hd+K$0zdUg_Wj%rdQoZf&AnO>E zy1!AhWnQ|WE>P;H@3*L4yT+TzL|zum-93?WNZzAN!gp@8(?J!q=)Ck>^77sfDJSz0 zO4GoB>Zm55uWP*q^$%8-oKW3Fcvx_WaH5Q8z#cGhj-*|w zrnN)M%Mk7=Dg$vsT>xrLtXiv>2WnNc*ITdWL9bpTIBL~tu*WsaCU48{w?j+g@lt_a z2Lx6-N+qfQ@k-b_x^oAydR}#+FC$;P3$qW>7rlxqj~zI9*m60lczT&JCy2tdNeCk3Fj(lpKdVONc+&2` zYDEjTcER1kFBi4cS9!ezARc^bz#!Vn%g4@w9YQzhL{kiv)~BQS>*DT$?dr$nBOZKc z)SAuv*LNw&i$_$Ye6?s8TAWI0t&E+{ z(OuNZHbpWyj3c1Vb-}8u%8mj&ud(LsmQdBzw9ociz&b|`L&=&--O5#x z)K%%*=1KDG(tj+4!Ddn4O6l>gdY`0cxN=AdV&&`=Qgmbr@g!4aY$QNNeWplV$mN8c z^{Td@a)-;wNIvRAl&B6jb>V_~u|*mVt4%UXKBMmB{n!u2SE_jFTc$zwO5Qj+lpj)` z=oG#5BLSk<9st}gLefC!K#h4cW5Zq*-ZYrKnXW5`kk}ZhjO9>>Nq~p*e}PAJjKxDP zvCstnU=zaz_d<()BN36aMnh=dX^HcGDDJHVcs&ySsNY)2(RMj?$d^e>zEBiZ_1n4D zyJd?)5Yt6`pNSVs2Fd{RxXRI4U|5 z(T8((H{OCaqjGS}xi+H_91C_W+Hs_;Se1rX=ECL%RrUJJ>P9g(DQ&V__Ws7{@zA}a zp=xG+{8xNKg7BoM_`1t7~Et(9+nw3 zspw}GZ4X4I$eSO1@`tkL4TCw)0iS0Ofb#xwSc`vh-KyP5KH>Ol>ovVny zlnwV;z_Ua+Vogb;*b8^6YqZiyc3&J-&`HH_POzHx#nuLaG@zkiBk}ks6G}eZjPyJl zyI9qKF!0F}46nMG+nBZ(tWb>3O1q5&6lIU|NrG`)5iN6kZ}AvB_O>-A&uoIxg(5dTZ;}8m!IL1S-pXA9Q&46?ne~|UD-t#6iXHe;ZWk~dU|l}tl$D>gyC6b7 zX9W_eot;FgK%_9i0E9DLBfL$8B2u<`ZIp!AzZGVmp=oA|FwNEKMnj^5@%YO4-;_dd z!U%)j;l_&)EmpBMFJe7OpNtoQ;M+|zk_RMyJ`zH4}A?g~K;^i#KT&C3`l-(w@T$Sluq*lRnN> zH-^{JCeN_&l<|z?YVB80ng2_%>>?F4ZTV6x zwZZ>YEa|i*b!}`+t&IPlilxF|#ggb>#WJIske$Ht=QC)`FP3SWpcH<(ceCdh;Sut^ z(*eduC?f0q8Ye?&pMiN32WAYO-7N1<(2q@(-9zQhwWX^odpkFeo9DZot>Gp1&DX2# zyPYL=HqJCGEw@!}3#<1kNgAm30oWu@QeaYqW9$%xj|I$8Lo!rlx(6n2k8Mln#vqbM zT|?jx!);L8xrDq&R77i!mn43q6##qU9n53RS6;H+K6kf=v9xgZV@~gLO<~;=q7UWJ z$|b~YvW(a5$gt%Nw-4YNd+ACQ9NRHTu^FE0r6;xe<5+fI30F6%4$%l+`Gd_iNAOu=8TyXYMsoP@?ckE89hS~a z_RW($0G1QXfx!j6t2QUJl32Qt%XVBuQc?3MR!7N!O#Q-na`qyT!;M4>b@`28a`u6D zY541Mk(Swj00`Fv78wt^M;A-D8X{BhG2|(xbMhU%W3%mwiTS!Ua&z%%eY*}34>dH6 zKg<%H!`kktFm#d5Ww1IvC-@)7^06B1%ds@`VEN-%8vb!CnQW5mg8n#`6nTW#<9{5> z!;O^xI+mGv2g+ZLrS`k(_bU4q>}A6zm*Jb_-&lA+s>jnYy12LYv55`+Kdj z_o&BMf>8d&W#k67_DsHs09k!ds}oYl9tw6#zFNZpwWA<`mVoM;m_#9+Xs*ltbGPPJ z`?BkXp9-_WyVxo=*J6s&TD&Ypg}k1GGC@u#Lu$AUnIs8h;k2Ib^*DlS21tqAB8L1i zv7%bPV$J|88ta@&2AUN^cx{Uaw6Ist+bvxx5%t`h&8`GM)}6x+(+VN`3rWbJmaQ+{ zph*hZ>m@ZTUTfQh?0fQyZ&tYp(+}s7~ckq z`jM!jQI2%K+xvA3Dv}T?tJyBCjS0p)H7exy>g1bVpFh}NsNed;P3&YuZD>bef_m%? z&iVweJt#vW5B5v#q1yUCEXH9bAqewyV0uMi6%srs>{U}8ccCWx&(rFV{ zM*|+{z5x7Y9Rw&2xZb3@YqbUP(jfkjz!7-d77b{YO3;O&F0QAhaV)^;yah{X@>GyF zNj?Ylk#$Z93cy9^9B3pe9(i*ZYhwutTSanl(=)iRP1$6PH&;^AHQH@f8F`x5rHQMq zVCL2r;!WhSu6=U0SKXaw?Az*ar>bR87EBCk=Lqj3gA7Qb0Olqr01v3V=rfH78JM?nMf&<(f z?t7)!5%9zgNyC(j1WiJxE1m*4-lhQj05MGAi;HH|h9ofHla)=?fdPRG?eu>)X}Eb% zNhbof9wYcZ?HWTPvu7mk(o*~ShMttysc4Gz0-vK1voX6)*_W)B#izwdUyzeWUF?jv zGfA=KU}_e_Ysh)~U0+*I<)LE;Fg3M6-o&5nPBa8yDW?djd-h6g06&)`fp$mQl5Qj~ zF}sc4)!$aQM~}A&L&N8}05bQ|o_1esPlGDkv82juNZkNScPtRsU7yAoBkg)7TF|Ef zSJ2DnN_S*_)q!|M;{^~58BwF)^gFcd#l{Yq_!K#r+!Nb2BLdeqpjte2mrFhF92hE^ zb&ry5r7)W<8Hcbh#WKujgBmcm^Cx^NL%0N-#Hm`q%r{0@_2U01mSjDQ*WdmqmW2OR zED6WK5dTpuTmC4P86ouAae3&Rh;?@$Zq~VAi>bEXeUej;k9fRsydqIb6;i(x%i~Gl z6pB0r&?vl=!|G0fpAJ8n!PmLIlRsR#5Ka_`{823J-r0lyRV*P|WSioXV^cXKN~84S zhVQO(hQpR+x=pO%7Ed75HbO4dbR6}His{pu2@oElW#`ER| zE)Cu@Mz?nI6p-`@Wq?y;YaUZ=+h9D63Zzz{gZP_ebRqi_6$X@Z8`NToQm7W>AfF~f zl~iqXZ%=Ow)($V723ax-L>x}PS9(2%S4%|eaHG{$>nIDJ3DXX^A%UPB;(s>QbKc1` zstuUn(YCjT{+QCn#QP0DuAWi~e-p>hzv+r98`0lMW=YVQUy@$FJ@sK_k{snX(I3f8 znN-`{KH90y&Q21{yArP3twk1ScYAqo5KR(@uYn(pGd4XqI@%jPorTMqJk`7xPxxeA zj-mSkI&8)eag9K>QqLVY)qn`Hne3qogkz7k@styP9rtbLGt4ctUoe*Z3iWl0hq$!h z?)$y#cOpBtcKP7(91M8%s>gT<@W~MYL;B>+0gEUdP3&@XJaHv=--uaS#XU0aZ zs!g9>~(cSa-e=usy-cKSw2Hq#-qjqLv|)j|0273QL@r`fO7tw;VKr-wQE?&~(`+3H^&%u3DhYMJ6R=8EIYD^%dnD-;;FX=fukPNq_tSwfD;dDBC$jQ#7VAuLd^V2i3=YHUHTk_r1 zII@AQS#_~3t1Y8Gtq~SDkXkSG8!DaW7EQD+nDCBa0D#yw=~nQPLh49Lc!6E^-DVS7 z+AY#`LOSunejP2XcF{?`_t0E!s6NOjFtL)9)FaBEx;or8_fBKJQ?e0*h(6CH zRQqBXTjN0~**-M#J<5zF zkS+-jgl8FMeQcbRDc8#tciqowW`yDuOOAK_J*9Ykgl&--+3Kwum zLI|80-Z&74a|n!h5#8AszDcHc@P*?+rr;454{_qu}q@MOR3rNtir#Ize>*ZeW{k)zhWT%sFtCf z!b>XuQ7s+3Rs#R1mIpmws-;nCOY${RcyaR_O~Ui7U9AW)s;r4=-r<)J%2kw*uGXlS ziQj{;jkTA=-Q0^5bPXdf=8YwN0KCz%+J{_QyTBa`h_Tjv- z&`T*AjX5MX%G|21HN9F#rZwX{e4;Y#>|EIJ$F-cq22hx-1MC{1I&Iy@GGG1x?=XAu zE|>fiDX)LCKABg={<$E!UQ)*<_&j?BTG+d?*OJ3Bf`9>zxv=L4mOd$xhq+{ZST-7^ zlMp9x`I>(^q$*qdy?02Dtf*aebzVpjJVlJjK%)#qmR9;hnvbZM^OAJ+yJV0^6 z3TObpK;fgNrpheoiw$03BZKfo4sZ|{W{8wMxrBr@xx0?Qq3>L3|*OY%({?#V6N z{JpQ#Q7JoAXUv5TD#k_J0JE%pafZo2Hv1hd)gFcFC#0!UbZ)we8mp506J8$J$TZ#$ zz=o{E-RN8uEy2E%5z@;_gdqY}@J-oCYoqscDT$Y(!F^JasP+*5gZgk;Swjl2k9GAq7w&ybwYNQUhWzZ)Yi~QXj7D z1pOIq`4oAU$(rIZ^88&_CV9|sjWu1Cz?|Q|&X-_~n9>KE!&l-QO!0ARrE3;JU=5Oo z_$X}?k<6ZfCvFnV0YT+c+`hKgK$8TKI|waEJTTlEfKPA>%xX_B^6*V>{u}_q!gr0y zVgtljde)K_6l??wy0uDiCv;9LOb{aA6JL2!5o$;GtkTC7$O36`uk;F&d5INWs~(rezMpeuw731xFRR1Cl`zPcC6!S@(j* zKXWZB%(k@g>xow4!0#ckh(TC7N+d~~0o+1r0eOo~#>u&)X$ZOqnhRUBz^e@r&}l=j z`>$)+nl9YK9_ttI3#1+zjdv~teNm+h;wZsRHqItC&{UEkDhD(>K(9@6FxhmmCCoOU zbAxR_DoX0Y4zwba+R)4XOeoHnJqK$@C00s$B$G=eANrj7YnN^-MM>q0^BqrpO(11A zF)*AHo<*B0@@UB!K3y&9J}868hIspH+E*{B!mV%on(Po0i<7sEz+K<>CPa=qLbCGFa(h5Tr4bdZN360eT zy)*E5CpEMLy&tK){Y|qp@c1T%GJ`y?l>BCMpZBezs4#@fSP5R%Og|jASRkrM&T}@^ z^MKQweClBYhkfA5S_%U-**Nlp89>XODh^+f_A;W`LWdX*dJtPk4*-hV;VWkHo4OQL zB)^sJb9Bm~O^cwSpy`w7kh<;cJT-xY3Pc@Qw>Fm43h^$wWlPO}#et`XC?7Rn4GI>{ zTvkvVI&l!2^P#wPo^HQC?z+b3yIP{X4i^<=bn3%mgV>@R4KjCy-H!78vm zR-1YP1t*c24E)9%svs3Vnx8Cqlv=1)Fo;PFsBpc%%+URCM$|hdniXsuZXqcZyAIKr z3WpbvW3objy+i?RK^yA82r_MNYRan^FSP#u$(FYN$d(-idJ2f4|B)@{|Hzi82Lbcw z|B)?gOt_&h12D?yXN**C*$@CxgDSpY%SZF)5t@HsOXmZUKd|L|`ZXsO=aJwn7QDx- z`tiT8rJzwGx&J?~C5wGb{U6w}W4DtO@0GPLbZt< zpZMk=RY+N65F2+;BfjR8*NAJTCwUq~Qp15$#mFqxP|1~Ie&>8d^6V%_GIjalMTG50 zUghn!*wc3Z_Ws6lW9!5tZ8~4q`me|eJfd`OEP6AlKe}a`(U)#H{ztb=Q^&!(rZz0% zYmKoBEUC83p66Xr^55e*sgG*$l_O;pK&$<3`=NTDD92Ur0JQ=ulDjSS#0Wz`M)@!S z>Yl6zI4JAX7=;qh_midJH8!tbpx9Ap@gnfJC1PEqa&+G3^ZSuCE7FvTTXY|nQ#wpR49!?b1(PkP_t0$BlEy0!8J|L(^h$qUvS)yA3^n!S)o?@f5P+*<7 z_uojQOM`s0H}WV`c8zGw&W?fhle8%3{ZGKIp!b5P+axD;RGl{3)uB1HO#+FPvpkQb z56WpxbN2aD?kLo->id^vB+NDrx9!?DKg_%u}x-d<0p&Gat6+*X>^mujl ze^r~7O2ER#1NHN{=ah1pbMKHG+O|9Vq#E#>Fx-!#ONeV3M{Ova_j|psjxTO^Ry0|p z-Y*<>5(05;{*ebI>|50WXR`&|&CuTyupq~W4n4G8$SrtT?irE6IXyxrC~6>)+Y~Kc zLn%)^yx1)IVnoA~f^U;Kxz zn)`)S&q$zp<&nas%!jte4NuZIe%S&)vbSDnFF|eRb0=;+PUSjV8Lj@Nc)t}7ise+k z-)x||4F&3#rvk>WYco=dx?R5tCct6&<#2a{ zL9~F0B2hd*Yc5Q;7R;wQ_R6(t2lp%l$cjvF#qV5=3lxcdUqAoAKmiUR>k&@ZW$9v{-s-D{YSU#{;zI1 z0a?Nu3H`5b>An6}x7^pfCn+;T&_A6RJON`li0bPxo#uY4dT z(uAoKk|qd(zRz3(*!_QW%ZIc-x+QDvKe}bdAKj8Uc6k0vw>-F*dNbo-JL0;_QL9|L zW@P>>+$0SdS-CZ~_O_+pheFL9`|#!-$b5_)>t+|-V3JUVJPsj*PS-smm|2~8mc5HS z8ZlEd29~gIIkyWUGja-gNurhiX00NL?5kGkQ$`LI7Lva|QUf0S>1{%up-`Rqo3Y>_ zUonony5fV0T89Nr(@Vq6IXUfBW~R!t#cELZM%=*AeETGZG7z*@4z++D}Wiac0Uh$eV} zE&EKRB?X)4 zIs}uu?rDYh8fR(QSsE0qTag$2V=2?#IYTnu?2|pTpknouQASZ=l`li7!N0`bAr;}Z zT8qKnn3HUejZ8qLDv?YN3#H~RRt};n+@5RE$9!5ROY6fKPB-UMKg+}4_HGnAy~N0A zfosXCpI_klz;c{)xxQrmz-+T&zD2Xx@sPJ3K|%d+fuAc$J=`Oq?&DZ%-V8d?+N3ci zfTVITz&4;zeby7qxtzYm6RhSY*RR>`gl2Zg>-)2FjavoD+6i7#vnlMr{t{NAodZ1{ z@Ujj|36Emr<9*X^yi$V^B%^s7aRf4|^GS}cxGy9$lY<+g(A02Yb5Wd$DE|5Dk!Y-Y zYAu@fDcIewFWu72!>a}9aAIzqO2%2)YHks5qdMc}Sh~eOrbPdPKED5I(UcJdlR{aQ zY!v()Q(!*F9 z18Ox#j9ehTTP_E0g$c#xFfvfEO7m)0AxYCX9qI>t#mhG)gH#hL;*7E*GH=F@UXGrG z9%@EX9_{!riV9JTab6CRiJ3jxlMbg37_MOfSNR{z#mEqWqcdV_x^jWFRNCZUlTzg~ zhGfDN)?eMy28|eSV=h;Rl?Wy1OSk;d@q1s|JeJDt&8)PHRuFVaq zY%RMVK_cj7fiG{xXF6PnI)NMS!3WrV4QtczgncM>RV=;fOSeS*t6TDIq+t@9|J5xS z|IsZwzjVv?fG^#W=HmIUZuvOl_eZxJCHm4WL;uk&8~*B+RbRU0PgI3K^Gqqb|LT@b ze|5{Fzq)0|zq%!za!&7;ZaJUF^QBt?Bcp|>{n0Ha{E_gVkf@z&WRXC>89F*dx| zez12%`!sxcM{Y8kPnJ0n>`jrY@jDAw*Fd9hcLOj7O1&?`O)xI;Hx}*@h#qs6I%wgi zEyLo|R&2L5F5BwH`Of?OlFMlFlI@U*n?|w6#i%bEySlLd`q_1mr+Qv3L%kWI&r74& zMZ!b<7{ivU7PNNGStsB&!((6 zV)KoKi&r^k*XUhZq3@SlceBU+8+&)}fy^td9BA&FeM4Q}SqxLLr}a}$zQRl==zG_G z6?DVY;^;U2^ow5URn;gk))zxt4jI>$Z!%rDXicMz0Pe~+=KGzag{R~Mie3lt{;7t9 z-aho{ong2xyF7*+{uK~I?ih`yJ{P00BMw9ee~3%RbW65E@`r8c1oVlekj5^fFfW>jaAXeTCwW~7lvrijrEzOptMf?q-+4|?eR%mjqSxRVOS z{-L)}b%&bSFb^6A1c13~1TmEcF)^V(pQ!H5{ z3NIn;YYp{h2$DB3DNZyY*~Rqt!PE^hJS0f->|v28@E_%Z{+2cw@S}*nz&yiCf)L02 z+1iD8bNbCWh3&?szrK)Z-DsgB`}?y`BWhtX7;E;VtPQ74)`;UsmIPW zlL|p$*r&(M_FC8@MGqRxh-Vmk_ywVT>W{V;xGq-k5_#$nZCyIyK0)qY`dYgdlyB(P zCcn5p9Rz8$m8-Ku-AFHoJMB2-b4?U1*Cu6i1qxhof7h|*uJ=@zHVN|OAQN45i>FU& zvPvwwr&hiP9eZ+&w1XP!l@N4v6sEggCpI~5rCaYE>jCD@b+B*0$a4nUl&%yyzzOIc zZlN>_(OQ9!fs)gY`bMdcw1c|ZiPilI8IS#$={6T&Lr-kF|BfE#gOii)s?eJqDjpl@ z5eC}n@VqBQU6pT5c|sO4gGcYtOCemxJECV|(NN)XD-JP;SRLtn_?C+u5=d4yl6cuw za3oh88uA;g&c?7+!xjXGSiU}EFS%irF_q@Rz{Dq7-;7vW(@6JZZ8?MI0hKA&p$(lK z(cq95O$nRJU!FI1PzkNfq8-)dPDhN^-QM4A*(fg$6TN~3AJTTFVQWXmJDL{h81WEo zT8Ns?B9ma-reJsJ)8|>kZ?0U)7AYhUM9j2dV=F2)G<%%JE0{;{NS^R=?BKL;C=0!X z6{^gdo6)ivqK#*Ia57xiv7W=+zG)!kq+u;eyaj{(mUHSNq!~q->elIcxjd<;K72YV zB-sd#XGotIec_lxAUjSS(8!kjDt5*!*3gPNT`|#>9v{R?k5aze9+AyLxuYa*OH;I zZfN@)GXmmK8H!T9){py)I5u)|0pAc=oAgxe!1=T_u8R@J33unl&_{w)>*zH2FlAX} zJY2HJ_#L?gEmZdruu_8nCZEw7bTrAQ(&U+9_bM0|YY?Gml(wb>1Y$(leS4d+5DP9@ zdbWIsEhWC`)wxRd(h$JzGJy^6Jl&*hCA~=ubrOSz$H65280f=kidH@-I4D_p<4VTw zA=F*z!RPQk842OhU19a_*Rr;6N2*R(Kgy z)oz`2fP_o~nO;{`&jU>6wwHIte6sK6nGzgH*K>u$aSNmih_GD zh8ar9`20nE;A3t|vzge$%D#r;b@stO#AWcWs+K$rIx0mKQ3Cb^7-TC}Wh+T%3AXw4 zd&I%h-+bIea`!UrxXUVE5zlUR2jAjMaK?X$%dh^?zrg_IMyWg5eSaoLS$pi zd9SX0v>`g27J#Y~>otG;Zx0Loe&amT>phXh`H$s8P(vzO0RNI}g2XnM9UThZ0YWKN z$En_2`DE~#{P#X;L%3jwe7=Xzy!V`pyeetiT9*$1I-q_u+-Y~fff>D}m@6%j2@d6< zu6O}jm(XOW%Kp%fY(z{}Pu1e~8Pk zMmgopwCO*@Wmd`jzr>}TMhb;6i*+g3Kg6Z&AL4RA;)}SP(7PX7l+ZthlT7x>=d0Bn(TU&V=B2JCYY+?T)>A@R2%O52!8OJDi9ms}!4%R9@egsiI|kr1 zeW|tW@Rzu}|1WWQQ>}ZymG)3ufwlh+aY^z;T(X=VFO$LBD_+YTV;-i@3ddta+EYOL z)Q~7hDj${+0cs4fZy*txL(pkKWRd#f9?$DCh6N0XlUzHz+4_P?9}3uJEw!-*4Mf$> zUdRIQsy+)+yn1AyVATe~avAdBU4XD~FlJzS_;su>{G!{O)l};c)C)04QFBagVo#a% zd(=&X1*@k$B<&F7DGjJRYru)5k)5_MzwFldl~}7(1tP%CO3NIWuAXdD$D_A_ z%~7skROP=ffMKE;N`+{w=oZ_8AOvoV**$~T1i#i=0D>hK4mY$ z0%;hcJQuaHtS+Ecj6!8%NegP z;u0gB1bflr4{^B?CE-9AvX2^HJ1UWOBa9$anO+S^Zp47eNyOh4PBG@$ACxZVxC{Eg z?sQP64$kHfwnTRWTri=Yt1Pe5+^IzSqB@~LQ>UGcSp(RT?VY4e7ja2D6+|&WL!@fN zGVJJqz%L_AwWrj9h!XNR1GBQXVT?Y?Rj;98f?CYA03F2^F=~q#s|?%-YQhZ|tKB(Z zL^_d+ixQj8vd7G?vkp5)*Hfm&LG(G702QMqdF8FQ*k>`RT;KI^vWZT~ZuG~wtSI~A zT;7y^~Yhr-D-TZMb!^pMUV|I`3g<2c|(E~}c zaSyt+Kr@P!l|UPlsbXT#yi;8T^AQ#$emfSRJbRIQH%OE1!(GMR%kx%jS2h9v%8)3r&Uf@KB8Ph(M@ysBc$%pWi;6E znbn2POZ&x@C%Yw@KhEXU7WRe3zs@B)0VUS{3Z6gE5)_LtffgJ+%>rfpn~R{C#7)nt zYqR@r&Az2&eR%1@;)%@Dy?m5*MQQp^+b9>a*ZNWId9H3oKK`g#xI^E&)k14+?#exd zAr|;h5QWD>y%m(M&I4avN^8#BiYi+Eq>F+)7#v|b?EJgm^T9lngHeDImkP@vkMcu^ zD?8ba*mKgBm#=61yFKK|jWSCW`L0x_2#_m2&Y2$wyww9BQm=S7Dq~BZIa8O@u^@`p z>aZs?J>oRbTb!P)uWzc@Qe^7{viuyY17}wET`Z85S-^+wBr?n;_lD^=Q0I<3pT>r& z4`|uI9yCcO4}K+YJ_=P^OLDssbDq{{>lZ1i`Mrzx4o5JC2VJ0&aaNCv+)y2TdH(R2 z!Di$eN~oyMro5NOR>I>@N+oc}$j;Hb5f4lWjz%z+!rs~llM9=Jwhn_dV$+3gEPG>0 zSY`InI=?heak?F^;{uS=j7I0QW4&q3O@*l?!6(arYj)5$yY81dHTm8wzG|l9wR8X> zkIOtZ*!mu9r{Wh;C1chjx_O*lGnIeA+Q+Q*VU2<2#}MfNt!rUE8({7R`w z3um^OZnpseCb0sj3gaK-k}(EW7an)83;M3+0yoClA;fPnD-W|c9IIRM(6WV@wl_GfHijkida01J>j8I zvh5sIDj4D&6CpVgbgg0`)n4>&ols~)FSFZsV~Hl1*IC!|+ zZ;M3$yEqkf_v9hfO$WQJ1~%HWoATmXKi`iX*Be(5MHm%`o3AWV*>xx5ow`q?RpdFSKi&%u-QXSf<^?yxKx?}(DWfk>jtCCKaJw}a5={-;F zC3)x;Gu2K&YZEgcpDu|e6j&At9~uP@lRiSiCG0I*<8;(WoP>|QmQDdwW*C{J{Q84F1W_+Cntx*SaC@vq;P}Ps}n?B zf|)Bix(?kYm(h`@6~-g)fE=ah49?z%dPubaUv76ORvIq`ArmvnqQ=`t)~*;Jn}erH zJ^Y>kR>|W)(#e(-dblP5VBD;ohmklGwQTf|D_R?^3!cyD(Ep#N8*yo9INawXWLpL@OX5 z*$75KZKZ*aIf*rMw?!&sfBTzv#>f&=;;x{>XvfsGbRSo58eFD)hr_!h9=g-q&F=e0 zSP*8czfglHJw z3?}0bHuh~LnWJfa&4;E`({ir|?%Q4X9WUiVACuP}1i&oG29M09Gg0RR7Raj?WzW*{ zwFkXgR8Np9$M$iJ#J#&wYCD6kF19a&(ZQQn7`bZxAI>ki6WSj#wKdnnGHD;NsbAeg zpr_{IM95YpDrgA{(Uc!$1OB?eERC1j1OBoR_qJ)nUE7vO279tS8xf|wS>F{&KVuq_ zy}8*GBMmEG$lh0V%3{hb;Yq3)Azxg+r5Mw&wELw!(y~Sr^F~XNYWw|`-7VH|wSOIP z8q`QsO5X!b$GPF7h}hDPYHQ&weeT{_Z@>*XtSJSfnxbBro-rH8GFBVYT1}yT#kN>+ZTXF@jIMI8EkS@lNG0mRmJAmwx zK$qzR7YAP*89e$CY9@p{C{Eu#bp*Uswr$(CZFX$iHab?v zcG9tJt7F@?`KIp&d%x$LG0wLd^#^LzSaV+UP`DkFPusK^L6)dQ@Z&)j^L@c9M;xim z6yB(Y`1a3y^tZi-<7d_!+ja-|)+1yty9tf=yd4^x{&Kago9K!#D3I3YzRn|})zC(; z1`D;xABYc^e5#!(BfY?D#P$Gr<(4EZH7%G38JOjN&VbE|87N`UyKl!NDvz}w)s#0#kT3%XNY`r=V~asvb`LxU zNbt;VfgSI!eL3}QUj~SBhgxn7nA*+g@c=yn6O*`CAQA@41;Ka#qlqNPICzqx1Tq&( z%PQmZDI#M^6iOJ~C_ zqxA1tVo;9J5)$Ck9OrUiN5{$WNQid)*v^~=_T(K&lZtWm1cCaT4feOn$?A2yGI@^_ zz-3%uMQ|+sL$f-K(XM3Lw|+?mEmKCI3gB?A!HCH@?N6YBsBw?na+?Q+KVw^q_HLB= zASn0-`^{Qyk7WY8I9G4=Quq_9)to4OEl#_z&m{RIcMO&gb4eNszT1%N=D_Ir;ZaZD}@^}NPPl8!yY?Tzs*F>6ug#8X?%1r&r@4E zb|j0cuQ0y(5u4&pR=uEPx>Y1-?{3^#-k9a5z|9Hh^ z`tVypyl(>!R4=bpV*xYw4SpuZ0vQVob_VFoC3phe1}UZLM}23Dy7Y=}j9??r+eTko zffw`|eBGhA-^!+W+61U_g6xlv$cYv5N!tdL_%ZgU;lIb-8d%5jR4i_U`9Xhb0PHY? z&oZvaueKJt5GMh!(8Qs}@C!A}gCHzO=PH9mg*L(RSlK~ia`T~BOj}5%;cqBB?~bd` z-petIXk$>DF<^7tqb0nMc8Vh*G_)B|g^Vq7M(R_HVq`Kn5**Y{6ur(L{$gV%5W*tg zjcX)3rxkp0a)nN%P7H5T{jK`Y%gLub^BZ~ySfkk!yJs@VMye8%vB^g19zo}p(As_* z&8?z$?h*C&bQ-?wdLyX}^a6Do3`ec0Z2thiG->NhDTcI@P*9cvK8@^|H7Y8fet-=u zpzuQWHhwfdAH1<)3jQW|P_)H!c<(!;(s)hAkLBzN<|_XQ!e9vum;8L~4va0xP^ztE zu{y~qK`EKSwpXXmHRX)#vB}aJ(|x0i_RVMiJQO>o&X5_7iYb$^r$mK*JD~y+O0jtH zO0{RD{nDR}m*98d&-a(0k`a(q;QrL_DyuTZ_6S=5m$z%@P1$ZLq!cZVHpGo<@vz(D zm(Gm2%h6o&^73%}wp-uh@he; zYU^NS4RTM^q6|ZV`m;{!4PNFD0fYhFWRx&A07-^d&%c_4Lc`s;@GwF+wmhok_i-a% zUdCQhRnPhrS9C8P_2R$;krL(FCD^z=PGPJYU%@18SY_qc%H)0wIAI_td@7-qrZ1W| zMAX+q@zX{Vcs4J+0NUC;(6zVEhvniDq!@7OLoKnB@Y`T0`oX2r^xi2)h%3eZA8jLt z$toN-Qqb-!!wKZ%={B_d45v7NzxZXU&^LY=`i);6L-f;hF=-((-LDy-k*k=U_mc<> zxQTI~#W2;JnlE=IZR|bo@Wyc4=ObhmJ%%6&9Dl?KufJ1PNlSm*myGK+tf>+;D9-y_ zv&&^F(UJ!mYXva)2J!DQ6<_+J>bIFA0|}qgo_WpEo5n5Q_T{{_!pTR-?O*${loyP2 zD{yDaok^?^GGClYEd_l0o-Bux9MldVbG~UOz_wgElQ~wE6BT5@L zszfofohv&$_oHvZCzTK_Y-T$C=IxHbw_9T4)&H0)-;*=q6*=BYJU;T>V$=#@^ugGv zaCwRcWsOp4f-f>OFrds#R`|r43lHp*Wv7+?)*_r-ri!+V*ftfPhu}@zpk99ggpigB zyP!D9vQRuSSfyF1gf40pe&cGMBVv$_0PK*u|KO_FtOj&~uq?if6X?)PUvxf`~X6a>A*V%TP{4-%++HPiVG8M*G#E6tq$Ks8ie9H$~6&1tX`&tPk=jaqv>3m zwo1?tgapz*E|#;H02ukA?X<9A7aH2oQU#qi+4UAEbQ95}i6ZUdn<3go$iCqN@(gpv zO~Aiq1Z9=itDqM!=e?m4Yx9pD(r4?tpKyQPi2k%V2Ekr3;p~=%Bs^RRKj!%Qb?Q0n zr<>Ky>+Q9t)4}~i7cC^#-FJAn{iPsyTe%mUq~LcR3st|w4_1>vsEl7)_Ljs;M?n+@ zfC>YOtq6j>CWNtJ7()Iy8-S5c?3|`xM}Xav1wIOZ_Pf*a^K*#u43TB-KKn+C9upov zS~4DAbZt*`ZK*eNIq&pL;e@W4-B4Nzh?ULS!;uwTPI!Q$lm^j>S~wX2oOxyT%u|0J zL5Ds7(0ij7&+N0&vn%h~Ondy+x+WttY=-NZGW4AFGP=D9_tU@DKFv!Da(&FczVyhT zq#LqYx%~o#MSr*FPP_d|yFwRWiK|_9pglsNF5|R~eI{rR`SFi^N#t>LMVOm`903J- zr)Z=SCoaD9Cju&(`9iXQry(SUVbN%ehJFan?EYha?p5% z&6bNTK=IqHJrvI?iG7ZH!yo9EMGNZ>FM?ZqT&*iEMu5FdL@?)Vg@pecs6MFW$yuuZ zrMjStFwMzY>sGYKeM7*?4l))NV|^;z5Xu4^Nb@XL4^a-J#K_Q z?h;aOsbKakYP{QL-P@tv8a8$EIY7@Aw<`X(n~nmV+pRW}r;WuIN1Vo!gsc74Iee#` zn=(ZS5r7~4U)!-G;(PLBJajR!_cV~4FJ2r5PtVzblinzs>HhWbFMp8n;O_M7dIoN1 zU;+;d2)1K|kf=8?K={;t_4EDg*~QZ4nj!+TinVw918?zIFKgV ze3Y{Is(X}7^Q958jZ(*?zox)ri_x0Yzg4^v29qThE)v)b>1o7NYsgpUk^<=DCk?G* zD%FDjA|^{*SRHZ%4n>S#KgFPIHr2fLyoN9Wi=@!~qvB@|bIfS;SH2|jNmMX-2DK*f z`|RtZc`25tXSM(0(1)Im;5`~toN67|bp7nm+R1GiBNhUuP39o`GZYL~)TE^Vb!3Y#mG#k&m+B5K#Ft?_nm)NpAM*|p1i9@2 zyemE`Ru3rz+->dIVeSe<>wm-X;W;Oy&Zr`oha!p%N~B4T=P(E%UX7TSjtn6mK1Bt} z0OA{iX<~=5pd_ot*dmbBDS(F%w+6K(R@TY(rAM#!Lm?BTje0UC`sX2f^^~8hPR(`f z7Jd#qPfDAu+0-p-J`T}$0+*S_djF)u(q9`xpdmL%=!7ALiHHj%i+zhVSbliBtUkYF z&Pz3ClbsFs@acD$LUg-nWYF61 zU-)uA3hOX89gFi7-^WxdbaX1~JXr4_s=DVHrW7t=R+s3~B(g=7Y_@6-WTR|2KGvDTSqbunG!ayCa0} zb|1k*6G(9UTV92GMq0;4xIqam$0)#}X{E^xV$)_|w5f38R`So9UyD2>+~jbz?#E0K z|=%jZ^%vCs!PAy5myQ}d*afz%myVWc)jsLg)XZR7e$2{2r{&2rXGw#Q<7)<0a8 zU8=xY(WJnyedg;;4bRYJgz+TK9vriZ*)>R#F~T28ict}EN7#GyAubmC3txu9xnCz? zV1zaxjCCRY5!zrKo|Q?cg~a4H#2@kKlb!6S{&z?g?m|u?9}|y zM!v@KA;k)h6s+c$kz`n7yEH#ckhZ~M551hNX+RB3$;vDW{lDKS=`)z(?^3{UUiZFz zyO#ufDx!;3ran41GpnWNt}4A6J=bx?D1p+4R8EN>b&o$Jzg&;|9SL&hS8@@IJsV8} z2&}52Y5YSHJ4=%p_rQrvJC@2SIKdajVD0ksaii-QM7hukl-##;Zy_&{x-3a7ck0o( zQmpIzCwiAx@eXkQASv*Q0kK@IS+S+nac|0G^|{fjg0JnjP6Ps22rEHgij(VD31{rO zePOP`F!0_a)5yO#&rzGkfV^toV3?5EyUX^irK)<>u(i@a&S-e$wDr<2ol=yLb5# z!?h)NpKoV|uaHZ%ka5)AYa9kxG{S9Sf6fBkuJe#%i%FJXey~sh`x?Eaj8FY@QOEG$ z>S;&seDoX^tNgUmXw|2V+q-mADDP0;wzPb;84fb{Sx=Jz+I{j7!P3q>Cn=#A1^*(d zGLBAxF9~^kbwxRs9IbG7rnh>_nJ(Fi8@~Q=*e|7Vo zPr$|P5$qm5dQFs>t3cM@bKUd;#bPSismZ95bMSj>pu;N2V-nMIrqe3!Sy@-o%e;&w zHJYf`KqN1q9MNXMdE6i*)GD-b-fZ~TIlec<^*2~E=A_1P=i&rN-(`tLR+&|fQS}D8?634EkheMK*1KskS%7^Csog~4Uka@ z%+TfclLb(LI+&3es{Va?&oW)mj1yRaQBL#7(XTV_gvZ|GkzZA!9-rF3-%Pdn&Cj9k zPEKR4%d#RW%@dVAPS|cFn>d#MHE4k|<@Byt|OAQC9PwaYe${30-r(OZUwgXNqz-u|k^)?Xq`gQql7 zt~{$lUXEY&6)cs*p)t$!HqPIiAdeAX-*4M=XJ}vpvxnJ}e&=L{5^uwhdjq)9iE}4g zCz%14_T5=uZ{JUYC64BoK(O(_m4<|N#)~qTp1a1P^ZJcTD?#z+9@&#sOvsD4S75fN znV;v%o*U0iLZDyY)3|b6MhVs7q4Z7>ec+A}RpE4hIC{CJ{7im-#O{q3xGily-0ZCV zF4Da4yS7Ie>?=x9*%INz8AdcglRve~C!i&o;BkQ>$@E+*u`6GRB|6=kA5tMVp3!&q z(b@GJRN8u`{wrM$gkDmMl{Cw4SK5?%gg?HZ|}3zkiGOQKgOlEa_JDL z7CBtWQu-D0#7;VPv8Fp7zBO55%Cck`7u)i zR#oTwh>Sr{sJDj~hbbxLnYV4w0UYTN8RSc?qGFuMA<>0M|a4`@zm>;-Hi zR;Ii2YEkIChpgPC@OV&5n{{sEm48x{B{B-L?G7V7@`a#F)wU%YscF|J&+hCTBQ`X- zV)!uX|KXDgBZgopEie3_?phdMrOlz{tABAgQR#0QmvQJw+}Kz(M3G!0b4U#3eV4W> zH{Z1lc*JHGi89;@@tr@WQrDwgiO%XC%ZAJm&tH&05T^Ga;FC`VLRT*zM45pq`Sx+_8iTMZ56_voA30_RWJ7JjNv5FCj7c>SEDE2GyMVTk(>L&L4 z^6yXhO7Sp+!E-zUQ-cm-|C8w`Eqo2!U+GflD+dMuTAzHN)26%!2%G>5qX~lgv#2$B;YFMYFmUi!4qIH zJ-Rmuymu-}DJO+$cuduE4O6GfPjy+OfcF#jtAfk<=@~SjO9}z1rHjh!R3cB&+~TOE z1^InInw&ptR@Xg%>t5sFUS4bd8K;xbuCT3nu?PJdXNUF$pOpR7Nwa|pPinm+8&?zm zkuEP`zNO2IZ|PD&Fn-c4JEQKVagL*N-x*3Ow9$bB zT{XgA_}29dtPNXHvi{neDU{m?(l`i`2@j6be455!y2?!~9y2!@@d)`DFoMt@uk$@F zNE{q{9X699PoP#BR**svWD2laWY|n+9>~uBXjPm(m6R7%K zy@-ne`zu}E{*^9|R}waDf(t?0S!CloFPXlRpGvV59ToE>^+`6!kgjW$Zdv-;&R9X| z8h|QAm{cCdy=kXI7QcJVMUfj&YjBUcm2|FdHy#FiTc1|jIXHa0S_=1yM8l?G#1SQ4 zI5LX8RZb}4?JSl|20u4VHRmWvkt-p#w}wcYI?Y;qrGa6q$C;GuRS&>I*W$0(@OT`W z8ZtZQ+E}DPp#vTpMpcqUfQ4O@1V{U_?K-kU!N?v`#FBLXkU*g%g##Iv=SNT{PJokL zoD9Y;;Ie1Nfibnok=zMA({Ub4if~ARgH}B&nVaXI$!$4a08_e2$6ZQjJXJSHTn))#=Dj3Chv5CVNPkDjGimR5>wA9ZvZk^hd)X$SDf1#IB z%V;|V6`TcHU;RuH)k0DDIM81*xEWaWB`ma;ty14Z6FV>f>1xhqT|&bQ59l_kJDbZI+72J&%tS_WPF14t<+O?# zs8x1pDWlS8_$8va&*9?Vp_Ml-TP?IZ0NV3?bC>RI!iGbU`AgRtz|xV_P8^bJf`RQS zwBfT9G?ds`q%>!gEE4!v-e{hF&yeye>ku1$Hy>jCba>wDRm`I)PLIb}brqO#ju7=& z_BeIWQ+}e2ph-Plk%BM6MvnDp(+JSbm_p49IKd5E>YI?T2>09Y^ zX)j97D67f?-2sD#(ejj`jULhRgZ;{m8eFK@wj569geUX3{ekK(ONLKonWi(rsak3c zeO>Nq){N(ow3YOahS8wi6U@q_>n5FI6_aX`?6?TqJ#ud=vMfXfqU{Z`-}&5BYghFo(7t!Knp7TZMm7|QBcbxW)>)s360ry z5x3&+-`*uSAdSaDS)1UPW?am|9p{LaRN2p~cLosCuAe?K+@obAEk}87Xrjb#?m6Z^ zcut#40^~$rWD~%(>Jr|2bA5xyCBD6S&88|4KkVWd5dQEmn)}3gY!Hd+mQ&{fpE{&n z-k1(y*WohP9w@u47}*GespT}&y7V$>|4d!YYI~W*JCS61?K`+#)*7uCR}Fy3@5f7z$gki zLOjPfS`0q^$E%(}(CEEu!vwO8-c>2wT;Ir_0%3}*-#=57o(;l;x`R;#D11?beJ7z4 z-YF4gE9tw=8=2YA6X3V}LiXU#j0V00x6} z>CKJLs-oiS_<`;IOt6xp0^JMRt=GzV6o#R*x~Moz^V2|l`R5QKp(yA6`oR*=Ii=5z2*P--z0hZ!1Pu}ZT!dn*IarOfVf@-Z)bTv6 z8$tAj3_I4p&;~tf&~oeWIyWegajCdxF~Zw7&b&S%q^)esJ8)zOs|IOQc3eoS*60z{ z+W;AWH9h}&ms5}_4n=ie5T4g7;E_(EWtDkPdPEWKZS7FfAG<3d)5-lgNcZ+wUml>H zj~z3DfZDn8w#=mgv1svm6)Oj7=K4k<&bn|-r+BwO5Wm?Lam+@og;LH)c9Y-PE!o-3c3~W$d%|RbKV^n2>YttQe|wjvTJ(T#-vJ>= z4iRbhNUX{J4?B;grti?Vh#x2=yy`b9e4x}A`>V}Hy;DlH`40(UL}OWf9j@xj8xWq% z$hLcj!m#9R!}m$SAoRvRG{~d7TVv9?GN1FwpIoU$D~F-`X)r6u@Ar@(zI@!REy^B% zdLX}bg3GhNzc#7dRSf5@7n=YQjs@+}t2YjP*9BWtL=eiNBgW~?w={xNn>-}VWUF3p zH-$*sV%M$C|3O6nH_|EZwE4Wz1<*l8H7xiX@=OdN?6B-Xi3a`iP$X(@X~VFPW^}y% zl2(0}5p8?A#`Bm|iVH(Yc`I6`qxzAxHK>M6s)PeB$g-?VkI`lVr)| z(c87|^Y(t{u}_RGWt+g4dWSWDGj~dBqgh)CRXE3ddChoYHPz2N_VWx|kct-*p85bv z`JQVwL?#V#b`aI<%B7G{3JQO5mX-X`r8IT=#A%e%54S8J;W=!<-r>X_H`?_*Q=lS) zZ!b2H&RsXv$QUUbeOE&=bR&=K%UY*HBg(aYdXq`f*Mf~RS5R8Cfv=*I_|0Dg>9m>T z`Z{ahIwSw&F>Zbd!FHV7S<`l@>G)P)XooTbvT3qNk(82JEzqK9dNQOV0+|*_EisS!)x+VU)HB~@|Sw<@a>oM zsYdnRn3rHL8W{_>4qfcI6m2TF#!6>@|Clixc@GVrL~v=d;l^7OoM6P*jERLtVEhv8 zVa7BJ<(ro)0A?g{qDLex+o%lX=-=YT)=Wm?S=UV@A7&~i9QZ_*xpKi7YJnT#02ngI z!XN4ZLGcwSzArVEV_ltYwrt73+*v;6zo&%@`YkH9Zk-{5J1~uraCd0#~*d%_>60qo$za2mPyrPl#_j$BoRG zTye?s7cO$oZiB`-9a_)sf7MHL{;g&E%*469#6KnIVSmV`jJv661U*rk%$5LWnS3~iu z07-GRb)<47&UHsAngdUyVQ)bl4Z$lRl26^$qff1OqE8)SACW;Rlizehc@M^5SIxHK zZ;qvAT}X1&&K3!&7kB)MCN$7^B<JEg=SGsYb!debRGq=9GJ8<-h6WcZ^ zOm|`%U%C)v{v%(K&}X&!al8FXzC_Dw_B_EE=zBPn#0vS2)?SilJ6+OcDM!&Wr4pGs zG|03VpYEjD+bMp_m!seErB^$GLBuvVyUY<0RF-5CDAOOfTL7q^eudUC^wRuJ)#|nI z=9q-y{tV}T#wyo^EjF_RUdq|aJ0MgCsie>ZgguY9-tsbD%?C!J&6om)F5!0tL0)`u zorH^Rw}CJ6Knevhh89tm!}ac-TKW5*)>5Vx(R|&m-@v-tGhKo9i5#pXYH5Rx zWQP6HxoCsjaG(*nD9S-K8{NC2HV~M1fAxh8o`%urf=QTTS;M-Knwq0+zYj7=A?d~P zSgvh2PrYAPX=uB6b9~(4uy*r7Fx|ZVA%e&cTUsw#D)@!nmED$?MvSE0m%4b@;D8t0 z9@V!rx{ls^{;yVr=v)_cBfuW#QvAQTz%k) zCsFKheBb7?-@LSKB3Oh|?Vf!M&7hi#$Y6@t$VkGNYs{Dy!J6EdM&?Qi(QVMs_pTRN zHx8(nZxT~)6aA&;pjvtZEC$D_Mjnbgxm!V})E}S2@YNAvIx5Y{dd`8|L(ZDj5=}N5 z#Rs)po1&dN!T6(itoLAnkR)Y}w;W%Y|9b8h=0=vf9Z6>wiLFu}%fbF52WN7PU#C<8 zR8Z-DgOP1ZXs@J!{a0%1dcKDHrxME01!2UT2f&!Zy>YFLgoU1B480VyEuJ_uOm4}T zkETho2OGZ}lE}|Kb49qz98?&#av{Rj*@%8qGrEX@?jj;uFk;cjD_6EwJ6d4huCHEB zTpe8*tiSZ7ZjZ3->+j%*14HuNNUzBM(wDftF`0$7=OZIVsu#&2WB_@Z1j7jUoJ#)ykPO;vVTHV|Op?5AWuVp6 z^R^`^YPbp?b|qf(ApNKfERIjRuzjA<`67lE_kpdxf^Iwh7WJ zGkws^Mtjm~!UdgmNnl7?(~z>SE^WHD9p{^AqJ_J~DAWt@yzQ_V+m?^w)ajiqj*qEN zal@aPp*d93wT%@t=`(u=&@qxf=neggP0PS-6hin~Z2`^|R3f%5+=+J)6qCj-; zZc9liu4L8?*W+t65URk?^?gqQkKfiGT96pgq0O_HXs~bLFvT&PmSVFYQ@NujjZcPc z|7~A#9GuE>AzRRWAOuH1(#@#`g;KcrIb@L@qoSU?QtiNg+n02vf=%|D!@fee+WKuT zD*ajZ{Q;sglu`sZQt7SQKq5Z!#4HwQCj_aB(b!P9Dm>Pt{qz0Td~N-?;}B~D$j%@V zUdaNaJ|m667E$GhEX2+bPV?|SaAjhbc~MWcnJ*DI5636DdGym>$fC=OGE4vi^D@%l zr%vyzKPr^+kcs??`QSzCqLffM0*$kWKasK&vet>5-!LkcyN}{I&}}^kTioCWGQ_bZY|XKEcuP zAWXPx208G>`hXM}Nus{}2QD{2MqPRb=JXCmYX9D}87@PZlc-q#h%*gIH|gh?@pO0e z3Qg}S*AHfa`TeN_NDA!`;tr-2Q*;DRgz**p&ngx%#((4k4EfqR4qN0s?qrkmI&@6xST8a z-OTfNW_Or{t<8b&ZItE*jOFRP@TNBT%I@pZ3m_(8v+;sJunNCLwo+#M|G#|++?_KM zC-oouvU5r>ACa8Y>rC`Z%%}*3G}OClpb~pOd^Cuzqb_M6#G&8!$eI=Abm;e(Jae_X zuHpRjy=Rg>qT-ls%FQG7=;Rvfb>M<-oiVF2x`>oqa`9kG^2$7IST>g{xPpRWGG;Y$ zYGRkzj_2OPbMdFETXfTpzxL%8SGyJa)%R8GRvh2?nXwkBg$QBPM3;F3q$KENh%Qm#RbW))G|@zVTfdLnTpKJOWK&`X2L$d z=&gj+yo?!wXuwWx=gpea_4MlUBzBc~Eduq?;~;?UY!i{?f)V()iJsery8S}vz5LYy z-Rh=koV7D+S>cNV$fjo71+NVG@-~@iwXk`#(J~F1C9^}%ktOqWvnBY5sP}q=aXjme zEk~hdh@5q#qnAgnQmdogSWB_Al`78EgL6knyA}|2A$-xU+Rn8J4l0ltyEKvh_0D^` zo+p(9%-OndPaTE2ew}Lm!z3xQM*FCejTymmMwoQe!l^Qu;&*Mtv|nKjVkl#D`*bbdc62)>1a5)*oiKj{V0I=hX`T4 zh0;x@Ym7jgy_N)(NS%hG5+9AcWj;dmLq_z={2IyVwM1u(%K%=Je;j+^x zryA#r<7w;czV-ouyuBv^)fMFOw;6HgH3gQMas_{)G|^DrThHa_*Z5jGl}42`8>jPP z($Ae^>lB)zr zn%=me>8IIBznI6k+U$7!u0nNk_DF7NosCTBPlQYF@C0?SSRE?ETB|An~dy zR%%Q{nKR3X@~ng-l_@TM2=Cyhy;%As)+pn zhSH$)D;*{g_3LG}+3H-`#p61P0IRGQP{ny&m)2D6qANhJx*PCj=>|aIqAi$p8K@R6 zx!Pa-l1JlZZAV@$jCIsS*dd9O1&OR;1Qd~@E?%se;bclP1-Dm$JbV*gVhOQ6UkNre zeo#fhtKPLdx*Un=SH)e(RUT<0eas-hB6*zX2I|nG8q^eWI z&Bk#ECWD7mb@a`PczmVKF~6Fn7(KUt$cj7WF2;c*a>f{MqE?C`!_Rk94C(w74aXd9 zz!`LC+F$UcMLksxjh#_ivU*2!Z^K8qS2X0c_Hj?oZ`I{4?t^WxeL>wX?2;$cu_LZD ze^n$As@ zDfRrCjlKN8{mV?N|M-`6|CfK6)s7j;8fmBaTkVNHSo~l9r7ZCIKmKLDAniZ?W!8WF z%g%I;sK5TD#U2?ZF3mswWvd0AF-kzkS8`=5h~^oH|L8MKZDiE+ogfXFHSL-xsNBjr z@)VM3Z+_fKBsRdt2h1%{Vx3<`HPOD`&|(+2N%|UtXBt;dy<*hb9ov8WOL^k|_?OIo z{YzrHhQIzL%C~=6((sxpFne<%&UN-L|B}vzUC|;rngE{6#Dc{3^&qQV>GUm{cE$Y_If^hMw8FW>x{@g@O5r!^ z#boD9)kx{wJpkj#aY`rcj+$C>x|mEa#4Hf{K;>~o+?>S*(RRFvli&$v3fK+DZd<^) z-_42K{Ib8Ly0dXzpb^Vh)RutMTq7)ti5Aq+FiOjC$W`(9DbYa9;dIOX98rodwzuF7xqG+Zp`)3;Nr~*rw55~tKV$^dmI(W5iv!t zTqn`RY64i=1+TGEUOJ*VwHq_7#GvcxYSehG|2BcmKW$Zd&3e!N4 zltP5$!H473ZxL+TUklEm{7@yN_iKw~yH#}tzj}BnKVIooAI|6=V?ee>y5#6gWIaH( z^_3_!h7X}?{a*lPG?SfNd1WkK+jG{`jC$F>089;(@oxY#UhMMczX42=LSp#%{{b*( z>|2SF{%-)2gjN^z8t>l#rsFq&8NuDP)0$-Oj0r>g>%Rcz*}nix0+ZZ7yR17~o7&$1 z=Gy-TFtvm*h%qEubpH)tLKPdUCn+!=FnvyOdF$3 z$})VV`ao-dCr!ips$?py2!h7l*2IYn{`%wFSaTA&KCmlGnOn)k)(9d=+o)uDG`f@) zA~Bd09kLClOMJrmVfzA!HShyaOS;Itmq!BCUr+=3U3L8XGE|&E$o4T8U1a>dtQozY+|_k`xby zEu-oU%)KP?t?Pc;o14LB%dhjbjq5iIPXzmB;{s|4$TKGK*!1WVoTg?wjIZ{q+k^So zrNt&-iFawt@@dyX>paH_8grL8*L?!bIM2!g+gxKQIKn(r}+Att2 z>8p5-T-q#uZNx%noqYo6DsU>vjox7*D^53;2;8oaHv(c=$;)p56YDR4*?A{|RaE#5 zV0!)wz-&S}sap#%{9ahgJ+NhT{CdSY$~K}|jl2ol#XF6p>QkCu(DvTxGDH?Osr^Z# z*D3Ju{{>)bFaHBz7JLJkUF<9Q5#kCLe@;i69Cw&=of#DASfI9HSroyvab#{O>r^Psjfi7qBe zQW4BUlOP{P+%z|&{n`f@>{2kGgf)yBeQBS1?#Um_NZgQLvH?h15eZX=;&Ly+nm%xD zu^*+m5Zw@?F2fh2BEZ)9R{6N-xNLe>lF*kI2c_<@PxM>il!Mwc2auCi)*fCEy*0+9ZlW>`J^a-FA(Cku^LwDMa~;kq-z2XUG^A#yMuu-#p~FdFcz8tu_te6*1g?BqeSb|FYi4w=?U zF@~ZVhym8n&b?0?!2@D!7HM2rU3QyXgKg@-&P|CPt>DBC1pye#9#p;ucO@Zr_Enal!;2aw*XC@W1 z?DUq^x{MbI4KvQ|QO%uGOfJ)P*bJks=B~=g7i9x#wJv>e z9Y8tLwj?tzB5fn@)no#t7h6qPG4KktD1^3IUlP`)7AEmd3Ii^Mz-_Yl(e#mH$-UT|!gX@8yc!stMrG zSfiD;mf-@^SVbek(*qq^OJgO!{nFNTWZtjN<>liKWpL^22XZ<7WnHhT{pAjt-TMhk z6o;ho+ps!|K&7>`U}qH?pS19R*9>kFjy^i2Hli@G0#4W9jVQVLaO;4CZX)J26Uv|O znD6k|5wA3mP{esKXdA#YdG>RDb=F6%6Ux0RjeBbcG_=qYNX9|MI)PMs5-+#aqKQ(} zy4Plfv*OvgzmNNJD0N2(Ts*9-c#ZP{O=T#z8a%f7IEZRORf|A06J5_Cho~@Ro1557 zq7RKZ%w}@tb1gD|itAf=m4uTkdzb7V;-IySscCWd1#~tsZvJ*~EA?}EpveE~q1rx$ z(*9B^=CQW|Z`hrdDi%ev%>gbm+i6|z7QHm6ZTQ}$OT(7dR0OA1wQQQ4IeBM`v4;ZR^wpHW6*4Rk1MPF6FT+rl`d~6J>T= zDiEqF5DEshDkB*(Ae5%3Bn52eI4TCxjs$zVzwHi!fd0sN-WQH6(7V{ZXRNP(>}{gP zBN}VIvXo1#QoVpvf2*oo%#x~Xk1hX|yUNv!ciX!DV}HExLB4lPjk?BLxILOg#DkYC zij-#|{j$H@D$C?TIPTXl#QlOyWSZC`^9VoVf|IC$I(X}ZtQP~@@M29;K?b132w1-& zXt`xa^)PNpLmjJfsqP-DK}AbTBHwGZHqJYH-rO2Ppxos_zFaR{gwOrShX+@;MonOWZUn!vAyfR!X^7Z!sU`C)!4s<%hP{^ zOPwOF!qso#ay>OOHFLC`4*ALM5}1zu^g14bIkS0Quw(Dg3vE?f!*M-{3T6iRgwa9N z=tZ{z0mJCP7APlwn{M3t`A-WHa%!AyepioET|V{I!ZZ9Gg!)z2d?A33;;E^F?5sK5 zuAoCGS*+qy^aJ#@B+2XQswZWuf-w`n5|URh}l*lo_Rq0S*~p zcEMla(v{UBMM=y%YxK$T-@@fBYLC*omv(87=+c^Fhqw6e{}C?7{tB1XgI zClcDFGT#uA_vrMaPc0Wi+^5+Y7g4a~QGZ#jKAzH9X8I{-bHTqBFx${RP2_mMje4#;>j|0QW>^OS-k2XvBA$V8iu*DomPR?e4VCi1QO z^u+#>ZSw9p`aGA!a(62HPsZ@Nv@ZU>k(O|`T3{i}rf}|u2r^n(E(ita0b9OiIJvJq z^Qs#IqUbF?=cf9l!MC&8n;6DgtN59F2*sE66wpT3rWmlbl|7iZCNUEW%LO!m1-oDC z)E8DcJN=1ACl&!$l2#$E*g#f7u{;1U5W{bZy17?ALL3K84TjVP5?&f`N@I-|RjcXAEF)aPacAxY~p@>rKo!(O^rj=n;PKRj%g zG(UQ&OYeg=5X;OMh*NP4bZZ)s(0o0`;k)=@dqw{4a+k_$6dMV_cwC6K6*2yLBuoa z$Mkd4F99!%KDAUcrV;Pv=j_aDyi!94Mm=$ip!&Au zr&j-7F8b+7iZ{aQ@DFlX$=j@$FHq$1l+&P>&r@ET()cgrvcEU|j}B(Zx%-4VUGw}R z-oa)VKAk4w)^Vb5jeE-aGv5^Zt#d7aB2{zBbvmUUQcL1Rq9tU0O`3g}b^!)DXpvn) z+KzxYO%k18b|w-nh++MH8u1n|;kt~(4^F=!lH4b3Gq?o?^W6kvwx?^gWU3sV8PL%C z=y)A4MJ(gc>a>IKM;T2R*?U{Gt1!r=Taokg4XqTzuuCB{HIwnDZ6)VFD&it|K(yK` z75dfzdjpBwGRYQe(S?+Ia=}>79L1)$Hl}FBi^%Jc#(oBNQiEr;bApfUK?bTj%+Gto z9@fFVWAk2sTkvftojUBLDK=zWZKyjD$aM%|cF>!E3r`@z@qG1sptAQw{k~L4L)56l zbddK)NQJfy5d}Ru7`aKNXS7wcClIUnM(CeRLbx;@)lWwJqMtHzlN=1TH~S3-RM+mp z_~?}B3k$aul{;9&6>E-KbQV_U6HgM#B!@q=TesE*&6@S{7U{&ei44;P0SIHWjWyct z5CY^bwHYG0(W|$$->Rhe^^evE+U+%+^2h~-en_g$6-dxfXOj+PkPi;zO5_J4{SNFN zL9OK&<)$Qx9Cgb#NLqzt5Se0<^8T2mjXQa{?F3Kx3APSE-xVkP{O6L^eCRyqD}X0U z`e_O8@d$Zev2Kr|`2Wy#Ptlo0+q$shRE&ykRZ_8S+o{;7*tTukwq3Dp+qVC&YVEbp zIT!!kXyamD&DKVrWA^^MFBv^ZiTiowaXNGMPre**0dj&riR>Ux#Jec3`K`k;M8ix+ z$m_;SUoL!Gde=nl;$n1(w&bWKtN4z?EqFrmQVcUr*#%eV!d22FDcYeS!+74txRf5| zBH_w4{RHO_w@Gm(&?1__0d=`h+&XHT$YVJ0AT-Wt2*s=!`Sn7QLEb&CCWCz`s1CRj_y(GoWYg|Lru0JSp*~b3b!QdT6g3`60G+M~hjMxy7#$&nyhF&Ki$@STYVuVa z1|uN2Zt0RQ@$jC>+|vSTPkT)?IPooV2*TZ>#)r+F?2Y3ZMy(#ZP3(dXT5Rh&s<6wH zHo7t=+BzS3L(sn2FFBl=Nh!Lle7F^wFFJ+B?#J4aI&VU;kPbSfW&Nc`nJ%ezf$AOG zC9sC9KiFU(hW7sS{sE>cMviDr>8|B*j<5Q?UN2PUd9Vb2LxxaJME-MLScOiFm9LN- zbKXW(Ps{O=uxVXn z-G1p8e(CSHq#`5oyO*5@j1^_sf?~&X+Q%lEqcsUa##E7{|2J|ucE+XJ`A6RI(gQJ7 z?V(??x7H4TT(;WT^pZov-hy)dN|@*I;Cppzl6f5doyK$nKrSgGN|E!iC-m&Eq|5-w zC8iVmgJ1&Lh9UsD%rm<&6kl2dAeYT*RdoN5OSFH;CEq{fQm!vg;XlY_v=jij3=sM+ za>;4c`5)xc^l9`BfL!V>$6b4gdC~n3a=8%u7rC?>2__pT)VUEGW=tzgkt1Pvs!u(; z3BhUUfW~KB+9jjkgBo^yA(t}M=S(tFCyhWmp(9jTSq>q?4bPPqk*?-h$WwuvhvP9V zKh%g{h|wSZ)y$+GWdo*)e4QIjCdVCr{#w0KnN<@Un=)`4Sdsc?7URFjr9slt`RLj> z0J${&i(D%3)BG2?MEPIj5`-EJo-L%WEdvarj3XR7#B`%09ZO=~W$@=#9`-KAEgqPFH*=rhPK@vbos^nb99iGQMvl{1QTjadUMu(kiB? z+-ODxq+DwHy?%#Dq=y)AQI#}4Y@&#%gymQx52v8<92zCgNl7PMGdJw#_~6uP`rrHM zzf8cKgcB`0J;2bJg`48VS=)16wkoyM+$fpn7&ms!$nR;`#g?EeFlMQZ5+z4eHu7c=Ctjv{wnc$ zv}K(S&U~Yxh^5~ogN2UeExqD0p;yN{-#^$wQJHPW69{9ocy_AhZcd0Axd+7Wv#Wg%ab05)telvBOXFQsWvtKIH}F+h}ste9j`wo?e-EW1nnV%y?s{8-(qHqYLs z$t4^z3%TPvU72>aX8FNR${@4e4>bD2k=_z!TjztNI<7g&D^4{%S5kFB9x|FZ6<)y& z{#1}4*BpT*Pp@pZQnTxDcVGa*P+2BVx zV|b5grjy6b>-1I0jwSS3+mfbTT-W4Sodf%+MHEVMDjMI$5l;m_Pm2}bbh(jGZ zM%o0OE~t0#w?JAOGEvmlnHP3qgn(PQh|(6|nY6I`ZeQ|>cIu9l zlWqzBh5Nhy4B*{Q)=XP?sn%Ask0ipm%L#rx4+@1HBSTVgU~QHdaABj$_Fe*XdM_ z@f^UPab&$^)#V~}z~DWwGQAd5)kUe?-u^~YzQMeN8@4d383(Gd!?;jZF4KyQ1<(hC z&dB*4g}3tY_b)xT=RJoOPu1W1i&-;o296EC^xb&6QUIS?4JnhkL?f|AJXupMaNM2S z@oA2Df&Q94EWS2&cD~=^mvPf>M(8yP`)71YNBO2LsBXXc)-zKWbNd7?rj26NIUo9c z#8IjG*KNRi9?u3TV@jmGWy;Dm^rN$Vk1fujk|R!jQk5qicaav3)US z`_X}~bunyuaMN|eQO$dcOLKpu~c*)ZGvJ+TT0yuf>~K{C*AV;LcY-S6P@EbJRW6-%}P z_|>uJFx?OPzD=LV@4lqh5kbGy*_4&Jfoz>70;&IqtuIAiQqnmiZM3%yS3cg`c_|@o zE06oAWN!c%k-=|x$=sjJwXQGFt_5_OUqMtP`v*hLGxUFV zBKccVZlx(a4k22cb5$xiW6vD6P7(z7GL^gkaV}kF|2mh|(OEWMX8idMdOpn{Oe zTW2<7z2*85`9-0PsXjeDXd72^%pEatG+U^_T#QyiksI0Tlc4Icf>kaj+LD@utwhuTGL!p$s>yLki8CGPr(l(Ba%hrd zY0HdXFRdVsO}ZJHzB_NqYE@a*>>X|)b!NzRkzZzJYjvWnU@ryFGaUF z?unx_K{=C!vZqvAk051$S2EvbrzUJFt+RV6$z5M@zt4RyK(hetVK;kId zk5ze4B9d~|8o(F>34TfJm%Er5yzL7^1Jh67lr%J023q~JXBhg(LLBR({M1OSwWKBw zKaTn+-OCR7h+-w=D)uOSP3L3y-FqYjJ-p|5aM&O+GSiUyg1z)^P zx;k22mtL61CoEI(>^q)-{_9*GGC2U8%hmM3R&uMVX@xs0kDUOb|8*`wTnY@m+5hWY zKH9ummj}-UcdkF9*UTQBT1y8N<2Lq3-`(uqN8=A|U2o=T0-Q^Z>d7s%Sb%f6A|L-5 z_RqQ8%a9~Pt!l!+NCh~TUaEV&HNY8bPcD1C6oaoV6Nb7sEYJ*g{CZWh4LP#DqX}PP zzs9@qGwTNHu)R`0E$J4A7n`6GmeYVeIsEPwu`;xKCyb=6-Jwj%;sIFR5vfW zST<&w%Sp*!po)Vt5MhYf3W-^5rp>(=Tv#t4cU#Y?{9x|KSZKO*u=t=PA=s1E6#C^7 zSgM{qf|Ydym`CJbR>~XhCw#wob}RBPe+0E}L9K8!64JqwOIX4P zQqH6jdR1AIfBq!DKjRlF-2WdEMs#H-1=(%aGz8HjY z&_7Kh-xmISUHe?CFeFS*5hWJEiuWe1&LAgAEI<*K0twGoTdz9+rc z0-IgKi;DMN?$%6_bL<)h6xs#KnqzocC#m-h&^aVAiH9j7VT4RL>vv5VUrxq)paUo`g@GMEkX~Ia;|vAn(|ianrTS0 zDHT-}BKOa7eZc1|lj;KI6l@Y6f@KMJADe!Wt|MLGVoZb&QDd4@3frRdx9I={ryUJO z#L)vqQQ~d#QMx)6l&)kz8Z}_C1&PNNAHCnndPRJW?&e7g|73@ovrRgDvec2kmyHpD zSYF>ghqKd{yrC3?GY6&;$=KCQwWgLg>eHC{VK4^9sQY7x%Yu)+Pq3Pn41*lGB8I<> zo{O|ZrZ$ZHnHSa2pVMjVaLWRFbRM8w_W3q)1oQ3qiN~an6{`6+vJ#4CAmyLrx(Y@e zAgMuZKeAIv-e1pnxF48wdCV3ilh&?)%u$J<6I^HNNSVT8(FJfAhP(Rxz-R9FaSo5% z#@AmA2ESN>5s8;GwTC}F?sN^7|A$=80+histHJMI_=TcYbAdHX> zDA%Khx+G)>Er*?Lrqe#v7&i=Xdtfb4`TW*r_A;da$N?6$Sj$|2!s}A>2I=Usb@gW7Ym%3obWOO7fIVG z^&oIXP268tYZtXbF#W6lF!>gbl5hBQP${gT(w=8fu8yAVcEvXVl2`R~E=6^4ollIp zw_ndfdi7V_E&3-7-4Yp+bGd5yt3QleOP(r_Lcm|+a@$x&ws0u|1(uc4Eo3uWp@*qQKRa&UrgC-(-481(5w#*b#TogT`8HYmho zHK9GI&>oB!`!hnvD7_!LIM4A(CiXFWUo8pCnpgds3G>xM%1B7ERBcsO)c~&@}Jl>~&FqriYCt{u*6%>_k{Mmv2+~hocV%J*phil(xSLKeA4_$>e zekYp(n!=!!keuKXxl!F%?N)pYrt8;KA{`=vAock0fYK3HtGRv_n@Hq~Zi{FI7?)lH ztV8VG{I1<+)Ir=T72>602?|Xca7n$(lK7V(*{sbtO--LBtnsYe{U}LXa#1&@M<%^* zy6?2j9o9}FK<{KvSINZ5bv3358$m;Gy8c40Zw zfOlufjeqCeaisZ^3nK=!yz>k1KvSlZWJNH7yi&37ArvZ=fkCqn^Z~~~ z@0wHX zrevVNx%f!2M@*%VJ@SB`CguWXY1V>fhEyqoyU->O^C};N< z#S1H5B$BINN^Hc#0dU49iXtSW4o3u>IXi4*BaH*JBXVN+`5jDCFywyEC5&2x7H*f= zknQEE3yGf-4C9kmnA&;tTU5kWX7EkB@F|O^94p~+x!w|fsHS_G=DDn7m%o@5Svv8+ z<6-WycC7xRIukN%mlq3@(qz$`7lssa>>Ck&u*>ZJstU(0gv^w?{+I3iPc=AxweYgR z7RpMjml-0$rOJg;nEd;?yGT6I)@5*gIvr1qPb*i_rXCyxtkQU5xz7kHZ%8espslP) z=UG?&-%_E=E04nUZbmvo!fD8;+NVmmpm!}HSYjsfldhR%P<@cWI@IQ)$%qxyGaKkr zvu?joFd)Br%7$`C-kVogvpmQ@T1K2-Vq?n;-FtB|u>~n!A1~KtX|8Er?nlWPPw$gy zd7NXsfCL@@#HIX}^k3pq=0JYwFL5aqwcetYV2h!+kYJf-8mXIV-re^;>A_^0Ze_tw z=w~=$pPB9e0VLR9+MKvkgBxzaZ&t^;3FXZYg?2a?Ca%9uY)zbdhp-iWAe&-F#qB2p zoLfw3xg`7wYt9q6qDFt`CVjHP{Twv#oYzl%@*m>z2PO%CxLkJlET4an`D$r%@qB+B zZ1-@l>!60lKY5qobH0Ow>MQm~pb%LSR4U0Y*(S(4xv`%hp&78t68+cCo$%8t=1yDq;SC7o!oCY&)`CV7NOCxNRoynQ$hbljFbxaUQdP3u_(*>S9u z5GC5|>dGFx36b607RX8;+wKU&8U8YI9$7l{{ib)wzA)GcewEXuzx}9Q%9dSwEa_{? zwB@?*!f^Do&bnT7ut4Vnr~O{?^)xIZ@<7C>;-Id4SB30U~Z3( z57iZO9gDcl6N1%^HA1z=9iyeIWHYR6IbZ{*$zXDA*QF9EHNEzp2o3E{Pzrb+<@#)~ zZtn`SU*F@eN+J~76o+KJBgpfnx+f`!L@)}zasoY`Zy#^B0wL}|%;i72MuTk33y8cK z;2LG(8ll}|Al!z(>f8K4ko*!Vp4+pP z;5|{h^Pit1&!hE2xZNQO&;MMO#jUt#G?Er1#M>7ooOZMOj{6?ktvGZGGBd8CqU_G! zb2PudnHYLS@~5GLP>$QdP!WFyYZewv{MP=Sm|b?t(^Q*%?n``t4f7D8m<{X;{R?dH z*ufO#5>xjGbl>|`Z#0+3RVZGZA}1`rK~7PKKPly?-1eF7Hr&$Jyw=q%*?y>X`=45o< z+7_hK#h0eT3TE<~p=Ll2Rj7nu$pve8(ydnk{3WnePU- z;1Ef9hsJP`h(DxW!X3@8^DIxI-1gP%eKqEcc)LO&x%eB++XPrd$o1JJ-8Y??HTVqpO^bRo$q8{&xDO~?-sCb!CO%o%(xLJlgFK1k2(kL>P! zIkDzt5}`1LD~$WVP_32MmI=m7hhJv{qp&C@ftM0@!1Lb$wTIgt>C+&0LSw{*> z7vt((B1(cvQRW|DFxZY9)p!Kx5HU0!w7wp1h;Psf+a&6H3Ksjf^qw9;shL$9zx{5hY;^^N@r`vM*#ZRCy zvEZ{0V^rzYR}XOgOmIe}(yTTP`WXwQIS|4~Ax&JJNjmA5AG+Igl#8smIt=Gtux13V zY7>jZ=o*NQN*MLWzr0a)iu4+$@oe&^eK?dTuso|N%<9+X%?px1n5|H4;RgH2-AAd5 zeo$2*I^P}j@^0}V><6Y`xqpm;<^5Q8yj z0xQkC>Lu-mYDw{izX|t5ai*WUqJ)1W9at}c&zS9Q4R$|$?#M!GwjLx3_BIgdRDE*A zehuJ9QxJ9XRnk-^=$3ijk1b@A16v)Nb`1>;DtxQAi%V01PAKP>;#|ba?s~UVj1_w4Yf1#=c z`nR&f)nO3ojC0|}FwCuZ`n}GH)iis#%GGNYsKs8oaD_YrdaA&u2W?H`KnTl%#xjU0si&-@jxU6pODn>=$}jTsIB%#2WM{g(3{%swM>f z!(84|aNjgh$qpEf{bepatAt=zjo=j}y`D4R*wXoU^;RPNCGL%VZZUe{1(A6V0)RvK zS)#9cUD6lg-3+K+v_9zm{S{|H5 z^(LuG`RsanqP*C8KVN5Z44w9Hw)ryOZm@kV%s*&r;XHV$A6ju#<5X-osGqmEcNI@L z({(Zp#mTr9rWRw-;1p?s6pYLH0J@VcLdUBc9j(@>CE{Q}AeDY$DRi zaVsH9YOF8LA?KAk$oJRjzR-lf@|BH-9bm>WTM#Q~bxNyt`X3tFGZdw{8n6=b{#-B7Fewhd44ZpM19Y8{Zphj3 z&%tp|tVY&%Otx2>N2%O&fJy5;!3xi8+P`5YP;%F3+bDredMCDR-aO2dr!QGg?w|M_ zPzR6hh@>;4GO)9ol@-wyB|?yl+^V%K02KtclkRPjxWrN7pDD7h@Z0{PJ^Pqa*c<0! z@tE{B%fBm0sWHA!$5=X=5toK)m%?tSRFAMWL65X_ku`C?cegk8 zF}pKk!ld>SuR2k4IyG|?NV|f@DEmBY2iBn<(n?}UCfs!B;p*ihg=+=)=sD8bLh0Ju zH1DY3hx9G#%(bhGyhl#aaoF)~!1v#CFV*IaUtX_=`xlMQo^J22=4L8yS43D51}79! zr`3Hp2z&I!tg>m28|OR=cJnT_*=&*LF7WSpr1t||jZBq5T*dfd8b05$ET z9pyYT;eneQWOlq&q(1hc3U|8(Y(}*_gtN)2;6NGQacjO=fan|3>I*!wQzd z)`5Fd`0B#Uv|?E};x&Y{n3;^Vn1QYWdNV1x2JaA9Q%;yLXDUqKWSReavbB`|YB|T6 zfqlY~kw)X9+iy>I3f`FH6OP$swIzNu>wo zgU$-DGKaaD#+z@W4pTEont)Z-SmiuRTbiGvKH*OYoUNnpjhQ8$lmdjmHHty)`WJww|)U6SL_9X0$y6<9b~ zG;c{9E5grvp5DH!7$WZulpD4AVkNVh*rJ|Oq0mkxS9D+eGT`1_!88(;les0YpujQr zeN6AI*4p=Zng}Q7SsAZvrM*b^4F{hbmixvTP3joSkDN!L94`y1o@UA<;D%Vw&_$4B z@aZ7#7m@<*U)wTo`wG@4aM^-V%l6|kjZceY85*~%q+WPT1qgH57L7V`Vc@vA^QmeZmdLVJLU#g1sLk&7^9NXN^aV zvy+64eWz=$6#?t38qa!rCXUrCud+*_f(GL0hBBS_QM%m_OKT;iH9fxxG@{el1#%y$ zQ=XItm#nb?NO|V!;!fzshv@qAEKs|MWLeOhx^0?O;YGxBeRH~V*VQyGT9A4wz_v{L zYg^iy$(8|ZOYA5{z4%{ufJ7f$RK>w6&A+zgC|}xl9Rv|>^Xs__$IfJEW=1ro7u;#a z#B9WYTk&|?dp)U8mgo3LmImkFQdrT&JGxj6eLoXeVsmc#Tq*f?XNn>x@(M%5&CY{e z_mMWMhWZ*?`~}CX4-PUJ!exd$iu=ACEnM6KQzREF`y(#;$|B8j;~!3BXhW+A9`XsW zV=aTbZm+V=mIXIt$B>Zu2RtX*MmpYIq(l0CMATgY}s6uq3-)`o!%fe;93f_ zTzIhhGT)%$HUm;aUO}*!Bt06=GVOt&8|V@B1MuZw3El2*4N&m#Gi`V$K^ou_MW!<= zfiiaIflQcyO~nATWkX*sZU@I$PTTBZqLj31yK-R8k}v{VfmNq!Q4lDX}0G^ zm{Pg7`a!~2Be{mceoSo;mXl~KbW^92Eu+|ENwS=6*?9)Gmp6xDt`9D!Y+SM%3vN<| zU0ex~k19Q#>SLLWPOHjGtNqhkTaCoDn`i}kFYoRTry8(ac_tc69g#yI<6!!~qb0q0 zDOnVK(|Pk?X60;;6u0na8(DD+wVrkV3JI#eMslXx*qir{O;^+Gjr7FxPG(F-W829~ z96$~>6=>v=vUUu$dVAubQ>Px9P92x1mUOa(7V(i^AfNmCxv*p&znQ)rzfmRYmJ2sL z+~~Xxmb{bmm=HgIAO(RUuCivTArGCaGrL#GRm%Yj(C{%w>?k4fqicDHa6r7n^!6xi zp^RbMrDLTuS&Usb$Vrwyo2qE5e~)SFW_xocDCg7katoe=rVaNoHU5$lIGwdiDvR{= zg_pqqjoH?pQzv{KLJouZQvHUr8rjW@3R;mjEf@fHxvH~AzgkbXYKxKI$vkMfG&rmm z;gk)OUstu94gfIKZ|#d!RL_+w6HQ8fjJ6y?hz^0TY=|nL)#ve@(n7XFg^Mme!Vn6N z>DB`^(Url&Y(H!3$$d6$plO1%TcRD|4;k#7u&$l=ajhm+uUXa2mKGeu;&64wD;5oS z6dDM_IF0q2;l>Tcq)vJVw#|Y%IC!4o;^JpNx>;B2?6o~3s zw@fK8@NZ|pV}uYa%JD&&UWxVxECx-iuFILFBYjrx@sOFRXT?{yOhg|9I%PjpyKl&o@NgCv4}79s@=Jyg|P{Y$f|p=M)}ZfAbV4wXM8f^aTf@n zt`t)`(t4p4=A>N?p(w?J+WGQ+dw0MY`)gpP-IDJD3`}=Im5J97Q(9E76!?cb@O_%% z-a==76yH?qT_1%3=$}wq;lrHx(U6bo$}0^XOqS&!@jQ>^B+=5wq=)@EUi}koBw~S7 zzf}FYqZCB_@CQ73q2uPy0)?tuE=#IBr7(8nAvbHi$y=O`(Kk6Vfs;s!+?5rQa$G#n z<)RqP58OO{u$b2qS2gzA9({~aKm&1K1@3ML|5C>}ybP-T`;1CmB2aT$vj+!i_9XiZqq{4Us-SQGBKzT*H6DS!u zOe{`W3BPBN$WQBRu5&;1 z1$PnCS|A632n!w-^EG(yhK4HcUd}mW56tiz^RG3WhJFp7GPif9dXy$7AoVrn-Gj|Csh{fuQ0*1ahbrqRXEW&u#_9|d=IH4Dk7 z=zMC;wTEn9zcv>hS>Ql-y7f!(5d~_>XiYsb`h7xG>4CF57Z>sp9V8TTKiwyza9P=l zTgSE28scNr&NDuqCzI=)y?#eXdyicVd<}mko3mKcp!>asYvBsYFT!z(Bk7bwqOPB+ z*SAR$y@spdkFE@Pyb-uWBv>L`Aby6)B{75Dt8ParEF)HKFEXbsSZ-d?sxbZvH?8u} zz@+TZ{D)w|^>(A~<;bx4bijyb_ZDs=q?=yw5{Uc^QEWFLz2U|t020+0OZ4Q4Lf>-4 z7764()gI#?=(A`YL99IlAefhR#)buFFq}kvXgVvH@mxwyNj`&VjjLKE?vVY4@7&Z@a6=gz$Pl1%q-hr zS&eLayexScwXKrE+4!3pg-JT$YGN(E(TL=qlWgwQ#BlNo&oxPt?6uW`1J5$qijyyA zVsHulycI$5l91=74Sh#o`WyF{-YE{fdV27&;%wCYxpA=Vg3_P0jyL-B%gpNTV?xif zzZD`OXi#TfYaS(Dpi>L0w&Fnh9pmaP!;D*l3%Xtr0qJUEHCk(VW5gkS22SM5Ea3TJ z`Vf+6MF~#1d8SFnKcugkQmNNEf%Y`T`T|eKOdF9yV+g@R)NEpMPirE0d%iw}VR~Ig zKW|-zi1^~VN-^`V!B!(dgPr^iK+^;^9Of=GCRpQF8_KriiiMYcoq*-^jy9=hJ5Nk+ zn=%BsWt`5tq8hqe=`$ZLO=EJdyA&w5K0dcV?RG+Mcf-|&Acd}oD$$pLt+BM1H;OSV zcsrF=@z)IK5W9x%?oH@_?<@DdJou|%q6A%W_kU)y(A_n}Sfs>-Q&;c4n8````|`rI zidB)B18c~kT0aYJ49iK0v*7oU*)X2gx3t$nalj zeY(GQc)B0If4{r>>iNR9cz-`l#>U3`$jIp8e(`X#eKtIgBu_5R4|Vo%V_|Q*ck)_Z z{nQJtv$+K5mzR>5VzFXZas{`|n`%E5TU+94n;-VT&TEh|GI8bpX(6sBAsbqi(B}K%X6>f^{Y-8W+Wqk&WqN`?x=yf=v5{RO};2mj%hGnwBQY*EFo4358O z;z#VQFSo`!=S9o&siTb8w78$(^(l+)NFoJNJGh?WOPzlvZBh=Rga1aYXVW0lWPG@m z3d2?!Hp;U9+*4bpHcTOU<_|d06v<_cs^d#s;m6z;*u^ge{IXb`>R+IGjQu5Cf&USjF?L%#bmvWiwfu{KHpbvg#`)!B+_j*{r<4;oOlLJ%IKgr*bR@w9F%DK?ovRF1dQN}1dQpY_p z$F)Cc?&wvqV%=(Z-JTxf$b^X%ps+4iZ3*IjIUL7ntYmdh!-cva8Qn`T+X_9YF#zQq2IeOde0zKk#)v1evpXHyK4b>pCqU>S+xq1vrg{jYubHYPay zv)WyWx5#U|_y=bjC#^Q6o2SfrL4X<6$hFH~`?B$$eVO23VAUEl@Xx-43Zh6-^rnQ_ zbHX1u;Q}%;b+cP;Drl&t97+bXOGM{`L)es^d20W)FTE2;LgE5v@{reg$uTsQ0tM_E zQG+KYG?hZVC6zf~Mbgl=&VSo&X+XSt0Fnwg+`Q?naIRzVWkK=m)^uo;aL_qpb^779 ztI1ibNTYl_Sl@BjWrWX5hnw4q1a)))_N5WsiQ&K$^jt1T>QGv)Pt|L}UV zk=K!2mAYAAYUGhVB z+BaHt2rsc!1M+w#`(y$a^<2OU6mjZv=$&?s^eyR!4ZcA{-4Yit*%hx#{9OK+aTKcy zzQmPKK)o+(%DU+59YLFHh|iVbt|yvpUKjkp1YGH${}^nblBv(VO%l+TUzk+x$WU4} zI1+Sj8HF@muwP*RRxdx(FV{Ef$v9tDVjg2*r!G~jOW$a)tAqv&P zCkFt1S+rUlqdFyJd3+4>KlG(mx`v^g)>KFDa`IpL(hf+j-T~TDE|>=j35XLVk;ny0 zdyGv8rI117y;NGn6AbEfGpu876MW>D6l?PqXN@(%`M57q`2j6DS_BVr{ z@5|W!t#iu}$zIeTJzh93z<)$3S*_<%#q3Xl36!L4603l*@-{yPl#_B)l?tyN|NJ2F z_yz`$FRwQT{ztx?|5J&w)02CQ!i)%yI?rHD65IPIY)x#N0FJ`T9tN6TFs(jEB3jqYzn zIe}Z{6Rh$+k~77Wwhi!A;b(>I+AhhK z2Jy)dOZHo&H%EiqrcZZ-Qtu35YFMP>d?d;;v@pbc?;j!(m37cr}?)X!+ z`+Y#IXs8B1VnwZ{mg210yNg^XJzw)+qbb%Y`ODkSS_P(R4AXu=m$-D-YZo1 zb4{NWjzv~iO-W@8zIuY6(CC!XvEPs1w7bq>f(aCsNU0%AT0h|jDGA8nHqkIqhON0G z^9gEJe?k>vm_HIpsz;L=Weg1StVrC+lZrL#5CW1!OG*WYy^DhJ5P89tk5}K$$?Hw& zUDVQR1|F>MK%oV!N{f8I6?)Bb6|&U=)XSYdpFGMre5#sn0)l!KVneWU)auVCINP2< zexnxSz7qiTlA`>)6L_l!2m4Zn)1A+OzwCLj{_~^9jY@(#R%;X+Xs}n@~bn`#{&5gk8NmT!*f73bi^WGioeVLZKO9Rpe)T z;ex@?C6GDwY2BV9NdDXsg{E}}9{j0nyG74wfd#G$uWP%7zcUbH5UqY17&?RJHeIyd zPtjeY03h=n%I)A~x3tmJ@Itp5rWRZJrhR~UNh)3O!^}W)#Fom4Prma72x@lsUUk>m zd9}N55*jMX5WQaHtTsXdyP-VCQN}i{M+KHg*YBtyY;&~lkp(3R|K^uM94rQ08>rnC ze5Y!~adT4nPeLrL(@Gwtkr)2}ic}+}UXfUQeYXpTSz9lV3zVRh`9ViGjpI^uI;NE; zj$AX-PT1qkHt8!%p0bnMaXYGN`W%^k{njoedV?+qo9sY*6w*->%H%DnER2xrkr)@* z<|TfuVzw8um_+d2w7s*i=DtR~RH$Z2eBsABfQYF>WjJSjA=*D}DNC_`)ylJz5f$I? z&HutNpm!NTcV)L!;En z@jFt@M)3@s!yCIlgWpdw(8Vg!!;uP#(m_RP$dbG;Q>wV0x!M(m66oAUvHY406?gor z_lB0V!{Z>Na+yRy%x8L;qV4aa{6Wk@5k9`onKu{dj@D7K2@mT2q!s|Aa?esa1sSI z2V%M8Qr>=vpS9a^xY5Ceaokw6@c=DzpTd<%Ku#DE2b(7C=vCqjpk?Of$Q3mY(S_Tm zLaV(b2UN%Um>C9MtQVhA62((@je=kh{f28;?+z38vyAgtH%swrCNpJ24;?8@8vHqX zuH2dug@j=0Jn7l-?5E{Ho->3Hj_0;f>GqQKIZO=CF z^m+aahV;p812*a#>*si&*>=qaiz7Xv7QJECBmm2#{STIz#Nt*J3cxZo%F7bX9OcjQ z)_mFEikEFw09YpNq9`e9UTMZ;EyI&y#vo>in1yZnsLkN3-B%^B&$J}IlVl9OEch+}+Y;oZ$_j!so z{G$`xZ+;awhNknpe6OFQ^w+}T>y=FS;~51+pWbm{NgEN>q57kE2}$D!j}arW<>(Nb zeSAFz@ZL6^TmDiYGrw*a-slMp(jIq0C8Az@zT$ZIp7wkLixnaa90%LEnjA4> z?u6uHCljVkWS_XCP9NRbc`DrzztMPnTHwJeC-_%x?^*ee~Ysc-#3648*bgs zh5fE>N;(-Q@WZ=jr`PVswr-i6wWgNDwt9iQraVd6*14SJ>mHvhut{g8Wd@r zQ4Jz}x}9NgvU9YK;kJ-R&zgrx(wQvU6p#*2bb6 z0z#CL3ynVUnROZ^Vh@Sn5E@iNl!-&Kqj0Sofn6}^56LK(KjhUk1;g+pY-##-B?P?n zb~Tp6YRTnR&GeMQB2D4Z_hkBn0&)`haX~MdVN2z|mafP)Y+?-86<<47a^`)T<$Z+B z5I#1sa9z3))z0J+q*(qxuI@2NlWhwVaCet&v&*(^+qSywsxI5^vTfV8ZQC~I>vQhC z6ElA@cI4mOk!xqhTF)yW{8V2p8612cbC|s_`QVY|*M28Yim;NcWA+Pjf~ z%sL2J7OK~fexwRXh<&q&mQv41WwD)H1hx5Pm&K*02gHo(LDM%bCyLj;hi45Y z1qr-y{RmvYX8OjyaSxm^&1!P}%9NC2AoBS_vQCGfMe%s)qx{v^#PzL*G&j=yAd7c>*BBb9T2HR)l8Gk7Jgz;rk%20A@1>-KETVR~%`w;`! zdw%}9Y4vkSZm#d}L7yy1{CS+ye(;tjnGju>`W^5g#??ndx6(>rZ;7C=CI5ZB3VNKr zn&iFB9pP-;jTIao(o0|sJzIh&$xRU45EuwTl@c`YT8b)y#+5>ZIaY0qPlS;(5JK?+ z+knp)|>TN$;r8@1*S`J9R zg*5zVOr*H+``u2Jn(`om^c3YbW-%U9Zy|)sPurz#HxIpk;MxBg6HfpW5rtFKofXBQ z`bvy&tNFEh|7^vSr!wU!;FKDO@>x@-x`I=24ZQjD!W)u9*4#oKBbpJh7^Ai|vkRo_9R_zQ*et^TUp~%F5BkbClYQ)zD>xA7hxrM99bSx3AMw3K`m>_Oc?R4g-N28i zymM`+L4Y4Z91)r~=^(}j{?3#PrP@vUWh~XK2i6tr6 z+HLb}z^lufsy5L9f!Kr{L%*bMdP$GTBC2`*nlS25|@sMD;+E+Jhr&!xuYMSNYNTbK4}#|8OOP@>RN z?yYGp)XbSvtz5k-DHL(5cwS70FUjc2Vo?wUeYyY@csVu$i&etOj;}(t+Amti1+)uM z>;s0%q|5#Rwdt1fb@@Vjg{GI@$9fIBE}lflhNsHZwFgP|pxO+1ex1uUp zSQJp8*}K|5uo`>E(1*+GYi%?bmTY&;?2w_Y0STVp8oxz0Jwc+FvnI>h{c^2)+Vm`m z5tJ|RHUA98dJmg?SiSH9$e3n(+3jI=+DT-y{*^)v;Ct zr;idhE0M(C*}t&@S_oY<+^$#;lN#735t;uUIra#eCzSo1}XDT-=09Ond}p0hQTfikmb z1-fvuwh9M#D*v&@;5(SS=c4c(n&D=#?SN>hn!4CKG;pU%rK7T$AGq;o>1-!ZEer316!v}b3Lo>?KrhrRK z34ZU2m8#63Ky7*qI#k`8Ik*(WgLFIis=|2B@+z`dTFm67d{5|zXIyt-So`{TcH5+6 z1iK z@T_MwYw)A>mOXg#ss2oRzy!s`7?;iieTZd&8=KiZ0y8O3XMG`8g!n-;Dszl`=58xI zGIEpG>Guh{U(FJ&O;v@_Bd9K-orwu^7#qdGv)~E?f60ZEfV)ek7z^=PS4&+qp=DG7 zMO5h5Wr1(DEj`y<6ys5ApI)qi#F>VN~XWFNtle?^P3S?m^ z&K3>YFLm8Sdls_Q0xe_g6EJx5nfy6ye?aESzC=~X*0#xf(OmDN=x>Q$gCt$q(gzCUb#;JRlYWe{W=Uu8xnh_x;$ zG_5Yc!5&u!U8@Gqa$lGy^1?oW${1DAwhxma4;Y)AyUAcHj5LgPE@2YfP%|k%kR;&3 z8!jHuC)U+UgE-VmRO+-tW$@x((s6{^nts_olCG_Ksb0YLX^G;AR&yU+a=4Q%e7Yb? zYBwzb$uTQI<;YN`@h{MGNQZu?(RQzEM?6ojD%2NHDT$B!-#u(LW1Hkeh* z(ta_9#xzc0y;VgaI^2hAW0wwYT}(XoIREuAmv|Sk!hMm!634>}+nx)${dV^?5rt70Cscv~9eDsAV2{!rF1QzaamG?AG4rIrLZl|o$KmD{w};C@-Lu#T z$DKJ@5RN33Pufk-Z!JSU&7F*V<>;sEQRF$5K$B5$D$);XW&3i{h#atI>s3^#>LMeyXM#DdnxET;vyBw5|88q%`C- zS^+`0MVyEOJX~oV(+jGVF6R+!mQn6I!k@bZ$iQ9%bK*;~lEbba@067yis9utsu=CHMti``_row5?u);d$dRULuL7IKLn|THFv;hQ( zpr=KSyjA6ia9+~r3qsqQ?}J^`6~hCL$%qxP%zE%aGt}~CYj%1s=;1OuD!IR z$%a+hosIcV<*NvlCe;Yq-oy(OnzN2-b%)@xx&uT-_@v!;{A|mDoyLTxn8_;r-sM74 z0wsS7+yQ&y(!D0hMaWH0mlV9Qu@mt%fSmbw_m7-ed?j4T9}JK)OG%Rea%LMf9dZK? z!N@I35r)mz7Jf&7k_O&1<;--yXmTLwzcz|@FO(9BoKaMT5k+0tJS!o$d_MdOX7TGF zELie-Zip^x)CYq>TxN_nHWoGQ1mR4EaT+jo?Vm)5ZoM?QoNa3>@Z9YHm#?bo__RM& z6b`q_RqX5@&|bGkm`c__3MjG%c`~T-mD5wvbPP1RC-**bK`=Km9l7F?iaNOWKWfsZ zD*WfZ*itP#4o9||;4&`Goo+teEZg;^&N+;jxKEUL4i0NMI5ok#tshJQ7pbJ|T-gSYwJS_maIu{KNP=EZzPiV{z3O! zp<`Oq^U*Lu%dp$#{oTo2l=cpaFC)knG6Ms!)lh6+Jie4+U4`PHX<<02tZ##U=YKA- zqzIEB-LXmAx{>UiK;UvYZp{WNidZ&K7cXl-UwoSIiju)wq_Xn1-L`oW7*Et4bwlQY zckfIFARA`e2-Xy@N^qP^H5}C)(yL(qr88GspOCGZaCcVRqzMWe%pPK%qBh^P2rKgAqMM&R!2em+io<@Qq zi;;26H%gtX1MIiGM14%iL>y_R+fkq`BgwCW4~#!Po2Ti&=XSiVY|G$&G88sdSe{W(-}C5K^5J6TS1lpE-TcX)RSxTp687hCk!!$~inh zdBcgKE9lf#oN2e;dgl$CuR$MbCqzV98MN#KPAF4P~8 zT$737EwKju$Id(&Uz6aZIng+$dg43#*Unu3YiDLJ{MXLRiAXV0oA_&IT7x7HRCJ$- zsCG`DfSo&LxT4XN(ToERt5KGiyCH`f5B%wO`&E#Pjw~K8XP|ry)JlL_YRwedsINHqw*qQM7Xb3GY=@gyhH-M?2bkS6^k);NTU(Xl5?SpA5=6~(X zEL|!|8vf&ON}jab6r=Q1cEJIFof#x)rU(TVW(t zq$_`L>h60YB*4x@1K61?06X&nlIhUTmngA3s|{dh4)+(T|FtuDANEjW0Cr}5uy*R7 zSrUMqDKBI06@>ztK84U(lc!xh7zW~Yf0+7+g!}5p4JG*h*qQqO*qIc6?ack=7QTlL z-u0~|=w-_P*qNn&?M#~-Nz16eb|%(eJ2Sz=ovd;m3-Yg>sb5ywe`4AOurovdXJ`5X z?99=g-dJU6;$;_lZ$k%UQtg&z(oluB(JGPM3St#u8Q}lenR)-UGY1)Kyy9R>!g^9w ziKdLX9v}dA=0Gofh$s9$whu=SFod5o+qq6`T`2)mGB7#ZD26Pb%n7f)0MeSB)EK#by;v|r&FG*A(}@~% zB*Tx6SKw$JW;xd9^NLIhX%)e+pS0(rM(n*MTEgAIJbc;CgDVTVby$r0aD?pP3uC5? zkp+Z4bYQ&O;&j`h5>?NB{uxhzjF{1Z4k#a;kEu9Nrx6SvDCWH7e{F z_+S*RZ`cozQiCbq&vUo9rA{OM(wS%fqcivW22NqPF5GlFaNteL$z$TOkwcBP%Zp6Q zgvOQoBntp^rZ}Fw`G4t5-%1%n$x+*%SFUFOI+M(m+@lcKt4S?*feev=Hm85?=LpEA zPX^L}r@`GJIwq%#TAK?ZFv@{w?|HbFhV3{i&vQJ4Z!_BVH82N|hhOI^Qw+nFwvI-p zutA7XiiT5iGiS=2ADmtq9C!nL5;@NlUs*ua`3N3ga6ujETd z>OoM*VEHDm<;k#;9pz?Y#_Ev7IvDp3r(^*i8SyxQwm(^C7~?WB{+G^_2GE&n3NlG8 z#NNo(06J4({)jpu%ONjGV*dRzcTa>g*;8&oK=r%-0<*Hes*5mYHKd`b4_CrF0~N&?gldBr zDf3+es?QpZ)9o5G`5&EWssx}j=NWp-b-0MX<_BP6HKeb-4VLoNq0Xy5GiGWH2Q63- z_eNWl*SCpG=bG-bBY!&%hNiL|iWo|M6vZ6eXXiU6{-Weu9&_l9?m@#iFKE79sN;{) zvB}p&i;)lc@mfJ}?le8(PK;8QynyP&;(Pve`-lM8Yno5rY@W)p7th<)w4EokYg4iC zXf%0kWULlrPfSP!TEi>d8~RstN}U=tbV`GghSEWE@N8V>I5|69SwEety5%B$s7~B} z|H#OFw`UpDEW2NSx_VpZW&NaPk#hHZVsLzfh3o1wxCFCNcYHIU#(rMK_y4gB%_d5a ziNr{^NZs)6Dh{AC*VjC2TnaZ1msboCWKAn4S)Bf%GoLcP*p7t$OJ~yL=JfxiGhf-4 zS*utmiBTA2gbWx4 zkk$|IpK%mtt!_T81P=xV^V{T9Ym49cEfb^Gf4}1TAoeqew8(snJg!Nukrd0xIwpoH z-E732*AGb27wMX^RU6` zD`EalGRV-i78zvCG+uGl26L7vuadVdCe#S5*w|tdmXnNazkr zwV0qeoVV5_z3o62%CF<=9R$M$&@nk-cVQ55{1OcN4%^z3+l(5~rU4((Qv7uPa5iBI z2kdOALHoks_Cam?QVM)@dD#@?;L`M6#x&gSdiq?2NM*-EIp%adf2sF5M%BWi$ar9I zx(sjhyC=%0H&lI471wR7>eaD%IwY#Hxfa~0 zv-_nWzoyxNmN`)G8}Ndxm+ugg6HQs11(E9znsjgVveE)sB9!vGmd6cR_qb+DujIi( zRD_D+=E&v{2*xhHWNS#Rc2-Favk<8R13eNU+rDX65pzmzL?#m+*szou3DBp9uxQ@2 z9TQ}~(&#md9RpguWIPrI-^tdfglZJfY>441t6=T-M<9c!nxtzdVPJUGo+70Y_Xs?O z@zM2aR=qtT19_gjokbSa4W;M^Hfd6P9C}2Thdg)4acv=&UZs|WOdXnN&>!txnA2{} zZS))(7{24j*i0{Jp!tvu;>?t~syJ_sCdFP+N@LT%CV1q^t2yCHzg;i)9&5h1V#eZV zN&6F63E6?zFvYn-@X+xz*Cc>11UlN+c2_M6qgcr`Iyek0Bcv$ z<~49C1}}@&+cucE;pq}@%8)~Kgp{)j>Wa&o3uk-)YVxLMesFRhhJyk}M1k(Aoktdn zfwB3@>(fE4HkIS?w^86{ZII{6A0DdTJIlUpDf`Iu1D2l_NmN_7M~;qvvgVf;JvCrU7m z8w*-?5zovguY7~}IhxK@Qb*x&pibL9YK{t2^-bo8zXiyFDgc;X?o zk*KjrNXS{!{6bMic4{j_+2xO-U)K&2-CDw@`1Gt^Nnpm`xyo>m2=F558;*M=Kz z9bvw8^i9&MksSJxd%R()DyU4|uJJ@vZg7U(xs;Yu^To$EIY*RodWy_L_>`TKV^m$i z*#|!!3mqUCQ67^)_wZa#)hMFm}{-bDqo@%*`DY9jA!WPW(OpQ-b zt?in#o22E(u}HKd#qMHTuv%vT6ixqd2PiYAN9KZ+*KUqus{R*7`|WY`j*XoiyiN6{SpSJ7NZ za3}sp(Y%z~BXdN8ALVBKUAwLM>2cKUx=)Av8+mkKG(OAcuc8@EzU}g()ZHh?oA@-R zw;qAVsXPOjXH2VizX-tdI1( zkFA>bLCb?eywfuS;^|Xl-Bjn%`3M%@2<`D3S!pf$hGu{E0~3^jDy?5L+vZk zGaoHi$=?J1xNZkK|vy5W*f0nvw5WdoMzu*RdnG z9<%v4YXj}dmTh~tyvosIaPA$sDs7V6beCE*tDSNO|Q-kt8bwz|VU6TDYZ*w?m1m>)Hwv%S<0WUc@r_io&uNKvZB zB19(KnLR@$bzPZNYaEtixE4`FNXy>_)DjCWRm$2H;#$LTGy1>1dod$hpjfmiCG@A3 zv~u}6cEWjGO&?kb(A!`R=WWhk+07N-C^;*X=wdpKd)g!tZEfGn!5iu`!SV~oFePlE zw_-i>yIQx!b|-qT6b-QI5Tfg!h!BgRm7yd5I+7S}GJj}LyTdg3In+Xv8<@?v#iq<` z>8qea#vaQcZilz_=>BTQ&^e)`hp_yb6H!c!^j7$BSp^vkBxxHWV%1Z_SB#)yfxXdbcG4BgGuNwD3HkeSrZRW9%yfT6kTaz7d8 zOefBlGV7|fF4g$2q50VyhzBd_R3cMod{|na90V{lWl{@{^+p0*ssA-Jv&Vkdm8ZY0 z9akq$Uq+a?p1d?M1vhrVSd$=sP$yugoMCl(fW#5oQ{6D+9B2OtFzx8hu9o&q-r#qW zwh_`RypbNRDZgksO#Ai`)#Rrd7#V9YBQs;tRJ^K~grN_Vj z?b{sX0a-4@R%B|>bH9{Pyv%NNT*~-ppxC$k*t>Crt#YYsW>##2@q{URHTfWI6hd?g@7)8udEYUCz|K`YByI<&d-o%y+CoCmWF%_CtqlsWQ`SNI z;r7&^2}Ltu`r`@SHPG4RXbH3Nu#e@^qeX;BF^nnpY1l|%`KqwE6<1~^;i`{=vi)f6 z{IS!6v5OZHI!Jdi!q$By~q#LA* zRSSTo3|`0QatO<2?tUr7L{~0TYkJsNl4$~6xxDEcpoEy45<;|% zU%g*A^JOn|`h+1K<^>G9zL9rPid7AaPEa$UM|5AbR5))ks?SKxQ8U1wdQHA#$ z=HjoR=`^G4@{ge@Qs=-PcqhXYC)weyM*YcmUu!3lESHvmSh-kl`|=aOP~f5I_uDv1 z_1c)g@S}H#f=BuH719@jp0Kq)$@7(}u3{}$X(&ALd65Ou2eO-T9;CG~d8O;mXuGKM zs>*#BpNX0*uS~@s)_`cdU=Q?Fv;8$R8;Ajo=4_GrQhyE20_*~jaJ*m)A_ItkJ+nCN zx(}laNfp*y;OP)CRkjZwpDJ?r2FdKBZ&UF}z9qfq0Zp_>LQUG-05KmsbPg$kCI8E8n*#901@J+S!%*lj9Vi|w_CpnmP*B(Rzm zqnirx-o!M%E%c$ynspk?c#CCqq)dn9&VjKATH#Q?d zWj0iWs0Qng2ig?%QkhNpV6l~3E1rz;7AvivF+>r!{p^uOhf5)TW)~TpM%zjG8B^Xd z!o$F=@UEA*IPf#GxgDJK%7_8Pn*++`F)ybMt=c_|wA&1Zjq2vc)i)9!y0l&;)yV;t zVUp2gqM0jI=cqB1;2}+CNEe_ASOE+Yd&1Yzp*f45A*I3kc!~HAN0#q7XZ7#YG6gA# zT~HTd`&o^6%H2fDB-zBpSOPW6O00E}9es!XZ%rGx61JSP@&0Erh**j(?lyZnA$7A{ z!?asm?hjbGd+C|Lyf`p2s_|ee0d?3l1WY@2<~=l=dzvb_`W&%At0QYrunSSmAOoxu z^-*l~6v-=@s&^dJ%==MbDqO}}g z>>2<1g+6S4)=K;8B0+#4oE+Y|uSSv`KsQyjvmGK~f|2FV{^ximp57%vdt&Ojm9AbyWP2*ZkKx$Bl{4bblCFX^w%gosT>C;FkgA zvm2=oCrwDmK%*b{Whrgu_$x;N<$E2^qmgyJuC=TBWhIEFHLUwtkltrMGwjm&nH{Ub zbs0Gb1p+y(2!gVjX%O-M2)hej0W@MePJkX$OBlEz%4W7R$`@s>%a5Lx6ehqg%eMQs0k5OV9 z)nB-&21{`j-4jist=xXmW3#xRB<7nAt`TbgB&Q~^Fzi49UnQuZi!~s3+~=H~FHwp7 zwWrpW7ZF`7=3R(trB<}Cj>C~-%;u=G%pH|wzltQrqT!ryUdZ>M6g2Eq)DPj|0oNdA|2Pu zYbOhQkz{f?0bRqE4$Y0x)djxyG&XMq*KbYOvXs}fh1Bv0-Ledk$P*}LO$x}_dPD{A znJEUB-x(00d$}|*&EaNF=pc(qsIWtx1i6gutt@cte)b**Eqf!nK&eQ=FXpz=TaOlt zcsYsc17 z-XKbGUF$SkEI&_c9+t};l=bZ{d{LLjXG-ur z5Pa*>j}V_%>plIX-_jy6g(i!EN&5E4gBP_CeaWYVT1W$Cz(Y!JIEOAY)7ciS6(E7& zaVS$x*0WgOpl50~7K8ens477UMmC=X!%m2FQn4&ZLY<=9BMZb0Js9PA^$Sm=z(^Pa zQVQ#bP}BVL29Qk*2PV&$3rxSZEl~Hy5bJW0w6s(Y-YW|{)r<%Y=H9AQSlK@A&KJh^ zlF)k2nn=qeJ+FOXHv$}Uyy6)=NDO>T92w&iM$yHK3MbijYHzXAS4SQO@Xgh}g>h`5 zB9YZo#gD{Xe$?f0B8u;j6h-Va#3c!bz|wpph3%W?${3EXEh=3i{b}4*1Za+iGR~rz zTcnwr9Khl-{Tv(b0r%RCLUge_jo;we6;jq_pYoAUeHIWVG6m&Z>Z3}5c6fN#kmKGK zzS^~9=%gAgD|u#lj+rNJ4=q`(09yXtE9-0{#hW?&^kb?4x0T)OY8#g}Vv2EK!L>r; zlQ(y#7p`lM=qu~x6H~}Pq996>9T4L(Zs*bu_CjpV?<$#-Z|e-hW{|B39|nbTXJ@D- z7r@js6$F{Vc%dW6ILli$zkG~J04qmZmQZ~MQ3q>CgL!Pgg3~`<# z@`q~oXo&#n{SR%T6hkXGK+lvZv>)!uR74La8|TRlG*jG>9RF9(Bof|`a8)z}P3xLu{EdX#bars8kYW278Wm6aC&Fu1eP6Sn zNOoT?=xU))IJ3VmbeQWOJyQ~(XS)AK&lJx*HT<1pX-ZjC+J?XFU~Yaj3ThlDud)GO zjK^VL5)BWf4(pdcu=7-tT0{%XRF!&y$H*>T6&|dZuJx7X{ln1F%?jnxp?k8Z^9xaa z@P_@j(A+PgoUpxeCB;Gg%+;ehaYs(ngGRoFex46`+aaitqwi1{&eX;vl`l;l*xPk9 z+G{DZbjRZ(S%V&x^j}8R>~TY~hxHO^n19%zm30|916>OR6&8n>x_310_^Q5o8$23T zk@0v%p4AUZLiRiMeBAmS)>0NMq}OB}hEoLFgSU7*$KBgfMu}m7UfrL0uxp}8u%nF? zaPcnG73^=DT&Xr^+@s*{_#W{tS2y}v?`sEC=sr)CMowkyXiUk`r!*h|8F zyaB$~2rroiRvep}25^6t7sQolP`&0T_gWh7%>iwJ= zwJX0@zX1Iw+8qy)DFZeVplAA9IFud-q~FJXbM}^iF*YP>{727JO=JBA&@%&dEe!K} zQ&DE-dZ_>EnI(5AZBh?y`DECPsA$3<@F!#OlzV8)Vqfp-{l8z0Q%ugbKTC8!XYCzG zzWeyB2I*u%g6uVO&Hx75xtP>Fg`Up`AcyvMo@=E_GT6z46*(pZV%HmGj1&zAm4cGp zN#cm2BN!R5B@l)r#=^b(Bjv8}pYH53c@9IZAbNqi%-y)mo&5~5n^W~yM`ar&ggN6S z#Ov+&VnxRZL2(FeIP5Ihi)^#dH*=&!q>hAa4T9t;EsiNr2IY*uU>fCyn@xPf58gSx zygNoy{CCSAJ%4@LdNfqSKYlu#8T_(+9XcuF-&S0@s@AA!o)=V#)c^QKN#I#tg@KO; zDo4ExFUMk*7v&9jJ_{~5J+tIWr{!uV@0;^SPZ?$6-5N(ZdzuKWRM*YzK)p-$$cK9v z_^2qj$b&stC%a+CZ%mhpI!#4m7U(!hsT@*&U?F0IFrGr%xS6?C4#=;jJF?Z%6aPd zrqD6*#nbll0D?iN9a&9+HVb*}-3gyTVr2q=%lsW@x^!iqKCrtCq3QbvBTq_;xTe&l zHG@{{mE$r-I*T|t5C(5t%Y7v^l8_VX04cUzlH6}cMGjVDGt{)@HZ{+cOT0)tg#Msz zJ_Jgk#bqn>SHWXyo?8zor_msE#7}CF%&Y!7C6|es^1}LM0k0^c{2R}dVHv8jtxBle zy8f>4ukDQsU1Sq`%Hlzv6QNFx4?BXd@Z<<`uXbbzU`JvcrKe-nGG3V<0KV_tXDZwn z-ee)3Ap^Ns#XB7tT`T-)geZ#mc{@6vP8uG)^yiRDQ>XQ_nU&I`hf>aPhwCsyR7U|L z07v%HcCX0)@;ElcK(NcTAOp^TuF%9kPPHI}s$RBR8szAG;}dp;W5KeZ;cIZ~TO(2v zUHYAlfHSs3=2x{jOmFqheL`e@QYXrhq*cpzC`WYe!x(Txt|UvWt$w}Gf-XA%IN8XY zv<;Q|Yu~ny*N<@*Cca+N zW7*R9diB;~4aFW$fFD5QVv7)YmF|2Xcv!~8xIJboy!167T#Ut?_`$*-As390@Pl`9 zqyTDsADHWO!Sm$|rWcL$aXmE^EB0(AJVc|PeQVryS)Lkx%;ANir_X}FixiN>e%sBb zMKKnayA#v1aYEZpyS=S*pK{I7VN`r5r!uJ#C(8Du{W>d0SIdV;^OC=aKqb)#axDgfO(>RgUs z*&&vZf2Jpxu`{x#lcdgo5QHJV_CS2W$r7e5S(UH(l1*lrA$XZOt1?hrqXosj+wH89 zm9LBi3|Sn?jQ!b92{@OsAxSGpvNWtw>Bs$`iHr8OCtk@+#;4_L-_L}|$)XxHBP#s% z)k5(qCV1;x`m}>_62?0Tca>55!&rw2Zt)rYLJpm-3=ivt8NB<4BbpNR5Zdtgt7UT`1Z$R`?!%(>PEL;1v{FGn8hhF@xqwQUU zn4hL5)T`5Vk5OU|J`UD^1ETfXzkKFzTQ9fwTTA1{k1GaTX~Y8|skEyOY+X{MNvq7p zE%%=qQe=^f4l%Zv>AYVhDTM6Y-zJ<#*Lt1d3LvWiVM;s~)cuGaAei_ptv2Wx8#tdP z!J@?vZHH7%%mTjL)XHI35@TkJTWci-E;p#Rty2(@owPdwhO8*k1(l`e zwJ&Ab#nUm3+?qZ#n~0_tES3?K)5g`%h@9VRr%jiv*sdkJ+v_UPnYuq9=85^VJy18% zva78V3r}`B{91vfuOQ^?fvNcB-2*IXFdMs-o6vieL;_p3S0Sxif$DksPfIMSi4+Fx!0 ztsLtT)Y2Rj%GzPVc;vRHE$U1>D&i2BojJEK&mk*Y8L?eDGmh+E7|0%AB+Nm#aAZC> z6VX76Ha~Xe)1XMNx?Ukqk0-{KMA3?R@QOrDZMLBO63Vlqh8xnvGiC>ZPa9-iE5=?% zo6h17-C=}-l1vblABEsn(7jLwueDKXxriILiWKg!v6*mT%iULB@X!_y4Fk@Tu706O z->F(hBxmaAuzGDj!=swqV(goQPK#Sv@XBo~up#Y-2%>uCHlj7?j)_SmH7To{2?T6Y zgo{t9joIuMQaPCR7R4r85GCiRa=~Yjj8Hft*UzuKoIKVgRnf>y`A?u^c<@N>Ki0(% zTo9gIFhLFNhgPt(Nh%jLEb=SQ?>xreyK9*Ll{8&NAvDrv zF_je2^*BLmYK@r$Zt4guoor=7!Pt^zkwI>=xYB1QBKW+rRe-pVOf-G<0FtJ$k!u!d z&(lJjB!)ad(xjQ#yUxP)5ndK3U4Qj-lgXyR5-A+1(rEbMMppf&dIS)}>YAwOBzmD2 zJuQ~@XKk^#%Dp=7M_*uxeTAR7W_?+&rumxbANYNq+=z#;=zATBgdfzRa}wWgVDMN> zn5u5f6NGqwWL|Qgbf9vy3UuRv7+nDvO=ZP?4xfp52)D=3jRBp^-ntimps}W&b99+|<*}4!!3|xAb44e zwl|xhw=62#guULo*|CEKD#%V@5~1C&8<$KSAK8H4i4kEkzsCwdsd@8l_ah)K>Y5Zw+w7`2xgNK_4}r@pSewj>fd4EwT*0qDPZBFhn36xgR!B&g z4wc8=C)nXPaju->?X66Lu&H6^+}_tKOuJ`rGUZ}LU=L1jskB+nAGniL#?VSSB)jD3 zkw!t?0hef}^PEdlW2rKQJ>e*a&tx=xhJX=u_QwM!4=FIFTQ)hBaL;}KqxoYavN>PV zbrY+v1D+i5n{Z1+Fd`*aDxuZ!~c%=b*oRw{Gz^@pO0UhBo`McO z>z3%Tw>Hy@@rxm-{4t+@5e9HdjA5`SEH z&25*5fTApnfG|V3*W9$?VJek$G31_Ks)YLaVaoFrl9WC(j2P(MX6o3lE!Y{V{D_%x zAyBT`zN+)j6b?voq}wi~O$ah+y?nq~;t^}n^>>tIOs{gE71VRo!rNG*@zHiQ)6#-- z<7vjdSBbW0`k}_;A)Z8X{M6;VYv5>uegF1U1>Zq`xjq$Cs%@`JoZO{oA}^FqparJ&3a#19 zBHFy}DR#u1Q9XK0{%{dkK=cpS-K)W9Rvx^*4~AF$O7yAb3`yc8YA-wBjmqdvn1kc! zZO9PtKYye^w!3yu9-Rk1uKq~cvT;0r-PwELnDc1Yi|$n2X!~ALXAQ-MdqSi-(oq2r zGL!so*Cvm<9QgXExTfIUR)8?!QD38;pe##CVceh1MP0N9&#iB(c~$=ee_WElxj8WZ zp4L>m!R+Adc5V0g+(r3pW8?mfSgvq0%P0Cw`zKG}#?2B2mBj90trW_%#)zii5&DL< znymwzJ*A#`=%mDBSpsg%qz@El0^3E5Wi85TM|o{wvk#+4m+B{KB8r2)E{|p-_Txd~ zBAR;xNnh0|Mj7U1s}AYng32Pa4fkkqIx@KPZlCF8%(dcdVlj`q8J;X-Npo|Pura(;ns zp)fclDGm|n0}u^ufj)`TN-N^Kar$q>cQTAHHmN#2c!Z9)!nv4BajE`QY>=T{3HuAN z_)RyQIwj&pcWs4)Y}a?f{Be!>(U*M%Yo^0}O^eXIskbTzzfHss=Xmf*RLd}ckZBm3 z4Q$gZP@W#Bx;E7>7d0A48tSvWQ`Nv%6WKbDEd1i?M%~R))vqRkE}tsEkQhT95Bd|L zY8z2-kEuO=a?H89Q2}f|%aGuDM_JN4!#ViD|Q`>Vek2fAacM zPogZ@9n^k-yFH(G^tF`EFH8qVBM5WAYz7o~-fRn)t?f;LyQOb>tMS`#+jvy_pdRmy zX+=HH{A3ty)wV7GWx0%*EbCcZ*VOs3<2}~4y4lE&|E?NytDjm}A+J+-VOZd#*?=Zp zy6EYQl&dk3PT|aSuyxg~=La`*#D}wXQna|;2j_wf#*GV!fiqMdDLrv;*!p|_t0MJ5 zb1X3X(jW;;FW;$8MghCxz#q~2rCettG31g!WylwnevA8tjDM76C=mQhxZ3#P`v-G# z9x{uNWV3Rlo734-Tex!cB0*{$TmV7f+5^Pio17NjyXFiWV3!ZKAwq-1!oUAUs`}s* z8UwMjcNs_As)7Aso8ORrac9^5T(dz(0j=<)0ZW0aJ0|@a!py1@XSbI6F)dm@>e<%u z`l9+>pAT1R;@3qx_qTQqiXr}IzV}#2LAzykI zpGY)#Zq0ttj|y<<2(y$O*U5c<`HJ&x&3FfL%J`LA$9n#DF=gXY1%x;Ct!0-eh9`}G z9FBT3P6c6=Al}if5t|3mbA;VdgI)h4HBLe{zfYp2`@S{N@%sslPHXe_cv~Wqka$<0 zM(cilJ1WW^r$hc1Jm>|ov{W*xhYXA|G z{vQ#OS^#WJDESvliGY7%n3*TpCrNDZ;R9Bj6FfOynu%6eT+n(E&wQf3Tz8Nq5HexN zBGO~`3Ju6yI1(rn7KySuv7uF?@{<71IfHzoHwZ~P{2|Oj(vA5*lNK;8z5#+Sw0f}d z4AT1}t&S~f!MRQRxjOXrtP9EpYG&Ybe5cS_*Y0=e3u{c>E4UHX!c>ot6^^#(Ma~)6 zdbL#^_mmArITRrQ3|8;2U5H>?@oREKe-{!CQi{GS^A2I6J!Q@ju}a`^Pj0W2lGO6gzqE%)!qYD%t0S0kU$9ZXud-!zyj)9*S&1N77p?crA>gY+{1TW?} z;3rg{P;1gsCu~s$o4Y1~D_elUq?gb4<;0l+LIT=TdZYT1ReF-$x|7HI`p{3r`Xj}X za2KE(n#7kJUV7Mra^xhrA#l>t5d_ig)#reO%vV~nx`>)bPnM^Y725aLrzHOmW%m@F z3Ad#UyOLCFyJ8y^+qO}0Qn78@w(W{-+k9f%#-De;yLaR39{u;(8tZhegE_~T^SY66 z_6*nO`6b>x5wQ)4ZYwr|LyoGBfn#CjBOq6#nBvkTTDn|FTR?!uKbZq`}3Vg{tMgs2ekntymXOFM$1d2NfrZ>f0yhMvJ?f zTdTX9vD?RWQ`hciiFh&M6}4dMQ)xuqTvol%trC_r#WeS z^2T~srh93$3Va<~(ze6>EN4hz%49q_Xw+qM|Juq{!I`)!GUYBIul zdm$rLSL!=1%XV;zB>5+f)K|uojt}z#gDPgid)?2g_YqX-Fp&Zz=JkeMK4RyiY1D>4 z+}?%QNY{j;J4^Z;iQ-5DR8#O5AeZMC#?blzx%+ZU>*iAEN{oa)we^Djlqz8XI{)^&_PzoJ!!NO5nSe?85*99S7rdN_aZZ=k~^d% zQi|e1Lu0i8@2ARfN*F?g1=#juKdEJ){9l8m=!I%CUL@5qnu5t?4uQx8=i>VsNeVrs z**mExnq6^d=zSEmFUKhB#_OKt6RVq&mPG?BH)Uo zUn*r7-zMRIMN(8fxo!)Q3)#+366mwwCB$}2HWhm!xHk9Dj4K!H`29owUVHnL5k+#mYFfz;GgfCXR0h@y}SG~1^R{02?Q7)Xj| z-iane9#EFY+=By!hU5(nK4YAOD$RI%;c_PD(tR>?Kk(k_OOZz}GkzOsn7A$Sg+brnJV_=FMksU4iG>5Vp z&`1H_!0v~xEkWaRN=O&8LE(##P;e<^}d~Hg8AM_!q-#rooi`5N(@2R&E zBA1rCtx1GZgztMjg7dE;#0e=rf{1yb_LX>v@eeSKNQ-4Al7g_Ghxddt#eb9=az`}j zBo$?HBmI30eYYWm2$yCX1jFEae8lG+)hQgVOerm}H+6RyE0rW)1~L>ge!Hxbhuj*k z8DNFykNWz^g@mq9(DWMww&g>cFV~2901-?B6hN*eE+sDg1FS3_)Y&Hbx| z6ICclIWu2v)JRU+5+@e!r8h@*M8`$@c~HnTm)p~dtT$uQF~b?S0Snq$X^21hpcwJ6q z!|I3&7gak%(_5p;#M~s>yUE#E9^S;XItbLg6peDCOH;E;;2&D%UJuusgX7OuuD3a4 zaAc0;jJWTg4a!7PpZMyLK@7hHgxju*5mue@wy@*rB)bhnwk!YAG9|yX%+h~qnRfq4 z%VhnRmO1sMW#;{_S|;#cTBgarYnh^~tlew_$qm>)qUfAP>g3~Ju&tlQDk)Hz@7~R= zPtOsO5}k9Fb1_>-5tPW^0JNi)eII|6kBTk7f~2JY8Y2iX@teoj~yN> zs&M=TRg!8jllJep5sG|LSnV{7Gwjf-N@&6ZOXjro*<=f?MfshNp<9FR4h(Z6bD(F;G_JP<_*SXYn+L6mqeaFwvtS5GbN z8v+tmEaLqd%?$|ZRf~WX>C4Wtp6T@9bL6LV zU5Wnwuz97wc=x-gn zAL-k4nFuu_j;-~Y+iVOD86+6Y=!=vTgu0uu`I<+c_Jbb;cRw*}z-al~>++bfWor#{ z!YFU@*l4GQj5Tv9F&D9_d*d|EquU?ncEZy0v8UAvH;Mk@GOM?cp@f1QMZUPqCfX4&vFa6w^gSRy*Gn$*8WbDWHGx(sWJM&4Kj6|cN@PVKD9r#3iG*`BcapZu zBrB7XC%9fvjPD2(0doRL_Acf6JR1hmY#yGPf`4(DlfW2M7O;j$%~8UBl?fi}>i>bu zociK2P5$OG!KXYuuKwaOadyrOq)1Ewpa798*2@WTWOz&6AP{v*!-NnKQV+W8M~q;E zA3zg4SdlXcw6dHkwce*wS}9;~ns$olATy|f2gh8A&$njfVx-CRtd*5I=*hF@&XP2? z3x18QXihWdd>Mg?7D`m&w=3wU2FXw}XEKLs)2|e8*Dy*2Kj)>5*bF)vKcj&8jtZMv zNd_*xPAz#i`WLwy&G|bQU|ogb=fWOyN}A$0RA)3Fi_o%UDjN>LpwdiNdG!ht?-%Vt z8yaQEy&VttA~)Fi&CUl$l73|^FqmY{Ym#i3%7@?%=(53dpfsop4RDR|KqnSF928q* z7IeH}h&tK@k?P_|iC)6D)sR9+%@DD75b1mPe4r9q*f~fD+?iO4mmC!p*DMWrW>H=_ z{@jOTnLi9GYi*G^qG}4>6t~hO+4P)!A`Sb!7HS;99?mlu7*|LWDv$<{q##R@@?SvV zv7zv@V;&as=_=ZP+9gj~LcC6}8x21FE~PU$dOi8_ONQaqaG%jE8v;^Z<-2OUC#Hro zVcsmeN(SXZim!RYaEY&m|9;dV8=0Fbb8kd(&WA9=g#@j@xLDCXc~l()f7 zL{RgOt0CPiFS%*Z(EA$KXH$s{Hyfz}h=^a0uzLkvQ}}~cMEQHq@?Y6bY~T5b<;4h? z_@CPB?KJi;5#^%9A0>@sRye1M7^`8T4p*dbee7)WZJ;DQa+gE##x2;Q?a>?Pj_rhb z4txSKpnr_e#|EnGP*c?3xM#3aHvz*HLER57B!15l#u^}TD1~8vvjN!>tZ$T)h~-7~ zrQ#hn!G8|#@w@}dPm+2Jfr_#aFA$365S7Urlqw&-2zA$6< z1D5e|x`gK2MSP)n8xDgyZhC|#DPR1wKW>u4^F3L({8}_2y}(AOo$YRf45vZT-cFQo z+LRrJZ~JFjW$9_PBXtj&M-rPQPsR&A8n)Bob{=rC^a><8WSy=&`JM82z9uMVemVw< z*FF!_+&8AidVp!&a?rxqU2blq{`!VPU6XceanPrZmr$AD(4pJwO54P=!SwT1D{~mS z!ymaS`iYLXM0XhRAyLNTZ(f2s#q_Drs{^^KINa=n+O$AO%NZ5r-KaS`7kBot*a$E@ zxS54s?dU)c&H6oK>f@oqZE2#toJoEGF%xD$Yyl;ROjfnaDAQE?d8FIS&~s_OagyQr zAO~F9q8R3?98q^6ygM8tGI283_kU<1>x|y*FGrG2ISH`G)e>iBC2)IwlfZ7#sckge z$dU?CHGU@ve3d{!TZ+jO zRahUcX^xxLNohuF)IXz0aMHj?)F(>o8)&YhMW?qV={&F1rn(Hb$)w-!ub%gj^kwBVDnqRw~?1%73XCZrRq+J{-OTNkEHVqp>hT4FPv3Vxjdi@`TPIl#Qw ze6Hi!SP^1(P!pm}(Ftf+CuJAtR*T{cUiHvYUaZ24E}X#~Mt@{2uJOUC+J>(*q&??^ z5T01>gZOnOQ@u={1qa!}q9{D57n%K?vgr(;15`f=+<=)klT<>i`aJ; z5ekTo$$5qnA~morn|38cB5s_6$*^TfI6)HrIAoMq_!4USP=Db$Xupk20}Ma>KCTX@ zcA1BRAZ$$8I65Xv(8wZcEN?{2OBB>rgORS2M*7udm0|_cDFC03{0Y+1z=!gg?UaTf z0uhE-s~Q8Pm#LP%6}=2&K}eql1asmHg;c7+KBQwjkUh;I%1Tj213DHALA^dZ@KFGE zk=>N3!WB2%he}XY9JUra-=iUw3_1M#eV)@9#TRs{64>PJTQG{-472F>O)*tB_RR1W z-=AW!D}Yg5-h)nJA*4wy!}Fjc#+Lcq{iN(~_=`}>8fE>^2iJdo8!uu@uXCQzR5J+9 zRw1(c{qkztDZv~bdkwfJpb*Bwz~z+j<;8W(y^|!|L;f7Rdm>JgFGuIe<(TM&`dnTq zKZ{av5y%Eyf+=W*kE$`V=N4W@q6;mG2&QNEw#CrK@g6eLbtX#(nrqr`DkYkt8!o&l z7j(@@8^C)(inhH8n?qre8PT zYC@1r-bOY`P~diM>0=9#3z*bu8F?Js3KDP~T4zyuNh|beYcvX$3 zNptyHd??7WplXu44VCTQdTBOq(NUb#IC*y}eQYewz}7(0E*{03qZO)N8u^kaGpQ4f zNFxOvz|zP~G_$eF`fb2!@oVgcm+O^_f<+~K^$R^j*0dtnFn{l19_S5NR1m;~9cC!y z6~3(WjL1}&8D$ifHk8V1mX-WNAugjC4U7@@Yj`UIaO+q1a~wSWEx}dJ0s442AEE09 z9F(y8cAi`wHd)}A@_NpqUg2W#R>{%x>~;ypW@Lf0!<@onu3TevVwu+P_Q=9!!n^z+ zwMgJ~%u-aL-x%0*bwo*xl3D1!B?!<=sW1#??a3WaQGoJMo)ytlF z(<|a>OHri%4dq}V%KQQH$RY~kLJN+uWRjFt;PU^7WqPlahGJzT-|-}0u@T=hcrA~c z=M>ENUH++X$7;Ust)+7lQ3_PeY>#1#<^0VdAbT$Nx{Q%WWQc>=2wR0neNet^aCVObGT!FbFk)$ zqktZ~et!gMV~}d8_dY~Q1D`zJxbzysbh~iBfP3~PO4Z_2rnWkVov0qn9|HvQpxljG z>M}ibJy(v(tGj{wntdRI(N{>6ad{(keYDq&1^ zLxN~xtdbv+uMowXK!cpHI!Rowcob@=_~#>?^VKC}qSisUGYal-`3MaYcQ$qf_@}p^ z9?O^lQj6FVUL*3oIwFdQz#3I6c%I;9(Weq%!(O?_uheX)X-rsSF}W}UHq41a6;t#D z5TL<)%q+U{Fah;4jO>7_{lwH0PFz4^ZCM#i%{(1JaSqOw-2xv)uGyETV5A=JwB9pL zi7DOK$f6wn(9Ma?ko|p{cyf=ZroKb5Kfbb4(as(+xouQMle5>iqmf~w{5tBlm-KB( z-e>p8_yTD2bD_ZVcqJ}^XuntHRlTVYnU*$_o7NPa9t!20(wwEIHFG=_LqW$(b-N$I>)XC^Kx@vCkdDm>!;n$E(1(J~kQ)-p3<{?;;I|I#w8{?anb{!dzFD)hg!%;@C*la~3* zyBX;(Ez_jwpIRo?-&&@m-DTmImdPCzb#!-x<_u+hKwLjw6xYRqj{sk zH~X6P4l$0~{9gQiEs(?O*m7RUBwH}A8icPZMvDjomvfnoWyNOwbl$O8a5vzbMqKCAV%LJ9AsIMp1mS8vRJo{!UJv#(L zq^c>=L8l((9<9mHTUOu;cFd31SUdVxMe1NWQ#5=t|65n z+-^ovZpbLRnyK0<6We}m>>QR|!7lTvQNl8&*BCQl;mGd%NH_9Ovq9Hh1Xy;Uvfk+i zt;?qq&^lWS5netH7=V+ly(rVkG~SngQc>?8?4^%pc+8p0z-9YozqNoRuK6epC_b0O z3nx(BRf}R^qF?X0@salhxfK7JDJZ0%gLm^?o;Y0WIrhex_{lS5c(oQh>GaU*;?2#n z!9ePS%b1q+i!$5JUOh9j5=58PysD6zSq7}o?EzBx3Q%dFV-tFb_LQ26{B*vC^>Ve!M*5rTmzG&~tt2Z{icv_Ed zfOz#2QUh?%T%T~}tDN+2Dz$ruqlKxmtZqVOT9*{r++$)NNFTl*gkE23pk-Iw%o=+h zIks((M^FqDDocd?6nv;9L|$|3uDB4^rIR*;MV+7*haU<( z5ugi8o$+zT?jC}WBR@+*Eg-ZW`5q&8tHpTEditC0DdBFX9}Q zgOrbwwXaIIo84~MGjF&BnViy$q%7twC~j~*Ov)LwP@0>H&XR!9sj)-W(hkDJ&cn(9 z_;^5zV+u3b0B)L^^{*|fzgJ!M@`XZ0ZmqOUp@rQ?4K7{70|clf)`NGsvfCIXR&q0{wM&lyJd_>q zpJrtQoiinG>DPlT_okWPHx{+uDaIuqUi1izfFv)h@3N&NJ*WY{ui1S5LPH~y(P4|gsJPNq2Ro^?a~f$3XGZ2!S$*JmYx_ES#~&Xu z1h3F*${ZUJnUH^YNnpz1viqh8M+~T7R2l)2Po4A)DY)(Y9Ts&nGnFu^88Kh)sde>I z(lvw;c9(jKYMPIZ*{BvvuW`)gG@{FsjPF>kj03K($5hCyX>DscCN!Od$vcrlc&8r! zXdM1vzc&Q~hyXslkdxN50*PbPhC=6uxEuLTL zs@dgcx52tW5b*&M&kMjv3t+pZjo)$Eyju7g_)>NgSUtcsgRAL5?}`C+ta^}iM{1}psmsig-}+JRi@n-=OC!3o9%>}*6;=Z< z$T9W{4wBXMx}R~ju{l>k%`4P$M6Ih#dAD=vmh0#P9C@wQdKp5Y@279wQH;IT(iO|| zl#|9pqtc<3HedVRJturRfWZ$EF76km+$s>Bp3z$S4?-ZFKim#@+i+FkP~)gCD1Akn-?FlZ+Ri41yC;!1RKJ-K zZ)oT%?xkya{FQgIx6PssFre^^MqJbc(oR9(YJLgO$B0UU4;Vszd=m>AZdWdi|JHc zB6VMF#E*Q(Ecd`NXdOHnv{_z%)gy(b^Pz6bcp@-Uv>K}2shg>Hu`4*$_}sb0=2XS- z;a_k;l>7y5OP_>qfK*(;ailjxG5%eB*6UzMFhmekf#8+GeE(DBRghCukM-2}`VGP4}JO23B(f*|eG_(A*R|MDMUWAf3y zYYP_7ls|sV`OQ6Dpble)CjXM;(X7_tTdX}*-UPA}@e@=5DS`ZM)zk9wZ;D>q=s#?2poD;p6Oik=rV{Jicvs_{2ADI~rpO(}NG;92 zOUl`%F{xnm5?ph6azd?Rkgzb$3j^0YanzD-Gm3@U*3aqYb^%S*xp zB-yo&<38uxNDf3J@l$u@WM~_$CU}$U-Hl?l z)#!sQA5mcLXdCKXP_gVKlxgzTY}PUr1H`9u75kH7@yH!FkUG+OM~RxlX6O!HYn~0xRsU{gvi?tIruyGz zrnB|mW~T7}Ze|*MnVDq6QnJn~A@GXB$g4X!j=1x(mY1(Pg1fzaInHv+RfVqnXHd|q zKF(PmIQ+GPKV@Gf~rs&^h=GVN*FTBEJwQd0pD%NheTF(rX{d-}>FV~fxy$x_( zo)LYE1?a~qn@oJ!fITu!@AC##vxd9);UjFiVttp-E2jtmu{jVFNy9f8J8)?W%0N@h#@WKit zV-jt5D|e+*tfKe141b|TygKljp?YyqW-Kf+SCuyb6YV#wj_VFl^~TZ7mBXi< z9YbqIM8{?Q|9>+x_kS}piT-6~!hD&Tfq$Esr(duQU0Q%%ZE0Db8m-bb^!0+yHzqQ> zz~s?#Ty`yKS2A}zbi)vT>SMxDC(ojwMTE@pk$$O&t&r^ZtVP2xMz>iH9DF9dRG6n* zRNP2`p&4=nMT)+){t>NdT6rtOZ-w4uRNCxtVnk78b4dHhdx#LxrCsf;88(92L14cbGGM9Qwu9m!dB)>76kF(2Dyi?rtqySP)kq zW_+jH7lTK?jlMJH+fVOVW5rO;lP*+vXgi+GrRKh{E6@lQ|9s`E?Y-bC0q!<{&bQv* zH5GEQ`3W0Vk2rwZJ|nh6^3?sbHK;`?kLs%4rYk#JVnp2ka_7#aP zitNzR8L@aFg{y}*)4Py%Ea;Kx!dXatNBHLe#*;+26xH#eE-TCRG4_W(oXNQOF@2Jk z>Cm<3YDi+K(J61zm{aX^?pMdT1&_KF40R<4`jiX&CI`fUc>8s%mIoT-<|;UCqA{@T zBa1Pe(v==kp)tz5D`t(~G)*R3P>^+me)x{7Yfi)ILlPqq2T|yjDmM`pKqoTONe&h` zRG|2C+ELYhfMI8;;1mSYKj31ygE5m%0&Cv)t8S3!3K_?-TEc-dz^h1T3<~WjuU|x} zd=V2!u&fVh&&YWSfFl(60!{&nWM0qYcNm`um~ua>7wa zcH8HIEkWXyi>a%|BD{P*#WGG}mHb*pILy8R(Ck>Y@j*kYQmMFA5nX2d=akB*@K?}y z$7=YUPbfZn1VfJ+)1z$;OR&qEno5CLLa4o`3q8$?MbRpA=zavy8cMM zOD@N@jHq$B{kxV_Xfmt94(M;Wp!a#7u(YzObt-~QkzqXBU@XzxbRW5kmXUbS&6`6` z@Ij*B++lfgbSgzJ;0+~AD()hmO~{f9prDV$l3=Jgk*E0uI7o&GoRa!_%L#zip-U9D zC_z#%@|z>2!J1kW`V20o=MXOM1ni_G)vIjhk~%}6rdCHxZedJGQpAL+E~r>M(g z9Z}QSNIk_titR}J>#!Q4`|xIKjX;?_l*p$!mWKgW-@IigQAbNfc%$&B4Y|xkbT{gd zRn%}gp3G4Nq9Ru}lBsN40s@I$;H4KmE=^6_3v;g5T-ML&^xFZiqluz!_>Sk`jW zE-1RkvpvF1q2f2lKBLQ!@04$v?S0}*6*KxoOFeAGlb$cr9#rbD;U<4d-#5S2ENOy( zR@}8jXen-)iqc%~dbV=C_7%@Kw~Lo9=6q&e)Zad;&R1A?U@sJP5h5USJnI4iOAC69 zu+v2g?+wB~6?S`S2sry5U3Po)BJOR|N4mGq>4%3Yf;!gc{CF~z3*SUn^*=^78hD1J zL9Q>yuXtVT`uKtae*IYb27)ILR}{!2K+Dxh>72)K{|v{wTI9{$rG2WW`JnzNX6Flr zG5Lr3yh^35Jh9&WbC2510SV;l^l>VV)9*bJ!Y!<_GM#tF%x9D&d;DCp1bt;AydTc|3HyN2=&6 zta}>FnAa$Emj2MzMTrAP-GhkL06GMmD-uxIBT4cqCZdP7VuEp#>&b`Dj>@DN=FAGw zT=H@dJ6)i53^Gi`%ZcyWc@*qU_{G}DIC>kO}W0%#Nb{6crO^zWVzPK9}Ndm zJEU(~Z%kM@3^v_fJ;lV?0DP&9<@)dtm+gAuwj)xN(by47zBl@)0dl*&6}fTp-s-?u zkb6epmmXiZfoB&fhdB8nfeSzToo{z;)h3jjtIt4a00^aN5~~>h@EDMW)<2Iz?XJ7n z(4Lu;&7O@+pERtV(4L&mVC5W<71c|>?auym)d}5>5kBD&Ypz(VY|6(?B^^utQMrMY z@Af;UoKow>q+lBnU3w(gd2r?+Sw}p_RhtMO;_6^g2qWb8bLjd8$30bvS(t}}qZrUx zt8#NDHdogIfqcwt0~4P&Oz^U#^M>)6NoJHDrez04+RsE&^~_V~Qh*-`_1rS>Og!JO zvZDyf%M7d}!v^2RvZL)-8M-YtN&gl2K;SQB;36TPnMXEt z_v6L-J_o^^CRlPl9KcHEmdy2jnsbj!G;dgWhSOB$nji|-lV;x0M z9Bf9YZm}4mzE=5nb4E4Pux_Kc&_1+~KLjZIIw4fLR`XoW<|?`e{^)l$GS%M-B5Kg` z>30ldfQ=UUQS4Y~+_`^^AZ9$&Tc)dBRZQ@;b3j37e!7v46Q1KV`}UnU`E^eFNepO{ z>{8dtI9c_&cvAP!(K7~hLa;}O8(We;ydK5wfY)hJ!xi=K2Nt@L#bZ9rsZ0H_hREdh zr=`pKmj6?t#$sTXgoTy9WLD$Hq9f}#n{(1n>6_n9nQNqB4#sYlZkWb|jqmA5W06Nx z+2d89cpWLzH~8`_JCDiAGG!M5#Fm_NAUcz&E5hi@Wm@81zW9shP| zEz;^FCEiUz&4#>IfL>n4%&$e7nF&prliBdHDRFY7A@3}WbDYm`>=|b%O&c;5$DB$% zy}}H;Za~>RfnLI%D32*(!LhQOOy{Lf=QEN303()l&*%HVWmUjsrB*%ZB>|6)%Si&O zB8vnL!lEVfiB zgD+ce1o$~Cb3G`1n5gQz1NEL#{wN9JL>(a5L&W$DKi@h9e4{PICq!F=BW%{{bYZ?c zO{mJ9dR>lhnel4bR&HrSqi<$+D909gLSACivd zI>Pm^jJ~~J?GtX}M+YZ2n=NF)q`ieP8y7+MQHae_TR2( zs80CCk2i?KaA;ERQW1IYg#SCex>qQya60x2HWucI~Pf;v-$C!&jx9RJyIPhL^#s3IcSK|Jcd zCx1rAHUH4H-+T8Ed(J{to`SSaZiUeVacd(7;9ni@|TY(`cEHo!$YyftGzNS z3yLvc#{2n=3H}%y-=P{50q7nu*hhPtR)HoxVF5+gw?`hari>ZPupr$+8a4wFRrgg7 z*`)#4x|_O1pNh`b0i)B&uAuYy1m|Ewnk~Gt9lc7`yiA*!kW-;FAkIwVu=X1pg|;yx zTSE6Q(E}nsiBOTsnf@b3O4Qmm8Fe8>9GIT*$81dO7pfj<^S2B(D8*X`LdDT6pNYog%`K(OduPq<{ypW~0o_*jP2j_afB`x3@cZA3id)pF3inouNxb>`iO zAOJr(t&)^z>|H-X>LyPXrK1c}XRKekv8gJ#==K2Z_*3L!&I~vZ0@-1K-?*%rMsUeG zVTb`z1ev{3y6`{Kj1hUeP*S(DJ=pcrW{haPUhFyIi9Q@faxwDgUqjHswy9RByppk~ zp-P0`U%9#_h2utcMp)+ArCC%6Fzw34Z?;OL`K;5VPGW66g~M7CuZjk7SiDnBZamf2 z5t4VQ9P^&ZI0Uk!m|nz9qOB9Mcw&h#I~C!RU6G=T2ybf|S(AR!1iHjr2JoeiNIP7S zxmHB)2mZ;d%qY9?^O-6w?V!R|6BAK)6wL8D8ZPAN{cgw(5r-BGAT!J2L7r|mEAk%S zWA32+A!DoXZv6onF>~CY+-%~LDeL-4k{4khbrVulCnkV8q+VJS(Z|&=bvSoqOgL)k zYZmJHlD`#Y5;p~c#(1VNDy4O6?T*=PqTO1{RH!$d8qXW~EMV|4qH9kaojq=v$nula z9;2+&&;#~bD!8B`+BBrE;lTITXJGlhSpx-+SHxA_s3PKs`w-B*&tW4|Icr*D_CX9& zunT;b=S#|?6H}rj7TDe6l{T9(o-|wPZ~+(3YF)wJp7pg*d*LI_{+|EMqL4y6l^0Lq zb;;8`vQ$OPI6gCPB%y0QaqV^_!OIXG_gOr}I``5Es!SScR}@lB@9(i+r@Oz&8Rd0) z_i;LcDRhvpt5io{k}GA)PKNaNs*XFiB{{-GBj;3@qtdh^R7A!?nX3pz2eV=@QRfwOPV6%-T*eWKkE?5; zpz;;aDON@3=n}o(njjt?CmW?%`n?u=Jxh*Fw0!>tY=-UTNQn}$dm-e#+I=-`c#pVU zhi;A&@4h>xZ&jpD9+$p|X=*l}8Xu!7D;&2MdrcWcM6sh*YJMHe|P(KgZy^C|MK@INSwN zpC(Eb1bqg?Boe)q5v+D$FGkr}R}UH#rfOH48f{hk=h9drDEZ{eTJpi;kg6oK-X(7n zt;O3MuZ#{1NOr4N@no2C-j6&pzI}JK)uUV2iEq#JK4v|GM1K&!JJMVAb5?hrhOA55 zavp+S96T2BbX{tp0WWgE<8FpD>lF^}<05n>?9ykC1J#z;RMW$e5r!T33}0H~2{2tG z(L_~Q&DP5)^H=8vEre*z5e{W?j&?KxUg zNF4V;>3Jn@&R#5|Ks0dV^f+x4coL2)_cZSFnr=ZuEr%LrZ`CK&m#=!(9WyFd*p_eQ zco0X{5_&PL!1sTzXSyU&S+j)=%{e3mU?}qFM(PqIjy+|jsF+!^l_h(u3mT7iW6UZD z-OF%EIk=ZL>z$3ls z3ONn{&X!-^AiJUtDHW)U%>6G4UA3=gK>_0i%mO3FT4YG9Rkp$p=%mg1XGT?Pn%b?d|x<$y^PVt)j6~kaiAV5f#`H2A*&C4Dv2*CoceL3 zWj6wxD!5$(BIB7^EXSS5rPZT~uFr^UZOG~J4v9QjpcEPu%5#E zF*|o6=Fi^6(T&t(qrV;SSAM+~X^!>?S~2oE zI>c};V7?AKaTL!g;-cX!yz9#oGcDDtD*q^&gZGdh|mHJS7z%vuhS;#0*Nxm?BVBN zkT*$gWp_bA>5ludfAE-S|Kc%=huCd&$rvB`Ew6BO*%=DA8n*NxYQ0vcq^a+nq^V0I zx5i%wBwy9n02Pg|O`3W-vSkRZ9_ue1Q-$d0=aRjiq6n~;k|tkIe9u31%q}-Kq`!2` z4c{*v6DWTZXs{b7-y2#NrnQ@`#Gj!VmL9J4FDKL123z;c*|$~|+~AX?d-)XDpb2g; zixq?WF-DZ3+T$?3QPfH4#D?lB+=S*bIjI;{+ty8e4Urol!J5D}?Ib80?zBr&9e!~t zk*~;A-6Lh=9+Y=<(ef(RoAE=9&V>^AA4S#E&e8Gyt*XfhMz7nV^a6R|c^VXCPCK)* z=G~kINSL881i)>5wy)zvUO63olr+MQiLa&Bfs^j;eTwmfnv2DQUDq=I)|5I46B?qr z(R7v$HXuEAyojd`bF$qoH&G$ml~~_?YK?{gk@eh8hTskzGaIjyy99^Alh1#D7ppB( zll$j;^L+m|o=N4xNRp2ZfU%ZO)t8S+*9M6WhyW5~kQk==VHdW!SH>^-8Ep9f(RB}j zfoNNzhJ#8{vF)T{+qP}nR>ih$+qP}ns@Qh&Qs>;;-IF)n<2_sd`W7EwTNqXg(O(~v zZtXg2@C<*GYpOTvNoVu%>*IcL^elX5@BaDaWzF(y+lVuZcx*IoA_Wm@kf@y1W~*47DdH1QH`D2$|+y1#qP z9|Fb^k>JWPF(etcBwzZN*DQ#X zZTQR+o0Vq4Ah6sX%!k(4(d7)9-zs~ncFHvR?Vi?!sJp8D=6Z4pjIS?t8C#58^=wc7 zBAJ1jS@vpG!O@P`bJGn#8IoB%VN|sT4V#; zpjG5+8yE!{t!4_j3S~)?R6BhKQL_U#G~XqmczE@*=+&Si*^K={C6d$jwVuJ+Jw~;% z*gfIS$=3dsO>RELk9RrVu$|3JE+!#GD@L;-$(d%E^UVsNsT1$BwrZHC_y_;ab`9V3 zGb%`D$ky56*WIl%RNMH^(*E*H%UKgDS_61Y_7sMX(6yi032ZR`o zxm5=?RF}}7-e1Ui@~pQg09qE_7yIgy)W`gHqxz=W+QA)b0ZOd^;xSRk2^|*;4}4e9 z<#Y8+o$KJEK<9HzLRt6AbV4)Y9C^Q2OJt77)~OM&D4Vt({OlIZpqT6+WfzT04r7r` z%5aM}VT79*`A~tHjy_b%F+1EmZ*Gr;u33M(IzGPtmI`(rhskA&A`pG~m2G6daZEaE z*i-9D{}SeQJ$nuUCP@>P$^9(_&h) z2Eo)NJ^VRM`8DKm};AHNHfA6w%M&xCrfA7vEavqED2fMI4PJ6un=b^qMtu5^> zTE0ItPQE8tzE(8d+O}@Qqhkm(f;ZP{tqN1@YT7a@-erqiI;rn;+7TV9xjp6$J7 z%w{{GQ7tJ%!6!t`dQFRgRX2is195Y?9a#Qr4M5ZtBj}<{yHzh!jYc)+7pvD#neIVj z+{4){w@teMkdX7ss^~vEC!2os*oPF@hpM$2#L`DG8-Ww|pA?HqQ|bBP^E=1S&yK7f zo;O&i@yk0qHPX4&;%7M`QI1D%K=~HN)k_uv9mJ*9!^qh;;gv*Fl?mM0?Lu;uZ9AUX zLADD`l??;+&qZOT)gTH_RhJkv*N%P~t(z^36BHYk-#(@bh|0H*8J6Nr8jFi%qYAFrs9-p_f!9x)OJa5voe{#F1z@=-OV86 zPJ)xTd*xqAhMlPl@@y@f9Mq=byeW5!sR(MXS`Kw;OoZ;&h^8ke0rAUxzV7YYp^R;~ zDu-2F8=jXWrW5xXi)Wcf`#Ep5pKjj!&rmVGZGIWw>Hk=nj)n_kgZJXrOvLmXrhlzWnt!ZJqL{rLfgQ3)_~VecrQzaSBuJ7b7V51hZQHD-ra<8R z-dRF^`{E+P3%5m7S%kfd6WfUG2_ghcukaR$r;A(Iz5q2eO&GYYhke6v1pV+RNEss% z5}=<}hhyWk3Sk8Bzb>SDYw@5fcMQg&@aY?L!Tc2X2{sIO$wt)G=L2^*_HSenA)^DEk3!V1GW&)FT&Qv3o-?n#mP^W+t zm-m}BobvMPNFw<*Haq!fO2VvH9-UKb`u;2(+w@fB-eUUR;-U{qfwl3w}jG#AuT3CIrzujyU9^wgLB#l{o=A(vHLk_1DV8u73YtE3^LpTAAzr zu`(epb;cuu|HsOt75vxAy!mToCKVkv*llqG{%d81J`*Ab?bX~VQYss5BhpQ6xrE2o z{h9^`P_G&gpzLuPw4EKrQ96;=+KQ6Qh<;=>X2^k$L;<%sDBTJ?Df_lEhySrM9oC$_ ztxT(LD>GTn{*_&w^V(Ez_VC-v94;wm?VEwVz52(>^sSp>oISyO{5U*nUSIZ|&hgQ- z+YrO$#Xk&2kr6BZX$3FN&ZPm9{l)9c7x4b{B32%{%d8DB#$l2*#u7?^|zfceA1SB_4i>BK-#K?2oU{r z4o-WgGrG~ITPcqd|7&F~{nyIuibs>byQM-G3jt$T|F$wYsKB*7pE>$-e4tlRNU8DE zWmdRM){!J>q|qoXQxq=>BN|tQJKt};(nHmEgdQHaxxt5n*=Y@FIVW;XN&T9pC=&0C@szi!pBrdPIlTMFDr!`L;44 z2%LDntxO@I@Bu}NTW0bf?fmWK$lHc>AA8UU`EnVrKDGSu{O`R#pK8Y%wd0Wwc48D}o)zIEvsC$H3X z^kdIWQ0GxL&PX_-9|7%L@=&R;2(>(U!p)V#y>lUK=pScxb|eHv0|38^2q#QKPR$(g z(h{zy@@$#XcgZ8{n*X&jQP=KwWW^K%O6)pMW*+-f7J5^D_n=Mp^|#E#hG52awW}}; zpIR+8<+Z1y->*D_tf2(mEa4H}Zce?wWA-*m342vV?kyU7X-DqN4COb$NS$7VugtX3 zE~gE5gbb}wACK@xR*swV%il73jopNX0iRuHZ<$CuzfI0Vt$KQDg13xR`<&`vy+Hjh zlc@yFAh$40T%7UEWK#SD0>JoYG8O1_8R5il~FZBT_|1~mAFyG(Li>I^L-W}}SJZ=x}_pVPHjn z@5W~zX#7CuHUwFNt;xMEBnQcn$1UJF@^w1xn}XK`hFuL;eY~}v`LLW0 zj&Jo3C1t)i`EsFYO{_gAGQM$4p$t}@o6K}l$;^Q-;%j6M>lSHLuiq2~ z&P~l;q34=?>sm*Rh_ZBI;PP2KnW@Tfl9OZDL2sZ}Tz677}rlJe z0C$F-KMFu^B|BN8HF&Or!}nInM$r|%EKDhZ(kJMCru#{N&i>G5fQdUhOMgxC$Ub8mLCURw!E<2&;E%Slqxe zVf31Fa|XjVj)|gzjVt|C$2(~Q<0ski694lX$Aoq{nf!ebWMgb?dKmH}nYQSG(<%dO zw<_;is_t5d*86UGVp!8m@U-{yx&P)L98=z+#X`h4eIr*uMRELbud!?-GFc9#+m1`- zml#qtHcty|hD*B!RY;@2Vs%63Zqiu8VNry^6EV?{;{`Ee><}c&eE^J6E-Fb43wi^X#wG zSrISZx` zJ-EaS=LzU#T2?ZsOI-S74J62EozT7(EyKBiEfDvf%kpLp1d z_s7G{_I;v1Rv>?mNO>p9)@q&$dN|q4{>3rnzj4gwZya-eArc$iwL+ZzUQ4ovEsv47 zvf{T=Doy>$Fu)zH=Z|?!T_3}~`)c&pO;$jjN(66enEc@DUwxXzW3<643u`JVZTykj zt^tx8++}176OV*FCGC;|Rk#Sqx)d@{BI+Qn%F-D3sOpjOPQ} z5pL4OXi;m+Sa=ME_>y>S7@nIQ)OHt{1^2t$sp}b&g_43gIm0)cP+FwxAl_pdhNX#1 zkEk1WqypD2?&r#Y%f2QpqtkR-fS%}vNI51Eb)8>kQ!}Oi(J|?frb02Nz@~H`;Y$Cb zW1@!M4MrlqI2~_o#hG)qjKzorfr`Q&fnQ(Aqrj$lR6MK0;Uk8H&HZp7RfTxR#uB`1 zte@VaL}yh%p$nM`5AglPqRma0?ke_6N1S?Tt8X5UZXbi8MuQ>n(DtiCV`d?QHN09aL*v+NYYgBicE>W zgd|J0c?+U7YYi#85O{!q7(+6JPsx>90P!Rt_K*2CJAqvPu;5Cg6gRXj5f?N^biMT7 zeo+8s(}*Pnu&qh7k#bCa#sM&T-$#C@@fSz95^j1U8FXUvak#JxFQ9{3x1r0^f$7NyRy!=E+%!5O8I@AZWl4u4;q`6iJozdfh zz*r>rr2v(X2G{7GK5X_=t&V5UP?)XVH2o&7AXUtKr}vSJaGM4j!Q_Iiyk6^+*A zNf9^jjbIJYk9c5(pq&!1O7YBur~2P$B$7ViwlzM4g8g z?ya^a=^-^B9NM7GFU)!09d6C|zd9!Iw~h$`&m;3cIwp|! zUmdea8{9-T+eDV2xcRS+IR;M$!a*~Va9t;DJtLrQ`PCHQjDWI7^5gr7+!uJpN^@Uu{XX34Lgil|HoDNTgNnc9*-44XY%}7 zL+`}wtGmTP;#d$+LHC0Q?A{jYvRcs*4)jV}(`lMoxY%6MR3fIe^r^OwJ>_(`b=A@M z5!*(sOUF9?;6f`kt3S8%ebUAEy+|7i#CO(NjC4@8K3Q$djgoAiQuuLHIW3yJ(eaIn z0Olj0j6LAp#O-)?Zog7T!;?2_z-1k0|v?B-KynPO#;BV zHW8XP77U4EQo4IbBI`{&5iOjA{YD}x>Ilq74U=Cl{NFaFLI-KB*|95^xapr;XLy_L zxQ&WU0C3eaA_`@CC%%F`Lo@Y=GaCCWc5<*8A-N>wQBK{Qq+S;eYoM;IJ0nPih!NG86_gcW5X@Z`tRP)bH|NcEqE zTIS-=TDIa+I6xsK67wTRJbjkD9r$>B5;b?onG36*n>xGA1*FHuj3Y9 zMu~3*GAR$&pD-roKR*OsZ3=F0%M5+v#eeT&qrmfU=nZclP2m&_KlJ}!6GE%NCsgHG2860wq_|5w!`nW#_8z;p-<97&mdKMEs!GGk&G};fPrhI5-l2dPtJ1A_IlLSMhNAOfFWE zTK93q*0n_q_fMS^^<3E*2j=Eh$ox$IRtXYCwx^4OqC9ch*a=X$BF|uJtZxM46245p z9rU6)V{S6Bg$h#lTV?&nZ-wc3(7L%>IhSz?x9{pe;*~lTgyQuw%Vcf7@S+R*ao$-@ zDtf*NGcbMR+Jwhyg_yUYhf0e4&V`L}W;=7H?OJ@-1P$ z@U+v5UCO&#PUmY`S=P`vFk{03p=Ga;HR=f!ANS{8Uz$d7@`6FZfA2-jp?$2XVo2Cu zmfDv1)5s{XE7Bdf@+gv6mYo47&ZxMcd68`PQZk;CMA{G>$#cv~^0^!vXpX4SPovIF z5c9LuHrQ7bUC#=zkc#+6Xx4l*V0j}A?y(ant4OzYNaKYMbYR(BEFK_r8YoT?vWUjO z84Vti*U>aDWkHuXMkO|j({-K;+UGFG{Fn!kmfS*?5>S9$=%yUf3N;ErA8o)Iv}@X1 z^rAvO74V6km1nVdhyUG%i*zri&t>WPJ1wtOjl;MPy21M88^Y|8!Pl}OtTcU+n|wQ%Y9sfH&_0)5psv1R ztKE|-@V7iB7TcNhlUxjLsqEZ$6==;zRu4?|U)fkFr>btYt({9)#>aHW9swGrgOKcM zq)RD>(q<2Ifd%{hp^iwM_%{kEl$vWAd2^IpY6M!9Grwxsvkb_iHh_R0LH4tNf4Fk*a z(`{84+&5Tg4XXBSTVfj!i;%dqf-MguGj^*v=a1B9%EAayiWZX?$z;CE1wAfTP@S-r zqa^c^0FI!zh@iBf>KVvrX8e32U@y`7QJj>|&Mj#c?#z`k51wiwi_v!AwFy+DVpHtm zm8P8N#l>-oLLhHeQ3XApUo~RwcCWQ!*;P=Z6FRU5Dt|BA z!a_h<^=ko@xXMg}?(v5>2UUc4E&SxJ{)Smf%l}m{C)>qTe*9R)D)g#mAynF7g{UFD z$lb=w2TphPX@n6H^M@yID-Kj+=PU|l1dDX8I&25Kof63uG{mUiMc=%r16bJlnXDtP z*-BnP?Dt?Et3wuHRsabZL55U=#8qqOvEe63@cpkgF&EWxb1b-Ii%-iFhE4wjy;*zQ z%b7WIT0yqyM2Bk12jSAayZXP~5QxupFh_hCDk{#zr~%Xky=yIs3~^}SYSABxy7EG5 zz}{g&`isYHhR&TM9O)7uHu zb~Kb&ns-Lr_v@jVfPSc@Z%oQF)JnevfdQU1DpW_}Es|2Y}7 z4gIZPD*1gYm}WhY<#{~X(bYnPh4;N!L&tO>>H5ji)61nT!0Gl6TvXVec$%#$;a3^C zPAEoOeu^5nT#h#!8adVS;h=d6c+|C|N$wST1d$sGxP)?8jnj_7A|f~hn9uAMM+ITJ z@FD(d_Cll=F$Ej~)&g2kwLkQvZAH~P$ajE=sjX=6g76RMe{dnWcmO&O?H*U5sFV9n zGgwN;S5gp6!{I+*gYa);MYqTcVhqe3Br?W1tm+A?c7EbK!CDtO&d|AeX(hUq z20S)^2^GB^zfE$=$h7r<#1zf~#F8p;59IE*5+g%-B=IHoL(*~zzS(j}1}{ywmcs(p zp97D+*O&x?MKoj%DPJCBC+df91k>P4`01H7O`-DW8^IiW*oJ`IuCiQPx(U$3ty>Go zQ-x9kEVPzD9hk3wWuJX%kExRB-r=O-xFF$Tv2JaEZnieca?Vu>tR{Hw)NjksK5X_V z>~KbnP{{IFg+Xm1L5(l}sK0Vqy;L~nOWBO$s=|Y>c*5W^XD*sQf4HRD_kQy1%6PrO zu;TC;=uXImuo4+VAs-&|QwB2=fr$etU8em;FpK`cCOiS*#6+Qj>k@*u-SX7@OBqJ+RYI?MC=9x?7?s{$11}t-D_Dnn7fUoW_APwcq9=31d?=c*ig9f)(IAWFyQfGT9uiM{!fA0EM2!CbAebsWh-N-Jt1-mvg?A%7($gN}g#pII@D3rQpBqEpM9NtwJ-9v_IcSs({slM_n6a=0K%6r>OW zf?6IBF{x_g_PYRy6lD!k>p|@eUW6_BqL53A&gle7`Eo^`t#n;c&rO}GMF&?Rb(g`nxlak+b^N%<%VC()p*ZtN?-wHBfC4oYMU=U&0 zTLZyc>`uevA$W5EDm_}AyEd(AzsJm|Oe&a=Nk|eW#7+8cPD~>zH3VCmojgGG9%vy9 zMIkqch>&+Qipb!z^{>w2@~kr0zz$C;`2$H5nWlH*YZ3G+G~_iJO^zgpDHy6K`&usA zfls-nZ4P%Extv?{7a*0{Cbz5kWO_9uCGwI!o~;&@d%A))i4$spD`EiU@Cj;&tKY$0(iZc2&=H|z*B00>$tdqt@P7@=^nVRZv>j;K zIn&B!y!5PhtIpeV$gQQtH?bw*U-9gTIbR2^Z)=p{uKJ^8tL=@)u1ZBn^)vWc^niZqsY7Nt^#eg?Zrzn>j^oe?T|CqI@^`Fl!^V{i zggRHPT%tP9my{9cQ3EEVVYSu7>+ovH|;s!1ZI^Xmf+A_-4z@e`b(^LC4J?}Kv)F%E{HBo$JaoFJOmh2Zfr}{DXJ-!A_<^dDS z7fW{{Tw>!WW7Z<^SCz`{xc8m%1<|02kff%p}TASlH9F&E^iMm#o zwzLYMkYQb%ksFq}nfq!qfz*qstRR%LbcT}-;ZHzd)>>!YxBrE^CSEKbfooc{u(j3h zST(@9$MQ{J68_u(A9<--fO7`dzjdj5@NUIWT_I+?aBFxiw(TzUnaaJ3YicQ9so1NU z01iUdzZ|@Ew2Ky*#K|AxUl?y!Ul=L)9FcQqC2{-wzRX$iB!f-Kc9qTkq3eD@6n}MJ z7c$RKE;k@YJ&rq81TJo6f-r`9D_KLO_A!a=h-KhHsTHqKbOXe(X)R1*FW4kFx*d~x zQI{adjs6)7E##T>BQRDLH2l){ShnSaN3H3O|FBfIZ0+X4J}C*r7`%>eo|-Swt{@At zL?~XoKEW!>JSUoyPh~cchk zIDa;&Vm8D2i1IZagE5@p<|n1q71E7i*j2(tMnAvGs=0*-Yt1tAkUP^S`a^XUj?g`> zDu||*@0re60+{uMk203}Xv0X~ML6LDC1>&*%Lo@`Qq!^lqk{n%#i?$g_+%3sd#BPN zK1YbNjfB7>$@-d?3N&oLrbxDM4cE~naXRVZrwf9FRx^u5PDM#mAbF)FSmMz!649eU zr|F^f5l|Ixpr**Tg1ICw_N`zheJhwi&URB&AT99FmyanHU)X}G$6pI1Ji1sPZm1+B zshN$iO)ZApQN) zJbQt4?M;w`yDM{sgeyg57OVz}t|Vx%sk08|oYuRcRr5fy5Dq;rI5<_a7O7pXf;$e% z)8-Rb5VhT);&{ub)8~u1*G!fIs_Sp*k}FjGTe`Hi{ztkz=$ukAz4?|dU-)4srEi%* zf(TTgeyK${{2%GElOF0@x^(%LE&;y2au?jh7j$IZn$6`@i0iC5_P$8_?irS}sM`4_Kwkd-=mN%j7VT~ZwW#V)y&$r=A*mjK9E=rwKA zF1IhOT8?T?%@27iGroG(BG#~~$6Fyk&i}zKF+a*sNiaW7zaS)9*&5n zV7+S>S8dmf%Kl=Px;lLSV3()bChi(8?o3Y2o!wkxwm}C3_uL!Zal{tdU6(IWk3ke) zeH=T**)lYbCdJ99Q@_7XZBIQ=!+|u`3$UFfuXM&7=8_kne{K_PY9Q#S5d29t{L5U9 zQ*y3u#5Id?|iJ!+%=&0HFU zd*d%n^>vE4HblmTBvNFW_s5-6ZZ;x9{FwVWDovU9yaYX3KP;hks%xzEdCq}a;;)5p zBI+aRE%N8b>ZGWchL5NI*?g))o6PO4_*rmJt8#&l7{R&0Ukq∈hXHjz<6*gVqBGtJkUwe#RsJ@TL7M0( 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 diff --git a/Resources/Filters/L1_Regular_Highwind.filter b/Resources/Filters/L1_Regular_Highwind.filter index 51a9be8..9755dad 100644 --- a/Resources/Filters/L1_Regular_Highwind.filter +++ b/Resources/Filters/L1_Regular_Highwind.filter @@ -1,7 +1,7 @@ ############################################ -## HIGHWIND'S LOOT FILTER 3.12.3 ## +## HIGHWIND'S LOOT FILTER 3.12.4 ## ############################################ -## Release Date: September 19, 2020 ## +## Release Date: September 23, 2020 ## ############################################ #--------------# @@ -1225,15 +1225,6 @@ Show # Gems - Other # "The Master" "The Master Artisan" # "The Wolf" "The Wolf's Shadow" "The Wolf's Legacy" -Show # Divination Cards - <2c (Conflicts) - Class Divination - BaseType "The Master Artisan" - SetFontSize 36 - SetTextColor 0 0 0 # Divination Card (<2c) - SetBackgroundColor 255 0 175 230 # Divination Card (<2c) - SetBorderColor 150 30 100 255 # Divination Card (<2c) - DisableDropSound - Show # Divination Cards - Nearly Worthless (Conflicts) Class Divination BaseType "The Demoness" "The Wolf's Legacy" "The Wolf's Shadow" @@ -1245,7 +1236,7 @@ Show # Divination Cards - Nearly Worthless (Conflicts) Show # Divination Cards - 10c+ Class Divination - BaseType "Brother's Stash" "Desecrated Virtue" "Unrequited Love" "A Familiar Call" "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Blessing of God" "Dark Dreams" "Dying Anguish" "Etched in Blood" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Prometheus' Armoury" "Seven Years Bad Luck" "Squandered Prosperity" "Succor of the Sinless" "The Awakened" "The Bargain" "The Celestial Stone" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Mayor" "The Nurse" "The Offering" "The Price of Loyalty" "The Progeny of Lunaris" "The Queen" "The Saint's Treasure" "The Samurai's Eye" "The Soul" "The Spark and the Flame" "The Strategist" "The Sustenance" "The White Knight" "Void of the Elements" "Wealth and Power" + BaseType "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Brother's Stash" "Desecrated Virtue" "Dying Anguish" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Seven Years Bad Luck" "Succor of the Sinless" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Gulf" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Nurse" "The Offering" "The Pact" "The Price of Loyalty" "The Progeny of Lunaris" "The Saint's Treasure" "The Samurai's Eye" "The Spark and the Flame" "The Sustenance" "The White Knight" "The World Eater" "Unrequited Love" "Wealth and Power" SetFontSize 45 SetTextColor 255 0 175 # Divination Card (10c+) SetBackgroundColor 255 255 255 255 # Divination Card (10c+) @@ -1256,7 +1247,7 @@ Show # Divination Cards - 10c+ Show # Divination Cards - 2-10c Class Divination - BaseType "Cursed Words" "The Cache" "Triskaidekaphobia" "The Bitter Blossom" "The Gulf" "A Note in the Wind" "Akil's Prophecy" "Arrogance of the Vaal" "Bowyer's Dream" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Demigod's Wager" "Divine Justice" "Echoes of Love" Friendship "Lucky Connections" "Mawr Blaidd" "No Traces" "Peaceful Moments" Perfection "Pride Before the Fall" Rebirth Remembrance "The Artist" "The Betrayal" "The Breach" "The Cartographer" "The Celestial Justicar" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Hale Heart" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Landing" "The Life Thief" "The Lord of Celebration" "The Master" "The Old Man" "The Polymath" "The Porcupine" "The Primordial" "The Professor" "The Risk" "The Sacrifice" "The Sephirot" "The Undaunted" "The Undisputed" "The Valkyrie" "The Valley of Steel Boxes" "The Vast" "The Void" "The Warlord" "The Wolven King's Bite" "The World Eater" "The Wrath" "Time-Lost Relic" "Underground Forest" "Vinia's Token" + BaseType "A Familiar Call" "A Note in the Wind" "Blessing of God" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Cursed Words" "Dark Dreams" "Demigod's Wager" "Etched in Blood" "Lucky Connections" "No Traces" "Peaceful Moments" "Pride Before the Fall" Remembrance "Squandered Prosperity" "The Academic" "The Artist" "The Awakened" "The Bargain" "The Betrayal" "The Bitter Blossom" "The Brittle Emperor" "The Cartographer" "The Celestial Justicar" "The Celestial Stone" "The Cursed King" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Jeweller's Boon" "The King's Heart" "The Landing" "The Last One Standing" "The Life Thief" "The Mayor" "The Polymath" "The Porcupine" "The Primordial" "The Queen" "The Risk" "The Sacrifice" "The Sephirot" "The Soul" "The Strategist" "The Undisputed" "The Wolven King's Bite" "The Wrath" "Vinia's Token" "Void of the Elements" SetFontSize 45 SetTextColor 255 255 255 # Divination Card (2-10c) SetBackgroundColor 255 0 175 255 # Divination Card (2-10c) @@ -1267,7 +1258,7 @@ Show # Divination Cards - 2-10c Show # Divination Cards - <2c Class Divination - BaseType "The Journalist" "The Unexpected Prize" "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Buried Treasure" "Coveted Possession" "Emperor of Purity" "Emperor's Luck" "Gemcutter's Promise" "Harmony of Souls" Humility "Lingering Remnants" "Lucky Deck" "Merciless Armament" "The Aesthete" "The Cacophony" "The Catalyst" "The Chains that Bind" "The Chosen" "The Cursed King" "The Dark Mage" "The Deep Ones" "The Dreamer" "The Endless Darkness" "The Garish Power" "The Incantation" "The Jeweller's Boon" "The Journey" "The King's Heart" "The Last One Standing" "The Pact" "The Price of Protection" "The Seeker" "The Side Quest" "The Standoff" "The Thaumaturgist" "The Throne" "The Tinkerer's Table" "The Tyrant" "The Union" "The Wilted Rose" "The Wolf" "The Wretched" "Three Faces in the Dark" "Three Voices" Vanity "Vile Power" + BaseType "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Bowyer's Dream" "Buried Treasure" "Coveted Possession" "Deathly Designs" "Divine Justice" "Earth Drinker" "Emperor of Purity" "Emperor's Luck" Heterochromia "Lucky Deck" "Mawr Blaidd" Perfection "Prometheus' Armoury" Rebirth "Sambodhi's Vow" "The Bones" "The Breach" "The Catalyst" "The Chosen" "The Dreamer" "The Endless Darkness" "The Hunger" "The Lion" "The Mad King" "The Master Artisan" "The Old Man" "The Professor" "The Realm" "The Rite of Elements" "The Scavenger" "The Tinkerer's Table" "The Undaunted" "The Valkyrie" "The Vast" "The Wilted Rose" "The Wolf" "Three Faces in the Dark" "Three Voices" "Time-Lost Relic" Triskaidekaphobia Unchained "Underground Forest" SetFontSize 36 SetTextColor 0 0 0 # Divination Card (<2c) SetBackgroundColor 255 0 175 230 # Divination Card (<2c) @@ -1276,7 +1267,7 @@ Show # Divination Cards - <2c Show # Divination Cards - Nearly Worthless Class Divination - BaseType "A Mother's Parting Gift" "Alone in the Darkness" "Anarchy's Price" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Deathly Designs" "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Earth Drinker" "Forbidden Power" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Her Mask" Heterochromia Hope Hubris "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lost Worlds" Loyalty "Lysah's Respite" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Sambodhi's Vow" "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Bones" "The Brittle Emperor" "The Calling" "The Cataclysm" "The Coming Storm" "The Conduit" "The Darkest Dream" "The Deal" "The Deceiver" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Harvester" "The Hermit" "The Hunger" "The Insatiable" "The Jester" "The King's Blade" "The Lich" "The Lion" "The Lord in Black" "The Lunaris Priestess" "The Mad King" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Puzzle" "The Realm" "The Rite of Elements" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scavenger" "The Scholar" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Visionary" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "Thirst for Knowledge" Tranquillity "Treasure Hunter" "Volatile Power" + BaseType "A Mother's Parting Gift" "Akil's Prophecy" "Alone in the Darkness" "Anarchy's Price" "Arrogance of the Vaal" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Echoes of Love" "Forbidden Power" Friendship "Gemcutter's Promise" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Harmony of Souls" "Her Mask" Hope Hubris Humility "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lingering Remnants" "Lost Worlds" Loyalty "Lysah's Respite" "Merciless Armament" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Aesthete" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Cache" "The Cacophony" "The Calling" "The Cataclysm" "The Chains that Bind" "The Coming Storm" "The Conduit" "The Dark Mage" "The Darkest Dream" "The Deal" "The Deceiver" "The Deep Ones" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Garish Power" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Hale Heart" "The Harvester" "The Hermit" "The Incantation" "The Insatiable" "The Jester" "The Journalist" "The Journey" "The King's Blade" "The Lich" "The Lord in Black" "The Lord of Celebration" "The Lunaris Priestess" "The Master" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Price of Protection" "The Puzzle" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scholar" "The Seeker" "The Side Quest" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Standoff" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Thaumaturgist" "The Throne" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Tyrant" "The Unexpected Prize" "The Union" "The Valley of Steel Boxes" "The Visionary" "The Void" "The Warlord" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "The Wretched" "Thirst for Knowledge" Tranquillity "Treasure Hunter" Vanity "Vile Power" "Volatile Power" SetFontSize 36 SetTextColor 0 0 0 # Divination Card (Low) SetBackgroundColor 255 0 175 170 # Divination Card (Low) @@ -1469,7 +1460,7 @@ Show # 5+ Links - Low Value - Rare # Section: Enchantments Show # Enchantments - 20c+ Unique - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1480,7 +1471,7 @@ Show # Enchantments - 20c+ Unique PlayEffect Red Show # Enchantments - 20c+ Other - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" SetFontSize 45 SetTextColor 0 100 220 # Crafting Base (High) SetBackgroundColor 255 255 255 255 # Crafting Base (High) @@ -1490,7 +1481,7 @@ Show # Enchantments - 20c+ Other PlayEffect Red Show # Enchantments - 10c+ Unique - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1501,7 +1492,7 @@ Show # Enchantments - 10c+ Unique PlayEffect Red Show # Enchantments - 10c+ Other - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" SetFontSize 45 SetTextColor 255 255 255 # Crafting Base (Mid) SetBackgroundColor 60 60 60 255 # Crafting Base (Mid) @@ -1586,7 +1577,7 @@ Show # Jewels - Unique - Other Show # Uniques - 15c+ Rarity = Unique - BaseType "Arcanist Gloves" "Assassin's Boots" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Crusader Helmet" "Deerskin Gloves" "Ezomyte Tower Shield" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Jet Amulet" "Jewelled Foil" "Karui Maul" "Nubuck Boots" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Savant's Robe" "Siege Axe" "Silk Gloves" "Sorcerer Boots" "Two-Stone Ring" "Wyrmscale Doublet" "Vaal Rapier" "Ornate Quiver" "Golden Visage" + BaseType "Ambush Mitts" "Arcanist Gloves" "Arcanist Slippers" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Deerskin Gloves" "Ezomyte Tower Shield" "Gemstone Sword" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Holy Chainmail" "Jet Amulet" "Jewelled Foil" "Jingling Spirit Shield" "Karui Maul" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Sapphire Flask" "Savant's Robe" "Shackled Boots" "Siege Axe" "Silk Gloves" "Slink Boots" "Sorcerer Boots" "Steel Ring" "Two-Stone Ring" "Varnished Coat" "Wyrmscale Doublet" "Zodiac Leather" "Riveted Gloves" "Steelwood Bow" "Vaal Rapier" "Ornate Quiver" "Steel Circlet" "Golden Visage" "Ezomyte Dagger" "Saint's Hauberk" "Fluted Bascinet" SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) SetBackgroundColor 255 255 255 255 # Unique (15c+) @@ -1604,7 +1595,7 @@ Show # Uniques - 15c+ Show # Uniques - 5-15c Rarity = Unique - BaseType "Bismuth Flask" "Brass Spirit Shield" "Bronzescale Boots" "Clasped Boots" "Clasped Mitts" "Ezomyte Burgonet" "Full Wyrmscale" "Gold Ring" "Granite Flask" "Hydrascale Boots" "Hydrascale Gauntlets" "Jingling Spirit Shield" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Sapphire Flask" "Steel Ring" "Steelscale Gauntlets" "Studded Belt" "Timeworn Claw" "Vaal Blade" "Variscite Blade" "Zodiac Leather" "Riveted Gloves" "Ezomyte Dagger" + BaseType "Assassin's Boots" "Champion Kite Shield" "Clasped Mitts" "Exquisite Leather" "Gold Ring" "Granite Flask" "Highborn Staff" "Hydrascale Gauntlets" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Stibnite Flask" "Studded Belt" "Timeworn Claw" "Topaz Ring" "Vaal Blade" "Lacquered Buckler" "Butcher Axe" SetFontSize 45 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1633,7 +1624,7 @@ Show # Uniques - Enchanted Show # Uniques - 3-5c Rarity = Unique - BaseType "Amber Amulet" "Ambush Mitts" "Archon Kite Shield" "Assassin Bow" "Carved Wand" "Chain Belt" "Champion Kite Shield" "Coiled Staff" "Conjurer Boots" "Coral Amulet" Cutlass "Festival Mask" "Fiend Dagger" "Full Dragonscale" "Gemstone Sword" "Gold Amulet" "Golden Plate" "Imperial Maul" "Imperial Staff" "Iron Sceptre" "Jade Amulet" "Jasper Chopper" "Judgement Staff" "Karui Chopper" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Mace" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Royal Skean" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Shackled Boots" "Simple Robe" "Slink Boots" "Soldier Gloves" "Stibnite Flask" "Topaz Ring" "Turquoise Amulet" "Vaal Spirit Shield" "Varnished Coat" "Void Axe" "Wool Gloves" "Steelwood Bow" "Ezomyte Spiked Shield" "Steel Circlet" "Tyrant's Sekhem" "Saint's Hauberk" "Two-Toned Boots" + BaseType "Amber Amulet" "Assassin Bow" "Bismuth Flask" "Blue Pearl Amulet" "Carved Wand" "Citadel Bow" "Clasped Boots" "Conjurer Boots" "Coral Amulet" "Corsair Sword" Cutlass "Diamond Flask" "Ezomyte Burgonet" "Fiend Dagger" "Grand Mana Flask" "Heavy Belt" "Hydrascale Boots" "Imperial Maul" "Imperial Skean" "Iron Ring" "Jade Amulet" "Judgement Staff" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Bascinet" "Nightmare Mace" "Nubuck Boots" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Ruby Ring" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Sanctified Mana Flask" "Simple Robe" "Sinner Tricorne" "Slaughter Knife" "Stealth Boots" "Sulphur Flask" "Topaz Flask" "Turquoise Amulet" "Unset Ring" "Vaal Spirit Shield" "Void Axe" "Ezomyte Spiked Shield" "Tyrant's Sekhem" "Two-Toned Boots" "Crimson Round Shield" SetFontSize 40 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1654,17 +1645,6 @@ Show # Uniques - <3c - Unique Rings MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange -Show # Uniques - <3c - Replica - Rarity = Unique - Replica True - SetFontSize 45 - SetTextColor 255 128 64 # Unique - SetBackgroundColor 50 25 12 230 # Unique - SetBorderColor 255 255 0 255 # Unique (3-5c) - PlayAlertSound 4 200 # Mid Value - MinimapIcon 0 Orange UpsideDownHouse - PlayEffect Orange - #-----# # <3c # #-----# @@ -1682,10 +1662,20 @@ Show # Uniques - <3c - ilvl <67 MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange +Show # Uniques - <3c - Replica + Rarity = Unique + Replica True + SetFontSize 45 + SetTextColor 255 128 64 # Unique + SetBackgroundColor 50 25 12 230 # Unique + SetBorderColor 180 90 45 255 # Unique + PlayAlertSound 4 200 # Mid Value + MinimapIcon 0 Orange UpsideDownHouse + PlayEffect Orange # Limited drop. May share a BaseType with an extremely valuable item, League specific, or boss drop only. Show # Uniques - Limited Rarity = Unique - BaseType "Agate Amulet" "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Cardinal Round Shield" "Carnal Mitts" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crystal Belt" "Exquisite Leather" Gavel "Goathide Boots" "Goliath Greaves" "Grand Mana Flask" "Great Crown" "Gut Ripper" "Harlequin Mask" "Heavy Belt" "Highborn Staff" "Holy Chainmail" "Hubris Circlet" "Imperial Skean" "Infernal Sword" "Iron Ring" Labrys "Leather Belt" "Legion Sword" "Lion Pelt" Maelstr "Midnight Blade" "Moonstone Ring" "Necromancer Circlet" "Nightmare Bascinet" "Opal Ring" "Painted Tower Shield" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Ruby Ring" "Sage Wand" "Sapphire Ring" "Serpentscale Gauntlets" "Silken Hood" "Silver Flask" "Sinner Tricorne" "Soldier Helmet" "Stealth Boots" "Sulphur Flask" "Terror Claw" "Titan Gauntlets" "Titan Greaves" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Unset Ring" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" + BaseType "Agate Amulet" Ambusher "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Archon Kite Shield" "Assassin's Mitts" "Astral Plate" "Branded Kite Shield" "Bronzescale Boots" "Cardinal Round Shield" "Carnal Armour" "Carnal Mitts" "Chain Belt" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crusader Helmet" "Crystal Belt" "Death Bow" "Decimation Bow" "Demon Dagger" "Ebony Tower Shield" "Elegant Ringmail" "Engraved Wand" "Eternal Sword" "Ezomyte Staff" "Full Wyrmscale" Gavel Gladius "Goathide Boots" "Gold Amulet" "Golden Plate" "Goliath Greaves" "Great Crown" "Great Mallet" "Grinning Fetish" "Gut Ripper" "Harlequin Mask" "Hubris Circlet" "Imperial Bow" "Infernal Sword" "Jasper Chopper" Labrys "Laminated Kite Shield" Lathi "Leather Belt" "Legion Boots" "Legion Sword" "Lion Pelt" Maelstr Meatgrinder "Midnight Blade" "Mind Cage" "Mirrored Spiked Shield" "Moonstone Ring" "Murder Boots" "Nailed Fist" "Necromancer Circlet" "Opal Ring" "Ornate Mace" "Painted Tower Shield" "Paua Ring" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Sage Wand" "Samite Gloves" "Sapphire Ring" "Sentinel Jacket" "Serpentscale Gauntlets" "Shadow Sceptre" "Shagreen Boots" "Siege Helmet" "Silken Hood" "Silver Flask" "Soldier Boots" "Soldier Gloves" "Soldier Helmet" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Terror Claw" "Terror Maul" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Variscite Blade" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" SetFontSize 40 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique diff --git a/Resources/Filters/L2_Mapping_Highwind.filter b/Resources/Filters/L2_Mapping_Highwind.filter index d4bb349..d9fbdea 100644 --- a/Resources/Filters/L2_Mapping_Highwind.filter +++ b/Resources/Filters/L2_Mapping_Highwind.filter @@ -1,7 +1,7 @@ ############################################ -## HIGHWIND'S MAPPING FILTER 3.12.3 ## +## HIGHWIND'S MAPPING FILTER 3.12.4 ## ############################################ -## Release Date: September 19, 2020 ## +## Release Date: September 23, 2020 ## ############################################ #--------------# @@ -1231,15 +1231,6 @@ Hide # Gems - Other # "The Master" "The Master Artisan" # "The Wolf" "The Wolf's Shadow" "The Wolf's Legacy" -Show # Divination Cards - <2c (Conflicts) - Class Divination - BaseType "The Master Artisan" - SetFontSize 36 - SetTextColor 0 0 0 # Divination Card (<2c) - SetBackgroundColor 255 0 175 230 # Divination Card (<2c) - SetBorderColor 150 30 100 255 # Divination Card (<2c) - DisableDropSound - Show # Divination Cards - Nearly Worthless (Conflicts) Class Divination BaseType "The Demoness" "The Wolf's Legacy" "The Wolf's Shadow" @@ -1251,7 +1242,7 @@ Show # Divination Cards - Nearly Worthless (Conflicts) Show # Divination Cards - 10c+ Class Divination - BaseType "Brother's Stash" "Desecrated Virtue" "Unrequited Love" "A Familiar Call" "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Blessing of God" "Dark Dreams" "Dying Anguish" "Etched in Blood" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Prometheus' Armoury" "Seven Years Bad Luck" "Squandered Prosperity" "Succor of the Sinless" "The Awakened" "The Bargain" "The Celestial Stone" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Mayor" "The Nurse" "The Offering" "The Price of Loyalty" "The Progeny of Lunaris" "The Queen" "The Saint's Treasure" "The Samurai's Eye" "The Soul" "The Spark and the Flame" "The Strategist" "The Sustenance" "The White Knight" "Void of the Elements" "Wealth and Power" + BaseType "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Brother's Stash" "Desecrated Virtue" "Dying Anguish" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Seven Years Bad Luck" "Succor of the Sinless" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Gulf" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Nurse" "The Offering" "The Pact" "The Price of Loyalty" "The Progeny of Lunaris" "The Saint's Treasure" "The Samurai's Eye" "The Spark and the Flame" "The Sustenance" "The White Knight" "The World Eater" "Unrequited Love" "Wealth and Power" SetFontSize 45 SetTextColor 255 0 175 # Divination Card (10c+) SetBackgroundColor 255 255 255 255 # Divination Card (10c+) @@ -1262,7 +1253,7 @@ Show # Divination Cards - 10c+ Show # Divination Cards - 2-10c Class Divination - BaseType "Cursed Words" "The Cache" "Triskaidekaphobia" "The Bitter Blossom" "The Gulf" "A Note in the Wind" "Akil's Prophecy" "Arrogance of the Vaal" "Bowyer's Dream" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Demigod's Wager" "Divine Justice" "Echoes of Love" Friendship "Lucky Connections" "Mawr Blaidd" "No Traces" "Peaceful Moments" Perfection "Pride Before the Fall" Rebirth Remembrance "The Artist" "The Betrayal" "The Breach" "The Cartographer" "The Celestial Justicar" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Hale Heart" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Landing" "The Life Thief" "The Lord of Celebration" "The Master" "The Old Man" "The Polymath" "The Porcupine" "The Primordial" "The Professor" "The Risk" "The Sacrifice" "The Sephirot" "The Undaunted" "The Undisputed" "The Valkyrie" "The Valley of Steel Boxes" "The Vast" "The Void" "The Warlord" "The Wolven King's Bite" "The World Eater" "The Wrath" "Time-Lost Relic" "Underground Forest" "Vinia's Token" + BaseType "A Familiar Call" "A Note in the Wind" "Blessing of God" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Cursed Words" "Dark Dreams" "Demigod's Wager" "Etched in Blood" "Lucky Connections" "No Traces" "Peaceful Moments" "Pride Before the Fall" Remembrance "Squandered Prosperity" "The Academic" "The Artist" "The Awakened" "The Bargain" "The Betrayal" "The Bitter Blossom" "The Brittle Emperor" "The Cartographer" "The Celestial Justicar" "The Celestial Stone" "The Cursed King" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Jeweller's Boon" "The King's Heart" "The Landing" "The Last One Standing" "The Life Thief" "The Mayor" "The Polymath" "The Porcupine" "The Primordial" "The Queen" "The Risk" "The Sacrifice" "The Sephirot" "The Soul" "The Strategist" "The Undisputed" "The Wolven King's Bite" "The Wrath" "Vinia's Token" "Void of the Elements" SetFontSize 45 SetTextColor 255 255 255 # Divination Card (2-10c) SetBackgroundColor 255 0 175 255 # Divination Card (2-10c) @@ -1273,7 +1264,7 @@ Show # Divination Cards - 2-10c Show # Divination Cards - <2c Class Divination - BaseType "The Journalist" "The Unexpected Prize" "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Buried Treasure" "Coveted Possession" "Emperor of Purity" "Emperor's Luck" "Gemcutter's Promise" "Harmony of Souls" Humility "Lingering Remnants" "Lucky Deck" "Merciless Armament" "The Aesthete" "The Cacophony" "The Catalyst" "The Chains that Bind" "The Chosen" "The Cursed King" "The Dark Mage" "The Deep Ones" "The Dreamer" "The Endless Darkness" "The Garish Power" "The Incantation" "The Jeweller's Boon" "The Journey" "The King's Heart" "The Last One Standing" "The Pact" "The Price of Protection" "The Seeker" "The Side Quest" "The Standoff" "The Thaumaturgist" "The Throne" "The Tinkerer's Table" "The Tyrant" "The Union" "The Wilted Rose" "The Wolf" "The Wretched" "Three Faces in the Dark" "Three Voices" Vanity "Vile Power" + BaseType "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Bowyer's Dream" "Buried Treasure" "Coveted Possession" "Deathly Designs" "Divine Justice" "Earth Drinker" "Emperor of Purity" "Emperor's Luck" Heterochromia "Lucky Deck" "Mawr Blaidd" Perfection "Prometheus' Armoury" Rebirth "Sambodhi's Vow" "The Bones" "The Breach" "The Catalyst" "The Chosen" "The Dreamer" "The Endless Darkness" "The Hunger" "The Lion" "The Mad King" "The Master Artisan" "The Old Man" "The Professor" "The Realm" "The Rite of Elements" "The Scavenger" "The Tinkerer's Table" "The Undaunted" "The Valkyrie" "The Vast" "The Wilted Rose" "The Wolf" "Three Faces in the Dark" "Three Voices" "Time-Lost Relic" Triskaidekaphobia Unchained "Underground Forest" SetFontSize 36 SetTextColor 0 0 0 # Divination Card (<2c) SetBackgroundColor 255 0 175 230 # Divination Card (<2c) @@ -1282,7 +1273,7 @@ Show # Divination Cards - <2c Show # Divination Cards - Nearly Worthless Class Divination - BaseType "A Mother's Parting Gift" "Alone in the Darkness" "Anarchy's Price" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Deathly Designs" "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Earth Drinker" "Forbidden Power" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Her Mask" Heterochromia Hope Hubris "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lost Worlds" Loyalty "Lysah's Respite" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Sambodhi's Vow" "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Bones" "The Brittle Emperor" "The Calling" "The Cataclysm" "The Coming Storm" "The Conduit" "The Darkest Dream" "The Deal" "The Deceiver" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Harvester" "The Hermit" "The Hunger" "The Insatiable" "The Jester" "The King's Blade" "The Lich" "The Lion" "The Lord in Black" "The Lunaris Priestess" "The Mad King" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Puzzle" "The Realm" "The Rite of Elements" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scavenger" "The Scholar" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Visionary" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "Thirst for Knowledge" Tranquillity "Treasure Hunter" "Volatile Power" + BaseType "A Mother's Parting Gift" "Akil's Prophecy" "Alone in the Darkness" "Anarchy's Price" "Arrogance of the Vaal" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Echoes of Love" "Forbidden Power" Friendship "Gemcutter's Promise" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Harmony of Souls" "Her Mask" Hope Hubris Humility "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lingering Remnants" "Lost Worlds" Loyalty "Lysah's Respite" "Merciless Armament" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Aesthete" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Cache" "The Cacophony" "The Calling" "The Cataclysm" "The Chains that Bind" "The Coming Storm" "The Conduit" "The Dark Mage" "The Darkest Dream" "The Deal" "The Deceiver" "The Deep Ones" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Garish Power" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Hale Heart" "The Harvester" "The Hermit" "The Incantation" "The Insatiable" "The Jester" "The Journalist" "The Journey" "The King's Blade" "The Lich" "The Lord in Black" "The Lord of Celebration" "The Lunaris Priestess" "The Master" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Price of Protection" "The Puzzle" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scholar" "The Seeker" "The Side Quest" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Standoff" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Thaumaturgist" "The Throne" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Tyrant" "The Unexpected Prize" "The Union" "The Valley of Steel Boxes" "The Visionary" "The Void" "The Warlord" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "The Wretched" "Thirst for Knowledge" Tranquillity "Treasure Hunter" Vanity "Vile Power" "Volatile Power" SetFontSize 36 SetTextColor 0 0 0 # Divination Card (Low) SetBackgroundColor 255 0 175 170 # Divination Card (Low) @@ -1477,7 +1468,7 @@ Show # 5+ Links - Low Value - Rare # Section: Enchantments Show # Enchantments - 20c+ Unique - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1488,7 +1479,7 @@ Show # Enchantments - 20c+ Unique PlayEffect Red Show # Enchantments - 20c+ Other - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" SetFontSize 45 SetTextColor 0 100 220 # Crafting Base (High) SetBackgroundColor 255 255 255 255 # Crafting Base (High) @@ -1498,7 +1489,7 @@ Show # Enchantments - 20c+ Other PlayEffect Red Show # Enchantments - 10c+ Unique - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1509,7 +1500,7 @@ Show # Enchantments - 10c+ Unique PlayEffect Red Show # Enchantments - 10c+ Other - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" SetFontSize 45 SetTextColor 255 255 255 # Crafting Base (Mid) SetBackgroundColor 60 60 60 255 # Crafting Base (Mid) @@ -1594,7 +1585,7 @@ Show # Jewels - Unique - Other Show # Uniques - 15c+ Rarity = Unique - BaseType "Arcanist Gloves" "Assassin's Boots" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Crusader Helmet" "Deerskin Gloves" "Ezomyte Tower Shield" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Jet Amulet" "Jewelled Foil" "Karui Maul" "Nubuck Boots" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Savant's Robe" "Siege Axe" "Silk Gloves" "Sorcerer Boots" "Two-Stone Ring" "Wyrmscale Doublet" "Vaal Rapier" "Ornate Quiver" "Golden Visage" + BaseType "Ambush Mitts" "Arcanist Gloves" "Arcanist Slippers" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Deerskin Gloves" "Ezomyte Tower Shield" "Gemstone Sword" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Holy Chainmail" "Jet Amulet" "Jewelled Foil" "Jingling Spirit Shield" "Karui Maul" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Sapphire Flask" "Savant's Robe" "Shackled Boots" "Siege Axe" "Silk Gloves" "Slink Boots" "Sorcerer Boots" "Steel Ring" "Two-Stone Ring" "Varnished Coat" "Wyrmscale Doublet" "Zodiac Leather" "Riveted Gloves" "Steelwood Bow" "Vaal Rapier" "Ornate Quiver" "Steel Circlet" "Golden Visage" "Ezomyte Dagger" "Saint's Hauberk" "Fluted Bascinet" SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) SetBackgroundColor 255 255 255 255 # Unique (15c+) @@ -1612,7 +1603,7 @@ Show # Uniques - 15c+ Show # Uniques - 5-15c Rarity = Unique - BaseType "Bismuth Flask" "Brass Spirit Shield" "Bronzescale Boots" "Clasped Boots" "Clasped Mitts" "Ezomyte Burgonet" "Full Wyrmscale" "Gold Ring" "Granite Flask" "Hydrascale Boots" "Hydrascale Gauntlets" "Jingling Spirit Shield" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Sapphire Flask" "Steel Ring" "Steelscale Gauntlets" "Studded Belt" "Timeworn Claw" "Vaal Blade" "Variscite Blade" "Zodiac Leather" "Riveted Gloves" "Ezomyte Dagger" + BaseType "Assassin's Boots" "Champion Kite Shield" "Clasped Mitts" "Exquisite Leather" "Gold Ring" "Granite Flask" "Highborn Staff" "Hydrascale Gauntlets" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Stibnite Flask" "Studded Belt" "Timeworn Claw" "Topaz Ring" "Vaal Blade" "Lacquered Buckler" "Butcher Axe" SetFontSize 45 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1641,7 +1632,7 @@ Show # Uniques - Enchanted Show # Uniques - 3-5c Rarity = Unique - BaseType "Amber Amulet" "Ambush Mitts" "Archon Kite Shield" "Assassin Bow" "Carved Wand" "Chain Belt" "Champion Kite Shield" "Coiled Staff" "Conjurer Boots" "Coral Amulet" Cutlass "Festival Mask" "Fiend Dagger" "Full Dragonscale" "Gemstone Sword" "Gold Amulet" "Golden Plate" "Imperial Maul" "Imperial Staff" "Iron Sceptre" "Jade Amulet" "Jasper Chopper" "Judgement Staff" "Karui Chopper" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Mace" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Royal Skean" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Shackled Boots" "Simple Robe" "Slink Boots" "Soldier Gloves" "Stibnite Flask" "Topaz Ring" "Turquoise Amulet" "Vaal Spirit Shield" "Varnished Coat" "Void Axe" "Wool Gloves" "Steelwood Bow" "Ezomyte Spiked Shield" "Steel Circlet" "Tyrant's Sekhem" "Saint's Hauberk" "Two-Toned Boots" + BaseType "Amber Amulet" "Assassin Bow" "Bismuth Flask" "Blue Pearl Amulet" "Carved Wand" "Citadel Bow" "Clasped Boots" "Conjurer Boots" "Coral Amulet" "Corsair Sword" Cutlass "Diamond Flask" "Ezomyte Burgonet" "Fiend Dagger" "Grand Mana Flask" "Heavy Belt" "Hydrascale Boots" "Imperial Maul" "Imperial Skean" "Iron Ring" "Jade Amulet" "Judgement Staff" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Bascinet" "Nightmare Mace" "Nubuck Boots" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Ruby Ring" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Sanctified Mana Flask" "Simple Robe" "Sinner Tricorne" "Slaughter Knife" "Stealth Boots" "Sulphur Flask" "Topaz Flask" "Turquoise Amulet" "Unset Ring" "Vaal Spirit Shield" "Void Axe" "Ezomyte Spiked Shield" "Tyrant's Sekhem" "Two-Toned Boots" "Crimson Round Shield" SetFontSize 40 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1662,17 +1653,6 @@ Show # Uniques - <3c - Unique Rings MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange -Show # Uniques - <3c - Replica - Rarity = Unique - Replica True - SetFontSize 45 - SetTextColor 255 128 64 # Unique - SetBackgroundColor 50 25 12 230 # Unique - SetBorderColor 255 255 0 255 # Unique (3-5c) - PlayAlertSound 4 200 # Mid Value - MinimapIcon 0 Orange UpsideDownHouse - PlayEffect Orange - #-----# # <3c # #-----# @@ -1690,10 +1670,20 @@ Show # Uniques - <3c - ilvl <67 MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange +Show # Uniques - <3c - Replica + Rarity = Unique + Replica True + SetFontSize 45 + SetTextColor 255 128 64 # Unique + SetBackgroundColor 50 25 12 230 # Unique + SetBorderColor 180 90 45 255 # Unique + PlayAlertSound 4 200 # Mid Value + MinimapIcon 0 Orange UpsideDownHouse + PlayEffect Orange # Limited drop. May share a BaseType with an extremely valuable item, League specific, or boss drop only. Show # Uniques - Limited Rarity = Unique - BaseType "Agate Amulet" "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Cardinal Round Shield" "Carnal Mitts" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crystal Belt" "Exquisite Leather" Gavel "Goathide Boots" "Goliath Greaves" "Grand Mana Flask" "Great Crown" "Gut Ripper" "Harlequin Mask" "Heavy Belt" "Highborn Staff" "Holy Chainmail" "Hubris Circlet" "Imperial Skean" "Infernal Sword" "Iron Ring" Labrys "Leather Belt" "Legion Sword" "Lion Pelt" Maelstr "Midnight Blade" "Moonstone Ring" "Necromancer Circlet" "Nightmare Bascinet" "Opal Ring" "Painted Tower Shield" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Ruby Ring" "Sage Wand" "Sapphire Ring" "Serpentscale Gauntlets" "Silken Hood" "Silver Flask" "Sinner Tricorne" "Soldier Helmet" "Stealth Boots" "Sulphur Flask" "Terror Claw" "Titan Gauntlets" "Titan Greaves" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Unset Ring" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" + BaseType "Agate Amulet" Ambusher "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Archon Kite Shield" "Assassin's Mitts" "Astral Plate" "Branded Kite Shield" "Bronzescale Boots" "Cardinal Round Shield" "Carnal Armour" "Carnal Mitts" "Chain Belt" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crusader Helmet" "Crystal Belt" "Death Bow" "Decimation Bow" "Demon Dagger" "Ebony Tower Shield" "Elegant Ringmail" "Engraved Wand" "Eternal Sword" "Ezomyte Staff" "Full Wyrmscale" Gavel Gladius "Goathide Boots" "Gold Amulet" "Golden Plate" "Goliath Greaves" "Great Crown" "Great Mallet" "Grinning Fetish" "Gut Ripper" "Harlequin Mask" "Hubris Circlet" "Imperial Bow" "Infernal Sword" "Jasper Chopper" Labrys "Laminated Kite Shield" Lathi "Leather Belt" "Legion Boots" "Legion Sword" "Lion Pelt" Maelstr Meatgrinder "Midnight Blade" "Mind Cage" "Mirrored Spiked Shield" "Moonstone Ring" "Murder Boots" "Nailed Fist" "Necromancer Circlet" "Opal Ring" "Ornate Mace" "Painted Tower Shield" "Paua Ring" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Sage Wand" "Samite Gloves" "Sapphire Ring" "Sentinel Jacket" "Serpentscale Gauntlets" "Shadow Sceptre" "Shagreen Boots" "Siege Helmet" "Silken Hood" "Silver Flask" "Soldier Boots" "Soldier Gloves" "Soldier Helmet" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Terror Claw" "Terror Maul" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Variscite Blade" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" SetFontSize 40 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique diff --git a/Resources/Filters/L3_Semi_Strict_Highwind.filter b/Resources/Filters/L3_Semi_Strict_Highwind.filter index 683148e..9304d4d 100644 --- a/Resources/Filters/L3_Semi_Strict_Highwind.filter +++ b/Resources/Filters/L3_Semi_Strict_Highwind.filter @@ -1,7 +1,7 @@ ############################################ -## HIGHWIND'S SEMI-STRICT FILTER 3.12.3 ## +## HIGHWIND'S SEMI-STRICT FILTER 3.12.4 ## ############################################ -## Release Date: September 19, 2020 ## +## Release Date: September 23, 2020 ## ############################################ #--------------# @@ -1226,15 +1226,6 @@ Hide # Gems - Other # "The Master" "The Master Artisan" # "The Wolf" "The Wolf's Shadow" "The Wolf's Legacy" -Show # Divination Cards - <2c (Conflicts) - Class Divination - BaseType "The Master Artisan" - SetFontSize 36 - SetTextColor 0 0 0 # Divination Card (<2c) - SetBackgroundColor 255 0 175 230 # Divination Card (<2c) - SetBorderColor 150 30 100 255 # Divination Card (<2c) - DisableDropSound - Hide # Divination Cards - Nearly Worthless (Conflicts) Class Divination BaseType "The Demoness" "The Wolf's Legacy" "The Wolf's Shadow" @@ -1246,7 +1237,7 @@ Hide # Divination Cards - Nearly Worthless (Conflicts) Show # Divination Cards - 10c+ Class Divination - BaseType "Brother's Stash" "Desecrated Virtue" "Unrequited Love" "A Familiar Call" "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Blessing of God" "Dark Dreams" "Dying Anguish" "Etched in Blood" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Prometheus' Armoury" "Seven Years Bad Luck" "Squandered Prosperity" "Succor of the Sinless" "The Awakened" "The Bargain" "The Celestial Stone" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Mayor" "The Nurse" "The Offering" "The Price of Loyalty" "The Progeny of Lunaris" "The Queen" "The Saint's Treasure" "The Samurai's Eye" "The Soul" "The Spark and the Flame" "The Strategist" "The Sustenance" "The White Knight" "Void of the Elements" "Wealth and Power" + BaseType "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Brother's Stash" "Desecrated Virtue" "Dying Anguish" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Seven Years Bad Luck" "Succor of the Sinless" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Gulf" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Nurse" "The Offering" "The Pact" "The Price of Loyalty" "The Progeny of Lunaris" "The Saint's Treasure" "The Samurai's Eye" "The Spark and the Flame" "The Sustenance" "The White Knight" "The World Eater" "Unrequited Love" "Wealth and Power" SetFontSize 45 SetTextColor 255 0 175 # Divination Card (10c+) SetBackgroundColor 255 255 255 255 # Divination Card (10c+) @@ -1257,7 +1248,7 @@ Show # Divination Cards - 10c+ Show # Divination Cards - 2-10c Class Divination - BaseType "Cursed Words" "The Cache" "Triskaidekaphobia" "The Bitter Blossom" "The Gulf" "A Note in the Wind" "Akil's Prophecy" "Arrogance of the Vaal" "Bowyer's Dream" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Demigod's Wager" "Divine Justice" "Echoes of Love" Friendship "Lucky Connections" "Mawr Blaidd" "No Traces" "Peaceful Moments" Perfection "Pride Before the Fall" Rebirth Remembrance "The Artist" "The Betrayal" "The Breach" "The Cartographer" "The Celestial Justicar" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Hale Heart" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Landing" "The Life Thief" "The Lord of Celebration" "The Master" "The Old Man" "The Polymath" "The Porcupine" "The Primordial" "The Professor" "The Risk" "The Sacrifice" "The Sephirot" "The Undaunted" "The Undisputed" "The Valkyrie" "The Valley of Steel Boxes" "The Vast" "The Void" "The Warlord" "The Wolven King's Bite" "The World Eater" "The Wrath" "Time-Lost Relic" "Underground Forest" "Vinia's Token" + BaseType "A Familiar Call" "A Note in the Wind" "Blessing of God" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Cursed Words" "Dark Dreams" "Demigod's Wager" "Etched in Blood" "Lucky Connections" "No Traces" "Peaceful Moments" "Pride Before the Fall" Remembrance "Squandered Prosperity" "The Academic" "The Artist" "The Awakened" "The Bargain" "The Betrayal" "The Bitter Blossom" "The Brittle Emperor" "The Cartographer" "The Celestial Justicar" "The Celestial Stone" "The Cursed King" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Jeweller's Boon" "The King's Heart" "The Landing" "The Last One Standing" "The Life Thief" "The Mayor" "The Polymath" "The Porcupine" "The Primordial" "The Queen" "The Risk" "The Sacrifice" "The Sephirot" "The Soul" "The Strategist" "The Undisputed" "The Wolven King's Bite" "The Wrath" "Vinia's Token" "Void of the Elements" SetFontSize 45 SetTextColor 255 255 255 # Divination Card (2-10c) SetBackgroundColor 255 0 175 255 # Divination Card (2-10c) @@ -1268,7 +1259,7 @@ Show # Divination Cards - 2-10c Show # Divination Cards - <2c Class Divination - BaseType "The Journalist" "The Unexpected Prize" "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Buried Treasure" "Coveted Possession" "Emperor of Purity" "Emperor's Luck" "Gemcutter's Promise" "Harmony of Souls" Humility "Lingering Remnants" "Lucky Deck" "Merciless Armament" "The Aesthete" "The Cacophony" "The Catalyst" "The Chains that Bind" "The Chosen" "The Cursed King" "The Dark Mage" "The Deep Ones" "The Dreamer" "The Endless Darkness" "The Garish Power" "The Incantation" "The Jeweller's Boon" "The Journey" "The King's Heart" "The Last One Standing" "The Pact" "The Price of Protection" "The Seeker" "The Side Quest" "The Standoff" "The Thaumaturgist" "The Throne" "The Tinkerer's Table" "The Tyrant" "The Union" "The Wilted Rose" "The Wolf" "The Wretched" "Three Faces in the Dark" "Three Voices" Vanity "Vile Power" + BaseType "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Bowyer's Dream" "Buried Treasure" "Coveted Possession" "Deathly Designs" "Divine Justice" "Earth Drinker" "Emperor of Purity" "Emperor's Luck" Heterochromia "Lucky Deck" "Mawr Blaidd" Perfection "Prometheus' Armoury" Rebirth "Sambodhi's Vow" "The Bones" "The Breach" "The Catalyst" "The Chosen" "The Dreamer" "The Endless Darkness" "The Hunger" "The Lion" "The Mad King" "The Master Artisan" "The Old Man" "The Professor" "The Realm" "The Rite of Elements" "The Scavenger" "The Tinkerer's Table" "The Undaunted" "The Valkyrie" "The Vast" "The Wilted Rose" "The Wolf" "Three Faces in the Dark" "Three Voices" "Time-Lost Relic" Triskaidekaphobia Unchained "Underground Forest" SetFontSize 36 SetTextColor 0 0 0 # Divination Card (<2c) SetBackgroundColor 255 0 175 230 # Divination Card (<2c) @@ -1277,7 +1268,7 @@ Show # Divination Cards - <2c Hide # Divination Cards - Nearly Worthless Class Divination - BaseType "A Mother's Parting Gift" "Alone in the Darkness" "Anarchy's Price" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Deathly Designs" "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Earth Drinker" "Forbidden Power" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Her Mask" Heterochromia Hope Hubris "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lost Worlds" Loyalty "Lysah's Respite" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Sambodhi's Vow" "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Bones" "The Brittle Emperor" "The Calling" "The Cataclysm" "The Coming Storm" "The Conduit" "The Darkest Dream" "The Deal" "The Deceiver" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Harvester" "The Hermit" "The Hunger" "The Insatiable" "The Jester" "The King's Blade" "The Lich" "The Lion" "The Lord in Black" "The Lunaris Priestess" "The Mad King" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Puzzle" "The Realm" "The Rite of Elements" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scavenger" "The Scholar" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Visionary" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "Thirst for Knowledge" Tranquillity "Treasure Hunter" "Volatile Power" + BaseType "A Mother's Parting Gift" "Akil's Prophecy" "Alone in the Darkness" "Anarchy's Price" "Arrogance of the Vaal" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Echoes of Love" "Forbidden Power" Friendship "Gemcutter's Promise" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Harmony of Souls" "Her Mask" Hope Hubris Humility "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lingering Remnants" "Lost Worlds" Loyalty "Lysah's Respite" "Merciless Armament" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Aesthete" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Cache" "The Cacophony" "The Calling" "The Cataclysm" "The Chains that Bind" "The Coming Storm" "The Conduit" "The Dark Mage" "The Darkest Dream" "The Deal" "The Deceiver" "The Deep Ones" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Garish Power" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Hale Heart" "The Harvester" "The Hermit" "The Incantation" "The Insatiable" "The Jester" "The Journalist" "The Journey" "The King's Blade" "The Lich" "The Lord in Black" "The Lord of Celebration" "The Lunaris Priestess" "The Master" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Price of Protection" "The Puzzle" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scholar" "The Seeker" "The Side Quest" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Standoff" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Thaumaturgist" "The Throne" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Tyrant" "The Unexpected Prize" "The Union" "The Valley of Steel Boxes" "The Visionary" "The Void" "The Warlord" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "The Wretched" "Thirst for Knowledge" Tranquillity "Treasure Hunter" Vanity "Vile Power" "Volatile Power" SetFontSize 36 SetTextColor 0 0 0 # Divination Card (Low) SetBackgroundColor 255 0 175 170 # Divination Card (Low) @@ -1475,7 +1466,7 @@ Hide # 5+ Links - Low Value - Rare # Section: Enchantments Show # Enchantments - 20c+ Unique - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1486,7 +1477,7 @@ Show # Enchantments - 20c+ Unique PlayEffect Red Show # Enchantments - 20c+ Other - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" SetFontSize 45 SetTextColor 0 100 220 # Crafting Base (High) SetBackgroundColor 255 255 255 255 # Crafting Base (High) @@ -1496,7 +1487,7 @@ Show # Enchantments - 20c+ Other PlayEffect Red Show # Enchantments - 10c+ Unique - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1507,7 +1498,7 @@ Show # Enchantments - 10c+ Unique PlayEffect Red Show # Enchantments - 10c+ Other - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" SetFontSize 45 SetTextColor 255 255 255 # Crafting Base (Mid) SetBackgroundColor 60 60 60 255 # Crafting Base (Mid) @@ -1592,7 +1583,7 @@ Show # Jewels - Unique - Other Show # Uniques - 15c+ Rarity = Unique - BaseType "Arcanist Gloves" "Assassin's Boots" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Crusader Helmet" "Deerskin Gloves" "Ezomyte Tower Shield" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Jet Amulet" "Jewelled Foil" "Karui Maul" "Nubuck Boots" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Savant's Robe" "Siege Axe" "Silk Gloves" "Sorcerer Boots" "Two-Stone Ring" "Wyrmscale Doublet" "Vaal Rapier" "Ornate Quiver" "Golden Visage" + BaseType "Ambush Mitts" "Arcanist Gloves" "Arcanist Slippers" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Deerskin Gloves" "Ezomyte Tower Shield" "Gemstone Sword" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Holy Chainmail" "Jet Amulet" "Jewelled Foil" "Jingling Spirit Shield" "Karui Maul" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Sapphire Flask" "Savant's Robe" "Shackled Boots" "Siege Axe" "Silk Gloves" "Slink Boots" "Sorcerer Boots" "Steel Ring" "Two-Stone Ring" "Varnished Coat" "Wyrmscale Doublet" "Zodiac Leather" "Riveted Gloves" "Steelwood Bow" "Vaal Rapier" "Ornate Quiver" "Steel Circlet" "Golden Visage" "Ezomyte Dagger" "Saint's Hauberk" "Fluted Bascinet" SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) SetBackgroundColor 255 255 255 255 # Unique (15c+) @@ -1610,7 +1601,7 @@ Show # Uniques - 15c+ Show # Uniques - 5-15c Rarity = Unique - BaseType "Bismuth Flask" "Brass Spirit Shield" "Bronzescale Boots" "Clasped Boots" "Clasped Mitts" "Ezomyte Burgonet" "Full Wyrmscale" "Gold Ring" "Granite Flask" "Hydrascale Boots" "Hydrascale Gauntlets" "Jingling Spirit Shield" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Sapphire Flask" "Steel Ring" "Steelscale Gauntlets" "Studded Belt" "Timeworn Claw" "Vaal Blade" "Variscite Blade" "Zodiac Leather" "Riveted Gloves" "Ezomyte Dagger" + BaseType "Assassin's Boots" "Champion Kite Shield" "Clasped Mitts" "Exquisite Leather" "Gold Ring" "Granite Flask" "Highborn Staff" "Hydrascale Gauntlets" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Stibnite Flask" "Studded Belt" "Timeworn Claw" "Topaz Ring" "Vaal Blade" "Lacquered Buckler" "Butcher Axe" SetFontSize 45 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1639,7 +1630,7 @@ Show # Uniques - Enchanted Show # Uniques - 3-5c Rarity = Unique - BaseType "Amber Amulet" "Ambush Mitts" "Archon Kite Shield" "Assassin Bow" "Carved Wand" "Chain Belt" "Champion Kite Shield" "Coiled Staff" "Conjurer Boots" "Coral Amulet" Cutlass "Festival Mask" "Fiend Dagger" "Full Dragonscale" "Gemstone Sword" "Gold Amulet" "Golden Plate" "Imperial Maul" "Imperial Staff" "Iron Sceptre" "Jade Amulet" "Jasper Chopper" "Judgement Staff" "Karui Chopper" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Mace" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Royal Skean" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Shackled Boots" "Simple Robe" "Slink Boots" "Soldier Gloves" "Stibnite Flask" "Topaz Ring" "Turquoise Amulet" "Vaal Spirit Shield" "Varnished Coat" "Void Axe" "Wool Gloves" "Steelwood Bow" "Ezomyte Spiked Shield" "Steel Circlet" "Tyrant's Sekhem" "Saint's Hauberk" "Two-Toned Boots" + BaseType "Amber Amulet" "Assassin Bow" "Bismuth Flask" "Blue Pearl Amulet" "Carved Wand" "Citadel Bow" "Clasped Boots" "Conjurer Boots" "Coral Amulet" "Corsair Sword" Cutlass "Diamond Flask" "Ezomyte Burgonet" "Fiend Dagger" "Grand Mana Flask" "Heavy Belt" "Hydrascale Boots" "Imperial Maul" "Imperial Skean" "Iron Ring" "Jade Amulet" "Judgement Staff" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Bascinet" "Nightmare Mace" "Nubuck Boots" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Ruby Ring" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Sanctified Mana Flask" "Simple Robe" "Sinner Tricorne" "Slaughter Knife" "Stealth Boots" "Sulphur Flask" "Topaz Flask" "Turquoise Amulet" "Unset Ring" "Vaal Spirit Shield" "Void Axe" "Ezomyte Spiked Shield" "Tyrant's Sekhem" "Two-Toned Boots" "Crimson Round Shield" SetFontSize 40 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1660,17 +1651,6 @@ Show # Uniques - <3c - Unique Rings MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange -Show # Uniques - <3c - Replica - Rarity = Unique - Replica True - SetFontSize 45 - SetTextColor 255 128 64 # Unique - SetBackgroundColor 50 25 12 230 # Unique - SetBorderColor 255 255 0 255 # Unique (3-5c) - PlayAlertSound 4 200 # Mid Value - MinimapIcon 0 Orange UpsideDownHouse - PlayEffect Orange - #-----# # <3c # #-----# @@ -1688,10 +1668,20 @@ Show # Uniques - <3c - ilvl <67 MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange +Show # Uniques - <3c - Replica + Rarity = Unique + Replica True + SetFontSize 45 + SetTextColor 255 128 64 # Unique + SetBackgroundColor 50 25 12 230 # Unique + SetBorderColor 180 90 45 255 # Unique + PlayAlertSound 4 200 # Mid Value + MinimapIcon 0 Orange UpsideDownHouse + PlayEffect Orange # Limited drop. May share a BaseType with an extremely valuable item, League specific, or boss drop only. Show # Uniques - Limited Rarity = Unique - BaseType "Agate Amulet" "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Cardinal Round Shield" "Carnal Mitts" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crystal Belt" "Exquisite Leather" Gavel "Goathide Boots" "Goliath Greaves" "Grand Mana Flask" "Great Crown" "Gut Ripper" "Harlequin Mask" "Heavy Belt" "Highborn Staff" "Holy Chainmail" "Hubris Circlet" "Imperial Skean" "Infernal Sword" "Iron Ring" Labrys "Leather Belt" "Legion Sword" "Lion Pelt" Maelstr "Midnight Blade" "Moonstone Ring" "Necromancer Circlet" "Nightmare Bascinet" "Opal Ring" "Painted Tower Shield" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Ruby Ring" "Sage Wand" "Sapphire Ring" "Serpentscale Gauntlets" "Silken Hood" "Silver Flask" "Sinner Tricorne" "Soldier Helmet" "Stealth Boots" "Sulphur Flask" "Terror Claw" "Titan Gauntlets" "Titan Greaves" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Unset Ring" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" + BaseType "Agate Amulet" Ambusher "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Archon Kite Shield" "Assassin's Mitts" "Astral Plate" "Branded Kite Shield" "Bronzescale Boots" "Cardinal Round Shield" "Carnal Armour" "Carnal Mitts" "Chain Belt" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crusader Helmet" "Crystal Belt" "Death Bow" "Decimation Bow" "Demon Dagger" "Ebony Tower Shield" "Elegant Ringmail" "Engraved Wand" "Eternal Sword" "Ezomyte Staff" "Full Wyrmscale" Gavel Gladius "Goathide Boots" "Gold Amulet" "Golden Plate" "Goliath Greaves" "Great Crown" "Great Mallet" "Grinning Fetish" "Gut Ripper" "Harlequin Mask" "Hubris Circlet" "Imperial Bow" "Infernal Sword" "Jasper Chopper" Labrys "Laminated Kite Shield" Lathi "Leather Belt" "Legion Boots" "Legion Sword" "Lion Pelt" Maelstr Meatgrinder "Midnight Blade" "Mind Cage" "Mirrored Spiked Shield" "Moonstone Ring" "Murder Boots" "Nailed Fist" "Necromancer Circlet" "Opal Ring" "Ornate Mace" "Painted Tower Shield" "Paua Ring" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Sage Wand" "Samite Gloves" "Sapphire Ring" "Sentinel Jacket" "Serpentscale Gauntlets" "Shadow Sceptre" "Shagreen Boots" "Siege Helmet" "Silken Hood" "Silver Flask" "Soldier Boots" "Soldier Gloves" "Soldier Helmet" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Terror Claw" "Terror Maul" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Variscite Blade" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" SetFontSize 40 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique diff --git a/Resources/Filters/L4_Strict_Highwind.filter b/Resources/Filters/L4_Strict_Highwind.filter index 2d6c796..0f2f7ce 100644 --- a/Resources/Filters/L4_Strict_Highwind.filter +++ b/Resources/Filters/L4_Strict_Highwind.filter @@ -1,7 +1,7 @@ ############################################ -## HIGHWIND'S STRICT FILTER 3.12.3 ## +## HIGHWIND'S STRICT FILTER 3.12.4 ## ############################################ -## Release Date: September 19, 2020 ## +## Release Date: September 23, 2020 ## ############################################ #--------------# @@ -1251,15 +1251,6 @@ Hide # Gems - Other # "The Master" "The Master Artisan" # "The Wolf" "The Wolf's Shadow" "The Wolf's Legacy" -Show # Divination Cards - <2c (Conflicts) - Class Divination - BaseType "The Master Artisan" - SetFontSize 36 - SetTextColor 0 0 0 # Divination Card (<2c) - SetBackgroundColor 255 0 175 230 # Divination Card (<2c) - SetBorderColor 150 30 100 255 # Divination Card (<2c) - DisableDropSound - Hide # Divination Cards - Nearly Worthless (Conflicts) Class Divination BaseType "The Demoness" "The Wolf's Legacy" "The Wolf's Shadow" @@ -1271,7 +1262,7 @@ Hide # Divination Cards - Nearly Worthless (Conflicts) Show # Divination Cards - 10c+ Class Divination - BaseType "Brother's Stash" "Desecrated Virtue" "Unrequited Love" "A Familiar Call" "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Blessing of God" "Dark Dreams" "Dying Anguish" "Etched in Blood" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Prometheus' Armoury" "Seven Years Bad Luck" "Squandered Prosperity" "Succor of the Sinless" "The Awakened" "The Bargain" "The Celestial Stone" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Mayor" "The Nurse" "The Offering" "The Price of Loyalty" "The Progeny of Lunaris" "The Queen" "The Saint's Treasure" "The Samurai's Eye" "The Soul" "The Spark and the Flame" "The Strategist" "The Sustenance" "The White Knight" "Void of the Elements" "Wealth and Power" + BaseType "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Brother's Stash" "Desecrated Virtue" "Dying Anguish" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Seven Years Bad Luck" "Succor of the Sinless" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Gulf" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Nurse" "The Offering" "The Pact" "The Price of Loyalty" "The Progeny of Lunaris" "The Saint's Treasure" "The Samurai's Eye" "The Spark and the Flame" "The Sustenance" "The White Knight" "The World Eater" "Unrequited Love" "Wealth and Power" SetFontSize 45 SetTextColor 255 0 175 # Divination Card (10c+) SetBackgroundColor 255 255 255 255 # Divination Card (10c+) @@ -1282,7 +1273,7 @@ Show # Divination Cards - 10c+ Show # Divination Cards - 2-10c Class Divination - BaseType "Cursed Words" "The Cache" "Triskaidekaphobia" "The Bitter Blossom" "The Gulf" "A Note in the Wind" "Akil's Prophecy" "Arrogance of the Vaal" "Bowyer's Dream" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Demigod's Wager" "Divine Justice" "Echoes of Love" Friendship "Lucky Connections" "Mawr Blaidd" "No Traces" "Peaceful Moments" Perfection "Pride Before the Fall" Rebirth Remembrance "The Artist" "The Betrayal" "The Breach" "The Cartographer" "The Celestial Justicar" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Hale Heart" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Landing" "The Life Thief" "The Lord of Celebration" "The Master" "The Old Man" "The Polymath" "The Porcupine" "The Primordial" "The Professor" "The Risk" "The Sacrifice" "The Sephirot" "The Undaunted" "The Undisputed" "The Valkyrie" "The Valley of Steel Boxes" "The Vast" "The Void" "The Warlord" "The Wolven King's Bite" "The World Eater" "The Wrath" "Time-Lost Relic" "Underground Forest" "Vinia's Token" + BaseType "A Familiar Call" "A Note in the Wind" "Blessing of God" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Cursed Words" "Dark Dreams" "Demigod's Wager" "Etched in Blood" "Lucky Connections" "No Traces" "Peaceful Moments" "Pride Before the Fall" Remembrance "Squandered Prosperity" "The Academic" "The Artist" "The Awakened" "The Bargain" "The Betrayal" "The Bitter Blossom" "The Brittle Emperor" "The Cartographer" "The Celestial Justicar" "The Celestial Stone" "The Cursed King" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Jeweller's Boon" "The King's Heart" "The Landing" "The Last One Standing" "The Life Thief" "The Mayor" "The Polymath" "The Porcupine" "The Primordial" "The Queen" "The Risk" "The Sacrifice" "The Sephirot" "The Soul" "The Strategist" "The Undisputed" "The Wolven King's Bite" "The Wrath" "Vinia's Token" "Void of the Elements" SetFontSize 45 SetTextColor 255 255 255 # Divination Card (2-10c) SetBackgroundColor 255 0 175 255 # Divination Card (2-10c) @@ -1293,7 +1284,7 @@ Show # Divination Cards - 2-10c Show # Divination Cards - <2c Class Divination - BaseType "The Journalist" "The Unexpected Prize" "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Buried Treasure" "Coveted Possession" "Emperor of Purity" "Emperor's Luck" "Gemcutter's Promise" "Harmony of Souls" Humility "Lingering Remnants" "Lucky Deck" "Merciless Armament" "The Aesthete" "The Cacophony" "The Catalyst" "The Chains that Bind" "The Chosen" "The Cursed King" "The Dark Mage" "The Deep Ones" "The Dreamer" "The Endless Darkness" "The Garish Power" "The Incantation" "The Jeweller's Boon" "The Journey" "The King's Heart" "The Last One Standing" "The Pact" "The Price of Protection" "The Seeker" "The Side Quest" "The Standoff" "The Thaumaturgist" "The Throne" "The Tinkerer's Table" "The Tyrant" "The Union" "The Wilted Rose" "The Wolf" "The Wretched" "Three Faces in the Dark" "Three Voices" Vanity "Vile Power" + BaseType "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Bowyer's Dream" "Buried Treasure" "Coveted Possession" "Deathly Designs" "Divine Justice" "Earth Drinker" "Emperor of Purity" "Emperor's Luck" Heterochromia "Lucky Deck" "Mawr Blaidd" Perfection "Prometheus' Armoury" Rebirth "Sambodhi's Vow" "The Bones" "The Breach" "The Catalyst" "The Chosen" "The Dreamer" "The Endless Darkness" "The Hunger" "The Lion" "The Mad King" "The Master Artisan" "The Old Man" "The Professor" "The Realm" "The Rite of Elements" "The Scavenger" "The Tinkerer's Table" "The Undaunted" "The Valkyrie" "The Vast" "The Wilted Rose" "The Wolf" "Three Faces in the Dark" "Three Voices" "Time-Lost Relic" Triskaidekaphobia Unchained "Underground Forest" SetFontSize 36 SetTextColor 0 0 0 # Divination Card (<2c) SetBackgroundColor 255 0 175 230 # Divination Card (<2c) @@ -1302,7 +1293,7 @@ Show # Divination Cards - <2c Hide # Divination Cards - Nearly Worthless Class Divination - BaseType "A Mother's Parting Gift" "Alone in the Darkness" "Anarchy's Price" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Deathly Designs" "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Earth Drinker" "Forbidden Power" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Her Mask" Heterochromia Hope Hubris "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lost Worlds" Loyalty "Lysah's Respite" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Sambodhi's Vow" "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Bones" "The Brittle Emperor" "The Calling" "The Cataclysm" "The Coming Storm" "The Conduit" "The Darkest Dream" "The Deal" "The Deceiver" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Harvester" "The Hermit" "The Hunger" "The Insatiable" "The Jester" "The King's Blade" "The Lich" "The Lion" "The Lord in Black" "The Lunaris Priestess" "The Mad King" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Puzzle" "The Realm" "The Rite of Elements" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scavenger" "The Scholar" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Visionary" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "Thirst for Knowledge" Tranquillity "Treasure Hunter" "Volatile Power" + BaseType "A Mother's Parting Gift" "Akil's Prophecy" "Alone in the Darkness" "Anarchy's Price" "Arrogance of the Vaal" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Echoes of Love" "Forbidden Power" Friendship "Gemcutter's Promise" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Harmony of Souls" "Her Mask" Hope Hubris Humility "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lingering Remnants" "Lost Worlds" Loyalty "Lysah's Respite" "Merciless Armament" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Aesthete" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Cache" "The Cacophony" "The Calling" "The Cataclysm" "The Chains that Bind" "The Coming Storm" "The Conduit" "The Dark Mage" "The Darkest Dream" "The Deal" "The Deceiver" "The Deep Ones" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Garish Power" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Hale Heart" "The Harvester" "The Hermit" "The Incantation" "The Insatiable" "The Jester" "The Journalist" "The Journey" "The King's Blade" "The Lich" "The Lord in Black" "The Lord of Celebration" "The Lunaris Priestess" "The Master" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Price of Protection" "The Puzzle" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scholar" "The Seeker" "The Side Quest" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Standoff" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Thaumaturgist" "The Throne" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Tyrant" "The Unexpected Prize" "The Union" "The Valley of Steel Boxes" "The Visionary" "The Void" "The Warlord" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "The Wretched" "Thirst for Knowledge" Tranquillity "Treasure Hunter" Vanity "Vile Power" "Volatile Power" SetFontSize 36 SetTextColor 0 0 0 # Divination Card (Low) SetBackgroundColor 255 0 175 170 # Divination Card (Low) @@ -1506,7 +1497,7 @@ Hide # 5+ Links - Low Value - Rare # Section: Enchantments Show # Enchantments - 20c+ Unique - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1517,7 +1508,7 @@ Show # Enchantments - 20c+ Unique PlayEffect Red Show # Enchantments - 20c+ Other - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" SetFontSize 45 SetTextColor 0 100 220 # Crafting Base (High) SetBackgroundColor 255 255 255 255 # Crafting Base (High) @@ -1527,7 +1518,7 @@ Show # Enchantments - 20c+ Other PlayEffect Red Show # Enchantments - 10c+ Unique - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1538,7 +1529,7 @@ Show # Enchantments - 10c+ Unique PlayEffect Red Show # Enchantments - 10c+ Other - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" SetFontSize 45 SetTextColor 255 255 255 # Crafting Base (Mid) SetBackgroundColor 60 60 60 255 # Crafting Base (Mid) @@ -1623,7 +1614,7 @@ Show # Jewels - Unique - Other Show # Uniques - 15c+ Rarity = Unique - BaseType "Arcanist Gloves" "Assassin's Boots" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Crusader Helmet" "Deerskin Gloves" "Ezomyte Tower Shield" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Jet Amulet" "Jewelled Foil" "Karui Maul" "Nubuck Boots" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Savant's Robe" "Siege Axe" "Silk Gloves" "Sorcerer Boots" "Two-Stone Ring" "Wyrmscale Doublet" "Vaal Rapier" "Ornate Quiver" "Golden Visage" + BaseType "Ambush Mitts" "Arcanist Gloves" "Arcanist Slippers" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Deerskin Gloves" "Ezomyte Tower Shield" "Gemstone Sword" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Holy Chainmail" "Jet Amulet" "Jewelled Foil" "Jingling Spirit Shield" "Karui Maul" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Sapphire Flask" "Savant's Robe" "Shackled Boots" "Siege Axe" "Silk Gloves" "Slink Boots" "Sorcerer Boots" "Steel Ring" "Two-Stone Ring" "Varnished Coat" "Wyrmscale Doublet" "Zodiac Leather" "Riveted Gloves" "Steelwood Bow" "Vaal Rapier" "Ornate Quiver" "Steel Circlet" "Golden Visage" "Ezomyte Dagger" "Saint's Hauberk" "Fluted Bascinet" SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) SetBackgroundColor 255 255 255 255 # Unique (15c+) @@ -1641,7 +1632,7 @@ Show # Uniques - 15c+ Show # Uniques - 5-15c Rarity = Unique - BaseType "Bismuth Flask" "Brass Spirit Shield" "Bronzescale Boots" "Clasped Boots" "Clasped Mitts" "Ezomyte Burgonet" "Full Wyrmscale" "Gold Ring" "Granite Flask" "Hydrascale Boots" "Hydrascale Gauntlets" "Jingling Spirit Shield" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Sapphire Flask" "Steel Ring" "Steelscale Gauntlets" "Studded Belt" "Timeworn Claw" "Vaal Blade" "Variscite Blade" "Zodiac Leather" "Riveted Gloves" "Ezomyte Dagger" + BaseType "Assassin's Boots" "Champion Kite Shield" "Clasped Mitts" "Exquisite Leather" "Gold Ring" "Granite Flask" "Highborn Staff" "Hydrascale Gauntlets" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Stibnite Flask" "Studded Belt" "Timeworn Claw" "Topaz Ring" "Vaal Blade" "Lacquered Buckler" "Butcher Axe" SetFontSize 45 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1670,7 +1661,7 @@ Show # Uniques - Enchanted Show # Uniques - 3-5c Rarity = Unique - BaseType "Amber Amulet" "Ambush Mitts" "Archon Kite Shield" "Assassin Bow" "Carved Wand" "Chain Belt" "Champion Kite Shield" "Coiled Staff" "Conjurer Boots" "Coral Amulet" Cutlass "Festival Mask" "Fiend Dagger" "Full Dragonscale" "Gemstone Sword" "Gold Amulet" "Golden Plate" "Imperial Maul" "Imperial Staff" "Iron Sceptre" "Jade Amulet" "Jasper Chopper" "Judgement Staff" "Karui Chopper" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Mace" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Royal Skean" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Shackled Boots" "Simple Robe" "Slink Boots" "Soldier Gloves" "Stibnite Flask" "Topaz Ring" "Turquoise Amulet" "Vaal Spirit Shield" "Varnished Coat" "Void Axe" "Wool Gloves" "Steelwood Bow" "Ezomyte Spiked Shield" "Steel Circlet" "Tyrant's Sekhem" "Saint's Hauberk" "Two-Toned Boots" + BaseType "Amber Amulet" "Assassin Bow" "Bismuth Flask" "Blue Pearl Amulet" "Carved Wand" "Citadel Bow" "Clasped Boots" "Conjurer Boots" "Coral Amulet" "Corsair Sword" Cutlass "Diamond Flask" "Ezomyte Burgonet" "Fiend Dagger" "Grand Mana Flask" "Heavy Belt" "Hydrascale Boots" "Imperial Maul" "Imperial Skean" "Iron Ring" "Jade Amulet" "Judgement Staff" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Bascinet" "Nightmare Mace" "Nubuck Boots" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Ruby Ring" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Sanctified Mana Flask" "Simple Robe" "Sinner Tricorne" "Slaughter Knife" "Stealth Boots" "Sulphur Flask" "Topaz Flask" "Turquoise Amulet" "Unset Ring" "Vaal Spirit Shield" "Void Axe" "Ezomyte Spiked Shield" "Tyrant's Sekhem" "Two-Toned Boots" "Crimson Round Shield" SetFontSize 40 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1691,17 +1682,6 @@ Show # Uniques - <3c - Unique Rings MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange -Show # Uniques - <3c - Replica - Rarity = Unique - Replica True - SetFontSize 45 - SetTextColor 255 128 64 # Unique - SetBackgroundColor 50 25 12 230 # Unique - SetBorderColor 255 255 0 255 # Unique (3-5c) - PlayAlertSound 4 200 # Mid Value - MinimapIcon 0 Orange UpsideDownHouse - PlayEffect Orange - #-----# # <3c # #-----# @@ -1719,10 +1699,20 @@ Show # Uniques - <3c - ilvl <67 MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange +Show # Uniques - <3c - Replica + Rarity = Unique + Replica True + SetFontSize 45 + SetTextColor 255 128 64 # Unique + SetBackgroundColor 50 25 12 230 # Unique + SetBorderColor 180 90 45 255 # Unique + PlayAlertSound 4 200 # Mid Value + MinimapIcon 0 Orange UpsideDownHouse + PlayEffect Orange # Limited drop. May share a BaseType with an extremely valuable item, League specific, or boss drop only. Show # Uniques - Limited Rarity = Unique - BaseType "Agate Amulet" "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Cardinal Round Shield" "Carnal Mitts" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crystal Belt" "Exquisite Leather" Gavel "Goathide Boots" "Goliath Greaves" "Grand Mana Flask" "Great Crown" "Gut Ripper" "Harlequin Mask" "Heavy Belt" "Highborn Staff" "Holy Chainmail" "Hubris Circlet" "Imperial Skean" "Infernal Sword" "Iron Ring" Labrys "Leather Belt" "Legion Sword" "Lion Pelt" Maelstr "Midnight Blade" "Moonstone Ring" "Necromancer Circlet" "Nightmare Bascinet" "Opal Ring" "Painted Tower Shield" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Ruby Ring" "Sage Wand" "Sapphire Ring" "Serpentscale Gauntlets" "Silken Hood" "Silver Flask" "Sinner Tricorne" "Soldier Helmet" "Stealth Boots" "Sulphur Flask" "Terror Claw" "Titan Gauntlets" "Titan Greaves" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Unset Ring" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" + BaseType "Agate Amulet" Ambusher "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Archon Kite Shield" "Assassin's Mitts" "Astral Plate" "Branded Kite Shield" "Bronzescale Boots" "Cardinal Round Shield" "Carnal Armour" "Carnal Mitts" "Chain Belt" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crusader Helmet" "Crystal Belt" "Death Bow" "Decimation Bow" "Demon Dagger" "Ebony Tower Shield" "Elegant Ringmail" "Engraved Wand" "Eternal Sword" "Ezomyte Staff" "Full Wyrmscale" Gavel Gladius "Goathide Boots" "Gold Amulet" "Golden Plate" "Goliath Greaves" "Great Crown" "Great Mallet" "Grinning Fetish" "Gut Ripper" "Harlequin Mask" "Hubris Circlet" "Imperial Bow" "Infernal Sword" "Jasper Chopper" Labrys "Laminated Kite Shield" Lathi "Leather Belt" "Legion Boots" "Legion Sword" "Lion Pelt" Maelstr Meatgrinder "Midnight Blade" "Mind Cage" "Mirrored Spiked Shield" "Moonstone Ring" "Murder Boots" "Nailed Fist" "Necromancer Circlet" "Opal Ring" "Ornate Mace" "Painted Tower Shield" "Paua Ring" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Sage Wand" "Samite Gloves" "Sapphire Ring" "Sentinel Jacket" "Serpentscale Gauntlets" "Shadow Sceptre" "Shagreen Boots" "Siege Helmet" "Silken Hood" "Silver Flask" "Soldier Boots" "Soldier Gloves" "Soldier Helmet" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Terror Claw" "Terror Maul" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Variscite Blade" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" SetFontSize 40 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique diff --git a/Resources/Filters/L5_Very_Strict_Highwind.filter b/Resources/Filters/L5_Very_Strict_Highwind.filter index c887674..bd6013a 100644 --- a/Resources/Filters/L5_Very_Strict_Highwind.filter +++ b/Resources/Filters/L5_Very_Strict_Highwind.filter @@ -1,7 +1,7 @@ ############################################ -## HIGHWIND'S VERY STRICT FILTER 3.12.3 ## +## HIGHWIND'S VERY STRICT FILTER 3.12.4 ## ############################################ -## Release Date: September 19, 2020 ## +## Release Date: September 23, 2020 ## ############################################ #--------------# @@ -1254,15 +1254,6 @@ Hide # Gems - Other # "The Master" "The Master Artisan" # "The Wolf" "The Wolf's Shadow" "The Wolf's Legacy" -Hide # Divination Cards - <2c (Conflicts) - Class Divination - BaseType "The Master Artisan" - SetFontSize 36 - SetTextColor 0 0 0 # Divination Card (<2c) - SetBackgroundColor 255 0 175 230 # Divination Card (<2c) - SetBorderColor 150 30 100 255 # Divination Card (<2c) - DisableDropSound - Hide # Divination Cards - Nearly Worthless (Conflicts) Class Divination BaseType "The Demoness" "The Wolf's Legacy" "The Wolf's Shadow" @@ -1274,7 +1265,7 @@ Hide # Divination Cards - Nearly Worthless (Conflicts) Show # Divination Cards - 10c+ Class Divination - BaseType "Brother's Stash" "Desecrated Virtue" "Unrequited Love" "A Familiar Call" "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Blessing of God" "Dark Dreams" "Dying Anguish" "Etched in Blood" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Prometheus' Armoury" "Seven Years Bad Luck" "Squandered Prosperity" "Succor of the Sinless" "The Awakened" "The Bargain" "The Celestial Stone" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Mayor" "The Nurse" "The Offering" "The Price of Loyalty" "The Progeny of Lunaris" "The Queen" "The Saint's Treasure" "The Samurai's Eye" "The Soul" "The Spark and the Flame" "The Strategist" "The Sustenance" "The White Knight" "Void of the Elements" "Wealth and Power" + BaseType "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Brother's Stash" "Desecrated Virtue" "Dying Anguish" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Seven Years Bad Luck" "Succor of the Sinless" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Gulf" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Nurse" "The Offering" "The Pact" "The Price of Loyalty" "The Progeny of Lunaris" "The Saint's Treasure" "The Samurai's Eye" "The Spark and the Flame" "The Sustenance" "The White Knight" "The World Eater" "Unrequited Love" "Wealth and Power" SetFontSize 45 SetTextColor 255 0 175 # Divination Card (10c+) SetBackgroundColor 255 255 255 255 # Divination Card (10c+) @@ -1285,7 +1276,7 @@ Show # Divination Cards - 10c+ Show # Divination Cards - 2-10c Class Divination - BaseType "Cursed Words" "The Cache" "Triskaidekaphobia" "The Bitter Blossom" "The Gulf" "A Note in the Wind" "Akil's Prophecy" "Arrogance of the Vaal" "Bowyer's Dream" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Demigod's Wager" "Divine Justice" "Echoes of Love" Friendship "Lucky Connections" "Mawr Blaidd" "No Traces" "Peaceful Moments" Perfection "Pride Before the Fall" Rebirth Remembrance "The Artist" "The Betrayal" "The Breach" "The Cartographer" "The Celestial Justicar" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Hale Heart" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Landing" "The Life Thief" "The Lord of Celebration" "The Master" "The Old Man" "The Polymath" "The Porcupine" "The Primordial" "The Professor" "The Risk" "The Sacrifice" "The Sephirot" "The Undaunted" "The Undisputed" "The Valkyrie" "The Valley of Steel Boxes" "The Vast" "The Void" "The Warlord" "The Wolven King's Bite" "The World Eater" "The Wrath" "Time-Lost Relic" "Underground Forest" "Vinia's Token" + BaseType "A Familiar Call" "A Note in the Wind" "Blessing of God" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Cursed Words" "Dark Dreams" "Demigod's Wager" "Etched in Blood" "Lucky Connections" "No Traces" "Peaceful Moments" "Pride Before the Fall" Remembrance "Squandered Prosperity" "The Academic" "The Artist" "The Awakened" "The Bargain" "The Betrayal" "The Bitter Blossom" "The Brittle Emperor" "The Cartographer" "The Celestial Justicar" "The Celestial Stone" "The Cursed King" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Jeweller's Boon" "The King's Heart" "The Landing" "The Last One Standing" "The Life Thief" "The Mayor" "The Polymath" "The Porcupine" "The Primordial" "The Queen" "The Risk" "The Sacrifice" "The Sephirot" "The Soul" "The Strategist" "The Undisputed" "The Wolven King's Bite" "The Wrath" "Vinia's Token" "Void of the Elements" SetFontSize 45 SetTextColor 255 255 255 # Divination Card (2-10c) SetBackgroundColor 255 0 175 255 # Divination Card (2-10c) @@ -1296,16 +1287,15 @@ Show # Divination Cards - 2-10c Hide # Divination Cards - <2c Class Divination - BaseType "The Journalist" "The Unexpected Prize" "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Buried Treasure" "Coveted Possession" "Emperor of Purity" "Emperor's Luck" "Gemcutter's Promise" "Harmony of Souls" Humility "Lingering Remnants" "Lucky Deck" "Merciless Armament" "The Aesthete" "The Cacophony" "The Catalyst" "The Chains that Bind" "The Chosen" "The Cursed King" "The Dark Mage" "The Deep Ones" "The Dreamer" "The Endless Darkness" "The Garish Power" "The Incantation" "The Jeweller's Boon" "The Journey" "The King's Heart" "The Last One Standing" "The Pact" "The Price of Protection" "The Seeker" "The Side Quest" "The Standoff" "The Thaumaturgist" "The Throne" "The Tinkerer's Table" "The Tyrant" "The Union" "The Wilted Rose" "The Wolf" "The Wretched" "Three Faces in the Dark" "Three Voices" Vanity "Vile Power" + BaseType "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Bowyer's Dream" "Buried Treasure" "Coveted Possession" "Deathly Designs" "Divine Justice" "Earth Drinker" "Emperor of Purity" "Emperor's Luck" Heterochromia "Lucky Deck" "Mawr Blaidd" Perfection "Prometheus' Armoury" Rebirth "Sambodhi's Vow" "The Bones" "The Breach" "The Catalyst" "The Chosen" "The Dreamer" "The Endless Darkness" "The Hunger" "The Lion" "The Mad King" "The Master Artisan" "The Old Man" "The Professor" "The Realm" "The Rite of Elements" "The Scavenger" "The Tinkerer's Table" "The Undaunted" "The Valkyrie" "The Vast" "The Wilted Rose" "The Wolf" "Three Faces in the Dark" "Three Voices" "Time-Lost Relic" Triskaidekaphobia Unchained "Underground Forest" SetFontSize 36 SetTextColor 0 0 0 # Divination Card (<2c) SetBackgroundColor 255 0 175 230 # Divination Card (<2c) SetBorderColor 150 30 100 255 # Divination Card (<2c) - DisableDropSound Hide # Divination Cards - Nearly Worthless Class Divination - BaseType "A Mother's Parting Gift" "Alone in the Darkness" "Anarchy's Price" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Deathly Designs" "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Earth Drinker" "Forbidden Power" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Her Mask" Heterochromia Hope Hubris "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lost Worlds" Loyalty "Lysah's Respite" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Sambodhi's Vow" "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Bones" "The Brittle Emperor" "The Calling" "The Cataclysm" "The Coming Storm" "The Conduit" "The Darkest Dream" "The Deal" "The Deceiver" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Harvester" "The Hermit" "The Hunger" "The Insatiable" "The Jester" "The King's Blade" "The Lich" "The Lion" "The Lord in Black" "The Lunaris Priestess" "The Mad King" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Puzzle" "The Realm" "The Rite of Elements" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scavenger" "The Scholar" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Visionary" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "Thirst for Knowledge" Tranquillity "Treasure Hunter" "Volatile Power" + BaseType "A Mother's Parting Gift" "Akil's Prophecy" "Alone in the Darkness" "Anarchy's Price" "Arrogance of the Vaal" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Echoes of Love" "Forbidden Power" Friendship "Gemcutter's Promise" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Harmony of Souls" "Her Mask" Hope Hubris Humility "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lingering Remnants" "Lost Worlds" Loyalty "Lysah's Respite" "Merciless Armament" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Aesthete" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Cache" "The Cacophony" "The Calling" "The Cataclysm" "The Chains that Bind" "The Coming Storm" "The Conduit" "The Dark Mage" "The Darkest Dream" "The Deal" "The Deceiver" "The Deep Ones" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Garish Power" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Hale Heart" "The Harvester" "The Hermit" "The Incantation" "The Insatiable" "The Jester" "The Journalist" "The Journey" "The King's Blade" "The Lich" "The Lord in Black" "The Lord of Celebration" "The Lunaris Priestess" "The Master" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Price of Protection" "The Puzzle" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scholar" "The Seeker" "The Side Quest" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Standoff" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Thaumaturgist" "The Throne" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Tyrant" "The Unexpected Prize" "The Union" "The Valley of Steel Boxes" "The Visionary" "The Void" "The Warlord" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "The Wretched" "Thirst for Knowledge" Tranquillity "Treasure Hunter" Vanity "Vile Power" "Volatile Power" SetFontSize 36 SetTextColor 0 0 0 # Divination Card (Low) SetBackgroundColor 255 0 175 170 # Divination Card (Low) @@ -1509,7 +1499,7 @@ Hide # 5+ Links - Low Value - Rare # Section: Enchantments Show # Enchantments - 20c+ Unique - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1520,7 +1510,7 @@ Show # Enchantments - 20c+ Unique PlayEffect Red Show # Enchantments - 20c+ Other - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" SetFontSize 45 SetTextColor 0 100 220 # Crafting Base (High) SetBackgroundColor 255 255 255 255 # Crafting Base (High) @@ -1530,7 +1520,7 @@ Show # Enchantments - 20c+ Other PlayEffect Red Show # Enchantments - 10c+ Unique - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1541,7 +1531,7 @@ Show # Enchantments - 10c+ Unique PlayEffect Red Show # Enchantments - 10c+ Other - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" SetFontSize 45 SetTextColor 255 255 255 # Crafting Base (Mid) SetBackgroundColor 60 60 60 255 # Crafting Base (Mid) @@ -1626,7 +1616,7 @@ Show # Jewels - Unique - Other Show # Uniques - 15c+ Rarity = Unique - BaseType "Arcanist Gloves" "Assassin's Boots" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Crusader Helmet" "Deerskin Gloves" "Ezomyte Tower Shield" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Jet Amulet" "Jewelled Foil" "Karui Maul" "Nubuck Boots" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Savant's Robe" "Siege Axe" "Silk Gloves" "Sorcerer Boots" "Two-Stone Ring" "Wyrmscale Doublet" "Vaal Rapier" "Ornate Quiver" "Golden Visage" + BaseType "Ambush Mitts" "Arcanist Gloves" "Arcanist Slippers" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Deerskin Gloves" "Ezomyte Tower Shield" "Gemstone Sword" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Holy Chainmail" "Jet Amulet" "Jewelled Foil" "Jingling Spirit Shield" "Karui Maul" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Sapphire Flask" "Savant's Robe" "Shackled Boots" "Siege Axe" "Silk Gloves" "Slink Boots" "Sorcerer Boots" "Steel Ring" "Two-Stone Ring" "Varnished Coat" "Wyrmscale Doublet" "Zodiac Leather" "Riveted Gloves" "Steelwood Bow" "Vaal Rapier" "Ornate Quiver" "Steel Circlet" "Golden Visage" "Ezomyte Dagger" "Saint's Hauberk" "Fluted Bascinet" SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) SetBackgroundColor 255 255 255 255 # Unique (15c+) @@ -1644,7 +1634,7 @@ Show # Uniques - 15c+ Show # Uniques - 5-15c Rarity = Unique - BaseType "Bismuth Flask" "Brass Spirit Shield" "Bronzescale Boots" "Clasped Boots" "Clasped Mitts" "Ezomyte Burgonet" "Full Wyrmscale" "Gold Ring" "Granite Flask" "Hydrascale Boots" "Hydrascale Gauntlets" "Jingling Spirit Shield" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Sapphire Flask" "Steel Ring" "Steelscale Gauntlets" "Studded Belt" "Timeworn Claw" "Vaal Blade" "Variscite Blade" "Zodiac Leather" "Riveted Gloves" "Ezomyte Dagger" + BaseType "Assassin's Boots" "Champion Kite Shield" "Clasped Mitts" "Exquisite Leather" "Gold Ring" "Granite Flask" "Highborn Staff" "Hydrascale Gauntlets" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Stibnite Flask" "Studded Belt" "Timeworn Claw" "Topaz Ring" "Vaal Blade" "Lacquered Buckler" "Butcher Axe" SetFontSize 45 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1673,7 +1663,7 @@ Show # Uniques - Enchanted Show # Uniques - 3-5c Rarity = Unique - BaseType "Amber Amulet" "Ambush Mitts" "Archon Kite Shield" "Assassin Bow" "Carved Wand" "Chain Belt" "Champion Kite Shield" "Coiled Staff" "Conjurer Boots" "Coral Amulet" Cutlass "Festival Mask" "Fiend Dagger" "Full Dragonscale" "Gemstone Sword" "Gold Amulet" "Golden Plate" "Imperial Maul" "Imperial Staff" "Iron Sceptre" "Jade Amulet" "Jasper Chopper" "Judgement Staff" "Karui Chopper" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Mace" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Royal Skean" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Shackled Boots" "Simple Robe" "Slink Boots" "Soldier Gloves" "Stibnite Flask" "Topaz Ring" "Turquoise Amulet" "Vaal Spirit Shield" "Varnished Coat" "Void Axe" "Wool Gloves" "Steelwood Bow" "Ezomyte Spiked Shield" "Steel Circlet" "Tyrant's Sekhem" "Saint's Hauberk" "Two-Toned Boots" + BaseType "Amber Amulet" "Assassin Bow" "Bismuth Flask" "Blue Pearl Amulet" "Carved Wand" "Citadel Bow" "Clasped Boots" "Conjurer Boots" "Coral Amulet" "Corsair Sword" Cutlass "Diamond Flask" "Ezomyte Burgonet" "Fiend Dagger" "Grand Mana Flask" "Heavy Belt" "Hydrascale Boots" "Imperial Maul" "Imperial Skean" "Iron Ring" "Jade Amulet" "Judgement Staff" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Bascinet" "Nightmare Mace" "Nubuck Boots" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Ruby Ring" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Sanctified Mana Flask" "Simple Robe" "Sinner Tricorne" "Slaughter Knife" "Stealth Boots" "Sulphur Flask" "Topaz Flask" "Turquoise Amulet" "Unset Ring" "Vaal Spirit Shield" "Void Axe" "Ezomyte Spiked Shield" "Tyrant's Sekhem" "Two-Toned Boots" "Crimson Round Shield" SetFontSize 40 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1694,27 +1684,26 @@ Show # Uniques - <3c - Unique Rings MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange +#-----# +# <3c # +#-----# +# Orange border +# Usually < 3c or nearly worthless. + Show # Uniques - <3c - Replica Rarity = Unique Replica True SetFontSize 45 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique - SetBorderColor 255 255 0 255 # Unique (3-5c) + SetBorderColor 180 90 45 255 # Unique PlayAlertSound 4 200 # Mid Value MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange - -#-----# -# <3c # -#-----# -# Orange border -# Usually < 3c or nearly worthless. - # Limited drop. May share a BaseType with an extremely valuable item, League specific, or boss drop only. Show # Uniques - Limited Rarity = Unique - BaseType "Agate Amulet" "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Cardinal Round Shield" "Carnal Mitts" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crystal Belt" "Exquisite Leather" Gavel "Goathide Boots" "Goliath Greaves" "Grand Mana Flask" "Great Crown" "Gut Ripper" "Harlequin Mask" "Heavy Belt" "Highborn Staff" "Holy Chainmail" "Hubris Circlet" "Imperial Skean" "Infernal Sword" "Iron Ring" Labrys "Leather Belt" "Legion Sword" "Lion Pelt" Maelstr "Midnight Blade" "Moonstone Ring" "Necromancer Circlet" "Nightmare Bascinet" "Opal Ring" "Painted Tower Shield" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Ruby Ring" "Sage Wand" "Sapphire Ring" "Serpentscale Gauntlets" "Silken Hood" "Silver Flask" "Sinner Tricorne" "Soldier Helmet" "Stealth Boots" "Sulphur Flask" "Terror Claw" "Titan Gauntlets" "Titan Greaves" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Unset Ring" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" + BaseType "Agate Amulet" Ambusher "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Archon Kite Shield" "Assassin's Mitts" "Astral Plate" "Branded Kite Shield" "Bronzescale Boots" "Cardinal Round Shield" "Carnal Armour" "Carnal Mitts" "Chain Belt" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crusader Helmet" "Crystal Belt" "Death Bow" "Decimation Bow" "Demon Dagger" "Ebony Tower Shield" "Elegant Ringmail" "Engraved Wand" "Eternal Sword" "Ezomyte Staff" "Full Wyrmscale" Gavel Gladius "Goathide Boots" "Gold Amulet" "Golden Plate" "Goliath Greaves" "Great Crown" "Great Mallet" "Grinning Fetish" "Gut Ripper" "Harlequin Mask" "Hubris Circlet" "Imperial Bow" "Infernal Sword" "Jasper Chopper" Labrys "Laminated Kite Shield" Lathi "Leather Belt" "Legion Boots" "Legion Sword" "Lion Pelt" Maelstr Meatgrinder "Midnight Blade" "Mind Cage" "Mirrored Spiked Shield" "Moonstone Ring" "Murder Boots" "Nailed Fist" "Necromancer Circlet" "Opal Ring" "Ornate Mace" "Painted Tower Shield" "Paua Ring" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Sage Wand" "Samite Gloves" "Sapphire Ring" "Sentinel Jacket" "Serpentscale Gauntlets" "Shadow Sceptre" "Shagreen Boots" "Siege Helmet" "Silken Hood" "Silver Flask" "Soldier Boots" "Soldier Gloves" "Soldier Helmet" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Terror Claw" "Terror Maul" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Variscite Blade" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" SetFontSize 40 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique diff --git a/Resources/Filters/S1_Regular_Highwind.filter b/Resources/Filters/S1_Regular_Highwind.filter index f597e77..63dbfef 100644 --- a/Resources/Filters/S1_Regular_Highwind.filter +++ b/Resources/Filters/S1_Regular_Highwind.filter @@ -1,7 +1,7 @@ ############################################ -## HIGHWIND'S LOOT FILTER 3.12.3 ## +## HIGHWIND'S LOOT FILTER 3.12.4 ## ############################################ -## Release Date: September 19, 2020 ## +## Release Date: September 23, 2020 ## ############################################ #--------------# @@ -1225,15 +1225,6 @@ Show # Gems - Other # "The Master" "The Master Artisan" # "The Wolf" "The Wolf's Shadow" "The Wolf's Legacy" -Show # Divination Cards - <2c (Conflicts) - Class Divination - BaseType "The Master Artisan" - SetFontSize 32 - SetTextColor 0 0 0 # Divination Card (<2c) - SetBackgroundColor 255 0 175 230 # Divination Card (<2c) - SetBorderColor 150 30 100 255 # Divination Card (<2c) - DisableDropSound - Show # Divination Cards - Nearly Worthless (Conflicts) Class Divination BaseType "The Demoness" "The Wolf's Legacy" "The Wolf's Shadow" @@ -1245,7 +1236,7 @@ Show # Divination Cards - Nearly Worthless (Conflicts) Show # Divination Cards - 10c+ Class Divination - BaseType "Brother's Stash" "Desecrated Virtue" "Unrequited Love" "A Familiar Call" "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Blessing of God" "Dark Dreams" "Dying Anguish" "Etched in Blood" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Prometheus' Armoury" "Seven Years Bad Luck" "Squandered Prosperity" "Succor of the Sinless" "The Awakened" "The Bargain" "The Celestial Stone" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Mayor" "The Nurse" "The Offering" "The Price of Loyalty" "The Progeny of Lunaris" "The Queen" "The Saint's Treasure" "The Samurai's Eye" "The Soul" "The Spark and the Flame" "The Strategist" "The Sustenance" "The White Knight" "Void of the Elements" "Wealth and Power" + BaseType "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Brother's Stash" "Desecrated Virtue" "Dying Anguish" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Seven Years Bad Luck" "Succor of the Sinless" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Gulf" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Nurse" "The Offering" "The Pact" "The Price of Loyalty" "The Progeny of Lunaris" "The Saint's Treasure" "The Samurai's Eye" "The Spark and the Flame" "The Sustenance" "The White Knight" "The World Eater" "Unrequited Love" "Wealth and Power" SetFontSize 45 SetTextColor 255 0 175 # Divination Card (10c+) SetBackgroundColor 255 255 255 255 # Divination Card (10c+) @@ -1256,7 +1247,7 @@ Show # Divination Cards - 10c+ Show # Divination Cards - 2-10c Class Divination - BaseType "Cursed Words" "The Cache" "Triskaidekaphobia" "The Bitter Blossom" "The Gulf" "A Note in the Wind" "Akil's Prophecy" "Arrogance of the Vaal" "Bowyer's Dream" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Demigod's Wager" "Divine Justice" "Echoes of Love" Friendship "Lucky Connections" "Mawr Blaidd" "No Traces" "Peaceful Moments" Perfection "Pride Before the Fall" Rebirth Remembrance "The Artist" "The Betrayal" "The Breach" "The Cartographer" "The Celestial Justicar" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Hale Heart" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Landing" "The Life Thief" "The Lord of Celebration" "The Master" "The Old Man" "The Polymath" "The Porcupine" "The Primordial" "The Professor" "The Risk" "The Sacrifice" "The Sephirot" "The Undaunted" "The Undisputed" "The Valkyrie" "The Valley of Steel Boxes" "The Vast" "The Void" "The Warlord" "The Wolven King's Bite" "The World Eater" "The Wrath" "Time-Lost Relic" "Underground Forest" "Vinia's Token" + BaseType "A Familiar Call" "A Note in the Wind" "Blessing of God" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Cursed Words" "Dark Dreams" "Demigod's Wager" "Etched in Blood" "Lucky Connections" "No Traces" "Peaceful Moments" "Pride Before the Fall" Remembrance "Squandered Prosperity" "The Academic" "The Artist" "The Awakened" "The Bargain" "The Betrayal" "The Bitter Blossom" "The Brittle Emperor" "The Cartographer" "The Celestial Justicar" "The Celestial Stone" "The Cursed King" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Jeweller's Boon" "The King's Heart" "The Landing" "The Last One Standing" "The Life Thief" "The Mayor" "The Polymath" "The Porcupine" "The Primordial" "The Queen" "The Risk" "The Sacrifice" "The Sephirot" "The Soul" "The Strategist" "The Undisputed" "The Wolven King's Bite" "The Wrath" "Vinia's Token" "Void of the Elements" SetFontSize 45 SetTextColor 255 255 255 # Divination Card (2-10c) SetBackgroundColor 255 0 175 255 # Divination Card (2-10c) @@ -1267,7 +1258,7 @@ Show # Divination Cards - 2-10c Show # Divination Cards - <2c Class Divination - BaseType "The Journalist" "The Unexpected Prize" "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Buried Treasure" "Coveted Possession" "Emperor of Purity" "Emperor's Luck" "Gemcutter's Promise" "Harmony of Souls" Humility "Lingering Remnants" "Lucky Deck" "Merciless Armament" "The Aesthete" "The Cacophony" "The Catalyst" "The Chains that Bind" "The Chosen" "The Cursed King" "The Dark Mage" "The Deep Ones" "The Dreamer" "The Endless Darkness" "The Garish Power" "The Incantation" "The Jeweller's Boon" "The Journey" "The King's Heart" "The Last One Standing" "The Pact" "The Price of Protection" "The Seeker" "The Side Quest" "The Standoff" "The Thaumaturgist" "The Throne" "The Tinkerer's Table" "The Tyrant" "The Union" "The Wilted Rose" "The Wolf" "The Wretched" "Three Faces in the Dark" "Three Voices" Vanity "Vile Power" + BaseType "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Bowyer's Dream" "Buried Treasure" "Coveted Possession" "Deathly Designs" "Divine Justice" "Earth Drinker" "Emperor of Purity" "Emperor's Luck" Heterochromia "Lucky Deck" "Mawr Blaidd" Perfection "Prometheus' Armoury" Rebirth "Sambodhi's Vow" "The Bones" "The Breach" "The Catalyst" "The Chosen" "The Dreamer" "The Endless Darkness" "The Hunger" "The Lion" "The Mad King" "The Master Artisan" "The Old Man" "The Professor" "The Realm" "The Rite of Elements" "The Scavenger" "The Tinkerer's Table" "The Undaunted" "The Valkyrie" "The Vast" "The Wilted Rose" "The Wolf" "Three Faces in the Dark" "Three Voices" "Time-Lost Relic" Triskaidekaphobia Unchained "Underground Forest" SetFontSize 32 SetTextColor 0 0 0 # Divination Card (<2c) SetBackgroundColor 255 0 175 230 # Divination Card (<2c) @@ -1276,7 +1267,7 @@ Show # Divination Cards - <2c Show # Divination Cards - Nearly Worthless Class Divination - BaseType "A Mother's Parting Gift" "Alone in the Darkness" "Anarchy's Price" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Deathly Designs" "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Earth Drinker" "Forbidden Power" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Her Mask" Heterochromia Hope Hubris "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lost Worlds" Loyalty "Lysah's Respite" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Sambodhi's Vow" "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Bones" "The Brittle Emperor" "The Calling" "The Cataclysm" "The Coming Storm" "The Conduit" "The Darkest Dream" "The Deal" "The Deceiver" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Harvester" "The Hermit" "The Hunger" "The Insatiable" "The Jester" "The King's Blade" "The Lich" "The Lion" "The Lord in Black" "The Lunaris Priestess" "The Mad King" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Puzzle" "The Realm" "The Rite of Elements" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scavenger" "The Scholar" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Visionary" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "Thirst for Knowledge" Tranquillity "Treasure Hunter" "Volatile Power" + BaseType "A Mother's Parting Gift" "Akil's Prophecy" "Alone in the Darkness" "Anarchy's Price" "Arrogance of the Vaal" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Echoes of Love" "Forbidden Power" Friendship "Gemcutter's Promise" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Harmony of Souls" "Her Mask" Hope Hubris Humility "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lingering Remnants" "Lost Worlds" Loyalty "Lysah's Respite" "Merciless Armament" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Aesthete" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Cache" "The Cacophony" "The Calling" "The Cataclysm" "The Chains that Bind" "The Coming Storm" "The Conduit" "The Dark Mage" "The Darkest Dream" "The Deal" "The Deceiver" "The Deep Ones" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Garish Power" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Hale Heart" "The Harvester" "The Hermit" "The Incantation" "The Insatiable" "The Jester" "The Journalist" "The Journey" "The King's Blade" "The Lich" "The Lord in Black" "The Lord of Celebration" "The Lunaris Priestess" "The Master" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Price of Protection" "The Puzzle" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scholar" "The Seeker" "The Side Quest" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Standoff" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Thaumaturgist" "The Throne" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Tyrant" "The Unexpected Prize" "The Union" "The Valley of Steel Boxes" "The Visionary" "The Void" "The Warlord" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "The Wretched" "Thirst for Knowledge" Tranquillity "Treasure Hunter" Vanity "Vile Power" "Volatile Power" SetFontSize 32 SetTextColor 0 0 0 # Divination Card (Low) SetBackgroundColor 255 0 175 170 # Divination Card (Low) @@ -1469,7 +1460,7 @@ Show # 5+ Links - Low Value - Rare # Section: Enchantments Show # Enchantments - 20c+ Unique - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1480,7 +1471,7 @@ Show # Enchantments - 20c+ Unique PlayEffect Red Show # Enchantments - 20c+ Other - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" SetFontSize 45 SetTextColor 0 100 220 # Crafting Base (High) SetBackgroundColor 255 255 255 255 # Crafting Base (High) @@ -1490,7 +1481,7 @@ Show # Enchantments - 20c+ Other PlayEffect Red Show # Enchantments - 10c+ Unique - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1501,7 +1492,7 @@ Show # Enchantments - 10c+ Unique PlayEffect Red Show # Enchantments - 10c+ Other - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" SetFontSize 40 SetTextColor 255 255 255 # Crafting Base (Mid) SetBackgroundColor 60 60 60 255 # Crafting Base (Mid) @@ -1586,7 +1577,7 @@ Show # Jewels - Unique - Other Show # Uniques - 15c+ Rarity = Unique - BaseType "Arcanist Gloves" "Assassin's Boots" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Crusader Helmet" "Deerskin Gloves" "Ezomyte Tower Shield" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Jet Amulet" "Jewelled Foil" "Karui Maul" "Nubuck Boots" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Savant's Robe" "Siege Axe" "Silk Gloves" "Sorcerer Boots" "Two-Stone Ring" "Wyrmscale Doublet" "Vaal Rapier" "Ornate Quiver" "Golden Visage" + BaseType "Ambush Mitts" "Arcanist Gloves" "Arcanist Slippers" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Deerskin Gloves" "Ezomyte Tower Shield" "Gemstone Sword" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Holy Chainmail" "Jet Amulet" "Jewelled Foil" "Jingling Spirit Shield" "Karui Maul" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Sapphire Flask" "Savant's Robe" "Shackled Boots" "Siege Axe" "Silk Gloves" "Slink Boots" "Sorcerer Boots" "Steel Ring" "Two-Stone Ring" "Varnished Coat" "Wyrmscale Doublet" "Zodiac Leather" "Riveted Gloves" "Steelwood Bow" "Vaal Rapier" "Ornate Quiver" "Steel Circlet" "Golden Visage" "Ezomyte Dagger" "Saint's Hauberk" "Fluted Bascinet" SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) SetBackgroundColor 255 255 255 255 # Unique (15c+) @@ -1604,7 +1595,7 @@ Show # Uniques - 15c+ Show # Uniques - 5-15c Rarity = Unique - BaseType "Bismuth Flask" "Brass Spirit Shield" "Bronzescale Boots" "Clasped Boots" "Clasped Mitts" "Ezomyte Burgonet" "Full Wyrmscale" "Gold Ring" "Granite Flask" "Hydrascale Boots" "Hydrascale Gauntlets" "Jingling Spirit Shield" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Sapphire Flask" "Steel Ring" "Steelscale Gauntlets" "Studded Belt" "Timeworn Claw" "Vaal Blade" "Variscite Blade" "Zodiac Leather" "Riveted Gloves" "Ezomyte Dagger" + BaseType "Assassin's Boots" "Champion Kite Shield" "Clasped Mitts" "Exquisite Leather" "Gold Ring" "Granite Flask" "Highborn Staff" "Hydrascale Gauntlets" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Stibnite Flask" "Studded Belt" "Timeworn Claw" "Topaz Ring" "Vaal Blade" "Lacquered Buckler" "Butcher Axe" SetFontSize 45 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1633,7 +1624,7 @@ Show # Uniques - Enchanted Show # Uniques - 3-5c Rarity = Unique - BaseType "Amber Amulet" "Ambush Mitts" "Archon Kite Shield" "Assassin Bow" "Carved Wand" "Chain Belt" "Champion Kite Shield" "Coiled Staff" "Conjurer Boots" "Coral Amulet" Cutlass "Festival Mask" "Fiend Dagger" "Full Dragonscale" "Gemstone Sword" "Gold Amulet" "Golden Plate" "Imperial Maul" "Imperial Staff" "Iron Sceptre" "Jade Amulet" "Jasper Chopper" "Judgement Staff" "Karui Chopper" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Mace" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Royal Skean" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Shackled Boots" "Simple Robe" "Slink Boots" "Soldier Gloves" "Stibnite Flask" "Topaz Ring" "Turquoise Amulet" "Vaal Spirit Shield" "Varnished Coat" "Void Axe" "Wool Gloves" "Steelwood Bow" "Ezomyte Spiked Shield" "Steel Circlet" "Tyrant's Sekhem" "Saint's Hauberk" "Two-Toned Boots" + BaseType "Amber Amulet" "Assassin Bow" "Bismuth Flask" "Blue Pearl Amulet" "Carved Wand" "Citadel Bow" "Clasped Boots" "Conjurer Boots" "Coral Amulet" "Corsair Sword" Cutlass "Diamond Flask" "Ezomyte Burgonet" "Fiend Dagger" "Grand Mana Flask" "Heavy Belt" "Hydrascale Boots" "Imperial Maul" "Imperial Skean" "Iron Ring" "Jade Amulet" "Judgement Staff" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Bascinet" "Nightmare Mace" "Nubuck Boots" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Ruby Ring" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Sanctified Mana Flask" "Simple Robe" "Sinner Tricorne" "Slaughter Knife" "Stealth Boots" "Sulphur Flask" "Topaz Flask" "Turquoise Amulet" "Unset Ring" "Vaal Spirit Shield" "Void Axe" "Ezomyte Spiked Shield" "Tyrant's Sekhem" "Two-Toned Boots" "Crimson Round Shield" SetFontSize 36 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1654,17 +1645,6 @@ Show # Uniques - <3c - Unique Rings MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange -Show # Uniques - <3c - Replica - Rarity = Unique - Replica True - SetFontSize 40 - SetTextColor 255 128 64 # Unique - SetBackgroundColor 50 25 12 230 # Unique - SetBorderColor 255 255 0 255 # Unique (3-5c) - PlayAlertSound 4 200 # Mid Value - MinimapIcon 0 Orange UpsideDownHouse - PlayEffect Orange - #-----# # <3c # #-----# @@ -1682,10 +1662,20 @@ Show # Uniques - <3c - ilvl <67 MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange +Show # Uniques - <3c - Replica + Rarity = Unique + Replica True + SetFontSize 40 + SetTextColor 255 128 64 # Unique + SetBackgroundColor 50 25 12 230 # Unique + SetBorderColor 180 90 45 255 # Unique + PlayAlertSound 4 200 # Mid Value + MinimapIcon 0 Orange UpsideDownHouse + PlayEffect Orange # Limited drop. May share a BaseType with an extremely valuable item, League specific, or boss drop only. Show # Uniques - Limited Rarity = Unique - BaseType "Agate Amulet" "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Cardinal Round Shield" "Carnal Mitts" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crystal Belt" "Exquisite Leather" Gavel "Goathide Boots" "Goliath Greaves" "Grand Mana Flask" "Great Crown" "Gut Ripper" "Harlequin Mask" "Heavy Belt" "Highborn Staff" "Holy Chainmail" "Hubris Circlet" "Imperial Skean" "Infernal Sword" "Iron Ring" Labrys "Leather Belt" "Legion Sword" "Lion Pelt" Maelstr "Midnight Blade" "Moonstone Ring" "Necromancer Circlet" "Nightmare Bascinet" "Opal Ring" "Painted Tower Shield" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Ruby Ring" "Sage Wand" "Sapphire Ring" "Serpentscale Gauntlets" "Silken Hood" "Silver Flask" "Sinner Tricorne" "Soldier Helmet" "Stealth Boots" "Sulphur Flask" "Terror Claw" "Titan Gauntlets" "Titan Greaves" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Unset Ring" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" + BaseType "Agate Amulet" Ambusher "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Archon Kite Shield" "Assassin's Mitts" "Astral Plate" "Branded Kite Shield" "Bronzescale Boots" "Cardinal Round Shield" "Carnal Armour" "Carnal Mitts" "Chain Belt" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crusader Helmet" "Crystal Belt" "Death Bow" "Decimation Bow" "Demon Dagger" "Ebony Tower Shield" "Elegant Ringmail" "Engraved Wand" "Eternal Sword" "Ezomyte Staff" "Full Wyrmscale" Gavel Gladius "Goathide Boots" "Gold Amulet" "Golden Plate" "Goliath Greaves" "Great Crown" "Great Mallet" "Grinning Fetish" "Gut Ripper" "Harlequin Mask" "Hubris Circlet" "Imperial Bow" "Infernal Sword" "Jasper Chopper" Labrys "Laminated Kite Shield" Lathi "Leather Belt" "Legion Boots" "Legion Sword" "Lion Pelt" Maelstr Meatgrinder "Midnight Blade" "Mind Cage" "Mirrored Spiked Shield" "Moonstone Ring" "Murder Boots" "Nailed Fist" "Necromancer Circlet" "Opal Ring" "Ornate Mace" "Painted Tower Shield" "Paua Ring" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Sage Wand" "Samite Gloves" "Sapphire Ring" "Sentinel Jacket" "Serpentscale Gauntlets" "Shadow Sceptre" "Shagreen Boots" "Siege Helmet" "Silken Hood" "Silver Flask" "Soldier Boots" "Soldier Gloves" "Soldier Helmet" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Terror Claw" "Terror Maul" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Variscite Blade" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" SetFontSize 36 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique diff --git a/Resources/Filters/S2_Mapping_Highwind.filter b/Resources/Filters/S2_Mapping_Highwind.filter index 09ed70a..04c74d8 100644 --- a/Resources/Filters/S2_Mapping_Highwind.filter +++ b/Resources/Filters/S2_Mapping_Highwind.filter @@ -1,7 +1,7 @@ ############################################ -## HIGHWIND'S MAPPING FILTER 3.12.3 ## +## HIGHWIND'S MAPPING FILTER 3.12.4 ## ############################################ -## Release Date: September 19, 2020 ## +## Release Date: September 23, 2020 ## ############################################ #--------------# @@ -1231,15 +1231,6 @@ Hide # Gems - Other # "The Master" "The Master Artisan" # "The Wolf" "The Wolf's Shadow" "The Wolf's Legacy" -Show # Divination Cards - <2c (Conflicts) - Class Divination - BaseType "The Master Artisan" - SetFontSize 32 - SetTextColor 0 0 0 # Divination Card (<2c) - SetBackgroundColor 255 0 175 230 # Divination Card (<2c) - SetBorderColor 150 30 100 255 # Divination Card (<2c) - DisableDropSound - Show # Divination Cards - Nearly Worthless (Conflicts) Class Divination BaseType "The Demoness" "The Wolf's Legacy" "The Wolf's Shadow" @@ -1251,7 +1242,7 @@ Show # Divination Cards - Nearly Worthless (Conflicts) Show # Divination Cards - 10c+ Class Divination - BaseType "Brother's Stash" "Desecrated Virtue" "Unrequited Love" "A Familiar Call" "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Blessing of God" "Dark Dreams" "Dying Anguish" "Etched in Blood" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Prometheus' Armoury" "Seven Years Bad Luck" "Squandered Prosperity" "Succor of the Sinless" "The Awakened" "The Bargain" "The Celestial Stone" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Mayor" "The Nurse" "The Offering" "The Price of Loyalty" "The Progeny of Lunaris" "The Queen" "The Saint's Treasure" "The Samurai's Eye" "The Soul" "The Spark and the Flame" "The Strategist" "The Sustenance" "The White Knight" "Void of the Elements" "Wealth and Power" + BaseType "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Brother's Stash" "Desecrated Virtue" "Dying Anguish" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Seven Years Bad Luck" "Succor of the Sinless" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Gulf" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Nurse" "The Offering" "The Pact" "The Price of Loyalty" "The Progeny of Lunaris" "The Saint's Treasure" "The Samurai's Eye" "The Spark and the Flame" "The Sustenance" "The White Knight" "The World Eater" "Unrequited Love" "Wealth and Power" SetFontSize 45 SetTextColor 255 0 175 # Divination Card (10c+) SetBackgroundColor 255 255 255 255 # Divination Card (10c+) @@ -1262,7 +1253,7 @@ Show # Divination Cards - 10c+ Show # Divination Cards - 2-10c Class Divination - BaseType "Cursed Words" "The Cache" "Triskaidekaphobia" "The Bitter Blossom" "The Gulf" "A Note in the Wind" "Akil's Prophecy" "Arrogance of the Vaal" "Bowyer's Dream" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Demigod's Wager" "Divine Justice" "Echoes of Love" Friendship "Lucky Connections" "Mawr Blaidd" "No Traces" "Peaceful Moments" Perfection "Pride Before the Fall" Rebirth Remembrance "The Artist" "The Betrayal" "The Breach" "The Cartographer" "The Celestial Justicar" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Hale Heart" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Landing" "The Life Thief" "The Lord of Celebration" "The Master" "The Old Man" "The Polymath" "The Porcupine" "The Primordial" "The Professor" "The Risk" "The Sacrifice" "The Sephirot" "The Undaunted" "The Undisputed" "The Valkyrie" "The Valley of Steel Boxes" "The Vast" "The Void" "The Warlord" "The Wolven King's Bite" "The World Eater" "The Wrath" "Time-Lost Relic" "Underground Forest" "Vinia's Token" + BaseType "A Familiar Call" "A Note in the Wind" "Blessing of God" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Cursed Words" "Dark Dreams" "Demigod's Wager" "Etched in Blood" "Lucky Connections" "No Traces" "Peaceful Moments" "Pride Before the Fall" Remembrance "Squandered Prosperity" "The Academic" "The Artist" "The Awakened" "The Bargain" "The Betrayal" "The Bitter Blossom" "The Brittle Emperor" "The Cartographer" "The Celestial Justicar" "The Celestial Stone" "The Cursed King" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Jeweller's Boon" "The King's Heart" "The Landing" "The Last One Standing" "The Life Thief" "The Mayor" "The Polymath" "The Porcupine" "The Primordial" "The Queen" "The Risk" "The Sacrifice" "The Sephirot" "The Soul" "The Strategist" "The Undisputed" "The Wolven King's Bite" "The Wrath" "Vinia's Token" "Void of the Elements" SetFontSize 45 SetTextColor 255 255 255 # Divination Card (2-10c) SetBackgroundColor 255 0 175 255 # Divination Card (2-10c) @@ -1273,7 +1264,7 @@ Show # Divination Cards - 2-10c Show # Divination Cards - <2c Class Divination - BaseType "The Journalist" "The Unexpected Prize" "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Buried Treasure" "Coveted Possession" "Emperor of Purity" "Emperor's Luck" "Gemcutter's Promise" "Harmony of Souls" Humility "Lingering Remnants" "Lucky Deck" "Merciless Armament" "The Aesthete" "The Cacophony" "The Catalyst" "The Chains that Bind" "The Chosen" "The Cursed King" "The Dark Mage" "The Deep Ones" "The Dreamer" "The Endless Darkness" "The Garish Power" "The Incantation" "The Jeweller's Boon" "The Journey" "The King's Heart" "The Last One Standing" "The Pact" "The Price of Protection" "The Seeker" "The Side Quest" "The Standoff" "The Thaumaturgist" "The Throne" "The Tinkerer's Table" "The Tyrant" "The Union" "The Wilted Rose" "The Wolf" "The Wretched" "Three Faces in the Dark" "Three Voices" Vanity "Vile Power" + BaseType "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Bowyer's Dream" "Buried Treasure" "Coveted Possession" "Deathly Designs" "Divine Justice" "Earth Drinker" "Emperor of Purity" "Emperor's Luck" Heterochromia "Lucky Deck" "Mawr Blaidd" Perfection "Prometheus' Armoury" Rebirth "Sambodhi's Vow" "The Bones" "The Breach" "The Catalyst" "The Chosen" "The Dreamer" "The Endless Darkness" "The Hunger" "The Lion" "The Mad King" "The Master Artisan" "The Old Man" "The Professor" "The Realm" "The Rite of Elements" "The Scavenger" "The Tinkerer's Table" "The Undaunted" "The Valkyrie" "The Vast" "The Wilted Rose" "The Wolf" "Three Faces in the Dark" "Three Voices" "Time-Lost Relic" Triskaidekaphobia Unchained "Underground Forest" SetFontSize 32 SetTextColor 0 0 0 # Divination Card (<2c) SetBackgroundColor 255 0 175 230 # Divination Card (<2c) @@ -1282,7 +1273,7 @@ Show # Divination Cards - <2c Show # Divination Cards - Nearly Worthless Class Divination - BaseType "A Mother's Parting Gift" "Alone in the Darkness" "Anarchy's Price" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Deathly Designs" "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Earth Drinker" "Forbidden Power" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Her Mask" Heterochromia Hope Hubris "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lost Worlds" Loyalty "Lysah's Respite" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Sambodhi's Vow" "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Bones" "The Brittle Emperor" "The Calling" "The Cataclysm" "The Coming Storm" "The Conduit" "The Darkest Dream" "The Deal" "The Deceiver" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Harvester" "The Hermit" "The Hunger" "The Insatiable" "The Jester" "The King's Blade" "The Lich" "The Lion" "The Lord in Black" "The Lunaris Priestess" "The Mad King" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Puzzle" "The Realm" "The Rite of Elements" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scavenger" "The Scholar" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Visionary" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "Thirst for Knowledge" Tranquillity "Treasure Hunter" "Volatile Power" + BaseType "A Mother's Parting Gift" "Akil's Prophecy" "Alone in the Darkness" "Anarchy's Price" "Arrogance of the Vaal" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Echoes of Love" "Forbidden Power" Friendship "Gemcutter's Promise" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Harmony of Souls" "Her Mask" Hope Hubris Humility "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lingering Remnants" "Lost Worlds" Loyalty "Lysah's Respite" "Merciless Armament" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Aesthete" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Cache" "The Cacophony" "The Calling" "The Cataclysm" "The Chains that Bind" "The Coming Storm" "The Conduit" "The Dark Mage" "The Darkest Dream" "The Deal" "The Deceiver" "The Deep Ones" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Garish Power" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Hale Heart" "The Harvester" "The Hermit" "The Incantation" "The Insatiable" "The Jester" "The Journalist" "The Journey" "The King's Blade" "The Lich" "The Lord in Black" "The Lord of Celebration" "The Lunaris Priestess" "The Master" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Price of Protection" "The Puzzle" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scholar" "The Seeker" "The Side Quest" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Standoff" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Thaumaturgist" "The Throne" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Tyrant" "The Unexpected Prize" "The Union" "The Valley of Steel Boxes" "The Visionary" "The Void" "The Warlord" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "The Wretched" "Thirst for Knowledge" Tranquillity "Treasure Hunter" Vanity "Vile Power" "Volatile Power" SetFontSize 32 SetTextColor 0 0 0 # Divination Card (Low) SetBackgroundColor 255 0 175 170 # Divination Card (Low) @@ -1477,7 +1468,7 @@ Show # 5+ Links - Low Value - Rare # Section: Enchantments Show # Enchantments - 20c+ Unique - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1488,7 +1479,7 @@ Show # Enchantments - 20c+ Unique PlayEffect Red Show # Enchantments - 20c+ Other - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" SetFontSize 45 SetTextColor 0 100 220 # Crafting Base (High) SetBackgroundColor 255 255 255 255 # Crafting Base (High) @@ -1498,7 +1489,7 @@ Show # Enchantments - 20c+ Other PlayEffect Red Show # Enchantments - 10c+ Unique - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1509,7 +1500,7 @@ Show # Enchantments - 10c+ Unique PlayEffect Red Show # Enchantments - 10c+ Other - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" SetFontSize 40 SetTextColor 255 255 255 # Crafting Base (Mid) SetBackgroundColor 60 60 60 255 # Crafting Base (Mid) @@ -1594,7 +1585,7 @@ Show # Jewels - Unique - Other Show # Uniques - 15c+ Rarity = Unique - BaseType "Arcanist Gloves" "Assassin's Boots" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Crusader Helmet" "Deerskin Gloves" "Ezomyte Tower Shield" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Jet Amulet" "Jewelled Foil" "Karui Maul" "Nubuck Boots" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Savant's Robe" "Siege Axe" "Silk Gloves" "Sorcerer Boots" "Two-Stone Ring" "Wyrmscale Doublet" "Vaal Rapier" "Ornate Quiver" "Golden Visage" + BaseType "Ambush Mitts" "Arcanist Gloves" "Arcanist Slippers" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Deerskin Gloves" "Ezomyte Tower Shield" "Gemstone Sword" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Holy Chainmail" "Jet Amulet" "Jewelled Foil" "Jingling Spirit Shield" "Karui Maul" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Sapphire Flask" "Savant's Robe" "Shackled Boots" "Siege Axe" "Silk Gloves" "Slink Boots" "Sorcerer Boots" "Steel Ring" "Two-Stone Ring" "Varnished Coat" "Wyrmscale Doublet" "Zodiac Leather" "Riveted Gloves" "Steelwood Bow" "Vaal Rapier" "Ornate Quiver" "Steel Circlet" "Golden Visage" "Ezomyte Dagger" "Saint's Hauberk" "Fluted Bascinet" SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) SetBackgroundColor 255 255 255 255 # Unique (15c+) @@ -1612,7 +1603,7 @@ Show # Uniques - 15c+ Show # Uniques - 5-15c Rarity = Unique - BaseType "Bismuth Flask" "Brass Spirit Shield" "Bronzescale Boots" "Clasped Boots" "Clasped Mitts" "Ezomyte Burgonet" "Full Wyrmscale" "Gold Ring" "Granite Flask" "Hydrascale Boots" "Hydrascale Gauntlets" "Jingling Spirit Shield" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Sapphire Flask" "Steel Ring" "Steelscale Gauntlets" "Studded Belt" "Timeworn Claw" "Vaal Blade" "Variscite Blade" "Zodiac Leather" "Riveted Gloves" "Ezomyte Dagger" + BaseType "Assassin's Boots" "Champion Kite Shield" "Clasped Mitts" "Exquisite Leather" "Gold Ring" "Granite Flask" "Highborn Staff" "Hydrascale Gauntlets" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Stibnite Flask" "Studded Belt" "Timeworn Claw" "Topaz Ring" "Vaal Blade" "Lacquered Buckler" "Butcher Axe" SetFontSize 45 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1641,7 +1632,7 @@ Show # Uniques - Enchanted Show # Uniques - 3-5c Rarity = Unique - BaseType "Amber Amulet" "Ambush Mitts" "Archon Kite Shield" "Assassin Bow" "Carved Wand" "Chain Belt" "Champion Kite Shield" "Coiled Staff" "Conjurer Boots" "Coral Amulet" Cutlass "Festival Mask" "Fiend Dagger" "Full Dragonscale" "Gemstone Sword" "Gold Amulet" "Golden Plate" "Imperial Maul" "Imperial Staff" "Iron Sceptre" "Jade Amulet" "Jasper Chopper" "Judgement Staff" "Karui Chopper" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Mace" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Royal Skean" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Shackled Boots" "Simple Robe" "Slink Boots" "Soldier Gloves" "Stibnite Flask" "Topaz Ring" "Turquoise Amulet" "Vaal Spirit Shield" "Varnished Coat" "Void Axe" "Wool Gloves" "Steelwood Bow" "Ezomyte Spiked Shield" "Steel Circlet" "Tyrant's Sekhem" "Saint's Hauberk" "Two-Toned Boots" + BaseType "Amber Amulet" "Assassin Bow" "Bismuth Flask" "Blue Pearl Amulet" "Carved Wand" "Citadel Bow" "Clasped Boots" "Conjurer Boots" "Coral Amulet" "Corsair Sword" Cutlass "Diamond Flask" "Ezomyte Burgonet" "Fiend Dagger" "Grand Mana Flask" "Heavy Belt" "Hydrascale Boots" "Imperial Maul" "Imperial Skean" "Iron Ring" "Jade Amulet" "Judgement Staff" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Bascinet" "Nightmare Mace" "Nubuck Boots" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Ruby Ring" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Sanctified Mana Flask" "Simple Robe" "Sinner Tricorne" "Slaughter Knife" "Stealth Boots" "Sulphur Flask" "Topaz Flask" "Turquoise Amulet" "Unset Ring" "Vaal Spirit Shield" "Void Axe" "Ezomyte Spiked Shield" "Tyrant's Sekhem" "Two-Toned Boots" "Crimson Round Shield" SetFontSize 36 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1662,17 +1653,6 @@ Show # Uniques - <3c - Unique Rings MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange -Show # Uniques - <3c - Replica - Rarity = Unique - Replica True - SetFontSize 40 - SetTextColor 255 128 64 # Unique - SetBackgroundColor 50 25 12 230 # Unique - SetBorderColor 255 255 0 255 # Unique (3-5c) - PlayAlertSound 4 200 # Mid Value - MinimapIcon 0 Orange UpsideDownHouse - PlayEffect Orange - #-----# # <3c # #-----# @@ -1690,10 +1670,20 @@ Show # Uniques - <3c - ilvl <67 MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange +Show # Uniques - <3c - Replica + Rarity = Unique + Replica True + SetFontSize 40 + SetTextColor 255 128 64 # Unique + SetBackgroundColor 50 25 12 230 # Unique + SetBorderColor 180 90 45 255 # Unique + PlayAlertSound 4 200 # Mid Value + MinimapIcon 0 Orange UpsideDownHouse + PlayEffect Orange # Limited drop. May share a BaseType with an extremely valuable item, League specific, or boss drop only. Show # Uniques - Limited Rarity = Unique - BaseType "Agate Amulet" "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Cardinal Round Shield" "Carnal Mitts" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crystal Belt" "Exquisite Leather" Gavel "Goathide Boots" "Goliath Greaves" "Grand Mana Flask" "Great Crown" "Gut Ripper" "Harlequin Mask" "Heavy Belt" "Highborn Staff" "Holy Chainmail" "Hubris Circlet" "Imperial Skean" "Infernal Sword" "Iron Ring" Labrys "Leather Belt" "Legion Sword" "Lion Pelt" Maelstr "Midnight Blade" "Moonstone Ring" "Necromancer Circlet" "Nightmare Bascinet" "Opal Ring" "Painted Tower Shield" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Ruby Ring" "Sage Wand" "Sapphire Ring" "Serpentscale Gauntlets" "Silken Hood" "Silver Flask" "Sinner Tricorne" "Soldier Helmet" "Stealth Boots" "Sulphur Flask" "Terror Claw" "Titan Gauntlets" "Titan Greaves" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Unset Ring" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" + BaseType "Agate Amulet" Ambusher "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Archon Kite Shield" "Assassin's Mitts" "Astral Plate" "Branded Kite Shield" "Bronzescale Boots" "Cardinal Round Shield" "Carnal Armour" "Carnal Mitts" "Chain Belt" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crusader Helmet" "Crystal Belt" "Death Bow" "Decimation Bow" "Demon Dagger" "Ebony Tower Shield" "Elegant Ringmail" "Engraved Wand" "Eternal Sword" "Ezomyte Staff" "Full Wyrmscale" Gavel Gladius "Goathide Boots" "Gold Amulet" "Golden Plate" "Goliath Greaves" "Great Crown" "Great Mallet" "Grinning Fetish" "Gut Ripper" "Harlequin Mask" "Hubris Circlet" "Imperial Bow" "Infernal Sword" "Jasper Chopper" Labrys "Laminated Kite Shield" Lathi "Leather Belt" "Legion Boots" "Legion Sword" "Lion Pelt" Maelstr Meatgrinder "Midnight Blade" "Mind Cage" "Mirrored Spiked Shield" "Moonstone Ring" "Murder Boots" "Nailed Fist" "Necromancer Circlet" "Opal Ring" "Ornate Mace" "Painted Tower Shield" "Paua Ring" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Sage Wand" "Samite Gloves" "Sapphire Ring" "Sentinel Jacket" "Serpentscale Gauntlets" "Shadow Sceptre" "Shagreen Boots" "Siege Helmet" "Silken Hood" "Silver Flask" "Soldier Boots" "Soldier Gloves" "Soldier Helmet" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Terror Claw" "Terror Maul" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Variscite Blade" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" SetFontSize 36 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique diff --git a/Resources/Filters/S3_Semi_Strict_Highwind.filter b/Resources/Filters/S3_Semi_Strict_Highwind.filter index 3c4b49c..2f59e22 100644 --- a/Resources/Filters/S3_Semi_Strict_Highwind.filter +++ b/Resources/Filters/S3_Semi_Strict_Highwind.filter @@ -1,7 +1,7 @@ ############################################ -## HIGHWIND'S SEMI-STRICT FILTER 3.12.3 ## +## HIGHWIND'S SEMI-STRICT FILTER 3.12.4 ## ############################################ -## Release Date: September 19, 2020 ## +## Release Date: September 23, 2020 ## ############################################ #--------------# @@ -1226,15 +1226,6 @@ Hide # Gems - Other # "The Master" "The Master Artisan" # "The Wolf" "The Wolf's Shadow" "The Wolf's Legacy" -Show # Divination Cards - <2c (Conflicts) - Class Divination - BaseType "The Master Artisan" - SetFontSize 32 - SetTextColor 0 0 0 # Divination Card (<2c) - SetBackgroundColor 255 0 175 230 # Divination Card (<2c) - SetBorderColor 150 30 100 255 # Divination Card (<2c) - DisableDropSound - Hide # Divination Cards - Nearly Worthless (Conflicts) Class Divination BaseType "The Demoness" "The Wolf's Legacy" "The Wolf's Shadow" @@ -1246,7 +1237,7 @@ Hide # Divination Cards - Nearly Worthless (Conflicts) Show # Divination Cards - 10c+ Class Divination - BaseType "Brother's Stash" "Desecrated Virtue" "Unrequited Love" "A Familiar Call" "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Blessing of God" "Dark Dreams" "Dying Anguish" "Etched in Blood" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Prometheus' Armoury" "Seven Years Bad Luck" "Squandered Prosperity" "Succor of the Sinless" "The Awakened" "The Bargain" "The Celestial Stone" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Mayor" "The Nurse" "The Offering" "The Price of Loyalty" "The Progeny of Lunaris" "The Queen" "The Saint's Treasure" "The Samurai's Eye" "The Soul" "The Spark and the Flame" "The Strategist" "The Sustenance" "The White Knight" "Void of the Elements" "Wealth and Power" + BaseType "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Brother's Stash" "Desecrated Virtue" "Dying Anguish" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Seven Years Bad Luck" "Succor of the Sinless" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Gulf" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Nurse" "The Offering" "The Pact" "The Price of Loyalty" "The Progeny of Lunaris" "The Saint's Treasure" "The Samurai's Eye" "The Spark and the Flame" "The Sustenance" "The White Knight" "The World Eater" "Unrequited Love" "Wealth and Power" SetFontSize 45 SetTextColor 255 0 175 # Divination Card (10c+) SetBackgroundColor 255 255 255 255 # Divination Card (10c+) @@ -1257,7 +1248,7 @@ Show # Divination Cards - 10c+ Show # Divination Cards - 2-10c Class Divination - BaseType "Cursed Words" "The Cache" "Triskaidekaphobia" "The Bitter Blossom" "The Gulf" "A Note in the Wind" "Akil's Prophecy" "Arrogance of the Vaal" "Bowyer's Dream" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Demigod's Wager" "Divine Justice" "Echoes of Love" Friendship "Lucky Connections" "Mawr Blaidd" "No Traces" "Peaceful Moments" Perfection "Pride Before the Fall" Rebirth Remembrance "The Artist" "The Betrayal" "The Breach" "The Cartographer" "The Celestial Justicar" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Hale Heart" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Landing" "The Life Thief" "The Lord of Celebration" "The Master" "The Old Man" "The Polymath" "The Porcupine" "The Primordial" "The Professor" "The Risk" "The Sacrifice" "The Sephirot" "The Undaunted" "The Undisputed" "The Valkyrie" "The Valley of Steel Boxes" "The Vast" "The Void" "The Warlord" "The Wolven King's Bite" "The World Eater" "The Wrath" "Time-Lost Relic" "Underground Forest" "Vinia's Token" + BaseType "A Familiar Call" "A Note in the Wind" "Blessing of God" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Cursed Words" "Dark Dreams" "Demigod's Wager" "Etched in Blood" "Lucky Connections" "No Traces" "Peaceful Moments" "Pride Before the Fall" Remembrance "Squandered Prosperity" "The Academic" "The Artist" "The Awakened" "The Bargain" "The Betrayal" "The Bitter Blossom" "The Brittle Emperor" "The Cartographer" "The Celestial Justicar" "The Celestial Stone" "The Cursed King" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Jeweller's Boon" "The King's Heart" "The Landing" "The Last One Standing" "The Life Thief" "The Mayor" "The Polymath" "The Porcupine" "The Primordial" "The Queen" "The Risk" "The Sacrifice" "The Sephirot" "The Soul" "The Strategist" "The Undisputed" "The Wolven King's Bite" "The Wrath" "Vinia's Token" "Void of the Elements" SetFontSize 45 SetTextColor 255 255 255 # Divination Card (2-10c) SetBackgroundColor 255 0 175 255 # Divination Card (2-10c) @@ -1268,7 +1259,7 @@ Show # Divination Cards - 2-10c Show # Divination Cards - <2c Class Divination - BaseType "The Journalist" "The Unexpected Prize" "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Buried Treasure" "Coveted Possession" "Emperor of Purity" "Emperor's Luck" "Gemcutter's Promise" "Harmony of Souls" Humility "Lingering Remnants" "Lucky Deck" "Merciless Armament" "The Aesthete" "The Cacophony" "The Catalyst" "The Chains that Bind" "The Chosen" "The Cursed King" "The Dark Mage" "The Deep Ones" "The Dreamer" "The Endless Darkness" "The Garish Power" "The Incantation" "The Jeweller's Boon" "The Journey" "The King's Heart" "The Last One Standing" "The Pact" "The Price of Protection" "The Seeker" "The Side Quest" "The Standoff" "The Thaumaturgist" "The Throne" "The Tinkerer's Table" "The Tyrant" "The Union" "The Wilted Rose" "The Wolf" "The Wretched" "Three Faces in the Dark" "Three Voices" Vanity "Vile Power" + BaseType "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Bowyer's Dream" "Buried Treasure" "Coveted Possession" "Deathly Designs" "Divine Justice" "Earth Drinker" "Emperor of Purity" "Emperor's Luck" Heterochromia "Lucky Deck" "Mawr Blaidd" Perfection "Prometheus' Armoury" Rebirth "Sambodhi's Vow" "The Bones" "The Breach" "The Catalyst" "The Chosen" "The Dreamer" "The Endless Darkness" "The Hunger" "The Lion" "The Mad King" "The Master Artisan" "The Old Man" "The Professor" "The Realm" "The Rite of Elements" "The Scavenger" "The Tinkerer's Table" "The Undaunted" "The Valkyrie" "The Vast" "The Wilted Rose" "The Wolf" "Three Faces in the Dark" "Three Voices" "Time-Lost Relic" Triskaidekaphobia Unchained "Underground Forest" SetFontSize 32 SetTextColor 0 0 0 # Divination Card (<2c) SetBackgroundColor 255 0 175 230 # Divination Card (<2c) @@ -1277,7 +1268,7 @@ Show # Divination Cards - <2c Hide # Divination Cards - Nearly Worthless Class Divination - BaseType "A Mother's Parting Gift" "Alone in the Darkness" "Anarchy's Price" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Deathly Designs" "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Earth Drinker" "Forbidden Power" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Her Mask" Heterochromia Hope Hubris "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lost Worlds" Loyalty "Lysah's Respite" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Sambodhi's Vow" "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Bones" "The Brittle Emperor" "The Calling" "The Cataclysm" "The Coming Storm" "The Conduit" "The Darkest Dream" "The Deal" "The Deceiver" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Harvester" "The Hermit" "The Hunger" "The Insatiable" "The Jester" "The King's Blade" "The Lich" "The Lion" "The Lord in Black" "The Lunaris Priestess" "The Mad King" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Puzzle" "The Realm" "The Rite of Elements" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scavenger" "The Scholar" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Visionary" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "Thirst for Knowledge" Tranquillity "Treasure Hunter" "Volatile Power" + BaseType "A Mother's Parting Gift" "Akil's Prophecy" "Alone in the Darkness" "Anarchy's Price" "Arrogance of the Vaal" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Echoes of Love" "Forbidden Power" Friendship "Gemcutter's Promise" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Harmony of Souls" "Her Mask" Hope Hubris Humility "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lingering Remnants" "Lost Worlds" Loyalty "Lysah's Respite" "Merciless Armament" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Aesthete" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Cache" "The Cacophony" "The Calling" "The Cataclysm" "The Chains that Bind" "The Coming Storm" "The Conduit" "The Dark Mage" "The Darkest Dream" "The Deal" "The Deceiver" "The Deep Ones" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Garish Power" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Hale Heart" "The Harvester" "The Hermit" "The Incantation" "The Insatiable" "The Jester" "The Journalist" "The Journey" "The King's Blade" "The Lich" "The Lord in Black" "The Lord of Celebration" "The Lunaris Priestess" "The Master" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Price of Protection" "The Puzzle" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scholar" "The Seeker" "The Side Quest" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Standoff" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Thaumaturgist" "The Throne" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Tyrant" "The Unexpected Prize" "The Union" "The Valley of Steel Boxes" "The Visionary" "The Void" "The Warlord" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "The Wretched" "Thirst for Knowledge" Tranquillity "Treasure Hunter" Vanity "Vile Power" "Volatile Power" SetFontSize 32 SetTextColor 0 0 0 # Divination Card (Low) SetBackgroundColor 255 0 175 170 # Divination Card (Low) @@ -1475,7 +1466,7 @@ Hide # 5+ Links - Low Value - Rare # Section: Enchantments Show # Enchantments - 20c+ Unique - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1486,7 +1477,7 @@ Show # Enchantments - 20c+ Unique PlayEffect Red Show # Enchantments - 20c+ Other - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" SetFontSize 45 SetTextColor 0 100 220 # Crafting Base (High) SetBackgroundColor 255 255 255 255 # Crafting Base (High) @@ -1496,7 +1487,7 @@ Show # Enchantments - 20c+ Other PlayEffect Red Show # Enchantments - 10c+ Unique - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1507,7 +1498,7 @@ Show # Enchantments - 10c+ Unique PlayEffect Red Show # Enchantments - 10c+ Other - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" SetFontSize 40 SetTextColor 255 255 255 # Crafting Base (Mid) SetBackgroundColor 60 60 60 255 # Crafting Base (Mid) @@ -1592,7 +1583,7 @@ Show # Jewels - Unique - Other Show # Uniques - 15c+ Rarity = Unique - BaseType "Arcanist Gloves" "Assassin's Boots" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Crusader Helmet" "Deerskin Gloves" "Ezomyte Tower Shield" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Jet Amulet" "Jewelled Foil" "Karui Maul" "Nubuck Boots" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Savant's Robe" "Siege Axe" "Silk Gloves" "Sorcerer Boots" "Two-Stone Ring" "Wyrmscale Doublet" "Vaal Rapier" "Ornate Quiver" "Golden Visage" + BaseType "Ambush Mitts" "Arcanist Gloves" "Arcanist Slippers" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Deerskin Gloves" "Ezomyte Tower Shield" "Gemstone Sword" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Holy Chainmail" "Jet Amulet" "Jewelled Foil" "Jingling Spirit Shield" "Karui Maul" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Sapphire Flask" "Savant's Robe" "Shackled Boots" "Siege Axe" "Silk Gloves" "Slink Boots" "Sorcerer Boots" "Steel Ring" "Two-Stone Ring" "Varnished Coat" "Wyrmscale Doublet" "Zodiac Leather" "Riveted Gloves" "Steelwood Bow" "Vaal Rapier" "Ornate Quiver" "Steel Circlet" "Golden Visage" "Ezomyte Dagger" "Saint's Hauberk" "Fluted Bascinet" SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) SetBackgroundColor 255 255 255 255 # Unique (15c+) @@ -1610,7 +1601,7 @@ Show # Uniques - 15c+ Show # Uniques - 5-15c Rarity = Unique - BaseType "Bismuth Flask" "Brass Spirit Shield" "Bronzescale Boots" "Clasped Boots" "Clasped Mitts" "Ezomyte Burgonet" "Full Wyrmscale" "Gold Ring" "Granite Flask" "Hydrascale Boots" "Hydrascale Gauntlets" "Jingling Spirit Shield" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Sapphire Flask" "Steel Ring" "Steelscale Gauntlets" "Studded Belt" "Timeworn Claw" "Vaal Blade" "Variscite Blade" "Zodiac Leather" "Riveted Gloves" "Ezomyte Dagger" + BaseType "Assassin's Boots" "Champion Kite Shield" "Clasped Mitts" "Exquisite Leather" "Gold Ring" "Granite Flask" "Highborn Staff" "Hydrascale Gauntlets" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Stibnite Flask" "Studded Belt" "Timeworn Claw" "Topaz Ring" "Vaal Blade" "Lacquered Buckler" "Butcher Axe" SetFontSize 45 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1639,7 +1630,7 @@ Show # Uniques - Enchanted Show # Uniques - 3-5c Rarity = Unique - BaseType "Amber Amulet" "Ambush Mitts" "Archon Kite Shield" "Assassin Bow" "Carved Wand" "Chain Belt" "Champion Kite Shield" "Coiled Staff" "Conjurer Boots" "Coral Amulet" Cutlass "Festival Mask" "Fiend Dagger" "Full Dragonscale" "Gemstone Sword" "Gold Amulet" "Golden Plate" "Imperial Maul" "Imperial Staff" "Iron Sceptre" "Jade Amulet" "Jasper Chopper" "Judgement Staff" "Karui Chopper" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Mace" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Royal Skean" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Shackled Boots" "Simple Robe" "Slink Boots" "Soldier Gloves" "Stibnite Flask" "Topaz Ring" "Turquoise Amulet" "Vaal Spirit Shield" "Varnished Coat" "Void Axe" "Wool Gloves" "Steelwood Bow" "Ezomyte Spiked Shield" "Steel Circlet" "Tyrant's Sekhem" "Saint's Hauberk" "Two-Toned Boots" + BaseType "Amber Amulet" "Assassin Bow" "Bismuth Flask" "Blue Pearl Amulet" "Carved Wand" "Citadel Bow" "Clasped Boots" "Conjurer Boots" "Coral Amulet" "Corsair Sword" Cutlass "Diamond Flask" "Ezomyte Burgonet" "Fiend Dagger" "Grand Mana Flask" "Heavy Belt" "Hydrascale Boots" "Imperial Maul" "Imperial Skean" "Iron Ring" "Jade Amulet" "Judgement Staff" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Bascinet" "Nightmare Mace" "Nubuck Boots" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Ruby Ring" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Sanctified Mana Flask" "Simple Robe" "Sinner Tricorne" "Slaughter Knife" "Stealth Boots" "Sulphur Flask" "Topaz Flask" "Turquoise Amulet" "Unset Ring" "Vaal Spirit Shield" "Void Axe" "Ezomyte Spiked Shield" "Tyrant's Sekhem" "Two-Toned Boots" "Crimson Round Shield" SetFontSize 36 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1660,17 +1651,6 @@ Show # Uniques - <3c - Unique Rings MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange -Show # Uniques - <3c - Replica - Rarity = Unique - Replica True - SetFontSize 40 - SetTextColor 255 128 64 # Unique - SetBackgroundColor 50 25 12 230 # Unique - SetBorderColor 255 255 0 255 # Unique (3-5c) - PlayAlertSound 4 200 # Mid Value - MinimapIcon 0 Orange UpsideDownHouse - PlayEffect Orange - #-----# # <3c # #-----# @@ -1688,10 +1668,20 @@ Show # Uniques - <3c - ilvl <67 MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange +Show # Uniques - <3c - Replica + Rarity = Unique + Replica True + SetFontSize 40 + SetTextColor 255 128 64 # Unique + SetBackgroundColor 50 25 12 230 # Unique + SetBorderColor 180 90 45 255 # Unique + PlayAlertSound 4 200 # Mid Value + MinimapIcon 0 Orange UpsideDownHouse + PlayEffect Orange # Limited drop. May share a BaseType with an extremely valuable item, League specific, or boss drop only. Show # Uniques - Limited Rarity = Unique - BaseType "Agate Amulet" "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Cardinal Round Shield" "Carnal Mitts" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crystal Belt" "Exquisite Leather" Gavel "Goathide Boots" "Goliath Greaves" "Grand Mana Flask" "Great Crown" "Gut Ripper" "Harlequin Mask" "Heavy Belt" "Highborn Staff" "Holy Chainmail" "Hubris Circlet" "Imperial Skean" "Infernal Sword" "Iron Ring" Labrys "Leather Belt" "Legion Sword" "Lion Pelt" Maelstr "Midnight Blade" "Moonstone Ring" "Necromancer Circlet" "Nightmare Bascinet" "Opal Ring" "Painted Tower Shield" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Ruby Ring" "Sage Wand" "Sapphire Ring" "Serpentscale Gauntlets" "Silken Hood" "Silver Flask" "Sinner Tricorne" "Soldier Helmet" "Stealth Boots" "Sulphur Flask" "Terror Claw" "Titan Gauntlets" "Titan Greaves" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Unset Ring" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" + BaseType "Agate Amulet" Ambusher "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Archon Kite Shield" "Assassin's Mitts" "Astral Plate" "Branded Kite Shield" "Bronzescale Boots" "Cardinal Round Shield" "Carnal Armour" "Carnal Mitts" "Chain Belt" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crusader Helmet" "Crystal Belt" "Death Bow" "Decimation Bow" "Demon Dagger" "Ebony Tower Shield" "Elegant Ringmail" "Engraved Wand" "Eternal Sword" "Ezomyte Staff" "Full Wyrmscale" Gavel Gladius "Goathide Boots" "Gold Amulet" "Golden Plate" "Goliath Greaves" "Great Crown" "Great Mallet" "Grinning Fetish" "Gut Ripper" "Harlequin Mask" "Hubris Circlet" "Imperial Bow" "Infernal Sword" "Jasper Chopper" Labrys "Laminated Kite Shield" Lathi "Leather Belt" "Legion Boots" "Legion Sword" "Lion Pelt" Maelstr Meatgrinder "Midnight Blade" "Mind Cage" "Mirrored Spiked Shield" "Moonstone Ring" "Murder Boots" "Nailed Fist" "Necromancer Circlet" "Opal Ring" "Ornate Mace" "Painted Tower Shield" "Paua Ring" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Sage Wand" "Samite Gloves" "Sapphire Ring" "Sentinel Jacket" "Serpentscale Gauntlets" "Shadow Sceptre" "Shagreen Boots" "Siege Helmet" "Silken Hood" "Silver Flask" "Soldier Boots" "Soldier Gloves" "Soldier Helmet" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Terror Claw" "Terror Maul" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Variscite Blade" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" SetFontSize 36 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique diff --git a/Resources/Filters/S4_Strict_Highwind.filter b/Resources/Filters/S4_Strict_Highwind.filter index 68f1402..57afbec 100644 --- a/Resources/Filters/S4_Strict_Highwind.filter +++ b/Resources/Filters/S4_Strict_Highwind.filter @@ -1,7 +1,7 @@ ############################################ -## HIGHWIND'S STRICT FILTER 3.12.3 ## +## HIGHWIND'S STRICT FILTER 3.12.4 ## ############################################ -## Release Date: September 19, 2020 ## +## Release Date: September 23, 2020 ## ############################################ #--------------# @@ -1251,15 +1251,6 @@ Hide # Gems - Other # "The Master" "The Master Artisan" # "The Wolf" "The Wolf's Shadow" "The Wolf's Legacy" -Show # Divination Cards - <2c (Conflicts) - Class Divination - BaseType "The Master Artisan" - SetFontSize 32 - SetTextColor 0 0 0 # Divination Card (<2c) - SetBackgroundColor 255 0 175 230 # Divination Card (<2c) - SetBorderColor 150 30 100 255 # Divination Card (<2c) - DisableDropSound - Hide # Divination Cards - Nearly Worthless (Conflicts) Class Divination BaseType "The Demoness" "The Wolf's Legacy" "The Wolf's Shadow" @@ -1271,7 +1262,7 @@ Hide # Divination Cards - Nearly Worthless (Conflicts) Show # Divination Cards - 10c+ Class Divination - BaseType "Brother's Stash" "Desecrated Virtue" "Unrequited Love" "A Familiar Call" "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Blessing of God" "Dark Dreams" "Dying Anguish" "Etched in Blood" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Prometheus' Armoury" "Seven Years Bad Luck" "Squandered Prosperity" "Succor of the Sinless" "The Awakened" "The Bargain" "The Celestial Stone" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Mayor" "The Nurse" "The Offering" "The Price of Loyalty" "The Progeny of Lunaris" "The Queen" "The Saint's Treasure" "The Samurai's Eye" "The Soul" "The Spark and the Flame" "The Strategist" "The Sustenance" "The White Knight" "Void of the Elements" "Wealth and Power" + BaseType "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Brother's Stash" "Desecrated Virtue" "Dying Anguish" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Seven Years Bad Luck" "Succor of the Sinless" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Gulf" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Nurse" "The Offering" "The Pact" "The Price of Loyalty" "The Progeny of Lunaris" "The Saint's Treasure" "The Samurai's Eye" "The Spark and the Flame" "The Sustenance" "The White Knight" "The World Eater" "Unrequited Love" "Wealth and Power" SetFontSize 45 SetTextColor 255 0 175 # Divination Card (10c+) SetBackgroundColor 255 255 255 255 # Divination Card (10c+) @@ -1282,7 +1273,7 @@ Show # Divination Cards - 10c+ Show # Divination Cards - 2-10c Class Divination - BaseType "Cursed Words" "The Cache" "Triskaidekaphobia" "The Bitter Blossom" "The Gulf" "A Note in the Wind" "Akil's Prophecy" "Arrogance of the Vaal" "Bowyer's Dream" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Demigod's Wager" "Divine Justice" "Echoes of Love" Friendship "Lucky Connections" "Mawr Blaidd" "No Traces" "Peaceful Moments" Perfection "Pride Before the Fall" Rebirth Remembrance "The Artist" "The Betrayal" "The Breach" "The Cartographer" "The Celestial Justicar" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Hale Heart" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Landing" "The Life Thief" "The Lord of Celebration" "The Master" "The Old Man" "The Polymath" "The Porcupine" "The Primordial" "The Professor" "The Risk" "The Sacrifice" "The Sephirot" "The Undaunted" "The Undisputed" "The Valkyrie" "The Valley of Steel Boxes" "The Vast" "The Void" "The Warlord" "The Wolven King's Bite" "The World Eater" "The Wrath" "Time-Lost Relic" "Underground Forest" "Vinia's Token" + BaseType "A Familiar Call" "A Note in the Wind" "Blessing of God" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Cursed Words" "Dark Dreams" "Demigod's Wager" "Etched in Blood" "Lucky Connections" "No Traces" "Peaceful Moments" "Pride Before the Fall" Remembrance "Squandered Prosperity" "The Academic" "The Artist" "The Awakened" "The Bargain" "The Betrayal" "The Bitter Blossom" "The Brittle Emperor" "The Cartographer" "The Celestial Justicar" "The Celestial Stone" "The Cursed King" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Jeweller's Boon" "The King's Heart" "The Landing" "The Last One Standing" "The Life Thief" "The Mayor" "The Polymath" "The Porcupine" "The Primordial" "The Queen" "The Risk" "The Sacrifice" "The Sephirot" "The Soul" "The Strategist" "The Undisputed" "The Wolven King's Bite" "The Wrath" "Vinia's Token" "Void of the Elements" SetFontSize 45 SetTextColor 255 255 255 # Divination Card (2-10c) SetBackgroundColor 255 0 175 255 # Divination Card (2-10c) @@ -1293,7 +1284,7 @@ Show # Divination Cards - 2-10c Show # Divination Cards - <2c Class Divination - BaseType "The Journalist" "The Unexpected Prize" "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Buried Treasure" "Coveted Possession" "Emperor of Purity" "Emperor's Luck" "Gemcutter's Promise" "Harmony of Souls" Humility "Lingering Remnants" "Lucky Deck" "Merciless Armament" "The Aesthete" "The Cacophony" "The Catalyst" "The Chains that Bind" "The Chosen" "The Cursed King" "The Dark Mage" "The Deep Ones" "The Dreamer" "The Endless Darkness" "The Garish Power" "The Incantation" "The Jeweller's Boon" "The Journey" "The King's Heart" "The Last One Standing" "The Pact" "The Price of Protection" "The Seeker" "The Side Quest" "The Standoff" "The Thaumaturgist" "The Throne" "The Tinkerer's Table" "The Tyrant" "The Union" "The Wilted Rose" "The Wolf" "The Wretched" "Three Faces in the Dark" "Three Voices" Vanity "Vile Power" + BaseType "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Bowyer's Dream" "Buried Treasure" "Coveted Possession" "Deathly Designs" "Divine Justice" "Earth Drinker" "Emperor of Purity" "Emperor's Luck" Heterochromia "Lucky Deck" "Mawr Blaidd" Perfection "Prometheus' Armoury" Rebirth "Sambodhi's Vow" "The Bones" "The Breach" "The Catalyst" "The Chosen" "The Dreamer" "The Endless Darkness" "The Hunger" "The Lion" "The Mad King" "The Master Artisan" "The Old Man" "The Professor" "The Realm" "The Rite of Elements" "The Scavenger" "The Tinkerer's Table" "The Undaunted" "The Valkyrie" "The Vast" "The Wilted Rose" "The Wolf" "Three Faces in the Dark" "Three Voices" "Time-Lost Relic" Triskaidekaphobia Unchained "Underground Forest" SetFontSize 32 SetTextColor 0 0 0 # Divination Card (<2c) SetBackgroundColor 255 0 175 230 # Divination Card (<2c) @@ -1302,7 +1293,7 @@ Show # Divination Cards - <2c Hide # Divination Cards - Nearly Worthless Class Divination - BaseType "A Mother's Parting Gift" "Alone in the Darkness" "Anarchy's Price" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Deathly Designs" "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Earth Drinker" "Forbidden Power" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Her Mask" Heterochromia Hope Hubris "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lost Worlds" Loyalty "Lysah's Respite" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Sambodhi's Vow" "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Bones" "The Brittle Emperor" "The Calling" "The Cataclysm" "The Coming Storm" "The Conduit" "The Darkest Dream" "The Deal" "The Deceiver" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Harvester" "The Hermit" "The Hunger" "The Insatiable" "The Jester" "The King's Blade" "The Lich" "The Lion" "The Lord in Black" "The Lunaris Priestess" "The Mad King" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Puzzle" "The Realm" "The Rite of Elements" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scavenger" "The Scholar" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Visionary" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "Thirst for Knowledge" Tranquillity "Treasure Hunter" "Volatile Power" + BaseType "A Mother's Parting Gift" "Akil's Prophecy" "Alone in the Darkness" "Anarchy's Price" "Arrogance of the Vaal" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Echoes of Love" "Forbidden Power" Friendship "Gemcutter's Promise" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Harmony of Souls" "Her Mask" Hope Hubris Humility "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lingering Remnants" "Lost Worlds" Loyalty "Lysah's Respite" "Merciless Armament" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Aesthete" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Cache" "The Cacophony" "The Calling" "The Cataclysm" "The Chains that Bind" "The Coming Storm" "The Conduit" "The Dark Mage" "The Darkest Dream" "The Deal" "The Deceiver" "The Deep Ones" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Garish Power" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Hale Heart" "The Harvester" "The Hermit" "The Incantation" "The Insatiable" "The Jester" "The Journalist" "The Journey" "The King's Blade" "The Lich" "The Lord in Black" "The Lord of Celebration" "The Lunaris Priestess" "The Master" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Price of Protection" "The Puzzle" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scholar" "The Seeker" "The Side Quest" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Standoff" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Thaumaturgist" "The Throne" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Tyrant" "The Unexpected Prize" "The Union" "The Valley of Steel Boxes" "The Visionary" "The Void" "The Warlord" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "The Wretched" "Thirst for Knowledge" Tranquillity "Treasure Hunter" Vanity "Vile Power" "Volatile Power" SetFontSize 32 SetTextColor 0 0 0 # Divination Card (Low) SetBackgroundColor 255 0 175 170 # Divination Card (Low) @@ -1506,7 +1497,7 @@ Hide # 5+ Links - Low Value - Rare # Section: Enchantments Show # Enchantments - 20c+ Unique - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1517,7 +1508,7 @@ Show # Enchantments - 20c+ Unique PlayEffect Red Show # Enchantments - 20c+ Other - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" SetFontSize 45 SetTextColor 0 100 220 # Crafting Base (High) SetBackgroundColor 255 255 255 255 # Crafting Base (High) @@ -1527,7 +1518,7 @@ Show # Enchantments - 20c+ Other PlayEffect Red Show # Enchantments - 10c+ Unique - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1538,7 +1529,7 @@ Show # Enchantments - 10c+ Unique PlayEffect Red Show # Enchantments - 10c+ Other - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" SetFontSize 40 SetTextColor 255 255 255 # Crafting Base (Mid) SetBackgroundColor 60 60 60 255 # Crafting Base (Mid) @@ -1623,7 +1614,7 @@ Show # Jewels - Unique - Other Show # Uniques - 15c+ Rarity = Unique - BaseType "Arcanist Gloves" "Assassin's Boots" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Crusader Helmet" "Deerskin Gloves" "Ezomyte Tower Shield" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Jet Amulet" "Jewelled Foil" "Karui Maul" "Nubuck Boots" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Savant's Robe" "Siege Axe" "Silk Gloves" "Sorcerer Boots" "Two-Stone Ring" "Wyrmscale Doublet" "Vaal Rapier" "Ornate Quiver" "Golden Visage" + BaseType "Ambush Mitts" "Arcanist Gloves" "Arcanist Slippers" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Deerskin Gloves" "Ezomyte Tower Shield" "Gemstone Sword" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Holy Chainmail" "Jet Amulet" "Jewelled Foil" "Jingling Spirit Shield" "Karui Maul" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Sapphire Flask" "Savant's Robe" "Shackled Boots" "Siege Axe" "Silk Gloves" "Slink Boots" "Sorcerer Boots" "Steel Ring" "Two-Stone Ring" "Varnished Coat" "Wyrmscale Doublet" "Zodiac Leather" "Riveted Gloves" "Steelwood Bow" "Vaal Rapier" "Ornate Quiver" "Steel Circlet" "Golden Visage" "Ezomyte Dagger" "Saint's Hauberk" "Fluted Bascinet" SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) SetBackgroundColor 255 255 255 255 # Unique (15c+) @@ -1641,7 +1632,7 @@ Show # Uniques - 15c+ Show # Uniques - 5-15c Rarity = Unique - BaseType "Bismuth Flask" "Brass Spirit Shield" "Bronzescale Boots" "Clasped Boots" "Clasped Mitts" "Ezomyte Burgonet" "Full Wyrmscale" "Gold Ring" "Granite Flask" "Hydrascale Boots" "Hydrascale Gauntlets" "Jingling Spirit Shield" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Sapphire Flask" "Steel Ring" "Steelscale Gauntlets" "Studded Belt" "Timeworn Claw" "Vaal Blade" "Variscite Blade" "Zodiac Leather" "Riveted Gloves" "Ezomyte Dagger" + BaseType "Assassin's Boots" "Champion Kite Shield" "Clasped Mitts" "Exquisite Leather" "Gold Ring" "Granite Flask" "Highborn Staff" "Hydrascale Gauntlets" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Stibnite Flask" "Studded Belt" "Timeworn Claw" "Topaz Ring" "Vaal Blade" "Lacquered Buckler" "Butcher Axe" SetFontSize 45 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1670,7 +1661,7 @@ Show # Uniques - Enchanted Show # Uniques - 3-5c Rarity = Unique - BaseType "Amber Amulet" "Ambush Mitts" "Archon Kite Shield" "Assassin Bow" "Carved Wand" "Chain Belt" "Champion Kite Shield" "Coiled Staff" "Conjurer Boots" "Coral Amulet" Cutlass "Festival Mask" "Fiend Dagger" "Full Dragonscale" "Gemstone Sword" "Gold Amulet" "Golden Plate" "Imperial Maul" "Imperial Staff" "Iron Sceptre" "Jade Amulet" "Jasper Chopper" "Judgement Staff" "Karui Chopper" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Mace" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Royal Skean" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Shackled Boots" "Simple Robe" "Slink Boots" "Soldier Gloves" "Stibnite Flask" "Topaz Ring" "Turquoise Amulet" "Vaal Spirit Shield" "Varnished Coat" "Void Axe" "Wool Gloves" "Steelwood Bow" "Ezomyte Spiked Shield" "Steel Circlet" "Tyrant's Sekhem" "Saint's Hauberk" "Two-Toned Boots" + BaseType "Amber Amulet" "Assassin Bow" "Bismuth Flask" "Blue Pearl Amulet" "Carved Wand" "Citadel Bow" "Clasped Boots" "Conjurer Boots" "Coral Amulet" "Corsair Sword" Cutlass "Diamond Flask" "Ezomyte Burgonet" "Fiend Dagger" "Grand Mana Flask" "Heavy Belt" "Hydrascale Boots" "Imperial Maul" "Imperial Skean" "Iron Ring" "Jade Amulet" "Judgement Staff" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Bascinet" "Nightmare Mace" "Nubuck Boots" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Ruby Ring" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Sanctified Mana Flask" "Simple Robe" "Sinner Tricorne" "Slaughter Knife" "Stealth Boots" "Sulphur Flask" "Topaz Flask" "Turquoise Amulet" "Unset Ring" "Vaal Spirit Shield" "Void Axe" "Ezomyte Spiked Shield" "Tyrant's Sekhem" "Two-Toned Boots" "Crimson Round Shield" SetFontSize 36 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1691,17 +1682,6 @@ Show # Uniques - <3c - Unique Rings MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange -Show # Uniques - <3c - Replica - Rarity = Unique - Replica True - SetFontSize 40 - SetTextColor 255 128 64 # Unique - SetBackgroundColor 50 25 12 230 # Unique - SetBorderColor 255 255 0 255 # Unique (3-5c) - PlayAlertSound 4 200 # Mid Value - MinimapIcon 0 Orange UpsideDownHouse - PlayEffect Orange - #-----# # <3c # #-----# @@ -1719,10 +1699,20 @@ Show # Uniques - <3c - ilvl <67 MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange +Show # Uniques - <3c - Replica + Rarity = Unique + Replica True + SetFontSize 40 + SetTextColor 255 128 64 # Unique + SetBackgroundColor 50 25 12 230 # Unique + SetBorderColor 180 90 45 255 # Unique + PlayAlertSound 4 200 # Mid Value + MinimapIcon 0 Orange UpsideDownHouse + PlayEffect Orange # Limited drop. May share a BaseType with an extremely valuable item, League specific, or boss drop only. Show # Uniques - Limited Rarity = Unique - BaseType "Agate Amulet" "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Cardinal Round Shield" "Carnal Mitts" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crystal Belt" "Exquisite Leather" Gavel "Goathide Boots" "Goliath Greaves" "Grand Mana Flask" "Great Crown" "Gut Ripper" "Harlequin Mask" "Heavy Belt" "Highborn Staff" "Holy Chainmail" "Hubris Circlet" "Imperial Skean" "Infernal Sword" "Iron Ring" Labrys "Leather Belt" "Legion Sword" "Lion Pelt" Maelstr "Midnight Blade" "Moonstone Ring" "Necromancer Circlet" "Nightmare Bascinet" "Opal Ring" "Painted Tower Shield" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Ruby Ring" "Sage Wand" "Sapphire Ring" "Serpentscale Gauntlets" "Silken Hood" "Silver Flask" "Sinner Tricorne" "Soldier Helmet" "Stealth Boots" "Sulphur Flask" "Terror Claw" "Titan Gauntlets" "Titan Greaves" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Unset Ring" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" + BaseType "Agate Amulet" Ambusher "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Archon Kite Shield" "Assassin's Mitts" "Astral Plate" "Branded Kite Shield" "Bronzescale Boots" "Cardinal Round Shield" "Carnal Armour" "Carnal Mitts" "Chain Belt" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crusader Helmet" "Crystal Belt" "Death Bow" "Decimation Bow" "Demon Dagger" "Ebony Tower Shield" "Elegant Ringmail" "Engraved Wand" "Eternal Sword" "Ezomyte Staff" "Full Wyrmscale" Gavel Gladius "Goathide Boots" "Gold Amulet" "Golden Plate" "Goliath Greaves" "Great Crown" "Great Mallet" "Grinning Fetish" "Gut Ripper" "Harlequin Mask" "Hubris Circlet" "Imperial Bow" "Infernal Sword" "Jasper Chopper" Labrys "Laminated Kite Shield" Lathi "Leather Belt" "Legion Boots" "Legion Sword" "Lion Pelt" Maelstr Meatgrinder "Midnight Blade" "Mind Cage" "Mirrored Spiked Shield" "Moonstone Ring" "Murder Boots" "Nailed Fist" "Necromancer Circlet" "Opal Ring" "Ornate Mace" "Painted Tower Shield" "Paua Ring" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Sage Wand" "Samite Gloves" "Sapphire Ring" "Sentinel Jacket" "Serpentscale Gauntlets" "Shadow Sceptre" "Shagreen Boots" "Siege Helmet" "Silken Hood" "Silver Flask" "Soldier Boots" "Soldier Gloves" "Soldier Helmet" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Terror Claw" "Terror Maul" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Variscite Blade" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" SetFontSize 36 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique diff --git a/Resources/Filters/S5_Very_Strict_Highwind.filter b/Resources/Filters/S5_Very_Strict_Highwind.filter index b281058..ba629f1 100644 --- a/Resources/Filters/S5_Very_Strict_Highwind.filter +++ b/Resources/Filters/S5_Very_Strict_Highwind.filter @@ -1,7 +1,7 @@ ############################################ -## HIGHWIND'S VERY STRICT FILTER 3.12.3 ## +## HIGHWIND'S VERY STRICT FILTER 3.12.4 ## ############################################ -## Release Date: September 19, 2020 ## +## Release Date: September 23, 2020 ## ############################################ #--------------# @@ -1254,15 +1254,6 @@ Hide # Gems - Other # "The Master" "The Master Artisan" # "The Wolf" "The Wolf's Shadow" "The Wolf's Legacy" -Hide # Divination Cards - <2c (Conflicts) - Class Divination - BaseType "The Master Artisan" - SetFontSize 32 - SetTextColor 0 0 0 # Divination Card (<2c) - SetBackgroundColor 255 0 175 230 # Divination Card (<2c) - SetBorderColor 150 30 100 255 # Divination Card (<2c) - DisableDropSound - Hide # Divination Cards - Nearly Worthless (Conflicts) Class Divination BaseType "The Demoness" "The Wolf's Legacy" "The Wolf's Shadow" @@ -1274,7 +1265,7 @@ Hide # Divination Cards - Nearly Worthless (Conflicts) Show # Divination Cards - 10c+ Class Divination - BaseType "Brother's Stash" "Desecrated Virtue" "Unrequited Love" "A Familiar Call" "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Blessing of God" "Dark Dreams" "Dying Anguish" "Etched in Blood" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Prometheus' Armoury" "Seven Years Bad Luck" "Squandered Prosperity" "Succor of the Sinless" "The Awakened" "The Bargain" "The Celestial Stone" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Mayor" "The Nurse" "The Offering" "The Price of Loyalty" "The Progeny of Lunaris" "The Queen" "The Saint's Treasure" "The Samurai's Eye" "The Soul" "The Spark and the Flame" "The Strategist" "The Sustenance" "The White Knight" "Void of the Elements" "Wealth and Power" + BaseType "Abandoned Wealth" "Alluring Bounty" "Azyran's Reward" "Beauty Through Death" "Birth of the Three" "Brother's Stash" "Desecrated Virtue" "Dying Anguish" "Gift of Asenath" "House of Mirrors" "Hunter's Reward" "Immortal Resolve" "Luck of the Vaal" "Nook's Crown" "Pride of the First Ones" "Seven Years Bad Luck" "Succor of the Sinless" "The Cheater" "The Craving" "The Damned" "The Demon" "The Devastator" "The Doctor" "The Dragon's Heart" "The Enlightened" "The Escape" "The Eye of Terror" "The Fiend" "The Greatest Intentions" "The Gulf" "The Hive of Knowledge" "The Immortal" "The Iron Bard" "The Long Con" "The Nurse" "The Offering" "The Pact" "The Price of Loyalty" "The Progeny of Lunaris" "The Saint's Treasure" "The Samurai's Eye" "The Spark and the Flame" "The Sustenance" "The White Knight" "The World Eater" "Unrequited Love" "Wealth and Power" SetFontSize 45 SetTextColor 255 0 175 # Divination Card (10c+) SetBackgroundColor 255 255 255 255 # Divination Card (10c+) @@ -1285,7 +1276,7 @@ Show # Divination Cards - 10c+ Show # Divination Cards - 2-10c Class Divination - BaseType "Cursed Words" "The Cache" "Triskaidekaphobia" "The Bitter Blossom" "The Gulf" "A Note in the Wind" "Akil's Prophecy" "Arrogance of the Vaal" "Bowyer's Dream" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Demigod's Wager" "Divine Justice" "Echoes of Love" Friendship "Lucky Connections" "Mawr Blaidd" "No Traces" "Peaceful Moments" Perfection "Pride Before the Fall" Rebirth Remembrance "The Artist" "The Betrayal" "The Breach" "The Cartographer" "The Celestial Justicar" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Hale Heart" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Landing" "The Life Thief" "The Lord of Celebration" "The Master" "The Old Man" "The Polymath" "The Porcupine" "The Primordial" "The Professor" "The Risk" "The Sacrifice" "The Sephirot" "The Undaunted" "The Undisputed" "The Valkyrie" "The Valley of Steel Boxes" "The Vast" "The Void" "The Warlord" "The Wolven King's Bite" "The World Eater" "The Wrath" "Time-Lost Relic" "Underground Forest" "Vinia's Token" + BaseType "A Familiar Call" "A Note in the Wind" "Blessing of God" "Burning Blood" "Chaotic Disposition" "Council of Cats" "Cursed Words" "Dark Dreams" "Demigod's Wager" "Etched in Blood" "Lucky Connections" "No Traces" "Peaceful Moments" "Pride Before the Fall" Remembrance "Squandered Prosperity" "The Academic" "The Artist" "The Awakened" "The Bargain" "The Betrayal" "The Bitter Blossom" "The Brittle Emperor" "The Cartographer" "The Celestial Justicar" "The Celestial Stone" "The Cursed King" "The Dapper Prodigy" "The Eldritch Decay" "The Ethereal" "The Fishmonger" "The Fool" "The Heroic Shot" "The Hoarder" "The Innocent" "The Inventor" "The Jeweller's Boon" "The King's Heart" "The Landing" "The Last One Standing" "The Life Thief" "The Mayor" "The Polymath" "The Porcupine" "The Primordial" "The Queen" "The Risk" "The Sacrifice" "The Sephirot" "The Soul" "The Strategist" "The Undisputed" "The Wolven King's Bite" "The Wrath" "Vinia's Token" "Void of the Elements" SetFontSize 45 SetTextColor 255 255 255 # Divination Card (2-10c) SetBackgroundColor 255 0 175 255 # Divination Card (2-10c) @@ -1296,16 +1287,15 @@ Show # Divination Cards - 2-10c Hide # Divination Cards - <2c Class Divination - BaseType "The Journalist" "The Unexpected Prize" "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Buried Treasure" "Coveted Possession" "Emperor of Purity" "Emperor's Luck" "Gemcutter's Promise" "Harmony of Souls" Humility "Lingering Remnants" "Lucky Deck" "Merciless Armament" "The Aesthete" "The Cacophony" "The Catalyst" "The Chains that Bind" "The Chosen" "The Cursed King" "The Dark Mage" "The Deep Ones" "The Dreamer" "The Endless Darkness" "The Garish Power" "The Incantation" "The Jeweller's Boon" "The Journey" "The King's Heart" "The Last One Standing" "The Pact" "The Price of Protection" "The Seeker" "The Side Quest" "The Standoff" "The Thaumaturgist" "The Throne" "The Tinkerer's Table" "The Tyrant" "The Union" "The Wilted Rose" "The Wolf" "The Wretched" "Three Faces in the Dark" "Three Voices" Vanity "Vile Power" + BaseType "A Dab of Ink" "Boon of the First Ones" "Boundless Realms" "Bowyer's Dream" "Buried Treasure" "Coveted Possession" "Deathly Designs" "Divine Justice" "Earth Drinker" "Emperor of Purity" "Emperor's Luck" Heterochromia "Lucky Deck" "Mawr Blaidd" Perfection "Prometheus' Armoury" Rebirth "Sambodhi's Vow" "The Bones" "The Breach" "The Catalyst" "The Chosen" "The Dreamer" "The Endless Darkness" "The Hunger" "The Lion" "The Mad King" "The Master Artisan" "The Old Man" "The Professor" "The Realm" "The Rite of Elements" "The Scavenger" "The Tinkerer's Table" "The Undaunted" "The Valkyrie" "The Vast" "The Wilted Rose" "The Wolf" "Three Faces in the Dark" "Three Voices" "Time-Lost Relic" Triskaidekaphobia Unchained "Underground Forest" SetFontSize 32 SetTextColor 0 0 0 # Divination Card (<2c) SetBackgroundColor 255 0 175 230 # Divination Card (<2c) SetBorderColor 150 30 100 255 # Divination Card (<2c) - DisableDropSound Hide # Divination Cards - Nearly Worthless Class Divination - BaseType "A Mother's Parting Gift" "Alone in the Darkness" "Anarchy's Price" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Deathly Designs" "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Earth Drinker" "Forbidden Power" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Her Mask" Heterochromia Hope Hubris "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lost Worlds" Loyalty "Lysah's Respite" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Sambodhi's Vow" "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Bones" "The Brittle Emperor" "The Calling" "The Cataclysm" "The Coming Storm" "The Conduit" "The Darkest Dream" "The Deal" "The Deceiver" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Harvester" "The Hermit" "The Hunger" "The Insatiable" "The Jester" "The King's Blade" "The Lich" "The Lion" "The Lord in Black" "The Lunaris Priestess" "The Mad King" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Puzzle" "The Realm" "The Rite of Elements" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scavenger" "The Scholar" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Visionary" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "Thirst for Knowledge" Tranquillity "Treasure Hunter" "Volatile Power" + BaseType "A Mother's Parting Gift" "Akil's Prophecy" "Alone in the Darkness" "Anarchy's Price" "Arrogance of the Vaal" "Assassin's Favour" "Atziri's Arsenal" Audacity "Baited Expectations" "Blind Venture" "Boon of Justice" "Call to the First Ones" "Cameria's Cut" "Cartographer's Delight" "Dark Temptation" Death "Destined to Crumble" "Dialla's Subjugation" "Doedre's Madness" "Echoes of Love" "Forbidden Power" Friendship "Gemcutter's Promise" "Gift of the Gemling Queen" "Glimmer of Hope" "Grave Knowledge" "Harmony of Souls" "Her Mask" Hope Hubris Humility "Hunter's Resolve" "Imperial Legacy" "Jack in the Box" "Last Hope" "Left to Fate" "Light and Truth" "Lingering Remnants" "Lost Worlds" Loyalty "Lysah's Respite" "Merciless Armament" "Might is Right" Mitts Monochrome "More is Never Enough" "Rain of Chaos" "Rain Tempter" Rats "Scholar of the Seas" "Shard of Fate" "The Admirer" "The Aesthete" "The Archmage's Right Hand" "The Arena Champion" "The Army of Blood" "The Avenger" "The Battle Born" "The Beast" "The Blazing Fire" "The Body" "The Cache" "The Cacophony" "The Calling" "The Cataclysm" "The Chains that Bind" "The Coming Storm" "The Conduit" "The Dark Mage" "The Darkest Dream" "The Deal" "The Deceiver" "The Deep Ones" "The Doppelganger" "The Dragon" "The Dreamland" "The Drunken Aristocrat" "The Easy Stroll" "The Encroaching Darkness" "The Endurance" "The Explorer" "The Eye of the Dragon" "The Fathomless Depths" "The Feast" "The Fletcher" "The Flora's Gift" "The Formless Sea" "The Forsaken" "The Fox" "The Gambler" "The Garish Power" "The Gemcutter" "The Gentleman" "The Gladiator" "The Golden Era" "The Hale Heart" "The Harvester" "The Hermit" "The Incantation" "The Insatiable" "The Jester" "The Journalist" "The Journey" "The King's Blade" "The Lich" "The Lord in Black" "The Lord of Celebration" "The Lunaris Priestess" "The Master" "The Mercenary" "The Messenger" "The Mountain" "The Oath" "The Obscured" "The One With All" "The Opulent" "The Pack Leader" "The Penitent" "The Poet" "The Price of Protection" "The Puzzle" "The Road to Power" "The Ruthless Ceinture" "The Scarred Meadow" "The Scholar" "The Seeker" "The Side Quest" "The Sigil" "The Siren" "The Skeleton" "The Spoiled Prince" "The Standoff" "The Stormcaller" "The Summoner" "The Sun" "The Surveyor" "The Survivalist" "The Sword King's Salute" "The Thaumaturgist" "The Throne" "The Tower" "The Traitor" "The Trial" "The Tumbleweed" "The Twilight Moon" "The Twins" "The Tyrant" "The Unexpected Prize" "The Union" "The Valley of Steel Boxes" "The Visionary" "The Void" "The Warlord" "The Watcher" "The Web" "The Wind" "The Witch" "The Wolverine" "The Wretched" "Thirst for Knowledge" Tranquillity "Treasure Hunter" Vanity "Vile Power" "Volatile Power" SetFontSize 32 SetTextColor 0 0 0 # Divination Card (Low) SetBackgroundColor 255 0 175 170 # Divination Card (Low) @@ -1509,7 +1499,7 @@ Hide # 5+ Links - Low Value - Rare # Section: Enchantments Show # Enchantments - 20c+ Unique - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1520,7 +1510,7 @@ Show # Enchantments - 20c+ Unique PlayEffect Red Show # Enchantments - 20c+ Other - HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Blade Vortex Duration 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Dash Travel Distance 2" "Enchantment Double Slash Added Phys To Bleeding 2" "Enchantment Earthshatter Additional Spike 1" "Enchantment Flicker Strike Damage Per Frenzy Charge 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Herald Of Thunder Damage 2" "Enchantment Herald Of Thunder Mana Reservation 2" "Enchantment Ice Nova Damage 1" "Enchantment Ice Nova Damage 2" "Enchantment Malevolence Mana Reservation 2" "Enchantment Perforate Number Of Spikes 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Cooldown Recovery 1" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Spellslinger Reservation 2" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Tornado Shot Num Of Secondary Projectiles 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Damage 2" "Enchantment Volatile Dead Orbs 3" "Enchantment Wild Strike Num Of Additional Projectiles In Chain 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" + HasEnchantment "Enchantment Arc Num Of Additional Projectiles In Chain 1" "Enchantment Ball Lightning Additional Projectiles 1" "Enchantment Blade Vortex Duration 2" "Enchantment Blazing Salvo Num of Additional Projectiles 1" "Enchantment Creeping Frost Area Of Effect 2" "Enchantment Discharge Consume Charges 2" "Enchantment Discharge Radius 2" "Enchantment Glacial Cascade Damage 2" "Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2" "Enchantment Ice Nova Damage 2" "Enchantment Pyroclast Mine Additional Projectiles 2" "Enchantment Scourge Arrow Additional Spore 1" "Enchantment Spellslinger Reservation 2" "Enchantment Toxic Rain Num Of Additional Projectiles 1" "Enchantment Volatile Dead Orbs 3" SetFontSize 45 SetTextColor 0 100 220 # Crafting Base (High) SetBackgroundColor 255 255 255 255 # Crafting Base (High) @@ -1530,7 +1520,7 @@ Show # Enchantments - 20c+ Other PlayEffect Red Show # Enchantments - 10c+ Unique - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" Rarity = Unique SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) @@ -1541,7 +1531,7 @@ Show # Enchantments - 10c+ Unique PlayEffect Red Show # Enchantments - 10c+ Other - HasEnchantment "Enchantment Arc Damage 2" "Enchantment Arcane Cloak Grants Life Regeneration 1" "Enchantment Ball Lightning Damage 1" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Berserk Rage Loss 2" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Bladestorm Maximum Number Of Storms Allowed 1" "Enchantment Blood and Sand Buff Effect 2" "Enchantment Blood Rage Attack Speed 2" "Enchantment Cobra Lash Number Of Additional Chains 2" "Enchantment Despair Effect 2" "Enchantment Earthquake Damage 2" "Enchantment Enduring Cry Cooldown Speed 2" "Enchantment Essence Drain Damage 2" "Enchantment Essence Drain Duration 2" "Enchantment Fireball Damage 2" "Enchantment Flesh and Stone Mana Reservation 2" "Enchantment Flesh Offering Attack Speed 2" "Enchantment Flicker Strike Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Frost Bolt Cast Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment General's Cry Additional Mirage Warrior 1" "Enchantment Ground Slam Damage 2" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Agony Mana Reservation 2" "Enchantment Herald Of Ice Mana Reservation 2" "Enchantment Herald Of Purity Additional Minion 1" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2" "Enchantment Ice Shot Damage 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Kinetic Blast Explosions 2" "Enchantment Lacerate Damage 2" "Enchantment Molten Strike Num Of Additional Projectiles 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Puncture Damage 2" "Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2" "Enchantment Purity Of Lightning Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Righteous Fire Area Of Effect 2" "Enchantment Righteous Fire Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Smoke Mine Movement Speed 2" "Enchantment Storm Brand Damage 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Sunder Damage 2" "Enchantment Sunder Wave Speed 2" "Enchantment Tectonic Slam Damage 2" "Enchantment Temporal Chains Curse Effect 2" "Enchantment Toxic Rain Damage 2" "Enchantment Vortex Cooldown Recovery 2" "Enchantment Vortex Damage 2" "Enchantment Winter Brand Stages 2" "Enchantment Zealotry Mana Reservation 2" + HasEnchantment "Enchantment Arc Damage 2" "Enchantment Ball Lightning Area Of Effect 2" "Enchantment Ball Lightning Damage 2" "Enchantment Barrage Num Of Additional Projectiles 1" "Enchantment Blade Blast Area of Effect 2" "Enchantment Blade Vortex Area Of Effect 2" "Enchantment Blade Vortex Crit Multi Per Blade 2" "Enchantment Blade Vortex Damage 2" "Enchantment Caustic Arrow Damage 2" "Enchantment Cremation Maximum Geysers 1" "Enchantment Cyclone Attack Speed 2" "Enchantment Cyclone Damage 2" "Enchantment Despair Effect 2" "Enchantment Essence Drain Damage 2" "Enchantment Freezing Pulse Damage 2" "Enchantment Freezing Pulse Projectile Speed 2" "Enchantment Frost Fury Additional Max Number Of Stages 1" "Enchantment Hatred Mana Reservation 2" "Enchantment Herald Of Purity Mana Reservation 2" "Enchantment Ice Spear Additional Projectile 1" "Enchantment Malevolence Mana Reservation 2" "Enchantment Penance Brand Cast Speed 2" "Enchantment Power Siphon Additional Projectiles 2" "Enchantment Pride Mana Reservation 2" "Enchantment Raise Spectre Damage 2" "Enchantment Shrapnel Trap Secondary Explosions 2" "Enchantment Spellslinger Cooldown Recovery 2" "Enchantment Spellslinger Reservation 1" "Enchantment Split Arrow Num Of Additional Projectiles 2" "Enchantment Stone Golem Granted Buff Effect 2" "Enchantment Storm Burst Additional Object Chance 2" "Enchantment Summon Carrion Golem Damage 2" "Enchantment Summon Skitterbots Mana Reservation 2" "Enchantment Summon Stone Golem Damage 2" "Enchantment Toxic Rain Damage 2" "Enchantment Wrath Mana Reservation 2" "Storm Brand Attached Target Lightning Penetration 2" SetFontSize 40 SetTextColor 255 255 255 # Crafting Base (Mid) SetBackgroundColor 60 60 60 255 # Crafting Base (Mid) @@ -1626,7 +1616,7 @@ Show # Jewels - Unique - Other Show # Uniques - 15c+ Rarity = Unique - BaseType "Arcanist Gloves" "Assassin's Boots" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Crusader Helmet" "Deerskin Gloves" "Ezomyte Tower Shield" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Jet Amulet" "Jewelled Foil" "Karui Maul" "Nubuck Boots" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Savant's Robe" "Siege Axe" "Silk Gloves" "Sorcerer Boots" "Two-Stone Ring" "Wyrmscale Doublet" "Vaal Rapier" "Ornate Quiver" "Golden Visage" + BaseType "Ambush Mitts" "Arcanist Gloves" "Arcanist Slippers" "Blood Raiment" "Carnal Boots" "Charan's Sword" "Crusader Boots" "Deerskin Gloves" "Ezomyte Tower Shield" "Gemstone Sword" "Gladiator Plate" "Glorious Plate" "Golden Bracers" "Golden Caligae" "Golden Flame" "Golden Mantle" "Golden Obi" "Golden Wreath" "Heavy Quiver" "Holy Chainmail" "Jet Amulet" "Jewelled Foil" "Jingling Spirit Shield" "Karui Maul" "Occultist's Vestment" "Prophecy Wand" "Rawhide Boots" "Royal Axe" "Ruby Amulet" "Sapphire Flask" "Savant's Robe" "Shackled Boots" "Siege Axe" "Silk Gloves" "Slink Boots" "Sorcerer Boots" "Steel Ring" "Two-Stone Ring" "Varnished Coat" "Wyrmscale Doublet" "Zodiac Leather" "Riveted Gloves" "Steelwood Bow" "Vaal Rapier" "Ornate Quiver" "Steel Circlet" "Golden Visage" "Ezomyte Dagger" "Saint's Hauberk" "Fluted Bascinet" SetFontSize 45 SetTextColor 255 128 64 # Unique (15c+) SetBackgroundColor 255 255 255 255 # Unique (15c+) @@ -1644,7 +1634,7 @@ Show # Uniques - 15c+ Show # Uniques - 5-15c Rarity = Unique - BaseType "Bismuth Flask" "Brass Spirit Shield" "Bronzescale Boots" "Clasped Boots" "Clasped Mitts" "Ezomyte Burgonet" "Full Wyrmscale" "Gold Ring" "Granite Flask" "Hydrascale Boots" "Hydrascale Gauntlets" "Jingling Spirit Shield" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Sapphire Flask" "Steel Ring" "Steelscale Gauntlets" "Studded Belt" "Timeworn Claw" "Vaal Blade" "Variscite Blade" "Zodiac Leather" "Riveted Gloves" "Ezomyte Dagger" + BaseType "Assassin's Boots" "Champion Kite Shield" "Clasped Mitts" "Exquisite Leather" "Gold Ring" "Granite Flask" "Highborn Staff" "Hydrascale Gauntlets" "Large Hybrid Flask" "Legion Gloves" "Magistrate Crown" "Pinnacle Tower Shield" "Stibnite Flask" "Studded Belt" "Timeworn Claw" "Topaz Ring" "Vaal Blade" "Lacquered Buckler" "Butcher Axe" SetFontSize 45 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1673,7 +1663,7 @@ Show # Uniques - Enchanted Show # Uniques - 3-5c Rarity = Unique - BaseType "Amber Amulet" "Ambush Mitts" "Archon Kite Shield" "Assassin Bow" "Carved Wand" "Chain Belt" "Champion Kite Shield" "Coiled Staff" "Conjurer Boots" "Coral Amulet" Cutlass "Festival Mask" "Fiend Dagger" "Full Dragonscale" "Gemstone Sword" "Gold Amulet" "Golden Plate" "Imperial Maul" "Imperial Staff" "Iron Sceptre" "Jade Amulet" "Jasper Chopper" "Judgement Staff" "Karui Chopper" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Mace" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Royal Skean" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Shackled Boots" "Simple Robe" "Slink Boots" "Soldier Gloves" "Stibnite Flask" "Topaz Ring" "Turquoise Amulet" "Vaal Spirit Shield" "Varnished Coat" "Void Axe" "Wool Gloves" "Steelwood Bow" "Ezomyte Spiked Shield" "Steel Circlet" "Tyrant's Sekhem" "Saint's Hauberk" "Two-Toned Boots" + BaseType "Amber Amulet" "Assassin Bow" "Bismuth Flask" "Blue Pearl Amulet" "Carved Wand" "Citadel Bow" "Clasped Boots" "Conjurer Boots" "Coral Amulet" "Corsair Sword" Cutlass "Diamond Flask" "Ezomyte Burgonet" "Fiend Dagger" "Grand Mana Flask" "Heavy Belt" "Hydrascale Boots" "Imperial Maul" "Imperial Skean" "Iron Ring" "Jade Amulet" "Judgement Staff" "Lacquered Garb" "Lapis Amulet" "Leather Cap" "Murder Mitts" "Nightmare Bascinet" "Nightmare Mace" "Nubuck Boots" "Onyx Amulet" "Paua Amulet" "Rawhide Tower Shield" "Royal Burgonet" "Ruby Ring" "Sacrificial Garb" "Sadist Garb" "Sanctified Life Flask" "Sanctified Mana Flask" "Simple Robe" "Sinner Tricorne" "Slaughter Knife" "Stealth Boots" "Sulphur Flask" "Topaz Flask" "Turquoise Amulet" "Unset Ring" "Vaal Spirit Shield" "Void Axe" "Ezomyte Spiked Shield" "Tyrant's Sekhem" "Two-Toned Boots" "Crimson Round Shield" SetFontSize 36 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique @@ -1694,27 +1684,26 @@ Show # Uniques - <3c - Unique Rings MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange +#-----# +# <3c # +#-----# +# Orange border +# Usually < 3c or nearly worthless. + Show # Uniques - <3c - Replica Rarity = Unique Replica True SetFontSize 40 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique - SetBorderColor 255 255 0 255 # Unique (3-5c) + SetBorderColor 180 90 45 255 # Unique PlayAlertSound 4 200 # Mid Value MinimapIcon 0 Orange UpsideDownHouse PlayEffect Orange - -#-----# -# <3c # -#-----# -# Orange border -# Usually < 3c or nearly worthless. - # Limited drop. May share a BaseType with an extremely valuable item, League specific, or boss drop only. Show # Uniques - Limited Rarity = Unique - BaseType "Agate Amulet" "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Cardinal Round Shield" "Carnal Mitts" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crystal Belt" "Exquisite Leather" Gavel "Goathide Boots" "Goliath Greaves" "Grand Mana Flask" "Great Crown" "Gut Ripper" "Harlequin Mask" "Heavy Belt" "Highborn Staff" "Holy Chainmail" "Hubris Circlet" "Imperial Skean" "Infernal Sword" "Iron Ring" Labrys "Leather Belt" "Legion Sword" "Lion Pelt" Maelstr "Midnight Blade" "Moonstone Ring" "Necromancer Circlet" "Nightmare Bascinet" "Opal Ring" "Painted Tower Shield" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Ruby Ring" "Sage Wand" "Sapphire Ring" "Serpentscale Gauntlets" "Silken Hood" "Silver Flask" "Sinner Tricorne" "Soldier Helmet" "Stealth Boots" "Sulphur Flask" "Terror Claw" "Titan Gauntlets" "Titan Greaves" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Unset Ring" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" + BaseType "Agate Amulet" Ambusher "Amethyst Flask" "Amethyst Ring" "Ancient Greaves" "Ancient Spirit Shield" "Archon Kite Shield" "Assassin's Mitts" "Astral Plate" "Branded Kite Shield" "Bronzescale Boots" "Cardinal Round Shield" "Carnal Armour" "Carnal Mitts" "Chain Belt" "Citrine Amulet" "Cloth Belt" "Crusader Gloves" "Crusader Helmet" "Crystal Belt" "Death Bow" "Decimation Bow" "Demon Dagger" "Ebony Tower Shield" "Elegant Ringmail" "Engraved Wand" "Eternal Sword" "Ezomyte Staff" "Full Wyrmscale" Gavel Gladius "Goathide Boots" "Gold Amulet" "Golden Plate" "Goliath Greaves" "Great Crown" "Great Mallet" "Grinning Fetish" "Gut Ripper" "Harlequin Mask" "Hubris Circlet" "Imperial Bow" "Infernal Sword" "Jasper Chopper" Labrys "Laminated Kite Shield" Lathi "Leather Belt" "Legion Boots" "Legion Sword" "Lion Pelt" Maelstr Meatgrinder "Midnight Blade" "Mind Cage" "Mirrored Spiked Shield" "Moonstone Ring" "Murder Boots" "Nailed Fist" "Necromancer Circlet" "Opal Ring" "Ornate Mace" "Painted Tower Shield" "Paua Ring" "Penetrating Arrow Quiver" "Prismatic Ring" "Prophet Crown" "Raven Mask" "Ritual Sceptre" "Ruby Flask" "Sage Wand" "Samite Gloves" "Sapphire Ring" "Sentinel Jacket" "Serpentscale Gauntlets" "Shadow Sceptre" "Shagreen Boots" "Siege Helmet" "Silken Hood" "Silver Flask" "Soldier Boots" "Soldier Gloves" "Soldier Helmet" "Sorcerer Gloves" "Spike-Point Arrow Quiver" "Terror Claw" "Terror Maul" "Titan Gauntlets" "Titan Greaves" "Titanium Spirit Shield" "Tornado Wand" "Triumphant Lamellar" "Two-Point Arrow Quiver" "Vaal Axe" "Vaal Gauntlets" "Vaal Mask" "Variscite Blade" "Void Sceptre" "Widowsilk Robe" "Zealot Gloves" "Blood Sceptre" SetFontSize 36 SetTextColor 255 128 64 # Unique SetBackgroundColor 50 25 12 230 # Unique diff --git a/Resources/filterblast_config.txt b/Resources/filterblast_config.txt index ad897a5..9def2b4 100644 --- a/Resources/filterblast_config.txt +++ b/Resources/filterblast_config.txt @@ -1,7 +1,7 @@ Filter [Highwind's Loot Filter] -Version [3.12.3] -LastUpdate [9.19.2020] +Version [3.12.4] +LastUpdate [9.23.2020] PoEVersion [3.12.x] ForumThread [https://www.pathofexile.com/forum/view-thread/1490867] diff --git a/Unique/UniqueBaseType.cs b/Unique/UniqueBaseType.cs index 84b4c04..a8df27c 100644 --- a/Unique/UniqueBaseType.cs +++ b/Unique/UniqueBaseType.cs @@ -136,7 +136,7 @@ private UniqueValue CalculateExpectedValue() minTier = Math.Max(minTier, 1); } } - + if (isUnobtainable) return UniqueValue.Chaos15; if (minVal > maxVal) { @@ -224,7 +224,7 @@ public UniqueValue ExpectedFilterValue { } } - public int SeverityLevel => Math.Abs(FilterValue.Tier - ExpectedFilterValue.Tier); + public int SeverityLevel => Math.Abs(Math.Max(FilterValue.Tier - 1, 0) - Math.Max(ExpectedFilterValue.Tier - 1, 0)); public string QuotedBaseType { get { @@ -283,8 +283,7 @@ public override bool Equals(object obj) public void Sort() { - _Items.Sort((x, y) => - { + _Items.Sort((x, y) => { if (y.IsCoreDrop) { if (!x.IsCoreDrop) return -1; diff --git a/Unique/UniqueItem.cs b/Unique/UniqueItem.cs index 31e5279..2d3ed39 100644 --- a/Unique/UniqueItem.cs +++ b/Unique/UniqueItem.cs @@ -24,9 +24,9 @@ namespace PoE_Price_Lister { public class UniqueItem { - private static string[] CORE_LEAGUES { get; } = { "Abyss", "Breach", "Beyond", "Betrayal", "Legion", "Blight", "Essence", "Prophecy", "Metamorph" }; + private static string[] CORE_LEAGUES { get; } = { "Abyss", "Breach", "Beyond", "Betrayal", "Legion", "Blight", "Essence", "Prophecy", "Metamorph", "Delirium" }; private static string[] SEMI_CORE_LEAGUES { get; } = { "Delve", "Incursion", }; - // Bestiary, Perandus, Talisman, Harbinger, Synthesis + // Bestiary, Perandus, Talisman, Harbinger, Synthesis, Legacy, Harvest // Warbands, Tempest, Torment, Bloodlines, Rampage, Ambush, Invasion, Domination, Nemesis, Anarchy, Onslaught public UniqueItem(JsonData jdata) diff --git a/poe_helm_enchants.csv b/poe_helm_enchants.csv index 480c2fd..500e619 100644 --- a/poe_helm_enchants.csv +++ b/poe_helm_enchants.csv @@ -1,1154 +1,1323 @@ -Name,Source,Description,Gem -Enchantment Arcanist Brand Cast Speed 2,Eternal Labyrinth,Arcanist Brand has 12% increased Cast Speed,Arcanist Brand -Enchantment Arcanist Brand Cast Speed 1,Merciless Labyrinth,Arcanist Brand has 8% increased Cast Speed,Arcanist Brand -Enchantment Arcanist Brand Unnerve 1,Eternal Labyrinth,Spells Triggered by Arcanist Brand Unnerve enemies on Hit for 4 seconds,Arcanist Brand -Enchantment Creeping Frost Damage 2,Eternal Labyrinth,40% increased Creeping Frost Damage,Creeping Frost -Enchantment Creeping Frost Duration 2,Eternal Labyrinth,36% increased Creeping Frost Duration,Creeping Frost -Enchantment Creeping Frost Area Of Effect 2,Eternal Labyrinth,24% increased Creeping Frost Area of Effect,Creeping Frost -Enchantment Creeping Frost Damage 1,Merciless Labyrinth,25% increased Creeping Frost Damage,Creeping Frost -Enchantment Creeping Frost Duration 1,Merciless Labyrinth,24% increased Creeping Frost Duration,Creeping Frost -Enchantment Creeping Frost Area Of Effect 1,Merciless Labyrinth,16% increased Creeping Frost Area of Effect,Creeping Frost -Enchantment Creeping Frost Chilling Area Movement Velocity 1,Eternal Labyrinth,Creeping Frost's Chilling Area has 38% increased Movement Speed,Creeping Frost -Enchantment Earthquake Damage 2,Eternal Labyrinth,40% increased Earthquake Damage,Earthquake -Enchantment Earthquake Damage per 0.1s Duration 2,Eternal Labyrinth,Earthquake deals 8% increased Damage per 0.1 seconds Duration,Earthquake -Enchantment Earthquake Area Of Effect 2,Eternal Labyrinth,24% increased Earthquake Area of Effect,Earthquake -Enchantment Earthquake Damage 1,Merciless Labyrinth,25% increased Earthquake Damage,Earthquake -Enchantment Earthquake Damage per 0.1s Duration 1,Merciless Labyrinth,Earthquake deals 5% increased Damage per 0.1 seconds Duration,Earthquake -Enchantment Earthquake Area Of Effect 1,Merciless Labyrinth,16% increased Earthquake Area of Effect,Earthquake -Enchantment Earthshatter Damage 2,Eternal Labyrinth,Earthshatter deals 40% increased Damage,Earthshatter -Enchantment Earthshatter Damage 1,Merciless Labyrinth,Earthshatter deals 25% increased Damage,Earthshatter -Enchantment Earthshatter Additional Spike 1,Eternal Labyrinth,Earthshatter creates +1 fissures,Earthshatter -Enchantment Earthshatter Radius 2,Eternal Labyrinth,Earthshatter has 24% increased Area of Effect,Earthshatter -Enchantment Earthshatter Radius 1,Merciless Labyrinth,Earthshatter has 16% increased Area of Effect,Earthshatter -Enchantment Penance Brand Cast Speed 2,Eternal Labyrinth,Penance Brand has 12% increased Cast Speed,Penance Brand -Enchantment Penance Brand Damage 2,Eternal Labyrinth,Penance Brand deals 40% increased Damage,Penance Brand -Enchantment Penance Brand Radius 2,Eternal Labyrinth,Penance Brand has 24% increased Area of Effect,Penance Brand -Enchantment Penance Brand Cast Speed 1,Merciless Labyrinth,Penance Brand has 8% increased Cast Speed,Penance Brand -Enchantment Penance Brand Damage 1,Merciless Labyrinth,Penance Brand deals 25% increased Damage,Penance Brand -Enchantment Penance Brand Radius 1,Merciless Labyrinth,Penance Brand has 16% increased Area of Effect,Penance Brand -Enchantment Rallying Cry Buff Effect 2,Eternal Labyrinth,15% increased Rallying Cry Buff Effect,Rallying Cry -Enchantment Rallying Cry Buff Effect 1,Merciless Labyrinth,10% increased Rallying Cry Buff Effect,Rallying Cry -Enchantment Rallying Cry Additional Exert 1,Eternal Labyrinth,Rallying Cry Exerts 1 additional Attack,Rallying Cry -Enchantment Ancestor Warchief Area Of Effect 2,Eternal Labyrinth,24% increased Ancestral Warchief Totem Area of Effect,Ancestor Warchief -Enchantment Ancestor Warchief Area Of Effect 1,Merciless Labyrinth,16% increased Ancestral Warchief Totem Area of Effect,Ancestor Warchief -Enchantment Ancestor Warchief Melee Damage 2,Eternal Labyrinth,Ancestral Warchief Totem grants 30% increased Melee Damage while Active,Ancestor Warchief -Enchantment Ancestor Warchief Melee Damage 1,Merciless Labyrinth,Ancestral Warchief Totem grants 20% increased Melee Damage while Active,Ancestor Warchief -Enchantment Ancestral Cry Exerted Attack Damage 2,Eternal Labyrinth,Attacks Exerted by Ancestral Cry deal 50% increased Damage,Ancestral Cry -Enchantment Ancestral Cry Exerted Attack Damage 1,Merciless Labyrinth,Attacks Exerted by Ancestral Cry deal 35% increased Damage,Ancestral Cry -Enchantment Ancestral Cry Minimum Power 1,Eternal Labyrinth,Ancestral Cry has a minimum of 10 Power,Ancestral Cry -Enchantment Ancestral Protector Attack Speed 2,Eternal Labyrinth,Ancestral Protector Totem grants 18% increased Attack Speed while Active,Ancestral Protector -Enchantment Ancestral Protector Damage 2,Eternal Labyrinth,Ancestral Protector Totem deals 40% increased Damage,Ancestral Protector -Enchantment Ancestral Protector Resistances 2,Eternal Labyrinth,+36% to Ancestral Protector Totem Elemental Resistances,Ancestral Protector -Enchantment Ancestral Protector Placement Speed 2,Eternal Labyrinth,18% increased Ancestral Protector Totem Placement Speed,Ancestral Protector -Enchantment Ancestral Protector Attack Speed 1,Merciless Labyrinth,Ancestral Protector Totem grants 12% increased Attack Speed while Active,Ancestral Protector -Enchantment Ancestral Protector Damage 1,Merciless Labyrinth,Ancestral Protector Totem deals 25% increased Damage,Ancestral Protector -Enchantment Ancestral Protector Resistances 1,Merciless Labyrinth,+24% to Ancestral Protector Totem Elemental Resistances,Ancestral Protector -Enchantment Ancestral Protector Placement Speed 1,Merciless Labyrinth,12% increased Ancestral Protector Totem Placement Speed,Ancestral Protector -Enchantment Ancestral Warchief Damage 2,Eternal Labyrinth,40% increased Ancestral Warchief Totem Damage,Ancestral Warchief -Enchantment Ancestral Warchief Damage 1,Merciless Labyrinth,25% increased Ancestral Warchief Totem Damage,Ancestral Warchief -Enchantment Anger Reservation 2,Eternal Labyrinth,Anger has 15% reduced Mana Reservation,Anger Reservation -Enchantment Anger Reservation 1,Merciless Labyrinth,Anger has 10% reduced Mana Reservation,Anger Reservation -Enchantment Animate Guardian Damage 2,Eternal Labyrinth,Animated Guardians deal 40% increased Damage,Animate Guardian -Enchantment Animate Guardian Elemental Resistances 2,Eternal Labyrinth,+36% to Animated Guardian Elemental Resistances,Animate Guardian -Enchantment Animate Guardian Damage 1,Merciless Labyrinth,Animated Guardians deal 25% increased Damage,Animate Guardian -Enchantment Animate Guardian Elemental Resistances 1,Merciless Labyrinth,+24% to Animated Guardian Elemental Resistances,Animate Guardian -Enchantment Animate Weapon Chance To Create Additional Copy 2,Eternal Labyrinth,24% chance to create an additional Animate Weapon copy,Animate Weapon -Enchantment Animate Weapon Damage 2,Eternal Labyrinth,Animated Weapons deal 40% increased Damage,Animate Weapon -Enchantment Animate Weapon Duration 2,Eternal Labyrinth,30% increased Animate Weapon Duration,Animate Weapon -Enchantment Animate Weapon Chance To Create Additional Copy 1,Merciless Labyrinth,16% chance to create an additional Animate Weapon copy,Animate Weapon -Enchantment Animate Weapon Damage 1,Merciless Labyrinth,Animated Weapons deal 25% increased Damage,Animate Weapon -Enchantment Animate Weapon Duration 1,Merciless Labyrinth,20% increased Animate Weapon Duration,Animate Weapon -Enchantment Arc Damage 2,Eternal Labyrinth,40% increased Arc Damage,Arc -Enchantment Arc Damage Per Chain 2,Eternal Labyrinth,Arc deals 12% increased Damage for each time it has Chained,Arc -Enchantment Arc Damage 1,Merciless Labyrinth,25% increased Arc Damage,Arc -Enchantment Arc Damage Per Chain 1,Merciless Labyrinth,Arc deals 8% increased Damage for each time it has Chained,Arc -Enchantment Arc Num Of Additional Projectiles In Chain 1,Eternal Labyrinth,Arc Chains an additional time,Arc -Enchantment Arc Shock Chance 2,Eternal Labyrinth,Arc has +30% chance to Shock,Arc -Enchantment Arc Shock Chance 1,Merciless Labyrinth,Arc has +20% chance to Shock,Arc -Enchantment Arcane Cloak Additional Mana Spent 2,Eternal Labyrinth,Arcane Cloak Spends an additional 15% of current Mana,Arcane Cloak -Enchantment Arcane Cloak Additional Mana Spent 1,Merciless Labyrinth,Arcane Cloak Spends an additional 10% of current Mana,Arcane Cloak -Enchantment Arcane Cloak Grants Life Regeneration 1,Eternal Labyrinth,Arcane Cloak grants Life Regeneration equal to 15% of Mana Spent per Second,Arcane Cloak -Enchantment Arctic Armour Buff Effect 2,Eternal Labyrinth,36% increased Arctic Armour Buff Effect,Arctic Armour -Enchantment Arctic Armour Mana Reservation 2,Eternal Labyrinth,Arctic Armour has 30% reduced Mana Reservation,Arctic Armour -Enchantment Arctic Armour Buff Effect 1,Merciless Labyrinth,24% increased Arctic Armour Buff Effect,Arctic Armour -Enchantment Arctic Armour Mana Reservation 1,Merciless Labyrinth,Arctic Armour has 20% reduced Mana Reservation,Arctic Armour -Armageddon Brand Attached Target Fire Penetration 2,Eternal Labyrinth,Armageddon Brand Damage Penetrates 12% of Branded Enemy's Fire Resistance,Armageddon Brand -Armageddon Brand Repeat Frequency 2,Eternal Labyrinth,Armageddon Brand has 12% increased Activation Frequency,Armageddon Brand -Armageddon Brand Attached Target Fire Penetration 1,Merciless Labyrinth,Armageddon Brand Damage Penetrates 8% of Branded Enemy's Fire Resistance,Armageddon Brand -Armageddon Brand Repeat Frequency 1,Merciless Labyrinth,Armageddon Brand has 8% increased Activation Frequency,Armageddon Brand -Enchantment Armageddon Brand Damage 2,Eternal Labyrinth,Armageddon Brand deals 40% increased Damage,Armageddon Brand -Enchantment Armageddon Brand Damage 1,Merciless Labyrinth,Armageddon Brand deals 25% increased Damage,Armageddon Brand -Enchantment Artillery Ballista Additional Arrows 2,Eternal Labyrinth,Artillery Ballista fires 2 additional Arrows,Artillery Ballista -Enchantment Artillery Ballista Additional Arrows 1,Merciless Labyrinth,Artillery Ballista fires an additional Arrow,Artillery Ballista -Enchantment Artillery Ballista Cross Pattern 1,Eternal Labyrinth,Artillery Ballista Projectiles fall in two perpendicular lines instead,Artillery Ballista -Enchantment Artillery Ballista Fire Penetration 2,Eternal Labyrinth,Artillery Ballista Damage Penetrates 10% Fire Resistance,Artillery Ballista -Enchantment Artillery Ballista Fire Penetration 1,Merciless Labyrinth,Artillery Ballista Damage Penetrates 6% Fire Resistance,Artillery Ballista -Enchantment Assassins Mark Duration 2,Eternal Labyrinth,45% increased Assassin's Mark Duration,Assassins Mark -Enchantment Assassins Mark Duration 1,Merciless Labyrinth,30% increased Assassin's Mark Duration,Assassins Mark -Enchantment Assassins Mark Curse Effect 2,Eternal Labyrinth,30% increased Assassin's Mark Curse Effect,Assassins Mark -Enchantment Assassins Mark Curse Effect 1,Merciless Labyrinth,20% increased Assassin's Mark Curse Effect,Assassins Mark -Enchantment Ball Lightning Damage 2,Eternal Labyrinth,40% increased Ball Lightning Damage,Ball Lightning -Enchantment Ball Lightning Area Of Effect 2,Eternal Labyrinth,24% increased Ball Lightning Area of Effect,Ball Lightning -Enchantment Ball Lightning Damage 1,Merciless Labyrinth,25% increased Ball Lightning Damage,Ball Lightning -Enchantment Ball Lightning Area Of Effect 1,Merciless Labyrinth,16% increased Ball Lightning Area of Effect,Ball Lightning -Enchantment Ball Lightning Additional Projectiles 1,Eternal Labyrinth,Ball Lightning fires an additional Projectile,Ball Lightning -Enchantment Bane Area Of Effect 2,Eternal Labyrinth,Bane has 24% increased Area of Effect,Bane -Enchantment Bane Damage 2,Eternal Labyrinth,Bane deals 40% increased Damage,Bane -Enchantment Bane Area Of Effect 1,Merciless Labyrinth,Bane has 16% increased Area of Effect,Bane -Enchantment Bane Damage 1,Merciless Labyrinth,Bane deals 25% increased Damage,Bane -Enchantment Bane Linked Curse Effect 2,Eternal Labyrinth,15% increased Effect of Curses applied by Bane,Bane -Enchantment Bane Linked Curse Effect 1,Merciless Labyrinth,10% increased Effect of Curses applied by Bane,Bane -Enchantment Barrage Attack Speed 2,Eternal Labyrinth,15% increased Barrage Attack Speed,Barrage -Enchantment Barrage Damage 2,Eternal Labyrinth,40% increased Barrage Damage,Barrage -Enchantment Barrage Attack Speed 1,Merciless Labyrinth,10% increased Barrage Attack Speed,Barrage -Enchantment Barrage Damage 1,Merciless Labyrinth,25% increased Barrage Damage,Barrage -Enchantment Barrage Num Of Additional Projectiles 1,Eternal Labyrinth,Barrage fires an additional Projectile,Barrage -Enchantment Bear Trap Cooldown Speed 2,Eternal Labyrinth,15% increased Bear Trap Cooldown Recovery Speed,Bear Trap -Enchantment Bear Trap Damage 2,Eternal Labyrinth,40% increased Bear Trap Damage,Bear Trap -Enchantment Bear Trap Damage Taken 2,Eternal Labyrinth,Enemies affected by Bear Trap take 10% increased Damage from Trap or Mine Hits,Bear Trap -Enchantment Bear Trap Cooldown Speed 1,Merciless Labyrinth,10% increased Bear Trap Cooldown Recovery Speed,Bear Trap -Enchantment Bear Trap Damage 1,Merciless Labyrinth,25% increased Bear Trap Damage,Bear Trap -Enchantment Bear Trap Damage Taken 1,Merciless Labyrinth,Enemies affected by Bear Trap take 5% increased Damage from Trap or Mine Hits,Bear Trap -Enchantment Berserk Effect 2,Eternal Labyrinth,Berserk has 30% increased Buff Effect,Berserk -Enchantment Berserk Effect 1,Merciless Labyrinth,Berserk has 20% increased Buff Effect,Berserk -Enchantment Berserk Rage Loss 2,Eternal Labyrinth,Berserk has 40% reduced Rage loss per second,Berserk -Enchantment Berserk Rage Loss 1,Merciless Labyrinth,Berserk has 25% reduced Rage loss per second,Berserk -Enchantment Blade Blast Area of Effect 2,Eternal Labyrinth,Blade Blast has 24% increased Area of Effect,Blade Blast -Enchantment Blade Blast Damage 2,Eternal Labyrinth,Blade Blast deals 40% increased Damage,Blade Blast -Enchantment Blade Blast Area of Effect 1,Merciless Labyrinth,Blade Blast has 16% increased Area of Effect,Blade Blast -Enchantment Blade Blast Damage 1,Merciless Labyrinth,Blade Blast deals 25% increased Damage,Blade Blast -Enchantment Blade Blast Detonation Area 2,Eternal Labyrinth,Blade Blast detonates other Lingering Blades within an 75% increased Area,Blade Blast -Enchantment Blade Blast Detonation Area 1,Merciless Labyrinth,Blade Blast detonates other Lingering Blades within an 50% increased Area,Blade Blast -Enchantment Blade Flurry Damage 2,Eternal Labyrinth,40% increased Blade Flurry Damage,Blade Flurry -Enchantment Blade Flurry Dodge Per Stack 2,Eternal Labyrinth,9% chance to Dodge Attack Hits while at maximum Blade Flurry stages,Blade Flurry -Enchantment Blade Flurry Area Of Effect 2,Eternal Labyrinth,24% increased Blade Flurry Area of Effect,Blade Flurry -Enchantment Blade Flurry Damage 1,Merciless Labyrinth,25% increased Blade Flurry Damage,Blade Flurry -Enchantment Blade Flurry Dodge Per Stack 1,Merciless Labyrinth,6% chance to Dodge Attack Hits while at maximum Blade Flurry stages,Blade Flurry -Enchantment Blade Flurry Area Of Effect 1,Merciless Labyrinth,16% increased Blade Flurry Area of Effect,Blade Flurry -Enchantment Blade Vortex Crit Multi Per Blade 2,Eternal Labyrinth,Blade Vortex has +3% to Critical Strike Multiplier for each blade,Blade Vortex -Enchantment Blade Vortex Damage 2,Eternal Labyrinth,40% increased Blade Vortex Spell Damage,Blade Vortex -Enchantment Blade Vortex Duration 2,Eternal Labyrinth,30% increased Blade Vortex Duration,Blade Vortex -Enchantment Blade Vortex Area Of Effect 2,Eternal Labyrinth,24% increased Blade Vortex Area of Effect,Blade Vortex -Enchantment Blade Vortex Crit Multi Per Blade 1,Merciless Labyrinth,Blade Vortex has +2% to Critical Strike Multiplier for each blade,Blade Vortex -Enchantment Blade Vortex Damage 1,Merciless Labyrinth,25% increased Blade Vortex Spell Damage,Blade Vortex -Enchantment Blade Vortex Duration 1,Merciless Labyrinth,20% increased Blade Vortex Duration,Blade Vortex -Enchantment Blade Vortex Area Of Effect 1,Merciless Labyrinth,16% increased Blade Vortex Area of Effect,Blade Vortex -Enchantment Bladefall Critical Strike Chance 2,Eternal Labyrinth,90% increased Bladefall Critical Strike Chance,Bladefall -Enchantment Bladefall Damage 2,Eternal Labyrinth,40% increased Bladefall Damage,Bladefall -Enchantment Bladefall Area Of Effect 2,Eternal Labyrinth,24% increased Bladefall Area of Effect,Bladefall -Enchantment Bladefall Critical Strike Chance 1,Merciless Labyrinth,60% increased Bladefall Critical Strike Chance,Bladefall -Enchantment Bladefall Damage 1,Merciless Labyrinth,25% increased Bladefall Damage,Bladefall -Enchantment Bladefall Area Of Effect 1,Merciless Labyrinth,16% increased Bladefall Area of Effect,Bladefall -Enchantment Bladefall Additional Volley,Eternal Labyrinth,Bladefall has an additional Volley,Bladefall -Enchantment Bladestorm Damage 2,Eternal Labyrinth,Bladestorm deals 40% increased Damage,Bladestorm -Enchantment Bladestorm Damage 1,Merciless Labyrinth,Bladestorm deals 25% increased Damage,Bladestorm -Enchantment Bladestorm Maximum Number Of Storms Allowed 1,Eternal Labyrinth,+1 to maximum number of Bladestorms,Bladestorm -Enchantment Bladestorm Sandstorm Speed 2,Eternal Labyrinth,Sand Bladestorms move with 75% increased speed,Bladestorm -Enchantment Bladestorm Sandstorm Speed 1,Merciless Labyrinth,Sand Bladestorms move with 50% increased speed,Bladestorm -Enchantment Blast Rain Damage 2,Eternal Labyrinth,Blast Rain deals 40% increased Damage,Blast Rain -Enchantment Blast Rain Area Of Effect 2,Eternal Labyrinth,Blast Rain has 24% increased Area of Effect,Blast Rain -Enchantment Blast Rain Damage 1,Merciless Labyrinth,Blast Rain deals 25% increased Damage,Blast Rain -Enchantment Blast Rain Area Of Effect 1,Merciless Labyrinth,Blast Rain has 16% increased Area of Effect,Blast Rain -Enchantment Blast Rain Additional Blast 2,Eternal Labyrinth,Blast Rain fires an additional Arrow,Blast Rain -Enchantment Blight Damage 2,Eternal Labyrinth,40% increased Blight Damage,Blight -Enchantment Blight Area Of Effect 2,Eternal Labyrinth,24% increased Blight Area of Effect,Blight -Enchantment Blight Damage 1,Merciless Labyrinth,25% increased Blight Damage,Blight -Enchantment Blight Area Of Effect 1,Merciless Labyrinth,16% increased Blight Area of Effect,Blight -Enchantment Blight Secondary Skill Duration 2,Eternal Labyrinth,Blight has 30% increased Hinder Duration,Blight -Enchantment Blight Secondary Skill Duration 1,Merciless Labyrinth,Blight has 20% increased Hinder Duration,Blight -Enchantment Blink Arrow Attack Speed 2,Eternal Labyrinth,Blink Arrow and Blink Arrow Clones have 15% increased Attack Speed,Blink Arrow -Enchantment Blink Arrow Cooldown Speed 2,Eternal Labyrinth,30% increased Blink Arrow Cooldown Recovery Speed,Blink Arrow -Enchantment Blink Arrow Damage 2,Eternal Labyrinth,Blink Arrow and Blink Arrow Clones have 40% increased Damage,Blink Arrow -Enchantment Blink Arrow Attack Speed 1,Merciless Labyrinth,Blink Arrow and Blink Arrow Clones have 10% increased Attack Speed,Blink Arrow -Enchantment Blink Arrow Cooldown Speed 1,Merciless Labyrinth,20% increased Blink Arrow Cooldown Recovery Speed,Blink Arrow -Enchantment Blink Arrow Damage 1,Merciless Labyrinth,Blink Arrow and Blink Arrow Clones have 25% increased Damage,Blink Arrow -Enchantment Blood and Sand Buff Effect 2,Eternal Labyrinth,Blood and Sand has 40% increased Buff Effect,Blood and Sand -Enchantment Blood and Sand Buff Effect 1,Merciless Labyrinth,Blood and Sand has 25% increased Buff Effect,Blood and Sand -Enchantment Blood Rage Attack Speed 2,Eternal Labyrinth,Blood Rage grants additional 12% increased Attack Speed,Blood Rage -Enchantment Blood Rage Frenzy On Kill 2,Eternal Labyrinth,Blood Rage grants additional 30% chance to gain a Frenzy Charge on Kill,Blood Rage -Enchantment Blood Rage Attack Speed 1,Merciless Labyrinth,Blood Rage grants additional 8% increased Attack Speed,Blood Rage -Enchantment Blood Rage Frenzy On Kill 1,Merciless Labyrinth,Blood Rage grants additional 20% chance to gain a Frenzy Charge on Kill,Blood Rage -Enchantment Body Swap Cast Speed 2,Eternal Labyrinth,12% increased Bodyswap Cast Speed,Body Swap -Enchantment Body Swap Damage 2,Eternal Labyrinth,40% increased Bodyswap Damage,Body Swap -Enchantment Body Swap Cast Speed 1,Merciless Labyrinth,8% increased Bodyswap Cast Speed,Body Swap -Enchantment Body Swap Damage 1,Merciless Labyrinth,25% increased Bodyswap Damage,Body Swap -Enchantment Bone Offering Block Chance 2,Eternal Labyrinth,Bone Offering grants an additional +9% Chance to Block Attack Damage,Bone Offering -Enchantment Bone Offering Duration 2,Eternal Labyrinth,45% increased Bone Offering Duration,Bone Offering -Enchantment Bone Offering Block Chance 1,Merciless Labyrinth,Bone Offering grants an additional +6% Chance to Block Attack Damage,Bone Offering -Enchantment Bone Offering Duration 1,Merciless Labyrinth,30% increased Bone Offering Duration,Bone Offering -Enchantment Burning Arrow Damage 2,Eternal Labyrinth,40% increased Burning Arrow Damage,Burning Arrow -Enchantment Burning Arrow Debuff Effect 2,Eternal Labyrinth,Burning Arrow has 24% increased Debuff Effect,Burning Arrow -Enchantment Burning Arrow Ignite Chance 2,Eternal Labyrinth,Burning Arrow has +30% chance to Ignite,Burning Arrow -Enchantment Burning Arrow Physical Damage Percent To Add As Fire Damage 2,Eternal Labyrinth,15% of Burning Arrow Physical Damage gained as Extra Fire Damage,Burning Arrow -Enchantment Burning Arrow Damage 1,Merciless Labyrinth,25% increased Burning Arrow Damage,Burning Arrow -Enchantment Burning Arrow Debuff Effect 1,Merciless Labyrinth,Burning Arrow has 16% increased Debuff Effect,Burning Arrow -Enchantment Burning Arrow Ignite Chance 1,Merciless Labyrinth,Burning Arrow has +20% chance to Ignite,Burning Arrow -Enchantment Burning Arrow Physical Damage Percent To Add As Fire Damage 1,Merciless Labyrinth,10% of Burning Arrow Physical Damage gained as Extra Fire Damage,Burning Arrow -Enchantment Caustic Arrow Damage 2,Eternal Labyrinth,40% increased Caustic Arrow Damage,Caustic Arrow -Enchantment Caustic Arrow Duration 2,Eternal Labyrinth,30% increased Caustic Arrow Duration,Caustic Arrow -Enchantment Caustic Arrow Area Of Effect 2,Eternal Labyrinth,24% increased Caustic Arrow Area of Effect,Caustic Arrow -Enchantment Caustic Arrow Damage 1,Merciless Labyrinth,25% increased Caustic Arrow Damage,Caustic Arrow -Enchantment Caustic Arrow Duration 1,Merciless Labyrinth,20% increased Caustic Arrow Duration,Caustic Arrow -Enchantment Caustic Arrow Area Of Effect 1,Merciless Labyrinth,16% increased Caustic Arrow Area of Effect,Caustic Arrow -Enchantment Caustic Arrow Wither On Hit 2,Eternal Labyrinth,Caustic Arrow has 20% chance to inflict Withered on Hit for 2 seconds base Duration,Caustic Arrow -Enchantment Caustic Arrow Wither On Hit 1,Merciless Labyrinth,Caustic Arrow has 14% chance to inflict Withered on Hit for 2 seconds base Duration,Caustic Arrow -Enchantment Chain Hook Damage 2,Eternal Labyrinth,Chain Hook deals 40% increased Damage,Chain Hook -Enchantment Chain Hook Gain Rage On Hit Chance 2,Eternal Labyrinth,Chain Hook has a 40% chance to grant +1 Rage if it Hits Enemies,Chain Hook -Enchantment Chain Hook Damage 1,Merciless Labyrinth,Chain Hook deals 25% increased Damage,Chain Hook -Enchantment Chain Hook Gain Rage On Hit Chance 1,Merciless Labyrinth,Chain Hook has a 25% chance to grant +1 Rage if it Hits Enemies,Chain Hook -Enchantment Chain Hook Cone Radius Per 12 Rage 1,Eternal Labyrinth,Chain Hook has +1 Radius per 12 Rage,Chain Hook -Enchantment Chaos Golem Elemental Resistances 2,Eternal Labyrinth,+36% to Chaos Golem Elemental Resistances,Chaos Golem -Enchantment Chaos Golem Percent Additional Physical Damage Reduction 2,Eternal Labyrinth,100% increased Effect of the Buff granted by your Chaos Golems,Chaos Golem -Enchantment Chaos Golem Elemental Resistances 1,Merciless Labyrinth,+24% to Chaos Golem Elemental Resistances,Chaos Golem -Enchantment Chaos Golem Percent Additional Physical Damage Reduction 1,Merciless Labyrinth,75% increased Effect of the Buff granted by your Chaos Golems,Chaos Golem -Enchantment Charged Dash Damage 2,Eternal Labyrinth,40% increased Charged Dash Damage,Charged Dash -Enchantment Charged Dash Dodge When Finished Channelling 2,Eternal Labyrinth,6% chance to Dodge Attack Hits if you have finished Channelling Charged Dash Recently,Charged Dash -Enchantment Charged Dash Movement Speed 2,Eternal Labyrinth,Charged Dash has 15% more Movement Speed,Charged Dash -Enchantment Charged Dash Radius Final Explosion 2,Eternal Labyrinth,Charged Dash has +6 to Radius of each Wave's last damage Area,Charged Dash -Enchantment Charged Dash Damage 1,Merciless Labyrinth,25% increased Charged Dash Damage,Charged Dash -Enchantment Charged Dash Dodge When Finished Channelling 1,Merciless Labyrinth,4% chance to Dodge Attack Hits if you have finished Channelling Charged Dash Recently,Charged Dash -Enchantment Charged Dash Movement Speed 1,Merciless Labyrinth,Charged Dash has 10% more Movement Speed,Charged Dash -Enchantment Charged Dash Radius Final Explosion 1,Merciless Labyrinth,Charged Dash has +4 to Radius of each Wave's last damage Area,Charged Dash -Enchantment Clarity Mana Reservation 2,Eternal Labyrinth,Clarity has 30% reduced Mana Reservation,Clarity -Enchantment Clarity Mana Reservation 1,Merciless Labyrinth,Clarity has 20% reduced Mana Reservation,Clarity -Enchantment Cleave Attack Speed 2,Eternal Labyrinth,15% increased Cleave Attack Speed,Cleave -Enchantment Cleave Damage 2,Eternal Labyrinth,40% increased Cleave Damage,Cleave -Enchantment Cleave Area Of Effect 2,Eternal Labyrinth,24% increased Cleave Area of Effect,Cleave -Enchantment Cleave Attack Speed 1,Merciless Labyrinth,10% increased Cleave Attack Speed,Cleave -Enchantment Cleave Damage 1,Merciless Labyrinth,25% increased Cleave Damage,Cleave -Enchantment Cleave Area Of Effect 1,Merciless Labyrinth,16% increased Cleave Area of Effect,Cleave -Enchantment Cobra Lash Damage 2,Eternal Labyrinth,Cobra Lash deals 40% increased Damage,Cobra Lash -Enchantment Cobra Lash Number Of Additional Chains 2,Eternal Labyrinth,Cobra Lash Chains 3 additional times,Cobra Lash -Enchantment Cobra Lash Projectile Speed 2,Eternal Labyrinth,Cobra Lash has 30% increased Projectile Speed,Cobra Lash -Enchantment Cobra Lash Damage 1,Merciless Labyrinth,Cobra Lash deals 25% increased Damage,Cobra Lash -Enchantment Cobra Lash Number Of Additional Chains 1,Merciless Labyrinth,Cobra Lash Chains 2 additional times,Cobra Lash -Enchantment Cobra Lash Projectile Speed 1,Merciless Labyrinth,Cobra Lash has 20% increased Projectile Speed,Cobra Lash -Enchantment Cold Snap Cooldown Speed 2,Eternal Labyrinth,30% increased Cold Snap Cooldown Recovery Speed,Cold Snap -Enchantment Cold Snap Damage 2,Eternal Labyrinth,40% increased Cold Snap Damage,Cold Snap -Enchantment Cold Snap Area Of Effect 2,Eternal Labyrinth,24% increased Cold Snap Area of Effect,Cold Snap -Enchantment Cold Snap Cooldown Speed 1,Merciless Labyrinth,20% increased Cold Snap Cooldown Recovery Speed,Cold Snap -Enchantment Cold Snap Damage 1,Merciless Labyrinth,25% increased Cold Snap Damage,Cold Snap -Enchantment Cold Snap Area Of Effect 1,Merciless Labyrinth,16% increased Cold Snap Area of Effect,Cold Snap -Enchantment Conductivity Curse Effect 2,Eternal Labyrinth,30% increased Conductivity Curse Effect,Conductivity -Enchantment Conductivity Curse Effect 1,Merciless Labyrinth,20% increased Conductivity Curse Effect,Conductivity -Enchantment Conductivity Duration 2,Eternal Labyrinth,45% increased Conductivity Duration,Conductivity -Enchantment Conductivity Duration 1,Merciless Labyrinth,30% increased Conductivity Duration,Conductivity -Enchantment Consecrated Path Damage 2,Eternal Labyrinth,Consecrated Path deals 40% increased Damage,Consecrated Path -Enchantment Consecrated Path Area Of Effect 2,Eternal Labyrinth,Consecrated Path has 24% increased Area of Effect,Consecrated Path -Enchantment Consecrated Path Range 2,Eternal Labyrinth,Consecrated Path has 15% increased teleport range,Consecrated Path -Enchantment Consecrated Path Damage 1,Merciless Labyrinth,Consecrated Path deals 25% increased Damage,Consecrated Path -Enchantment Consecrated Path Area Of Effect 1,Merciless Labyrinth,Consecrated Path has 16% increased Area of Effect,Consecrated Path -Enchantment Consecrated Path Range 1,Merciless Labyrinth,Consecrated Path has 10% increased teleport range,Consecrated Path -Enchantment Contagion Damage 2,Eternal Labyrinth,40% increased Contagion Damage,Contagion -Enchantment Contagion Damage 1,Merciless Labyrinth,25% increased Contagion Damage,Contagion -Enchantment Contagion Duration 2,Eternal Labyrinth,30% increased Contagion Duration,Contagion -Enchantment Contagion Duration 1,Merciless Labyrinth,20% increased Contagion Duration,Contagion -Enchantment Contagion Radius 2,Eternal Labyrinth,24% increased Contagion Area of Effect,Contagion -Enchantment Contagion Radius 1,Merciless Labyrinth,16% increased Contagion Area of Effect,Contagion -Enchantment Conversion Trap Cooldown Speed 2,Eternal Labyrinth,30% increased Conversion Trap Cooldown Recovery Speed,Conversion Trap -Enchantment Conversion Trap Damage 2,Eternal Labyrinth,Converted Enemies have 40% increased Damage,Conversion Trap -Enchantment Conversion Trap Cooldown Speed 1,Merciless Labyrinth,20% increased Conversion Trap Cooldown Recovery Speed,Conversion Trap -Enchantment Conversion Trap Damage 1,Merciless Labyrinth,Converted Enemies have 25% increased Damage,Conversion Trap -Enchantment Convocation Cooldown Speed 2,Eternal Labyrinth,30% increased Convocation Cooldown Recovery Speed,Convocation -Enchantment Convocation Cooldown Speed 1,Merciless Labyrinth,20% increased Convocation Cooldown Recovery Speed,Convocation -Enchantment Convocation Life Regeneration 2,Eternal Labyrinth,36% increased Convocation Buff Effect,Convocation -Enchantment Convocation Life Regeneration 1,Merciless Labyrinth,24% increased Convocation Buff Effect,Convocation -Enchantment Cremation Damage 2,Eternal Labyrinth,40% increased Cremation Damage,Cremation -Enchantment Cremation Damage 1,Merciless Labyrinth,25% increased Cremation Damage,Cremation -Enchantment Cremation Maximum Geysers 1,Eternal Labyrinth,Cremation can have up to 1 additional Geyser at a time,Cremation -Enchantment Cremation Cast Speed 2,Eternal Labyrinth,12% increased Cremation Cast Speed,Cremation -Enchantment Cremation Cast Speed 1,Merciless Labyrinth,8% increased Cremation Cast Speed,Cremation -Enchantment Cyclone Attack Speed 2,Eternal Labyrinth,15% increased Cyclone Attack Speed,Cyclone -Enchantment Cyclone Damage 2,Eternal Labyrinth,40% increased Cyclone Damage,Cyclone -Enchantment Cyclone Attack Speed 1,Merciless Labyrinth,10% increased Cyclone Attack Speed,Cyclone -Enchantment Cyclone Damage 1,Merciless Labyrinth,25% increased Cyclone Damage,Cyclone -Enchantment Dack Pact Cast Speed 2,Eternal Labyrinth,12% increased Dark Pact Cast Speed,Dack Pact -Enchantment Dack Pact Cast Speed 1,Merciless Labyrinth,8% increased Dark Pact Cast Speed,Dack Pact -Enchantment Dark Pact Area Of Effect 2,Eternal Labyrinth,24% increased Dark Pact Area of Effect,Dark Pact -Enchantment Dark Pact Damage 2,Eternal Labyrinth,40% increased Dark Pact Damage,Dark Pact -Enchantment Dark Pact Area Of Effect 1,Merciless Labyrinth,16% increased Dark Pact Area of Effect,Dark Pact -Enchantment Dark Pact Damage 1,Merciless Labyrinth,25% increased Dark Pact Damage,Dark Pact -Enchantment Dash Cooldown Count 2,Eternal Labyrinth,Dash has +2 Cooldown Uses,Dash -Enchantment Dash Cooldown Count 1,Merciless Labyrinth,Dash has +1 Cooldown Use,Dash -Enchantment Dash Travel Distance 2,Eternal Labyrinth,Dash travels 100% increased distance,Dash -Enchantment Dash Travel Distance 1,Merciless Labyrinth,Dash travels 65% increased distance,Dash -Enchantment Decoy Totem Life 2,Eternal Labyrinth,60% increased Decoy Totem Life,Decoy Totem -Enchantment Decoy Totem Area Of Effect 2,Eternal Labyrinth,24% increased Decoy Totem Area of Effect,Decoy Totem -Enchantment Decoy Totem Life 1,Merciless Labyrinth,40% increased Decoy Totem Life,Decoy Totem -Enchantment Decoy Totem Area Of Effect 1,Merciless Labyrinth,16% increased Decoy Totem Area of Effect,Decoy Totem -Enchantment Desecrate Additional Corpse 2,Eternal Labyrinth,Desecrate Spawns 3 additional corpses,Desecrate -Enchantment Desecrate Additional Corpse 1,Merciless Labyrinth,Desecrate Spawns 2 additional corpses,Desecrate -Enchantment Despair Duration 2,Eternal Labyrinth,45% increased Despair Duration,Despair -Enchantment Despair Duration 1,Merciless Labyrinth,30% increased Despair Duration,Despair -Enchantment Despair Effect 2,Eternal Labyrinth,30% increased Despair Curse Effect,Despair -Enchantment Despair Effect 1,Merciless Labyrinth,20% increased Despair Curse Effect,Despair -Enchantment Determination Mana Reservation 2,Eternal Labyrinth,Determination has 15% reduced Mana Reservation,Determination -Enchantment Determination Mana Reservation 1,Merciless Labyrinth,Determination has 10% reduced Mana Reservation,Determination -Enchantment Detonate Dead Damage 2,Eternal Labyrinth,40% increased Detonate Dead Damage,Detonate Dead -Enchantment Detonate Dead Percent Chance To Detonate Additional Corpse 2,Eternal Labyrinth,Detonate Dead has a 45% chance to detonate an additional corpse,Detonate Dead -Enchantment Detonate Dead Area Of Effect 2,Eternal Labyrinth,24% increased Detonate Dead Area of Effect,Detonate Dead -Enchantment Detonate Dead Damage 1,Merciless Labyrinth,25% increased Detonate Dead Damage,Detonate Dead -Enchantment Detonate Dead Percent Chance To Detonate Additional Corpse 1,Merciless Labyrinth,Detonate Dead has a 30% chance to detonate an additional corpse,Detonate Dead -Enchantment Detonate Dead Area Of Effect 1,Merciless Labyrinth,16% increased Detonate Dead Area of Effect,Detonate Dead -Enchantment Devouring Totem Leech Per Second 2,Eternal Labyrinth,36% increased Devouring Totem Leech per second,Devouring Totem -Enchantment Devouring Totem Percent Chance To Consume Additional Corpse 2,Eternal Labyrinth,Devouring Totem has 60% Chance to Consume an additional corpse,Devouring Totem -Enchantment Devouring Totem Leech Per Second 1,Merciless Labyrinth,24% increased Devouring Totem Leech per second,Devouring Totem -Enchantment Devouring Totem Percent Chance To Consume Additional Corpse 1,Merciless Labyrinth,Devouring Totem has 40% Chance to Consume an additional corpse,Devouring Totem -Enchantment Discharge Consume Charges 2,Eternal Labyrinth,30% chance for Discharge to deal Damage without removing Charges,Discharge -Enchantment Discharge Damage 2,Eternal Labyrinth,40% increased Discharge Damage,Discharge -Enchantment Discharge Area of Effect 2,Eternal Labyrinth,24% increased Discharge Radius,Discharge -Enchantment Discharge Consume Charges 1,Merciless Labyrinth,20% chance for Discharge to deal Damage without removing Charges,Discharge -Enchantment Discharge Damage 1,Merciless Labyrinth,25% increased Discharge Damage,Discharge -Enchantment Discharge Area of Effect 1,Merciless Labyrinth,16% increased Discharge Radius,Discharge -Enchantment Discipline Mana Reservation 2,Eternal Labyrinth,Discipline has 20% reduced Mana Reservation,Discipline -Enchantment Discipline Mana Reservation 1,Merciless Labyrinth,Discipline has 14% reduced Mana Reservation,Discipline -Enchantment Divine Ire Beam Width 2,Eternal Labyrinth,Divine Ire's beam has 15% increased width,Divine Ire -Enchantment Divine Ire Damage 2,Eternal Labyrinth,Divine Ire deals 40% increased Damage,Divine Ire -Enchantment Divine Ire Number Of Additional Nearby Enemies To Zap 2,Eternal Labyrinth,Divine Ire Damages 2 additional nearby Enemies when gaining Stages,Divine Ire -Enchantment Divine Ire Beam Width 1,Merciless Labyrinth,Divine Ire's beam has 10% increased width,Divine Ire -Enchantment Divine Ire Damage 1,Merciless Labyrinth,Divine Ire deals 25% increased Damage,Divine Ire -Enchantment Divine Ire Number Of Additional Nearby Enemies To Zap 1,Merciless Labyrinth,Divine Ire Damages an additional nearby Enemy when gaining Stages,Divine Ire -Enchantment Dominating Blow Additional Magic 2,Eternal Labyrinth,Dominating Blow can summon 3 additional Magic Sentinels of Dominance,Dominating Blow -Enchantment Dominating Blow Duration 2,Eternal Labyrinth,30% increased Sentinel of Dominance Duration,Dominating Blow -Enchantment Dominating Blow Additional Magic 1,Merciless Labyrinth,Dominating Blow can summon 2 additional Magic Sentinels of Dominance,Dominating Blow -Enchantment Dominating Blow Duration 1,Merciless Labyrinth,20% increased Sentinel of Dominance Duration,Dominating Blow -Enchantment Dominating Blow Additional Rare 1,Eternal Labyrinth,Dominating Blow can summon an additional Rare Sentinel of Dominance,Dominating Blow -Enchantment Double Slash Added Phys To Bleeding 2,Eternal Labyrinth,Lacerate deals 14 to 25 added Physical Damage against Bleeding Enemies,Double Slash -Enchantment Double Slash Critical Strikes 2,Eternal Labyrinth,60% increased Lacerate Critical Strike Chance,Double Slash -Enchantment Double Slash Area Of Effect 2,Eternal Labyrinth,24% increased Lacerate Area of Effect,Double Slash -Enchantment Double Slash Added Phys To Bleeding 1,Merciless Labyrinth,Lacerate deals 4 to 15 added Physical Damage against Bleeding Enemies,Double Slash -Enchantment Double Slash Critical Strikes 1,Merciless Labyrinth,40% increased Lacerate Critical Strike Chance,Double Slash -Enchantment Double Slash Area Of Effect 1,Merciless Labyrinth,16% increased Lacerate Area of Effect,Double Slash -Enchantment Double Strike Attack Speed 2,Eternal Labyrinth,15% increased Double Strike Attack Speed,Double Strike -Enchantment Double Strike Critical Strike Chance 2,Eternal Labyrinth,90% increased Double Strike Critical Strike Chance,Double Strike -Enchantment Double Strike Damage 2,Eternal Labyrinth,40% increased Double Strike Damage,Double Strike -Enchantment Double Strike Double Damage Vs Bleeding 2,Eternal Labyrinth,Double Strike has a 15% chance to deal Double Damage to Bleeding Enemies,Double Strike -Enchantment Double Strike Attack Speed 1,Merciless Labyrinth,10% increased Double Strike Attack Speed,Double Strike -Enchantment Double Strike Critical Strike Chance 1,Merciless Labyrinth,60% increased Double Strike Critical Strike Chance,Double Strike -Enchantment Double Strike Damage 1,Merciless Labyrinth,25% increased Double Strike Damage,Double Strike -Enchantment Double Strike Double Damage Vs Bleeding 1,Merciless Labyrinth,Double Strike has a 10% chance to deal Double Damage to Bleeding Enemies,Double Strike -Enchantment Dread Banner Effect 2,Eternal Labyrinth,Dread Banner has 40% increased Aura Effect,Dread Banner -Enchantment Dread Banner Effect 1,Merciless Labyrinth,Dread Banner has 25% increased Aura Effect,Dread Banner -Enchantment Dual Strike Attack Speed 2,Eternal Labyrinth,15% increased Dual Strike Attack Speed,Dual Strike -Enchantment Dual Strike Critical Strike Chance 2,Eternal Labyrinth,90% increased Dual Strike Critical Strike Chance,Dual Strike -Enchantment Dual Strike Damage 2,Eternal Labyrinth,40% increased Dual Strike Damage,Dual Strike -Enchantment Dual Strike Attack Speed 1,Merciless Labyrinth,10% increased Dual Strike Attack Speed,Dual Strike -Enchantment Dual Strike Critical Strike Chance 1,Merciless Labyrinth,60% increased Dual Strike Critical Strike Chance,Dual Strike -Enchantment Dual Strike Damage 1,Merciless Labyrinth,25% increased Dual Strike Damage,Dual Strike -Enchantment Elemental Hit Attack Speed 2,Eternal Labyrinth,15% increased Elemental Hit Attack Speed,Elemental Hit -Enchantment Elemental Hit Chance To Freeze Shock Ignite 2,Eternal Labyrinth,"Elemental Hit has +30% chance to Freeze, Shock and Ignite",Elemental Hit -Enchantment Elemental Hit Damage 2,Eternal Labyrinth,Elemental Hit deals 40% increased Damage,Elemental Hit -Enchantment Elemental Hit Attack Speed 1,Merciless Labyrinth,10% increased Elemental Hit Attack Speed,Elemental Hit -Enchantment Elemental Hit Chance To Freeze Shock Ignite 1,Merciless Labyrinth,"Elemental Hit has +20% chance to Freeze, Shock and Ignite",Elemental Hit -Enchantment Elemental Hit Damage 1,Merciless Labyrinth,Elemental Hit deals 25% increased Damage,Elemental Hit -Enchantment Elemental Weakness Duration 2,Eternal Labyrinth,45% increased Elemental Weakness Duration,Elemental Weakness -Enchantment Elemental Weakness Duration 1,Merciless Labyrinth,30% increased Elemental Weakness Duration,Elemental Weakness -Enchantment Elemental Weakness Curse Effect 2,Eternal Labyrinth,30% increased Elemental Weakness Curse Effect,Elemental Weakness -Enchantment Elemental Weakness Curse Effect 1,Merciless Labyrinth,20% increased Elemental Weakness Curse Effect,Elemental Weakness -Enchantment Enduring Cry Cooldown Speed 2,Eternal Labyrinth,30% increased Enduring Cry Cooldown Recovery Speed,Enduring Cry -Enchantment Enduring Cry Cooldown Speed 1,Merciless Labyrinth,20% increased Enduring Cry Cooldown Recovery Speed,Enduring Cry -Enchantment Enduring Cry Additional Endurance Charge 1,Eternal Labyrinth,Enduring Cry grants 1 additional Endurance Charge,Enduring Cry -Enchantment Enfeeble Curse Effect 2,Eternal Labyrinth,30% increased Enfeeble Curse Effect,Enfeeble -Enchantment Enfeeble Curse Effect 1,Merciless Labyrinth,20% increased Enfeeble Curse Effect,Enfeeble -Enchantment Enfeeble Duration 2,Eternal Labyrinth,45% increased Enfeeble Duration,Enfeeble -Enchantment Enfeeble Duration 1,Merciless Labyrinth,30% increased Enfeeble Duration,Enfeeble -Enchantment Ensnaring Arrow Area Of Effect 2,Eternal Labyrinth,Ensnaring Arrow has 90% increased Area of Effect,Ensnaring Arrow -Enchantment Ensnaring Arrow Debuff Effect 2,Eternal Labyrinth,Ensnaring Arrow has 30% increased Debuff Effect,Ensnaring Arrow -Enchantment Ensnaring Arrow Area Of Effect 1,Merciless Labyrinth,Ensnaring Arrow has 60% increased Area of Effect,Ensnaring Arrow -Enchantment Ensnaring Arrow Debuff Effect 1,Merciless Labyrinth,Ensnaring Arrow has 20% increased Debuff Effect,Ensnaring Arrow -Enchantment Essence Drain Damage 2,Eternal Labyrinth,40% increased Essence Drain Damage,Essence Drain -Enchantment Essence Drain Duration 2,Eternal Labyrinth,30% increased Essence Drain Duration,Essence Drain -Enchantment Essence Drain Damage 1,Merciless Labyrinth,25% increased Essence Drain Damage,Essence Drain -Enchantment Essence Drain Duration 1,Merciless Labyrinth,20% increased Essence Drain Duration,Essence Drain -Enchantment Ethereal Knives Damage 2,Eternal Labyrinth,40% increased Ethereal Knives Damage,Ethereal Knives -Enchantment Ethereal Knives Projectile Speed 2,Eternal Labyrinth,30% increased Ethereal Knives Projectile Speed,Ethereal Knives -Enchantment Ethereal Knives Damage 1,Merciless Labyrinth,25% increased Ethereal Knives Damage,Ethereal Knives -Enchantment Ethereal Knives Projectile Speed 1,Merciless Labyrinth,20% increased Ethereal Knives Projectile Speed,Ethereal Knives -Enchantment Ethereal Knives Number Of Targets To Pierce 1,Eternal Labyrinth,Ethereal Knives Pierces an additional Target,Ethereal Knives -Enchantment Explosive Arrow Attack Speed 2,Eternal Labyrinth,Explosive Arrow has 15% increased Attack Speed,Explosive Arrow -Enchantment Explosive Arrow Damage 2,Eternal Labyrinth,Explosive Arrow deals 40% increased Damage,Explosive Arrow -Enchantment Explosive Arrow Increased Duration 2,Eternal Labyrinth,Explosive Arrow has 40% increased Duration,Explosive Arrow -Enchantment Explosive Arrow Area Of Effect 2,Eternal Labyrinth,Explosive Arrow has 24% increased Area of Effect,Explosive Arrow -Enchantment Explosive Arrow Reduced Duration 2,Eternal Labyrinth,Explosive Arrow has 30% reduced Duration,Explosive Arrow -Enchantment Explosive Arrow Attack Speed 1,Merciless Labyrinth,Explosive Arrow has 10% increased Attack Speed,Explosive Arrow -Enchantment Explosive Arrow Damage 1,Merciless Labyrinth,Explosive Arrow deals 25% increased Damage,Explosive Arrow -Enchantment Explosive Arrow Increased Duration 1,Merciless Labyrinth,Explosive Arrow has 25% increased Duration,Explosive Arrow -Enchantment Explosive Arrow Area Of Effect 1,Merciless Labyrinth,Explosive Arrow has 16% increased Area of Effect,Explosive Arrow -Enchantment Explosive Arrow Reduced Duration 1,Merciless Labyrinth,Explosive Arrow has 20% reduced Duration,Explosive Arrow -Enchantment Fire Beam Cast Speed 2,Eternal Labyrinth,12% increased Scorching Ray Cast Speed,Scorching Ray -Enchantment Fire Beam Length 2,Eternal Labyrinth,15% increased Scorching Ray beam length,Scorching Ray -Enchantment Fire Beam Cast Speed 1,Merciless Labyrinth,8% increased Scorching Ray Cast Speed,Scorching Ray -Enchantment Fire Beam Length 1,Merciless Labyrinth,10% increased Scorching Ray beam length,Scorching Ray -Enchantment Fire Trap Burning Damage 2,Eternal Labyrinth,60% increased Fire Trap Burning Damage,Fire Trap -Enchantment Fire Trap Burning Ground Duration 2,Eternal Labyrinth,45% increased Fire Trap Burning Ground Duration,Fire Trap -Enchantment Fire Trap Damage 2,Eternal Labyrinth,40% increased Fire Trap Damage,Fire Trap -Enchantment Fire Trap Burning Damage 1,Merciless Labyrinth,40% increased Fire Trap Burning Damage,Fire Trap -Enchantment Fire Trap Burning Ground Duration 1,Merciless Labyrinth,30% increased Fire Trap Burning Ground Duration,Fire Trap -Enchantment Fire Trap Damage 1,Merciless Labyrinth,25% increased Fire Trap Damage,Fire Trap -Enchantment Fireball Damage 2,Eternal Labyrinth,40% increased Fireball Damage,Fireball -Enchantment Fireball Damage 1,Merciless Labyrinth,25% increased Fireball Damage,Fireball -Enchantment Fireball Cast Speed 2,Eternal Labyrinth,12% increased Fireball Cast Speed,Fireball -Enchantment Fireball Cast Speed 1,Merciless Labyrinth,8% increased Fireball Cast Speed,Fireball -Enchantment Fireball Ignite Chance 2,Eternal Labyrinth,Fireball has +30% chance to Ignite,Fireball -Enchantment Fireball Ignite Chance 1,Merciless Labyrinth,Fireball has +20% chance to Ignite,Fireball -Enchantment Firestorm Damage 2,Eternal Labyrinth,40% increased Firestorm Damage,Firestorm -Enchantment Firestorm Damage 1,Merciless Labyrinth,25% increased Firestorm Damage,Firestorm -Enchantment Firestorm Duration 2,Eternal Labyrinth,30% increased Firestorm Duration,Firestorm -Enchantment Firestorm Duration 1,Merciless Labyrinth,20% increased Firestorm Duration,Firestorm -Enchantment Firestorm Explosion Area Of Effect 2,Eternal Labyrinth,24% increased Firestorm explosion Area of Effect,Firestorm -Enchantment Firestorm Explosion Area Of Effect 1,Merciless Labyrinth,16% increased Firestorm explosion Area of Effect,Firestorm -Enchantment Flame Dash Cooldown Speed 2,Eternal Labyrinth,30% increased Flame Dash Cooldown Recovery Speed,Flame Dash -Enchantment Flame Dash Damage 2,Eternal Labyrinth,40% increased Flame Dash Damage,Flame Dash -Enchantment Flame Dash Cooldown Speed 1,Merciless Labyrinth,20% increased Flame Dash Cooldown Recovery Speed,Flame Dash -Enchantment Flame Dash Damage 1,Merciless Labyrinth,25% increased Flame Dash Damage,Flame Dash -Enchantment Flame Golem Elemental Resistances 2,Eternal Labyrinth,+36% to increased Flame Golem Elemental Resistances,Flame Golem -Enchantment Flame Golem Granted Buff Effect 2,Eternal Labyrinth,150% increased Effect of the Buff granted by your Flame Golems,Flame Golem -Enchantment Flame Golem Elemental Resistances 1,Merciless Labyrinth,+24% to increased Flame Golem Elemental Resistances,Flame Golem -Enchantment Flame Golem Granted Buff Effect 1,Merciless Labyrinth,100% increased Effect of the Buff granted by your Flame Golems,Flame Golem -Enchantment Flame Surge Critical Strike Chance 2,Eternal Labyrinth,90% increased Flame Surge Critical Strike Chance,Flame Surge -Enchantment Flame Surge Damage 2,Eternal Labyrinth,40% increased Flame Surge Damage,Flame Surge -Enchantment Flame Surge Vs Burning Enemies 2,Eternal Labyrinth,60% increased Flame Surge Damage against Burning Enemies,Flame Surge -Enchantment Flame Surge Critical Strike Chance 1,Merciless Labyrinth,60% increased Flame Surge Critical Strike Chance,Flame Surge -Enchantment Flame Surge Damage 1,Merciless Labyrinth,25% increased Flame Surge Damage,Flame Surge -Enchantment Flame Surge Vs Burning Enemies 1,Merciless Labyrinth,40% increased Flame Surge Damage against Burning Enemies,Flame Surge -Enchantment Flame Totem Consecrated Ground Enemy Damage Taken 2,Eternal Labyrinth,Consecrated Ground from Holy Flame Totem applies 9% increased Damage taken to Enemies,Flame Totem -Enchantment Flame Totem Damage 2,Eternal Labyrinth,Holy Flame Totem deals 40% increased Damage,Flame Totem -Enchantment Flame Totem Num Of Additional Projectiles 2,Eternal Labyrinth,Holy Flame Totem fires 2 additional Projectiles,Flame Totem -Enchantment Flame Totem Projectile Speed 2,Eternal Labyrinth,Holy Flame Totem has 30% increased Projectile Speed,Flame Totem -Enchantment Flame Totem Consecrated Ground Enemy Damage Taken 1,Merciless Labyrinth,Consecrated Ground from Holy Flame Totem applies 6% increased Damage taken to Enemies,Flame Totem -Enchantment Flame Totem Damage 1,Merciless Labyrinth,Holy Flame Totem deals 25% increased Damage,Flame Totem -Enchantment Flame Totem Num Of Additional Projectiles 1,Merciless Labyrinth,Holy Flame Totem fires an additional Projectile,Flame Totem -Enchantment Flame Totem Projectile Speed 1,Merciless Labyrinth,Holy Flame Totem has 20% increased Projectile Speed,Flame Totem -Enchantment Flameblast Critical Strike Chance 2,Eternal Labyrinth,90% increased Flameblast Critical Strike Chance,Flameblast -Enchantment Flameblast Damage 2,Eternal Labyrinth,40% increased Flameblast Damage,Flameblast -Enchantment Flameblast Area Of Effect 2,Eternal Labyrinth,24% increased Flameblast Area of Effect,Flameblast -Enchantment Flameblast Critical Strike Chance 1,Merciless Labyrinth,60% increased Flameblast Critical Strike Chance,Flameblast -Enchantment Flameblast Damage 1,Merciless Labyrinth,25% increased Flameblast Damage,Flameblast -Enchantment Flameblast Area Of Effect 1,Merciless Labyrinth,16% increased Flameblast Area of Effect,Flameblast -Enchantment Flamethrower Additional Flamethrowers 2,Eternal Labyrinth,Flamethrower Trap has 2 additional Flames,Flamethrower -Enchantment Flamethrower Additional Flamethrowers 1,Merciless Labyrinth,Flamethrower Trap has an additional Flame,Flamethrower -Enchantment Flamethrower Trap Cast Speed 2,Eternal Labyrinth,Flamethrower Trap has 12% increased Cast Speed,Flamethrower Trap -Enchantment Flamethrower Trap Cooldown Speed 2,Eternal Labyrinth,Flamethrower Trap has 15% increased Cooldown Recovery Speed,Flamethrower Trap -Enchantment Flamethrower Trap Damage 2,Eternal Labyrinth,Flamethrower Trap deals 40% increased Damage,Flamethrower Trap -Enchantment Flamethrower Trap Duration 2,Eternal Labyrinth,Flamethrower Trap has 30% increased Skill Effect Duration,Flamethrower Trap -Enchantment Flamethrower Trap Cast Speed 1,Merciless Labyrinth,Flamethrower Trap has 8% increased Cast Speed,Flamethrower Trap -Enchantment Flamethrower Trap Cooldown Speed 1,Merciless Labyrinth,Flamethrower Trap has 10% increased Cooldown Recovery Speed,Flamethrower Trap -Enchantment Flamethrower Trap Damage 1,Merciless Labyrinth,Flamethrower Trap deals 25% increased Damage,Flamethrower Trap -Enchantment Flamethrower Trap Duration 1,Merciless Labyrinth,Flamethrower Trap has 20% increased Skill Effect Duration,Flamethrower Trap -Enchantment Flammability Curse Effect 2,Eternal Labyrinth,30% increased Flammability Curse Effect,Flammability -Enchantment Flammability Curse Effect 1,Merciless Labyrinth,20% increased Flammability Curse Effect,Flammability -Enchantment Flammability Duration 2,Eternal Labyrinth,45% increased Flammability Duration,Flammability -Enchantment Flammability Duration 1,Merciless Labyrinth,30% increased Flammability Duration,Flammability -Enchantment Flesh and Stone Mana Reservation 2,Eternal Labyrinth,Flesh and Stone has 30% reduced Mana Reservation,Flesh and Stone -Enchantment Flesh and Stone Mana Reservation 1,Merciless Labyrinth,Flesh and Stone has 20% reduced Mana Reservation,Flesh and Stone -Enchantment Flesh Offering Attack Speed 2,Eternal Labyrinth,Flesh Offering grants an additional 21% increased Attack Speed,Flesh Offering -Enchantment Flesh Offering Duration 2,Eternal Labyrinth,45% increased Flesh Offering Duration,Flesh Offering -Enchantment Flesh Offering Attack Speed 1,Merciless Labyrinth,Flesh Offering grants an additional 14% increased Attack Speed,Flesh Offering -Enchantment Flesh Offering Duration 1,Merciless Labyrinth,30% increased Flesh Offering Duration,Flesh Offering -Enchantment Flicker Strike Cooldown Speed 2,Eternal Labyrinth,30% increased Flicker Strike Cooldown Recovery Speed,Flicker Strike -Enchantment Flicker Strike Damage 2,Eternal Labyrinth,40% increased Flicker Strike Damage,Flicker Strike -Enchantment Flicker Strike Damage Per Frenzy Charge 2,Eternal Labyrinth,9% increased Flicker Strike Damage per Frenzy Charge,Flicker Strike -Enchantment Flicker Strike Cooldown Speed 1,Merciless Labyrinth,20% increased Flicker Strike Cooldown Recovery Speed,Flicker Strike -Enchantment Flicker Strike Damage 1,Merciless Labyrinth,25% increased Flicker Strike Damage,Flicker Strike -Enchantment Flicker Strike Damage Per Frenzy Charge 1,Merciless Labyrinth,6% increased Flicker Strike Damage per Frenzy Charge,Flicker Strike -Enchantment Freezing Pulse Cast Speed 2,Eternal Labyrinth,12% increased Freezing Pulse Cast Speed,Freezing Pulse -Enchantment Freezing Pulse Damage 2,Eternal Labyrinth,40% increased Freezing Pulse Damage,Freezing Pulse -Enchantment Freezing Pulse Projectile Speed 2,Eternal Labyrinth,30% increased Freezing Pulse Projectile Speed,Freezing Pulse -Enchantment Freezing Pulse Cast Speed 1,Merciless Labyrinth,8% increased Freezing Pulse Cast Speed,Freezing Pulse -Enchantment Freezing Pulse Damage 1,Merciless Labyrinth,25% increased Freezing Pulse Damage,Freezing Pulse -Enchantment Freezing Pulse Projectile Speed 1,Merciless Labyrinth,20% increased Freezing Pulse Projectile Speed,Freezing Pulse -Enchantment Frenzy Damage 2,Eternal Labyrinth,40% increased Frenzy Damage,Frenzy -Enchantment Frenzy Damage Per Frenzy Charge 2,Eternal Labyrinth,9% increased Frenzy Damage per Frenzy Charge,Frenzy -Enchantment Frenzy Percent Chance To Gain Additional Frenzy Charge 2,Eternal Labyrinth,30% Chance on Frenzy to gain an additional Frenzy Charge,Frenzy -Enchantment Frenzy Damage 1,Merciless Labyrinth,25% increased Frenzy Damage,Frenzy -Enchantment Frenzy Damage Per Frenzy Charge 1,Merciless Labyrinth,6% increased Frenzy Damage per Frenzy Charge,Frenzy -Enchantment Frenzy Percent Chance To Gain Additional Frenzy Charge 1,Merciless Labyrinth,20% Chance on Frenzy to gain an additional Frenzy Charge,Frenzy -Enchantment Frost Blades Damage 2,Eternal Labyrinth,40% increased Frost Blades Damage,Frost Blades -Enchantment Frost Blades Projectile Speed 2,Eternal Labyrinth,30% increased Frost Blades Projectile Speed,Frost Blades -Enchantment Frost Blades Damage 1,Merciless Labyrinth,25% increased Frost Blades Damage,Frost Blades -Enchantment Frost Blades Projectile Speed 1,Merciless Labyrinth,20% increased Frost Blades Projectile Speed,Frost Blades -Enchantment Frost Bolt Cast Speed 2,Eternal Labyrinth,15% increased Frostbolt Cast Speed,Frost Bolt -Enchantment Frost Bolt Damage 2,Eternal Labyrinth,40% increased Frostbolt Damage,Frost Bolt -Enchantment Frost Bolt Freeze Chance 2,Eternal Labyrinth,Frostbolt has +15% chance to Freeze,Frost Bolt -Enchantment Frost Bolt Cast Speed 1,Merciless Labyrinth,10% increased Frostbolt Cast Speed,Frost Bolt -Enchantment Frost Bolt Damage 1,Merciless Labyrinth,25% increased Frostbolt Damage,Frost Bolt -Enchantment Frost Bolt Freeze Chance 1,Merciless Labyrinth,Frostbolt has +10% chance to Freeze,Frost Bolt -Enchantment Frost Bomb Cooldown Speed 2,Eternal Labyrinth,30% increased Frost Bomb Cooldown Recovery Speed,Frost Bomb -Enchantment Frost Bomb Damage 2,Eternal Labyrinth,40% increased Frost Bomb Damage,Frost Bomb -Enchantment Frost Bomb Increased Duration 2,Eternal Labyrinth,Frost Bomb has 30% increased Debuff Duration,Frost Bomb -Enchantment Frost Bomb Area Of Effect 2,Eternal Labyrinth,24% increased Frost Bomb Area of Effect,Frost Bomb -Enchantment Frost Bomb Cooldown Speed 1,Merciless Labyrinth,20% increased Frost Bomb Cooldown Recovery Speed,Frost Bomb -Enchantment Frost Bomb Damage 1,Merciless Labyrinth,25% increased Frost Bomb Damage,Frost Bomb -Enchantment Frost Bomb Increased Duration 1,Merciless Labyrinth,Frost Bomb has 20% increased Debuff Duration,Frost Bomb -Enchantment Frost Bomb Area Of Effect 1,Merciless Labyrinth,16% increased Frost Bomb Area of Effect,Frost Bomb -Enchantment Frost Fury Area Of Effect Per Stage 2,Eternal Labyrinth,Winter Orb has 3% increased Area of Effect per Stage,Frost Fury -Enchantment Frost Fury Area Of Effect Per Stage 1,Merciless Labyrinth,Winter Orb has 2% increased Area of Effect per Stage,Frost Fury -Enchantment Frost Fury Additional Max Number Of Stages 1,Eternal Labyrinth,Winter Orb has +2 Maximum Stages,Frost Fury -Enchantment Frost Wall Cooldown Speed 2,Eternal Labyrinth,30% increased Frost Wall Cooldown Recovery Speed,Frost Wall -Enchantment Frost Wall Duration 2,Eternal Labyrinth,36% increased Frost Wall Duration,Frost Wall -Enchantment Frost Wall Cooldown Speed 1,Merciless Labyrinth,20% increased Frost Wall Cooldown Recovery Speed,Frost Wall -Enchantment Frost Wall Duration 1,Merciless Labyrinth,24% increased Frost Wall Duration,Frost Wall -Enchantment Frostbite Curse Effect 2,Eternal Labyrinth,30% increased Frostbite Curse Effect,Frostbite Curse -Enchantment Frostbite Curse Effect 1,Merciless Labyrinth,20% increased Frostbite Curse Effect,Frostbite Curse -Enchantment Frostbite Duration 2,Eternal Labyrinth,45% increased Frostbite Duration,Frostbite Duration -Enchantment Frostbite Duration 1,Merciless Labyrinth,30% increased Frostbite Duration,Frostbite Duration -Enchantment Frostblink Cooldown Speed 2,Eternal Labyrinth,Frostblink has 30% increased Cooldown Recovery Speed,Frostblink -Enchantment Frostblink Cooldown Speed 1,Merciless Labyrinth,Frostblink has 20% increased Cooldown Recovery Speed,Frostblink -Enchantment Frostblink Travel Distance 2,Eternal Labyrinth,Frostblink has 75% increased maximum travel distance,Frostblink Travel -Enchantment Frostblink Travel Distance 1,Merciless Labyrinth,Frostblink has 50% increased maximum travel distance,Frostblink Travel -Enchantment Galvanic Arrow Projectile Speed 2,Eternal Labyrinth,Galvanic Arrow has 30% increased Projectile Speed,Galvanic Arrow -Enchantment Galvanic Arrow Projectile Speed 1,Merciless Labyrinth,Galvanic Arrow has 20% increased Projectile Speed,Galvanic Arrow -Enchantment General's Cry Cooldown Speed 2,Eternal Labyrinth,General's Cry has 30% increased Cooldown Recovery Speed,General's Cry -Enchantment General's Cry Cooldown Speed 1,Merciless Labyrinth,General's Cry has 20% increased Cooldown Recovery Speed,General's Cry -Enchantment General's Cry Additional Mirage Warrior 1,Eternal Labyrinth,General's Cry has +1 to maximum number of Mirage Warriors,General's Cry -Enchantment Glacial Cascade Damage 2,Eternal Labyrinth,40% increased Glacial Cascade Damage,Glacial Cascade -Enchantment Glacial Cascade Physical Damage Percent To Convert To Cold 2,Eternal Labyrinth,40% of Glacial Cascade Physical Damage Converted to Cold Damage,Glacial Cascade -Enchantment Glacial Cascade Area Of Effect 2,Eternal Labyrinth,24% increased Glacial Cascade Area of Effect,Glacial Cascade -Enchantment Glacial Cascade Damage 1,Merciless Labyrinth,25% increased Glacial Cascade Damage,Glacial Cascade -Enchantment Glacial Cascade Physical Damage Percent To Convert To Cold 1,Merciless Labyrinth,30% of Glacial Cascade Physical Damage Converted to Cold Damage,Glacial Cascade -Enchantment Glacial Cascade Area Of Effect 1,Merciless Labyrinth,16% increased Glacial Cascade Area of Effect,Glacial Cascade -Enchantment Glacial Hammer Damage 2,Eternal Labyrinth,40% increased Glacial Hammer Damage,Glacial Hammer -Enchantment Glacial Hammer Freeze Chance 2,Eternal Labyrinth,Glacial Hammer has +30% chance to Freeze,Glacial Hammer -Enchantment Glacial Hammer Physical Damage Percent To Add As Cold Damage 2,Eternal Labyrinth,15% of Glacial Hammer Physical Damage gained as Extra Cold Damage,Glacial Hammer -Enchantment Glacial Hammer Damage 1,Merciless Labyrinth,25% increased Glacial Hammer Damage,Glacial Hammer -Enchantment Glacial Hammer Freeze Chance 1,Merciless Labyrinth,Glacial Hammer has +20% chance to Freeze,Glacial Hammer -Enchantment Glacial Hammer Physical Damage Percent To Add As Cold Damage 1,Merciless Labyrinth,10% of Glacial Hammer Physical Damage gained as Extra Cold Damage,Glacial Hammer -Enchantment Grace Mana Reservation 2,Eternal Labyrinth,Grace has 15% reduced Mana Reservation,Grace Mana -Enchantment Grace Mana Reservation 1,Merciless Labyrinth,Grace has 10% reduced Mana Reservation,Grace Mana -Enchantment Ground Slam Angle 2,Eternal Labyrinth,Ground Slam has a 24% increased angle,Ground Slam -Enchantment Ground Slam Damage 2,Eternal Labyrinth,40% increased Ground Slam Damage,Ground Slam -Enchantment Ground Slam Area Of Effect 2,Eternal Labyrinth,24% increased Ground Slam Area of Effect,Ground Slam -Enchantment Ground Slam Angle 1,Merciless Labyrinth,Ground Slam has a 16% increased angle,Ground Slam -Enchantment Ground Slam Damage 1,Merciless Labyrinth,25% increased Ground Slam Damage,Ground Slam -Enchantment Ground Slam Area Of Effect 1,Merciless Labyrinth,16% increased Ground Slam Area of Effect,Ground Slam -Enchantment Haste Mana Reservation 2,Eternal Labyrinth,Haste has 15% reduced Mana Reservation,Haste Mana -Enchantment Haste Mana Reservation 1,Merciless Labyrinth,Haste has 10% reduced Mana Reservation,Haste Mana -Enchantment Hatred Mana Reservation 2,Eternal Labyrinth,Hatred has 15% reduced Mana Reservation,Hatred Mana -Enchantment Hatred Mana Reservation 1,Merciless Labyrinth,Hatred has 10% reduced Mana Reservation,Hatred Mana -Enchantment Heavy Strike Attack Speed 2,Eternal Labyrinth,15% increased Heavy Strike Attack Speed,Heavy Strike -Enchantment Heavy Strike Damage 2,Eternal Labyrinth,40% increased Heavy Strike Damage,Heavy Strike -Enchantment Heavy Strike Double Damage 2,Eternal Labyrinth,Heavy Strike has a 12% chance to deal Double Damage,Heavy Strike -Enchantment Heavy Strike Attack Speed 1,Merciless Labyrinth,10% increased Heavy Strike Attack Speed,Heavy Strike -Enchantment Heavy Strike Damage 1,Merciless Labyrinth,25% increased Heavy Strike Damage,Heavy Strike -Enchantment Heavy Strike Double Damage 1,Merciless Labyrinth,Heavy Strike has a 8% chance to deal Double Damage,Heavy Strike -Enchantment Herald Of Agony Mana Reservation 2,Eternal Labyrinth,Herald of Agony has 30% reduced Mana Reservation,Herald Of Agony -Enchantment Herald Of Agony Mana Reservation 1,Merciless Labyrinth,Herald of Agony has 20% reduced Mana Reservation,Herald Of Agony -Enchantment Herald Of Agony Num Of Secondary Projectiles 1,Eternal Labyrinth,Summoned Agony Crawler fires 2 additional Projectiles,Herald Of Agony -Enchantment Herald Of Ash Damage 2,Eternal Labyrinth,40% increased Herald of Ash Damage,Herald Of Ash -Enchantment Herald Of Ash Mana Reservation 2,Eternal Labyrinth,Herald of Ash has 30% reduced Mana Reservation,Herald Of Ash -Enchantment Herald Of Ash Damage 1,Merciless Labyrinth,25% increased Herald of Ash Damage,Herald Of Ash -Enchantment Herald Of Ash Mana Reservation 1,Merciless Labyrinth,Herald of Ash has 20% reduced Mana Reservation,Herald Of Ash -Enchantment Herald Of Ice Damage 2,Eternal Labyrinth,40% increased Herald of Ice Damage,Herald Of Ice -Enchantment Herald Of Ice Mana Reservation 2,Eternal Labyrinth,Herald of Ice has 30% reduced Mana Reservation,Herald Of Ice -Enchantment Herald Of Ice Damage 1,Merciless Labyrinth,25% increased Herald of Ice Damage,Herald Of Ice -Enchantment Herald Of Ice Mana Reservation 1,Merciless Labyrinth,Herald of Ice has 20% reduced Mana Reservation,Herald Of Ice -Enchantment Herald Of Purity Mana Reservation 2,Eternal Labyrinth,Herald of Purity has 30% reduced Mana Reservation,Herald Of Purity -Enchantment Herald Of Purity Mana Reservation 1,Merciless Labyrinth,Herald of Purity has 20% reduced Mana Reservation,Herald Of Purity -Enchantment Herald Of Purity Additional Minion 1,Eternal Labyrinth,+1 to maximum number of Sentinels of Purity,Herald Of Purity -Enchantment Herald Of Thunder Damage 2,Eternal Labyrinth,40% increased Herald of Thunder Damage,Herald Of Thunder -Enchantment Herald Of Thunder Mana Reservation 2,Eternal Labyrinth,Herald of Thunder has 30% reduced Mana Reservation,Herald Of Thunder -Enchantment Herald Of Thunder Damage 1,Merciless Labyrinth,25% increased Herald of Thunder Damage,Herald Of Thunder -Enchantment Herald Of Thunder Mana Reservation 1,Merciless Labyrinth,Herald of Thunder has 20% reduced Mana Reservation,Herald Of Thunder -Enchantment Holy Relic Buff Effect 2,Eternal Labyrinth,Summoned Holy Relics have 100% increased Buff Effect,Holy Relic -Enchantment Holy Relic Damage 2,Eternal Labyrinth,Summoned Holy Relics deal 40% increased Damage,Holy Relic -Enchantment Holy Relic Area Of Effect 2,Eternal Labyrinth,Summoned Holy Relics have 24% increased Area of Effect,Holy Relic -Enchantment Holy Relic Buff Effect 1,Merciless Labyrinth,Summoned Holy Relics have 75% increased Buff Effect,Holy Relic -Enchantment Holy Relic Damage 1,Merciless Labyrinth,Summoned Holy Relics deal 25% increased Damage,Holy Relic -Enchantment Holy Relic Area Of Effect 1,Merciless Labyrinth,Summoned Holy Relics have 16% increased Area of Effect,Holy Relic -Enchantment Ice Crash Damage 2,Eternal Labyrinth,40% increased Ice Crash Damage,Ice Crash -Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2,Eternal Labyrinth,15% of Ice Crash Physical Damage gained as Extra Cold Damage,Ice Crash -Enchantment Ice Crash Area Of Effect 2,Eternal Labyrinth,24% increased Ice Crash Area of Effect,Ice Crash -Enchantment Ice Crash Damage 1,Merciless Labyrinth,25% increased Ice Crash Damage,Ice Crash -Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 1,Merciless Labyrinth,10% of Ice Crash Physical Damage gained as Extra Cold Damage,Ice Crash -Enchantment Ice Crash Area Of Effect 1,Merciless Labyrinth,16% increased Ice Crash Area of Effect,Ice Crash -Enchantment Ice Golem Elemental Resistances 2,Eternal Labyrinth,+36% to Ice Golem Elemental Resistances,Ice Golem -Enchantment Ice Golem Grants Percent Additional Critical Strike Chance And Accuracy 2,Eternal Labyrinth,150% increased Effect of the Buff granted by your Ice Golems,Ice Golem -Enchantment Ice Golem Elemental Resistances 1,Merciless Labyrinth,+24% to Ice Golem Elemental Resistances,Ice Golem -Enchantment Ice Golem Grants Percent Additional Critical Strike Chance And Accuracy 1,Merciless Labyrinth,100% increased Effect of the Buff granted by your Ice Golems,Ice Golem -Enchantment Ice Nova Damage 2,Eternal Labyrinth,40% increased Ice Nova Damage,Ice Nova -Enchantment Ice Nova Freeze Chance 2,Eternal Labyrinth,Ice Nova has +30% chance to Freeze,Ice Nova -Enchantment Ice Nova Minimum Chill 2,Eternal Labyrinth,Chills from Ice Nova Hits always reduce Action Speed by at least 8%,Ice Nova -Enchantment Ice Nova Area Of Effect 2,Eternal Labyrinth,24% increased Ice Nova Area of Effect,Ice Nova -Enchantment Ice Nova Damage 1,Merciless Labyrinth,25% increased Ice Nova Damage,Ice Nova -Enchantment Ice Nova Freeze Chance 1,Merciless Labyrinth,Ice Nova has +20% chance to Freeze,Ice Nova -Enchantment Ice Nova Minimum Chill 1,Merciless Labyrinth,Chills from Ice Nova Hits always reduce Action Speed by at least 6%,Ice Nova -Enchantment Ice Nova Area Of Effect 1,Merciless Labyrinth,16% increased Ice Nova Area of Effect,Ice Nova -Enchantment Ice Shot Cone Angle 2,Eternal Labyrinth,Ice Shot has 60% increased Area of Effect angle,Ice Shot -Enchantment Ice Shot Damage 2,Eternal Labyrinth,40% increased Ice Shot Damage,Ice Shot -Enchantment Ice Shot Area Of Effect 2,Eternal Labyrinth,24% increased Ice Shot Area of Effect,Ice Shot -Enchantment Ice Shot Cone Angle 1,Merciless Labyrinth,Ice Shot has 30% increased Area of Effect angle,Ice Shot -Enchantment Ice Shot Damage 1,Merciless Labyrinth,25% increased Ice Shot Damage,Ice Shot -Enchantment Ice Shot Area Of Effect 1,Merciless Labyrinth,16% increased Ice Shot Area of Effect,Ice Shot -Enchantment Ice Siphon Trap Chill Effect 2,Eternal Labyrinth,Siphoning Trap has 40% increased Chill Effect,Ice Siphon Trap -Enchantment Ice Siphon Trap Damage 2,Eternal Labyrinth,Siphoning Trap deals 40% increased Damage,Ice Siphon Trap -Enchantment Ice Siphon Trap Duration 2,Eternal Labyrinth,Siphoning Trap has 45% increased Skill Effect Duration,Ice Siphon Trap -Enchantment Ice Siphon Trap Chill Effect 1,Merciless Labyrinth,Siphoning Trap has 25% increased Chill Effect,Ice Siphon Trap -Enchantment Ice Siphon Trap Damage 1,Merciless Labyrinth,Siphoning Trap deals 25% increased Damage,Ice Siphon Trap -Enchantment Ice Siphon Trap Duration 1,Merciless Labyrinth,Siphoning Trap has 30% increased Skill Effect Duration,Ice Siphon Trap -Enchantment Ice Siphon Trap Damage Taken 1,Eternal Labyrinth,Siphoning Trap's beam to you grants 1% reduced Damage taken for each other beam,Ice Siphon Trap -Enchantment Ice Spear Distance Before Form Change 2,Eternal Labyrinth,Ice Spear travels 30% reduced distance before changing forms,Ice Spear -Enchantment Ice Spear Percent Chance To Gain Power Charge On Critical Strike 2,Eternal Labyrinth,15% Chance to gain a Power Charge on Critical Strike with Ice Spear,Ice Spear -Enchantment Ice Spear Second Form Critical Strike Chance 2,Eternal Labyrinth,300% increased Ice Spear Critical Strike Chance in second form,Ice Spear -Enchantment Ice Spear Distance Before Form Change 1,Merciless Labyrinth,Ice Spear travels 20% reduced distance before changing forms,Ice Spear -Enchantment Ice Spear Percent Chance To Gain Power Charge On Critical Strike 1,Merciless Labyrinth,10% Chance to gain a Power Charge on Critical Strike with Ice Spear,Ice Spear -Enchantment Ice Spear Second Form Critical Strike Chance 1,Merciless Labyrinth,200% increased Ice Spear Critical Strike Chance in second form,Ice Spear -Enchantment Ice Spear Additional Projectile 1,Eternal Labyrinth,Ice Spear fires an additional Projectile,Ice Spear -Enchantment Ice Trap Cold Penetration 2,Eternal Labyrinth,Ice Trap Damage Penetrates 10% Cold Resistance,Ice Trap -Enchantment Ice Trap Damage 2,Eternal Labyrinth,40% increased Ice Trap Damage,Ice Trap -Enchantment Ice Trap Area Of Effect 2,Eternal Labyrinth,24% increased Ice Trap Area of Effect,Ice Trap -Enchantment Ice Trap Cold Penetration 1,Merciless Labyrinth,Ice Trap Damage Penetrates 6% Cold Resistance,Ice Trap -Enchantment Ice Trap Damage 1,Merciless Labyrinth,25% increased Ice Trap Damage,Ice Trap -Enchantment Ice Trap Area Of Effect 1,Merciless Labyrinth,16% increased Ice Trap Area of Effect,Ice Trap -Enchantment Icicle MineThrowing Speed 2,Eternal Labyrinth,Icicle Mine has 15% increased Throwing Speed,Icicle Mine -Enchantment Icicle Mine Critical Multiplier 2,Eternal Labyrinth,Icicle Mine has +30% to Critical Strike Multiplier,Icicle Mine -Enchantment Icicle Mine Damage 2,Eternal Labyrinth,Icicle Mine deals 40% increased Damage,Icicle Mine -Enchantment Icicle Mine Critical Multiplier 1,Merciless Labyrinth,Icicle Mine has +20% to Critical Strike Multiplier,Icicle Mine -Enchantment Icicle Mine Damage 1,Merciless Labyrinth,Icicle Mine deals 25% increased Damage,Icicle Mine -Enchantment Icicle Mine Throwing Speed 1,Merciless Labyrinth,Icicle Mine has 10% increased Throwing Speed,Icicle Mine -Enchantment Immortal Call Duration 2,Eternal Labyrinth,36% increased Immortal Call Duration,Immortal Call -Enchantment Immortal Call Duration 1,Merciless Labyrinth,34% increased Immortal Call Duration,Immortal Call -Enchantment Incinerate Area Of Effect 2,Eternal Labyrinth,Incinerate has 24% increased Area of Effect,Incinerate -Enchantment Incinerate Damage 2,Eternal Labyrinth,40% increased Incinerate Damage,Incinerate -Enchantment Incinerate Maximum Stages 2,Eternal Labyrinth,Incinerate has +2 to maximum stages,Incinerate -Enchantment Incinerate Area Of Effect 1,Merciless Labyrinth,Incinerate has 16% increased Area of Effect,Incinerate -Enchantment Incinerate Damage 1,Merciless Labyrinth,25% increased Incinerate Damage,Incinerate -Enchantment Incinerate Maximum Stages 1,Merciless Labyrinth,Incinerate has +1 to maximum stages,Incinerate -Enchantment Incinerate Damage Per Stage 3,Eternal Labyrinth,10% increased Incinerate Damage for each stage,Incinerate -Enchantment Infernal Blow Damage 2,Eternal Labyrinth,40% increased Infernal Blow Damage,Infernal Blow -Enchantment Infernal Blow Increased Damage Per Stack 2,Eternal Labyrinth,Infernal Blow Debuff deals an additional 5% of Damage per Charge,Infernal Blow -Enchantment Infernal Blow Physical Damage Percent To Add As Fire Damage 2,Eternal Labyrinth,15% of Infernal Blow Physical Damage gained as Extra Fire Damage,Infernal Blow -Enchantment Infernal Blow Area Of Effect 2,Eternal Labyrinth,24% increased Infernal Blow Area of Effect,Infernal Blow -Enchantment Infernal Blow Damage 1,Merciless Labyrinth,25% increased Infernal Blow Damage,Infernal Blow -Enchantment Infernal Blow Increased Damage Per Stack 1,Merciless Labyrinth,Infernal Blow Debuff deals an additional 3% of Damage per Charge,Infernal Blow -Enchantment Infernal Blow Physical Damage Percent To Add As Fire Damage 1,Merciless Labyrinth,10% of Infernal Blow Physical Damage gained as Extra Fire Damage,Infernal Blow -Enchantment Infernal Blow Area Of Effect 1,Merciless Labyrinth,16% increased Infernal Blow Area of Effect,Infernal Blow -Enchantment Infernal Cry Cooldown Speed 2,Eternal Labyrinth,Infernal Cry has 30% increased Cooldown Recovery Speed,Infernal Cry -Enchantment Infernal Cry Cooldown Speed 1,Merciless Labyrinth,Infernal Cry has 20% increased Cooldown Recovery Speed,Infernal Cry -Enchantment Infernal Cry Combust Area Of Effect 1,Eternal Labyrinth,Combust has 30% increased Area of Effect,Infernal Cry -Enchantment Intimidating Cry Area Of Effect 2,Eternal Labyrinth,Intimidating Cry has 24% increased Area of Effect,Intimidating Cry -Enchantment Intimidating Cry Cooldown Speed 2,Eternal Labyrinth,Intimidating Cry has 30% increased Cooldown Recovery Speed,Intimidating Cry -Enchantment Intimidating Cry Area Of Effect 1,Merciless Labyrinth,Intimidating Cry has 16% increased Area of Effect,Intimidating Cry -Enchantment Intimidating Cry Cooldown Speed 1,Merciless Labyrinth,Intimidating Cry has 20% increased Cooldown Recovery Speed,Intimidating Cry -Enchantment Kinetic Blast Damage 2,Eternal Labyrinth,40% increased Kinetic Blast Damage,Kinetic Blast -Enchantment Kinetic Blast Explosions 2,Eternal Labyrinth,Kinetic Blast has a 75% chance for an additional explosion,Kinetic Blast -Enchantment Kinetic Blast Area Of Effect 2,Eternal Labyrinth,24% increased Kinetic Blast Area of Effect,Kinetic Blast -Enchantment Kinetic Blast Damage 1,Merciless Labyrinth,25% increased Kinetic Blast Damage,Kinetic Blast -Enchantment Kinetic Blast Explosions 1,Merciless Labyrinth,Kinetic Blast has a 50% chance for an additional explosion,Kinetic Blast -Enchantment Kinetic Blast Area Of Effect 1,Merciless Labyrinth,16% increased Kinetic Blast Area of Effect,Kinetic Blast -Enchantment Kinetic Bolt Attack Speed 2,Eternal Labyrinth,Kinetic Bolt has 15% increased Attack Speed,Kinetic Bolt -Enchantment Kinetic Bolt Extra Bounces 2,Eternal Labyrinth,Kinetic Bolt changes direction 2 additional times,Kinetic Bolt -Enchantment Kinetic Bolt Projectile Speed 2,Eternal Labyrinth,Kinetic Bolt has 30% increased Projectile Speed,Kinetic Bolt -Enchantment Kinetic Bolt Attack Speed 1,Merciless Labyrinth,Kinetic Bolt has 10% increased Attack Speed,Kinetic Bolt -Enchantment Kinetic Bolt Extra Bounces 1,Merciless Labyrinth,Kinetic Bolt changes direction 1 additional time,Kinetic Bolt -Enchantment Kinetic Bolt Projectile Speed 1,Merciless Labyrinth,Kinetic Bolt has 20% increased Projectile Speed,Kinetic Bolt -Enchantment Lacerate Damage 2,Eternal Labyrinth,40% increased Lacerate Damage,Lacerate -Enchantment Lacerate Damage 1,Merciless Labyrinth,25% increased Lacerate Damage,Lacerate -Enchantment Lancing Steel Damage 2,Eternal Labyrinth,Lancing Steel deals 40% increased Damage,Lancing Steel -Enchantment Lancing Steel Impale Chance 2,Eternal Labyrinth,Lancing Steel's additional Projectiles have +30% chance to Impale Enemies,Lancing Steel -Enchantment Lancing Steel Primary Proj Pierce Num 2,Eternal Labyrinth,Lancing Steel's primary Projectile Pierces 5 additional Targets,Lancing Steel -Enchantment Lancing Steel Damage 1,Merciless Labyrinth,Lancing Steel deals 25% increased Damage,Lancing Steel -Enchantment Lancing Steel Impale Chance 1,Merciless Labyrinth,Lancing Steel's additional Projectiles have +20% chance to Impale Enemies,Lancing Steel -Enchantment Lancing Steel Primary Proj Pierce Num 1,Merciless Labyrinth,Lancing Steel's primary Projectile Pierces 3 additional Targets,Lancing Steel -Enchantment Leap Slam Attack Speed 2,Eternal Labyrinth,15% increased Leap Slam Attack Speed,Leap Slam -Enchantment Leap Slam Damage 2,Eternal Labyrinth,40% increased Leap Slam Damage,Leap Slam -Enchantment Leap Slam Area Of Effect 2,Eternal Labyrinth,24% increased Leap Slam Area of Effect,Leap Slam -Enchantment Leap Slam Attack Speed 1,Merciless Labyrinth,10% increased Leap Slam Attack Speed,Leap Slam -Enchantment Leap Slam Damage 1,Merciless Labyrinth,25% increased Leap Slam Damage,Leap Slam -Enchantment Leap Slam Area Of Effect 1,Merciless Labyrinth,16% increased Leap Slam Area of Effect,Leap Slam -Enchantment Lightning Arrow Damage 2,Eternal Labyrinth,40% increased Lightning Arrow Damage,Lightning Arrow -Enchantment Lightning Arrow Extra Targets 2,Eternal Labyrinth,Lightning Arrow hits 2 additional Enemies,Lightning Arrow -Enchantment Lightning Arrow Area Of Effect 2,Eternal Labyrinth,24% increased Lightning Arrow Area of Effect,Lightning Arrow -Enchantment Lightning Arrow Damage 1,Merciless Labyrinth,25% increased Lightning Arrow Damage,Lightning Arrow -Enchantment Lightning Arrow Extra Targets 1,Merciless Labyrinth,Lightning Arrow hits an additional Enemy,Lightning Arrow -Enchantment Lightning Arrow Area Of Effect 1,Merciless Labyrinth,16% increased Lightning Arrow Area of Effect,Lightning Arrow -Enchantment Lightning Golem Elemental Resistances 2,Eternal Labyrinth,+36% to Lightning Golem Elemental Resistances,Lightning Golem -Enchantment Lightning Golem Granted Buff Effect 2,Eternal Labyrinth,150% increased Effect of the Buff granted by your Lightning Golems,Lightning Golem -Enchantment Lightning Golem Elemental Resistances 1,Merciless Labyrinth,+24% to Lightning Golem Elemental Resistances,Lightning Golem -Enchantment Lightning Golem Granted Buff Effect 1,Merciless Labyrinth,100% increased Effect of the Buff granted by your Lightning Golems,Lightning Golem -Enchantment Lightning Strike Additional Pierce 2,Eternal Labyrinth,Lightning Strike pierces 3 additional Targets,Lightning Strike -Enchantment Lightning Strike Damage 2,Eternal Labyrinth,40% increased Lightning Strike Damage,Lightning Strike -Enchantment Lightning Strike Num Of Additional Projectiles 2,Eternal Labyrinth,Lightning Strike fires 3 additional Projectiles,Lightning Strike -Enchantment Lightning Strike Additional Pierce 1,Merciless Labyrinth,Lightning Strike pierces 2 additional Targets,Lightning Strike -Enchantment Lightning Strike Damage 1,Merciless Labyrinth,25% increased Lightning Strike Damage,Lightning Strike -Enchantment Lightning Strike Num Of Additional Projectiles 1,Merciless Labyrinth,Lightning Strike fires 2 additional Projectiles,Lightning Strike -Enchantment Lightning Tendrils Critical Strike Chance 2,Eternal Labyrinth,60% increased Lightning Tendrils Critical Strike Chance,Lightning Tendrils -Enchantment Lightning Tendrils Damage 2,Eternal Labyrinth,40% increased Lightning Tendrils Damage,Lightning Tendrils -Enchantment Lightning Tendrils Area Of Effect 2,Eternal Labyrinth,24% increased Lightning Tendrils Area of Effect,Lightning Tendrils -Enchantment Lightning Tendrils Critical Strike Chance 1,Merciless Labyrinth,40% increased Lightning Tendrils Critical Strike Chance,Lightning Tendrils -Enchantment Lightning Tendrils Damage 1,Merciless Labyrinth,25% increased Lightning Tendrils Damage,Lightning Tendrils -Enchantment Lightning Tendrils Area Of Effect 1,Merciless Labyrinth,16% increased Lightning Tendrils Area of Effect,Lightning Tendrils -Enchantment Lightning Tower Trap Cast Speed 2,Eternal Labyrinth,Lightning Spire Trap has 12% increased Cast Speed,Lightning Spire Trap -Enchantment Lightning Tower Trap Cooldown Speed 2,Eternal Labyrinth,Lightning Spire Trap has 15% increased Cooldown Recovery Speed,Lightning Spire Trap -Enchantment Lightning Tower Trap Damage 2,Eternal Labyrinth,Lightning Spire Trap deals 40% increased Damage,Lightning Spire Trap -Enchantment Lightning Tower Trap Duration 2,Eternal Labyrinth,Lightning Spire Trap has 30% increased Skill Effect Duration,Lightning Spire Trap -Enchantment Lightning Tower Trap Cast Speed 1,Merciless Labyrinth,Lightning Spire Trap has 8% increased Cast Speed,Lightning Spire Trap -Enchantment Lightning Tower Trap Cooldown Speed 1,Merciless Labyrinth,Lightning Spire Trap has 10% increased Cooldown Recovery Speed,Lightning Spire Trap -Enchantment Lightning Tower Trap Damage 1,Merciless Labyrinth,Lightning Spire Trap deals 25% increased Damage,Lightning Spire Trap -Enchantment Lightning Tower Trap Duration 1,Merciless Labyrinth,Lightning Spire Trap has 20% increased Skill Effect Duration,Lightning Spire Trap -Enchantment Lightning Tower Trap Additional Beams 1,Eternal Labyrinth,Lightning Spire Trap strikes an additional area,Lightning Spire Trap -Enchantment Lightning Trap Additional Pierce 2,Eternal Labyrinth,Lightning Trap pierces 3 additional Targets,Lightning Trap -Enchantment Lightning Trap Damage 2,Eternal Labyrinth,40% increased Lightning Trap Damage,Lightning Trap -Enchantment Lightning Trap Shock Effect 2,Eternal Labyrinth,40% increased Lightning Trap Shock Effect,Lightning Trap -Enchantment Lightning Trap Additional Pierce 1,Merciless Labyrinth,Lightning Trap pierces 2 additional Targets,Lightning Trap -Enchantment Lightning Trap Damage 1,Merciless Labyrinth,25% increased Lightning Trap Damage,Lightning Trap -Enchantment Lightning Trap Shock Effect 1,Merciless Labyrinth,25% increased Lightning Trap Shock Effect,Lightning Trap -Enchantment Lightning Trap Penetration 2,Eternal Labyrinth,Lightning Trap Damage Penetrates 10% Lightning Resistance,Lightning Trap -Enchantment Lightning Trap Penetration 1,Merciless Labyrinth,Lightning Trap Damage Penetrates 6% Lightning Resistance,Lightning Trap -Enchantment Lightning Warp Cast Speed 2,Eternal Labyrinth,12% increased Lightning Warp Cast Speed,Lightning Warp -Enchantment Lightning Warp Damage 2,Eternal Labyrinth,40% increased Lightning Warp Damage,Lightning Warp -Enchantment Lightning Warp Duration 2,Eternal Labyrinth,30% reduced Lightning Warp Duration,Lightning Warp -Enchantment Lightning Warp Cast Speed 1,Merciless Labyrinth,8% increased Lightning Warp Cast Speed,Lightning Warp -Enchantment Lightning Warp Damage 1,Merciless Labyrinth,25% increased Lightning Warp Damage,Lightning Warp -Enchantment Lightning Warp Duration 1,Merciless Labyrinth,20% reduced Lightning Warp Duration,Lightning Warp -Enchantment Magma Orb Damage 2,Eternal Labyrinth,40% increased Magma Orb Damage,Magma Orb -Enchantment Magma Orb Area Of Effect 2,Eternal Labyrinth,24% increased Magma Orb Area of Effect,Magma Orb -Enchantment Magma Orb Damage 1,Merciless Labyrinth,25% increased Magma Orb Damage,Magma Orb -Enchantment Magma Orb Area Of Effect 1,Merciless Labyrinth,16% increased Magma Orb Area of Effect,Magma Orb -Enchantment Magma Orb Num Of Additional Projectiles In Chain 2,Eternal Labyrinth,Magma Orb Chains an additional time,Magma Orb -Enchantment Malevolence Mana Reservation 2,Eternal Labyrinth,Malevolence has 15% reduced Mana Reservation,Malevolence -Enchantment Malevolence Mana Reservation 1,Merciless Labyrinth,Malevolence has 10% reduced Mana Reservation,Malevolence -Enchantment Mirror Arrow Attack Speed 2,Eternal Labyrinth,Mirror Arrow and Mirror Arrow Clones have 15% increased Attack Speed,Mirror Arrow -Enchantment Mirror Arrow Cooldown Speed 2,Eternal Labyrinth,30% increased Mirror Arrow Cooldown Recovery Speed,Mirror Arrow -Enchantment Mirror Arrow Damage 2,Eternal Labyrinth,Mirror Arrow and Mirror Arrow Clones deal 40% increased Damage,Mirror Arrow -Enchantment Mirror Arrow Attack Speed 1,Merciless Labyrinth,Mirror Arrow and Mirror Arrow Clones have 10% increased Attack Speed,Mirror Arrow -Enchantment Mirror Arrow Cooldown Speed 1,Merciless Labyrinth,20% increased Mirror Arrow Cooldown Recovery Speed,Mirror Arrow -Enchantment Mirror Arrow Damage 1,Merciless Labyrinth,Mirror Arrow and Mirror Arrow Clones deal 25% increased Damage,Mirror Arrow -Enchantment Molten Shell Armour 2,Eternal Labyrinth,150% increased Molten Shell Buff Effect,Molten Shell -Enchantment Molten Shell Duration 2,Eternal Labyrinth,Molten Shell has 40% increased Skill Effect Duration,Molten Shell -Enchantment Molten Shell Armour 1,Merciless Labyrinth,100% increased Molten Shell Buff Effect,Molten Shell -Enchantment Molten Shell Duration 1,Merciless Labyrinth,Molten Shell has 25% increased Skill Effect Duration,Molten Shell -Enchantment Molten Strike Damage 2,Eternal Labyrinth,40% increased Molten Strike Damage,Molten Strike -Enchantment Molten Strike Num Of Additional Projectiles 2,Eternal Labyrinth,Molten Strike fires 2 additional Projectiles,Molten Strike -Enchantment Molten Strike Area Of Effect 2,Eternal Labyrinth,24% increased Molten Strike Area of Effect,Molten Strike -Enchantment Molten Strike Damage 1,Merciless Labyrinth,25% increased Molten Strike Damage,Molten Strike -Enchantment Molten Strike Num Of Additional Projectiles 1,Merciless Labyrinth,Molten Strike fires an additional Projectile,Molten Strike -Enchantment Molten Strike Area Of Effect 1,Merciless Labyrinth,16% increased Molten Strike Area of Effect,Molten Strike -Enchantment Orb Of Storms Cast Speed 2,Eternal Labyrinth,Orb of Storms has 30% increased Cast Speed,Orb of Storms -Enchantment Orb Of Storms Damage 2,Eternal Labyrinth,40% increased Orb of Storms Damage,Orb of Storms -Enchantment Orb of Storms Critical Strike Chance 2,Eternal Labyrinth,90% increased Orb of Storms Critical Strike Chance,Orb of Storms -Enchantment Orb of Storms Area Of Effect 2,Eternal Labyrinth,24% increased Orb of Storms Area of Effect,Orb of Storms -Enchantment Orb Of Storms Cast Speed 1,Merciless Labyrinth,Orb of Storms has 20% increased Cast Speed,Orb of Storms -Enchantment Orb Of Storms Damage 1,Merciless Labyrinth,25% increased Orb of Storms Damage,Orb of Storms -Enchantment Orb of Storms Critical Strike Chance 1,Merciless Labyrinth,60% increased Orb of Storms Critical Strike Chance,Orb of Storms -Enchantment Orb of Storms Area Of Effect 1,Merciless Labyrinth,16% increased Orb of Storms Area of Effect,Orb of Storms -Enchantment Perforate Area Of Effect 2,Eternal Labyrinth,Perforate has 24% increased Area of Effect,Perforate -Enchantment Perforate Damage 2,Eternal Labyrinth,Perforate deals 40% increased Damage,Perforate -Enchantment Perforate Number Of Spikes 2,Eternal Labyrinth,Perforate creates +2 Spikes,Perforate -Enchantment Perforate Area Of Effect 1,Merciless Labyrinth,Perforate has 16% increased Area of Effect,Perforate -Enchantment Perforate Damage 1,Merciless Labyrinth,Perforate deals 25% increased Damage,Perforate -Enchantment Perforate Number Of Spikes 1,Merciless Labyrinth,Perforate creates +1 Spike,Perforate -Enchantment Pestilent Strike Area Of Effect 2,Eternal Labyrinth,Pestilent Strike has 24% increased Area of Effect,Pestilent Strike -Enchantment Pestilent Strike Damage 2,Eternal Labyrinth,Pestilent Strike deals 40% increased Damage,Pestilent Strike -Enchantment Pestilent Strike Duration 2,Eternal Labyrinth,Pestilent Strike has 40% increased Duration,Pestilent Strike -Enchantment Pestilent Strike Area Of Effect 1,Merciless Labyrinth,Pestilent Strike has 16% increased Area of Effect,Pestilent Strike -Enchantment Pestilent Strike Damage 1,Merciless Labyrinth,Pestilent Strike deals 25% increased Damage,Pestilent Strike -Enchantment Pestilent Strike Duration 1,Merciless Labyrinth,Pestilent Strike has 25% increased Duration,Pestilent Strike -Enchantment Phase Run Duration 2,Eternal Labyrinth,36% increased Phase Run Duration,Phase Run -Enchantment Phase Run Percent Chance To Not Consume Frenzy Charges 2,Eternal Labyrinth,30% chance for Phase Run to increase Duration without removing Frenzy Charges,Phase Run -Enchantment Phase Run Duration 1,Merciless Labyrinth,24% increased Phase Run Duration,Phase Run -Enchantment Phase Run Percent Chance To Not Consume Frenzy Charges 1,Merciless Labyrinth,20% chance for Phase Run to increase Duration without removing Frenzy Charges,Phase Run -Enchantment Physical Cascade Cooldown Speed 2,Eternal Labyrinth,Seismic Trap has 15% increased Cooldown Recovery Speed,Physical Cascade -Enchantment Physical Cascade Cooldown Speed 1,Merciless Labyrinth,Seismic Trap has 10% increased Cooldown Recovery Speed,Physical Cascade -Enchantment Physical Cascade Additional Cascades 1,Eternal Labyrinth,Seismic Trap releases an additional Wave,Physical Cascade -Enchantment Physical Cascade Trap Damage 2,Eternal Labyrinth,Seismic Trap deals 40% increased Damage,Physical Cascade Trap -Enchantment Physical Cascade Trap Duration 2,Eternal Labyrinth,Seismic Trap has 30% increased Skill Effect Duration,Physical Cascade Trap -Enchantment Physical Cascade Trap Damage 1,Merciless Labyrinth,Seismic Trap deals 25% increased Damage,Physical Cascade Trap -Enchantment Physical Cascade Trap Duration 1,Merciless Labyrinth,Seismic Trap has 20% increased Skill Effect Duration,Physical Cascade Trap -Enchantment Plague Bearer Poison Dot Multiplier While Aura Active 2,Eternal Labyrinth,Plague Bearer Buff grants +20% to Poison Damage over Time Multiplier while Infecting,Plague -Enchantment Plague Bearer Stored Poison Damage To Deal Per Second 2,Eternal Labyrinth,Plague Bearer deals Damage based on an additional 5% of Plague Value,Plague -Enchantment Plague Bearer Poison Dot Multiplier While Aura Active 1,Merciless Labyrinth,Plague Bearer Buff grants +12% to Poison Damage over Time Multiplier while Infecting,Plague -Enchantment Plague Bearer Stored Poison Damage To Deal Per Second 1,Merciless Labyrinth,Plague Bearer deals Damage based on an additional 3% of Plague Value,Plague -Enchantment Poachers Mark Duration 2,Eternal Labyrinth,45% increased Poacher's Mark Duration,Poachers Mark -Enchantment Poachers Mark Duration 1,Merciless Labyrinth,30% increased Poacher's Mark Duration,Poachers Mark -Enchantment Poachers Mark Curse Effect 2,Eternal Labyrinth,30% increased Poacher's Mark Curse Effect,Poachers Mark Curse -Enchantment Poachers Mark Curse Effect 1,Merciless Labyrinth,20% increased Poacher's Mark Curse Effect,Poachers Mark Curse -Enchantment Power Siphon Additional Projectiles 2,Eternal Labyrinth,Power Siphon fires 2 additional Projectiles,Power Siphon -Enchantment Power Siphon Attack Speed 2,Eternal Labyrinth,15% increased Power Siphon Attack Speed,Power Siphon -Enchantment Power Siphon Damage 2,Eternal Labyrinth,40% increased Power Siphon Damage,Power Siphon -Enchantment Power Siphon Percent Chance To Gain Power Charge On Kill 2,Eternal Labyrinth,45% Chance to gain an additional Power Charge on Kill with Power Siphon,Power Siphon -Enchantment Power Siphon Additional Projectiles 1,Merciless Labyrinth,Power Siphon fires an additional Projectile,Power Siphon -Enchantment Power Siphon Attack Speed 1,Merciless Labyrinth,10% increased Power Siphon Attack Speed,Power Siphon -Enchantment Power Siphon Damage 1,Merciless Labyrinth,25% increased Power Siphon Damage,Power Siphon -Enchantment Power Siphon Percent Chance To Gain Power Charge On Kill 1,Merciless Labyrinth,30% Chance to gain an additional Power Charge on Kill with Power Siphon,Power Siphon -Enchantment Precision Mana Reservation 2,Eternal Labyrinth,Precision has 30% reduced Mana Reservation,Precision Mana -Enchantment Precision Mana Reservation 1,Merciless Labyrinth,Precision has 20% reduced Mana Reservation,Precision Mana -Enchantment Pride Mana Reservation 2,Eternal Labyrinth,Pride has 15% reduced Mana Reservation,Pride Mana -Enchantment Pride Mana Reservation 1,Merciless Labyrinth,Pride has 10% reduced Mana Reservation,Pride Mana -Enchantment Projectile Weakness Duration 2,Eternal Labyrinth,45% increased Projectile Weakness Duration,Projectile Weakness -Enchantment Projectile Weakness Duration 1,Merciless Labyrinth,30% increased Projectile Weakness Duration,Projectile Weakness -Enchantment Projectile Weakness Curse Effect 2,Eternal Labyrinth,30% increased Projectile Weakness Curse Effect,Projectile Weakness Curse -Enchantment Projectile Weakness Curse Effect 1,Merciless Labyrinth,20% increased Projectile Weakness Curse Effect,Projectile Weakness Curse -Enchantment Puncture Damage 2,Eternal Labyrinth,40% increased Puncture Damage,Puncture -Enchantment Puncture Damage 1,Merciless Labyrinth,25% increased Puncture Damage,Puncture -Enchantment Puncture Duration 2,Eternal Labyrinth,45% increased Puncture Duration,Puncture Duration -Enchantment Puncture Duration 1,Merciless Labyrinth,30% increased Puncture Duration,Puncture Duration -Enchantment Puncture Maim On Hit Percent Chance 2,Eternal Labyrinth,30% Chance for Puncture to Maim on hit,Puncture Maim -Enchantment Puncture Maim On Hit Percent Chance 1,Merciless Labyrinth,20% Chance for Puncture to Maim on hit,Puncture Maim -Enchantment Punishment Curse Effect 2,Eternal Labyrinth,30% increased Punishment Curse Effect,Punishment Curse -Enchantment Punishment Curse Effect 1,Merciless Labyrinth,20% increased Punishment Curse Effect,Punishment Curse -Enchantment Punishment Duration 2,Eternal Labyrinth,45% increased Punishment Duration,Punishment Duration -Enchantment Punishment Duration 1,Merciless Labyrinth,30% increased Punishment Duration,Punishment Duration -Enchantment Purifying Flame Area Of Effect When Targeting Consecrated Ground 2,Eternal Labyrinth,Purifying Flame has 30% increased Area of Effect if targeting Consecrated Ground,Purifying Flame -Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2,Eternal Labyrinth,Consecrated Ground from Purifying Flame applies 9% increased Damage taken to Enemies,Purifying Flame -Enchantment Purifying Flame Damage 2,Eternal Labyrinth,Purifying Flame deals 40% increased Damage,Purifying Flame -Enchantment Purifying Flame Area Of Effect When Targeting Consecrated Ground 1,Merciless Labyrinth,Purifying Flame has 20% increased Area of Effect if targeting Consecrated Ground,Purifying Flame -Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 1,Merciless Labyrinth,Consecrated Ground from Purifying Flame applies 6% increased Damage taken to Enemies,Purifying Flame -Enchantment Purifying Flame Damage 1,Merciless Labyrinth,Purifying Flame deals 25% increased Damage,Purifying Flame -Enchantment Purity Of Elements Mana Reservation 2,Eternal Labyrinth,Purity of Elements has 20% reduced Mana Reservation,Purity -Enchantment Purity Of Elements Mana Reservation 1,Merciless Labyrinth,Purity of Elements has 14% reduced Mana Reservation,Purity -Enchantment Purity Of Fire Mana Reservation 2,Eternal Labyrinth,Purity of Fire has 20% reduced Mana Reservation,Purity Of Fire -Enchantment Purity Of Fire Mana Reservation 1,Merciless Labyrinth,Purity of Fire has 14% reduced Mana Reservation,Purity Of Fire -Enchantment Purity Of Ice Mana Reservation 2,Eternal Labyrinth,Purity of Ice has 20% reduced Mana Reservation,Purity Of Ice -Enchantment Purity Of Ice Mana Reservation 1,Merciless Labyrinth,Purity of Ice has 14% reduced Mana Reservation,Purity Of Ice -Enchantment Purity Of Lightning Mana Reservation 2,Eternal Labyrinth,Purity of Lightning has 20% reduced Mana Reservation,Purity Of Lightning -Enchantment Purity Of Lightning Mana Reservation 1,Merciless Labyrinth,Purity of Lightning has 14% reduced Mana Reservation,Purity Of Lightning -Enchantment Pyroclast Mine Damage 2,Eternal Labyrinth,Pyroclast Mine deals 40% increased Damage,Pyroclast Mine -Enchantment Pyroclast Mine Throwing Speed 2,Eternal Labyrinth,Pyroclast Mine has 15% increased Throwing Speed,Pyroclast Mine -Enchantment Pyroclast Mine Damage 1,Merciless Labyrinth,Pyroclast Mine deals 25% increased Damage,Pyroclast Mine -Enchantment Pyroclast Mine Throwing Speed 1,Merciless Labyrinth,Pyroclast Mine has 10% increased Throwing Speed,Pyroclast Mine -Enchantment Pyroclast Mine Additional Projectiles 1,Eternal Labyrinth,Pyroclast Mine fires an additional Projectile,Pyroclast Mine -Enchantment Rain Of Arrows Attack Speed 2,Eternal Labyrinth,15% increased Rain of Arrows Attack Speed,Rain -Enchantment Rain Of Arrows Damage 2,Eternal Labyrinth,40% increased Rain of Arrows Damage,Rain -Enchantment Rain Of Arrows Area Of Effect 2,Eternal Labyrinth,24% increased Rain of Arrows Area of Effect,Rain -Enchantment Rain Of Arrows Repeat Count 2,Eternal Labyrinth,Rain of Arrows has 15% chance to fire an additional sequence of arrows,Rain -Enchantment Rain Of Arrows Attack Speed 1,Merciless Labyrinth,10% increased Rain of Arrows Attack Speed,Rain -Enchantment Rain Of Arrows Damage 1,Merciless Labyrinth,25% increased Rain of Arrows Damage,Rain -Enchantment Rain Of Arrows Area Of Effect 1,Merciless Labyrinth,16% increased Rain of Arrows Area of Effect,Rain -Enchantment Rain Of Arrows Repeat Count 1,Merciless Labyrinth,Rain of Arrows has 10% chance to fire an additional sequence of arrows,Rain -Enchantment Raise Spectre Damage 2,Eternal Labyrinth,Spectres have 40% increased Damage,Raise Spectre -Enchantment Raise Spectre Damage 1,Merciless Labyrinth,Spectres have 25% increased Damage,Raise Spectre -Enchantment Raise Zombie Damage 2,Eternal Labyrinth,Raised Zombies deal 40% increased Damage,Raise Zombie -Enchantment Raise Zombie Damage 1,Merciless Labyrinth,Raised Zombies deal 25% increased Damage,Raise Zombie -Enchantment Reave Damage 2,Eternal Labyrinth,40% increased Reave Damage,Reave -Enchantment Reave Area Of Effect 2,Eternal Labyrinth,24% increased Reave Radius,Reave -Enchantment Reave Damage 1,Merciless Labyrinth,25% increased Reave Damage,Reave -Enchantment Reave Area Of Effect 1,Merciless Labyrinth,16% increased Reave Radius,Reave -Enchantment Reckoning Cooldown Speed 2,Eternal Labyrinth,30% increased Reckoning Cooldown Recovery Speed,Reckoning -Enchantment Reckoning Damage 2,Eternal Labyrinth,40% increased Reckoning Damage,Reckoning -Enchantment Reckoning Cooldown Speed 1,Merciless Labyrinth,20% increased Reckoning Cooldown Recovery Speed,Reckoning -Enchantment Reckoning Damage 1,Merciless Labyrinth,25% increased Reckoning Damage,Reckoning -Enchantment Rejuvination Totem Life Regeneration 2,Eternal Labyrinth,45% increased Rejuvenation Totem Aura Effect,Rejuvination Totem -Enchantment Rejuvination Totem Percent Life Regeneration Added As Mana Regeneration 2,Eternal Labyrinth,Gain 15% of Rejuvenation Totem Life Regeneration as extra Mana Regeneration,Rejuvination Totem -Enchantment Rejuvination Totem Life Regeneration 1,Merciless Labyrinth,30% increased Rejuvenation Totem Aura Effect,Rejuvination Totem -Enchantment Rejuvination Totem Percent Life Regeneration Added As Mana Regeneration 1,Merciless Labyrinth,Gain 10% of Rejuvenation Totem Life Regeneration as extra Mana Regeneration,Rejuvination Totem -Enchantment Righteous Fire Damage 2,Eternal Labyrinth,40% increased Righteous Fire Damage,Righteous Fire -Enchantment Righteous Fire Area Of Effect 2,Eternal Labyrinth,24% increased Righteous Fire Area of Effect,Righteous Fire -Enchantment Righteous Fire Spell Damage 2,Eternal Labyrinth,Righteous Fire grants 30% increased Spell Damage,Righteous Fire -Enchantment Righteous Fire Damage 1,Merciless Labyrinth,25% increased Righteous Fire Damage,Righteous Fire -Enchantment Righteous Fire Area Of Effect 1,Merciless Labyrinth,16% increased Righteous Fire Area of Effect,Righteous Fire -Enchantment Righteous Fire Spell Damage 1,Merciless Labyrinth,Righteous Fire grants 20% increased Spell Damage,Righteous Fire -Enchantment Riposte Cooldown Speed 2,Eternal Labyrinth,30% increased Riposte Cooldown Recovery Speed,Riposte -Enchantment Riposte Damage 2,Eternal Labyrinth,40% increased Riposte Damage,Riposte -Enchantment Riposte Cooldown Speed 1,Merciless Labyrinth,20% increased Riposte Cooldown Recovery Speed,Riposte -Enchantment Riposte Damage 1,Merciless Labyrinth,25% increased Riposte Damage,Riposte -Enchantment Rune Blast Teleport 2,Eternal Labyrinth,Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds,Rune Blast -Enchantment Rune Blast Teleport 1,Merciless Labyrinth,Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second,Rune Blast -Enchantment Scorching Ray Damage 2,Eternal Labyrinth,40% increased Scorching Ray Damage,Scorching Ray -Enchantment Scorching Ray Damage 1,Merciless Labyrinth,25% increased Scorching Ray Damage,Scorching Ray -Enchantment Scourge Arrow Chance To Poison 2,Eternal Labyrinth,Scourge Arrow has 8% chance to Poison per Stage,Scourge Arrow -Enchantment Scourge Arrow Damage 2,Eternal Labyrinth,Scourge Arrow deals 40% increased Damage,Scourge Arrow -Enchantment Scourge Arrow Chance To Poison 1,Merciless Labyrinth,Scourge Arrow has 6% chance to Poison per Stage,Scourge Arrow -Enchantment Scourge Arrow Damage 1,Merciless Labyrinth,Scourge Arrow deals 25% increased Damage,Scourge Arrow -Enchantment Scourge Arrow Additional Spore 1,Eternal Labyrinth,Scourge Arrow creates an additional spore pod at Maximum Stages,Scourge Arrow -Enchantment Searing Bond Damage 2,Eternal Labyrinth,40% increased Searing Bond Damage,Searing Bond -Enchantment Searing Bond Damage 1,Merciless Labyrinth,25% increased Searing Bond Damage,Searing Bond -Enchantment Searing Bond Totem Elemental Resistances 2,Eternal Labyrinth,36% increased Searing Bond Totem Elemental Resistances,Searing Bond Totem -Enchantment Searing Bond Totem Placement Speed 2,Eternal Labyrinth,60% increased Searing Bond Totem Placement Speed,Searing Bond Totem -Enchantment Searing Bond Totem Elemental Resistances 1,Merciless Labyrinth,24% increased Searing Bond Totem Elemental Resistances,Searing Bond Totem -Enchantment Searing Bond Totem Placement Speed 1,Merciless Labyrinth,40% increased Searing Bond Totem Placement Speed,Searing Bond Totem -Enchantment Seismic Cry Exerted Attack Damage 2,Eternal Labyrinth,Attacks Exerted by Seismic Cry deal 50% increased Damage,Seismic Cry -Enchantment Seismic Cry Exerted Attack Damage 1,Merciless Labyrinth,Attacks Exerted by Seismic Cry deal 35% increased Damage,Seismic Cry -Enchantment Seismic Cry Minimum Power 1,Eternal Labyrinth,Seismic Cry has a minimum of 10 Power,Seismic Cry -Enchantment Shattering Steel Damage 2,Eternal Labyrinth,Shattering Steel deals 40% increased Damage,Shattering Steel -Enchantment Shattering Steel Damage 1,Merciless Labyrinth,Shattering Steel deals 25% increased Damage,Shattering Steel -Enchantment Shattering Steel Additional Projectile 1,Eternal Labyrinth,Shattering Steel fires an additional Projectile,Shattering Steel -Enchantment Shattering Steel Fortify On Hit Close Range 1,Eternal Labyrinth,Shattering Steel grants Fortify on Hitting an Enemy at Close Range,Shattering Steel -Enchantment Shield Charge Attack Speed 2,Eternal Labyrinth,15% increased Shield Charge Attack Speed,Shield Charge -Enchantment Shield Charge Damage 2,Eternal Labyrinth,40% increased Shield Charge Damage,Shield Charge -Enchantment Shield Charge Attack Speed 1,Merciless Labyrinth,10% increased Shield Charge Attack Speed,Shield Charge -Enchantment Shield Charge Damage 1,Merciless Labyrinth,25% increased Shield Charge Damage,Shield Charge -Enchantment Shock Nova Damage 2,Eternal Labyrinth,40% increased Shock Nova Damage,Shock Nova -Enchantment Shock Nova Larger Ring Damage 2,Eternal Labyrinth,Shock Nova ring deals 60% increased Damage,Shock Nova -Enchantment Shock Nova Area Of Effect 2,Eternal Labyrinth,24% increased Shock Nova Area of Effect,Shock Nova -Enchantment Shock Nova Damage 1,Merciless Labyrinth,25% increased Shock Nova Damage,Shock Nova -Enchantment Shock Nova Larger Ring Damage 1,Merciless Labyrinth,Shock Nova ring deals 40% increased Damage,Shock Nova -Enchantment Shock Nova Area Of Effect 1,Merciless Labyrinth,16% increased Shock Nova Area of Effect,Shock Nova -Enchantment Shockwave Totem Cast Speed 2,Eternal Labyrinth,15% increased Shockwave Totem Cast Speed,Shockwave Totem -Enchantment Shockwave Totem Damage 2,Eternal Labyrinth,40% increased Shockwave Totem Damage,Shockwave Totem -Enchantment Shockwave Totem Radius 2,Eternal Labyrinth,24% increased Shockwave Totem Area of Effect,Shockwave Totem -Enchantment Shockwave Totem Cast Speed 1,Merciless Labyrinth,10% increased Shockwave Totem Cast Speed,Shockwave Totem -Enchantment Shockwave Totem Damage 1,Merciless Labyrinth,25% increased Shockwave Totem Damage,Shockwave Totem -Enchantment Shockwave Totem Radius 1,Merciless Labyrinth,16% increased Shockwave Totem Area of Effect,Shockwave Totem -Enchantment Shrapnel Ballista Extra Pierces 2,Eternal Labyrinth,Shrapnel Ballista Pierces 6 additional Targets,Shrapnel Ballista -Enchantment Shrapnel Ballista Projectile Speed 2,Eternal Labyrinth,Shrapnel Ballista has 30% increased Projectile Speed,Shrapnel Ballista -Enchantment Shrapnel Ballista Extra Pierces 1,Merciless Labyrinth,Shrapnel Ballista Pierces 4 additional Targets,Shrapnel Ballista -Enchantment Shrapnel Ballista Projectile Speed 1,Merciless Labyrinth,Shrapnel Ballista has 20% increased Projectile Speed,Shrapnel Ballista -Enchantment Shrapnel Ballista Additional Arrows 1,Eternal Labyrinth,Shrapnel Ballista fires an additional Arrow,Shrapnel Ballista -Enchantment Shrapnel Shot Damage 2,Eternal Labyrinth,40% increased Galvanic Arrow Damage,Shrapnel Shot -Enchantment Shrapnel Shot Physical Damage Percent To Add As Lightning Damage 2,Eternal Labyrinth,15% of Galvanic Arrow Physical Damage gained as extra Lightning Damage,Shrapnel Shot -Enchantment Shrapnel Shot Damage 1,Merciless Labyrinth,25% increased Galvanic Arrow Damage,Shrapnel Shot -Enchantment Shrapnel Shot Physical Damage Percent To Add As Lightning Damage 1,Merciless Labyrinth,10% of Galvanic Arrow Physical Damage gained as extra Lightning Damage,Shrapnel Shot -Enchantment Shrapnel Trap Damage 2,Eternal Labyrinth,Explosive Trap deals 40% increased Damage,Shrapnel Trap -Enchantment Shrapnel Trap Radius 2,Eternal Labyrinth,Explosive Trap has 24% increased Area of Effect,Shrapnel Trap -Enchantment Shrapnel Trap Secondary Explosions 2,Eternal Labyrinth,Explosive Trap causes 2 additional smaller explosions,Shrapnel Trap -Enchantment Shrapnel Trap Damage 1,Merciless Labyrinth,Explosive Trap deals 25% increased Damage,Shrapnel Trap -Enchantment Shrapnel Trap Radius 1,Merciless Labyrinth,Explosive Trap has 16% increased Area of Effect,Shrapnel Trap -Enchantment Shrapnel Trap Secondary Explosions 1,Merciless Labyrinth,Explosive Trap causes an additional smaller explosion,Shrapnel Trap -Enchantment Siege Ballista Attack Speed 2,Eternal Labyrinth,Siege Ballista has 15% increased Attack Speed,Siege Ballista -Enchantment Siege Ballista Damage 2,Eternal Labyrinth,Siege Ballista deals 40% increased Damage,Siege Ballista -Enchantment Siege Ballista Attack Speed 1,Merciless Labyrinth,Siege Ballista has 10% increased Attack Speed,Siege Ballista -Enchantment Siege Ballista Damage 1,Merciless Labyrinth,Siege Ballista deals 25% increased Damage,Siege Ballista -Enchantment Siege Ballista Totem Placement Speed 2,Eternal Labyrinth,Siege Ballista has 45% increased Totem Placement Speed,Siege Ballista Totem -Enchantment Siege Ballista Totem Placement Speed 1,Merciless Labyrinth,Siege Ballista has 30% increased Totem Placement Speed,Siege Ballista Totem -Enchantment Smite Additional Target Chance 2,Eternal Labyrinth,Smite has a 15% chance for lightning to strike another target,Smite -Enchantment Smite Aura Effect 2,Eternal Labyrinth,Smite has 30% increased Aura Effect,Smite -Enchantment Smite Damage 2,Eternal Labyrinth,Smite deals 40% increased Damage,Smite -Enchantment Smite Additional Target Chance 1,Merciless Labyrinth,Smite has a 10% chance for lightning to strike another target,Smite -Enchantment Smite Aura Effect 1,Merciless Labyrinth,Smite has 20% increased Aura Effect,Smite -Enchantment Smite Damage 1,Merciless Labyrinth,Smite deals 25% increased Damage,Smite -Enchantment Smoke Mine Duration 2,Eternal Labyrinth,30% increased Smoke Mine Duration,Smoke Mine -Enchantment Smoke Mine Movement Speed 2,Eternal Labyrinth,Smoke Mine grants additional 30% increased Movement Speed,Smoke Mine -Enchantment Smoke Mine Duration 1,Merciless Labyrinth,20% increased Smoke Mine Duration,Smoke Mine -Enchantment Smoke Mine Movement Speed 1,Merciless Labyrinth,Smoke Mine grants additional 20% increased Movement Speed,Smoke Mine -Enchantment Soulrend Applies Hinder Movement Speed 2,Eternal Labyrinth,"Soulrend also Hinders Enemies, with 40% reduced Movement Speed",Soulrend -Enchantment Soulrend Damage 2,Eternal Labyrinth,Soulrend deals 40% increased Damage,Soulrend -Enchantment Soulrend Applies Hinder Movement Speed 1,Merciless Labyrinth,"Soulrend also Hinders Enemies, with 25% reduced Movement Speed",Soulrend -Enchantment Soulrend Damage 1,Merciless Labyrinth,Soulrend deals 25% increased Damage,Soulrend -Enchantment Soulrend Number Of Additional Projectiles 1,Eternal Labyrinth,Soulrend fires an additional Projectile,Soulrend -Enchantment Spark Damage 2,Eternal Labyrinth,40% increased Spark Damage,Spark -Enchantment Spark Num Of Additional Projectiles 2,Eternal Labyrinth,Spark fires 3 additional Projectiles,Spark -Enchantment Spark Damage 1,Merciless Labyrinth,25% increased Spark Damage,Spark -Enchantment Spark Num Of Additional Projectiles 1,Merciless Labyrinth,Spark fires 2 additional Projectiles,Spark -Enchantment Spark Projectile Speed 2,Eternal Labyrinth,30% increased Spark Projectile Speed,Spark Projectile -Enchantment Spark Projectile Speed 1,Merciless Labyrinth,20% increased Spark Projectile Speed,Spark Projectile -Enchantment Spectral Shield Throw Damage 2,Eternal Labyrinth,40% increased Spectral Shield Throw Damage,Spectral Shield Throw -Enchantment Spectral Shield Throw Num Of Additional Projectiles 2,Eternal Labyrinth,Spectral Shield Throw fires 5 additional Shard Projectiles,Spectral Shield Throw -Enchantment Spectral Shield Throw Projectile Speed 2,Eternal Labyrinth,30% increased Spectral Shield Throw Projectile Speed,Spectral Shield Throw -Enchantment Spectral Shield Throw Damage 1,Merciless Labyrinth,25% increased Spectral Shield Throw Damage,Spectral Shield Throw -Enchantment Spectral Shield Throw Num Of Additional Projectiles 1,Merciless Labyrinth,Spectral Shield Throw fires 3 additional Shard Projectiles,Spectral Shield Throw -Enchantment Spectral Shield Throw Projectile Speed 1,Merciless Labyrinth,20% increased Spectral Shield Throw Projectile Speed,Spectral Shield Throw -Enchantment Spectral Throw Damage 2,Eternal Labyrinth,40% increased Spectral Throw Damage,Spectral Shield Throw -Enchantment Spectral Throw Projectile Deceleration 2,Eternal Labyrinth,30% reduced Spectral Throw Projectile Deceleration,Spectral Shield Throw -Enchantment Spectral Throw Projectile Speed 2,Eternal Labyrinth,30% increased Spectral Throw Projectile Speed,Spectral Shield Throw -Enchantment Spectral Throw Damage 1,Merciless Labyrinth,25% increased Spectral Throw Damage,Spectral Shield Throw -Enchantment Spectral Throw Projectile Deceleration 1,Merciless Labyrinth,20% reduced Spectral Throw Projectile Deceleration,Spectral Shield Throw -Enchantment Spectral Throw Projectile Speed 1,Merciless Labyrinth,20% increased Spectral Throw Projectile Speed,Spectral Shield Throw -Enchantment Spectre Attack And Cast Speed 2,Eternal Labyrinth,Spectres have 12% increased Attack and Cast Speed,Spectre -Enchantment Spectre Attack And Cast Speed 1,Merciless Labyrinth,Spectres have 8% increased Attack and Cast Speed,Spectre -Enchantment Spectre Elemental Resistances 2,Eternal Labyrinth,+36% to Raised Spectre Elemental Resistances,Spectre Elemental -Enchantment Spectre Elemental Resistances 1,Merciless Labyrinth,+24% to Raised Spectre Elemental Resistances,Spectre Elemental -Enchantment Spellslinger Cooldown Recovery 2,Eternal Labyrinth,Skills Supported by Spellslinger have 30% increased Cooldown Recovery Speed,Spellslinger -Enchantment Spellslinger Cooldown Recovery 1,Merciless Labyrinth,Skills Supported by Spellslinger have 20% increased Cooldown Recovery Speed,Spellslinger -Enchantment Spellslinger Reservation 2,Eternal Labyrinth,Skills Supported by Spellslinger have 15% reduced Mana Reservation,Spellslinger -Enchantment Spellslinger Reservation 1,Merciless Labyrinth,Skills Supported by Spellslinger have 10% reduced Mana Reservation,Spellslinger -Enchantment Spirit Offering Duration 2,Eternal Labyrinth,45% increased Spirit Offering Duration,Spirit Offering -Enchantment Spirit Offering Physical Added As Chaos 2,Eternal Labyrinth,Spirit Offering grants +12% of Physical Damage as Extra Chaos Damage,Spirit Offering -Enchantment Spirit Offering Duration 1,Merciless Labyrinth,30% increased Spirit Offering Duration,Spirit Offering -Enchantment Spirit Offering Physical Added As Chaos 1,Merciless Labyrinth,Spirit Offering grants +8% of Physical Damage as Extra Chaos Damage,Spirit Offering -Enchantment Split Arrow Critical Strike Chance 2,Eternal Labyrinth,90% increased Split Arrow Critical Strike Chance,Split Arrow -Enchantment Split Arrow Damage 2,Eternal Labyrinth,40% increased Split Arrow Damage,Split Arrow -Enchantment Split Arrow Num Of Additional Projectiles 2,Eternal Labyrinth,Split Arrow fires 3 additional Projectiles,Split Arrow -Enchantment Split Arrow Critical Strike Chance 1,Merciless Labyrinth,60% increased Split Arrow Critical Strike Chance,Split Arrow -Enchantment Split Arrow Damage 1,Merciless Labyrinth,25% increased Split Arrow Damage,Split Arrow -Enchantment Split Arrow Num Of Additional Projectiles 1,Merciless Labyrinth,Split Arrow fires 2 additional Projectiles,Split Arrow -Enchantment Static Strike Damage 2,Eternal Labyrinth,40% increased Static Strike Damage,Static Strike -Enchantment Static Strike Duration 2,Eternal Labyrinth,45% increased Static Strike Duration,Static Strike -Enchantment Static Strike Maximum Beam Targets 2,Eternal Labyrinth,Static Strike has +2 maximum Beam Targets,Static Strike -Enchantment Static Strike Area Of Effect 2,Eternal Labyrinth,24% increased Static Strike Area of Effect,Static Strike -Enchantment Static Strike Damage 1,Merciless Labyrinth,25% increased Static Strike Damage,Static Strike -Enchantment Static Strike Duration 1,Merciless Labyrinth,30% increased Static Strike Duration,Static Strike -Enchantment Static Strike Maximum Beam Targets 1,Merciless Labyrinth,Static Strike has +1 maximum Beam Targets,Static Strike -Enchantment Static Strike Area Of Effect 1,Merciless Labyrinth,16% increased Static Strike Area of Effect,Static Strike -Enchantment Steelskin Additional Physical Damage Reduction 2,Eternal Labyrinth,Steelskin grants 12% additional Physical Damage Reduction,Steelskin -Enchantment Steelskin Damage Limit 2,Eternal Labyrinth,Steelskin Buff can take 45% increased amount of Damage,Steelskin -Enchantment Steelskin Additional Physical Damage Reduction 1,Merciless Labyrinth,Steelskin grants 8% additional Physical Damage Reduction,Steelskin -Enchantment Steelskin Damage Limit 1,Merciless Labyrinth,Steelskin Buff can take 30% increased amount of Damage,Steelskin -Enchantment Stone Golem Elemental Resistances 2,Eternal Labyrinth,+36% to Stone Golem Elemental Resistances,Stone Golem -Enchantment Stone Golem Granted Buff Effect 2,Eternal Labyrinth,150% increased Effect of the Buff granted by your Stone Golems,Stone Golem -Enchantment Stone Golem Elemental Resistances 1,Merciless Labyrinth,+24% to Stone Golem Elemental Resistances,Stone Golem -Enchantment Stone Golem Granted Buff Effect 1,Merciless Labyrinth,100% increased Effect of the Buff granted by your Stone Golems,Stone Golem -Enchantment Storm Brand Damage 2,Eternal Labyrinth,Storm Brand deals 40% increased Damage,Storm Brand -Enchantment Storm Brand Damage 1,Merciless Labyrinth,Storm Brand deals 25% increased Damage,Storm Brand -Storm Brand Additional Chain Chance 2,Eternal Labyrinth,Storm Brand has a 18% chance to Chain an additional time,Storm Brand -Storm Brand Attached Target Lightning Penetration 2,Eternal Labyrinth,Storm Brand Damage Penetrates 12% of Branded Enemy's Lightning Resistance,Storm Brand -Storm Brand Additional Chain Chance 1,Merciless Labyrinth,Storm Brand has a 12% chance to Chain an additional time,Storm Brand -Storm Brand Attached Target Lightning Penetration 1,Merciless Labyrinth,Storm Brand Damage Penetrates 8% of Branded Enemy's Lightning Resistance,Storm Brand -Enchantment Storm Burst Additional Object Chance 2,Eternal Labyrinth,Storm Burst has a 15% chance to create an additional Orb,Storm Burst -Enchantment Storm Burst Damage 2,Eternal Labyrinth,40% increased Storm Burst Damage,Storm Burst -Enchantment Storm Burst Area Of Effect 2,Eternal Labyrinth,24% increased Storm Burst Area of Effect,Storm Burst -Enchantment Storm Burst Additional Object Chance 1,Merciless Labyrinth,Storm Burst has a 10% chance to create an additional Orb,Storm Burst -Enchantment Storm Burst Damage 1,Merciless Labyrinth,25% increased Storm Burst Damage,Storm Burst -Enchantment Storm Burst Area Of Effect 1,Merciless Labyrinth,16% increased Storm Burst Area of Effect,Storm Burst -Enchantment Storm Call Damage 2,Eternal Labyrinth,40% increased Storm Call Damage,Storm Call -Enchantment Storm Call Duration 2,Eternal Labyrinth,30% reduced Storm Call Duration,Storm Call -Enchantment Storm Call Area Of Effect 2,Eternal Labyrinth,24% increased Storm Call Area of Effect,Storm Call -Enchantment Storm Call Damage 1,Merciless Labyrinth,25% increased Storm Call Damage,Storm Call -Enchantment Storm Call Duration 1,Merciless Labyrinth,20% reduced Storm Call Duration,Storm Call -Enchantment Storm Call Area Of Effect 1,Merciless Labyrinth,16% increased Storm Call Area of Effect,Storm Call -Enchantment Stormbind Area of Effect 2,Eternal Labyrinth,Stormbind has 24% increased Area of Effect,Stormbind -Enchantment Stormbind Damage 2,Eternal Labyrinth,Stormbind deals 40% increased Damage,Stormbind -Enchantment Stormbind Area of Effect 1,Merciless Labyrinth,Stormbind has 16% increased Area of Effect,Stormbind -Enchantment Stormbind Damage 1,Merciless Labyrinth,Stormbind deals 25% increased Damage,Stormbind -Enchantment Stormblast Mine Aura Effect 2,Eternal Labyrinth,Stormblast Mine has 40% increased Aura Effect,Stormblast Mine -Enchantment Stormblast Mine Damage 2,Eternal Labyrinth,Stormblast Mine deals 40% increased Damage,Stormblast Mine -Enchantment Stormblast Mine Throwing Speed 2,Eternal Labyrinth,Stormblast Mine has 15% increased Throwing Speed,Stormblast Mine -Enchantment Stormblast Mine Aura Effect 1,Merciless Labyrinth,Stormblast Mine has 20% increased Aura Effect,Stormblast Mine -Enchantment Stormblast Mine Damage 1,Merciless Labyrinth,Stormblast Mine deals 25% increased Damage,Stormblast Mine -Enchantment Stormblast Mine Throwing Speed 1,Merciless Labyrinth,Stormblast Mine has 10% increased Throwing Speed,Stormblast Mine -Enchantment Summon Carrion Golem Damage 2,Eternal Labyrinth,Summoned Carrion Golems deal 40% increased Damage,Summon Carrion Golem -Enchantment Summon Carrion Golem Elemental Resistances 2,Eternal Labyrinth,Summoned Carrion Golems have +36% to all Elemental Resistances,Summon Carrion Golem -Enchantment Summon Carrion Golem Granted Buff Effect 2,Eternal Labyrinth,150% increased Effect of the Buff granted by your Carrion Golems,Summon Carrion Golem -Enchantment Summon Carrion Golem Damage 1,Merciless Labyrinth,Summoned Carrion Golems deal 25% increased Damage,Summon Carrion Golem -Enchantment Summon Carrion Golem Elemental Resistances 1,Merciless Labyrinth,Summoned Carrion Golems have +24% to all Elemental Resistances,Summon Carrion Golem -Enchantment Summon Carrion Golem Granted Buff Effect 1,Merciless Labyrinth,100% increased Effect of the Buff granted by your Carrion Golems,Summon Carrion Golem -Enchantment Summon Flame Golem Damage 2,Eternal Labyrinth,Flame Golems have 40% increased Damage,Summon Flame Golem -Enchantment Summon Flame Golem Damage 1,Merciless Labyrinth,Flame Golems have 25% increased Damage,Summon Flame Golem -Enchantment Summon Ice Golem Damage 2,Eternal Labyrinth,Ice Golems deal 40% increased Damage,Summon Ice Golem -Enchantment Summon Ice Golem Damage 1,Merciless Labyrinth,Ice Golems deal 25% increased Damage,Summon Ice Golem -Enchantment Summon Lightning Golem Damage 2,Eternal Labyrinth,Lightning Golems deal 40% increased Damage,Summon Lightning Golem -Enchantment Summon Lightning Golem Damage 1,Merciless Labyrinth,Lightning Golems deal 25% increased Damage,Summon Lightning Golem -Enchantment Summon Raging Spirit Damage 2,Eternal Labyrinth,Summoned Raging Spirits deal 40% increased Damage,Summon Raging Spirit -Enchantment Summon Raging Spirit Damage 1,Merciless Labyrinth,Summoned Raging Spirits deal 25% increased Damage,Summon Raging Spirit -Enchantment Summon Skeletons Damage 2,Eternal Labyrinth,Skeletons deal 40% increased Damage,Summon Skeletons -Enchantment Summon Skeletons Additional Warrior Skeletons 2,Eternal Labyrinth,40% chance to Summon an additional Skeleton Warrior with Summon Skeleton,Summon Skeletons -Enchantment Summon Skeletons Damage 1,Merciless Labyrinth,Skeletons deal 25% increased Damage,Summon Skeletons -Enchantment Summon Skeletons Additional Warrior Skeletons 1,Merciless Labyrinth,20% chance to Summon an additional Skeleton Warrior with Summon Skeleton,Summon Skeletons -Enchantment Summon Skitterbots Area Of Effect 2,Eternal Labyrinth,Summoned Skitterbots have 90% increased Area of Effect,Summon Skitterbots -Enchantment Summon Skitterbots Mana Reservation 2,Eternal Labyrinth,Summon Skitterbots has 20% reduced Mana Reservation,Summon Skitterbots -Enchantment Summon Skitterbots Area Of Effect 1,Merciless Labyrinth,Summoned Skitterbots have 60% increased Area of Effect,Summon Skitterbots -Enchantment Summon Skitterbots Mana Reservation 1,Merciless Labyrinth,Summon Skitterbots has 14% reduced Mana Reservation,Summon Skitterbots -Enchantment Summon Stone Golem Damage 2,Eternal Labyrinth,Stone Golems deal 40% increased Damage,Summon Stone Golem -Enchantment Summon Stone Golem Damage 1,Merciless Labyrinth,Stone Golems deal 25% increased Damage,Summon Stone Golem -Enchantment Summoned Raging Spirit Additional 2,Eternal Labyrinth,Summon Raging Spirit has 18% chance to summon an extra Minion,Summoned Raging Spirit -Enchantment Summoned Raging Spirit Duration 2,Eternal Labyrinth,Summon Raging Spirit has 30% increased Duration,Summoned Raging Spirit -Enchantment Summoned Raging Spirit Additional 1,Merciless Labyrinth,Summon Raging Spirit has 12% chance to summon an extra Minion,Summoned Raging Spirit -Enchantment Summoned Raging Spirit Duration 1,Merciless Labyrinth,Summon Raging Spirit has 20% increased Duration,Summoned Raging Spirit -Enchantment Sumon Chaos Golem Damage 2,Eternal Labyrinth,Chaos Golems deal 40% increased Damage,Sumon Chaos Golem -Enchantment Sumon Chaos Golem Damage 1,Merciless Labyrinth,Chaos Golems deal 25% increased Damage,Sumon Chaos Golem -Enchantment Sunder Damage 2,Eternal Labyrinth,Sunder has 40% increased Damage,Sunder -Enchantment Sunder Damage 1,Merciless Labyrinth,Sunder has 25% increased Damage,Sunder -Enchantment Sunder Radius 2,Eternal Labyrinth,Sunder has 24% increased Area of Effect,Sunder -Enchantment Sunder Radius 1,Merciless Labyrinth,Sunder has 16% increased Area of Effect,Sunder -Enchantment Sunder Wave Speed 2,Eternal Labyrinth,Sunder has 20% reduced delay between Areas in the Wave,Sunder -Enchantment Sunder Wave Speed 1,Merciless Labyrinth,Sunder has 15% reduced delay between Areas in the Wave,Sunder -Enchantment Sweep Damage 2,Eternal Labyrinth,40% increased Sweep Damage,Sweep -Enchantment Sweep Area Of Effect 2,Eternal Labyrinth,24% increased Sweep Area of Effect,Sweep -Enchantment Sweep Damage 1,Merciless Labyrinth,25% increased Sweep Damage,Sweep -Enchantment Sweep Area Of Effect 1,Merciless Labyrinth,16% increased Sweep Area of Effect,Sweep -Enchantment Sweep Endurance Charge on Hit Chance 2,Eternal Labyrinth,Sweep has a 30% chance to grant an Endurance Charge on Hit,Sweep Endurance -Enchantment Sweep Endurance Charge on Hit Chance 1,Merciless Labyrinth,Sweep has a 20% chance to grant an Endurance Charge on Hit,Sweep Endurance -Enchantment Tectonic Slam Area Of Effect 2,Eternal Labyrinth,Tectonic Slam has 24% increased Area of Effect,Tectonic Slam -Enchantment Tectonic Slam Chance For Side Crack 2,Eternal Labyrinth,Tectonic Slam has +20% fissure branching chance,Tectonic Slam -Enchantment Tectonic Slam Damage 2,Eternal Labyrinth,Tectonic Slam deals 40% increased Damage,Tectonic Slam -Enchantment Tectonic Slam Area Of Effect 1,Merciless Labyrinth,Tectonic Slam has 16% increased Area of Effect,Tectonic Slam -Enchantment Tectonic Slam Chance For Side Crack 1,Merciless Labyrinth,Tectonic Slam has +12% fissure branching chance,Tectonic Slam -Enchantment Tectonic Slam Damage 1,Merciless Labyrinth,Tectonic Slam deals 25% increased Damage,Tectonic Slam -Enchantment Tempest Shield Damage 2,Eternal Labyrinth,40% increased Tempest Shield Damage,Tempest Shield -Enchantment Tempest Shield Num Of Additional Projectiles In Chain 2,Eternal Labyrinth,Tempest Shield chains an additional 3 times,Tempest Shield -Enchantment Tempest Shield Damage 1,Merciless Labyrinth,25% increased Tempest Shield Damage,Tempest Shield -Enchantment Tempest Shield Num Of Additional Projectiles In Chain 1,Merciless Labyrinth,Tempest Shield chains an additional 2 times,Tempest Shield -Enchantment Temporal Chains Duration 2,Eternal Labyrinth,45% increased Temporal Chains Duration,Temporal Chains -Enchantment Temporal Chains Duration 1,Merciless Labyrinth,30% increased Temporal Chains Duration,Temporal Chains -Enchantment Temporal Chains Curse Effect 2,Eternal Labyrinth,30% increased Temporal Chains Curse Effect,Temporal Chains -Enchantment Temporal Chains Curse Effect 1,Merciless Labyrinth,20% increased Temporal Chains Curse Effect,Temporal Chains -Enchantment Tornado Shot Critical Strike Chance 2,Eternal Labyrinth,90% increased Tornado Shot Critical Strike Chance,Tornado Shot -Enchantment Tornado Shot Damage 2,Eternal Labyrinth,40% increased Tornado Shot Damage,Tornado Shot -Enchantment Tornado Shot Critical Strike Chance 1,Merciless Labyrinth,60% increased Tornado Shot Critical Strike Chance,Tornado Shot -Enchantment Tornado Shot Damage 1,Merciless Labyrinth,25% increased Tornado Shot Damage,Tornado Shot -Enchantment Tornado Shot Num Of Secondary Projectiles 2,Eternal Labyrinth,Tornado Shot fires an additional secondary Projectile,Tornado Shot -Enchantment Toxic Rain Damage 2,Eternal Labyrinth,Toxic Rain deals 40% increased Damage,Toxic Rain -Enchantment Toxic Rain Physical Added As Chaos 2,Eternal Labyrinth,Toxic Rain gains 10% of Physical Damage as Extra Chaos Damage,Toxic Rain -Enchantment Toxic Rain Damage 1,Merciless Labyrinth,Toxic Rain deals 25% increased Damage,Toxic Rain -Enchantment Toxic Rain Physical Added As Chaos 1,Merciless Labyrinth,Toxic Rain gains 6% of Physical Damage as Extra Chaos Damage,Toxic Rain -Enchantment Toxic Rain Num Of Additional Projectiles 1,Eternal Labyrinth,Toxic Rain fires 1 additional Arrow,Toxic Rain -Enchantment Unearth Damage 2,Eternal Labyrinth,40% increased Unearth Damage,Unearth -Enchantment Unearth Damage 1,Merciless Labyrinth,25% increased Unearth Damage,Unearth -Enchantment Unearth Cast Speed 2,Eternal Labyrinth,12% increased Unearth Cast Speed,Unearth -Enchantment Unearth Cast Speed 1,Merciless Labyrinth,8% increased Unearth Cast Speed,Unearth -Enchantment Unearth Corpse Level 2,Eternal Labyrinth,Unearth Spawns corpses with +5 Level,Unearth -Enchantment Unearth Corpse Level 1,Merciless Labyrinth,Unearth Spawns corpses with +3 Level,Unearth -Enchantment Vengeance Cooldown Speed 2,Eternal Labyrinth,30% increased Vengeance Cooldown Recovery Speed,Vengeance -Enchantment Vengeance Damage 2,Eternal Labyrinth,40% increased Vengeance Damage,Vengeance -Enchantment Vengeance Cooldown Speed 1,Merciless Labyrinth,20% increased Vengeance Cooldown Recovery Speed,Vengeance -Enchantment Vengeance Damage 1,Merciless Labyrinth,25% increased Vengeance Damage,Vengeance -Enchantment Venom Gyre Damage 2,Eternal Labyrinth,Venom Gyre deals 40% increased Damage,Venom Gyre -Enchantment Venom Gyre Withering On Hit Chance 2,Eternal Labyrinth,Venom Gyre has a 20% chance to inflict Withered for 2 seconds on Hit,Venom Gyre -Enchantment Venom Gyre Damage 1,Merciless Labyrinth,Venom Gyre deals 25% increased Damage,Venom Gyre -Enchantment Venom Gyre Withering On Hit Chance 1,Merciless Labyrinth,Venom Gyre has a 12% chance to inflict Withered for 2 seconds on Hit,Venom Gyre -Enchantment Venom Gyre Chance To Retain Projectile On Release 2,Eternal Labyrinth,Venom Gyre has a 35% chance to keep caught Projectiles fired by using Whirling Blades,Venom Gyre -Enchantment Vigilant Strike Damage 2,Eternal Labyrinth,40% increased Vigilant Strike Damage,Vigilant Strike -Enchantment Vigilant Strike Damage 1,Merciless Labyrinth,25% increased Vigilant Strike Damage,Vigilant Strike -Enchantment Vigilant Strike Fortify Duration 2,Eternal Labyrinth,45% increased Vigilant Strike Fortify Duration,Vigilant Strike -Enchantment Vigilant Strike Fortify Duration 1,Merciless Labyrinth,30% increased Vigilant Strike Fortify Duration,Vigilant Strike -Enchantment Viper Strike Critical Strike Chance 2,Eternal Labyrinth,90% increased Viper Strike Critical Strike Chance,Viper Strike -Enchantment Viper Strike Damage 2,Eternal Labyrinth,40% increased Viper Strike Damage,Viper Strike -Enchantment Viper Strike Poison Duration 2,Eternal Labyrinth,30% increased Viper Strike Duration,Viper Strike -Enchantment Viper Strike Critical Strike Chance 1,Merciless Labyrinth,60% increased Viper Strike Critical Strike Chance,Viper Strike -Enchantment Viper Strike Damage 1,Merciless Labyrinth,25% increased Viper Strike Damage,Viper Strike -Enchantment Viper Strike Poison Duration 1,Merciless Labyrinth,20% increased Viper Strike Duration,Viper Strike -Enchantment Vitality Mana Reservation 2,Eternal Labyrinth,Vitality has 20% reduced Mana Reservation,Vitality -Enchantment Vitality Mana Reservation 1,Merciless Labyrinth,Vitality has 14% reduced Mana Reservation,Vitality -Enchantment Volatile Dead Cast Speed 2,Eternal Labyrinth,12% increased Volatile Dead Cast Speed,Volatile Dead -Enchantment Volatile Dead Damage 2,Eternal Labyrinth,40% increased Volatile Dead Damage,Volatile Dead -Enchantment Volatile Dead Cast Speed 1,Merciless Labyrinth,8% increased Volatile Dead Cast Speed,Volatile Dead -Enchantment Volatile Dead Damage 1,Merciless Labyrinth,25% increased Volatile Dead Damage,Volatile Dead -Enchantment Volatile Dead Orbs 3,Eternal Labyrinth,Volatile Dead Consumes up to 1 additional corpse,Volatile Dead -Enchantment Vortex AoE On Frostbolt 2,Eternal Labyrinth,Vortex has 45% increased Area of Effect when Cast on Frostbolt,Vortex -Enchantment Vortex Cooldown Recovery 2,Eternal Labyrinth,Vortex has 30% increased Cooldown Recovery Speed,Vortex -Enchantment Vortex Damage 2,Eternal Labyrinth,40% increased Vortex Damage,Vortex -Enchantment Vortex AoE On Frostbolt 1,Merciless Labyrinth,Vortex has 30% increased Area of Effect when Cast on Frostbolt,Vortex -Enchantment Vortex Cooldown Recovery 1,Merciless Labyrinth,Vortex has 20% increased Cooldown Recovery Speed,Vortex -Enchantment Vortex Damage 1,Merciless Labyrinth,25% increased Vortex Damage,Vortex -Enchantment Vortex Duration 2,Eternal Labyrinth,30% increased Vortex Duration,Vortex -Enchantment Vortex Duration 1,Merciless Labyrinth,20% increased Vortex Duration,Vortex -Enchantment Vulnerability Curse Effect 2,Eternal Labyrinth,30% increased Vulnerability Curse Effect,Vulnerability -Enchantment Vulnerability Curse Effect 1,Merciless Labyrinth,20% increased Vulnerability Curse Effect,Vulnerability -Enchantment Vulnerability Duration 2,Eternal Labyrinth,45% increased Vulnerability Duration,Vulnerability -Enchantment Vulnerability Duration 1,Merciless Labyrinth,30% increased Vulnerability Duration,Vulnerability -Enchantment War Banner Effect 2,Eternal Labyrinth,War Banner has 40% increased Aura Effect,War Banner -Enchantment War Banner Effect 1,Merciless Labyrinth,War Banner has 25% increased Aura Effect,War Banner -Enchantment Warlords Mark Duration 2,Eternal Labyrinth,45% increased Warlord's Mark Duration,Warlords Mark -Enchantment Warlords Mark Duration 1,Merciless Labyrinth,30% increased Warlord's Mark Duration,Warlords Mark -Enchantment Warlords Mark Curse Effect 2,Eternal Labyrinth,30% increased Warlord's Mark Curse Effect,Warlords Mark -Enchantment Warlords Mark Curse Effect 1,Merciless Labyrinth,20% increased Warlord's Mark Curse Effect,Warlords Mark -Enchantment Wave Of Conviction Additional Enemy Resistance 2,Eternal Labyrinth,Wave of Conviction's Exposure applies -6% Elemental Resistance,Wave Of Conviction -Enchantment Wave Of Conviction Damage 2,Eternal Labyrinth,Wave of Conviction deals 40% increased Damage,Wave Of Conviction -Enchantment Wave Of Conviction Duration 2,Eternal Labyrinth,Wave of Conviction has 30% increased Duration,Wave Of Conviction -Enchantment Wave Of Conviction Additional Enemy Resistance 1,Merciless Labyrinth,Wave of Conviction's Exposure applies -4% Elemental Resistance,Wave Of Conviction -Enchantment Wave Of Conviction Damage 1,Merciless Labyrinth,Wave of Conviction deals 25% increased Damage,Wave Of Conviction -Enchantment Wave Of Conviction Duration 1,Merciless Labyrinth,Wave of Conviction has 20% increased Duration,Wave Of Conviction -Enchantment Whirling Blades Attack Speed 2,Eternal Labyrinth,15% increased Whirling Blades Attack Speed,Whirling Blades -Enchantment Whirling Blades Damage 2,Eternal Labyrinth,40% increased Whirling Blades Damage,Whirling Blades -Enchantment Whirling Blades Attack Speed 1,Merciless Labyrinth,10% increased Whirling Blades Attack Speed,Whirling Blades -Enchantment Whirling Blades Damage 1,Merciless Labyrinth,25% increased Whirling Blades Damage,Whirling Blades -Enchantment Wild Strike Damage 2,Eternal Labyrinth,40% increased Wild Strike Damage,Wild Strike -Enchantment Wild Strike Num Of Additional Projectiles In Chain 2,Eternal Labyrinth,Wild Strike's Beam Chains an additional 6 times,Wild Strike -Enchantment Wild Strike Area Of Effect 2,Eternal Labyrinth,36% increased Wild Strike Area of Effect,Wild Strike -Enchantment Wild Strike Damage 1,Merciless Labyrinth,25% increased Wild Strike Damage,Wild Strike -Enchantment Wild Strike Num Of Additional Projectiles In Chain 1,Merciless Labyrinth,Wild Strike's Beam Chains an additional 4 times,Wild Strike -Enchantment Wild Strike Area Of Effect 1,Merciless Labyrinth,24% increased Wild Strike Area of Effect,Wild Strike -Enchantment Winter Brand Chill Efffect 2,Eternal Labyrinth,Wintertide Brand has 40% increased Chill Effect,Winter Brand -Enchantment Winter Brand Damage 2,Eternal Labyrinth,Wintertide Brand deals 40% increased Damage,Winter Brand -Enchantment Winter Brand Stages 2,Eternal Labyrinth,Wintertide Brand has +4 to maximum Stages,Winter Brand -Enchantment Winter Brand Chill Efffect 1,Merciless Labyrinth,Wintertide Brand has 25% increased Chill Effect,Winter Brand -Enchantment Winter Brand Damage 1,Merciless Labyrinth,Wintertide Brand deals 25% increased Damage,Winter Brand -Enchantment Winter Brand Stages 1,Merciless Labyrinth,Wintertide Brand has +2 to maximum Stages,Winter Brand -Enchantment Winter Orb Damage 2,Eternal Labyrinth,Winter Orb deals 40% increased Damage,Winter Orb -Enchantment Winter Orb Damage 1,Merciless Labyrinth,Winter Orb deals 25% increased Damage,Winter Orb -Enchantment Wither Area Of Effect 2,Eternal Labyrinth,Wither has 24% increased Area of Effect,Wither -Enchantment Wither Area Of Effect 1,Merciless Labyrinth,Wither has 16% increased Area of Effect,Wither -Enchantment Wither Duration 2,Eternal Labyrinth,Wither has 36% increased Duration,Wither -Enchantment Wither Duration 1,Merciless Labyrinth,Wither has 24% increased Duration,Wither -Enchantment Withering Step Elusive Effect 2,Eternal Labyrinth,Withering Step has 30% increased Elusive Effect,Withering Step -Enchantment Withering Step Elusive Effect 1,Merciless Labyrinth,Withering Step has 20% increased Elusive Effect,Withering Step -Enchantment Withering Step Wither Stacks 2,Eternal Labyrinth,Withering Step inflicts 3 additional Withered Debuffs,Withering Step -Enchantment Withering Step Wither Stacks1,Merciless Labyrinth,Withering Step inflicts 2 additional Withered Debuffs,Withering Step -Enchantment Wrath Mana Reservation 2,Eternal Labyrinth,Wrath has 15% reduced Mana Reservation,Wrath -Enchantment Wrath Mana Reservation 1,Merciless Labyrinth,Wrath has 10% reduced Mana Reservation,Wrath -Enchantment Zealotry Mana Reservation 2,Eternal Labyrinth,Zealotry has 15% reduced Mana Reservation,Zealotry -Enchantment Zealotry Mana Reservation 1,Merciless Labyrinth,Zealotry has 10% reduced Mana Reservation,Zealotry -Enchantment Zombie Attack Speed 2,Eternal Labyrinth,Raised Zombies have 15% increased Attack Speed,Raise Zombies -Enchantment Zombie Attack Speed 1,Merciless Labyrinth,Raised Zombies have 10% increased Attack Speed,Raise Zombies -Enchantment Zombie Elemental Resistances 2,Eternal Labyrinth,Raised Zombies have +36% to Elemental Resistances,Raise Zombies -Enchantment Zombie Elemental Resistances 1,Merciless Labyrinth,Raised Zombies have +24% to Elemental Resistances,Raise Zombies -Enchantment Pyroclast Mine Additional Projectiles 2,Eternal Labyrinth,Pyroclast Mine fires 2 additional Projectiles,Pyroclast Mine +Item,Name,Source,Description,Gem +Helmet,Enchantment Flame Wall Count 1,Eternal Labyrinth,,Flame Wall +Helmet,Enchantment Frost Shield Health per Stage 1,Merciless Labyrinth,,Frost Shield +Helmet,Enchantment Frost Shield Health per Stage 2,Eternal Labyrinth,,Frost Shield +Helmet,Enchantment Bladestorm Maximum Number Of Storms Allowed 1,Eternal Labyrinth,=+1 to maximum number of Bladestorms,Bladestorm +Helmet,Enchantment Herald Of Purity Additional Minion 1,Eternal Labyrinth,=+1 to maximum number of Sentinels of Purity,Herald Of Purity +Helmet,Enchantment Ancestral Protector Resistances 1,Merciless Labyrinth,=+24% to Ancestral Protector Totem Elemental Resistances,Ancestral Protector +Helmet,Enchantment Animate Guardian Elemental Resistances 1,Merciless Labyrinth,=+24% to Animated Guardian Elemental Resistances,Animate Guardian +Helmet,Enchantment Chaos Golem Elemental Resistances 1,Merciless Labyrinth,=+24% to Chaos Golem Elemental Resistances,Chaos Golem +Helmet,Enchantment Ice Golem Elemental Resistances 1,Merciless Labyrinth,=+24% to Ice Golem Elemental Resistances,Ice Golem +Helmet,Enchantment Flame Golem Elemental Resistances 1,Merciless Labyrinth,=+24% to increased Flame Golem Elemental Resistances,Flame Golem +Helmet,Enchantment Lightning Golem Elemental Resistances 1,Merciless Labyrinth,=+24% to Lightning Golem Elemental Resistances,Lightning Golem +Helmet,Enchantment Spectre Elemental Resistances 1,Merciless Labyrinth,=+24% to Raised Spectre Elemental Resistances,Spectre +Helmet,Enchantment Stone Golem Elemental Resistances 1,Merciless Labyrinth,=+24% to Stone Golem Elemental Resistances,Stone Golem +Belt,EnchantmentFortify_,Eternal Labyrinth of Potential,=+300 to Armour while you have Fortify, +Belt,EnchantmentPhasing__,Eternal Labyrinth of Potential,=+300 to Evasion Rating while you have Phasing, +Helmet,Enchantment Ancestral Protector Resistances 2,Eternal Labyrinth,=+36% to Ancestral Protector Totem Elemental Resistances,Ancestral Protector +Helmet,Enchantment Animate Guardian Elemental Resistances 2,Eternal Labyrinth,=+36% to Animated Guardian Elemental Resistances,Animate Guardian +Helmet,Enchantment Chaos Golem Elemental Resistances 2,Eternal Labyrinth,=+36% to Chaos Golem Elemental Resistances,Chaos Golem +Helmet,Enchantment Ice Golem Elemental Resistances 2,Eternal Labyrinth,=+36% to Ice Golem Elemental Resistances,Ice Golem +Helmet,Enchantment Flame Golem Elemental Resistances 2,Eternal Labyrinth,=+36% to increased Flame Golem Elemental Resistances,Flame Golem +Helmet,Enchantment Lightning Golem Elemental Resistances 2,Eternal Labyrinth,=+36% to Lightning Golem Elemental Resistances,Lightning Golem +Helmet,Enchantment Spectre Elemental Resistances 2,Eternal Labyrinth,=+36% to Raised Spectre Elemental Resistances,Spectre +Helmet,Enchantment Stone Golem Elemental Resistances 2,Eternal Labyrinth,=+36% to Stone Golem Elemental Resistances,Stone Golem +Boots,Enchantment Leech 1,Cruel Labyrinth,0.4% of Damage Leeched as Life if you've Killed Recently, +Boots,Enchantment Leech 2,Merciless Labyrinth,0.5% of Damage Leeched as Life if you've Killed Recently, +Boots,Enchantment Leech 3,Eternal Labyrinth,0.6% of Damage Leeched as Life if you've Killed Recently, +Boots,Enchantment Attack Dodge 3,Eternal Labyrinth,10% Chance to Dodge Attack Hits if you've taken a Critical Strike Recently, +Boots,Enchantment Status Ailments 3,Eternal Labyrinth,"10% chance to Freeze, Shock and Ignite if you haven't Crit Recently", +Helmet,Enchantment Ice Spear Percent Chance To Gain Power Charge On Critical Strike 1,Merciless Labyrinth,10% Chance to gain a Power Charge on Critical Strike with Ice Spear,Ice Spear +Helmet,Enchantment Barrage Attack Speed 1,Merciless Labyrinth,10% increased Barrage Attack Speed,Barrage +Helmet,Enchantment Cleave Attack Speed 1,Merciless Labyrinth,10% increased Cleave Attack Speed,Cleave +Helmet,Enchantment Cyclone Attack Speed 1,Merciless Labyrinth,10% increased Cyclone Attack Speed,Cyclone +Helmet,Enchantment Double Strike Attack Speed 1,Merciless Labyrinth,10% increased Double Strike Attack Speed,Double Strike +Helmet,Enchantment Dual Strike Attack Speed 1,Merciless Labyrinth,10% increased Dual Strike Attack Speed,Dual Strike +Helmet,Enchantment Bane Linked Curse Effect 1,Merciless Labyrinth,10% increased Effect of Curses applied by Bane,Bane +Helmet,Enchantment Elemental Hit Attack Speed 1,Merciless Labyrinth,10% increased Elemental Hit Attack Speed,Elemental Hit +Helmet,Enchantment Frost Bolt Cast Speed 1,Merciless Labyrinth,10% increased Frostbolt Cast Speed,Frost Bolt +Helmet,Enchantment Heavy Strike Attack Speed 1,Merciless Labyrinth,10% increased Heavy Strike Attack Speed,Heavy Strike +Helmet,Enchantment Incinerate Damage Per Stage 3,Eternal Labyrinth,10% increased Incinerate Damage for each stage,Incinerate +Helmet,Enchantment Leap Slam Attack Speed 1,Merciless Labyrinth,10% increased Leap Slam Attack Speed,Leap Slam +Boots,Enchantment Movement Speed 3,Eternal Labyrinth,10% increased Movement Speed if you haven't been Hit Recently, +Helmet,Enchantment Power Siphon Attack Speed 1,Merciless Labyrinth,10% increased Power Siphon Attack Speed,Power Siphon +Helmet,Enchantment Rain Of Arrows Attack Speed 1,Merciless Labyrinth,10% increased Rain of Arrows Attack Speed,Rain of Arrows +Helmet,Enchantment Rallying Cry Buff Effect 1,Merciless Labyrinth,10% increased Rallying Cry Buff Effect,Rallying Cry +Helmet,Enchantment Fire Beam Length 1,Merciless Labyrinth,10% increased Scorching Ray beam length,Scorching Ray +Helmet,Enchantment Shield Charge Attack Speed 1,Merciless Labyrinth,10% increased Shield Charge Attack Speed,Shield Charge +Helmet,Enchantment Shockwave Totem Cast Speed 1,Merciless Labyrinth,10% increased Shockwave Totem Cast Speed,Shockwave Totem +Helmet,Enchantment Whirling Blades Attack Speed 1,Merciless Labyrinth,10% increased Whirling Blades Attack Speed,Whirling Blades +Helmet,Enchantment Burning Arrow Physical Damage Percent To Add As Fire Damage 1,Merciless Labyrinth,10% of Burning Arrow Physical Damage gained as Extra Fire Damage,Burning Arrow +Helmet,Enchantment Shrapnel Shot Physical Damage Percent To Add As Lightning Damage 1,Merciless Labyrinth,10% of Galvanic Arrow Physical Damage gained as extra Lightning Damage,Shrapnel Shot +Helmet,Enchantment Glacial Hammer Physical Damage Percent To Add As Cold Damage 1,Merciless Labyrinth,10% of Glacial Hammer Physical Damage gained as Extra Cold Damage,Glacial Hammer +Helmet,Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 1,Merciless Labyrinth,10% of Ice Crash Physical Damage gained as Extra Cold Damage,Ice Crash +Helmet,Enchantment Infernal Blow Physical Damage Percent To Add As Fire Damage 1,Merciless Labyrinth,10% of Infernal Blow Physical Damage gained as Extra Fire Damage,Infernal Blow +Boots,Enchantment Mana Cost 1,Cruel Labyrinth,10% reduced Mana Cost of Skills if you've been Hit Recently, +Helmet,Enchantment Summon Carrion Golem Granted Buff Effect 1,Merciless Labyrinth,100% increased Effect of the Buff granted by your Carrion Golems,Summon Carrion Golem +Helmet,Enchantment Chaos Golem Percent Additional Physical Damage Reduction 2,Eternal Labyrinth,100% increased Effect of the Buff granted by your Chaos Golems,Chaos Golem +Helmet,Enchantment Flame Golem Granted Buff Effect 1,Merciless Labyrinth,100% increased Effect of the Buff granted by your Flame Golems,Flame Golem +Helmet,Enchantment Ice Golem Grants Percent Additional Critical Strike Chance And Accuracy 1,Merciless Labyrinth,100% increased Effect of the Buff granted by your Ice Golems,Ice Golem +Helmet,Enchantment Lightning Golem Granted Buff Effect 1,Merciless Labyrinth,100% increased Effect of the Buff granted by your Lightning Golems,Lightning Golem +Helmet,Enchantment Stone Golem Granted Buff Effect 1,Merciless Labyrinth,100% increased Effect of the Buff granted by your Stone Golems,Stone Golem +Helmet,Enchantment Molten Shell Armour 1,Merciless Labyrinth,100% increased Molten Shell Buff Effect,Molten Shell +Helmet,Enchantment Ancestral Protector Placement Speed 1,Merciless Labyrinth,12% increased Ancestral Protector Totem Placement Speed,Ancestral Protector +Boots,Enchantment Attack and Cast Speed 2,Merciless Labyrinth,12% increased Attack and Cast Speed if you've Killed Recently, +Helmet,Enchantment Body Swap Cast Speed 2,Eternal Labyrinth,12% increased Bodyswap Cast Speed,Body Swap +Helmet,Enchantment Cremation Cast Speed 2,Eternal Labyrinth,12% increased Cremation Cast Speed,Cremation +Helmet,Enchantment Dack Pact Cast Speed 2,Eternal Labyrinth,12% increased Dark Pact Cast Speed,Dack Pact +Helmet,Enchantment Fireball Cast Speed 2,Eternal Labyrinth,12% increased Fireball Cast Speed,Fireball +Helmet,Enchantment Freezing Pulse Cast Speed 2,Eternal Labyrinth,12% increased Freezing Pulse Cast Speed,Freezing Pulse +Helmet,Enchantment Lightning Warp Cast Speed 2,Eternal Labyrinth,12% increased Lightning Warp Cast Speed,Lightning Warp +Helmet,Enchantment Fire Beam Cast Speed 2,Eternal Labyrinth,12% increased Scorching Ray Cast Speed,Scorching Ray +Helmet,Enchantment Unearth Cast Speed 2,Eternal Labyrinth,12% increased Unearth Cast Speed,Unearth +Helmet,Enchantment Volatile Dead Cast Speed 2,Eternal Labyrinth,12% increased Volatile Dead Cast Speed,Volatile Dead +Boots,Enchantment Critical Strike Chance 3,Eternal Labyrinth,120% increased Critical Strike Chance if you haven't Crit Recently, +Boots,Enchantment Mana Cost 2,Merciless Labyrinth,14% reduced Mana Cost of Skills if you've been Hit Recently, +Helmet,Enchantment Ice Spear Percent Chance To Gain Power Charge On Critical Strike 2,Eternal Labyrinth,15% Chance to gain a Power Charge on Critical Strike with Ice Spear,Ice Spear +Belt,EnchantmentArcaneSurge,Eternal Labyrinth of Potential,15% increased Area of Effect while you have Arcane Surge, +Helmet,Enchantment Barrage Attack Speed 2,Eternal Labyrinth,15% increased Barrage Attack Speed,Barrage +Helmet,Enchantment Cleave Attack Speed 2,Eternal Labyrinth,15% increased Cleave Attack Speed,Cleave +Helmet,Enchantment Cyclone Attack Speed 2,Eternal Labyrinth,15% increased Cyclone Attack Speed,Cyclone +Helmet,Enchantment Double Strike Attack Speed 2,Eternal Labyrinth,15% increased Double Strike Attack Speed,Double Strike +Helmet,Enchantment Dual Strike Attack Speed 2,Eternal Labyrinth,15% increased Dual Strike Attack Speed,Dual Strike +Helmet,Enchantment Bane Linked Curse Effect 2,Eternal Labyrinth,15% increased Effect of Curses applied by Bane,Bane +Helmet,Enchantment Elemental Hit Attack Speed 2,Eternal Labyrinth,15% increased Elemental Hit Attack Speed,Elemental Hit +Helmet,Enchantment Frost Bolt Cast Speed 2,Eternal Labyrinth,15% increased Frostbolt Cast Speed,Frost Bolt +Helmet,Enchantment Heavy Strike Attack Speed 2,Eternal Labyrinth,15% increased Heavy Strike Attack Speed,Heavy Strike +Helmet,Enchantment Leap Slam Attack Speed 2,Eternal Labyrinth,15% increased Leap Slam Attack Speed,Leap Slam +Helmet,Enchantment Power Siphon Attack Speed 2,Eternal Labyrinth,15% increased Power Siphon Attack Speed,Power Siphon +Helmet,Enchantment Rain Of Arrows Attack Speed 2,Eternal Labyrinth,15% increased Rain of Arrows Attack Speed,Rain of Arrows +Helmet,Enchantment Rallying Cry Buff Effect 2,Eternal Labyrinth,15% increased Rallying Cry Buff Effect,Rallying Cry +Helmet,Enchantment Fire Beam Length 2,Eternal Labyrinth,15% increased Scorching Ray beam length,Scorching Ray +Helmet,Enchantment Shield Charge Attack Speed 2,Eternal Labyrinth,15% increased Shield Charge Attack Speed,Shield Charge +Helmet,Enchantment Shockwave Totem Cast Speed 2,Eternal Labyrinth,15% increased Shockwave Totem Cast Speed,Shockwave Totem +Helmet,Enchantment Whirling Blades Attack Speed 2,Eternal Labyrinth,15% increased Whirling Blades Attack Speed,Whirling Blades +Helmet,Enchantment Burning Arrow Physical Damage Percent To Add As Fire Damage 2,Eternal Labyrinth,15% of Burning Arrow Physical Damage gained as Extra Fire Damage,Burning Arrow +Helmet,Enchantment Shrapnel Shot Physical Damage Percent To Add As Lightning Damage 2,Eternal Labyrinth,15% of Galvanic Arrow Physical Damage gained as extra Lightning Damage,Shrapnel Shot +Helmet,Enchantment Glacial Hammer Physical Damage Percent To Add As Cold Damage 2,Eternal Labyrinth,15% of Glacial Hammer Physical Damage gained as Extra Cold Damage,Glacial Hammer +Helmet,Enchantment Ice Crash Physical Damage Percent To Add As Cold Damage 2,Eternal Labyrinth,15% of Ice Crash Physical Damage gained as Extra Cold Damage,Ice Crash +Helmet,Enchantment Infernal Blow Physical Damage Percent To Add As Fire Damage 2,Eternal Labyrinth,15% of Infernal Blow Physical Damage gained as Extra Fire Damage,Infernal Blow +Helmet,Enchantment Summon Carrion Golem Granted Buff Effect 2,Eternal Labyrinth,150% increased Effect of the Buff granted by your Carrion Golems,Summon Carrion Golem +Helmet,Enchantment Flame Golem Granted Buff Effect 2,Eternal Labyrinth,150% increased Effect of the Buff granted by your Flame Golems,Flame Golem +Helmet,Enchantment Ice Golem Grants Percent Additional Critical Strike Chance And Accuracy 2,Eternal Labyrinth,150% increased Effect of the Buff granted by your Ice Golems,Ice Golem +Helmet,Enchantment Lightning Golem Granted Buff Effect 2,Eternal Labyrinth,150% increased Effect of the Buff granted by your Lightning Golems,Lightning Golem +Helmet,Enchantment Stone Golem Granted Buff Effect 2,Eternal Labyrinth,150% increased Effect of the Buff granted by your Stone Golems,Stone Golem +Helmet,Enchantment Molten Shell Armour 2,Eternal Labyrinth,150% increased Molten Shell Buff Effect,Molten Shell +Helmet,Enchantment Animate Weapon Chance To Create Additional Copy 1,Merciless Labyrinth,16% chance to create an additional Animate Weapon copy,Animate Weapon +Helmet,Enchantment Ancestor Warchief Area Of Effect 1,Merciless Labyrinth,16% increased Ancestral Warchief Totem Area of Effect,Ancestor Warchief +Boots,Enchantment Attack and Cast Speed 3,Eternal Labyrinth,16% increased Attack and Cast Speed if you've Killed Recently, +Helmet,Enchantment Ball Lightning Area Of Effect 1,Merciless Labyrinth,16% increased Ball Lightning Area of Effect,Ball Lightning +Helmet,Enchantment Blade Flurry Area Of Effect 1,Merciless Labyrinth,16% increased Blade Flurry Area of Effect,Blade Flurry +Helmet,Enchantment Blade Vortex Area Of Effect 1,Merciless Labyrinth,16% increased Blade Vortex Area of Effect,Blade Vortex +Helmet,Enchantment Bladefall Area Of Effect 1,Merciless Labyrinth,16% increased Bladefall Area of Effect,Bladefall +Helmet,Enchantment Blight Area Of Effect 1,Merciless Labyrinth,16% increased Blight Area of Effect,Blight +Helmet,Enchantment Caustic Arrow Area Of Effect 1,Merciless Labyrinth,16% increased Caustic Arrow Area of Effect,Caustic Arrow +Helmet,Enchantment Cleave Area Of Effect 1,Merciless Labyrinth,16% increased Cleave Area of Effect,Cleave +Helmet,Enchantment Cold Snap Area Of Effect 1,Merciless Labyrinth,16% increased Cold Snap Area of Effect,Cold Snap +Helmet,Enchantment Contagion Radius 1,Merciless Labyrinth,16% increased Contagion Area of Effect,Contagion +Helmet,Enchantment Creeping Frost Area Of Effect 1,Merciless Labyrinth,16% increased Creeping Frost Area of Effect,Creeping Frost +Helmet,Enchantment Dark Pact Area Of Effect 1,Merciless Labyrinth,16% increased Dark Pact Area of Effect,Dark Pact +Helmet,Enchantment Decoy Totem Area Of Effect 1,Merciless Labyrinth,16% increased Decoy Totem Area of Effect,Decoy Totem +Helmet,Enchantment Detonate Dead Area Of Effect 1,Merciless Labyrinth,16% increased Detonate Dead Area of Effect,Detonate Dead +Helmet,Enchantment Earthquake Area Of Effect 1,Merciless Labyrinth,16% increased Earthquake Area of Effect,Earthquake +Helmet,Enchantment Firestorm Explosion Area Of Effect 1,Merciless Labyrinth,16% increased Firestorm explosion Area of Effect,Firestorm +Helmet,Enchantment Flameblast Area Of Effect 1,Merciless Labyrinth,16% increased Flameblast Area of Effect,Flameblast +Helmet,Enchantment Frost Bomb Area Of Effect 1,Merciless Labyrinth,16% increased Frost Bomb Area of Effect,Frost Bomb +Helmet,Enchantment Glacial Cascade Area Of Effect 1,Merciless Labyrinth,16% increased Glacial Cascade Area of Effect,Glacial Cascade +Helmet,Enchantment Ground Slam Area Of Effect 1,Merciless Labyrinth,16% increased Ground Slam Area of Effect,Ground Slam +Helmet,Enchantment Ice Crash Area Of Effect 1,Merciless Labyrinth,16% increased Ice Crash Area of Effect,Ice Crash +Helmet,Enchantment Ice Nova Area Of Effect 1,Merciless Labyrinth,16% increased Ice Nova Area of Effect,Ice Nova +Helmet,Enchantment Ice Shot Area Of Effect 1,Merciless Labyrinth,16% increased Ice Shot Area of Effect,Ice Shot +Helmet,Enchantment Ice Trap Area Of Effect 1,Merciless Labyrinth,16% increased Ice Trap Area of Effect,Ice Trap +Helmet,Enchantment Infernal Blow Area Of Effect 1,Merciless Labyrinth,16% increased Infernal Blow Area of Effect,Infernal Blow +Helmet,Enchantment Kinetic Blast Area Of Effect 1,Merciless Labyrinth,16% increased Kinetic Blast Area of Effect,Kinetic Blast +Helmet,Enchantment Double Slash Area Of Effect 1,Merciless Labyrinth,16% increased Lacerate Area of Effect,Double Slash +Helmet,Enchantment Leap Slam Area Of Effect 1,Merciless Labyrinth,16% increased Leap Slam Area of Effect,Leap Slam +Helmet,Enchantment Lightning Arrow Area Of Effect 1,Merciless Labyrinth,16% increased Lightning Arrow Area of Effect,Lightning Arrow +Helmet,Enchantment Lightning Tendrils Area Of Effect 1,Merciless Labyrinth,16% increased Lightning Tendrils Area of Effect,Lightning Tendrils +Helmet,Enchantment Magma Orb Area Of Effect 1,Merciless Labyrinth,16% increased Magma Orb Area of Effect,Magma Orb +Helmet,Enchantment Molten Strike Area Of Effect 1,Merciless Labyrinth,16% increased Molten Strike Area of Effect,Molten Strike +Helmet,Enchantment Orb of Storms Area Of Effect 1,Merciless Labyrinth,16% increased Orb of Storms Area of Effect,Orb Of Storms +Helmet,Enchantment Rain Of Arrows Area Of Effect 1,Merciless Labyrinth,16% increased Rain of Arrows Area of Effect,Rain of Arrows +Helmet,Enchantment Reave Area Of Effect 1,Merciless Labyrinth,16% increased Reave Radius,Reave +Helmet,Enchantment Righteous Fire Area Of Effect 1,Merciless Labyrinth,16% increased Righteous Fire Area of Effect,Righteous Fire +Helmet,Enchantment Shock Nova Area Of Effect 1,Merciless Labyrinth,16% increased Shock Nova Area of Effect,Shock Nova +Helmet,Enchantment Shockwave Totem Radius 1,Merciless Labyrinth,16% increased Shockwave Totem Area of Effect,Shockwave Totem +Helmet,Enchantment Static Strike Area Of Effect 1,Merciless Labyrinth,16% increased Static Strike Area of Effect,Static Strike +Helmet,Enchantment Storm Burst Area Of Effect 1,Merciless Labyrinth,16% increased Storm Burst Area of Effect,Storm Burst +Helmet,Enchantment Storm Call Area Of Effect 1,Merciless Labyrinth,16% increased Storm Call Area of Effect,Storm Call +Helmet,Enchantment Sweep Area Of Effect 1,Merciless Labyrinth,16% increased Sweep Area of Effect,Sweep +Helmet,Enchantment Ancestral Protector Placement Speed 2,Eternal Labyrinth,18% increased Ancestral Protector Totem Placement Speed,Ancestral Protector +Boots,Enchantment Mana Cost 3,Eternal Labyrinth,18% reduced Mana Cost of Skills if you've been Hit Recently, +Helmet,Enchantment Discharge Consume Charges 1,Merciless Labyrinth,20% chance for Discharge to deal Damage without removing Charges,Discharge +Helmet,Enchantment Phase Run Percent Chance To Not Consume Frenzy Charges 1,Merciless Labyrinth,20% chance for Phase Run to increase Duration without removing Frenzy Charges,Phase Run +Helmet,Enchantment Puncture Maim On Hit Percent Chance 1,Merciless Labyrinth,20% Chance for Puncture to Maim on hit,Puncture +Helmet,Enchantment Frenzy Percent Chance To Gain Additional Frenzy Charge 1,Merciless Labyrinth,20% Chance on Frenzy to gain an additional Frenzy Charge,Frenzy +Belt,EnchantmentElusive,Eternal Labyrinth of Potential,20% chance to Avoid Elemental Ailments while you have Elusive, +Helmet,Enchantment Summon Skeletons Additional Warrior Skeletons 1,Merciless Labyrinth,20% chance to Summon an additional Skeleton Warrior with Summon Skeleton,Summon Skeletons +Helmet,Enchantment Animate Weapon Duration 1,Merciless Labyrinth,20% increased Animate Weapon Duration,Animate Weapon +Helmet,Enchantment Assassins Mark Curse Effect 1,Merciless Labyrinth,20% increased Assassin's Mark Curse Effect,Assassins Mark +Helmet,Enchantment Blade Vortex Duration 1,Merciless Labyrinth,20% increased Blade Vortex Duration,Blade Vortex +Helmet,Enchantment Caustic Arrow Duration 1,Merciless Labyrinth,20% increased Caustic Arrow Duration,Caustic Arrow +Helmet,Enchantment Conductivity Curse Effect 1,Merciless Labyrinth,20% increased Conductivity Curse Effect,Conductivity +Helmet,Enchantment Contagion Duration 1,Merciless Labyrinth,20% increased Contagion Duration,Contagion +Helmet,Enchantment Despair Effect 1,Merciless Labyrinth,20% increased Despair Curse Effect,Despair +Helmet,Enchantment Elemental Weakness Curse Effect 1,Merciless Labyrinth,20% increased Elemental Weakness Curse Effect,Elemental Weakness +Helmet,Enchantment Enfeeble Curse Effect 1,Merciless Labyrinth,20% increased Enfeeble Curse Effect,Enfeeble +Helmet,Enchantment Essence Drain Duration 1,Merciless Labyrinth,20% increased Essence Drain Duration,Essence Drain +Helmet,Enchantment Ethereal Knives Projectile Speed 1,Merciless Labyrinth,20% increased Ethereal Knives Projectile Speed,Ethereal Knives +Helmet,Enchantment Firestorm Duration 1,Merciless Labyrinth,20% increased Firestorm Duration,Firestorm +Helmet,Enchantment Flammability Curse Effect 1,Merciless Labyrinth,20% increased Flammability Curse Effect,Flammability +Helmet,Enchantment Freezing Pulse Projectile Speed 1,Merciless Labyrinth,20% increased Freezing Pulse Projectile Speed,Freezing Pulse +Helmet,Enchantment Frost Blades Projectile Speed 1,Merciless Labyrinth,20% increased Frost Blades Projectile Speed,Frost Blades +Helmet,Enchantment Frostbite Curse Effect 1,Merciless Labyrinth,20% increased Frostbite Curse Effect,Frostbite +Helmet,Enchantment Poachers Mark Curse Effect 1,Merciless Labyrinth,20% increased Poacher's Mark Curse Effect,Poachers Mark +Helmet,Enchantment Punishment Curse Effect 1,Merciless Labyrinth,20% increased Punishment Curse Effect,Punishment +Helmet,Enchantment Dominating Blow Duration 1,Merciless Labyrinth,20% increased Sentinel of Dominance Duration,Dominating Blow +Helmet,Enchantment Smoke Mine Duration 1,Merciless Labyrinth,20% increased Smoke Mine Duration,Smoke Mine +Helmet,Enchantment Spark Projectile Speed 1,Merciless Labyrinth,20% increased Spark Projectile Speed,Spark Projectile +Helmet,Enchantment Spectral Shield Throw Projectile Speed 1,Merciless Labyrinth,20% increased Spectral Shield Throw Projectile Speed,Spectral Shield Throw +Helmet,Enchantment Spectral Throw Projectile Speed 1,Merciless Labyrinth,20% increased Spectral Throw Projectile Speed,Spectral Shield Throw +Helmet,Enchantment Temporal Chains Curse Effect 1,Merciless Labyrinth,20% increased Temporal Chains Curse Effect,Temporal Chains +Helmet,Enchantment Viper Strike Poison Duration 1,Merciless Labyrinth,20% increased Viper Strike Duration,Viper Strike +Helmet,Enchantment Vortex Duration 1,Merciless Labyrinth,20% increased Vortex Duration,Vortex +Helmet,Enchantment Vulnerability Curse Effect 1,Merciless Labyrinth,20% increased Vulnerability Curse Effect,Vulnerability +Helmet,Enchantment Warlords Mark Curse Effect 1,Merciless Labyrinth,20% increased Warlord's Mark Curse Effect,Warlords Mark +Helmet,Enchantment Lightning Warp Duration 1,Merciless Labyrinth,20% reduced Lightning Warp Duration,Lightning Warp +Helmet,Enchantment Spectral Throw Projectile Deceleration 1,Merciless Labyrinth,20% reduced Spectral Throw Projectile Deceleration,Spectral Shield Throw +Helmet,Enchantment Storm Call Duration 1,Merciless Labyrinth,20% reduced Storm Call Duration,Storm Call +Helmet,Enchantment Ice Spear Second Form Critical Strike Chance 1,Merciless Labyrinth,200% increased Ice Spear Critical Strike Chance in second form,Ice Spear +Helmet,Enchantment Animate Weapon Chance To Create Additional Copy 2,Eternal Labyrinth,24% chance to create an additional Animate Weapon copy,Animate Weapon +Helmet,Enchantment Ancestor Warchief Area Of Effect 2,Eternal Labyrinth,24% increased Ancestral Warchief Totem Area of Effect,Ancestor Warchief +Helmet,Enchantment Arctic Armour Buff Effect 1,Merciless Labyrinth,24% increased Arctic Armour Buff Effect,Arctic Armour +Helmet,Enchantment Ball Lightning Area Of Effect 2,Eternal Labyrinth,24% increased Ball Lightning Area of Effect,Ball Lightning +Helmet,Enchantment Blade Flurry Area Of Effect 2,Eternal Labyrinth,24% increased Blade Flurry Area of Effect,Blade Flurry +Helmet,Enchantment Blade Vortex Area Of Effect 2,Eternal Labyrinth,24% increased Blade Vortex Area of Effect,Blade Vortex +Helmet,Enchantment Bladefall Area Of Effect 2,Eternal Labyrinth,24% increased Bladefall Area of Effect,Bladefall +Helmet,Enchantment Blight Area Of Effect 2,Eternal Labyrinth,24% increased Blight Area of Effect,Blight +Helmet,Enchantment Caustic Arrow Area Of Effect 2,Eternal Labyrinth,24% increased Caustic Arrow Area of Effect,Caustic Arrow +Helmet,Enchantment Cleave Area Of Effect 2,Eternal Labyrinth,24% increased Cleave Area of Effect,Cleave +Helmet,Enchantment Cold Snap Area Of Effect 2,Eternal Labyrinth,24% increased Cold Snap Area of Effect,Cold Snap +Helmet,Enchantment Contagion Radius 2,Eternal Labyrinth,24% increased Contagion Area of Effect,Contagion +Helmet,Enchantment Convocation Life Regeneration 1,Merciless Labyrinth,24% increased Convocation Buff Effect,Convocation +Helmet,Enchantment Creeping Frost Area Of Effect 2,Eternal Labyrinth,24% increased Creeping Frost Area of Effect,Creeping Frost +Helmet,Enchantment Creeping Frost Duration 1,Merciless Labyrinth,24% increased Creeping Frost Duration,Creeping Frost +Helmet,Enchantment Dark Pact Area Of Effect 2,Eternal Labyrinth,24% increased Dark Pact Area of Effect,Dark Pact +Helmet,Enchantment Decoy Totem Area Of Effect 2,Eternal Labyrinth,24% increased Decoy Totem Area of Effect,Decoy Totem +Helmet,Enchantment Detonate Dead Area Of Effect 2,Eternal Labyrinth,24% increased Detonate Dead Area of Effect,Detonate Dead +Helmet,Enchantment Devouring Totem Leech Per Second 1,Merciless Labyrinth,24% increased Devouring Totem Leech per second,Devouring Totem +Helmet,Enchantment Earthquake Area Of Effect 2,Eternal Labyrinth,24% increased Earthquake Area of Effect,Earthquake +Helmet,Enchantment Firestorm Explosion Area Of Effect 2,Eternal Labyrinth,24% increased Firestorm explosion Area of Effect,Firestorm +Helmet,Enchantment Flameblast Area Of Effect 2,Eternal Labyrinth,24% increased Flameblast Area of Effect,Flameblast +Helmet,Enchantment Frost Bomb Area Of Effect 2,Eternal Labyrinth,24% increased Frost Bomb Area of Effect,Frost Bomb +Helmet,Enchantment Frost Wall Duration 1,Merciless Labyrinth,24% increased Frost Wall Duration,Frost Wall +Helmet,Enchantment Glacial Cascade Area Of Effect 2,Eternal Labyrinth,24% increased Glacial Cascade Area of Effect,Glacial Cascade +Helmet,Enchantment Ground Slam Area Of Effect 2,Eternal Labyrinth,24% increased Ground Slam Area of Effect,Ground Slam +Helmet,Enchantment Ice Crash Area Of Effect 2,Eternal Labyrinth,24% increased Ice Crash Area of Effect,Ice Crash +Helmet,Enchantment Ice Nova Area Of Effect 2,Eternal Labyrinth,24% increased Ice Nova Area of Effect,Ice Nova +Helmet,Enchantment Ice Shot Area Of Effect 2,Eternal Labyrinth,24% increased Ice Shot Area of Effect,Ice Shot +Helmet,Enchantment Ice Trap Area Of Effect 2,Eternal Labyrinth,24% increased Ice Trap Area of Effect,Ice Trap +Helmet,Enchantment Infernal Blow Area Of Effect 2,Eternal Labyrinth,24% increased Infernal Blow Area of Effect,Infernal Blow +Helmet,Enchantment Kinetic Blast Area Of Effect 2,Eternal Labyrinth,24% increased Kinetic Blast Area of Effect,Kinetic Blast +Helmet,Enchantment Double Slash Area Of Effect 2,Eternal Labyrinth,24% increased Lacerate Area of Effect,Double Slash +Helmet,Enchantment Leap Slam Area Of Effect 2,Eternal Labyrinth,24% increased Leap Slam Area of Effect,Leap Slam +Helmet,Enchantment Lightning Arrow Area Of Effect 2,Eternal Labyrinth,24% increased Lightning Arrow Area of Effect,Lightning Arrow +Helmet,Enchantment Lightning Tendrils Area Of Effect 2,Eternal Labyrinth,24% increased Lightning Tendrils Area of Effect,Lightning Tendrils +Helmet,Enchantment Magma Orb Area Of Effect 2,Eternal Labyrinth,24% increased Magma Orb Area of Effect,Magma Orb +Helmet,Enchantment Molten Strike Area Of Effect 2,Eternal Labyrinth,24% increased Molten Strike Area of Effect,Molten Strike +Helmet,Enchantment Orb of Storms Area Of Effect 2,Eternal Labyrinth,24% increased Orb of Storms Area of Effect,Orb Of Storms +Helmet,Enchantment Phase Run Duration 1,Merciless Labyrinth,24% increased Phase Run Duration,Phase Run +Helmet,Enchantment Rain Of Arrows Area Of Effect 2,Eternal Labyrinth,24% increased Rain of Arrows Area of Effect,Rain of Arrows +Helmet,Enchantment Reave Area Of Effect 2,Eternal Labyrinth,24% increased Reave Radius,Reave +Helmet,Enchantment Righteous Fire Area Of Effect 2,Eternal Labyrinth,24% increased Righteous Fire Area of Effect,Righteous Fire +Helmet,Enchantment Searing Bond Totem Elemental Resistances 1,Merciless Labyrinth,24% increased Searing Bond Totem Elemental Resistances,Searing Bond Totem +Helmet,Enchantment Shock Nova Area Of Effect 2,Eternal Labyrinth,24% increased Shock Nova Area of Effect,Shock Nova +Helmet,Enchantment Shockwave Totem Radius 2,Eternal Labyrinth,24% increased Shockwave Totem Area of Effect,Shockwave Totem +Helmet,Enchantment Static Strike Area Of Effect 2,Eternal Labyrinth,24% increased Static Strike Area of Effect,Static Strike +Helmet,Enchantment Storm Burst Area Of Effect 2,Eternal Labyrinth,24% increased Storm Burst Area of Effect,Storm Burst +Helmet,Enchantment Storm Call Area Of Effect 2,Eternal Labyrinth,24% increased Storm Call Area of Effect,Storm Call +Helmet,Enchantment Sweep Area Of Effect 2,Eternal Labyrinth,24% increased Sweep Area of Effect,Sweep +Helmet,Enchantment Wild Strike Area Of Effect 1,Merciless Labyrinth,24% increased Wild Strike Area of Effect,Wild Strike +Helmet,Enchantment Ancestral Warchief Damage 1,Merciless Labyrinth,25% increased Ancestral Warchief Totem Damage,Ancestral Warchief +Helmet,Enchantment Arc Damage 1,Merciless Labyrinth,25% increased Arc Damage,Arc +Helmet,Enchantment Ball Lightning Damage 1,Merciless Labyrinth,25% increased Ball Lightning Damage,Ball Lightning +Helmet,Enchantment Barrage Damage 1,Merciless Labyrinth,25% increased Barrage Damage,Barrage +Helmet,Enchantment Bear Trap Damage 1,Merciless Labyrinth,25% increased Bear Trap Damage,Bear Trap +Helmet,Enchantment Blade Flurry Damage 1,Merciless Labyrinth,25% increased Blade Flurry Damage,Blade Flurry +Helmet,Enchantment Blade Vortex Damage 1,Merciless Labyrinth,25% increased Blade Vortex Spell Damage,Blade Vortex +Helmet,Enchantment Bladefall Damage 1,Merciless Labyrinth,25% increased Bladefall Damage,Bladefall +Helmet,Enchantment Blight Damage 1,Merciless Labyrinth,25% increased Blight Damage,Blight +Helmet,Enchantment Body Swap Damage 1,Merciless Labyrinth,25% increased Bodyswap Damage,Body Swap +Helmet,Enchantment Burning Arrow Damage 1,Merciless Labyrinth,25% increased Burning Arrow Damage,Burning Arrow +Helmet,Enchantment Caustic Arrow Damage 1,Merciless Labyrinth,25% increased Caustic Arrow Damage,Caustic Arrow +Helmet,Enchantment Charged Dash Damage 1,Merciless Labyrinth,25% increased Charged Dash Damage,Charged Dash +Helmet,Enchantment Cleave Damage 1,Merciless Labyrinth,25% increased Cleave Damage,Cleave +Helmet,Enchantment Cold Snap Damage 1,Merciless Labyrinth,25% increased Cold Snap Damage,Cold Snap +Helmet,Enchantment Contagion Damage 1,Merciless Labyrinth,25% increased Contagion Damage,Contagion +Helmet,Enchantment Creeping Frost Damage 1,Merciless Labyrinth,25% increased Creeping Frost Damage,Creeping Frost +Helmet,Enchantment Cremation Damage 1,Merciless Labyrinth,25% increased Cremation Damage,Cremation +Helmet,Enchantment Cyclone Damage 1,Merciless Labyrinth,25% increased Cyclone Damage,Cyclone +Helmet,Enchantment Dark Pact Damage 1,Merciless Labyrinth,25% increased Dark Pact Damage,Dark Pact +Helmet,Enchantment Detonate Dead Damage 1,Merciless Labyrinth,25% increased Detonate Dead Damage,Detonate Dead +Helmet,Enchantment Discharge Damage 1,Merciless Labyrinth,25% increased Discharge Damage,Discharge +Helmet,Enchantment Double Strike Damage 1,Merciless Labyrinth,25% increased Double Strike Damage,Double Strike +Helmet,Enchantment Dual Strike Damage 1,Merciless Labyrinth,25% increased Dual Strike Damage,Dual Strike +Helmet,Enchantment Earthquake Damage 1,Merciless Labyrinth,25% increased Earthquake Damage,Earthquake +Helmet,Enchantment Essence Drain Damage 1,Merciless Labyrinth,25% increased Essence Drain Damage,Essence Drain +Helmet,Enchantment Ethereal Knives Damage 1,Merciless Labyrinth,25% increased Ethereal Knives Damage,Ethereal Knives +Helmet,Enchantment Fire Trap Damage 1,Merciless Labyrinth,25% increased Fire Trap Damage,Fire Trap +Helmet,Enchantment Fireball Damage 1,Merciless Labyrinth,25% increased Fireball Damage,Fireball +Helmet,Enchantment Firestorm Damage 1,Merciless Labyrinth,25% increased Firestorm Damage,Firestorm +Helmet,Enchantment Flame Dash Damage 1,Merciless Labyrinth,25% increased Flame Dash Damage,Flame Dash +Helmet,Enchantment Flame Surge Damage 1,Merciless Labyrinth,25% increased Flame Surge Damage,Flame Surge +Helmet,Enchantment Flameblast Damage 1,Merciless Labyrinth,25% increased Flameblast Damage,Flameblast +Helmet,Enchantment Flicker Strike Damage 1,Merciless Labyrinth,25% increased Flicker Strike Damage,Flicker Strike +Helmet,Enchantment Freezing Pulse Damage 1,Merciless Labyrinth,25% increased Freezing Pulse Damage,Freezing Pulse +Helmet,Enchantment Frenzy Damage 1,Merciless Labyrinth,25% increased Frenzy Damage,Frenzy +Helmet,Enchantment Frost Blades Damage 1,Merciless Labyrinth,25% increased Frost Blades Damage,Frost Blades +Helmet,Enchantment Frost Bomb Damage 1,Merciless Labyrinth,25% increased Frost Bomb Damage,Frost Bomb +Helmet,Enchantment Frost Bolt Damage 1,Merciless Labyrinth,25% increased Frostbolt Damage,Frost Bolt +Helmet,Enchantment Shrapnel Shot Damage 1,Merciless Labyrinth,25% increased Galvanic Arrow Damage,Shrapnel Shot +Helmet,Enchantment Glacial Cascade Damage 1,Merciless Labyrinth,25% increased Glacial Cascade Damage,Glacial Cascade +Helmet,Enchantment Glacial Hammer Damage 1,Merciless Labyrinth,25% increased Glacial Hammer Damage,Glacial Hammer +Helmet,Enchantment Ground Slam Damage 1,Merciless Labyrinth,25% increased Ground Slam Damage,Ground Slam +Helmet,Enchantment Heavy Strike Damage 1,Merciless Labyrinth,25% increased Heavy Strike Damage,Heavy Strike +Helmet,Enchantment Herald Of Ash Damage 1,Merciless Labyrinth,25% increased Herald of Ash Damage,Herald Of Ash +Helmet,Enchantment Herald Of Ice Damage 1,Merciless Labyrinth,25% increased Herald of Ice Damage,Herald Of Ice +Helmet,Enchantment Herald Of Thunder Damage 1,Merciless Labyrinth,25% increased Herald of Thunder Damage,Herald Of Thunder +Helmet,Enchantment Ice Crash Damage 1,Merciless Labyrinth,25% increased Ice Crash Damage,Ice Crash +Helmet,Enchantment Ice Nova Damage 1,Merciless Labyrinth,25% increased Ice Nova Damage,Ice Nova +Helmet,Enchantment Ice Shot Damage 1,Merciless Labyrinth,25% increased Ice Shot Damage,Ice Shot +Helmet,Enchantment Ice Trap Damage 1,Merciless Labyrinth,25% increased Ice Trap Damage,Ice Trap +Helmet,Enchantment Incinerate Damage 1,Merciless Labyrinth,25% increased Incinerate Damage,Incinerate +Helmet,Enchantment Infernal Blow Damage 1,Merciless Labyrinth,25% increased Infernal Blow Damage,Infernal Blow +Helmet,Enchantment Kinetic Blast Damage 1,Merciless Labyrinth,25% increased Kinetic Blast Damage,Kinetic Blast +Helmet,Enchantment Lacerate Damage 1,Merciless Labyrinth,25% increased Lacerate Damage,Lacerate +Helmet,Enchantment Leap Slam Damage 1,Merciless Labyrinth,25% increased Leap Slam Damage,Leap Slam +Helmet,Enchantment Lightning Arrow Damage 1,Merciless Labyrinth,25% increased Lightning Arrow Damage,Lightning Arrow +Helmet,Enchantment Lightning Strike Damage 1,Merciless Labyrinth,25% increased Lightning Strike Damage,Lightning Strike +Helmet,Enchantment Lightning Tendrils Damage 1,Merciless Labyrinth,25% increased Lightning Tendrils Damage,Lightning Tendrils +Helmet,Enchantment Lightning Trap Damage 1,Merciless Labyrinth,25% increased Lightning Trap Damage,Lightning Trap +Helmet,Enchantment Lightning Trap Shock Effect 1,Merciless Labyrinth,25% increased Lightning Trap Lightning Ailment Effect,Lightning Trap +Helmet,Enchantment Lightning Warp Damage 1,Merciless Labyrinth,25% increased Lightning Warp Damage,Lightning Warp +Helmet,Enchantment Magma Orb Damage 1,Merciless Labyrinth,25% increased Magma Orb Damage,Magma Orb +Helmet,Enchantment Molten Strike Damage 1,Merciless Labyrinth,25% increased Molten Strike Damage,Molten Strike +Helmet,Enchantment Orb Of Storms Damage 1,Merciless Labyrinth,25% increased Orb of Storms Damage,Orb Of Storms +Helmet,Enchantment Power Siphon Damage 1,Merciless Labyrinth,25% increased Power Siphon Damage,Power Siphon +Helmet,Enchantment Puncture Damage 1,Merciless Labyrinth,25% increased Puncture Damage,Puncture +Helmet,Enchantment Rain Of Arrows Damage 1,Merciless Labyrinth,25% increased Rain of Arrows Damage,Rain of Arrows +Helmet,Enchantment Reave Damage 1,Merciless Labyrinth,25% increased Reave Damage,Reave +Helmet,Enchantment Reckoning Damage 1,Merciless Labyrinth,25% increased Reckoning Damage,Reckoning +Helmet,Enchantment Righteous Fire Damage 1,Merciless Labyrinth,25% increased Righteous Fire Damage,Righteous Fire +Helmet,Enchantment Riposte Damage 1,Merciless Labyrinth,25% increased Riposte Damage,Riposte +Helmet,Enchantment Scorching Ray Damage 1,Merciless Labyrinth,25% increased Scorching Ray Damage,Scorching Ray +Helmet,Enchantment Searing Bond Damage 1,Merciless Labyrinth,25% increased Searing Bond Damage,Searing Bond +Helmet,Enchantment Shield Charge Damage 1,Merciless Labyrinth,25% increased Shield Charge Damage,Shield Charge +Helmet,Enchantment Shock Nova Damage 1,Merciless Labyrinth,25% increased Shock Nova Damage,Shock Nova +Helmet,Enchantment Shockwave Totem Damage 1,Merciless Labyrinth,25% increased Shockwave Totem Damage,Shockwave Totem +Helmet,Enchantment Spark Damage 1,Merciless Labyrinth,25% increased Spark Damage,Spark +Helmet,Enchantment Spectral Shield Throw Damage 1,Merciless Labyrinth,25% increased Spectral Shield Throw Damage,Spectral Shield Throw +Helmet,Enchantment Spectral Throw Damage 1,Merciless Labyrinth,25% increased Spectral Throw Damage,Spectral Shield Throw +Helmet,Enchantment Split Arrow Damage 1,Merciless Labyrinth,25% increased Split Arrow Damage,Split Arrow +Helmet,Enchantment Static Strike Damage 1,Merciless Labyrinth,25% increased Static Strike Damage,Static Strike +Helmet,Enchantment Storm Burst Damage 1,Merciless Labyrinth,25% increased Storm Burst Damage,Storm Burst +Helmet,Enchantment Storm Call Damage 1,Merciless Labyrinth,25% increased Storm Call Damage,Storm Call +Helmet,Enchantment Sweep Damage 1,Merciless Labyrinth,25% increased Sweep Damage,Sweep +Helmet,Enchantment Tempest Shield Damage 1,Merciless Labyrinth,25% increased Tempest Shield Damage,Tempest Shield +Helmet,Enchantment Tornado Shot Damage 1,Merciless Labyrinth,25% increased Tornado Shot Damage,Tornado Shot +Helmet,Enchantment Unearth Damage 1,Merciless Labyrinth,25% increased Unearth Damage,Unearth +Helmet,Enchantment Vengeance Damage 1,Merciless Labyrinth,25% increased Vengeance Damage,Vengeance +Helmet,Enchantment Vigilant Strike Damage 1,Merciless Labyrinth,25% increased Vigilant Strike Damage,Vigilant Strike +Helmet,Enchantment Viper Strike Damage 1,Merciless Labyrinth,25% increased Viper Strike Damage,Viper Strike +Helmet,Enchantment Volatile Dead Damage 1,Merciless Labyrinth,25% increased Volatile Dead Damage,Volatile Dead +Helmet,Enchantment Vortex Damage 1,Merciless Labyrinth,25% increased Vortex Damage,Vortex +Helmet,Enchantment Whirling Blades Damage 1,Merciless Labyrinth,25% increased Whirling Blades Damage,Whirling Blades +Helmet,Enchantment Wild Strike Damage 1,Merciless Labyrinth,25% increased Wild Strike Damage,Wild Strike +Helmet,Enchantment Discharge Consume Charges 2,Eternal Labyrinth,30% chance for Discharge to deal Damage without removing Charges,Discharge +Helmet,Enchantment Phase Run Percent Chance To Not Consume Frenzy Charges 2,Eternal Labyrinth,30% chance for Phase Run to increase Duration without removing Frenzy Charges,Phase Run +Helmet,Enchantment Puncture Maim On Hit Percent Chance 2,Eternal Labyrinth,30% Chance for Puncture to Maim on hit,Puncture +Helmet,Enchantment Frenzy Percent Chance To Gain Additional Frenzy Charge 2,Eternal Labyrinth,30% Chance on Frenzy to gain an additional Frenzy Charge,Frenzy +Helmet,Enchantment Power Siphon Percent Chance To Gain Power Charge On Kill 1,Merciless Labyrinth,30% Chance to gain an additional Power Charge on Kill with Power Siphon,Power Siphon +Belt,EnchantmentOnslaught_,Eternal Labyrinth of Potential,30% increased Accuracy Rating while you have Onslaught, +Helmet,Enchantment Animate Weapon Duration 2,Eternal Labyrinth,30% increased Animate Weapon Duration,Animate Weapon +Helmet,Enchantment Assassins Mark Curse Effect 2,Eternal Labyrinth,30% increased Assassin's Mark Curse Effect,Assassins Mark +Helmet,Enchantment Assassins Mark Duration 1,Merciless Labyrinth,30% increased Assassin's Mark Duration,Assassins Mark +Helmet,Enchantment Blade Vortex Duration 2,Eternal Labyrinth,30% increased Blade Vortex Duration,Blade Vortex +Helmet,Enchantment Bone Offering Duration 1,Merciless Labyrinth,30% increased Bone Offering Duration,Bone Offering +Helmet,Enchantment Caustic Arrow Duration 2,Eternal Labyrinth,30% increased Caustic Arrow Duration,Caustic Arrow +Helmet,Enchantment Conductivity Curse Effect 2,Eternal Labyrinth,30% increased Conductivity Curse Effect,Conductivity +Helmet,Enchantment Conductivity Duration 1,Merciless Labyrinth,30% increased Conductivity Duration,Conductivity +Helmet,Enchantment Contagion Duration 2,Eternal Labyrinth,30% increased Contagion Duration,Contagion +Helmet,Enchantment Despair Effect 2,Eternal Labyrinth,30% increased Despair Curse Effect,Despair +Helmet,Enchantment Despair Duration 1,Merciless Labyrinth,30% increased Despair Duration,Despair +Helmet,Enchantment Elemental Weakness Curse Effect 2,Eternal Labyrinth,30% increased Elemental Weakness Curse Effect,Elemental Weakness +Helmet,Enchantment Elemental Weakness Duration 1,Merciless Labyrinth,30% increased Elemental Weakness Duration,Elemental Weakness +Helmet,Enchantment Enfeeble Curse Effect 2,Eternal Labyrinth,30% increased Enfeeble Curse Effect,Enfeeble +Helmet,Enchantment Enfeeble Duration 1,Merciless Labyrinth,30% increased Enfeeble Duration,Enfeeble +Helmet,Enchantment Essence Drain Duration 2,Eternal Labyrinth,30% increased Essence Drain Duration,Essence Drain +Helmet,Enchantment Ethereal Knives Projectile Speed 2,Eternal Labyrinth,30% increased Ethereal Knives Projectile Speed,Ethereal Knives +Helmet,Enchantment Fire Trap Burning Ground Duration 1,Merciless Labyrinth,30% increased Fire Trap Burning Ground Duration,Fire Trap +Helmet,Enchantment Firestorm Duration 2,Eternal Labyrinth,30% increased Firestorm Duration,Firestorm +Helmet,Enchantment Flammability Curse Effect 2,Eternal Labyrinth,30% increased Flammability Curse Effect,Flammability +Helmet,Enchantment Flammability Duration 1,Merciless Labyrinth,30% increased Flammability Duration,Flammability +Helmet,Enchantment Flesh Offering Duration 1,Merciless Labyrinth,30% increased Flesh Offering Duration,Flesh Offering +Helmet,Enchantment Freezing Pulse Projectile Speed 2,Eternal Labyrinth,30% increased Freezing Pulse Projectile Speed,Freezing Pulse +Helmet,Enchantment Frost Blades Projectile Speed 2,Eternal Labyrinth,30% increased Frost Blades Projectile Speed,Frost Blades +Helmet,Enchantment Frostbite Curse Effect 2,Eternal Labyrinth,30% increased Frostbite Curse Effect,Frostbite +Helmet,Enchantment Frostbite Duration 1,Merciless Labyrinth,30% increased Frostbite Duration,Frostbite +Boots,Enchantment Mana Regeneration 1,Cruel Labyrinth,30% increased Mana Regeneration Rate if you've cast a Spell Recently, +Helmet,Enchantment Poachers Mark Curse Effect 2,Eternal Labyrinth,30% increased Poacher's Mark Curse Effect,Poachers Mark +Helmet,Enchantment Poachers Mark Duration 1,Merciless Labyrinth,30% increased Poacher's Mark Duration,Poachers Mark +Helmet,Enchantment Puncture Duration 1,Merciless Labyrinth,30% increased Puncture Duration,Puncture +Helmet,Enchantment Punishment Curse Effect 2,Eternal Labyrinth,30% increased Punishment Curse Effect,Punishment +Helmet,Enchantment Punishment Duration 1,Merciless Labyrinth,30% increased Punishment Duration,Punishment +Helmet,Enchantment Rejuvination Totem Life Regeneration 1,Merciless Labyrinth,30% increased Rejuvenation Totem Aura Effect,Rejuvination Totem +Helmet,Enchantment Dominating Blow Duration 2,Eternal Labyrinth,30% increased Sentinel of Dominance Duration,Dominating Blow +Helmet,Enchantment Smoke Mine Duration 2,Eternal Labyrinth,30% increased Smoke Mine Duration,Smoke Mine +Helmet,Enchantment Spark Projectile Speed 2,Eternal Labyrinth,30% increased Spark Projectile Speed,Spark Projectile +Helmet,Enchantment Spectral Shield Throw Projectile Speed 2,Eternal Labyrinth,30% increased Spectral Shield Throw Projectile Speed,Spectral Shield Throw +Helmet,Enchantment Spectral Throw Projectile Speed 2,Eternal Labyrinth,30% increased Spectral Throw Projectile Speed,Spectral Shield Throw +Helmet,Enchantment Spirit Offering Duration 1,Merciless Labyrinth,30% increased Spirit Offering Duration,Spirit Offering +Helmet,Enchantment Static Strike Duration 1,Merciless Labyrinth,30% increased Static Strike Duration,Static Strike +Helmet,Enchantment Temporal Chains Curse Effect 2,Eternal Labyrinth,30% increased Temporal Chains Curse Effect,Temporal Chains +Helmet,Enchantment Temporal Chains Duration 1,Merciless Labyrinth,30% increased Temporal Chains Duration,Temporal Chains +Helmet,Enchantment Vigilant Strike Fortify Duration 1,Merciless Labyrinth,30% increased Vigilant Strike Fortify Duration,Vigilant Strike +Helmet,Enchantment Viper Strike Poison Duration 2,Eternal Labyrinth,30% increased Viper Strike Duration,Viper Strike +Helmet,Enchantment Vortex Duration 2,Eternal Labyrinth,30% increased Vortex Duration,Vortex +Helmet,Enchantment Vulnerability Curse Effect 2,Eternal Labyrinth,30% increased Vulnerability Curse Effect,Vulnerability +Helmet,Enchantment Vulnerability Duration 1,Merciless Labyrinth,30% increased Vulnerability Duration,Vulnerability +Helmet,Enchantment Warlords Mark Curse Effect 2,Eternal Labyrinth,30% increased Warlord's Mark Curse Effect,Warlords Mark +Helmet,Enchantment Warlords Mark Duration 1,Merciless Labyrinth,30% increased Warlord's Mark Duration,Warlords Mark +Helmet,Enchantment Glacial Cascade Physical Damage Percent To Convert To Cold 1,Merciless Labyrinth,30% of Glacial Cascade Physical Damage Converted to Cold Damage,Glacial Cascade +Belt,EnchantmentConsecratedGround,Eternal Labyrinth of Potential,30% reduced Effect of Curses on you while on Consecrated Ground, +Helmet,Enchantment Lightning Warp Duration 2,Eternal Labyrinth,30% reduced Lightning Warp Duration,Lightning Warp +Helmet,Enchantment Spectral Throw Projectile Deceleration 2,Eternal Labyrinth,30% reduced Spectral Throw Projectile Deceleration,Spectral Shield Throw +Helmet,Enchantment Storm Call Duration 2,Eternal Labyrinth,30% reduced Storm Call Duration,Storm Call +Helmet,Enchantment Ice Spear Second Form Critical Strike Chance 2,Eternal Labyrinth,300% increased Ice Spear Critical Strike Chance in second form,Ice Spear +Helmet,Enchantment Immortal Call Duration 1,Merciless Labyrinth,34% increased Immortal Call Duration,Immortal Call +Helmet,Enchantment Arctic Armour Buff Effect 2,Eternal Labyrinth,36% increased Arctic Armour Buff Effect,Arctic Armour +Helmet,Enchantment Convocation Life Regeneration 2,Eternal Labyrinth,36% increased Convocation Buff Effect,Convocation +Helmet,Enchantment Creeping Frost Duration 2,Eternal Labyrinth,36% increased Creeping Frost Duration,Creeping Frost +Helmet,Enchantment Devouring Totem Leech Per Second 2,Eternal Labyrinth,36% increased Devouring Totem Leech per second,Devouring Totem +Helmet,Enchantment Frost Wall Duration 2,Eternal Labyrinth,36% increased Frost Wall Duration,Frost Wall +Helmet,Enchantment Immortal Call Duration 2,Eternal Labyrinth,36% increased Immortal Call Duration,Immortal Call +Helmet,Enchantment Phase Run Duration 2,Eternal Labyrinth,36% increased Phase Run Duration,Phase Run +Helmet,Enchantment Searing Bond Totem Elemental Resistances 2,Eternal Labyrinth,36% increased Searing Bond Totem Elemental Resistances,Searing Bond Totem +Helmet,Enchantment Wild Strike Area Of Effect 2,Eternal Labyrinth,36% increased Wild Strike Area of Effect,Wild Strike +Helmet,Enchantment Charged Dash Dodge When Finished Channelling 1,Merciless Labyrinth,4% chance to Dodge Attack Hits if you have finished Channelling Charged Dash Recently,Charged Dash +Helmet,Enchantment Summon Skeletons Additional Warrior Skeletons 2,Eternal Labyrinth,40% chance to Summon an additional Skeleton Warrior with Summon Skeleton,Summon Skeletons +Helmet,Enchantment Ancestral Warchief Damage 2,Eternal Labyrinth,40% increased Ancestral Warchief Totem Damage,Ancestral Warchief +Helmet,Enchantment Arc Damage 2,Eternal Labyrinth,40% increased Arc Damage,Arc +Helmet,Enchantment Ball Lightning Damage 2,Eternal Labyrinth,40% increased Ball Lightning Damage,Ball Lightning +Helmet,Enchantment Barrage Damage 2,Eternal Labyrinth,40% increased Barrage Damage,Barrage +Helmet,Enchantment Bear Trap Damage 2,Eternal Labyrinth,40% increased Bear Trap Damage,Bear Trap +Helmet,Enchantment Blade Flurry Damage 2,Eternal Labyrinth,40% increased Blade Flurry Damage,Blade Flurry +Helmet,Enchantment Blade Vortex Damage 2,Eternal Labyrinth,40% increased Blade Vortex Spell Damage,Blade Vortex +Helmet,Enchantment Bladefall Damage 2,Eternal Labyrinth,40% increased Bladefall Damage,Bladefall +Helmet,Enchantment Blight Damage 2,Eternal Labyrinth,40% increased Blight Damage,Blight +Helmet,Enchantment Body Swap Damage 2,Eternal Labyrinth,40% increased Bodyswap Damage,Body Swap +Helmet,Enchantment Burning Arrow Damage 2,Eternal Labyrinth,40% increased Burning Arrow Damage,Burning Arrow +Helmet,Enchantment Caustic Arrow Damage 2,Eternal Labyrinth,40% increased Caustic Arrow Damage,Caustic Arrow +Helmet,Enchantment Charged Dash Damage 2,Eternal Labyrinth,40% increased Charged Dash Damage,Charged Dash +Helmet,Enchantment Cleave Damage 2,Eternal Labyrinth,40% increased Cleave Damage,Cleave +Helmet,Enchantment Cold Snap Damage 2,Eternal Labyrinth,40% increased Cold Snap Damage,Cold Snap +Helmet,Enchantment Contagion Damage 2,Eternal Labyrinth,40% increased Contagion Damage,Contagion +Helmet,Enchantment Creeping Frost Damage 2,Eternal Labyrinth,40% increased Creeping Frost Damage,Creeping Frost +Helmet,Enchantment Cremation Damage 2,Eternal Labyrinth,40% increased Cremation Damage,Cremation +Helmet,Enchantment Cyclone Damage 2,Eternal Labyrinth,40% increased Cyclone Damage,Cyclone +Helmet,Enchantment Dark Pact Damage 2,Eternal Labyrinth,40% increased Dark Pact Damage,Dark Pact +Helmet,Enchantment Decoy Totem Life 1,Merciless Labyrinth,40% increased Decoy Totem Life,Decoy Totem +Helmet,Enchantment Detonate Dead Damage 2,Eternal Labyrinth,40% increased Detonate Dead Damage,Detonate Dead +Helmet,Enchantment Discharge Damage 2,Eternal Labyrinth,40% increased Discharge Damage,Discharge +Helmet,Enchantment Double Strike Damage 2,Eternal Labyrinth,40% increased Double Strike Damage,Double Strike +Helmet,Enchantment Dual Strike Damage 2,Eternal Labyrinth,40% increased Dual Strike Damage,Dual Strike +Helmet,Enchantment Earthquake Damage 2,Eternal Labyrinth,40% increased Earthquake Damage,Earthquake +Helmet,Enchantment Essence Drain Damage 2,Eternal Labyrinth,40% increased Essence Drain Damage,Essence Drain +Helmet,Enchantment Ethereal Knives Damage 2,Eternal Labyrinth,40% increased Ethereal Knives Damage,Ethereal Knives +Helmet,Enchantment Fire Trap Burning Damage 1,Merciless Labyrinth,40% increased Fire Trap Burning Damage,Fire Trap +Helmet,Enchantment Fire Trap Damage 2,Eternal Labyrinth,40% increased Fire Trap Damage,Fire Trap +Helmet,Enchantment Fireball Damage 2,Eternal Labyrinth,40% increased Fireball Damage,Fireball +Helmet,Enchantment Firestorm Damage 2,Eternal Labyrinth,40% increased Firestorm Damage,Firestorm +Helmet,Enchantment Flame Dash Damage 2,Eternal Labyrinth,40% increased Flame Dash Damage,Flame Dash +Helmet,Enchantment Flame Surge Damage 2,Eternal Labyrinth,40% increased Flame Surge Damage,Flame Surge +Helmet,Enchantment Flame Surge Vs Burning Enemies 1,Merciless Labyrinth,40% increased Flame Surge Damage against Burning Enemies,Flame Surge +Helmet,Enchantment Flameblast Damage 2,Eternal Labyrinth,40% increased Flameblast Damage,Flameblast +Helmet,Enchantment Flicker Strike Damage 2,Eternal Labyrinth,40% increased Flicker Strike Damage,Flicker Strike +Helmet,Enchantment Freezing Pulse Damage 2,Eternal Labyrinth,40% increased Freezing Pulse Damage,Freezing Pulse +Helmet,Enchantment Frenzy Damage 2,Eternal Labyrinth,40% increased Frenzy Damage,Frenzy +Helmet,Enchantment Frost Blades Damage 2,Eternal Labyrinth,40% increased Frost Blades Damage,Frost Blades +Helmet,Enchantment Frost Bomb Damage 2,Eternal Labyrinth,40% increased Frost Bomb Damage,Frost Bomb +Helmet,Enchantment Frost Bolt Damage 2,Eternal Labyrinth,40% increased Frostbolt Damage,Frost Bolt +Helmet,Enchantment Shrapnel Shot Damage 2,Eternal Labyrinth,40% increased Galvanic Arrow Damage,Shrapnel Shot +Helmet,Enchantment Glacial Cascade Damage 2,Eternal Labyrinth,40% increased Glacial Cascade Damage,Glacial Cascade +Helmet,Enchantment Glacial Hammer Damage 2,Eternal Labyrinth,40% increased Glacial Hammer Damage,Glacial Hammer +Helmet,Enchantment Ground Slam Damage 2,Eternal Labyrinth,40% increased Ground Slam Damage,Ground Slam +Helmet,Enchantment Heavy Strike Damage 2,Eternal Labyrinth,40% increased Heavy Strike Damage,Heavy Strike +Helmet,Enchantment Herald Of Ash Damage 2,Eternal Labyrinth,40% increased Herald of Ash Damage,Herald Of Ash +Helmet,Enchantment Herald Of Ice Damage 2,Eternal Labyrinth,40% increased Herald of Ice Damage,Herald Of Ice +Helmet,Enchantment Herald Of Thunder Damage 2,Eternal Labyrinth,40% increased Herald of Thunder Damage,Herald Of Thunder +Helmet,Enchantment Ice Crash Damage 2,Eternal Labyrinth,40% increased Ice Crash Damage,Ice Crash +Helmet,Enchantment Ice Nova Damage 2,Eternal Labyrinth,40% increased Ice Nova Damage,Ice Nova +Helmet,Enchantment Ice Shot Damage 2,Eternal Labyrinth,40% increased Ice Shot Damage,Ice Shot +Helmet,Enchantment Ice Trap Damage 2,Eternal Labyrinth,40% increased Ice Trap Damage,Ice Trap +Helmet,Enchantment Incinerate Damage 2,Eternal Labyrinth,40% increased Incinerate Damage,Incinerate +Helmet,Enchantment Infernal Blow Damage 2,Eternal Labyrinth,40% increased Infernal Blow Damage,Infernal Blow +Helmet,Enchantment Kinetic Blast Damage 2,Eternal Labyrinth,40% increased Kinetic Blast Damage,Kinetic Blast +Helmet,Enchantment Double Slash Critical Strikes 1,Merciless Labyrinth,40% increased Lacerate Critical Strike Chance,Double Slash +Helmet,Enchantment Lacerate Damage 2,Eternal Labyrinth,40% increased Lacerate Damage,Lacerate +Helmet,Enchantment Leap Slam Damage 2,Eternal Labyrinth,40% increased Leap Slam Damage,Leap Slam +Helmet,Enchantment Lightning Arrow Damage 2,Eternal Labyrinth,40% increased Lightning Arrow Damage,Lightning Arrow +Helmet,Enchantment Lightning Strike Damage 2,Eternal Labyrinth,40% increased Lightning Strike Damage,Lightning Strike +Helmet,Enchantment Lightning Tendrils Critical Strike Chance 1,Merciless Labyrinth,40% increased Lightning Tendrils Critical Strike Chance,Lightning Tendrils +Helmet,Enchantment Lightning Tendrils Damage 2,Eternal Labyrinth,40% increased Lightning Tendrils Damage,Lightning Tendrils +Helmet,Enchantment Lightning Trap Damage 2,Eternal Labyrinth,40% increased Lightning Trap Damage,Lightning Trap +Helmet,Enchantment Lightning Trap Shock Effect 2,Eternal Labyrinth,40% increased Lightning Trap Lightning Ailment Effect,Lightning Trap +Helmet,Enchantment Lightning Warp Damage 2,Eternal Labyrinth,40% increased Lightning Warp Damage,Lightning Warp +Helmet,Enchantment Magma Orb Damage 2,Eternal Labyrinth,40% increased Magma Orb Damage,Magma Orb +Helmet,Enchantment Molten Strike Damage 2,Eternal Labyrinth,40% increased Molten Strike Damage,Molten Strike +Helmet,Enchantment Orb Of Storms Damage 2,Eternal Labyrinth,40% increased Orb of Storms Damage,Orb Of Storms +Helmet,Enchantment Power Siphon Damage 2,Eternal Labyrinth,40% increased Power Siphon Damage,Power Siphon +Helmet,Enchantment Puncture Damage 2,Eternal Labyrinth,40% increased Puncture Damage,Puncture +Helmet,Enchantment Rain Of Arrows Damage 2,Eternal Labyrinth,40% increased Rain of Arrows Damage,Rain of Arrows +Helmet,Enchantment Reave Damage 2,Eternal Labyrinth,40% increased Reave Damage,Reave +Helmet,Enchantment Reckoning Damage 2,Eternal Labyrinth,40% increased Reckoning Damage,Reckoning +Helmet,Enchantment Righteous Fire Damage 2,Eternal Labyrinth,40% increased Righteous Fire Damage,Righteous Fire +Helmet,Enchantment Riposte Damage 2,Eternal Labyrinth,40% increased Riposte Damage,Riposte +Helmet,Enchantment Scorching Ray Damage 2,Eternal Labyrinth,40% increased Scorching Ray Damage,Scorching Ray +Helmet,Enchantment Searing Bond Damage 2,Eternal Labyrinth,40% increased Searing Bond Damage,Searing Bond +Helmet,Enchantment Searing Bond Totem Placement Speed 1,Merciless Labyrinth,40% increased Searing Bond Totem Placement Speed,Searing Bond Totem +Helmet,Enchantment Shield Charge Damage 2,Eternal Labyrinth,40% increased Shield Charge Damage,Shield Charge +Helmet,Enchantment Shock Nova Damage 2,Eternal Labyrinth,40% increased Shock Nova Damage,Shock Nova +Helmet,Enchantment Shockwave Totem Damage 2,Eternal Labyrinth,40% increased Shockwave Totem Damage,Shockwave Totem +Helmet,Enchantment Spark Damage 2,Eternal Labyrinth,40% increased Spark Damage,Spark +Helmet,Enchantment Spectral Shield Throw Damage 2,Eternal Labyrinth,40% increased Spectral Shield Throw Damage,Spectral Shield Throw +Helmet,Enchantment Spectral Throw Damage 2,Eternal Labyrinth,40% increased Spectral Throw Damage,Spectral Shield Throw +Helmet,Enchantment Split Arrow Damage 2,Eternal Labyrinth,40% increased Split Arrow Damage,Split Arrow +Helmet,Enchantment Static Strike Damage 2,Eternal Labyrinth,40% increased Static Strike Damage,Static Strike +Helmet,Enchantment Storm Burst Damage 2,Eternal Labyrinth,40% increased Storm Burst Damage,Storm Burst +Helmet,Enchantment Storm Call Damage 2,Eternal Labyrinth,40% increased Storm Call Damage,Storm Call +Helmet,Enchantment Sweep Damage 2,Eternal Labyrinth,40% increased Sweep Damage,Sweep +Helmet,Enchantment Tempest Shield Damage 2,Eternal Labyrinth,40% increased Tempest Shield Damage,Tempest Shield +Helmet,Enchantment Tornado Shot Damage 2,Eternal Labyrinth,40% increased Tornado Shot Damage,Tornado Shot +Helmet,Enchantment Unearth Damage 2,Eternal Labyrinth,40% increased Unearth Damage,Unearth +Helmet,Enchantment Vengeance Damage 2,Eternal Labyrinth,40% increased Vengeance Damage,Vengeance +Helmet,Enchantment Vigilant Strike Damage 2,Eternal Labyrinth,40% increased Vigilant Strike Damage,Vigilant Strike +Helmet,Enchantment Viper Strike Damage 2,Eternal Labyrinth,40% increased Viper Strike Damage,Viper Strike +Helmet,Enchantment Volatile Dead Damage 2,Eternal Labyrinth,40% increased Volatile Dead Damage,Volatile Dead +Helmet,Enchantment Vortex Damage 2,Eternal Labyrinth,40% increased Vortex Damage,Vortex +Helmet,Enchantment Whirling Blades Damage 2,Eternal Labyrinth,40% increased Whirling Blades Damage,Whirling Blades +Helmet,Enchantment Wild Strike Damage 2,Eternal Labyrinth,40% increased Wild Strike Damage,Wild Strike +Helmet,Enchantment Glacial Cascade Physical Damage Percent To Convert To Cold 2,Eternal Labyrinth,40% of Glacial Cascade Physical Damage Converted to Cold Damage,Glacial Cascade +Helmet,Enchantment Power Siphon Percent Chance To Gain Power Charge On Kill 2,Eternal Labyrinth,45% Chance to gain an additional Power Charge on Kill with Power Siphon,Power Siphon +Helmet,Enchantment Assassins Mark Duration 2,Eternal Labyrinth,45% increased Assassin's Mark Duration,Assassins Mark +Helmet,Enchantment Bone Offering Duration 2,Eternal Labyrinth,45% increased Bone Offering Duration,Bone Offering +Helmet,Enchantment Conductivity Duration 2,Eternal Labyrinth,45% increased Conductivity Duration,Conductivity +Helmet,Enchantment Despair Duration 2,Eternal Labyrinth,45% increased Despair Duration,Despair +Helmet,Enchantment Elemental Weakness Duration 2,Eternal Labyrinth,45% increased Elemental Weakness Duration,Elemental Weakness +Helmet,Enchantment Enfeeble Duration 2,Eternal Labyrinth,45% increased Enfeeble Duration,Enfeeble +Helmet,Enchantment Fire Trap Burning Ground Duration 2,Eternal Labyrinth,45% increased Fire Trap Burning Ground Duration,Fire Trap +Helmet,Enchantment Flammability Duration 2,Eternal Labyrinth,45% increased Flammability Duration,Flammability +Helmet,Enchantment Flesh Offering Duration 2,Eternal Labyrinth,45% increased Flesh Offering Duration,Flesh Offering +Helmet,Enchantment Frostbite Duration 2,Eternal Labyrinth,45% increased Frostbite Duration,Frostbite +Helmet,Enchantment Poachers Mark Duration 2,Eternal Labyrinth,45% increased Poacher's Mark Duration,Poachers Mark +Helmet,Enchantment Puncture Duration 2,Eternal Labyrinth,45% increased Puncture Duration,Puncture +Helmet,Enchantment Punishment Duration 2,Eternal Labyrinth,45% increased Punishment Duration,Punishment +Helmet,Enchantment Rejuvination Totem Life Regeneration 2,Eternal Labyrinth,45% increased Rejuvenation Totem Aura Effect,Rejuvination Totem +Helmet,Enchantment Spirit Offering Duration 2,Eternal Labyrinth,45% increased Spirit Offering Duration,Spirit Offering +Helmet,Enchantment Static Strike Duration 2,Eternal Labyrinth,45% increased Static Strike Duration,Static Strike +Helmet,Enchantment Temporal Chains Duration 2,Eternal Labyrinth,45% increased Temporal Chains Duration,Temporal Chains +Helmet,Enchantment Vigilant Strike Fortify Duration 2,Eternal Labyrinth,45% increased Vigilant Strike Fortify Duration,Vigilant Strike +Helmet,Enchantment Vulnerability Duration 2,Eternal Labyrinth,45% increased Vulnerability Duration,Vulnerability +Helmet,Enchantment Warlords Mark Duration 2,Eternal Labyrinth,45% increased Warlord's Mark Duration,Warlords Mark +Boots,Enchantment Spell Dodge 1,Cruel Labyrinth,5% chance to Dodge Spell Hits if you've, +Boots,Enchantment Stun Avoidance 1,Cruel Labyrinth,50% chance to Avoid being Stunned if you've Killed Recently, +Boots,Enchantment Mana Regeneration 2,Merciless Labyrinth,50% increased Mana Regeneration Rate if you've cast a Spell Recently, +Helmet,Enchantment Charged Dash Dodge When Finished Channelling 2,Eternal Labyrinth,6% chance to Dodge Attack Hits if you have finished Channelling Charged Dash Recently,Charged Dash +Boots,Enchantment Attack Dodge 1,Cruel Labyrinth,6% Chance to Dodge Attack Hits if you've taken a Critical Strike Recently, +Helmet,Enchantment Blade Flurry Dodge Per Stack 1,Merciless Labyrinth,6% chance to Dodge Attack Hits while at maximum Blade Flurry stages,Blade Flurry +Boots,Enchantment Spell Dodge 2,Merciless Labyrinth,6% chance to Dodge Spell Hits if you've, +Boots,Enchantment Status Ailments 1,Cruel Labyrinth,"6% chance to Freeze, Shock and Ignite if you haven't Crit Recently", +Helmet,Enchantment Flicker Strike Damage Per Frenzy Charge 1,Merciless Labyrinth,6% increased Flicker Strike Damage per Frenzy Charge,Flicker Strike +Helmet,Enchantment Frenzy Damage Per Frenzy Charge 1,Merciless Labyrinth,6% increased Frenzy Damage per Frenzy Charge,Frenzy +Boots,Enchantment Movement Speed 1,Cruel Labyrinth,6% increased Movement Speed if you haven't been Hit Recently, +Helmet,Enchantment Bladefall Critical Strike Chance 1,Merciless Labyrinth,60% increased Bladefall Critical Strike Chance,Bladefall +Boots,Enchantment Critical Strike Chance 1,Cruel Labyrinth,60% increased Critical Strike Chance if you haven't Crit Recently, +Helmet,Enchantment Decoy Totem Life 2,Eternal Labyrinth,60% increased Decoy Totem Life,Decoy Totem +Helmet,Enchantment Double Strike Critical Strike Chance 1,Merciless Labyrinth,60% increased Double Strike Critical Strike Chance,Double Strike +Helmet,Enchantment Dual Strike Critical Strike Chance 1,Merciless Labyrinth,60% increased Dual Strike Critical Strike Chance,Dual Strike +Helmet,Enchantment Fire Trap Burning Damage 2,Eternal Labyrinth,60% increased Fire Trap Burning Damage,Fire Trap +Helmet,Enchantment Flame Surge Critical Strike Chance 1,Merciless Labyrinth,60% increased Flame Surge Critical Strike Chance,Flame Surge +Helmet,Enchantment Flame Surge Vs Burning Enemies 2,Eternal Labyrinth,60% increased Flame Surge Damage against Burning Enemies,Flame Surge +Helmet,Enchantment Flameblast Critical Strike Chance 1,Merciless Labyrinth,60% increased Flameblast Critical Strike Chance,Flameblast +Helmet,Enchantment Double Slash Critical Strikes 2,Eternal Labyrinth,60% increased Lacerate Critical Strike Chance,Double Slash +Helmet,Enchantment Lightning Tendrils Critical Strike Chance 2,Eternal Labyrinth,60% increased Lightning Tendrils Critical Strike Chance,Lightning Tendrils +Helmet,Enchantment Orb of Storms Critical Strike Chance 1,Merciless Labyrinth,60% increased Orb of Storms Critical Strike Chance,Orb Of Storms +Helmet,Enchantment Searing Bond Totem Placement Speed 2,Eternal Labyrinth,60% increased Searing Bond Totem Placement Speed,Searing Bond Totem +Helmet,Enchantment Split Arrow Critical Strike Chance 1,Merciless Labyrinth,60% increased Split Arrow Critical Strike Chance,Split Arrow +Helmet,Enchantment Tornado Shot Critical Strike Chance 1,Merciless Labyrinth,60% increased Tornado Shot Critical Strike Chance,Tornado Shot +Helmet,Enchantment Viper Strike Critical Strike Chance 1,Merciless Labyrinth,60% increased Viper Strike Critical Strike Chance,Viper Strike +Boots,Enchantment Stun Avoidance 2,Merciless Labyrinth,65% chance to Avoid being Stunned if you've Killed Recently, +Boots,Enchantment Mana Regeneration 3,Eternal Labyrinth,70% increased Mana Regeneration Rate if you've cast a Spell Recently, +Helmet,Enchantment Chaos Golem Percent Additional Physical Damage Reduction 1,Merciless Labyrinth,75% increased Effect of the Buff granted by your Chaos Golems,Chaos Golem +Boots,Enchantment Attack Dodge 2,Merciless Labyrinth,8% Chance to Dodge Attack Hits if you've taken a Critical Strike Recently, +Boots,Enchantment Spell Dodge 3,Eternal Labyrinth,8% chance to Dodge Spell Hits if you've, +Boots,Enchantment Status Ailments 2,Merciless Labyrinth,"8% chance to Freeze, Shock and Ignite if you haven't Crit Recently", +Boots,Enchantment Attack and Cast Speed 1,Cruel Labyrinth,8% increased Attack and Cast Speed if you've Killed Recently, +Helmet,Enchantment Body Swap Cast Speed 1,Merciless Labyrinth,8% increased Bodyswap Cast Speed,Body Swap +Helmet,Enchantment Cremation Cast Speed 1,Merciless Labyrinth,8% increased Cremation Cast Speed,Cremation +Helmet,Enchantment Dack Pact Cast Speed 1,Merciless Labyrinth,8% increased Dark Pact Cast Speed,Dack Pact +Helmet,Enchantment Fireball Cast Speed 1,Merciless Labyrinth,8% increased Fireball Cast Speed,Fireball +Helmet,Enchantment Freezing Pulse Cast Speed 1,Merciless Labyrinth,8% increased Freezing Pulse Cast Speed,Freezing Pulse +Helmet,Enchantment Lightning Warp Cast Speed 1,Merciless Labyrinth,8% increased Lightning Warp Cast Speed,Lightning Warp +Boots,Enchantment Movement Speed 2,Merciless Labyrinth,8% increased Movement Speed if you haven't been Hit Recently, +Helmet,Enchantment Fire Beam Cast Speed 1,Merciless Labyrinth,8% increased Scorching Ray Cast Speed,Scorching Ray +Helmet,Enchantment Unearth Cast Speed 1,Merciless Labyrinth,8% increased Unearth Cast Speed,Unearth +Helmet,Enchantment Volatile Dead Cast Speed 1,Merciless Labyrinth,8% increased Volatile Dead Cast Speed,Volatile Dead +Boots,Enchantment Stun Avoidance 3,Eternal Labyrinth,80% chance to Avoid being Stunned if you've Killed Recently, +Helmet,Enchantment Blade Flurry Dodge Per Stack 2,Eternal Labyrinth,9% chance to Dodge Attack Hits while at maximum Blade Flurry stages,Blade Flurry +Helmet,Enchantment Flicker Strike Damage Per Frenzy Charge 2,Eternal Labyrinth,9% increased Flicker Strike Damage per Frenzy Charge,Flicker Strike +Helmet,Enchantment Frenzy Damage Per Frenzy Charge 2,Eternal Labyrinth,9% increased Frenzy Damage per Frenzy Charge,Frenzy +Helmet,Enchantment Bladefall Critical Strike Chance 2,Eternal Labyrinth,90% increased Bladefall Critical Strike Chance,Bladefall +Boots,Enchantment Critical Strike Chance 2,Merciless Labyrinth,90% increased Critical Strike Chance if you haven't Crit Recently, +Helmet,Enchantment Double Strike Critical Strike Chance 2,Eternal Labyrinth,90% increased Double Strike Critical Strike Chance,Double Strike +Helmet,Enchantment Dual Strike Critical Strike Chance 2,Eternal Labyrinth,90% increased Dual Strike Critical Strike Chance,Dual Strike +Helmet,Enchantment Flame Surge Critical Strike Chance 2,Eternal Labyrinth,90% increased Flame Surge Critical Strike Chance,Flame Surge +Helmet,Enchantment Flameblast Critical Strike Chance 2,Eternal Labyrinth,90% increased Flameblast Critical Strike Chance,Flameblast +Helmet,Enchantment Orb of Storms Critical Strike Chance 2,Eternal Labyrinth,90% increased Orb of Storms Critical Strike Chance,Orb Of Storms +Helmet,Enchantment Split Arrow Critical Strike Chance 2,Eternal Labyrinth,90% increased Split Arrow Critical Strike Chance,Split Arrow +Helmet,Enchantment Tornado Shot Critical Strike Chance 2,Eternal Labyrinth,90% increased Tornado Shot Critical Strike Chance,Tornado Shot +Helmet,Enchantment Viper Strike Critical Strike Chance 2,Eternal Labyrinth,90% increased Viper Strike Critical Strike Chance,Viper Strike +Boots,Enchantment Lightning Damage 2,Merciless Labyrinth,Adds 1 to 120 Lightning Damage if you haven't Killed Recently, +Boots,Enchantment Lightning Damage 3,Eternal Labyrinth,Adds 1 to 160 Lightning Damage if you haven't Killed Recently, +Boots,Enchantment Lightning Damage 1,Cruel Labyrinth,Adds 1 to 56 Lightning Damage if you haven't Killed Recently, +Boots,Enchantment Chaos Damage 3,Eternal Labyrinth,Adds 120 to 180 Chaos Damage if you've taken a Critical Strike Recently, +Boots,Enchantment Cold Damage 1,Cruel Labyrinth,Adds 16 to 24 Cold Damage if you've been Hit Recently, +Boots,Enchantment Fire Damage 1,Cruel Labyrinth,Adds 16 to 24 Fire Damage if you've Killed Recently, +Boots,Enchantment Cold Damage 2,Merciless Labyrinth,Adds 33 to 50 Cold Damage if you've been Hit Recently, +Boots,Enchantment Fire Damage 2,Merciless Labyrinth,Adds 33 to 50 Fire Damage if you've Killed Recently, +Boots,Enchantment Chaos Damage 1,Cruel Labyrinth,Adds 44 to 64 Chaos Damage if you've taken a Critical Strike Recently, +Boots,Enchantment Cold Damage 3,Eternal Labyrinth,Adds 45 to 68 Cold Damage if you've been Hit Recently, +Boots,Enchantment Fire Damage 3,Eternal Labyrinth,Adds 45 to 68 Fire Damage if you've Killed Recently, +Boots,Enchantment Chaos Damage 2,Merciless Labyrinth,Adds 88 to 132 Chaos Damage if you've taken a Critical Strike Recently, +Helmet,Enchantment Ancestral Cry Minimum Power 1,Eternal Labyrinth,Ancestral Cry has a minimum of 10 Power,Ancestral Cry +Helmet,Enchantment Ancestral Protector Damage 1,Merciless Labyrinth,Ancestral Protector Totem deals 25% increased Damage,Ancestral Protector +Helmet,Enchantment Ancestral Protector Damage 2,Eternal Labyrinth,Ancestral Protector Totem deals 40% increased Damage,Ancestral Protector +Helmet,Enchantment Ancestral Protector Attack Speed 1,Merciless Labyrinth,Ancestral Protector Totem grants 12% increased Attack Speed while Active,Ancestral Protector +Helmet,Enchantment Ancestral Protector Attack Speed 2,Eternal Labyrinth,Ancestral Protector Totem grants 18% increased Attack Speed while Active,Ancestral Protector +Helmet,Enchantment Ancestor Warchief Melee Damage 1,Merciless Labyrinth,Ancestral Warchief Totem grants 20% increased Melee Damage while Active,Ancestor Warchief +Helmet,Enchantment Ancestor Warchief Melee Damage 2,Eternal Labyrinth,Ancestral Warchief Totem grants 30% increased Melee Damage while Active,Ancestor Warchief +Helmet,Enchantment Anger Reservation 1,Merciless Labyrinth,Anger has 10% reduced Mana Reservation,Anger +Helmet,Enchantment Anger Reservation 2,Eternal Labyrinth,Anger has 15% reduced Mana Reservation,Anger +Helmet,Enchantment Animate Guardian Damage 1,Merciless Labyrinth,Animated Guardians deal 25% increased Damage,Animate Guardian +Helmet,Enchantment Animate Guardian Damage 2,Eternal Labyrinth,Animated Guardians deal 40% increased Damage,Animate Guardian +Helmet,Enchantment Animate Weapon Damage 1,Merciless Labyrinth,Animated Weapons deal 25% increased Damage,Animate Weapon +Helmet,Enchantment Animate Weapon Damage 2,Eternal Labyrinth,Animated Weapons deal 40% increased Damage,Animate Weapon +Helmet,Enchantment Arc Num Of Additional Projectiles In Chain 1,Eternal Labyrinth,Arc Chains an additional time,Arc +Helmet,Enchantment Arc Damage Per Chain 2,Eternal Labyrinth,Arc deals 12% increased Damage for each time it has Chained,Arc +Helmet,Enchantment Arc Damage Per Chain 1,Merciless Labyrinth,Arc deals 8% increased Damage for each time it has Chained,Arc +Helmet,Enchantment Arc Shock Chance 1,Merciless Labyrinth,Arc has +20% chance to Shock,Arc +Helmet,Enchantment Arc Shock Chance 2,Eternal Labyrinth,Arc has +30% chance to Shock,Arc +Helmet,Enchantment Arcane Cloak Grants Life Regeneration 1,Eternal Labyrinth,Arcane Cloak grants Life Regeneration equal to 15% of Mana Spent per Second,Arcane Cloak +Helmet,Enchantment Arcane Cloak Additional Mana Spent 1,Merciless Labyrinth,Arcane Cloak Spends an additional 10% of current Mana,Arcane Cloak +Helmet,Enchantment Arcane Cloak Additional Mana Spent 2,Eternal Labyrinth,Arcane Cloak Spends an additional 15% of current Mana,Arcane Cloak +Helmet,Enchantment Arcanist Brand Cast Speed 2,Eternal Labyrinth,Arcanist Brand has 12% increased Cast Speed,Arcanist Brand +Helmet,Enchantment Arcanist Brand Cast Speed 1,Merciless Labyrinth,Arcanist Brand has 8% increased Cast Speed,Arcanist Brand +Helmet,Enchantment Arctic Armour Mana Reservation 1,Merciless Labyrinth,Arctic Armour has 20% reduced Mana Reservation,Arctic Armour +Helmet,Enchantment Arctic Armour Mana Reservation 2,Eternal Labyrinth,Arctic Armour has 30% reduced Mana Reservation,Arctic Armour +Helmet,Armageddon Brand Attached Target Fire Penetration 2,Eternal Labyrinth,Armageddon Brand Damage Penetrates 12% of Branded Enemy's Fire Resistance,Armageddon Brand +Helmet,Armageddon Brand Attached Target Fire Penetration 1,Merciless Labyrinth,Armageddon Brand Damage Penetrates 8% of Branded Enemy's Fire Resistance,Armageddon Brand +Helmet,Enchantment Armageddon Brand Damage 1,Merciless Labyrinth,Armageddon Brand deals 25% increased Damage,Armageddon Brand +Helmet,Enchantment Armageddon Brand Damage 2,Eternal Labyrinth,Armageddon Brand deals 40% increased Damage,Armageddon Brand +Helmet,Armageddon Brand Repeat Frequency 2,Eternal Labyrinth,Armageddon Brand has 12% increased Activation Frequency,Armageddon Brand +Helmet,Armageddon Brand Repeat Frequency 1,Merciless Labyrinth,Armageddon Brand has 8% increased Activation Frequency,Armageddon Brand +Helmet,Enchantment Artillery Ballista Fire Penetration 2,Eternal Labyrinth,Artillery Ballista Damage Penetrates 10% Fire Resistance,Artillery Ballista +Helmet,Enchantment Artillery Ballista Fire Penetration 1,Merciless Labyrinth,Artillery Ballista Damage Penetrates 6% Fire Resistance,Artillery Ballista +Helmet,Enchantment Artillery Ballista Additional Arrows 2,Eternal Labyrinth,Artillery Ballista fires 2 additional Arrows,Artillery Ballista +Helmet,Enchantment Artillery Ballista Additional Arrows 1,Merciless Labyrinth,Artillery Ballista fires an additional Arrow,Artillery Ballista +Helmet,Enchantment Artillery Ballista Cross Pattern 1,Eternal Labyrinth,Artillery Ballista Projectiles fall in two perpendicular lines instead,Artillery Ballista +Helmet,Enchantment Ancestral Cry Exerted Attack Damage 1,Merciless Labyrinth,Attacks Exerted by Ancestral Cry deal 35% increased Damage,Ancestral Cry +Helmet,Enchantment Ancestral Cry Exerted Attack Damage 2,Eternal Labyrinth,Attacks Exerted by Ancestral Cry deal 50% increased Damage,Ancestral Cry +Helmet,Enchantment Seismic Cry Exerted Attack Damage 1,Merciless Labyrinth,Attacks Exerted by Seismic Cry deal 35% increased Damage,Seismic Cry +Helmet,Enchantment Seismic Cry Exerted Attack Damage 2,Eternal Labyrinth,Attacks Exerted by Seismic Cry deal 50% increased Damage,Seismic Cry +Helmet,Enchantment Ball Lightning Additional Projectiles 1,Eternal Labyrinth,Ball Lightning fires an additional Projectile,Ball Lightning +Helmet,Enchantment Bane Damage 1,Merciless Labyrinth,Bane deals 25% increased Damage,Bane +Helmet,Enchantment Bane Damage 2,Eternal Labyrinth,Bane deals 40% increased Damage,Bane +Helmet,Enchantment Bane Area Of Effect 1,Merciless Labyrinth,Bane has 16% increased Area of Effect,Bane +Helmet,Enchantment Bane Area Of Effect 2,Eternal Labyrinth,Bane has 24% increased Area of Effect,Bane +Helmet,Enchantment Barrage Num Of Additional Projectiles 1,Eternal Labyrinth,Barrage fires an additional Projectile,Barrage +Helmet,Enchantment Bear Trap Cooldown Speed 1,Merciless Labyrinth,Bear Trap has 10% increased Cooldown Recovery Rate,Bear Trap +Helmet,Enchantment Bear Trap Cooldown Speed 2,Eternal Labyrinth,Bear Trap has 15% increased Cooldown Recovery Rate,Bear Trap +Helmet,Enchantment Berserk Effect 1,Merciless Labyrinth,Berserk has 20% increased Buff Effect,Berserk +Helmet,Enchantment Berserk Rage Loss 1,Merciless Labyrinth,Berserk has 25% reduced Rage loss per second,Berserk +Helmet,Enchantment Berserk Effect 2,Eternal Labyrinth,Berserk has 30% increased Buff Effect,Berserk +Helmet,Enchantment Berserk Rage Loss 2,Eternal Labyrinth,Berserk has 40% reduced Rage loss per second,Berserk +Helmet,Enchantment Blade Blast Damage 1,Merciless Labyrinth,Blade Blast deals 25% increased Damage,Blade Blast +Helmet,Enchantment Blade Blast Damage 2,Eternal Labyrinth,Blade Blast deals 40% increased Damage,Blade Blast +Helmet,Enchantment Blade Blast Detonation Area 1,Merciless Labyrinth,Blade Blast detonates other Lingering Blades within an 50% increased Area,Blade Blast +Helmet,Enchantment Blade Blast Detonation Area 2,Eternal Labyrinth,Blade Blast detonates other Lingering Blades within an 75% increased Area,Blade Blast +Helmet,Enchantment Blade Blast Area of Effect 1,Merciless Labyrinth,Blade Blast has 16% increased Area of Effect,Blade Blast +Helmet,Enchantment Blade Blast Area of Effect 2,Eternal Labyrinth,Blade Blast has 24% increased Area of Effect,Blade Blast +Helmet,Enchantment Blade Vortex Crit Multi Per Blade 1,Merciless Labyrinth,Blade Vortex has +2% to Critical Strike Multiplier for each blade,Blade Vortex +Helmet,Enchantment Blade Vortex Crit Multi Per Blade 2,Eternal Labyrinth,Blade Vortex has +3% to Critical Strike Multiplier for each blade,Blade Vortex +Helmet,Enchantment Bladefall Additional Volley,Eternal Labyrinth,Bladefall has an additional Volley,Bladefall +Helmet,Enchantment Bladestorm Damage 1,Merciless Labyrinth,Bladestorm deals 25% increased Damage,Bladestorm +Helmet,Enchantment Bladestorm Damage 2,Eternal Labyrinth,Bladestorm deals 40% increased Damage,Bladestorm +Helmet,Enchantment Blast Rain Damage 1,Merciless Labyrinth,Blast Rain deals 25% increased Damage,Blast Rain +Helmet,Enchantment Blast Rain Damage 2,Eternal Labyrinth,Blast Rain deals 40% increased Damage,Blast Rain +Helmet,Enchantment Blast Rain Additional Blast 2,Eternal Labyrinth,Blast Rain fires an additional Arrow,Blast Rain +Helmet,Enchantment Blast Rain Area Of Effect 1,Merciless Labyrinth,Blast Rain has 16% increased Area of Effect,Blast Rain +Helmet,Enchantment Blast Rain Area Of Effect 2,Eternal Labyrinth,Blast Rain has 24% increased Area of Effect,Blast Rain +Helmet,Enchantment Blazing Salvo Damage 1,Merciless Labyrinth,Blazing Salvo deals 25% increased Damage,Blazing Salvo +Helmet,Enchantment Blazing Salvo Damage 2,Eternal Labyrinth,Blazing Salvo deals 40% increased Damage,Blazing Salvo +Helmet,Enchantment Blazing Salvo Num of Additional Projectiles 1,Eternal Labyrinth,Blazing Salvo fires an additional Projectile,Blazing +Helmet,Enchantment Blazing Salvo Spread Area 1,Merciless Labyrinth,Blazing Salvo Projectiles land in a 20% increased Area,Blazing Salvo +Helmet,Enchantment Blazing Salvo Spread Area 2,Eternal Labyrinth,Blazing Salvo Projectiles land in a 30% increased Area,Blazing Salvo +Helmet,Enchantment Blight Secondary Skill Duration 1,Merciless Labyrinth,Blight has 20% increased Hinder Duration,Blight +Helmet,Enchantment Blight Secondary Skill Duration 2,Eternal Labyrinth,Blight has 30% increased Hinder Duration,Blight +Helmet,Enchantment Blink Arrow Attack Speed 1,Merciless Labyrinth,Blink Arrow and Blink Arrow Clones have 10% increased Attack Speed,Blink Arrow +Helmet,Enchantment Blink Arrow Attack Speed 2,Eternal Labyrinth,Blink Arrow and Blink Arrow Clones have 15% increased Attack Speed,Blink Arrow +Helmet,Enchantment Blink Arrow Damage 1,Merciless Labyrinth,Blink Arrow and Blink Arrow Clones have 25% increased Damage,Blink Arrow +Helmet,Enchantment Blink Arrow Damage 2,Eternal Labyrinth,Blink Arrow and Blink Arrow Clones have 40% increased Damage,Blink Arrow +Helmet,Enchantment Blink Arrow Cooldown Speed 1,Merciless Labyrinth,Blink Arrow has 20% increased Cooldown Recovery Rate,Blink Arrow +Helmet,Enchantment Blink Arrow Cooldown Speed 2,Eternal Labyrinth,Blink Arrow has 30% increased Cooldown Recovery Rate,Blink Arrow +Helmet,Enchantment Blood and Sand Buff Effect 1,Merciless Labyrinth,Blood and Sand has 25% increased Buff Effect,Blood and Sand +Helmet,Enchantment Blood and Sand Buff Effect 2,Eternal Labyrinth,Blood and Sand has 40% increased Buff Effect,Blood and Sand +Helmet,Enchantment Blood Rage Attack Speed 2,Eternal Labyrinth,Blood Rage grants additional 12% increased Attack Speed,Blood Rage +Helmet,Enchantment Blood Rage Frenzy On Kill 1,Merciless Labyrinth,Blood Rage grants additional 20% chance to gain a Frenzy Charge on Kill,Blood Rage +Helmet,Enchantment Blood Rage Frenzy On Kill 2,Eternal Labyrinth,Blood Rage grants additional 30% chance to gain a Frenzy Charge on Kill,Blood Rage +Helmet,Enchantment Blood Rage Attack Speed 1,Merciless Labyrinth,Blood Rage grants additional 8% increased Attack Speed,Blood Rage +Helmet,Enchantment Bone Offering Block Chance 1,Merciless Labyrinth,Bone Offering grants an additional +6% Chance to Block Attack Damage,Bone Offering +Helmet,Enchantment Bone Offering Block Chance 2,Eternal Labyrinth,Bone Offering grants an additional +9% Chance to Block Attack Damage,Bone Offering +Helmet,Enchantment Burning Arrow Ignite Chance 1,Merciless Labyrinth,Burning Arrow has +20% chance to Ignite,Burning Arrow +Helmet,Enchantment Burning Arrow Ignite Chance 2,Eternal Labyrinth,Burning Arrow has +30% chance to Ignite,Burning Arrow +Helmet,Enchantment Burning Arrow Debuff Effect 1,Merciless Labyrinth,Burning Arrow has 16% increased Debuff Effect,Burning Arrow +Helmet,Enchantment Burning Arrow Debuff Effect 2,Eternal Labyrinth,Burning Arrow has 24% increased Debuff Effect,Burning Arrow +Helmet,Enchantment Caustic Arrow Wither On Hit 1,Merciless Labyrinth,Caustic Arrow has 14% chance to inflict Withered on Hit for 2 seconds base Duration,Caustic Arrow +Helmet,Enchantment Caustic Arrow Wither On Hit 2,Eternal Labyrinth,Caustic Arrow has 20% chance to inflict Withered on Hit for 2 seconds base Duration,Caustic Arrow +Helmet,Enchantment Chain Hook Damage 1,Merciless Labyrinth,Chain Hook deals 25% increased Damage,Chain Hook +Helmet,Enchantment Chain Hook Damage 2,Eternal Labyrinth,Chain Hook deals 40% increased Damage,Chain Hook +Helmet,Enchantment Chain Hook Cone Radius Per 12 Rage 1,Eternal Labyrinth,Chain Hook has +1 Radius per 12 Rage,Chain Hook +Helmet,Enchantment Chain Hook Gain Rage On Hit Chance 1,Merciless Labyrinth,Chain Hook has a 25% chance to grant +1 Rage if it Hits Enemies,Chain Hook +Helmet,Enchantment Chain Hook Gain Rage On Hit Chance 2,Eternal Labyrinth,Chain Hook has a 40% chance to grant +1 Rage if it Hits Enemies,Chain Hook +Helmet,Enchantment Sumon Chaos Golem Damage 1,Merciless Labyrinth,Chaos Golems deal 25% increased Damage,Sumon Chaos Golem +Helmet,Enchantment Sumon Chaos Golem Damage 2,Eternal Labyrinth,Chaos Golems deal 40% increased Damage,Sumon Chaos Golem +Helmet,Enchantment Charged Dash Radius Final Explosion 1,Merciless Labyrinth,Charged Dash has +4 to Radius of each Wave's last damage Area,Charged Dash +Helmet,Enchantment Charged Dash Radius Final Explosion 2,Eternal Labyrinth,Charged Dash has +6 to Radius of each Wave's last damage Area,Charged Dash +Helmet,Enchantment Charged Dash Movement Speed 1,Merciless Labyrinth,Charged Dash has 10% more Movement Speed,Charged Dash +Helmet,Enchantment Charged Dash Movement Speed 2,Eternal Labyrinth,Charged Dash has 15% more Movement Speed,Charged Dash +Helmet,Enchantment Ice Nova Minimum Chill 1,Merciless Labyrinth,Chills from Ice Nova Hits always reduce Action Speed by at least 6%,Ice Nova +Helmet,Enchantment Ice Nova Minimum Chill 2,Eternal Labyrinth,Chills from Ice Nova Hits always reduce Action Speed by at least 8%,Ice Nova +Helmet,Enchantment Clarity Mana Reservation 1,Merciless Labyrinth,Clarity has 20% reduced Mana Reservation,Clarity +Helmet,Enchantment Clarity Mana Reservation 2,Eternal Labyrinth,Clarity has 30% reduced Mana Reservation,Clarity +Helmet,Enchantment Cobra Lash Number Of Additional Chains 1,Merciless Labyrinth,Cobra Lash Chains 2 additional times,Cobra Lash +Helmet,Enchantment Cobra Lash Number Of Additional Chains 2,Eternal Labyrinth,Cobra Lash Chains 3 additional times,Cobra Lash +Helmet,Enchantment Cobra Lash Damage 1,Merciless Labyrinth,Cobra Lash deals 25% increased Damage,Cobra Lash +Helmet,Enchantment Cobra Lash Damage 2,Eternal Labyrinth,Cobra Lash deals 40% increased Damage,Cobra Lash +Helmet,Enchantment Cobra Lash Projectile Speed 1,Merciless Labyrinth,Cobra Lash has 20% increased Projectile Speed,Cobra Lash +Helmet,Enchantment Cobra Lash Projectile Speed 2,Eternal Labyrinth,Cobra Lash has 30% increased Projectile Speed,Cobra Lash +Helmet,Enchantment Cold Snap Cooldown Speed 1,Merciless Labyrinth,Cold Snap has 20% increased Cooldown Recovery Rate,Cold Snap +Helmet,Enchantment Cold Snap Cooldown Speed 2,Eternal Labyrinth,Cold Snap has 30% increased Cooldown Recovery Rate,Cold Snap +Helmet,Enchantment Infernal Cry Combust Area Of Effect 1,Eternal Labyrinth,Combust has 30% increased Area of Effect,Infernal Cry +Helmet,Enchantment Flame Totem Consecrated Ground Enemy Damage Taken 1,Merciless Labyrinth,Consecrated Ground from Holy Flame Totem applies 6% increased Damage taken to Enemies,Flame Totem +Helmet,Enchantment Flame Totem Consecrated Ground Enemy Damage Taken 2,Eternal Labyrinth,Consecrated Ground from Holy Flame Totem applies 9% increased Damage taken to Enemies,Flame Totem +Helmet,Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 1,Merciless Labyrinth,Consecrated Ground from Purifying Flame applies 6% increased Damage taken to Enemies,Purifying Flame +Helmet,Enchantment Purifying Flame Consecrated Ground Enemy Damage Taken 2,Eternal Labyrinth,Consecrated Ground from Purifying Flame applies 9% increased Damage taken to Enemies,Purifying Flame +Helmet,Enchantment Consecrated Path Damage 1,Merciless Labyrinth,Consecrated Path deals 25% increased Damage,Consecrated Path +Helmet,Enchantment Consecrated Path Damage 2,Eternal Labyrinth,Consecrated Path deals 40% increased Damage,Consecrated Path +Helmet,Enchantment Consecrated Path Range 1,Merciless Labyrinth,Consecrated Path has 10% increased teleport range,Consecrated Path +Helmet,Enchantment Consecrated Path Range 2,Eternal Labyrinth,Consecrated Path has 15% increased teleport range,Consecrated Path +Helmet,Enchantment Consecrated Path Area Of Effect 1,Merciless Labyrinth,Consecrated Path has 16% increased Area of Effect,Consecrated Path +Helmet,Enchantment Consecrated Path Area Of Effect 2,Eternal Labyrinth,Consecrated Path has 24% increased Area of Effect,Consecrated Path +Helmet,Enchantment Conversion Trap Cooldown Speed 1,Merciless Labyrinth,Conversion Trap 20% increased Cooldown Recovery Rate,Conversion Trap +Helmet,Enchantment Conversion Trap Cooldown Speed 2,Eternal Labyrinth,Conversion Trap 30% increased Cooldown Recovery Rate,Conversion Trap +Helmet,Enchantment Conversion Trap Damage 1,Merciless Labyrinth,Converted Enemies have 25% increased Damage,Conversion Trap +Helmet,Enchantment Conversion Trap Damage 2,Eternal Labyrinth,Converted Enemies have 40% increased Damage,Conversion Trap +Helmet,Enchantment Convocation Cooldown Speed 1,Merciless Labyrinth,Convocation has 20% increased Cooldown Recovery Rate,Convocation +Helmet,Enchantment Convocation Cooldown Speed 2,Eternal Labyrinth,Convocation has 30% increased Cooldown Recovery Rate,Convocation +Helmet,Enchantment Crackling Lance Damage 1,Merciless Labyrinth,Crackling Lance deals 25% increased Damage,Crackling Lance +Helmet,Enchantment Crackling Lance Damage 2,Eternal Labyrinth,Crackling Lance deals 40% increased Damage,Crackling Lance +Helmet,Enchantment Crackling Lance Cast Speed 2,Eternal Labyrinth,Crackling Lance has 16% increased Cast Speed,Crackling Lance +Helmet,Enchantment Crackling Lance Beam Angle 2,Eternal Labyrinth,Crackling Lance has 18% increased branching angle,Crackling Lance +Helmet,Enchantment Crackling Lance Beam Angle 1,Merciless Labyrinth,Crackling Lance has 24% increased branching angle,Crackling Lance +Helmet,Enchantment Crackling Lance Cast Speed 1,Merciless Labyrinth,Crackling Lance has 8% increased Cast Speed,Crackling Lance +Helmet,Enchantment Creeping Frost Chilling Area Movement Velocity 1,Eternal Labyrinth,Creeping Frost's Chilling Area has 38% increased Movement Speed,Creeping Frost +Helmet,Enchantment Cremation Maximum Geysers 1,Eternal Labyrinth,Cremation can have up to 1 additional Geyser at a time,Cremation +Boots,Enchantment Elemental Penetration 3,Eternal Labyrinth,Damage Penetrates 10% of Enemy Elemental Resistances if you haven't Killed Recently, +Boots,Enchantment Elemental Penetration 1,Cruel Labyrinth,Damage Penetrates 6% of Enemy Elemental Resistances if you haven't Killed Recently, +Boots,Enchantment Elemental Penetration 2,Merciless Labyrinth,Damage Penetrates 8% of Enemy Elemental Resistances if you haven't Killed Recently, +Helmet,Enchantment Dash Cooldown Count 1,Merciless Labyrinth,Dash has +1 Cooldown Use,Dash +Helmet,Enchantment Dash Cooldown Count 2,Eternal Labyrinth,Dash has +2 Cooldown Uses,Dash +Helmet,Enchantment Dash Travel Distance 2,Eternal Labyrinth,Dash travels 100% increased distance,Dash +Helmet,Enchantment Dash Travel Distance 1,Merciless Labyrinth,Dash travels 65% increased distance,Dash +Helmet,Enchantment Desecrate Additional Corpse 1,Merciless Labyrinth,Desecrate Spawns 2 additional corpses,Desecrate +Helmet,Enchantment Desecrate Additional Corpse 2,Eternal Labyrinth,Desecrate Spawns 3 additional corpses,Desecrate +Helmet,Enchantment Determination Mana Reservation 1,Merciless Labyrinth,Determination has 10% reduced Mana Reservation,Determination +Helmet,Enchantment Determination Mana Reservation 2,Eternal Labyrinth,Determination has 15% reduced Mana Reservation,Determination +Helmet,Enchantment Detonate Dead Percent Chance To Detonate Additional Corpse 1,Merciless Labyrinth,Detonate Dead has a 30% chance to detonate an additional corpse,Detonate Dead +Helmet,Enchantment Detonate Dead Percent Chance To Detonate Additional Corpse 2,Eternal Labyrinth,Detonate Dead has a 45% chance to detonate an additional corpse,Detonate Dead +Helmet,Enchantment Devouring Totem Percent Chance To Consume Additional Corpse 1,Merciless Labyrinth,Devouring Totem has 40% Chance to Consume an additional corpse,Devouring Totem +Helmet,Enchantment Devouring Totem Percent Chance To Consume Additional Corpse 2,Eternal Labyrinth,Devouring Totem has 60% Chance to Consume an additional corpse,Devouring Totem +Helmet,Enchantment Discharge Radius 1,Merciless Labyrinth,Discharge has +3 to Radius,Discharge +Helmet,Enchantment Discharge Radius 2,Eternal Labyrinth,Discharge has +5 to Radius,Discharge +Helmet,Enchantment Discipline Mana Reservation 1,Merciless Labyrinth,Discipline has 14% reduced Mana Reservation,Discipline +Helmet,Enchantment Discipline Mana Reservation 2,Eternal Labyrinth,Discipline has 20% reduced Mana Reservation,Discipline +Helmet,Enchantment Divine Ire Number Of Additional Nearby Enemies To Zap 2,Eternal Labyrinth,Divine Ire Damages 2 additional nearby Enemies when gaining Stages,Divine Ire +Helmet,Enchantment Divine Ire Number Of Additional Nearby Enemies To Zap 1,Merciless Labyrinth,Divine Ire Damages an additional nearby Enemy when gaining Stages,Divine Ire +Helmet,Enchantment Divine Ire Damage 1,Merciless Labyrinth,Divine Ire deals 25% increased Damage,Divine Ire +Helmet,Enchantment Divine Ire Damage 2,Eternal Labyrinth,Divine Ire deals 40% increased Damage,Divine Ire +Helmet,Enchantment Divine Ire Beam Width 1,Merciless Labyrinth,Divine Ire's beam has 10% increased width,Divine Ire +Helmet,Enchantment Divine Ire Beam Width 2,Eternal Labyrinth,Divine Ire's beam has 15% increased width,Divine Ire +Helmet,Enchantment Dominating Blow Additional Magic 1,Merciless Labyrinth,Dominating Blow can summon 2 additional Magic Sentinels of Dominance,Dominating Blow +Helmet,Enchantment Dominating Blow Additional Magic 2,Eternal Labyrinth,Dominating Blow can summon 3 additional Magic Sentinels of Dominance,Dominating Blow +Helmet,Enchantment Dominating Blow Additional Rare 1,Eternal Labyrinth,Dominating Blow can summon an additional Rare Sentinel of Dominance,Dominating Blow +Helmet,Enchantment Double Strike Double Damage Vs Bleeding 1,Merciless Labyrinth,Double Strike has a 10% chance to deal Double Damage to Bleeding Enemies,Double Strike +Helmet,Enchantment Double Strike Double Damage Vs Bleeding 2,Eternal Labyrinth,Double Strike has a 15% chance to deal Double Damage to Bleeding Enemies,Double Strike +Helmet,Enchantment Dread Banner Effect 1,Merciless Labyrinth,Dread Banner has 25% increased Aura Effect,Dread Banner +Helmet,Enchantment Dread Banner Effect 2,Eternal Labyrinth,Dread Banner has 40% increased Aura Effect,Dread Banner +Helmet,Enchantment Earthquake Damage per 0.1s Duration 1,Merciless Labyrinth,Earthquake deals 5% increased Damage per 0.1 seconds Duration,Earthquake +Helmet,Enchantment Earthquake Damage per 0.1s Duration 2,Eternal Labyrinth,Earthquake deals 8% increased Damage per 0.1 seconds Duration,Earthquake +Helmet,Enchantment Earthshatter Additional Spike 1,Eternal Labyrinth,Earthshatter creates +1 fissures,Earthshatter +Helmet,Enchantment Earthshatter Damage 1,Merciless Labyrinth,Earthshatter deals 25% increased Damage,Earthshatter +Helmet,Enchantment Earthshatter Damage 2,Eternal Labyrinth,Earthshatter deals 40% increased Damage,Earthshatter +Helmet,Enchantment Earthshatter Radius 1,Merciless Labyrinth,Earthshatter has 16% increased Area of Effect,Earthshatter +Helmet,Enchantment Earthshatter Radius 2,Eternal Labyrinth,Earthshatter has 24% increased Area of Effect,Earthshatter +Belt,EnchantmentExposure,Eternal Labyrinth of Potential,Elemental Ailments inflicted on Enemies Exposed by you have 20% increased Duration, +Helmet,Enchantment Elemental Hit Damage 1,Merciless Labyrinth,Elemental Hit deals 25% increased Damage,Elemental Hit +Helmet,Enchantment Elemental Hit Damage 2,Eternal Labyrinth,Elemental Hit deals 40% increased Damage,Elemental Hit +Helmet,Enchantment Elemental Hit Chance To Freeze Shock Ignite 1,Merciless Labyrinth,"Elemental Hit has +20% chance to Freeze, Shock and Ignite",Elemental Hit +Helmet,Enchantment Elemental Hit Chance To Freeze Shock Ignite 2,Eternal Labyrinth,"Elemental Hit has +30% chance to Freeze, Shock and Ignite",Elemental Hit +Helmet,Enchantment Enduring Cry Additional Endurance Charge 1,Eternal Labyrinth,Enduring Cry grants 1 additional Endurance Charge,Enduring Cry +Helmet,Enchantment Enduring Cry Cooldown Speed 1,Merciless Labyrinth,Enduring Cry has 20% increased Cooldown Recovery Rate,Enduring Cry +Helmet,Enchantment Enduring Cry Cooldown Speed 2,Eternal Labyrinth,Enduring Cry has 30% increased Cooldown Recovery Rate,Enduring Cry +Helmet,Enchantment Bear Trap Damage Taken 2,Eternal Labyrinth,Enemies affected by Bear Trap take 10% increased Damage from Trap or Mine Hits,Bear Trap +Helmet,Enchantment Bear Trap Damage Taken 1,Merciless Labyrinth,Enemies affected by Bear Trap take 5% increased Damage from Trap or Mine Hits,Bear Trap +Belt,EnchantmentBlind,Eternal Labyrinth of Potential,Enemies Blinded by you have 30% reduced Critical Strike Chance, +Belt,EnchantmentHinder,Eternal Labyrinth of Potential,Enemies Hindered by you have 50% reduced Life Regeneration rate, +Helmet,Enchantment Void Sphere Damage Taken 2,Eternal Labyrinth,"Enemies in Void Sphere's range take up to 10% increased Damage, based on distance from the Void Sphere",Void Sphere +Helmet,Enchantment Void Sphere Damage Taken 1,Merciless Labyrinth,"Enemies in Void Sphere's range take up to 6% increased Damage, based on distance from the Void Sphere",Void Sphere +Belt,EnchantmentIntimidate,Eternal Labyrinth of Potential,Enemies Intimidated by you have 20% increased duration of stuns against them, +Belt,EnchantmentMaim,Eternal Labyrinth of Potential,Enemies Maimed by you take 8% increased Damage Over Time, +Belt,EnchantmentTaunt,Eternal Labyrinth of Potential,Enemies Taunted by you deal 5% less Area Damage, +Belt,EnchantmentWither_,Eternal Labyrinth of Potential,Enemies Withered by you have -6% to all Resistances, +Helmet,Enchantment Ensnaring Arrow Debuff Effect 1,Merciless Labyrinth,Ensnaring Arrow has 20% increased Debuff Effect,Ensnaring Arrow +Helmet,Enchantment Ensnaring Arrow Debuff Effect 2,Eternal Labyrinth,Ensnaring Arrow has 30% increased Debuff Effect,Ensnaring Arrow +Helmet,Enchantment Ensnaring Arrow Area Of Effect 1,Merciless Labyrinth,Ensnaring Arrow has 60% increased Area of Effect,Ensnaring Arrow +Helmet,Enchantment Ensnaring Arrow Area Of Effect 2,Eternal Labyrinth,Ensnaring Arrow has 90% increased Area of Effect,Ensnaring Arrow +Helmet,Enchantment Ethereal Knives Number Of Targets To Pierce 1,Eternal Labyrinth,Ethereal Knives Pierces an additional Target,Ethereal Knives +Helmet,Enchantment Explosive Arrow Damage 1,Merciless Labyrinth,Explosive Arrow deals 25% increased Damage,Explosive Arrow +Helmet,Enchantment Explosive Arrow Damage 2,Eternal Labyrinth,Explosive Arrow deals 40% increased Damage,Explosive Arrow +Helmet,Enchantment Explosive Arrow Attack Speed 1,Merciless Labyrinth,Explosive Arrow has 10% increased Attack Speed,Explosive Arrow +Helmet,Enchantment Explosive Arrow Attack Speed 2,Eternal Labyrinth,Explosive Arrow has 15% increased Attack Speed,Explosive Arrow +Helmet,Enchantment Explosive Arrow Area Of Effect 1,Merciless Labyrinth,Explosive Arrow has 16% increased Area of Effect,Explosive Arrow +Helmet,Enchantment Explosive Arrow Reduced Duration 1,Merciless Labyrinth,Explosive Arrow has 20% reduced Duration,Explosive Arrow +Helmet,Enchantment Explosive Arrow Area Of Effect 2,Eternal Labyrinth,Explosive Arrow has 24% increased Area of Effect,Explosive Arrow +Helmet,Enchantment Explosive Arrow Increased Duration 1,Merciless Labyrinth,Explosive Arrow has 25% increased Duration,Explosive Arrow +Helmet,Enchantment Explosive Arrow Reduced Duration 2,Eternal Labyrinth,Explosive Arrow has 30% reduced Duration,Explosive Arrow +Helmet,Enchantment Explosive Arrow Increased Duration 2,Eternal Labyrinth,Explosive Arrow has 40% increased Duration,Explosive Arrow +Helmet,Enchantment Shrapnel Trap Secondary Explosions 2,Eternal Labyrinth,Explosive Trap causes 2 additional smaller explosions,Shrapnel Trap +Helmet,Enchantment Shrapnel Trap Secondary Explosions 1,Merciless Labyrinth,Explosive Trap causes an additional smaller explosion,Shrapnel Trap +Helmet,Enchantment Shrapnel Trap Damage 1,Merciless Labyrinth,Explosive Trap deals 25% increased Damage,Shrapnel Trap +Helmet,Enchantment Shrapnel Trap Damage 2,Eternal Labyrinth,Explosive Trap deals 40% increased Damage,Shrapnel Trap +Helmet,Enchantment Shrapnel Trap Radius 1,Merciless Labyrinth,Explosive Trap has 16% increased Area of Effect,Shrapnel Trap +Helmet,Enchantment Shrapnel Trap Radius 2,Eternal Labyrinth,Explosive Trap has 24% increased Area of Effect,Shrapnel Trap +Helmet,Enchantment Fireball Ignite Chance 1,Merciless Labyrinth,Fireball has +20% chance to Ignite,Fireball +Helmet,Enchantment Fireball Ignite Chance 2,Eternal Labyrinth,Fireball has +30% chance to Ignite,Fireball +Helmet,Enchantment Flame Dash Cooldown Speed 1,Merciless Labyrinth,Flame Dash has 20% increased Cooldown Recovery Rate,Flame Dash +Helmet,Enchantment Flame Dash Cooldown Speed 2,Eternal Labyrinth,Flame Dash has 30% increased Cooldown Recovery Rate,Flame Dash +Helmet,Enchantment Summon Flame Golem Damage 1,Merciless Labyrinth,Flame Golems have 25% increased Damage,Summon Flame Golem +Helmet,Enchantment Summon Flame Golem Damage 2,Eternal Labyrinth,Flame Golems have 40% increased Damage,Summon Flame Golem +Helmet,Enchantment Flame Wall Damage 1,Merciless Labyrinth,Flame Wall deals 25% increased Damage,Flame Wall +Helmet,Enchantment Flame Wall Damage 2,Eternal Labyrinth,Flame Wall deals 40% increased Damage,Flame Wall +Helmet,Enchantment Flame Wall Added Damage 1,Merciless Labyrinth,Flame Wall grants 19 to 28 Added Fire Damage to Projectiles,Flame Wall +Helmet,Enchantment Flame Wall Added Damage 2,Eternal Labyrinth,Flame Wall grants 31 to 47 Added Fire Damage to Projectiles,Flame Wall +Helmet,Enchantment Flamethrower Trap Damage 1,Merciless Labyrinth,Flamethrower Trap deals 25% increased Damage,Flamethrower Trap +Helmet,Enchantment Flamethrower Trap Damage 2,Eternal Labyrinth,Flamethrower Trap deals 40% increased Damage,Flamethrower Trap +Helmet,Enchantment Flamethrower Trap Cooldown Speed 1,Merciless Labyrinth,Flamethrower Trap has 10% increased Cooldown Recovery Rate,Flamethrower Trap +Helmet,Enchantment Flamethrower Trap Cast Speed 2,Eternal Labyrinth,Flamethrower Trap has 12% increased Cast Speed,Flamethrower Trap +Helmet,Enchantment Flamethrower Trap Cooldown Speed 2,Eternal Labyrinth,Flamethrower Trap has 15% increased Cooldown Recovery Rate,Flamethrower Trap +Helmet,Enchantment Flamethrower Additional Flamethrowers 2,Eternal Labyrinth,Flamethrower Trap has 2 additional Flames,Flamethrower +Helmet,Enchantment Flamethrower Trap Duration 1,Merciless Labyrinth,Flamethrower Trap has 20% increased Skill Effect Duration,Flamethrower Trap +Helmet,Enchantment Flamethrower Trap Duration 2,Eternal Labyrinth,Flamethrower Trap has 30% increased Skill Effect Duration,Flamethrower Trap +Helmet,Enchantment Flamethrower Trap Cast Speed 1,Merciless Labyrinth,Flamethrower Trap has 8% increased Cast Speed,Flamethrower Trap +Helmet,Enchantment Flamethrower Additional Flamethrowers 1,Merciless Labyrinth,Flamethrower Trap has an additional Flame,Flamethrower +Helmet,Enchantment Flesh and Stone Mana Reservation 1,Merciless Labyrinth,Flesh and Stone has 20% reduced Mana Reservation,Flesh and Stone +Helmet,Enchantment Flesh and Stone Mana Reservation 2,Eternal Labyrinth,Flesh and Stone has 30% reduced Mana Reservation,Flesh and Stone +Helmet,Enchantment Flesh Offering Attack Speed 1,Merciless Labyrinth,Flesh Offering grants an additional 14% increased Attack Speed,Flesh Offering +Helmet,Enchantment Flesh Offering Attack Speed 2,Eternal Labyrinth,Flesh Offering grants an additional 21% increased Attack Speed,Flesh Offering +Helmet,Enchantment Flicker Strike Cooldown Speed 1,Merciless Labyrinth,Flicker Strike has 20% increased Cooldown Recovery Rate,Flicker Strike +Helmet,Enchantment Flicker Strike Cooldown Speed 2,Eternal Labyrinth,Flicker Strike has 30% increased Cooldown Recovery Rate,Flicker Strike +Helmet,Enchantment Frost Bomb Cooldown Speed 1,Merciless Labyrinth,Frost Bomb has 20% increased Cooldown Recovery Rate,Frost Bomb +Helmet,Enchantment Frost Bomb Increased Duration 1,Merciless Labyrinth,Frost Bomb has 20% increased Debuff Duration,Frost Bomb +Helmet,Enchantment Frost Bomb Cooldown Speed 2,Eternal Labyrinth,Frost Bomb has 30% increased Cooldown Recovery Rate,Frost Bomb +Helmet,Enchantment Frost Bomb Increased Duration 2,Eternal Labyrinth,Frost Bomb has 30% increased Debuff Duration,Frost Bomb +Helmet,Enchantment Frost Shield Cooldown Count 1,Eternal Labyrinth,Frost Shield has +1 Cooldown Use,Frost Shield +Helmet,Enchantment Frost Wall Cooldown Speed 1,Merciless Labyrinth,Frost Wall has 20% increased Cooldown Recovery Rate,Frost Wall +Helmet,Enchantment Frost Wall Cooldown Speed 2,Eternal Labyrinth,Frost Wall has 30% increased Cooldown Recovery Rate,Frost Wall +Helmet,Enchantment Frostblink Cooldown Speed 1,Merciless Labyrinth,Frostblink has 20% increased Cooldown Recovery Rate,Frostblink +Helmet,Enchantment Frostblink Cooldown Speed 2,Eternal Labyrinth,Frostblink has 30% increased Cooldown Recovery Rate,Frostblink +Helmet,Enchantment Frostblink Travel Distance 1,Merciless Labyrinth,Frostblink has 50% increased maximum travel distance,Frostblink +Helmet,Enchantment Frostblink Travel Distance 2,Eternal Labyrinth,Frostblink has 75% increased maximum travel distance,Frostblink +Helmet,Enchantment Frost Bolt Freeze Chance 1,Merciless Labyrinth,Frostbolt has +10% chance to Freeze,Frost Bolt +Helmet,Enchantment Frost Bolt Freeze Chance 2,Eternal Labyrinth,Frostbolt has +15% chance to Freeze,Frost Bolt +Helmet,Enchantment Rejuvination Totem Percent Life Regeneration Added As Mana Regeneration 1,Merciless Labyrinth,Gain 10% of Rejuvenation Totem Life Regeneration as extra Mana Regeneration,Rejuvination Totem +Helmet,Enchantment Rejuvination Totem Percent Life Regeneration Added As Mana Regeneration 2,Eternal Labyrinth,Gain 15% of Rejuvenation Totem Life Regeneration as extra Mana Regeneration,Rejuvination Totem +Helmet,Enchantment Galvanic Arrow Projectile Speed 1,Merciless Labyrinth,Galvanic Arrow has 20% increased Projectile Speed,Galvanic Arrow +Helmet,Enchantment Galvanic Arrow Projectile Speed 2,Eternal Labyrinth,Galvanic Arrow has 30% increased Projectile Speed,Galvanic Arrow +Helmet,Enchantment General's Cry Additional Mirage Warrior 1,Eternal Labyrinth,General's Cry has +1 to maximum number of Mirage Warriors,General's Cry +Helmet,Enchantment General's Cry Cooldown Speed 1,Merciless Labyrinth,General's Cry has 20% increased Cooldown Recovery Rate,General's Cry +Helmet,Enchantment General's Cry Cooldown Speed 2,Eternal Labyrinth,General's Cry has 30% increased Cooldown Recovery Rate,General's Cry +Helmet,Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 2,Eternal Labyrinth,Glacial Cascade gains 10% of Physical Damage as Extra Cold Damage,Glacial Cascade +Helmet,Enchantment Glacial Cascade Physical Damage Percent To Add As Cold 1,Merciless Labyrinth,Glacial Cascade gains 6% of Physical Damage as Extra Cold Damage,Glacial Cascade +Helmet,Enchantment Glacial Hammer Freeze Chance 1,Merciless Labyrinth,Glacial Hammer has +20% chance to Freeze,Glacial Hammer +Helmet,Enchantment Glacial Hammer Freeze Chance 2,Eternal Labyrinth,Glacial Hammer has +30% chance to Freeze,Glacial Hammer +Helmet,Enchantment Grace Mana Reservation 1,Merciless Labyrinth,Grace has 10% reduced Mana Reservation,Grace +Helmet,Enchantment Grace Mana Reservation 2,Eternal Labyrinth,Grace has 15% reduced Mana Reservation,Grace +Helmet,Enchantment Ground Slam Angle 1,Merciless Labyrinth,Ground Slam has a 16% increased angle,Ground Slam +Helmet,Enchantment Ground Slam Angle 2,Eternal Labyrinth,Ground Slam has a 24% increased angle,Ground Slam +Helmet,Enchantment Haste Mana Reservation 1,Merciless Labyrinth,Haste has 10% reduced Mana Reservation,Haste +Helmet,Enchantment Haste Mana Reservation 2,Eternal Labyrinth,Haste has 15% reduced Mana Reservation,Haste +Helmet,Enchantment Hatred Mana Reservation 1,Merciless Labyrinth,Hatred has 10% reduced Mana Reservation,Hatred +Helmet,Enchantment Hatred Mana Reservation 2,Eternal Labyrinth,Hatred has 15% reduced Mana Reservation,Hatred +Helmet,Enchantment Heavy Strike Double Damage 2,Eternal Labyrinth,Heavy Strike has a 12% chance to deal Double Damage,Heavy Strike +Helmet,Enchantment Heavy Strike Double Damage 1,Merciless Labyrinth,Heavy Strike has a 8% chance to deal Double Damage,Heavy Strike +Helmet,Enchantment Herald Of Agony Mana Reservation 1,Merciless Labyrinth,Herald of Agony has 20% reduced Mana Reservation,Herald Of Agony +Helmet,Enchantment Herald Of Agony Mana Reservation 2,Eternal Labyrinth,Herald of Agony has 30% reduced Mana Reservation,Herald Of Agony +Helmet,Enchantment Herald Of Ash Mana Reservation 1,Merciless Labyrinth,Herald of Ash has 20% reduced Mana Reservation,Herald Of Ash +Helmet,Enchantment Herald Of Ash Mana Reservation 2,Eternal Labyrinth,Herald of Ash has 30% reduced Mana Reservation,Herald Of Ash +Helmet,Enchantment Herald Of Ice Mana Reservation 1,Merciless Labyrinth,Herald of Ice has 20% reduced Mana Reservation,Herald Of Ice +Helmet,Enchantment Herald Of Ice Mana Reservation 2,Eternal Labyrinth,Herald of Ice has 30% reduced Mana Reservation,Herald Of Ice +Helmet,Enchantment Herald Of Purity Mana Reservation 1,Merciless Labyrinth,Herald of Purity has 20% reduced Mana Reservation,Herald Of Purity +Helmet,Enchantment Herald Of Purity Mana Reservation 2,Eternal Labyrinth,Herald of Purity has 30% reduced Mana Reservation,Herald Of Purity +Helmet,Enchantment Herald Of Thunder Mana Reservation 1,Merciless Labyrinth,Herald of Thunder has 20% reduced Mana Reservation,Herald Of Thunder +Helmet,Enchantment Herald Of Thunder Mana Reservation 2,Eternal Labyrinth,Herald of Thunder has 30% reduced Mana Reservation,Herald Of Thunder +Helmet,Enchantment Hexblast Damage 1,Merciless Labyrinth,Hexblast deals 25% increased Damage,Hexblast +Helmet,Enchantment Hexblast Damage 2,Eternal Labyrinth,Hexblast deals 40% increased Damage,Hexblast +Helmet,Enchantment Hexblast Chance to not Consume Hex 1,Merciless Labyrinth,Hexblast has 10% chance to not remove a Hex,Hexblast +Helmet,Enchantment Hexblast Chance to not Consume Hex 2,Eternal Labyrinth,Hexblast has 15% chance to not remove a Hex,Hexblast +Helmet,Enchantment Hexblast Area Of Effect 1,Merciless Labyrinth,Hexblast has 16% increased Area of Effect,Hexblast +Helmet,Enchantment Hexblast Area Of Effect 2,Eternal Labyrinth,Hexblast has 24% increased Area of Effect,Hexblast +Belt,EnchantmentUnnerve,Eternal Labyrinth of Potential,Hits against Enemies Unnerved by you have 50% increased Spell Critical Strike Chance, +Helmet,Enchantment Flame Totem Damage 1,Merciless Labyrinth,Holy Flame Totem deals 25% increased Damage,Flame Totem +Helmet,Enchantment Flame Totem Damage 2,Eternal Labyrinth,Holy Flame Totem deals 40% increased Damage,Flame Totem +Helmet,Enchantment Flame Totem Num Of Additional Projectiles 2,Eternal Labyrinth,Holy Flame Totem fires 2 additional Projectiles,Flame Totem +Helmet,Enchantment Flame Totem Num Of Additional Projectiles 1,Merciless Labyrinth,Holy Flame Totem fires an additional Projectile,Flame Totem +Helmet,Enchantment Flame Totem Projectile Speed 1,Merciless Labyrinth,Holy Flame Totem has 20% increased Projectile Speed,Flame Totem +Helmet,Enchantment Flame Totem Projectile Speed 2,Eternal Labyrinth,Holy Flame Totem has 30% increased Projectile Speed,Flame Totem +Helmet,Enchantment Summon Ice Golem Damage 1,Merciless Labyrinth,Ice Golems deal 25% increased Damage,Summon Ice Golem +Helmet,Enchantment Summon Ice Golem Damage 2,Eternal Labyrinth,Ice Golems deal 40% increased Damage,Summon Ice Golem +Helmet,Enchantment Ice Nova Freeze Chance 1,Merciless Labyrinth,Ice Nova has +20% chance to Freeze,Ice Nova +Helmet,Enchantment Ice Nova Freeze Chance 2,Eternal Labyrinth,Ice Nova has +30% chance to Freeze,Ice Nova +Helmet,Enchantment Ice Shot Cone Angle 1,Merciless Labyrinth,Ice Shot has 30% increased Area of Effect angle,Ice Shot +Helmet,Enchantment Ice Shot Cone Angle 2,Eternal Labyrinth,Ice Shot has 60% increased Area of Effect angle,Ice Shot +Helmet,Enchantment Ice Spear Additional Projectile 1,Eternal Labyrinth,Ice Spear fires an additional Projectile,Ice Spear +Helmet,Enchantment Ice Spear Distance Before Form Change 1,Merciless Labyrinth,Ice Spear travels 20% reduced distance before changing forms,Ice Spear +Helmet,Enchantment Ice Spear Distance Before Form Change 2,Eternal Labyrinth,Ice Spear travels 30% reduced distance before changing forms,Ice Spear +Helmet,Enchantment Ice Trap Cold Penetration 2,Eternal Labyrinth,Ice Trap Damage Penetrates 10% Cold Resistance,Ice Trap +Helmet,Enchantment Ice Trap Cold Penetration 1,Merciless Labyrinth,Ice Trap Damage Penetrates 6% Cold Resistance,Ice Trap +Helmet,Enchantment Icicle Mine Damage 1,Merciless Labyrinth,Icicle Mine deals 25% increased Damage,Icicle Mine +Helmet,Enchantment Icicle Mine Damage 2,Eternal Labyrinth,Icicle Mine deals 40% increased Damage,Icicle Mine +Helmet,Enchantment Icicle Mine Critical Multiplier 1,Merciless Labyrinth,Icicle Mine has +20% to Critical Strike Multiplier,Icicle Mine +Helmet,Enchantment Icicle Mine Critical Multiplier 2,Eternal Labyrinth,Icicle Mine has +30% to Critical Strike Multiplier,Icicle Mine +Helmet,Enchantment Icicle Mine Throwing Speed 1,Merciless Labyrinth,Icicle Mine has 10% increased Throwing Speed,Icicle Mine +Helmet,Enchantment Icicle MineThrowing Speed 2,Eternal Labyrinth,Icicle Mine has 15% increased Throwing Speed,Icicle Mine +Helmet,Enchantment Incinerate Maximum Stages 1,Merciless Labyrinth,Incinerate has +1 to maximum stages,Incinerate +Helmet,Enchantment Incinerate Maximum Stages 2,Eternal Labyrinth,Incinerate has +2 to maximum stages,Incinerate +Helmet,Enchantment Incinerate Area Of Effect 1,Merciless Labyrinth,Incinerate has 16% increased Area of Effect,Incinerate +Helmet,Enchantment Incinerate Area Of Effect 2,Eternal Labyrinth,Incinerate has 24% increased Area of Effect,Incinerate +Helmet,Enchantment Infernal Blow Increased Damage Per Stack 1,Merciless Labyrinth,Infernal Blow Debuff deals an additional 3% of Damage per Charge,Infernal Blow +Helmet,Enchantment Infernal Blow Increased Damage Per Stack 2,Eternal Labyrinth,Infernal Blow Debuff deals an additional 5% of Damage per Charge,Infernal Blow +Helmet,Enchantment Infernal Cry Cooldown Speed 1,Merciless Labyrinth,Infernal Cry has 20% increased Cooldown Recovery Rate,Infernal Cry +Helmet,Enchantment Infernal Cry Cooldown Speed 2,Eternal Labyrinth,Infernal Cry has 30% increased Cooldown Recovery Rate,Infernal Cry +Helmet,Enchantment Intimidating Cry Area Of Effect 1,Merciless Labyrinth,Intimidating Cry has 16% increased Area of Effect,Intimidating Cry +Helmet,Enchantment Intimidating Cry Cooldown Speed 1,Merciless Labyrinth,Intimidating Cry has 20% increased Cooldown Recovery Rate,Intimidating Cry +Helmet,Enchantment Intimidating Cry Area Of Effect 2,Eternal Labyrinth,Intimidating Cry has 24% increased Area of Effect,Intimidating Cry +Helmet,Enchantment Intimidating Cry Cooldown Speed 2,Eternal Labyrinth,Intimidating Cry has 30% increased Cooldown Recovery Rate,Intimidating Cry +Helmet,Enchantment Kinetic Blast Explosions 1,Merciless Labyrinth,Kinetic Blast has a 50% chance for an additional explosion,Kinetic Blast +Helmet,Enchantment Kinetic Blast Explosions 2,Eternal Labyrinth,Kinetic Blast has a 75% chance for an additional explosion,Kinetic Blast +Helmet,Enchantment Kinetic Bolt Extra Bounces 1,Merciless Labyrinth,Kinetic Bolt changes direction 1 additional time,Kinetic Bolt +Helmet,Enchantment Kinetic Bolt Extra Bounces 2,Eternal Labyrinth,Kinetic Bolt changes direction 2 additional times,Kinetic Bolt +Helmet,Enchantment Kinetic Bolt Attack Speed 1,Merciless Labyrinth,Kinetic Bolt has 10% increased Attack Speed,Kinetic Bolt +Helmet,Enchantment Kinetic Bolt Attack Speed 2,Eternal Labyrinth,Kinetic Bolt has 15% increased Attack Speed,Kinetic Bolt +Helmet,Enchantment Kinetic Bolt Projectile Speed 1,Merciless Labyrinth,Kinetic Bolt has 20% increased Projectile Speed,Kinetic Bolt +Helmet,Enchantment Kinetic Bolt Projectile Speed 2,Eternal Labyrinth,Kinetic Bolt has 30% increased Projectile Speed,Kinetic Bolt +Helmet,Enchantment Double Slash Added Phys To Bleeding 2,Eternal Labyrinth,Lacerate deals 14 to 25 added Physical Damage against Bleeding Enemies,Double Slash +Helmet,Enchantment Double Slash Added Phys To Bleeding 1,Merciless Labyrinth,Lacerate deals 4 to 15 added Physical Damage against Bleeding Enemies,Double Slash +Helmet,Enchantment Lancing Steel Damage 1,Merciless Labyrinth,Lancing Steel deals 25% increased Damage,Lancing Steel +Helmet,Enchantment Lancing Steel Damage 2,Eternal Labyrinth,Lancing Steel deals 40% increased Damage,Lancing Steel +Helmet,Enchantment Lancing Steel Number of Additional Projectiles 1,Eternal Labyrinth,Lancing Steel fires an additional Projectile,Lancing +Helmet,Enchantment Lancing Steel Chance To Not Consume Shards 1,Merciless Labyrinth,Lancing Steel has 20% chance count as consumeing Steel Shards without Consuming them,Lancing Steel +Helmet,Enchantment Lancing Steel Chance To Not Consume Shards 2,Eternal Labyrinth,Lancing Steel has 30% chance count as consumeing Steel Shards without Consuming them,Lancing Steel +Helmet,Enchantment Lancing Steel Impale Chance 1,Merciless Labyrinth,Lancing Steel's additional Projectiles have +20% chance to Impale Enemies,Lancing Steel +Helmet,Enchantment Lancing Steel Impale Chance 2,Eternal Labyrinth,Lancing Steel's additional Projectiles have +30% chance to Impale Enemies,Lancing Steel +Helmet,Enchantment Lancing Steel Primary Proj Pierce Num 1,Merciless Labyrinth,Lancing Steel's primary Projectile Pierces 3 additional Targets,Lancing Steel +Helmet,Enchantment Lancing Steel Primary Proj Pierce Num 2,Eternal Labyrinth,Lancing Steel's primary Projectile Pierces 5 additional Targets,Lancing Steel +Helmet,Enchantment Lightning Arrow Extra Targets 2,Eternal Labyrinth,Lightning Arrow hits 2 additional Enemies,Lightning Arrow +Helmet,Enchantment Lightning Arrow Extra Targets 1,Merciless Labyrinth,Lightning Arrow hits an additional Enemy,Lightning Arrow +Helmet,Enchantment Summon Lightning Golem Damage 1,Merciless Labyrinth,Lightning Golems deal 25% increased Damage,Summon Lightning Golem +Helmet,Enchantment Summon Lightning Golem Damage 2,Eternal Labyrinth,Lightning Golems deal 40% increased Damage,Summon Lightning Golem +Helmet,Enchantment Lightning Tower Trap Damage 1,Merciless Labyrinth,Lightning Spire Trap deals 25% increased Damage,Lightning Spire Trap +Helmet,Enchantment Lightning Tower Trap Damage 2,Eternal Labyrinth,Lightning Spire Trap deals 40% increased Damage,Lightning Spire Trap +Helmet,Enchantment Lightning Tower Trap Cooldown Speed 1,Merciless Labyrinth,Lightning Spire Trap has 10% increased Cooldown Recovery Rate,Lightning Spire Trap +Helmet,Enchantment Lightning Tower Trap Cast Speed 2,Eternal Labyrinth,Lightning Spire Trap has 12% increased Cast Speed,Lightning Spire Trap +Helmet,Enchantment Lightning Tower Trap Cooldown Speed 2,Eternal Labyrinth,Lightning Spire Trap has 15% increased Cooldown Recovery Rate,Lightning Spire Trap +Helmet,Enchantment Lightning Tower Trap Duration 1,Merciless Labyrinth,Lightning Spire Trap has 20% increased Skill Effect Duration,Lightning Spire Trap +Helmet,Enchantment Lightning Tower Trap Duration 2,Eternal Labyrinth,Lightning Spire Trap has 30% increased Skill Effect Duration,Lightning Spire Trap +Helmet,Enchantment Lightning Tower Trap Cast Speed 1,Merciless Labyrinth,Lightning Spire Trap has 8% increased Cast Speed,Lightning Spire Trap +Helmet,Enchantment Lightning Tower Trap Additional Beams 1,Eternal Labyrinth,Lightning Spire Trap strikes an additional area,Lightning Spire Trap +Helmet,Enchantment Lightning Strike Num Of Additional Projectiles 1,Merciless Labyrinth,Lightning Strike fires 2 additional Projectiles,Lightning Strike +Helmet,Enchantment Lightning Strike Num Of Additional Projectiles 2,Eternal Labyrinth,Lightning Strike fires 3 additional Projectiles,Lightning Strike +Helmet,Enchantment Lightning Strike Additional Pierce 1,Merciless Labyrinth,Lightning Strike pierces 2 additional Targets,Lightning Strike +Helmet,Enchantment Lightning Strike Additional Pierce 2,Eternal Labyrinth,Lightning Strike pierces 3 additional Targets,Lightning Strike +Helmet,Enchantment Lightning Trap Penetration 2,Eternal Labyrinth,Lightning Trap Damage Penetrates 10% Lightning Resistance,Lightning Trap +Helmet,Enchantment Lightning Trap Penetration 1,Merciless Labyrinth,Lightning Trap Damage Penetrates 6% Lightning Resistance,Lightning Trap +Helmet,Enchantment Lightning Trap Additional Pierce 1,Merciless Labyrinth,Lightning Trap pierces 2 additional Targets,Lightning Trap +Helmet,Enchantment Lightning Trap Additional Pierce 2,Eternal Labyrinth,Lightning Trap pierces 3 additional Targets,Lightning Trap +Helmet,Enchantment Magma Orb Num Of Additional Projectiles In Chain 2,Eternal Labyrinth,Magma Orb Chains an additional time,Magma Orb +Helmet,Enchantment Malevolence Mana Reservation 1,Merciless Labyrinth,Malevolence has 10% reduced Mana Reservation,Malevolence +Helmet,Enchantment Malevolence Mana Reservation 2,Eternal Labyrinth,Malevolence has 15% reduced Mana Reservation,Malevolence +Helmet,Enchantment Mirror Arrow Damage 1,Merciless Labyrinth,Mirror Arrow and Mirror Arrow Clones deal 25% increased Damage,Mirror Arrow +Helmet,Enchantment Mirror Arrow Damage 2,Eternal Labyrinth,Mirror Arrow and Mirror Arrow Clones deal 40% increased Damage,Mirror Arrow +Helmet,Enchantment Mirror Arrow Attack Speed 1,Merciless Labyrinth,Mirror Arrow and Mirror Arrow Clones have 10% increased Attack Speed,Mirror Arrow +Helmet,Enchantment Mirror Arrow Attack Speed 2,Eternal Labyrinth,Mirror Arrow and Mirror Arrow Clones have 15% increased Attack Speed,Mirror Arrow +Helmet,Enchantment Mirror Arrow Cooldown Speed 1,Merciless Labyrinth,Mirror Arrow has 20% increased Cooldown Recovery Rate,Mirror Arrow +Helmet,Enchantment Mirror Arrow Cooldown Speed 2,Eternal Labyrinth,Mirror Arrow has 30% increased Cooldown Recovery Rate,Mirror Arrow +Helmet,Enchantment Molten Shell Duration 1,Merciless Labyrinth,Molten Shell has 25% increased Skill Effect Duration,Molten Shell +Helmet,Enchantment Molten Shell Duration 2,Eternal Labyrinth,Molten Shell has 40% increased Skill Effect Duration,Molten Shell +Helmet,Enchantment Molten Strike Num Of Additional Projectiles 2,Eternal Labyrinth,Molten Strike fires 2 additional Projectiles,Molten Strike +Helmet,Enchantment Molten Strike Num Of Additional Projectiles 1,Merciless Labyrinth,Molten Strike fires an additional Projectile,Molten Strike +Helmet,Enchantment Orb Of Storms Cast Speed 1,Merciless Labyrinth,Orb of Storms has 20% increased Cast Speed,Orb Of Storms +Helmet,Enchantment Orb Of Storms Cast Speed 2,Eternal Labyrinth,Orb of Storms has 30% increased Cast Speed,Orb Of Storms +Helmet,Enchantment Penance Brand Damage 1,Merciless Labyrinth,Penance Brand deals 25% increased Damage,Penance Brand +Helmet,Enchantment Penance Brand Damage 2,Eternal Labyrinth,Penance Brand deals 40% increased Damage,Penance Brand +Helmet,Enchantment Penance Brand Cast Speed 2,Eternal Labyrinth,Penance Brand has 12% increased Cast Speed,Penance Brand +Helmet,Enchantment Penance Brand Radius 1,Merciless Labyrinth,Penance Brand has 16% increased Area of Effect,Penance Brand +Helmet,Enchantment Penance Brand Radius 2,Eternal Labyrinth,Penance Brand has 24% increased Area of Effect,Penance Brand +Helmet,Enchantment Penance Brand Cast Speed 1,Merciless Labyrinth,Penance Brand has 8% increased Cast Speed,Penance Brand +Helmet,Enchantment Perforate Number Of Spikes 1,Merciless Labyrinth,Perforate creates +1 Spike,Perforate +Helmet,Enchantment Perforate Number Of Spikes 2,Eternal Labyrinth,Perforate creates +2 Spikes,Perforate +Helmet,Enchantment Perforate Damage 1,Merciless Labyrinth,Perforate deals 25% increased Damage,Perforate +Helmet,Enchantment Perforate Damage 2,Eternal Labyrinth,Perforate deals 40% increased Damage,Perforate +Helmet,Enchantment Perforate Area Of Effect 1,Merciless Labyrinth,Perforate has 16% increased Area of Effect,Perforate +Helmet,Enchantment Perforate Area Of Effect 2,Eternal Labyrinth,Perforate has 24% increased Area of Effect,Perforate +Helmet,Enchantment Pestilent Strike Damage 1,Merciless Labyrinth,Pestilent Strike deals 25% increased Damage,Pestilent Strike +Helmet,Enchantment Pestilent Strike Damage 2,Eternal Labyrinth,Pestilent Strike deals 40% increased Damage,Pestilent Strike +Helmet,Enchantment Pestilent Strike Area Of Effect 1,Merciless Labyrinth,Pestilent Strike has 16% increased Area of Effect,Pestilent Strike +Helmet,Enchantment Pestilent Strike Area Of Effect 2,Eternal Labyrinth,Pestilent Strike has 24% increased Area of Effect,Pestilent Strike +Helmet,Enchantment Pestilent Strike Duration 1,Merciless Labyrinth,Pestilent Strike has 25% increased Duration,Pestilent Strike +Helmet,Enchantment Pestilent Strike Duration 2,Eternal Labyrinth,Pestilent Strike has 40% increased Duration,Pestilent Strike +Helmet,Enchantment Plague Bearer Poison Dot Multiplier While Aura Active 1,Merciless Labyrinth,Plague Bearer Buff grants +12% to Poison Damage over Time Multiplier while Infecting,Plague Bearer +Helmet,Enchantment Plague Bearer Poison Dot Multiplier While Aura Active 2,Eternal Labyrinth,Plague Bearer Buff grants +20% to Poison Damage over Time Multiplier while Infecting,Plague Bearer +Helmet,Enchantment Plague Bearer Stored Poison Damage To Deal Per Second 1,Merciless Labyrinth,Plague Bearer deals Damage based on an additional 3% of Plague Value,Plague Bearer +Helmet,Enchantment Plague Bearer Stored Poison Damage To Deal Per Second 2,Eternal Labyrinth,Plague Bearer deals Damage based on an additional 5% of Plague Value,Plague Bearer +Helmet,Enchantment Power Siphon Additional Projectiles 2,Eternal Labyrinth,Power Siphon fires 2 additional Projectiles,Power Siphon +Helmet,Enchantment Power Siphon Additional Projectiles 1,Merciless Labyrinth,Power Siphon fires an additional Projectile,Power Siphon +Helmet,Enchantment Precision Mana Reservation 1,Merciless Labyrinth,Precision has 20% reduced Mana Reservation,Precision +Helmet,Enchantment Precision Mana Reservation 2,Eternal Labyrinth,Precision has 30% reduced Mana Reservation,Precision +Helmet,Enchantment Pride Mana Reservation 1,Merciless Labyrinth,Pride has 10% reduced Mana Reservation,Pride +Helmet,Enchantment Pride Mana Reservation 2,Eternal Labyrinth,Pride has 15% reduced Mana Reservation,Pride +Helmet,Enchantment Purifying Flame Damage 1,Merciless Labyrinth,Purifying Flame deals 25% increased Damage,Purifying Flame +Helmet,Enchantment Purifying Flame Damage 2,Eternal Labyrinth,Purifying Flame deals 40% increased Damage,Purifying Flame +Helmet,Enchantment Purifying Flame Area Of Effect When Targeting Consecrated Ground 1,Merciless Labyrinth,Purifying Flame has 20% increased Area of Effect if targeting Consecrated Ground,Purifying Flame +Helmet,Enchantment Purifying Flame Area Of Effect When Targeting Consecrated Ground 2,Eternal Labyrinth,Purifying Flame has 30% increased Area of Effect if targeting Consecrated Ground,Purifying Flame +Helmet,Enchantment Purity Of Elements Mana Reservation 1,Merciless Labyrinth,Purity of Elements has 14% reduced Mana Reservation,Purity Of Elements +Helmet,Enchantment Purity Of Elements Mana Reservation 2,Eternal Labyrinth,Purity of Elements has 20% reduced Mana Reservation,Purity Of Elements +Helmet,Enchantment Purity Of Fire Mana Reservation 1,Merciless Labyrinth,Purity of Fire has 14% reduced Mana Reservation,Purity Of Fire +Helmet,Enchantment Purity Of Fire Mana Reservation 2,Eternal Labyrinth,Purity of Fire has 20% reduced Mana Reservation,Purity Of Fire +Helmet,Enchantment Purity Of Ice Mana Reservation 1,Merciless Labyrinth,Purity of Ice has 14% reduced Mana Reservation,Purity Of Fire +Helmet,Enchantment Purity Of Ice Mana Reservation 2,Eternal Labyrinth,Purity of Ice has 20% reduced Mana Reservation,Purity Of Fire +Helmet,Enchantment Purity Of Lightning Mana Reservation 1,Merciless Labyrinth,Purity of Lightning has 14% reduced Mana Reservation,Purity Of Lightning +Helmet,Enchantment Purity Of Lightning Mana Reservation 2,Eternal Labyrinth,Purity of Lightning has 20% reduced Mana Reservation,Purity Of Lightning +Helmet,Enchantment Pyroclast Mine Damage 1,Merciless Labyrinth,Pyroclast Mine deals 25% increased Damage,Pyroclast Mine +Helmet,Enchantment Pyroclast Mine Damage 2,Eternal Labyrinth,Pyroclast Mine deals 40% increased Damage,Pyroclast Mine +Helmet,Enchantment Pyroclast Mine Additional Projectiles 1,Eternal Labyrinth,Pyroclast Mine fires an additional Projectile,Pyroclast Mine +Helmet,Enchantment Pyroclast Mine Throwing Speed 1,Merciless Labyrinth,Pyroclast Mine has 10% increased Throwing Speed,Pyroclast Mine +Helmet,Enchantment Pyroclast Mine Throwing Speed 2,Eternal Labyrinth,Pyroclast Mine has 15% increased Throwing Speed,Pyroclast Mine +Helmet,Enchantment Rain Of Arrows Repeat Count 1,Merciless Labyrinth,Rain of Arrows has 10% chance to fire an additional sequence of arrows,Rain of Arrows +Helmet,Enchantment Rain Of Arrows Repeat Count 2,Eternal Labyrinth,Rain of Arrows has 15% chance to fire an additional sequence of arrows,Rain of Arrows +Helmet,Enchantment Raise Zombie Damage 1,Merciless Labyrinth,Raised Zombies deal 25% increased Damage,Raise Zombie +Helmet,Enchantment Raise Zombie Damage 2,Eternal Labyrinth,Raised Zombies deal 40% increased Damage,Raise Zombie +Helmet,Enchantment Zombie Elemental Resistances 1,Merciless Labyrinth,Raised Zombies have +24% to Elemental Resistances,Raise Zombies +Helmet,Enchantment Zombie Elemental Resistances 2,Eternal Labyrinth,Raised Zombies have +36% to Elemental Resistances,Raise Zombies +Helmet,Enchantment Zombie Attack Speed 1,Merciless Labyrinth,Raised Zombies have 10% increased Attack Speed,Raise Zombies +Helmet,Enchantment Zombie Attack Speed 2,Eternal Labyrinth,Raised Zombies have 15% increased Attack Speed,Raise Zombies +Helmet,Enchantment Rallying Cry Additional Exert 1,Eternal Labyrinth,Rallying Cry Exerts 1 additional Attack,Rallying Cry +Helmet,Enchantment Reckoning Cooldown Speed 1,Merciless Labyrinth,Reckoning has 20% increased Cooldown Recovery Rate,Reckoning +Helmet,Enchantment Reckoning Cooldown Speed 2,Eternal Labyrinth,Reckoning has 30% increased Cooldown Recovery Rate,Reckoning +Belt,EnchantmentRage_,Eternal Labyrinth of Potential,Recover 2% of Life when you Kill an Enemy while you have Rage, +Boots,Enchantment Regeneration 2,Merciless Labyrinth,Regenerate 1.5% of Life per second if you were Hit Recently, +Boots,Enchantment Regeneration 1,Cruel Labyrinth,Regenerate 1% of Life per second if you were Hit Recently, +Boots,Enchantment Regeneration 3,Eternal Labyrinth,Regenerate 2% of Life per second if you were Hit Recently, +Helmet,Enchantment Righteous Fire Spell Damage 1,Merciless Labyrinth,Righteous Fire grants 20% increased Spell Damage,Righteous Fire +Helmet,Enchantment Righteous Fire Spell Damage 2,Eternal Labyrinth,Righteous Fire grants 30% increased Spell Damage,Righteous Fire +Helmet,Enchantment Riposte Cooldown Speed 1,Merciless Labyrinth,Riposte has 20% increased Cooldown Recovery Rate,Riposte +Helmet,Enchantment Riposte Cooldown Speed 2,Eternal Labyrinth,Riposte has 30% increased Cooldown Recovery Rate,Riposte +Helmet,Enchantment Rune Blast Teleport 1,Merciless Labyrinth,Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second,Rune Blast +Helmet,Enchantment Rune Blast Teleport 2,Eternal Labyrinth,Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds,Rune Blast +Helmet,Enchantment Bladestorm Sandstorm Speed 1,Merciless Labyrinth,Sand Bladestorms move with 50% increased speed,Bladestorm +Helmet,Enchantment Bladestorm Sandstorm Speed 2,Eternal Labyrinth,Sand Bladestorms move with 75% increased speed,Bladestorm +Helmet,Enchantment Scourge Arrow Additional Spore 1,Eternal Labyrinth,Scourge Arrow creates an additional spore pod at Maximum Stages,Scourge Arrow +Helmet,Enchantment Scourge Arrow Damage 1,Merciless Labyrinth,Scourge Arrow deals 25% increased Damage,Scourge Arrow +Helmet,Enchantment Scourge Arrow Damage 2,Eternal Labyrinth,Scourge Arrow deals 40% increased Damage,Scourge Arrow +Helmet,Enchantment Scourge Arrow Chance To Poison 1,Merciless Labyrinth,Scourge Arrow has 6% chance to Poison per Stage,Scourge Arrow +Helmet,Enchantment Scourge Arrow Chance To Poison 2,Eternal Labyrinth,Scourge Arrow has 8% chance to Poison per Stage,Scourge Arrow +Helmet,Enchantment Seismic Cry Minimum Power 1,Eternal Labyrinth,Seismic Cry has a minimum of 10 Power,Seismic Cry +Helmet,Enchantment Physical Cascade Trap Damage 1,Merciless Labyrinth,Seismic Trap deals 25% increased Damage,Seismic Trap +Helmet,Enchantment Physical Cascade Trap Damage 2,Eternal Labyrinth,Seismic Trap deals 40% increased Damage,Seismic Trap +Helmet,Enchantment Physical Cascade Cooldown Speed 1,Merciless Labyrinth,Seismic Trap has 10% increased Cooldown Recovery Rate,Seismic Trap +Helmet,Enchantment Physical Cascade Cooldown Speed 2,Eternal Labyrinth,Seismic Trap has 15% increased Cooldown Recovery Rate,Seismic Trap +Helmet,Enchantment Physical Cascade Trap Duration 1,Merciless Labyrinth,Seismic Trap has 20% increased Skill Effect Duration,Seismic Trap +Helmet,Enchantment Physical Cascade Trap Duration 2,Eternal Labyrinth,Seismic Trap has 30% increased Skill Effect Duration,Seismic Trap +Helmet,Enchantment Physical Cascade Additional Cascades 1,Eternal Labyrinth,Seismic Trap releases an additional Wave,Seismic Trap +Helmet,Enchantment Shattering Steel Damage 1,Merciless Labyrinth,Shattering Steel deals 25% increased Damage,Shattering Steel +Helmet,Enchantment Shattering Steel Damage 2,Eternal Labyrinth,Shattering Steel deals 40% increased Damage,Shattering Steel +Helmet,Enchantment Shattering Steel Fortify On Hit Close Range 1,Eternal Labyrinth,Shattering Steel grants Fortify on Hitting an Enemy at Close Range,Shattering Steel +Helmet,Enchantment Shattering Steel Chance to Not Consume Shards 1,Merciless Labyrinth,Shattering Steel has 20% chance to not consume Steel Shards,Shattering Steel +Helmet,Enchantment Shattering Steel Chance to Not Consume Shards 2,Eternal Labyrinth,Shattering Steel has 30% chance to not consume Steel Shards,Shattering Steel +Helmet,Enchantment Shock Nova Larger Ring Damage 1,Merciless Labyrinth,Shock Nova ring deals 40% increased Damage,Shock Nova +Helmet,Enchantment Shock Nova Larger Ring Damage 2,Eternal Labyrinth,Shock Nova ring deals 60% increased Damage,Shock Nova +Helmet,Enchantment Shrapnel Ballista Additional Arrows 1,Eternal Labyrinth,Shrapnel Ballista fires an additional Arrow,Shrapnel Ballista +Helmet,Enchantment Shrapnel Ballista Projectile Speed 1,Merciless Labyrinth,Shrapnel Ballista has 20% increased Projectile Speed,Shrapnel Ballista +Helmet,Enchantment Shrapnel Ballista Projectile Speed 2,Eternal Labyrinth,Shrapnel Ballista has 30% increased Projectile Speed,Shrapnel Ballista +Helmet,Enchantment Shrapnel Ballista Extra Pierces 1,Merciless Labyrinth,Shrapnel Ballista Pierces 4 additional Targets,Shrapnel Ballista +Helmet,Enchantment Shrapnel Ballista Extra Pierces 2,Eternal Labyrinth,Shrapnel Ballista Pierces 6 additional Targets,Shrapnel Ballista +Helmet,Enchantment Siege Ballista Damage 1,Merciless Labyrinth,Siege Ballista deals 25% increased Damage,Siege Ballista +Helmet,Enchantment Siege Ballista Damage 2,Eternal Labyrinth,Siege Ballista deals 40% increased Damage,Siege Ballista +Helmet,Enchantment Siege Ballista Attack Speed 1,Merciless Labyrinth,Siege Ballista has 10% increased Attack Speed,Siege Ballista +Helmet,Enchantment Siege Ballista Attack Speed 2,Eternal Labyrinth,Siege Ballista has 15% increased Attack Speed,Siege Ballista +Helmet,Enchantment Siege Ballista Totem Placement Speed 1,Merciless Labyrinth,Siege Ballista has 30% increased Totem Placement Speed,Siege Ballista Totem +Helmet,Enchantment Siege Ballista Totem Placement Speed 2,Eternal Labyrinth,Siege Ballista has 45% increased Totem Placement Speed,Siege Ballista Totem +Helmet,Enchantment Sigil of Power Upgrade Cost 1,Merciless Labyrinth,Sigil of Power requires 10% reduced Mana Spent to gain a Stage,Sigil of Power +Helmet,Enchantment Sigil of Power Upgrade Cost 2,Eternal Labyrinth,Sigil of Power requires 20% reduced Mana Spent to gain a Stage,Sigil of Power +Helmet,Enchantment Sigil of Power Critical Strike Chance 1,Merciless Labyrinth,Sigil of Power's Buff also grants 20% increased Critical Strike Chance per Stage,Sigil +Helmet,Enchantment Sigil of Power Critical Strike Chance 2,Eternal Labyrinth,Sigil of Power's Buff also grants 30% increased Critical Strike Chance per Stage,Sigil +Helmet,Enchantment Ice Siphon Trap Damage 1,Merciless Labyrinth,Siphoning Trap deals 25% increased Damage,Ice Siphon Trap +Helmet,Enchantment Ice Siphon Trap Damage 2,Eternal Labyrinth,Siphoning Trap deals 40% increased Damage,Ice Siphon Trap +Helmet,Enchantment Ice Siphon Trap Chill Effect 1,Merciless Labyrinth,Siphoning Trap has 25% increased Chill Effect,Ice Siphon Trap +Helmet,Enchantment Ice Siphon Trap Duration 1,Merciless Labyrinth,Siphoning Trap has 30% increased Skill Effect Duration,Ice Siphon Trap +Helmet,Enchantment Ice Siphon Trap Chill Effect 2,Eternal Labyrinth,Siphoning Trap has 40% increased Chill Effect,Ice Siphon Trap +Helmet,Enchantment Ice Siphon Trap Duration 2,Eternal Labyrinth,Siphoning Trap has 45% increased Skill Effect Duration,Ice Siphon Trap +Helmet,Enchantment Ice Siphon Trap Damage Taken 1,Eternal Labyrinth,Siphoning Trap's beam to you grants 1% reduced Damage taken for each other beam,Ice Siphon Trap +Helmet,Enchantment Summon Skeletons Damage 1,Merciless Labyrinth,Skeletons deal 25% increased Damage,Summon Skeletons +Helmet,Enchantment Summon Skeletons Damage 2,Eternal Labyrinth,Skeletons deal 40% increased Damage,Summon Skeletons +Helmet,Enchantment Spellslinger Reservation 1,Merciless Labyrinth,Skills Supported by Spellslinger have 10% reduced Mana Reservation,Spellslinger +Helmet,Enchantment Spellslinger Reservation 2,Eternal Labyrinth,Skills Supported by Spellslinger have 15% reduced Mana Reservation,Spellslinger +Helmet,Enchantment Spellslinger Cooldown Recovery 1,Merciless Labyrinth,Skills Supported by Spellslinger have 20% increased Cooldown Recovery Rate,Spellslinger +Helmet,Enchantment Spellslinger Cooldown Recovery 2,Eternal Labyrinth,Skills Supported by Spellslinger have 30% increased Cooldown Recovery Rate,Spellslinger +Helmet,Enchantment Smite Damage 1,Merciless Labyrinth,Smite deals 25% increased Damage,Smite +Helmet,Enchantment Smite Damage 2,Eternal Labyrinth,Smite deals 40% increased Damage,Smite +Helmet,Enchantment Smite Aura Effect 1,Merciless Labyrinth,Smite has 20% increased Aura Effect,Smite +Helmet,Enchantment Smite Aura Effect 2,Eternal Labyrinth,Smite has 30% increased Aura Effect,Smite +Helmet,Enchantment Smite Additional Target Chance 1,Merciless Labyrinth,Smite has a 10% chance for lightning to strike another target,Smite +Helmet,Enchantment Smite Additional Target Chance 2,Eternal Labyrinth,Smite has a 15% chance for lightning to strike another target,Smite +Helmet,Enchantment Smoke Mine Movement Speed 1,Merciless Labyrinth,Smoke Mine grants additional 20% increased Movement Speed,Smoke Mine +Helmet,Enchantment Smoke Mine Movement Speed 2,Eternal Labyrinth,Smoke Mine grants additional 30% increased Movement Speed,Smoke Mine +Helmet,Enchantment Projectile Weakness Curse Effect 1,Merciless Labyrinth,Sniper's Mark has 20% increased Curse Effect,Projectile Weakness +Helmet,Enchantment Projectile Weakness Curse Effect 2,Eternal Labyrinth,Sniper's Mark has 30% increased Curse Effect,Projectile Weakness +Helmet,Enchantment Projectile Weakness Duration 1,Merciless Labyrinth,Sniper's Mark has 30% increased Duration,Projectile Weakness +Helmet,Enchantment Projectile Weakness Duration 2,Eternal Labyrinth,Sniper's Mark has 45% increased Duration,Projectile Weakness +Helmet,Enchantment Soulrend Applies Hinder Movement Speed 1,Merciless Labyrinth,"Soulrend also Hinders Enemies, with 25% reduced Movement Speed",Soulrend +Helmet,Enchantment Soulrend Applies Hinder Movement Speed 2,Eternal Labyrinth,"Soulrend also Hinders Enemies, with 40% reduced Movement Speed",Soulrend +Helmet,Enchantment Soulrend Damage 1,Merciless Labyrinth,Soulrend deals 25% increased Damage,Soulrend +Helmet,Enchantment Soulrend Damage 2,Eternal Labyrinth,Soulrend deals 40% increased Damage,Soulrend +Helmet,Enchantment Soulrend Number Of Additional Projectiles 1,Eternal Labyrinth,Soulrend fires an additional Projectile,Soulrend +Helmet,Enchantment Spark Num Of Additional Projectiles 1,Merciless Labyrinth,Spark fires 2 additional Projectiles,Spark +Helmet,Enchantment Spark Num Of Additional Projectiles 2,Eternal Labyrinth,Spark fires 3 additional Projectiles,Spark +Helmet,Enchantment Spectral Shield Throw Num Of Additional Projectiles 1,Merciless Labyrinth,Spectral Shield Throw fires 3 additional Shard Projectiles,Spectral Shield Throw +Helmet,Enchantment Spectral Shield Throw Num Of Additional Projectiles 2,Eternal Labyrinth,Spectral Shield Throw fires 5 additional Shard Projectiles,Spectral Shield Throw +Helmet,Enchantment Spectre Attack And Cast Speed 2,Eternal Labyrinth,Spectres have 12% increased Attack and Cast Speed,Spectre +Helmet,Enchantment Raise Spectre Damage 1,Merciless Labyrinth,Spectres have 25% increased Damage,Raise Spectre +Helmet,Enchantment Raise Spectre Damage 2,Eternal Labyrinth,Spectres have 40% increased Damage,Raise Spectre +Helmet,Enchantment Spectre Attack And Cast Speed 1,Merciless Labyrinth,Spectres have 8% increased Attack and Cast Speed,Spectre +Helmet,Enchantment Arcanist Brand Unnerve 1,Eternal Labyrinth,Spells Triggered by Arcanist Brand Unnerve enemies on Hit for 4 seconds,Arcanist Brand +Helmet,Enchantment Spirit Offering Physical Added As Chaos 2,Eternal Labyrinth,Spirit Offering grants +12% of Physical Damage as Extra Chaos Damage,Spirit Offering +Helmet,Enchantment Spirit Offering Physical Added As Chaos 1,Merciless Labyrinth,Spirit Offering grants +8% of Physical Damage as Extra Chaos Damage,Spirit Offering +Helmet,Enchantment Split Arrow Num Of Additional Projectiles 1,Merciless Labyrinth,Split Arrow fires 2 additional Projectiles,Split Arrow +Helmet,Enchantment Split Arrow Num Of Additional Projectiles 2,Eternal Labyrinth,Split Arrow fires 3 additional Projectiles,Split Arrow +Helmet,Enchantment Splitting Steel 1,Merciless Labyrinth,Splitting Steel deals 25% increased Damage,Splitting +Helmet,Enchantment Splitting Steel 2,Eternal Labyrinth,Splitting Steel deals 40% increased Damage,Splitting +Helmet,Enchantment Splitting Steel Area 1,Merciless Labyrinth,Splitting Steel has 16% increased Area of Effect,Splitting Steel +Helmet,Enchantment Splitting Steel Chance to Not Consume Shard 1,Merciless Labyrinth,Splitting Steel has 20% chance to not consume Steel Shards,Splitting Steel +Helmet,Enchantment Splitting Steel Area 2,Eternal Labyrinth,Splitting Steel has 24% increased Area of Effect,Splitting Steel +Helmet,Enchantment Splitting Steel Chance to Not Consume Shard 2,Eternal Labyrinth,Splitting Steel has 30% chance to not consume Steel Shards,Splitting Steel +Helmet,Enchantment Static Strike Maximum Beam Targets 1,Merciless Labyrinth,Static Strike has +1 maximum Beam Targets,Static Strike +Helmet,Enchantment Static Strike Maximum Beam Targets 2,Eternal Labyrinth,Static Strike has +2 maximum Beam Targets,Static Strike +Helmet,Enchantment Steelskin Damage Limit 1,Merciless Labyrinth,Steelskin Buff can take 30% increased amount of Damage,Steelskin +Helmet,Enchantment Steelskin Damage Limit 2,Eternal Labyrinth,Steelskin Buff can take 45% increased amount of Damage,Steelskin +Helmet,Enchantment Steelskin Additional Physical Damage Reduction 2,Eternal Labyrinth,Steelskin grants 12% additional Physical Damage Reduction,Steelskin +Helmet,Enchantment Steelskin Additional Physical Damage Reduction 1,Merciless Labyrinth,Steelskin grants 8% additional Physical Damage Reduction,Steelskin +Helmet,Enchantment Summon Stone Golem Damage 1,Merciless Labyrinth,Stone Golems deal 25% increased Damage,Summon Stone Golem +Helmet,Enchantment Summon Stone Golem Damage 2,Eternal Labyrinth,Stone Golems deal 40% increased Damage,Summon Stone Golem +Helmet,Storm Brand Attached Target Lightning Penetration 2,Eternal Labyrinth,Storm Brand Damage Penetrates 12% of Branded Enemy's Lightning Resistance,Storm Brand +Helmet,Storm Brand Attached Target Lightning Penetration 1,Merciless Labyrinth,Storm Brand Damage Penetrates 8% of Branded Enemy's Lightning Resistance,Storm Brand +Helmet,Enchantment Storm Brand Damage 1,Merciless Labyrinth,Storm Brand deals 25% increased Damage,Storm Brand +Helmet,Enchantment Storm Brand Damage 2,Eternal Labyrinth,Storm Brand deals 40% increased Damage,Storm Brand +Helmet,Storm Brand Additional Chain Chance 1,Merciless Labyrinth,Storm Brand has a 12% chance to Chain an additional time,Storm Brand +Helmet,Storm Brand Additional Chain Chance 2,Eternal Labyrinth,Storm Brand has a 18% chance to Chain an additional time,Storm Brand +Helmet,Enchantment Storm Burst Additional Object Chance 1,Merciless Labyrinth,Storm Burst has a 10% chance to create an additional Orb,Storm Burst +Helmet,Enchantment Storm Burst Additional Object Chance 2,Eternal Labyrinth,Storm Burst has a 15% chance to create an additional Orb,Storm Burst +Helmet,Enchantment Stormbind Damage 1,Merciless Labyrinth,Stormbind deals 25% increased Damage,Stormbind +Helmet,Enchantment Stormbind Damage 2,Eternal Labyrinth,Stormbind deals 40% increased Damage,Stormbind +Helmet,Enchantment Stormbind Area of Effect 1,Merciless Labyrinth,Stormbind has 16% increased Area of Effect,Stormbind +Helmet,Enchantment Stormbind Area of Effect 2,Eternal Labyrinth,Stormbind has 24% increased Area of Effect,Stormbind +Helmet,Enchantment Stormblast Mine Damage 1,Merciless Labyrinth,Stormblast Mine deals 25% increased Damage,Stormblast Mine +Helmet,Enchantment Stormblast Mine Damage 2,Eternal Labyrinth,Stormblast Mine deals 40% increased Damage,Stormblast Mine +Helmet,Enchantment Stormblast Mine Throwing Speed 1,Merciless Labyrinth,Stormblast Mine has 10% increased Throwing Speed,Stormblast Mine +Helmet,Enchantment Stormblast Mine Throwing Speed 2,Eternal Labyrinth,Stormblast Mine has 15% increased Throwing Speed,Stormblast Mine +Helmet,Enchantment Stormblast Mine Aura Effect 1,Merciless Labyrinth,Stormblast Mine has 20% increased Aura Effect,Stormblast Mine +Helmet,Enchantment Stormblast Mine Aura Effect 2,Eternal Labyrinth,Stormblast Mine has 40% increased Aura Effect,Stormblast Mine +Helmet,Enchantment Summoned Raging Spirit Additional 1,Merciless Labyrinth,Summon Raging Spirit has 12% chance to summon an extra Minion,Summoned Raging Spirit +Helmet,Enchantment Summoned Raging Spirit Additional 2,Eternal Labyrinth,Summon Raging Spirit has 18% chance to summon an extra Minion,Summoned Raging Spirit +Helmet,Enchantment Summoned Raging Spirit Duration 1,Merciless Labyrinth,Summon Raging Spirit has 20% increased Duration,Summoned Raging Spirit +Helmet,Enchantment Summoned Raging Spirit Duration 2,Eternal Labyrinth,Summon Raging Spirit has 30% increased Duration,Summoned Raging Spirit +Helmet,Enchantment Summon Skitterbots Mana Reservation 1,Merciless Labyrinth,Summon Skitterbots has 14% reduced Mana Reservation,Summon Skitterbots +Helmet,Enchantment Summon Skitterbots Mana Reservation 2,Eternal Labyrinth,Summon Skitterbots has 20% reduced Mana Reservation,Summon Skitterbots +Helmet,Enchantment Herald Of Agony Num Of Secondary Projectiles 1,Eternal Labyrinth,Summoned Agony Crawler fires 2 additional Projectiles,Herald Of Agony +Helmet,Enchantment Summon Carrion Golem Damage 1,Merciless Labyrinth,Summoned Carrion Golems deal 25% increased Damage,Summon Carrion Golem +Helmet,Enchantment Summon Carrion Golem Damage 2,Eternal Labyrinth,Summoned Carrion Golems deal 40% increased Damage,Summon Carrion Golem +Helmet,Enchantment Summon Carrion Golem Elemental Resistances 1,Merciless Labyrinth,Summoned Carrion Golems have +24% to all Elemental Resistances,Summon Carrion Golem +Helmet,Enchantment Summon Carrion Golem Elemental Resistances 2,Eternal Labyrinth,Summoned Carrion Golems have +36% to all Elemental Resistances,Summon Carrion Golem +Helmet,Enchantment Holy Relic Damage 1,Merciless Labyrinth,Summoned Holy Relics deal 25% increased Damage,Holy Relic +Helmet,Enchantment Holy Relic Damage 2,Eternal Labyrinth,Summoned Holy Relics deal 40% increased Damage,Holy Relic +Helmet,Enchantment Holy Relic Buff Effect 2,Eternal Labyrinth,Summoned Holy Relics have 100% increased Buff Effect,Holy Relic +Helmet,Enchantment Holy Relic Area Of Effect 1,Merciless Labyrinth,Summoned Holy Relics have 16% increased Area of Effect,Holy Relic +Helmet,Enchantment Holy Relic Area Of Effect 2,Eternal Labyrinth,Summoned Holy Relics have 24% increased Area of Effect,Holy Relic +Helmet,Enchantment Holy Relic Buff Effect 1,Merciless Labyrinth,Summoned Holy Relics have 75% increased Buff Effect,Holy Relic +Helmet,Enchantment Summon Raging Spirit Damage 1,Merciless Labyrinth,Summoned Raging Spirits deal 25% increased Damage,Summon Raging Spirit +Helmet,Enchantment Summon Raging Spirit Damage 2,Eternal Labyrinth,Summoned Raging Spirits deal 40% increased Damage,Summon Raging Spirit +Helmet,Enchantment Summon Skitterbots Area Of Effect 1,Merciless Labyrinth,Summoned Skitterbots have 60% increased Area of Effect,Summon Skitterbots +Helmet,Enchantment Summon Skitterbots Area Of Effect 2,Eternal Labyrinth,Summoned Skitterbots have 90% increased Area of Effect,Summon Skitterbots +Helmet,Enchantment Sunder Wave Speed 1,Merciless Labyrinth,Sunder has 15% reduced delay between Areas in the Wave,Sunder +Helmet,Enchantment Sunder Radius 1,Merciless Labyrinth,Sunder has 16% increased Area of Effect,Sunder +Helmet,Enchantment Sunder Wave Speed 2,Eternal Labyrinth,Sunder has 20% reduced delay between Areas in the Wave,Sunder +Helmet,Enchantment Sunder Radius 2,Eternal Labyrinth,Sunder has 24% increased Area of Effect,Sunder +Helmet,Enchantment Sunder Damage 1,Merciless Labyrinth,Sunder has 25% increased Damage,Sunder +Helmet,Enchantment Sunder Damage 2,Eternal Labyrinth,Sunder has 40% increased Damage,Sunder +Helmet,Enchantment Sweep Endurance Charge on Hit Chance 1,Merciless Labyrinth,Sweep has a 20% chance to grant an Endurance Charge on Hit,Sweep +Helmet,Enchantment Sweep Endurance Charge on Hit Chance 2,Eternal Labyrinth,Sweep has a 30% chance to grant an Endurance Charge on Hit,Sweep +Helmet,Enchantment Tectonic Slam Damage 1,Merciless Labyrinth,Tectonic Slam deals 25% increased Damage,Tectonic Slam +Helmet,Enchantment Tectonic Slam Damage 2,Eternal Labyrinth,Tectonic Slam deals 40% increased Damage,Tectonic Slam +Helmet,Enchantment Tectonic Slam Chance For Side Crack 1,Merciless Labyrinth,Tectonic Slam has +12% fissure branching chance,Tectonic Slam +Helmet,Enchantment Tectonic Slam Chance For Side Crack 2,Eternal Labyrinth,Tectonic Slam has +20% fissure branching chance,Tectonic Slam +Helmet,Enchantment Tectonic Slam Area Of Effect 1,Merciless Labyrinth,Tectonic Slam has 16% increased Area of Effect,Tectonic Slam +Helmet,Enchantment Tectonic Slam Area Of Effect 2,Eternal Labyrinth,Tectonic Slam has 24% increased Area of Effect,Tectonic Slam +Helmet,Enchantment Tempest Shield Num Of Additional Projectiles In Chain 1,Merciless Labyrinth,Tempest Shield chains an additional 2 times,Tempest Shield +Helmet,Enchantment Tempest Shield Num Of Additional Projectiles In Chain 2,Eternal Labyrinth,Tempest Shield chains an additional 3 times,Tempest Shield +Helmet,Enchantment Tornado Shot Num Of Secondary Projectiles 2,Eternal Labyrinth,Tornado Shot fires an additional secondary Projectile,Tornado Shot +Helmet,Enchantment Toxic Rain Damage 1,Merciless Labyrinth,Toxic Rain deals 25% increased Damage,Toxic Rain +Helmet,Enchantment Toxic Rain Damage 2,Eternal Labyrinth,Toxic Rain deals 40% increased Damage,Toxic Rain +Helmet,Enchantment Toxic Rain Num Of Additional Projectiles 1,Eternal Labyrinth,Toxic Rain fires 1 additional Arrow,Toxic Rain +Helmet,Enchantment Toxic Rain Physical Added As Chaos 2,Eternal Labyrinth,Toxic Rain gains 10% of Physical Damage as Extra Chaos Damage,Toxic Rain +Helmet,Enchantment Toxic Rain Physical Added As Chaos 1,Merciless Labyrinth,Toxic Rain gains 6% of Physical Damage as Extra Chaos Damage,Toxic Rain +Gloves,Enchantment Commandment of Blades,Eternal Labyrinth,Trigger Commandment of Blades on Hit, +Gloves,Enchantment Commandment of Flames,Eternal Labyrinth,Trigger Commandment of Flames on Hit, +Gloves,Enchantment Commandment of Force,Eternal Labyrinth,Trigger Commandment of Force on Hit, +Gloves,Enchantment Commandment of Frost,Eternal Labyrinth,Trigger Commandment of Frost on Kill, +Gloves,Enchantment Commandment of Fury,Eternal Labyrinth,Trigger Commandment of Fury on Hit, +Gloves,Enchantment Commandment of Inferno,Eternal Labyrinth,Trigger Commandment of Inferno on Kill, +Gloves,Enchantment Commandment of Ire,Eternal Labyrinth,Trigger Commandment of Ire when Hit, +Gloves,Enchantment Commandment of Light,Eternal Labyrinth,Trigger Commandment of Light when you take a Critical Strike, +Gloves,Enchantment Commandment of Reflection,Eternal Labyrinth,Trigger Commandment of Reflection when Hit, +Gloves,Enchantment Commandment of Spite,Eternal Labyrinth,Trigger Commandment of Spite when Hit, +Gloves,Enchantment Commandment of the Grave,Eternal Labyrinth,Trigger Commandment of the Grave when your Skills or Minions Kill, +Gloves,Enchantment Commandment of the Tempest,Eternal Labyrinth,Trigger Commandment of the Tempest on Hit, +Gloves,Enchantment Commandment of Thunder,Eternal Labyrinth,Trigger Commandment of Thunder on Kill, +Gloves,Enchantment Commandment of War,Eternal Labyrinth,Trigger Commandment of War on Kill, +Gloves,Enchantment Commandment of Winter,Eternal Labyrinth,Trigger Commandment of Winter when Hit, +Gloves,Enchantment Decree of Blades,Merciless Labyrinth,Trigger Decree of Blades on Hit, +Gloves,Enchantment Decree of Flames,Merciless Labyrinth,Trigger Decree of Flames on Hit, +Gloves,Enchantment Decree of Force,Merciless Labyrinth,Trigger Decree of Force on Hit, +Gloves,Enchantment Decree of Frost,Merciless Labyrinth,Trigger Decree of Frost on Kill, +Gloves,Enchantment Decree of Fury,Merciless Labyrinth,Trigger Decree of Fury on Hit, +Gloves,Enchantment Decree of Inferno,Merciless Labyrinth,Trigger Decree of Inferno on Kill, +Gloves,Enchantment Decree of Ire,Merciless Labyrinth,Trigger Decree of Ire when Hit, +Gloves,Enchantment Decree of Light,Merciless Labyrinth,Trigger Decree of Light when you take a Critical Strike, +Gloves,Enchantment Decree of Reflection,Merciless Labyrinth,Trigger Decree of Reflection when Hit, +Gloves,Enchantment Decree of Spite,Merciless Labyrinth,Trigger Decree of Spite when Hit, +Gloves,Enchantment Decree of the Grave,Merciless Labyrinth,Trigger Decree of the Grave when your Skills or Minions Kill, +Gloves,Enchantment Decree of the Tempest,Merciless Labyrinth,Trigger Decree of the Tempest on Hit, +Gloves,Enchantment Decree of Thunder,Merciless Labyrinth,Trigger Decree of Thunder on Kill, +Gloves,Enchantment Decree of War,Merciless Labyrinth,Trigger Decree of War on Kill, +Gloves,Enchantment Decree of Winter,Merciless Labyrinth,Trigger Decree of Winter when Hit, +Gloves,Enchantment Edict of Blades,Cruel Labyrinth,Trigger Edict of Blades on Hit, +Gloves,Enchantment Edict of Flames,Cruel Labyrinth,Trigger Edict of Flames on Hit, +Gloves,Enchantment Edict of Force,Cruel Labyrinth,Trigger Edict of Force on Hit, +Gloves,Enchantment Edict of Frost,Cruel Labyrinth,Trigger Edict of Frost on Kill, +Gloves,Enchantment Edict of Fury,Cruel Labyrinth,Trigger Edict of Fury on Hit, +Gloves,Enchantment Edict of Inferno,Cruel Labyrinth,Trigger Edict of Inferno on Kill, +Gloves,Enchantment Edict of Ire,Cruel Labyrinth,Trigger Edict of Ire when Hit, +Gloves,Enchantment Edict of Light,Cruel Labyrinth,Trigger Edict of Light when you take a Critical Strike, +Gloves,Enchantment Edict of Reflection,Cruel Labyrinth,Trigger Edict of Reflection when Hit, +Gloves,Enchantment Edict of Spite,Cruel Labyrinth,Trigger Edict of Spite when Hit, +Gloves,Enchantment Edict of the Grave,Cruel Labyrinth,Trigger Edict of the Grave when your Skills or Minions Kill, +Gloves,Enchantment Edict of the Tempest,Cruel Labyrinth,Trigger Edict of the Tempest on Hit, +Gloves,Enchantment Edict of Thunder,Cruel Labyrinth,Trigger Edict of Thunder on Kill, +Gloves,Enchantment Edict of War,Cruel Labyrinth,Trigger Edict of War on Kill, +Gloves,Enchantment Edict of Winter,Cruel Labyrinth,Trigger Edict of Winter when Hit, +Gloves,Enchantment Word of Blades,Normal Labyrinth,Trigger Word of Blades on Hit, +Gloves,Enchantment Word of Flames,Normal Labyrinth,Trigger Word of Flames on Hit, +Gloves,Enchantment Word of Force,Normal Labyrinth,Trigger Word of Force on Hit, +Gloves,Enchantment Word of Frost,Normal Labyrinth,Trigger Word of Frost on Kill, +Gloves,Enchantment Word of Fury,Normal Labyrinth,Trigger Word of Fury on Hit, +Gloves,Enchantment Word of Inferno,Normal Labyrinth,Trigger Word of Inferno on Kill, +Gloves,Enchantment Word of Ire,Normal Labyrinth,Trigger Word of Ire when Hit, +Gloves,Enchantment Word of Light,Normal Labyrinth,Trigger Word of Light when you take a Critical Strike, +Gloves,Enchantment Word of Reflection,Normal Labyrinth,Trigger Word of Reflection when Hit, +Gloves,Enchantment Word of Spite,Normal Labyrinth,Trigger Word of Spite when Hit, +Gloves,Enchantment Word of the Grave,Normal Labyrinth,Trigger Word of the Grave when your Skills or Minions Kill, +Gloves,Enchantment Word of the Tempest,Normal Labyrinth,Trigger Word of the Tempest on Hit, +Gloves,Enchantment Word of Thunder,Normal Labyrinth,Trigger Word of Thunder on Kill, +Gloves,Enchantment Word of War,Normal Labyrinth,Trigger Word of War on Kill, +Gloves,Enchantment Word of Winter,Normal Labyrinth,Trigger Word of Winter when Hit, +Helmet,Enchantment Unearth Corpse Level 1,Merciless Labyrinth,Unearth Spawns corpses with +3 Level,Unearth +Helmet,Enchantment Unearth Corpse Level 2,Eternal Labyrinth,Unearth Spawns corpses with +5 Level,Unearth +Helmet,Enchantment Vengeance Cooldown Speed 1,Merciless Labyrinth,Vengeance has 20% increased Cooldown Recovery Rate,Vengeance +Helmet,Enchantment Vengeance Cooldown Speed 2,Eternal Labyrinth,Vengeance has 30% increased Cooldown Recovery Rate,Vengeance +Helmet,Enchantment Venom Gyre Damage 1,Merciless Labyrinth,Venom Gyre deals 25% increased Damage,Venom Gyre +Helmet,Enchantment Venom Gyre Damage 2,Eternal Labyrinth,Venom Gyre deals 40% increased Damage,Venom Gyre +Helmet,Enchantment Venom Gyre Withering On Hit Chance 1,Merciless Labyrinth,Venom Gyre has a 12% chance to inflict Withered for 2 seconds on Hit,Venom Gyre +Helmet,Enchantment Venom Gyre Withering On Hit Chance 2,Eternal Labyrinth,Venom Gyre has a 20% chance to inflict Withered for 2 seconds on Hit,Venom Gyre +Helmet,Enchantment Venom Gyre Chance To Retain Projectile On Release 2,Eternal Labyrinth,Venom Gyre has a 35% chance to keep caught Projectiles fired by using Whirling Blades,Venom Gyre +Helmet,Enchantment Vitality Mana Reservation 1,Merciless Labyrinth,Vitality has 20% reduced Mana Reservation,Vitality +Helmet,Enchantment Vitality Mana Reservation 2,Eternal Labyrinth,Vitality has 30% reduced Mana Reservation,Vitality +Helmet,Enchantment Void Sphere Pulse Rate 1,Merciless Labyrinth,Void Sphere has 12% increased Pulse Frequency,Void Sphere +Helmet,Enchantment Void Sphere Pulse Rate 2,Eternal Labyrinth,Void Sphere has 18% increased Pulse Frequency,Void Sphere +Helmet,Enchantment Void Sphere Cooldown 1,Merciless Labyrinth,Void Sphere has 20% increased Cooldown Recovery Rate,Void Sphere +Helmet,Enchantment Void Sphere Cooldown 2,Eternal Labyrinth,Void Sphere has 30% increased Cooldown Recovery Rate,Void Sphere +Helmet,Enchantment Volatile Dead Orbs 3,Eternal Labyrinth,Volatile Dead Consumes up to 1 additional corpse,Volatile Dead +Helmet,Enchantment Vortex Cooldown Recovery 1,Merciless Labyrinth,Vortex has 20% increased Cooldown Recovery Rate,Vortex +Helmet,Enchantment Vortex AoE On Frostbolt 1,Merciless Labyrinth,Vortex has 30% increased Area of Effect when Cast on Frostbolt,Vortex +Helmet,Enchantment Vortex Cooldown Recovery 2,Eternal Labyrinth,Vortex has 30% increased Cooldown Recovery Rate,Vortex +Helmet,Enchantment Vortex AoE On Frostbolt 2,Eternal Labyrinth,Vortex has 45% increased Area of Effect when Cast on Frostbolt,Vortex +Helmet,Enchantment War Banner Effect 1,Merciless Labyrinth,War Banner has 25% increased Aura Effect,War Banner +Helmet,Enchantment War Banner Effect 2,Eternal Labyrinth,War Banner has 40% increased Aura Effect,War Banner +Helmet,Enchantment Wave Of Conviction Damage 1,Merciless Labyrinth,Wave of Conviction deals 25% increased Damage,Wave Of Conviction +Helmet,Enchantment Wave Of Conviction Damage 2,Eternal Labyrinth,Wave of Conviction deals 40% increased Damage,Wave Of Conviction +Helmet,Enchantment Wave Of Conviction Duration 1,Merciless Labyrinth,Wave of Conviction has 20% increased Duration,Wave Of Conviction +Helmet,Enchantment Wave Of Conviction Duration 2,Eternal Labyrinth,Wave of Conviction has 30% increased Duration,Wave Of Conviction +Helmet,Enchantment Wave Of Conviction Additional Enemy Resistance 1,Merciless Labyrinth,Wave of Conviction's Exposure applies -4% Elemental Resistance,Wave Of Conviction +Helmet,Enchantment Wave Of Conviction Additional Enemy Resistance 2,Eternal Labyrinth,Wave of Conviction's Exposure applies -6% Elemental Resistance,Wave Of Conviction +Helmet,Enchantment Wild Strike Num Of Additional Projectiles In Chain 1,Merciless Labyrinth,Wild Strike's Beam Chains an additional 4 times,Wild Strike +Helmet,Enchantment Wild Strike Num Of Additional Projectiles In Chain 2,Eternal Labyrinth,Wild Strike's Beam Chains an additional 6 times,Wild Strike +Helmet,Enchantment Winter Orb Damage 1,Merciless Labyrinth,Winter Orb deals 25% increased Damage,Winter Orb +Helmet,Enchantment Winter Orb Damage 2,Eternal Labyrinth,Winter Orb deals 40% increased Damage,Winter Orb +Helmet,Enchantment Frost Fury Additional Max Number Of Stages 1,Eternal Labyrinth,Winter Orb has +2 Maximum Stages,Frost Fury +Helmet,Enchantment Frost Fury Area Of Effect Per Stage 1,Merciless Labyrinth,Winter Orb has 2% increased Area of Effect per Stage,Frost Fury +Helmet,Enchantment Frost Fury Area Of Effect Per Stage 2,Eternal Labyrinth,Winter Orb has 3% increased Area of Effect per Stage,Frost Fury +Helmet,Enchantment Winter Brand Damage 1,Merciless Labyrinth,Wintertide Brand deals 25% increased Damage,Winter Brand +Helmet,Enchantment Winter Brand Damage 2,Eternal Labyrinth,Wintertide Brand deals 40% increased Damage,Winter Brand +Helmet,Enchantment Winter Brand Stages 1,Merciless Labyrinth,Wintertide Brand has +2 to maximum Stages,Winter Brand +Helmet,Enchantment Winter Brand Stages 2,Eternal Labyrinth,Wintertide Brand has +4 to maximum Stages,Winter Brand +Helmet,Enchantment Winter Brand Chill Efffect 1,Merciless Labyrinth,Wintertide Brand has 25% increased Chill Effect,Winter Brand +Helmet,Enchantment Winter Brand Chill Efffect 2,Eternal Labyrinth,Wintertide Brand has 40% increased Chill Effect,Winter Brand +Helmet,Enchantment Wither Area Of Effect 1,Merciless Labyrinth,Wither has 16% increased Area of Effect,Wither +Helmet,Enchantment Wither Area Of Effect 2,Eternal Labyrinth,Wither has 24% increased Area of Effect,Wither +Helmet,Enchantment Wither Duration 1,Merciless Labyrinth,Wither has 24% increased Duration,Wither +Helmet,Enchantment Wither Duration 2,Eternal Labyrinth,Wither has 36% increased Duration,Wither +Helmet,Enchantment Withering Step Elusive Effect 1,Merciless Labyrinth,Withering Step has 20% increased Elusive Effect,Withering Step +Helmet,Enchantment Withering Step Elusive Effect 2,Eternal Labyrinth,Withering Step has 30% increased Elusive Effect,Withering Step +Helmet,Enchantment Withering Step Wither Stacks1,Merciless Labyrinth,Withering Step inflicts 2 additional Withered Debuffs,Withering Step +Helmet,Enchantment Withering Step Wither Stacks 2,Eternal Labyrinth,Withering Step inflicts 3 additional Withered Debuffs,Withering Step +Helmet,Enchantment Wrath Mana Reservation 1,Merciless Labyrinth,Wrath has 10% reduced Mana Reservation,Wrath +Helmet,Enchantment Wrath Mana Reservation 2,Eternal Labyrinth,Wrath has 15% reduced Mana Reservation,Wrath +Helmet,Enchantment Zealotry Mana Reservation 1,Merciless Labyrinth,Zealotry has 10% reduced Mana Reservation,Zealotry +Helmet,Enchantment Zealotry Mana Reservation 2,Eternal Labyrinth,Zealotry has 15% reduced Mana Reservation,Zealotry diff --git a/poe_uniques.csv b/poe_uniques.csv index d4041f0..8f55a41 100644 --- a/poe_uniques.csv +++ b/poe_uniques.csv @@ -838,4 +838,103 @@ Cloth Belt,The Torrent's Reclamation,Harbinger,,,Crafted Imperial Staff,The Yielding Mortality,Harbinger,,,Crafted Legion Sword,The Surging Thoughts,Harbinger,,,Crafted Bone Circlet,Plume of Pursuit,Harvest,,"Oshabi, Avatar of the Grove" -Hellion's Paw,Law of the Wilds,Harvest,,"Oshabi, Avatar of the Grove" \ No newline at end of file +Hellion's Paw,Law of the Wilds,Harvest,,"Oshabi, Avatar of the Grove" +Butcher Axe,Actum,Heist,,, +Astral Plate,Blunderbore,Heist,,, +Chain Belt,Chains of Emancipation,Heist,,, +Carnal Boots,Corpsewalker,Heist,,, +Fluted Bascinet,Crest of Desire,Heist,,, +Sentinel Jacket,Expedition's End,Heist,,, +Paua Ring,Fated End,Heist,,, +Mirrored Spiked Shield,Font of Thunder,Heist,,, +Slink Gloves,Mercenary's Lot,Heist,,, +Leather Belt,Pyroshock Clasp,Heist,,, +Ezomyte Burgonet,Replica Abyssus,Heist,,,Heist +Soldier Boots,Replica Alberon's Warpath,Heist,,,Heist +Sorcerer Gloves,Replica Allelopathy,Heist,,,Heist +Sinner Tricorne,Replica Alpha's Howl,Heist,,,Heist +Crusader Chainmail,Replica Ambu's Charge,Heist,,,Heist +Vaal Gauntlets,Replica Atziri's Acuity,Heist,,,Heist +Shadow Sceptre,Replica Bitterdream,Heist,,,Heist +Silk Slippers,Replica Bones of Ullr,Heist,,,Heist +Blood Raiment,Replica Eternity Shroud,Heist,,,Heist +Arcanist Gloves,Replica Grip of the Council,Heist,,,Heist +Arcanist Slippers,Replica Inya's Epiphany,Heist,,,Heist +Samite Gloves,Replica Kalisa's Grace,Heist,,,Heist +Glorious Plate,Replica Kaom's Heart,Heist,,,Heist +Festival Mask,Replica Leer Cast,Heist,,,Heist +Bronzescale Boots,Replica Lioneye's Paws,Heist,,,Heist +Elegant Ringmail,Replica Loreweave,Heist,,,Heist +Ornate Quiver,Replica Maloney's Mechanism,Heist,,,Heist +Lacquered Buckler,Replica Mistwall,Heist,,,Heist +Zodiac Leather,Replica Perfect Form,Heist,,,Heist +Short Bow,Replica Quill Rain,Heist,,,Heist +Titan Greaves,Replica Red Trail,Heist,,,Heist +Carnal Armour,Replica Restless Ward,Heist,,,Heist +Carnal Armour,Replica Shroud of the Lightless,Heist,,,Heist +Spike-Point Arrow Quiver,Replica Soul Strike,Heist,,,Heist +Assassin's Boots,Replica Stampede,Heist,,,Heist +Shagreen Boots,Replica Three-step Assault,Heist,,,Heist +Ebony Tower Shield,Replica Tukohama's Fortress,Heist,,,Heist +Laminated Kite Shield,Replica Victario's Charity,Heist,,,Heist +Murder Boots,Replica Voidwalker,Heist,,,Heist +Zealot Gloves,Replica Volkuur's Guidance,Heist,,,Heist +Crimson Round Shield,Shattershard,Heist,,, +Varnished Coat,The Admiral,Heist,,, +Cloth Belt,The Druggery,Heist,,, +Lapis Amulet,The Ephemeral Bond,Heist,,, +Ezomyte Staff,The Fulcrum,Heist,,, +Teak Round Shield,The Ghastly Theatre,Heist,,, +Ambusher,The Hidden Blade,Heist,,, +Gold Ring,The Highwayman,Heist,,, +Gladius,The Iron Mass,Heist,,, +Golden Mask,Willclash,Heist,,, +Great Helmet,Replica Veil of the Night,Heist,,,Heist +Sanctified Mana Flask,Replica Lavianga's Spirit,Heist,,,Heist +Granite Flask,Replica Rumi's Concoction,Heist,,,Heist +Sulphur Flask,Replica Sorrow of the Divine,Heist,,,Heist +Death Bow,Replica Iron Commander,Heist,,,Heist +Terror Maul,Replica Kongor's Undying Rage,Heist,,,Heist +Tornado Wand,Replica Tulfall,Heist,,,Heist +Infernal Sword,Replica Oro's Sacrifice,Heist,,,Heist +Engraved Wand,Replica Midnight Bargain,Heist,,,Heist +Ornate Mace,Replica Frostbreath,Heist,,,Heist +Vaal Rapier,Replica Paradoxica,Heist,,,Heist +Ezomyte Axe,Replica Wings of Entropy,Heist,,,Heist +Nailed Fist,Replica Last Resort,Heist,,,Heist +Decimation Bow,Replica Infractem,Heist,,,Heist +Ezomyte Dagger,Replica Cold Iron Point,Heist,,,Heist +Eternal Sword,Replica Dreamfeather,Heist,,,Heist +Grinning Fetish,Replica Earendel's Embrace,Heist,,,Heist +Royal Skean,Replica Heartbreaker,Heist,,,Heist +Gnarled Branch,Replica Blood Thorn,Heist,,,Heist +Jasper Chopper,Replica Harvest,Heist,,,Heist +Stiletto,Replica Bloodplay,Heist,,,Heist +Gut Ripper,Replica Advancing Fortress,Heist,,,Heist +Elder Sword,Replica Innsbury Edge,Heist,,,Heist +Triumphant Lamellar,Replica Farrul's Fur,Heist,,,Heist +Great Crown,Replica Forbidden Shako,Heist,,,Heist +Void Sceptre,Replica Nebulis,Heist,,,Heist +Imperial Bow,Replica Windripper,Heist,,,Heist +Maelström Staff,Replica Duskdawn,Heist,,,Heist +Great Mallet,Replica Trypanon,Heist,,,Heist +Siege Axe,Replica Soul Taker,Heist,,,Heist +Vaal Claw,Replica Allure,Heist,,,Heist +War Sword,Replica Tempestuous Steel,Heist,,,Heist +Sage Wand,Replica Twyzel,Heist,,,Heist +Gnarled Branch,Replica Fencoil,Heist,,,Heist +Boot Knife,Replica Ungil's Gauche,Heist,,,Heist +Chain Belt,Replica Bated Breath,Heist,,,Heist +Leather Belt,Replica Headhunter,Heist,,,Heist +Paua Amulet,Replica Atziri's Foible,Heist,,,Heist +Jade Amulet,Replica Hyrri's Truth,Heist,,,Heist +Cloth Belt,Replica Soul Tether,Heist,,,Heist +Jade Amulet,Replica Karui Ward,Heist,,,Heist +Ruby Ring,Replica Emberwake,Heist,,,Heist +Unset Ring,Replica Voideye,Heist,,,Heist +Gold Amulet,Replica Winterheart,Heist,,,Heist +Heavy Belt,Replica Siegebreaker,Heist,,,Heist +Unset Ring,Replica Malachai's Artifice,Heist,,,Heist +Sapphire Ring,Replica Tasalio's Sign,Heist,,,Heist +Paua Ring,Replica Doedre's Damning,Heist,,,Heist +Rustic Sash,Replica Prismweave,Heist,,,Heist