From eff0de410b474779a3284258d92db44dd189c93b Mon Sep 17 00:00:00 2001 From: fengjiayi <12821976+ning_xi@user.noreply.gitee.com> Date: Sun, 22 Sep 2024 17:37:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BA=86=E4=B8=AD=E6=96=AD?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Library.Core/NodeFlow/DynamicContext.cs | 24 +- Library.Framework/NodeFlow/DynamicContext.cs | 12 +- .../Serein.Library.Framework.csproj | 3 + Library.Framework/packages.config | 1 + Library/Api/IFlowEnvironment.cs | 86 +- Library/Entity/NodeDebugSetting.cs | 19 +- Library/Utils/ChannelFlowInterrupt.cs | 449 ++++-- Library/Web/Attribute.cs | 2 +- NodeFlow/Base/NodeModelBaseData.cs | 36 +- NodeFlow/Base/NodeModelBaseFunc.cs | 141 +- NodeFlow/FlowEnvironment.cs | 191 ++- NodeFlow/FlowStarter.cs | 14 +- NodeFlow/Model/SingleFlipflopNode.cs | 12 +- .../Resolver/MemberConditionResolver.cs | 4 + .../SereinExpression/SereinConditionParser.cs | 49 +- WorkBench/LogWindow.xaml | 1 + WorkBench/MainWindow.xaml | 25 +- WorkBench/MainWindow.xaml.cs | 116 +- WorkBench/Node/NodeControlViewModelBase.cs | 6 +- WorkBench/Node/View/ActionNodeControl.xaml | 1 - WorkBench/Themes/ObjectViewerControl.xaml | 16 +- WorkBench/Themes/ObjectViewerControl.xaml.cs | 200 ++- WorkBench/Themes/TypeViewerWindow.xaml.cs | 8 +- .../System.ValueTuple.4.5.0/.signature.p7s | Bin 0 -> 22354 bytes packages/System.ValueTuple.4.5.0/LICENSE.TXT | 23 + .../System.ValueTuple.4.5.0.nupkg | Bin 0 -> 204904 bytes .../THIRD-PARTY-NOTICES.TXT | 309 ++++ .../lib/MonoAndroid10/_._ | 0 .../lib/MonoTouch10/_._ | 0 .../lib/net461/System.ValueTuple.xml | 1299 +++++++++++++++++ .../lib/net47/System.ValueTuple.xml | 8 + .../lib/netcoreapp2.0/_._ | 0 .../lib/netstandard1.0/System.ValueTuple.xml | 1299 +++++++++++++++++ .../lib/netstandard2.0/_._ | 0 .../System.ValueTuple.xml | 1299 +++++++++++++++++ .../lib/uap10.0.16299/_._ | 0 .../lib/xamarinios10/_._ | 0 .../lib/xamarinmac20/_._ | 0 .../lib/xamarintvos10/_._ | 0 .../lib/xamarinwatchos10/_._ | 0 .../ref/MonoAndroid10/_._ | 0 .../ref/MonoTouch10/_._ | 0 .../ref/netcoreapp2.0/_._ | 0 .../ref/netstandard2.0/_._ | 0 .../ref/uap10.0.16299/_._ | 0 .../ref/xamarinios10/_._ | 0 .../ref/xamarinmac20/_._ | 0 .../ref/xamarintvos10/_._ | 0 .../ref/xamarinwatchos10/_._ | 0 .../useSharedDesignerContext.txt | 0 packages/System.ValueTuple.4.5.0/version.txt | 1 + 51 files changed, 5258 insertions(+), 396 deletions(-) create mode 100644 packages/System.ValueTuple.4.5.0/.signature.p7s create mode 100644 packages/System.ValueTuple.4.5.0/LICENSE.TXT create mode 100644 packages/System.ValueTuple.4.5.0/System.ValueTuple.4.5.0.nupkg create mode 100644 packages/System.ValueTuple.4.5.0/THIRD-PARTY-NOTICES.TXT create mode 100644 packages/System.ValueTuple.4.5.0/lib/MonoAndroid10/_._ create mode 100644 packages/System.ValueTuple.4.5.0/lib/MonoTouch10/_._ create mode 100644 packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.xml create mode 100644 packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.xml create mode 100644 packages/System.ValueTuple.4.5.0/lib/netcoreapp2.0/_._ create mode 100644 packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.xml create mode 100644 packages/System.ValueTuple.4.5.0/lib/netstandard2.0/_._ create mode 100644 packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml create mode 100644 packages/System.ValueTuple.4.5.0/lib/uap10.0.16299/_._ create mode 100644 packages/System.ValueTuple.4.5.0/lib/xamarinios10/_._ create mode 100644 packages/System.ValueTuple.4.5.0/lib/xamarinmac20/_._ create mode 100644 packages/System.ValueTuple.4.5.0/lib/xamarintvos10/_._ create mode 100644 packages/System.ValueTuple.4.5.0/lib/xamarinwatchos10/_._ create mode 100644 packages/System.ValueTuple.4.5.0/ref/MonoAndroid10/_._ create mode 100644 packages/System.ValueTuple.4.5.0/ref/MonoTouch10/_._ create mode 100644 packages/System.ValueTuple.4.5.0/ref/netcoreapp2.0/_._ create mode 100644 packages/System.ValueTuple.4.5.0/ref/netstandard2.0/_._ create mode 100644 packages/System.ValueTuple.4.5.0/ref/uap10.0.16299/_._ create mode 100644 packages/System.ValueTuple.4.5.0/ref/xamarinios10/_._ create mode 100644 packages/System.ValueTuple.4.5.0/ref/xamarinmac20/_._ create mode 100644 packages/System.ValueTuple.4.5.0/ref/xamarintvos10/_._ create mode 100644 packages/System.ValueTuple.4.5.0/ref/xamarinwatchos10/_._ create mode 100644 packages/System.ValueTuple.4.5.0/useSharedDesignerContext.txt create mode 100644 packages/System.ValueTuple.4.5.0/version.txt diff --git a/Library.Core/NodeFlow/DynamicContext.cs b/Library.Core/NodeFlow/DynamicContext.cs index be81db1..ed74041 100644 --- a/Library.Core/NodeFlow/DynamicContext.cs +++ b/Library.Core/NodeFlow/DynamicContext.cs @@ -22,15 +22,29 @@ namespace Serein.Library.Core.NodeFlow public Task CreateTimingTask(Action action, int time = 100, int count = -1) { - NodeRunCts ??= SereinIoc.GetOrRegisterInstantiate(); - return Task.Factory.StartNew(async () => + if (NodeRunCts == null) { - for (int i = 0; i < count; i++) + NodeRunCts = SereinIoc.GetOrRegisterInstantiate(); + } + // 使用局部变量,避免捕获外部的 `action` + Action localAction = action; + + return Task.Run(async () => + { + for (int i = 0; i < count && !NodeRunCts.IsCancellationRequested; i++) { - NodeRunCts.Token.ThrowIfCancellationRequested(); await Task.Delay(time); - action.Invoke(); + if (NodeRunCts.IsCancellationRequested) { break; } + //if (FlowEnvironment.IsGlobalInterrupt) + //{ + // await FlowEnvironment.GetOrCreateGlobalInterruptAsync(); + //} + // 确保对局部变量的引用 + localAction?.Invoke(); } + + // 清理引用,避免闭包导致的内存泄漏 + localAction = null; }); } } diff --git a/Library.Framework/NodeFlow/DynamicContext.cs b/Library.Framework/NodeFlow/DynamicContext.cs index f245204..ff835b8 100644 --- a/Library.Framework/NodeFlow/DynamicContext.cs +++ b/Library.Framework/NodeFlow/DynamicContext.cs @@ -1,6 +1,7 @@ using Serein.Library.Api; using Serein.Library.Utils; using System; +using System.Security.Claims; using System.Threading.Tasks; namespace Serein.Library.Framework.NodeFlow @@ -17,9 +18,11 @@ namespace Serein.Library.Framework.NodeFlow SereinIoc = sereinIoc; FlowEnvironment = flowEnvironment; } + public NodeRunCts NodeRunCts { get; set; } public ISereinIOC SereinIoc { get; } public IFlowEnvironment FlowEnvironment { get; } + public Task CreateTimingTask(Action action, int time = 100, int count = -1) { if(NodeRunCts == null) @@ -31,11 +34,14 @@ namespace Serein.Library.Framework.NodeFlow return Task.Run(async () => { - for (int i = 0; i < count; i++) + for (int i = 0; i < count && !NodeRunCts.IsCancellationRequested; i++) { - NodeRunCts.Token.ThrowIfCancellationRequested(); await Task.Delay(time); - + if (NodeRunCts.IsCancellationRequested) { break; } + //if (FlowEnvironment.IsGlobalInterrupt) + //{ + // await FlowEnvironment.GetOrCreateGlobalInterruptAsync(); + //} // 确保对局部变量的引用 localAction?.Invoke(); } diff --git a/Library.Framework/Serein.Library.Framework.csproj b/Library.Framework/Serein.Library.Framework.csproj index 9c4327c..5332cb5 100644 --- a/Library.Framework/Serein.Library.Framework.csproj +++ b/Library.Framework/Serein.Library.Framework.csproj @@ -37,6 +37,9 @@ + + ..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll + diff --git a/Library.Framework/packages.config b/Library.Framework/packages.config index d04b6cf..284ce17 100644 --- a/Library.Framework/packages.config +++ b/Library.Framework/packages.config @@ -1,4 +1,5 @@  + \ No newline at end of file diff --git a/Library/Api/IFlowEnvironment.cs b/Library/Api/IFlowEnvironment.cs index c98293f..48d5b47 100644 --- a/Library/Api/IFlowEnvironment.cs +++ b/Library/Api/IFlowEnvironment.cs @@ -5,6 +5,7 @@ using System; using System.Collections.Generic; using System.Reflection; using System.Threading.Tasks; +using static Serein.Library.Utils.ChannelFlowInterrupt; namespace Serein.Library.Api { @@ -226,7 +227,7 @@ namespace Serein.Library.Api /// 节点触发中断事件 /// /// - public delegate void NodeInterruptTriggerHandler(NodeInterruptTriggerEventArgs eventArgs); + public delegate void ExpInterruptTriggerHandler(InterruptTriggerEventArgs eventArgs); /// /// 监视的节点数据发生变化 @@ -270,23 +271,54 @@ namespace Serein.Library.Api /// /// 节点触发了中断事件参数 /// - public class NodeInterruptTriggerEventArgs : FlowEventArgs + public class InterruptTriggerEventArgs : FlowEventArgs { - public NodeInterruptTriggerEventArgs(string nodeGuid) + public enum InterruptTriggerType { - NodeGuid = nodeGuid; + /// + /// 主动监视中断 + /// + Monitor, + /// + /// 表达式中断 + /// + Exp, + } + + public InterruptTriggerEventArgs(string nodeGuid, string expression, InterruptTriggerType type) + { + this.NodeGuid = nodeGuid; + this.Expression = expression; + this.Type = type; } /// /// 中断的节点Guid /// public string NodeGuid { get; protected set; } + public string Expression { get; protected set; } + public InterruptTriggerType Type { get; protected set; } } public interface IFlowEnvironment { - ChannelFlowInterrupt ChannelFlowInterrupt { get; set; } + /// + /// 环境名称 + /// + string EnvName {get;} + /// + /// 是否全局中断 + /// + bool IsGlobalInterrupt { get; } + /// + /// 设置中断时的中断级别 + /// + //InterruptClass EnvInterruptClass { get; set; } + /// + /// 调试管理 + /// + //ChannelFlowInterrupt ChannelFlowInterrupt { get; set; } /// /// 加载Dll @@ -334,9 +366,9 @@ namespace Serein.Library.Api event NodeInterruptStateChangeHandler OnNodeInterruptStateChange; /// - /// 节点触发中断 + /// 触发中断 /// - event NodeInterruptTriggerHandler OnNodeInterruptTrigger; + event ExpInterruptTriggerHandler OnInterruptTrigger; /// @@ -417,21 +449,51 @@ namespace Serein.Library.Api /// 被中断的节点Guid /// 新的中断级别 /// - bool NodeInterruptChange(string nodeGuid,InterruptClass interruptClass); + bool SetNodeInterrupt(string nodeGuid, InterruptClass interruptClass); + + /// + /// 添加中断表达式 + /// + /// + /// + /// + bool AddInterruptExpression(string nodeGuid,string expression); /// - /// /// /// 设置节点数据监视状态 /// /// 需要监视的节点Guid /// 是否监视 void SetNodeFLowDataMonitorState(string nodeGuid, bool isMonitor); + + + + /// - /// 节点数据更新通知 + /// 流程启动器调用,节点数据更新通知 /// - /// - void FlowDataUpdateNotification(string nodeGuid, object flowData); + /// 更新了数据的节点Guid + /// 更新的数据 + void FlowDataNotification(string nodeGuid, object flowData); + + /// + /// 流程启动器调用,节点触发了中断 + /// + /// 被中断的节点Guid + /// 被触发的表达式 + /// 中断类型。0主动监视,1表达式 + void TriggerInterrupt(string nodeGuid,string expression, InterruptTriggerEventArgs.InterruptTriggerType type); + + /// + /// 全局中断 + /// + /// + /// + /// + Task GetOrCreateGlobalInterruptAsync(); + + } } diff --git a/Library/Entity/NodeDebugSetting.cs b/Library/Entity/NodeDebugSetting.cs index 9008fb7..de5bed9 100644 --- a/Library/Entity/NodeDebugSetting.cs +++ b/Library/Entity/NodeDebugSetting.cs @@ -1,6 +1,8 @@ using System; using System.Collections.Generic; using System.Text; +using System.Threading.Tasks; +using static Serein.Library.Utils.ChannelFlowInterrupt; namespace Serein.Library.Entity { @@ -21,8 +23,21 @@ namespace Serein.Library.Entity /// public InterruptClass InterruptClass { get; set; } = InterruptClass.None; + /// + /// 中断表达式 + /// + public List InterruptExpressions { get; } = new List(); - public List InterruptExpression { get; } = new List(); + + /// + /// 取消中断的回调函数 + /// + public Action CancelInterruptCallback { get; set; } + + /// + /// 中断Task + /// + public Func> GetInterruptTask { get; set; } } /// @@ -41,7 +56,7 @@ namespace Serein.Library.Entity /// /// 分组中断,中断进入指定节点分组的分支。(暂未实现相关) /// - Group, + // Group, /// /// 全局中断,中断全局所有节点的运行。(暂未实现相关) /// diff --git a/Library/Utils/ChannelFlowInterrupt.cs b/Library/Utils/ChannelFlowInterrupt.cs index 22ced6c..c8e1402 100644 --- a/Library/Utils/ChannelFlowInterrupt.cs +++ b/Library/Utils/ChannelFlowInterrupt.cs @@ -1,4 +1,5 @@ -using System; +#region plan 2 +using System; using System.Collections.Concurrent; using System.Threading; using System.Threading.Channels; @@ -6,125 +7,351 @@ using System.Threading.Tasks; namespace Serein.Library.Utils { - public class ChannelFlowInterrupt +/// +/// 流程中断管理 +/// +public class ChannelFlowInterrupt +{ + + + +/// +/// 中断取消类型 +/// +public enum CancelType +{ + Manual, + Error, + Overtime +} + +// 使用并发字典管理每个信号对应的 Channel +private readonly ConcurrentDictionary> _channels = new ConcurrentDictionary>(); + +/// +/// 创建信号并指定超时时间,到期后自动触发(异步方法) +/// +/// 信号标识符 +/// 超时时间 +/// 等待任务 +public async Task GetCreateChannelWithTimeoutAsync(string signal, TimeSpan outTime) +{ + var channel = GetOrCreateChannel(signal); + var cts = new CancellationTokenSource(); + + // 异步任务:超时后自动触发信号 + _ = Task.Run(async () => { - /// - /// 中断取消类型 - /// - public enum CancelType + try { - Manual, - Overtime - } - - // 使用并发字典管理每个信号对应的 Channel - private readonly ConcurrentDictionary> _channels = new ConcurrentDictionary>(); - - /// - /// 创建信号并指定超时时间,到期后自动触发(异步方法) - /// - /// 信号标识符 - /// 超时时间 - /// 等待任务 - public async Task CreateChannelWithTimeoutAsync(string signal, TimeSpan outTime) - { - var channel = GetOrCreateChannel(signal); - var cts = new CancellationTokenSource(); - - // 异步任务:超时后自动触发信号 - _ = Task.Run(async () => + await Task.Delay(outTime, cts.Token); + if (!cts.Token.IsCancellationRequested) { - try - { - await Task.Delay(outTime, cts.Token); - if(!cts.Token.IsCancellationRequested) - { - await channel.Writer.WriteAsync(CancelType.Overtime); - } - - } - catch (OperationCanceledException) - { - // 超时任务被取消 - } - finally - { - cts?.Dispose(); - } - }, cts.Token); - - // 等待信号传入(超时或手动触发) - var result = await channel.Reader.ReadAsync(); - return result; - } - - /// - /// 创建信号并指定超时时间,到期后自动触发(同步阻塞方法) - /// - /// 信号标识符 - /// 超时时间 - public CancelType CreateChannelWithTimeoutSync(string signal, TimeSpan timeout) - { - var channel = GetOrCreateChannel(signal); - var cts = new CancellationTokenSource(); - CancellationToken token = cts.Token; - - // 异步任务:超时后自动触发信号 - _ = Task.Run(async () => - { - try - { - await Task.Delay(timeout, token); - await channel.Writer.WriteAsync(CancelType.Overtime); - } - catch (OperationCanceledException) - { - // 任务被取消 - } - }); - - // 同步阻塞直到信号触发或超时 - var result = channel.Reader.ReadAsync().AsTask().GetAwaiter().GetResult(); - return result; - } - - /// - /// 触发信号 - /// - /// 信号字符串 - /// 是否成功触发 - public bool TriggerSignal(string signal) - { - if (_channels.TryGetValue(signal, out var channel)) - { - // 手动触发信号 - channel.Writer.TryWrite(CancelType.Manual); - return true; + await channel.Writer.WriteAsync(CancelType.Overtime); } - return false; } - - /// - /// 取消所有任务 - /// - public void CancelAllTasks() + catch (OperationCanceledException) { - foreach (var channel in _channels.Values) - { - channel.Writer.Complete(); - } - _channels.Clear(); + // 超时任务被取消 } - - /// - /// 获取或创建指定信号的 Channel - /// - /// 信号字符串 - /// 对应的 Channel - private Channel GetOrCreateChannel(string signal) + finally { - return _channels.GetOrAdd(signal, _ => Channel.CreateUnbounded()); + cts?.Dispose(); } + }, cts.Token); + + // 等待信号传入(超时或手动触发) + try + { + var result = await channel.Reader.ReadAsync(); + return result; + } + catch + { + return CancelType.Error; + } + +} + + +/// +/// 创建信号,直到手动触发(异步方法) +/// +/// 信号标识符 +/// 超时时间 +/// 等待任务 +public async Task GetOrCreateChannelAsync(string signal) +{ + try + { + var channel = GetOrCreateChannel(signal); + // 等待信号传入(超时或手动触发) + var result = await channel.Reader.ReadAsync(); + return result; + } + catch + { + return CancelType.Manual; } } +/// +/// 创建信号并指定超时时间,到期后自动触发(同步阻塞方法) +/// +/// 信号标识符 +/// 超时时间 +public CancelType CreateChannelWithTimeoutSync(string signal, TimeSpan timeout) +{ + var channel = GetOrCreateChannel(signal); + var cts = new CancellationTokenSource(); + CancellationToken token = cts.Token; + + // 异步任务:超时后自动触发信号 + _ = Task.Run(async () => + { + try + { + await Task.Delay(timeout, token); + await channel.Writer.WriteAsync(CancelType.Overtime); + } + catch (OperationCanceledException ex) + { + // 任务被取消 + await Console.Out.WriteLineAsync(ex.Message); + } + }); + + // 同步阻塞直到信号触发或超时 + var result = channel.Reader.ReadAsync().AsTask().GetAwaiter().GetResult(); + return result; + +} + +/// +/// 触发信号 +/// +/// 信号字符串 +/// 是否成功触发 +public bool TriggerSignal(string signal) +{ + //if (_channels.TryGetValue(signal, out var channel)) + //{ + // // 手动触发信号 + // channel.Writer.TryWrite(CancelType.Manual); + // return true; + //} + //return false; + + + try + { + if (_channels.TryGetValue(signal, out var channel)) + { + // 手动触发信号 + channel.Writer.TryWrite(CancelType.Manual); + + // 完成写入,标记该信号通道不再接受新写入 + channel.Writer.Complete(); + + // 触发后移除信号 + _channels.TryRemove(signal, out _); + + return true; + } + return false; + } + catch + { + + return false; + } + +} + +/// +/// 取消所有任务 +/// +public void CancelAllTasks() +{ + foreach (var channel in _channels.Values) + { + try + { + channel.Writer.Complete(); + } + finally + { + + } + } + _channels.Clear(); +} + +/// +/// 获取或创建指定信号的 Channel +/// +/// 信号字符串 +/// 对应的 Channel +private Channel GetOrCreateChannel(string signal) +{ + return _channels.GetOrAdd(signal, _ => Channel.CreateUnbounded()); +} +} +} + +#endregion + +#region plan 3 + +//using System; +//using System.Collections.Concurrent; +//using System.Threading; +//using System.Threading.Channels; +//using System.Threading.Tasks; + +//namespace Serein.Library.Utils +//{ +// /// +// /// 流程中断管理类,提供了基于 Channel 的异步中断机制 +// /// +// public class ChannelFlowInterrupt +// { +// /// +// /// 中断取消类型 +// /// +// public enum CancelType +// { +// Manual, // 手动触发 +// Overtime, // 超时触发 +// Discard // 丢弃触发 +// } + +// // 使用并发字典管理每个信号对应的 Channel 和状态 +// private readonly ConcurrentDictionary Channel, bool IsCancelled, bool IsDiscardMode)> _channels +// = new ConcurrentDictionary, bool, bool)>(); + +// // 锁对象,用于保护并发访问 +// private readonly object _lock = new object(); + +// /// +// /// 创建带有超时功能的信号,超时后自动触发 +// /// +// public async Task GetCreateChannelWithTimeoutAsync(string signal, TimeSpan outTime) +// { +// var (channel, isCancelled, isDiscardMode) = GetOrCreateChannel(signal); + +// // 如果信号已取消或在丢弃模式下,立即返回丢弃类型 +// if (isCancelled || isDiscardMode) return CancelType.Discard; + +// var cts = new CancellationTokenSource(); + +// _ = Task.Run(async () => +// { +// try +// { +// await Task.Delay(outTime, cts.Token); +// if (!cts.Token.IsCancellationRequested && !isCancelled) +// { +// await channel.Writer.WriteAsync(CancelType.Overtime); +// } +// } +// catch (OperationCanceledException) +// { +// // 处理任务取消的情况 +// } +// finally +// { +// cts.Dispose(); +// } +// }, cts.Token); + +// return await channel.Reader.ReadAsync(); +// } + +// /// +// /// 创建或获取现有信号,等待手动触发 +// /// +// public async Task GetOrCreateChannelAsync(string signal) +// { +// var (channel, isCancelled, isDiscardMode) = GetOrCreateChannel(signal); + +// // 如果信号已取消或在丢弃模式下,立即返回丢弃类型 +// if (isCancelled || isDiscardMode) return CancelType.Discard; + +// return await channel.Reader.ReadAsync(); +// } + +// /// +// /// 触发信号并将其移除 +// /// +// public bool TriggerSignal(string signal) +// { +// lock (_lock) +// { +// if (_channels.TryGetValue(signal, out var channelInfo)) +// { +// var (channel, isCancelled, isDiscardMode) = channelInfo; + +// // 如果信号未被取消,则触发并标记为已取消 +// if (!isCancelled) +// { +// channel.Writer.TryWrite(CancelType.Manual); +// _channels[signal] = (channel, true, false); // 标记为已取消 +// _channels.TryRemove(signal, out _); // 从字典中移除信号 +// return true; +// } +// } +// } +// return false; +// } + +// /// +// /// 启用丢弃模式,所有后续获取的信号将直接返回丢弃类型 +// /// +// /// 信号标识符 +// public void EnableDiscardMode(string signal,bool state = true) +// { +// lock (_lock) +// { +// if (_channels.TryGetValue(signal, out var channelInfo)) +// { +// var (channel, isCancelled, _) = channelInfo; +// _channels[signal] = (channel, isCancelled, state); // 标记为丢弃模式 +// } +// } +// } + +// /// +// /// 取消所有任务 +// /// +// public void CancelAllTasks() +// { +// foreach (var (channel, _, _) in _channels.Values) +// { +// try +// { +// channel.Writer.Complete(); +// } +// catch +// { +// // 忽略完成时的异常 +// } +// } +// _channels.Clear(); +// } + +// /// +// /// 获取或创建指定信号的 Channel 通道 +// /// +// private (Channel, bool, bool) GetOrCreateChannel(string signal) +// { +// lock (_lock) +// { +// return _channels.GetOrAdd(signal, _ => (Channel.CreateUnbounded(), false, false)); +// } +// } +// } +//} + + +#endregion \ No newline at end of file diff --git a/Library/Web/Attribute.cs b/Library/Web/Attribute.cs index 129affb..c7a817b 100644 --- a/Library/Web/Attribute.cs +++ b/Library/Web/Attribute.cs @@ -68,7 +68,7 @@ namespace Serein.Library.Web /// /// /// - public WebApiAttribute(API http = API.POST, bool isUrl = false, string url = "") + public WebApiAttribute(API http = API.POST, bool isUrl = true, string url = "") { Http = http; Url = url; diff --git a/NodeFlow/Base/NodeModelBaseData.cs b/NodeFlow/Base/NodeModelBaseData.cs index 06ef4ad..7880547 100644 --- a/NodeFlow/Base/NodeModelBaseData.cs +++ b/NodeFlow/Base/NodeModelBaseData.cs @@ -78,10 +78,42 @@ namespace Serein.NodeFlow.Base /// public Exception RuningException { get; set; } = null; + /// - /// 当前传递数据(执行了节点对应的方法,才会存在值) + /// 控制FlowData在同一时间只会被同一个线程更改。 /// - protected object? FlowData { get; set; } = null; + private readonly ReaderWriterLockSlim _flowDataLock = new ReaderWriterLockSlim(); + private object? _flowData; + /// + /// 当前传递数据(执行了节点对应的方法,才会存在值)。 + /// + protected object? FlowData + { + get + { + _flowDataLock.EnterReadLock(); + try + { + return _flowData; + } + finally + { + _flowDataLock.ExitReadLock(); + } + } + set + { + _flowDataLock.EnterWriteLock(); + try + { + _flowData = value; + } + finally + { + _flowDataLock.ExitWriteLock(); + } + } + } } diff --git a/NodeFlow/Base/NodeModelBaseFunc.cs b/NodeFlow/Base/NodeModelBaseFunc.cs index 06f4035..09bcb23 100644 --- a/NodeFlow/Base/NodeModelBaseFunc.cs +++ b/NodeFlow/Base/NodeModelBaseFunc.cs @@ -27,15 +27,6 @@ namespace Serein.NodeFlow.Base #region 调试中断 - public Action? CancelInterruptCallback; - - /// - /// 中断节点 - /// - public void Interrupt() - { - this.DebugSetting.InterruptClass = InterruptClass.Branch; - } /// /// 不再中断 @@ -43,9 +34,9 @@ namespace Serein.NodeFlow.Base public void CancelInterrupt() { this.DebugSetting.InterruptClass = InterruptClass.None; - CancelInterruptCallback?.Invoke(); - CancelInterruptCallback = null; + DebugSetting.CancelInterruptCallback?.Invoke(); } + #endregion #region 导出/导入项目文件节点信息 @@ -105,12 +96,13 @@ namespace Serein.NodeFlow.Base /// public async Task StartExecute(IDynamicContext context) { - Stack stack = new Stack(); stack.Push(this); var cts = context.SereinIoc.Get(FlowStarter.FlipFlopCtsName); while (stack.Count > 0 && !cts.IsCancellationRequested) // 循环中直到栈为空才会退出循环 { + // 节点执行异常时跳过执行 + // 从栈中弹出一个节点作为当前节点进行处理 var currentNode = stack.Pop(); @@ -126,45 +118,57 @@ namespace Serein.NodeFlow.Base var upstreamNodes = currentNode.SuccessorNodes[ConnectionType.Upstream]; for (int i = upstreamNodes.Count - 1; i >= 0; i--) { - if (upstreamNodes[i].DebugSetting.IsEnable) // 排除未启用的上游节点 + // 筛选出启用的节点 + if (upstreamNodes[i].DebugSetting.IsEnable) { + if (upstreamNodes[i].DebugSetting.InterruptClass != InterruptClass.None) // 执行触发前 + { + var cancelType = await upstreamNodes[i].DebugSetting.GetInterruptTask(); + await Console.Out.WriteLineAsync($"[{upstreamNodes[i].MethodDetails.MethodName}]中断已{cancelType},开始执行后继分支"); + } upstreamNodes[i].PreviousNode = currentNode; - var upNewFlowData = await upstreamNodes[i].ExecutingAsync(context); // 执行流程节点的上游分支 - await FlowRefreshDataOrInterrupt(context, upstreamNodes[i], upNewFlowData); // 执行上游分支后刷新上游节点数据 + await upstreamNodes[i].StartExecute(context); // 执行流程节点的上游分支 } } + // 执行当前节点 - var newFlowData = await currentNode.ExecutingAsync(context); - await FlowRefreshDataOrInterrupt(context, currentNode, newFlowData); // 执行当前节点后刷新数据 - #endregion - - - #region 执行完成 + object? newFlowData = await currentNode.ExecutingAsync(context); if (cts == null || cts.IsCancellationRequested || currentNode.NextOrientation == ConnectionType.None) { // 不再执行 break; } + await RefreshFlowDataAndExpInterrupt(context, currentNode, newFlowData); // 执行当前节点后刷新数据 + #endregion + #region 执行完成 + // 选择后继分支 var nextNodes = currentNode.SuccessorNodes[currentNode.NextOrientation]; // 将下一个节点集合中的所有节点逆序推入栈中 for (int i = nextNodes.Count - 1; i >= 0; i--) { - // 排除未启用的节点 - if (nextNodes[i].DebugSetting.IsEnable) + // 筛选出启用的节点、未被中断的节点 + if (nextNodes[i].DebugSetting.IsEnable /*&& nextNodes[i].DebugSetting.InterruptClass == InterruptClass.None*/) { + if (nextNodes[i].DebugSetting.InterruptClass != InterruptClass.None) // 执行触发前 + { + var cancelType = await nextNodes[i].DebugSetting.GetInterruptTask(); + await Console.Out.WriteLineAsync($"[{nextNodes[i].MethodDetails.MethodName}]中断已{cancelType},开始执行后继分支"); + } nextNodes[i].PreviousNode = currentNode; stack.Push(nextNodes[i]); } } #endregion + } } + /// /// 执行节点对应的方法 /// @@ -173,12 +177,16 @@ namespace Serein.NodeFlow.Base public virtual async Task ExecutingAsync(IDynamicContext context) { #region 调试中断 - if (DebugSetting.InterruptClass != InterruptClass.None && TryCreateInterruptTask(context, this, out Task? task)) // 执行节点前检查中断 + + if (DebugSetting.InterruptClass != InterruptClass.None) // 执行触发前 { - string guid = this.Guid.ToString(); - this.CancelInterruptCallback ??= () => context.FlowEnvironment.ChannelFlowInterrupt.TriggerSignal(guid); - var cancelType = await task!; - await Console.Out.WriteLineAsync($"[{this.MethodDetails.MethodName}]中断已{(cancelType == CancelType.Manual ? "手动取消" : "自动取消")},开始执行后继分支"); + var cancelType = await this.DebugSetting.GetInterruptTask(); + //if(cancelType == CancelType.Discard) + //{ + // this.NextOrientation = ConnectionType.None; + // return null; + //} + await Console.Out.WriteLineAsync($"[{this.MethodDetails.MethodName}]中断已{cancelType},开始执行后继分支"); } #endregion @@ -192,7 +200,7 @@ namespace Serein.NodeFlow.Base try { // Action/Func([方法作用的实例],[可能的参数值],[可能的返回值]) - object?[]? parameters = GetParameters(context,this, md); + object?[]? parameters = GetParameters(context, this, md); object? result = (haveParameter, haveResult) switch { (false, false) => Execution((Action)del, instance), // 调用节点方法,返回null @@ -213,7 +221,6 @@ namespace Serein.NodeFlow.Base } - #region 节点转换的委托类型 public static object? Execution(Action del, object instance) { @@ -326,64 +333,50 @@ namespace Serein.NodeFlow.Base /// 更新节点数据,并检查监视表达式 /// /// - public static async Task FlowRefreshDataOrInterrupt(IDynamicContext context , NodeModelBase nodeModel, object? newData = null) + public static async Task RefreshFlowDataAndExpInterrupt(IDynamicContext context, NodeModelBase nodeModel, object? newData = null) { string guid = nodeModel.Guid; - if (newData is not null) + // 检查是否存在监视表达式 + if (newData is not null && nodeModel.DebugSetting.InterruptExpressions.Count > 0) { - // 判断是否存在表达式 - bool isInterrupt = false; - // 判断监视表达式 - for (int i = 0; i < nodeModel.DebugSetting.InterruptExpression.Count && !isInterrupt; i++) + // 表达式环境下判断是否需要执行中断 + bool isExpInterrupt = false; + string? exp = ""; + // 判断执行监视表达式,直到为 true 时退出 + for (int i = 0; i < nodeModel.DebugSetting.InterruptExpressions.Count && !isExpInterrupt; i++) { - string? exp = nodeModel.DebugSetting.InterruptExpression[i]; - isInterrupt = SereinConditionParser.To(newData, exp); + exp = nodeModel.DebugSetting.InterruptExpressions[i]; + isExpInterrupt = SereinConditionParser.To(newData, exp); } - if (isInterrupt) // 触发中断 + + if (isExpInterrupt) // 触发中断 { - nodeModel.Interrupt(); - if(TryCreateInterruptTask(context, nodeModel, out Task? task)) + InterruptClass interruptClass = InterruptClass.Branch; // 分支中断 + if (context.FlowEnvironment.SetNodeInterrupt(nodeModel.Guid, interruptClass)) { - - nodeModel.CancelInterruptCallback ??= () => context.FlowEnvironment.ChannelFlowInterrupt.TriggerSignal(guid); - var cancelType = await task!; - await Console.Out.WriteLineAsync($"[{nodeModel.MethodDetails.MethodName}]中断已{(cancelType == CancelType.Manual ? "手动取消" : "自动取消")},开始执行后继分支"); + context.FlowEnvironment.TriggerInterrupt(guid, exp, InterruptTriggerEventArgs.InterruptTriggerType.Exp); + var cancelType = await nodeModel.DebugSetting.GetInterruptTask(); + await Console.Out.WriteLineAsync($"[{nodeModel.MethodDetails.MethodName}]中断已{cancelType},开始执行后继分支"); } + } } - nodeModel.FlowData = newData; - // 节点是否监视了数据,如果是,调用环境接口触发其相关事件。 + //else if (nodeModel.DebugSetting.InterruptClass != InterruptClass.None) + //{ + // var cancelType = await nodeModel.DebugSetting.InterruptTask; + // await Console.Out.WriteLineAsync($"[{nodeModel.MethodDetails.MethodName}]中断已{(cancelType == CancelType.Manual ? "手动取消" : "自动取消")},开始执行后继分支"); + //} + + nodeModel.FlowData = newData; // 替换数据 + // 节点是否监视了数据,如果是,调用环境接口触发其相关事件。 if (nodeModel.DebugSetting.IsMonitorFlowData) { - context.FlowEnvironment.FlowDataUpdateNotification(guid, newData); + context.FlowEnvironment.FlowDataNotification(guid, newData); + } + } - public static bool TryCreateInterruptTask(IDynamicContext context, NodeModelBase currentNode, out Task? task) - { - bool haveTask; - Console.WriteLine($"[{currentNode.MethodDetails.MethodName}]在当前分支中断"); - - if (currentNode.DebugSetting.InterruptClass == InterruptClass.None) - { - haveTask = false; - task = null; - } - else if (currentNode.DebugSetting.InterruptClass == InterruptClass.Branch) // 中断当前分支 - { - haveTask = true; - task = context.FlowEnvironment.ChannelFlowInterrupt.CreateChannelWithTimeoutAsync(currentNode.Guid, TimeSpan.FromSeconds(60 * 30)); // 中断30分钟 - } - else - { - haveTask = false; - task = null; - } - - return haveTask; - } - - /// /// 释放对象 /// @@ -402,7 +395,7 @@ namespace Serein.NodeFlow.Base /// public object? GetFlowData() { - return this.FlowData ; + return this.FlowData; } #endregion diff --git a/NodeFlow/FlowEnvironment.cs b/NodeFlow/FlowEnvironment.cs index 5871b63..2bfae7d 100644 --- a/NodeFlow/FlowEnvironment.cs +++ b/NodeFlow/FlowEnvironment.cs @@ -11,6 +11,7 @@ using Serein.NodeFlow.Tool; using System.Collections.Concurrent; using System.Reflection; using System.Xml.Linq; +using static Serein.Library.Utils.ChannelFlowInterrupt; using static Serein.NodeFlow.FlowStarter; namespace Serein.NodeFlow @@ -57,7 +58,7 @@ namespace Serein.NodeFlow /// /// 节点的命名空间 /// - public const string NodeSpaceName = $"{nameof(Serein)}.{nameof(Serein.NodeFlow)}.{nameof(Serein.NodeFlow.Model)}"; + public const string SpaceName = $"{nameof(Serein)}.{nameof(Serein.NodeFlow)}.{nameof(Serein.NodeFlow.Model)}"; #region 环境接口事件 /// @@ -108,20 +109,25 @@ namespace Serein.NodeFlow /// /// 节点触发了中断 /// - public event NodeInterruptTriggerHandler OnNodeInterruptTrigger; + public event ExpInterruptTriggerHandler OnInterruptTrigger; #endregion + /// + /// 环境名称 + /// + public string EnvName { get; set; } = SpaceName; + + /// + /// 是否全局中断 + /// + public bool IsGlobalInterrupt { get; set; } /// /// 流程中断器 /// public ChannelFlowInterrupt ChannelFlowInterrupt { get; set; } - /// - /// 是否全局中断 - /// - public bool IsGlobalInterrupt { get; set; } /// /// 存储加载的程序集路径 @@ -198,15 +204,6 @@ namespace Serein.NodeFlow await flowStarter.RunAsync(this, nodes, initMethods, loadingMethods, exitMethods); - - //await flowStarter.RunAsync(StartNode, - // this, - // runMethodDetailess, - // initMethods, - // loadingMethods, - // exitMethods, - // flipflopNodes); - if(flowStarter?.FlipFlopState == RunState.NoStart) { this.Exit(); // 未运行触发器时,才会调用结束方法 @@ -466,7 +463,8 @@ namespace Serein.NodeFlow /// public void RemoteNode(string nodeGuid) { - NodeModelBase remoteNode = GuidToModel(nodeGuid); + var remoteNode = GuidToModel(nodeGuid); + if (remoteNode is null) return; if (remoteNode.IsStart) { return; @@ -498,12 +496,6 @@ namespace Serein.NodeFlow NodeModelBase? toNode = snc.Value[i]; RemoteConnect(remoteNode, toNode, connectionType); - //remoteNode.SuccessorNodes[connectionType].RemoveAt(i); - - //OnNodeConnectChange?.Invoke(new NodeConnectChangeEventArgs(remoteNode.Guid, - // toNode.Guid, - // connectionType, - // NodeConnectChangeEventArgs.ConnectChangeType.Remote)); // 通知UI } } @@ -522,8 +514,10 @@ namespace Serein.NodeFlow public void ConnectNode(string fromNodeGuid, string toNodeGuid, ConnectionType connectionType) { // 获取起始节点与目标节点 - NodeModelBase fromNode = GuidToModel(fromNodeGuid); - NodeModelBase toNode = GuidToModel(toNodeGuid); + var fromNode = GuidToModel(fromNodeGuid); + var toNode = GuidToModel(toNodeGuid); + if (fromNode is null) return; + if (toNode is null) return; // 开始连接 ConnectNode(fromNode, toNode, connectionType); // 外部调用连接方法 @@ -539,16 +533,12 @@ namespace Serein.NodeFlow public void RemoteConnect(string fromNodeGuid, string toNodeGuid, ConnectionType connectionType) { // 获取起始节点与目标节点 - NodeModelBase fromNode = GuidToModel(fromNodeGuid); - NodeModelBase toNode = GuidToModel(toNodeGuid); + var fromNode = GuidToModel(fromNodeGuid); + var toNode = GuidToModel(toNodeGuid); + if (fromNode is null) return; + if (toNode is null) return; RemoteConnect(fromNode, toNode, connectionType); - //fromNode.SuccessorNodes[connectionType].Remove(toNode); - //toNode.PreviousNodes[connectionType].Remove(fromNode); - //OnNodeConnectChange?.Invoke(new NodeConnectChangeEventArgs(fromNodeGuid, - // toNodeGuid, - // connectionType, - // NodeConnectChangeEventArgs.ConnectChangeType.Remote)); } @@ -606,29 +596,9 @@ namespace Serein.NodeFlow /// public void SetStartNode(string newNodeGuid) { - NodeModelBase newStartNodeModel = GuidToModel(newNodeGuid); + var newStartNodeModel = GuidToModel(newNodeGuid); + if (newStartNodeModel is null) return; SetStartNode(newStartNodeModel); - - //if (string.IsNullOrEmpty(newNodeGuid)) - //{ - // return; - //} - //if (Nodes.TryGetValue(newNodeGuid, out NodeModelBase? newStartNodeModel)) - //{ - // if (newStartNodeModel != null) - // { - // SetStartNode(newStartNodeModel); - // //var oldNodeGuid = ""; - // //if(StartNode != null) - // //{ - // // oldNodeGuid = StartNode.Guid; - // // StartNode.IsStart = false; - // //} - // //newStartNodeModel.IsStart = true; - // //StartNode = newStartNodeModel; - // //OnStartNodeChange?.Invoke(new StartNodeChangeEventArgs(oldNodeGuid, newNodeGuid)); - // } - //} } /// @@ -637,52 +607,149 @@ namespace Serein.NodeFlow /// 被中断的目标节点Guid /// 中断级别 /// 操作是否成功 - public bool NodeInterruptChange(string nodeGuid, InterruptClass interruptClass) + public bool SetNodeInterrupt(string nodeGuid, InterruptClass interruptClass) { - NodeModelBase nodeModel = GuidToModel(nodeGuid); + var nodeModel = GuidToModel(nodeGuid); + if (nodeModel is null) return false; + if (interruptClass == InterruptClass.None) + { + nodeModel.CancelInterrupt(); + } + else if (interruptClass == InterruptClass.Branch) + { + nodeModel.DebugSetting.CancelInterruptCallback?.Invoke(); + nodeModel.DebugSetting.GetInterruptTask = () => + { + TriggerInterrupt(nodeGuid, "", InterruptTriggerEventArgs.InterruptTriggerType.Monitor); + return ChannelFlowInterrupt.GetOrCreateChannelAsync(nodeGuid); + }; + nodeModel.DebugSetting.CancelInterruptCallback = () => + { + ChannelFlowInterrupt.TriggerSignal(nodeGuid); + }; + + } + else if (interruptClass == InterruptClass.Global) // 全局……做不了omg + { + return false; + } nodeModel.DebugSetting.InterruptClass = interruptClass; OnNodeInterruptStateChange.Invoke(new NodeInterruptStateChangeEventArgs(nodeGuid, interruptClass)); return true; - } + + /// + /// 添加表达式中断 + /// + /// + /// + /// + public bool AddInterruptExpression(string nodeGuid, string expression) + { + var nodeModel = GuidToModel(nodeGuid); + if (nodeModel is null) return false; + if (string.IsNullOrEmpty(expression)) + { + nodeModel.DebugSetting.InterruptExpressions.Clear();// 暂时删除,等UI做好了 + return true; + } + + if (nodeModel.DebugSetting.InterruptExpressions.Contains(expression)) + { + Console.WriteLine("表达式已存在"); + return false; + } + else + { + nodeModel.DebugSetting.InterruptExpressions.Clear();// 暂时删除,等UI做好了 + nodeModel.DebugSetting.InterruptExpressions.Add(expression); + return true; + } + } + + /// /// 监视节点的数据 /// /// 需要监视的节点Guid public void SetNodeFLowDataMonitorState(string nodeGuid, bool isMonitor) { - NodeModelBase nodeModel = GuidToModel(nodeGuid); + var nodeModel = GuidToModel(nodeGuid); + if (nodeModel is null) return; nodeModel.DebugSetting.IsMonitorFlowData = isMonitor; + + if (isMonitor) + { + var obj = nodeModel.GetFlowData(); + if(obj is not null) + { + FlowDataNotification(nodeGuid, obj); + + } + } } /// /// 节点数据更新通知 /// /// - public void FlowDataUpdateNotification(string nodeGuid, object flowData) + public void FlowDataNotification(string nodeGuid, object flowData) { OnMonitorObjectChange?.Invoke(new MonitorObjectEventArgs(nodeGuid, flowData)); } + /// + /// + /// + /// 节点 + /// 表达式 + /// 类型,0节点,1表达式 + public void TriggerInterrupt(string nodeGuid, string expression, InterruptTriggerEventArgs.InterruptTriggerType type) + { + OnInterruptTrigger?.Invoke(new InterruptTriggerEventArgs(nodeGuid, expression, type)); + } + + + public Task GetOrCreateGlobalInterruptAsync() + { + IsGlobalInterrupt = true; + return ChannelFlowInterrupt.GetOrCreateChannelAsync(this.EnvName); + } + + + + + + + + + + + + + /// /// Guid 转 NodeModel /// /// 节点Guid /// 节点Model /// 无法获取节点、Guid/节点为null时报错 - private NodeModelBase GuidToModel(string nodeGuid) + private NodeModelBase? GuidToModel(string nodeGuid) { if (string.IsNullOrEmpty(nodeGuid)) { - throw new ArgumentNullException("not contains - Guid没有对应节点:" + (nodeGuid)); + //throw new ArgumentNullException("not contains - Guid没有对应节点:" + (nodeGuid)); + return null; } if (!Nodes.TryGetValue(nodeGuid, out NodeModelBase? nodeModel) || nodeModel is null) { - throw new ArgumentNullException("null - Guid存在对应节点,但节点为null:" + (nodeGuid)); + //throw new ArgumentNullException("null - Guid存在对应节点,但节点为null:" + (nodeGuid)); + return null; } return nodeModel; } + #endregion #region 私有方法 diff --git a/NodeFlow/FlowStarter.cs b/NodeFlow/FlowStarter.cs index 9737f0a..f46e408 100644 --- a/NodeFlow/FlowStarter.cs +++ b/NodeFlow/FlowStarter.cs @@ -270,6 +270,7 @@ namespace Serein.NodeFlow catch (Exception ex) { await Console.Out.WriteLineAsync(ex.ToString()); + // await Console.Out.WriteLineAsync(ex.Message); } finally { @@ -303,20 +304,27 @@ namespace Serein.NodeFlow while (!_flipFlopCts.IsCancellationRequested) { - var newFlowData = await singleFlipFlopNode.ExecutingAsync(context); - await NodeModelBase.FlowRefreshDataOrInterrupt(context, singleFlipFlopNode, newFlowData); // 全局触发器触发后刷新该触发器的节点数据 + var newFlowData = await singleFlipFlopNode.ExecutingAsync(context); // 获取触发器等待Task + await NodeModelBase.RefreshFlowDataAndExpInterrupt(context, singleFlipFlopNode, newFlowData); // 全局触发器触发后刷新该触发器的节点数据 if (singleFlipFlopNode.NextOrientation != ConnectionType.None) { var nextNodes = singleFlipFlopNode.SuccessorNodes[singleFlipFlopNode.NextOrientation]; for (int i = nextNodes.Count - 1; i >= 0 && !_flipFlopCts.IsCancellationRequested; i--) { - if (nextNodes[i].DebugSetting.IsEnable) // 排除未启用的后继节点 + // 筛选出启用的节点 + if (nextNodes[i].DebugSetting.IsEnable) { nextNodes[i].PreviousNode = singleFlipFlopNode; + if (nextNodes[i].DebugSetting.InterruptClass != InterruptClass.None) // 执行触发前 + { + var cancelType = await nextNodes[i].DebugSetting.GetInterruptTask(); + await Console.Out.WriteLineAsync($"[{nextNodes[i].MethodDetails.MethodName}]中断已{cancelType},开始执行后继分支"); + } await nextNodes[i].StartExecute(context); // 启动执行触发器后继分支的节点 } } } + } } catch (Exception ex) diff --git a/NodeFlow/Model/SingleFlipflopNode.cs b/NodeFlow/Model/SingleFlipflopNode.cs index 983905e..03d0ba8 100644 --- a/NodeFlow/Model/SingleFlipflopNode.cs +++ b/NodeFlow/Model/SingleFlipflopNode.cs @@ -22,12 +22,16 @@ namespace Serein.NodeFlow.Model public override async Task ExecutingAsync(IDynamicContext context) { #region 执行前中断 - if (DebugSetting.InterruptClass != InterruptClass.None && TryCreateInterruptTask(context, this, out Task? task)) // 执行触发前 + if (DebugSetting.InterruptClass != InterruptClass.None) // 执行触发前 { string guid = this.Guid.ToString(); - this.CancelInterruptCallback ??= () => context.FlowEnvironment.ChannelFlowInterrupt.TriggerSignal(guid); - var cancelType = await task!; - await Console.Out.WriteLineAsync($"[{this.MethodDetails.MethodName}]中断已{(cancelType == CancelType.Manual ? "手动取消" : "自动取消")},开始执行后继分支"); + var cancelType = await this.DebugSetting.GetInterruptTask(); + //if (cancelType == CancelType.Discard) + //{ + // this.NextOrientation = ConnectionType.None; + // return null; + //} + await Console.Out.WriteLineAsync($"[{this.MethodDetails.MethodName}]中断已{cancelType},开始执行后继分支"); } #endregion diff --git a/NodeFlow/Tool/SereinExpression/Resolver/MemberConditionResolver.cs b/NodeFlow/Tool/SereinExpression/Resolver/MemberConditionResolver.cs index d75b8ab..db34831 100644 --- a/NodeFlow/Tool/SereinExpression/Resolver/MemberConditionResolver.cs +++ b/NodeFlow/Tool/SereinExpression/Resolver/MemberConditionResolver.cs @@ -14,6 +14,8 @@ namespace Serein.NodeFlow.Tool.SereinExpression.Resolver public T Value { get; set; } public string ArithmeticExpression { get; set; } + public T RangeEnd { get; internal set; } + public T RangeStart { get; internal set; } public override bool Evaluate(object? obj) { @@ -24,6 +26,8 @@ namespace Serein.NodeFlow.Tool.SereinExpression.Resolver { return new ValueTypeConditionResolver { + RangeStart = RangeStart, + RangeEnd = RangeEnd, Op = Op, Value = Value, ArithmeticExpression = ArithmeticExpression, diff --git a/NodeFlow/Tool/SereinExpression/SereinConditionParser.cs b/NodeFlow/Tool/SereinExpression/SereinConditionParser.cs index 1525bbd..0108a2d 100644 --- a/NodeFlow/Tool/SereinExpression/SereinConditionParser.cs +++ b/NodeFlow/Tool/SereinExpression/SereinConditionParser.cs @@ -1,4 +1,6 @@ -using Serein.NodeFlow.Tool.SereinExpression.Resolver; +using Newtonsoft.Json.Linq; +using Serein.NodeFlow.Tool.SereinExpression.Resolver; +using System.ComponentModel.Design; using System.Globalization; using System.Reflection; @@ -153,15 +155,52 @@ namespace Serein.NodeFlow.Tool.SereinExpression #region 解析类型 int if (type == typeof(int)) { - int value = int.Parse(valueStr, CultureInfo.InvariantCulture); - return new MemberConditionResolver + var op = ParseValueTypeOperator(operatorStr); + if (op == ValueTypeConditionResolver.Operator.InRange || op == ValueTypeConditionResolver.Operator.OutOfRange) { + var temp = valueStr.Split('-'); + if (temp.Length < 2) + throw new ArgumentException($"范围无效:{valueStr}。"); + int rangeStart = int.Parse(temp[0], CultureInfo.InvariantCulture); + int rangeEnd = int.Parse(temp[1], CultureInfo.InvariantCulture); + return new MemberConditionResolver + { + Op = op, + RangeStart = rangeStart, + RangeEnd = rangeEnd, + TargetObj = targetObj, + ArithmeticExpression = GetArithmeticExpression(parts[0]), + }; + } + else + { + + int value = int.Parse(valueStr, CultureInfo.InvariantCulture); + + + return new MemberConditionResolver + { TargetObj = targetObj, - //MemberPath = memberPath, + //MemberPath = memberPath, Op = ParseValueTypeOperator(operatorStr), Value = value, ArithmeticExpression = GetArithmeticExpression(parts[0]) - }; + }; + + + } + + + //int value = int.Parse(valueStr, CultureInfo.InvariantCulture); + + //return new MemberConditionResolver + //{ + // TargetObj = targetObj, + // //MemberPath = memberPath, + // Op = ParseValueTypeOperator(operatorStr), + // Value = value, + // ArithmeticExpression = GetArithmeticExpression(parts[0]) + //}; } #endregion #region 解析类型 double diff --git a/WorkBench/LogWindow.xaml b/WorkBench/LogWindow.xaml index 1ebc21c..0fe4f79 100644 --- a/WorkBench/LogWindow.xaml +++ b/WorkBench/LogWindow.xaml @@ -10,6 +10,7 @@ Closing="Window_Closing"> - + - + - + + - + /// - private static void AddPlaceholderNode(TreeViewItem node) + private void AddPlaceholderNode(TreeViewItem node) { node.Items.Add(new TreeViewItem { Header = "Loading..." }); } @@ -148,7 +228,7 @@ namespace Serein.WorkBench.Themes /// /// /// - private static void TreeViewItem_Expanded(object sender, RoutedEventArgs e) + private void TreeViewItem_Expanded(object sender, RoutedEventArgs e) { var item = (TreeViewItem)sender; @@ -157,6 +237,8 @@ namespace Serein.WorkBench.Themes item.Items.Clear(); if (item.Tag is FlowDataDetails flowDataDetails) // FlowDataDetails flowDataDetails object obj { + // 记录当前节点的路径 + _expandedNodePaths.Add(GetNodeFullPath(item)); AddMembersToTreeNode(item, flowDataDetails.DataValue, flowDataDetails.DataType); } } @@ -168,7 +250,7 @@ namespace Serein.WorkBench.Themes /// /// /// - private static void AddMembersToTreeNode(TreeViewItem treeViewNode, object obj, Type type) + private void AddMembersToTreeNode(TreeViewItem treeViewNode, object obj, Type type) { // 获取属性和字段 var members = type.GetMembers(BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly); @@ -176,11 +258,13 @@ namespace Serein.WorkBench.Themes { TreeViewItem memberNode = ConfigureTreeViewItem(obj, member); treeViewNode.Items.Add(memberNode); + if (ConfigureTreeItemMenu(memberNode, member, out ContextMenu? contextMenu)) + { + memberNode.ContextMenu = contextMenu; // 设置子项节点的事件 + + } + - //if (ConfigureTreeItemMenu(memberNode, member, out ContextMenu? contextMenu)) - //{ - // memberNode.ContextMenu = contextMenu; // 设置子项节点的事件 - //} } } @@ -191,23 +275,25 @@ namespace Serein.WorkBench.Themes /// /// /// - private static TreeViewItem ConfigureTreeViewItem(object obj, MemberInfo member) + private TreeViewItem ConfigureTreeViewItem(object obj, MemberInfo member) { TreeViewItem memberNode = new TreeViewItem { Header = member.Name }; if (member is PropertyInfo property) { + + string propertyValue = GetPropertyValue(obj, property,out object value); FlowDataDetails flowDataDetails = new FlowDataDetails { ItemType = TreeItemType.Property, DataType = property.PropertyType, Name = property.Name, - DataValue = property, + DataValue = value, + DataPath = GetNodeFullPath(memberNode), }; memberNode.Tag = flowDataDetails; - string propertyValue = GetPropertyValue(obj, property); memberNode.Header = $"{property.Name} : {property.PropertyType.Name} = {propertyValue}"; if (!property.PropertyType.IsPrimitive && property.PropertyType != typeof(string)) @@ -218,18 +304,19 @@ namespace Serein.WorkBench.Themes } else if (member is FieldInfo field) { + + string fieldValue = GetFieldValue(obj, field, out object value); FlowDataDetails flowDataDetails = new FlowDataDetails { ItemType = TreeItemType.Field, DataType = field.FieldType, Name = field.Name, - DataValue = field, + DataValue = value, + DataPath = GetNodeFullPath(memberNode), }; memberNode.Tag = flowDataDetails; - - string fieldValue = GetFieldValue(obj, field); memberNode.Header = $"{field.Name} : {field.FieldType.Name} = {fieldValue}"; if (!field.FieldType.IsPrimitive && field.FieldType != typeof(string)) @@ -248,15 +335,22 @@ namespace Serein.WorkBench.Themes /// /// /// - private static string GetPropertyValue(object obj, PropertyInfo property) - { + private string GetPropertyValue(object obj, PropertyInfo property,out object value) + { try { - var value = property.GetValue(obj); - return value?.ToString() ?? "null"; + + var properties = obj.GetType().GetProperties(); + + + + // 获取实例属性值 + value = property.GetValue(obj); + return value?.ToString() ?? "null"; // 返回值或“null” } catch { + value = null; return "Error"; } } @@ -268,15 +362,16 @@ namespace Serein.WorkBench.Themes /// /// /// - private static string GetFieldValue(object obj, FieldInfo field) + private string GetFieldValue(object obj, FieldInfo field, out object value) { try { - var value = field.GetValue(obj); + value = field.GetValue(obj); return value?.ToString() ?? "null"; } catch { + value = null; return "Error"; } } @@ -288,13 +383,21 @@ namespace Serein.WorkBench.Themes /// /// /// - private static bool ConfigureTreeItemMenu(TreeViewItem memberNode, MemberInfo member, out ContextMenu? contextMenu) + private bool ConfigureTreeItemMenu(TreeViewItem memberNode, MemberInfo member, out ContextMenu? contextMenu) { bool isChange = false; if (member is PropertyInfo property) { - //isChange = true; + isChange = true; contextMenu = new ContextMenu(); + contextMenu.Items.Add(MainWindow.CreateMenuItem($"表达式", (s, e) => + { + string fullPath = GetNodeFullPath(memberNode); + string copyValue = /*"@Get " + */fullPath; + ExpressionTextBox.Text = copyValue; + // Clipboard.SetDataObject(copyValue); + + })); } else if (member is MethodInfo method) { @@ -305,29 +408,13 @@ namespace Serein.WorkBench.Themes { isChange = true; contextMenu = new ContextMenu(); - contextMenu.Items.Add(MainWindow.CreateMenuItem($"取值表达式", (s, e) => + contextMenu.Items.Add(MainWindow.CreateMenuItem($"表达式", (s, e) => { - string fullPath = ObjectViewerControl.GetNodeFullPath(memberNode); - string copyValue = "@Get " + fullPath; - Clipboard.SetDataObject(copyValue); + string fullPath = GetNodeFullPath(memberNode); + string copyValue = /*"@Get " +*/ fullPath; + ExpressionTextBox.Text = copyValue; + // Clipboard.SetDataObject(copyValue); })); - //contextMenu.Items.Add(MainWindow.CreateMenuItem($"监视中断", (s, e) => - //{ - // string fullPath = GetNodeFullPath(memberNode); - // Clipboard.SetDataObject(fullPath); - // OpenInputDialog((exp) => - // { - // if (node.DebugSetting.InterruptExpression.Contains(exp)) - // { - // Console.WriteLine("表达式已存在"); - // } - // else - // { - // node.DebugSetting.InterruptExpression.Add(exp); - // } - // }); - - //})); } else { @@ -336,12 +423,14 @@ namespace Serein.WorkBench.Themes return isChange; } + + /// /// 获取当前节点的完整路径,例如 "node1.node2.node3.node4" /// /// 目标节点 /// 节点路径 - private static string GetNodeFullPath(TreeViewItem node) + private string GetNodeFullPath(TreeViewItem node) { if (node == null) return string.Empty; @@ -366,7 +455,7 @@ namespace Serein.WorkBench.Themes /// /// 目标节点 /// 父节点 - private static TreeViewItem GetParentTreeViewItem(TreeViewItem node) + private TreeViewItem GetParentTreeViewItem(TreeViewItem node) { DependencyObject parent = VisualTreeHelper.GetParent(node); while (parent != null && !(parent is TreeViewItem)) @@ -378,7 +467,7 @@ namespace Serein.WorkBench.Themes - private static InputDialog OpenInputDialog(Action action) + private InputDialog OpenInputDialog(Action action) { var inputDialog = new InputDialog(); inputDialog.Closed += (s, e) => @@ -398,7 +487,6 @@ namespace Serein.WorkBench.Themes - ///// ///// 刷新按钮的点击事件 ///// diff --git a/WorkBench/Themes/TypeViewerWindow.xaml.cs b/WorkBench/Themes/TypeViewerWindow.xaml.cs index cb0da9b..e89fac8 100644 --- a/WorkBench/Themes/TypeViewerWindow.xaml.cs +++ b/WorkBench/Themes/TypeViewerWindow.xaml.cs @@ -163,8 +163,14 @@ namespace Serein.WorkBench.Themes bool isChange = false; if (member is PropertyInfo property) { - //isChange = true; + isChange = true; contextMenu = new ContextMenu(); + contextMenu.Items.Add(MainWindow.CreateMenuItem($"取值表达式", (s, e) => + { + string fullPath = GetNodeFullPath(memberNode); + string copyValue = "@Get " + fullPath; + Clipboard.SetDataObject(copyValue); + })); } else if (member is MethodInfo method) { diff --git a/packages/System.ValueTuple.4.5.0/.signature.p7s b/packages/System.ValueTuple.4.5.0/.signature.p7s new file mode 100644 index 0000000000000000000000000000000000000000..355e384189796331b2bac070827396bff6ef2868 GIT binary patch literal 22354 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 literal 0 HcmV?d00001 diff --git a/packages/System.ValueTuple.4.5.0/LICENSE.TXT b/packages/System.ValueTuple.4.5.0/LICENSE.TXT new file mode 100644 index 0000000..984713a --- /dev/null +++ b/packages/System.ValueTuple.4.5.0/LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/packages/System.ValueTuple.4.5.0/System.ValueTuple.4.5.0.nupkg b/packages/System.ValueTuple.4.5.0/System.ValueTuple.4.5.0.nupkg new file mode 100644 index 0000000000000000000000000000000000000000..595280b828f523f5ac34edbcfbaa06c0119d2df7 GIT binary patch literal 204904 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%0DRX>F`bW-^-d;wDyg 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 eKrCOFj>p1Cw5SRv}m2c8rF(sQ>E z2`;*g3wi`PAHLJ{gF^volt7mQa+H9%5WbVbgM&E@saxK z(t4xQt}z>hl<&&o2MV|Pq0or3C5Hk624kUXNUc+y_Y!ur+@)m!&ugFysjbl!I{7I@ z|4=)f8qbz#)Pfu>m+wy#KWL}SYpBr2NGqu|TJU1>+JLk4bwG)IY zLM$YHa_LC_L`FhpgSwqUG1H$qq&vVK=q48iA`84RM6uL+l?1s0(;Ml_t^RIy5Hw1V z)7BygG8Vb_d?~<_aWQEjK50?aXcU{<;gQ#g0Oh&U%J#Z`eCQrXz)beq}IyM*N_u}dQN zLuyo8UoYetcosTJv`jJ}bUu}8biD7P7m$V!pB}Id5PBTY+13mnWtN$)+WIRb;lvIS zPV8|sg|;d`!e0}n5mAq46;g@Ur83s1h~Da zLO1t(@R)ud3ym?uYhf829U3D}2k@J}4T#5r+6<4dyOL{(OY^ko+ZygT`dN!RwMEmQ zEILSyH)9qtGjOmbK%c{?dK2kvKE|WErzi86c+x;yd_HIRh>e3T>IaZ^DIXBYM*ZG* z)J4;sYjWH-Am4)l-=*23lNC~aMmXd|vbldXp8vX#-|fZ8q=L1RnJUdQm_am%>nR=_ zTgvmDe{|sB!?XSf#uRaOn$&LPF8nBT07j1f`2>4p9=qs zPupx(A&wb8lAy)m#@8r-0w?6XW0*(ciFgr?_XXkpb}*0DSzgX*?M5$wnwKd(2R=A^ zf+#zo{=)BQO*pLR2x7*Ienfn78b%C?w*Q2T?-(2AbSxQF8vuv9z%4Ou$#n$*|d%%yAQNFXw51*`gu;|M5<6C-d0f-*or?c89)Can>%I& zu?}5vm@-=Y#IW!yB`Yv}r5fjwe8%@zhWmzkEa zDpnTA;0z^Iwf^>~D@{&PJX5|uFLI0a&B|}z?fqhG{tW#sSnReXaq09$U@&&$OC&~P zbdM=xT_21>Y@b}-9LKut6o**RsO(D`Guiw3-}`!BUl=Tvttsd;X?3kmQnxb)I_LX^ZK{hjk9*8AXVuC! zaaxW;>U|wU8um3+T|S9Lwg)g#Yq3MxQ>AQ`>(j5(0oB-Y3oS0mqS@wBPOnmBugQ1f zTYc~AVuNgE1oete$nj)p7zXMjb+-)!zA9V8A_!Q7Xp!*oM&TFNZFXMNs+G-R$Y*KK zEQNH2UHfabSbxU>6wj>@u0)$Ds8}^qJ-<)dkK3T%*>xsuqXarRU5DDUf}>$}b+s4l43ZQEu_s$9l}r;y{mVm4K}v0HtnxUmM$Nn%-cU;X31|p$YXfsdaR+WX#}<3MGv~%BfsxPJNp( zu|&SnGU_(|`;SzZ)|nGu%)-@L(q=D<;A77S8x{+uHEc*eUJz5$%zY{;n9hB>cxT-F zY&mWDTg&UuY+rF5!!*i1XWgxq7WPLa>&)EI+;>(d{k4m=T4lX0dy}s<(&rwSawyxZZuJ>t8wA z7b&!re~f=PSr{&AQA|zLpK28|Rg+w($RfbAs;N#qWt=hF`SPfg&CV3MqCQE1Qm5IJ zg8$C4#_=NnB%S)Mtj~Ohe@P>EbjbD5IhLDg+2O}PO?A3t=e%=;%;ONG*-PMSO7{J^ z-m&XpM)t#Z*wNJ2t;%P~!_4f5%Aj_x*GXjv0BqtH+5PRQ@+@=S3*u)?bKZ@~?YgB8 z-#MPKtd69k?Wmh1Y`4fy@*a~@q#CAtIJlzi@($?!a_oOF5T_RyZET+x{)IF8R>?1H zGj`Yk5ulUf;mq(+Na1SV?oe3aqHx3k)8|TX6zFAn!#oOncJBX+*K?XFQgC>Qcwg2Y1UgcunQHn>GU+QWf`*DkO z6ewkBmApAA+HdTvki0u-zrWIyBBd~~ylX`c5WO3p7343hcZkl&ee`&Zm0l2A@S-zv zJa%3;CIcNufdv-dnl>lzsuU(qUbFGZ=bc|t3}m4ec0YC}udYi_Mu7yD%6XfUe;Ska zU%re2lMedeQ=}@U#_=u4+rEHwvpk$NUaO}~l9gBgYTxDY`maZ)6C_^wZJv4*IB(fY z-Ae-yx6{b=a1K7z%yqBjJ|*LS5E})$S?VP2PI_@xe7V@aXuLaUP)(7dm|(@XCcl}G zAh3L8b2w+TZ^i4=e-ZIwnG$^bX{TB2agF`8V)E6a3jbnxp_1S)&S)VZqBUN0 z&Zcm|i`FQR)#6+F?qrg)RQl#*>3xMo`fG&|o@nKJTyrHJaz(f2E8V0>feT;j-u@uU za};>C{~O_zg>J8ZxZ4a!>}p@&aSEju=u-urjF21!Qdk-SHz!vwpjk3sQ>26^l}1yf zpt-WC@1om(3d@*#az*>*lW22B7j9o!k}Fx(DO^b_FE>i@TlUkXNO=}Lv5(TUIe(Ab zjn#WJ`imd5P`R$YUoDsRx#@EZGsH2URV^u7v_uJ-uXN@f_b$N=|3H>Jkf@v6;+7RI zt`lzlsBD*{{G{(zTPt6lTruIZ7nN9Va3a47);#en%@aGRXBn;5C?c`qi9v7vT6&v5 zu^aO;mp9U_P->=+$aU3>#4jj+2$Hu12Kyxh#`Q{uNe8=44&eyk3X_J=U;`eu-akOV zP0kb34PSZ&9MjeeXkBscGT@bsoSddLx9D(0GY*Vd!!!m2_GZ+nW6w#TPKlJUj4$=K zucK*!4dhTQOPs2>f|rl%bU5Pe4?JIf|BTFqpqf2gU((^onmvcsO83YwL4nP*o0M+P z1e{-JqjqSZAKP%kLfxjIUr%skD7z;@pit%Z7MV)mfdO=?TgcQueE_K?0{Iq$!?OMw z9&8-KGkreSG*YUF{9w9!?j1YyRFTg!6Y@>d#nakrOZMy;kQy87rb@AX7u!*dAv8}k zG>J}e(MIK|>Jf7N7wdL|Ejd2*9cn>z%l zw^uJgakUcmc7zLL!zA{~C(Sp?^hLHu0xsK;%371*e!HBX;RQQhZ--}@r^Ox7ppBTp z9+=G2yOtRz{m|v^tE(=F*G*lhi_&#3@zMM)?_V`Rl|L^^Hu-cd;arl=_rB3f0j-eV ze2Uj5a*3r_wDcs*KDH4I{QQakm&5(jF>-=+GGcAOBujIsj#zo_Q|y|AT{dF2H`ef3 zto~$o2OnBm_dr+{>lFF=-5U_%Jz#)B3MvvUdc8K|~B*y6_G1JIZX7 zb5;L}x8Cp8Ndmw~5Xp5O>dawFIKD{A0_^R3m@~vyigVwNCm0a67LVAGq{Zu*6_Tn% z*=3|D?!ekIe=y4Ze*)mY2>a)s2qI*0!W>vZy!Y`3|10c7Tw$w8Vpjc+5lna}Td)V| zDBvKX9siEE5bWI6dF*``I8U+wJ*lj}_2x}G;yJ+o48|LC-Rlh)_MZIpd=NybgCg|O zf%&SvKl{vK-;4B-JoGO`?#O%t`LAfz+jMX1x$q3z+VaOmOyk}Dj_iPwgvH?S*SC%# zIWhM2c$iGIdy@_ZSRtbGL4O4V?+@$WU@}qeRXXsUI*Q7(3?!r7 z5Bk5B|5vcWc~h7Z}j2sKXlB)v}2sR_*cMs zldT`UIYW$~_~hGh53}_uY&!WACglhatJgvE{{nkBh-Alqfoqtbnjsk=-%HpCGvQ7e z;)I%ZmGsl6V-YdU2M0Ji@P(C*i2&aNZTYWWA~ULFvmit0(> zMnpUQ17UuWfix9$q;I#WM9BXWarXu9d0$M24Lc|hApeTL{_FODI|oR6RFLn_!nS#4 zsbgLr2Iv7Mju_XY-@XtgL>ngG0T6tmMZv}scZAn}DeMdH`YYhR%fH!!b8HO8rQCp% z=7qtL_lIkX+PdM7nm^*ztJu0{T$h3oM!8oS*mKNr){#$$8a6bgXTUgj@Q;S|CSBip zlZjR~IFa%XM3m`hu}jM$SQhy!!2f3pn!lyTeZ41R5KfNXfE~Nr)GTmB=e1dd2+o`Q z$KkzM)}3I4iC%|Y`Thm5I*$L*oCI&%vCe<^v%*1aI@Bq5+CF5d!(SKs>%E&OdF!bv zQt_cf{oh-c|F71?9*Wf1^&!c&r@6KbZjYR3zS+u+IMtp>O<<&i@54PK2LA{|Pp%I+0!M4hk5^f5m?u zop*m9u)@V#AU^?wYsaB+jAgnPrI4y-ex^~Z)4o9Jor+^N^ED+R%xgQjg>08~Yvl_<_he33P5!IFkFJhFJ2-Ttwyr7+KGbxPPifvaqS=%hLgQWdY*x0gRVtN5+5X zHRLKssAjbi{Xvk&{G>VT-_^dKY2##*b5TWS_P= zZSrkajsNfXx(GdKS2itKa&u?+hY%%-Y&kQ;ro>6~ZI-NY7$0E(rt?m~TArdF%8nMJ z8`Vx)o8lVkPC+(=GeJ1yvR{!tAqjcMlpsM@aV*G@JRwQU<9$L))(ZU2zn8-qNOIR? zaEYNH^odH7bAtiHL#QH*hX!Ef$-n>p|Ls-9tdBV5zYC*_Qj5B;m!$yvOvpG1OKw5_ zdZ}K^>-BDroDD`)@@oe0yN@$U6=uTNxVRx`bIQDJy!%>g=mP zcF->06?xKWQu5Gohl;JATZP7oI+{8zEA5SLTkR1fWMC{1_e+_(Qy>!+jiFVS2Qm{* zE3zkj5L9ni+PUZRboie1%MAQoHm27fbV-4C zhmRbG2+i-i_;idE!lE?U363p|9_gx6ERz;eB2AnLYQ(AUK9SH~5{8*xOWYpIZ0q8T z?|ae4PDV=$OA3d8Cw;_}37;d-OfJi5#fjQdaS<+T;L{*PQ%tXf%Mt{)dWY;8REh1{ww_lPmRYyXUwDt zfw*LRDiM3iN?*+6wtPqg{T;gr=i+#bhY5Y^_=oB=oi0gJfki3bQOU+oZ`laWOQ`-syz@kaEhe=f6(phpM0Mwou;w|Pljo5|DS zZ(=XiW8XIdf(x*T9Dkrif# zE~^zTt>SYJ1GNzLMc7Y;&)(FB3ZI|D3Wc$67;qlIMPIl5iXzTI!gRx5#hPRod60ML zvsY*nQiHG7FrRL^eV;4!g^%a|)`<*X3kBiY0*a;S=tW%QyW!6A7ezYZ=f_WW>FuCjM6%xo8~v6mBs8z1Es{iHr1vILZ}WswD)d z+dWynVe#L`X^T7lUU-61L>Br8OGyE@rddA!YrQ~Y!#F+Xk}}I{1x0`MlG^l554s_( z6-K;UogAQugiP+wTdeT(8$1!(Pz0SAPn@wef+NLOczgav_XSbt(==RO9j`yXLuIQ0roxRL_f;d@CyZ(+gf z;_AQ*qnU3Jp1=Mj%mf*&@W?9aBOfw}zAocd0e6#_)s8cx9{Bj>zl7^odVx>7%rgS0 zH)CRLHHv5dop$kZpx%ut&*=YplvVP3f5+eiB40mCNexM#szE5$(J}VPm)7#N5s8$vjP82ObFfEXxEH#O$6%hSg7+Y zss1muku`CvT{G-fHOD8>LZ5C){eQ2gsfmsD8PQL>Vzq8mr>O)+&tkPuu@xQy8b7v6 z0-%1l16U{UM7Gigxt>)Nl(gQi8QEynqe@dw>@dqKG}~xDN8OHpQTMY#!u#W8Q*v&f~^0fP52841`A@*FN2>l=Q(^y%T zPYv0Lg_OY3WRz|O*x#1m6 z>{Twf<|(U?PC3{Ta3ST9hkX2^HG@KiWK>2x*#*rqoDrFXJBKKGUQf~@(GS;W=-6Lhg>u; zNRRHTfZL)P5f^@}78_6FQmrk4@&5fecb!Uu+B~P{?`o~dp?WJ}HGCDGdXEoF zT3KBr#3Yat_Lb?^$u~&6eO>i4#18>4baXncrNOn|7lGSDjQL6lT)&tp@?2xsfYPYq zI}yJHBIw@%doh56my=eAL>wu#pH$?_SE!Oywtta14qoci1w|Ofq_MGkq7@O+5tvn`n${pyQg3gA!|;5{Ej24^*}PE zF?|e56K8-N%gtOJmuG(5O5wu z?mM7ujTs#Rd2M8C+mf4xIyIhR>yYI2OwAK*z4fxIG_m5JSii}!dw%Q{e;I((oB4_3 zHnPVz4e`n`R*YKQa8sH0<^Ae!XXgA&V*V!vGWS?duTTTppVCr5b+ZgZ_@jGr#dPA- z`r@5!{evfq8mt6MEcpkP3w^Yj*kRqF*yBJBKY?@JQ(Jpc1C}_Gj~Y!cAZZp=3oz@8 z`M%it+)KNl!BhR={!QW&9|w5vigT8;KFJd@>teHg`E0{&y#%SQ4Utq}DkVTDn@*Wg z&Z}r%177U8FF|ZDX4ukS>jsSP&v-pkJ3H@mL(DqBB8tAGHo1=3p?`SC`LrMsOl|%t zh`?Q|o98zt>s39s>J?R~9hzuW@7jKuE*rQ8ZQicXUo5(!zAk%5C33iUnfUo35`9*v z?44Or;UuhVZu8(4D!KkA^Y((OM`cFjlZVL2HC3k)?Pv7aNE;7p(mq?P?kX#_q~laXnJ1`(55Ur{1X?C9}@^~cWlh()R>nsv;T zpHO(NYb&#x+ZT_nY7+7AVrmk8s-If6->Thah9>@TICchi4doV9u$yyaL>mS^jZ^8Zha8D3 zFJOK00^&R(NpvP0b^b??TWN_&tQ55*AqV6y8>(?8q}2;CR^?iCDVII?ez!j z-!cH<$H9zKy`JNt?Zqtuu+Np) zJxJ7%`1s`ad*_lT#)*=aNMZm9bbMRa`1rmN_(=R_s3FAR66l|l@Tp2Q zKEibNm?2|O$^CiXiE|9IjFd)S9;EpPZz+Yj9}N{D@Fg2535SLG@G6t^*Oyu99}@1z z>Dkf^gtW{s3N1`{=|qGS%%YeN>l5UQqF6#KYC3+MNbm;`V@CCq3;&o{ zNS{Sg5)Jhe&_C)%bh3w*@mkT;x_c(EZA{1WCPjIa1)#bapS|Y4N-B@UpAVJ zdX!PJ+0dsmx4);)8sxtd7tct+=j#r`qE6R9jtmp)+D2huq{Ko{6Yn+?VdvsaYs``+ z8bOLI6D?A+;?3^toFN}VLGPq0((vS++<>*6dQVg7jf%b{M`avKL7QGDY! zDTh3)W;z2`f@ZojcAAmHbR`xpRKZodtasu(gj}L%s|ND%8fJH6ttwQBg3n{rYGMt{ zRO4u?)$*ypsKfN^Q~$JUIRRAzE@v7vX-#pSE{@#RrZx^f4#rNv)hWRU(yCDq`})Mk z+X&6;g*76IR>S;T1QSftA9m|hGA{cFYvJ31EHmf@gB$GA>vsqa*$i;5>^zeTyf1xy zqH-+AkDnWz7kH-f)bl>Kpau32Cb5b5mJZ|Pjx&OK!oDlXup}q*=*~L?x>gHqtn_?2d^CNyVZq9%& zzw!GSGHz$RV!Kf~av2BRpRRUuIk+vc2aAmNlg=m?^y#Z++%*i-Hay8E^&)S)tWLOJ zP^Q;hn7q2~!;MQ4L*H84%xg=&AQjN2BHKrvc!t7IqcMxQtlCosD_x0C|1OR6>1VI9 zW`*wY-RQyzC7EnfY#81=>^$&6wge#hhpBZB6D3J%$74Q_`DX^YSYdhohk*cN+@Jas z!nfrL`aXUqIL{<(scLF#J|~HH7|_GaDtkc(Xl_d>!dq@25NOPcnKNOM(~dJba&rGJrfXW zqw%}$!RvlfXiH~%QEi)CtBa4-CF_Z`q zj=k2a9JSQ7s_DH|uJ^9xWjf$CkLbs@KFfQ%N7N@D z6zM6ae~^r>kqADa0VVLe#AKM%1fLYNM)K>%WSE7cEvtJWyF3!=8ib=P>w8~0=OgLb zgkvz#oSRN3cV985a+Rj7H^{ajkM1oSbq%3Fsf+GnAH-72k{ox`Ma^-OlFoU3)$D!7 zSQzJ*j@uF{+J5mZ`|H>{T`Py)BkUX-U!Z8~u-?G6U+&A|-7al<6*1kPds9@kSr8Fd5LJpLtbj|SK%hBXT0WTm^rR>(ltM(8ujL)g!a!&b0W-f?zPulk1X78u?aTKDU1yDjaYid zg(SM#C0038`Q&Q9BS0mm;2J;K+l#O5HW&7QqrRNW&y$iAFwk{2*2kGL>r_4l&oWK@t;z1#BiQrb>|Z4>wGv^2Cc*ZBDO z><6_uGzwd}suW$wyQ}z_Vkg|1&XK3LZK~$+ptm zLb(b9B3~X$zK#p652bul*+`kxTHStK#7I~49>m9Wx#*>1=w;rd^ZGf1xiZlP4kxPLoha1)yAJwKY@e1hds-g;n*9{F-`f~)HiIm<fKkc=7{a@a|1n7fRoRB--y_oVHOD-~60f6i)O zGFW`W9a(zyme7MCm z)`y3Ed+yZ$E*Gw0B)0P^de{Zt3mC;`^>(ffNxqCYX$UVDG@-gZr*4$SX^;I!#$4Pk z@mbyg*EfiKD~w%fGZ!qXa5t!xxYz9TM!kIl>P^rT;-`0;K%tj;R#bjfYu23NJyO*d zk|Iao3pV~@r^XFsomQQg+qbvAk+b{_s);*DSyr1~P!t%R*4xnCu*^{Au+zEuv&1%X zG})AKe1RJh{2^YLyWAJCb8C-DR!=v0WR!Iq$|Fz6=6tQs&Ah?{5|+1doZx466ql(B#v?X`{5OZv8oT`e)=hQVu_4jxHO#oAh0Z6C|f zXMGXYGatutzBRtNFKvt{?qe1C-gy6mNBtW~5FGMYbIH!H{TV5(ejUH(8nD^(MD6jW zhu`=BxwF#RlJ1KkxHbNdQ^CU%57Vj7(V@Cy`f{dBvIfU-H@<@Q&v0I;s&&|nc=5EFxfjP(x{5$nt(AARp-Ku+cAjM1lAoT0X zgZ?`R9kiSPCk&oU7|k_0t)6cgZNV*eM}!N03?sv!iO`x>;L&k109uoaqB{| z49m^k8Hb#B7(N^cP)O^>y4lQ)sVY=x2tu2|9bn27jYR#rU|~^JAcM+7@pfo+aej8w zkhYV9s;`rmrUyO{-ic|EJs7d|1FfBERsZ5%gcip;f2y7O3kr?*n_HY$dW8I6FO`?neoCoU2? z`NOc_`PG#oeUGc>5#yUUB#5ycjCVP`09qz=#AF_xxUncx2MGVjN*1mwlami3=D%;i zxL5daU91R-oESL$5**`4KBeAa?>2-C9TS7ynh%XlK>uTN1JY6M?)R6YckN>}_(RY2 z``n&4p~j$hD$1kB~eCv}z3G`lqlgIiNJIqah& zqa|(ZHWbJfH2C>#GskDM^O1C`H67Y$Idh*z1z$BQbEXdXIkg&9p}?|yF?Y}5h4Qh? zd2i(r=0US(1_S+vgJM%-K5VHtFCFwPzPN*7qb1(zw7S`@m6g4$yUw@pZ3ky2yMg`Cyt{nb1uG*=asQd39}HzT~A4l)W+Uww_(EakO#q(S;s}L zkVU0#+MT$IkyFx;A;UYXxlpGgLY`2WK{JAi`N|iFxu9&_`>O@Sc1|{58WIZig{o0{ z2$+2!u<;x^N`c~MzrBzPttW%t?SU?wZd4>`!%QkNmn|lm%tqEaKMmYt8((_u;VtfrQyu6%ia8z8|<8m%b96)-%Ao|ID zQk!B#tNEJYPM=&xZ{fbhl!w;)=3?#U;;4H5D05J+qQ$&IJ|}LQaCF4O)xPIyi{$}) zrVopnIU1#g4n#2P`cNsYUc|$nJ9J4Z<;q;~hwS&&4y*iA+bCbX4U>5aY5qe-Grhf& zZWM<=vJ-REx%pa}=pw8~%UEn~oqFZg_)kYamv7(PCdHZ{)eY?*KC>6K}w z$;;{0vfkHw!wH^TNP3{=ysfw0{90E_NL%aEru_2dB5EeYa_3nJRx=vIZBebv4l8K1VNS-nej6aMD6zaF-XBed$_m}oax7auzQv>tC; zbE}rC&LdZoC~X6nUY?&u;-(Hc#^cU?ujUgdbo$Nw$%{cxD}`v;KD6y%E;OZ~&3D>Y zL-f7)wag;2u7kLvpS#~n1paX5m2dNQ0W1+FfM-`k&J`XJZ6?WVe28UHyS2f>3C7Qq z&0%|BX|Au7-ZW#qS7P`V!Wh{iHFN_OEbT)4z}!V!&6V6sxkx}bdW_6TD3@?(Zl0M0 z_*P^to5}zTR4q~a@on7_5NYC9AG9o>GOkYfYbH5}T#8Je?sVnXJIvlRo5%Ak>pP|f z2D4WFqdd#Wg9>4Gt6p3lGQXXj_!fR!KXMM=$+J@r_d#R7qjo-@Jz%u%dB+h&dp5{; zPn@GAG}Y~S+T!%(b}$^od>wJCsrT4)qR<}>s>~4f z(0-<~u4uXsa8TEuieb;*e%T8JUF~WfUR~ax?o=?6t06-_t3K+ed-j&%O?ylhVU#?w}E3%I=IrQ3(+v6?I zR0uxn&ikzz$&Mwc%YmR*dQUUmTvOSQ&?tAkWFD{O0);cp3I5#m``6oC^)!_@>-UeP`Mw{>4)2bsuQz||7$^L5 zO7464^CT~m=_Ah>ZS#Zrjo|e%#o3eL+F)_nyYc)sA%U%s3L%{&$l-3pt@_fOpc=?< zVV40+mMnPFi+b8N8A6pgu*K(^D#su-0@{R$f`@OG8L^gYY?C)9oUR zlYLo+3C;D!s67VMdJSx}1_JCto~&q2Pn-5O$HP%iJwLomB-HxoGyehYME(%4rz7b< z^>yl6KA5Bto`zmDM3L0nG@7q9=0b*{_gnd?<=5AlIVA!R2*qwa^NZ|uzE`VQqu<7ak&#q-XO zLVdPdp%1dt_g?ziNq|hA{zFa1CG|92JVD{6MWFla`T!x9RoDITBoW^%*D$?%A2Z1X zROOD$K#A6R9*s|$)N#xs%iKU3hc-wW3yW4}EH2i>p9l_yPI?RnUV{AtlMEc~2c^$g zF|?Z1Cie(v;Vq}DZP2!-vpay`_$O6>?yBzd9N!*56<};>3ojCEI7f};gx&bA=Zg*! z#?S6v+ftY#3arX>=lrsQz)R{vRTYt+ahFL>gZFa&YXopJaEgR~0=ha3di_vglsY3& zOjYnw-x^_2F~Ys8>0m=3&gc+9fAb@d;gjNHh2iTGL?;g%9ZpJ4t=MwBA{|9LjM!5~ z_v=oJr1r{dc=eTUEe4Gn6u6@;? z)0T^0BQP>VJqs_f&A}gOH+rMxGA`liL}h^&pf1{#zTM|QnzE+KRIJ>-!KEWiQATM) z*w(0aTe4hE(`aAboE9&W(X`3Ah%r~N$A-mGrpnxyxl%tG|MI2uDha>T9MTd=>f#y< z>`~vb*h-AVLAccq5MAzt|AA3R zVrp+}@3CDmq<2y4#CNF?J&E?FCpha9p^6Sth#1GhJoRzmy~5j*Oi_*GmH;+%1J(W* zo4yg|r0qN>&6IL*9?-{h?1C~NZo9iM*qrj@TPNB=*Tw)UA9_8{sfGA=AIL;Kwb|^A zX^YgM)kYInyOrJhA>N=TQlO=}7(az4<2^_Mt!%dRb?lp%shyQ2;jzOuN#u0}iqq@{ zv3CMZn9(ld`*-Z7*J@~JIKbn}PhFm7C1e@eW~{u@;@`1O202dY3I*ga2yJeHwT~Mb zQa*^*`EI;b$bjKr^^k7VOqJluWj9b(s$lP}42s~oj#+8ds4TFu=lWRSMTyV!OL;o_ z`=k()X}%lD>c&j+g_palYSA|pW#+c7W!|I@fYx+QWrgY&?2Px4XFNzP!H3x5{`W{k z9h4JP^!WY(k8W?e1An{AGt>QA~zh#6$VNjGi1}iyA!Aic! zmVo+Mov~5^8f%3MlrLI`la&{YLp`WP_q=CEJ*Jt$_vFRbh6r#-Ysba17H!DpYjI#T z1GD=yJ?{cmq7ag*R(YGgC%n(jQqy5brBp7FQgpLzUMG&)&w&G@M-YpZ1b>nUb|kgCRlRh z*P8B&Qhw#N)P0LVImeIqWn)Z8V)6HpgtE~wi-duX7Rloq7XAP_FBl`y(7kPR<_tk}9=2qfi6Bn?Uzk^?f&v5it@!-p0>mevt z)_ayC8hDYFE)Z{LSNZht9Gp6%T}y&Lv|1sq#Z=_>bEW&JChyneI4|i^K~Hr2cD%|@ ztBqS8X&7l6QaoQ)pKkjv0vpDVd?>>?2^M@X44zT+7tJj1 z+!6;2&1}ISQsbxJPi=AXGT-O%8sgr}0}Vz|mkQ|F?%l|8a^CD|TO)`pjYYl$UlRQe zCea40bFCEc%P+nArF5qZ{{WT`D>)0QjZn+T|7!iY{5;R>w$C?>dH|DWNaKLThDK_LnttpF zvXpQ6!NVXnT}y_lX}Q3A6&lSfpEdXZa=U@YQ(pNu9AU+?0219s(?NO{>IlYnopW%7?#KTd;>W2hXi z`2Qq*l(Vri&eVg7Uv^zZO4=DNA03sMwbnix{si+-2UVyH#=+`foMNUut*P0zWBT~5 zd|s93;V;Zr@O>_K)kQhv{hQ>o81kY47uY3f|2 z0p|<+DteTTOQ?am47|Af8xG$q=ZYz#{$QtJwP6-664yDzn;h9oWtarVFsS8J_{|qA z#_Qw+Ttz<6Hk{|%`d8N=^j_I#u|}TR&6?1ySs5MXn9f?sy%s(hU>KjGOWSq!ckLEj z>*)1bQcsX5CB$9&@#yaLM1O6I?17dZRI|GSVGe(SBW`_}5+Vj;Uw!57e0JQ}QAg#5 zjB_Sm=o(-ogt?iOV*Ka~(VYyJE7~($i78=tu@arCh)Hd~Q9b^HK#Khr=QaskXQGDP zeLn*Uv8!Q@Omv<<42}<;#xr zegB=Rp=8mCaPd<;Z{o|U| z{DMtFUdeQG+8Ik_Q`$f@+>|Z~^^xD`Si(6e|J8meLh<%_Y8Mf)k7yHj;WJ)b;-$vj zGy47FP&T^Vop(#8q<7A%k?v z0^7OABbu|L!XIx?_W2he91;DD|2`iR|AG>Vvm#P*-WHIRtG&%Hq|<;l zj`9zS{%GTOi8`Y!AwEeYuOQ@G&q!I1Ei{51bja@;Yu+OKi>0Y1Q_AQnd-PFe>@sLE z-syKDo}@757sEisUiZ6SPO95h2gyXjmUqBuppOdcst~g@YY*B18Tgye=&Q26NTt6e zqR*t-ac-%+de8V7AhLZ&A74uDY$P=(JR#+c9sC&k2}_o;J>lNQJzRt(JEmt&TxJx7 z;7Py-+CjVvgiIttF)z#J<;=^8dl~T@uFQC9ffuNnS*+^TMd>Z2B`s+jOhzX3IF#8+ ztC~<$eG>LH#OVq zvA&UYe$NfJLBoa^SN0hEV~8}b>hPPnijpt0e)SmxLg!k(01F{Q3wP7sZ4Y-JV(#kc z=79Np2L^mtkcnW6FMZ=~!5`5{abFf@@Gr5*{GU+)85KbQexOCz_a#;PzbDG~;HU?_Z853!n|U1=0I5)4jL z?ekAUCHtoI>E0tTP$4>&iT6q3h6^wU1nk9XNk$<_9NgqV&Y$Y4zek#uKJwZ2>e6a%6 z$%|>znuXL#8Qgqwv)3KILFft88QC)(5y$uHZ9W&%!?d2vW&CDM=FaX%?hdBUU}zm? z+#S=xKO!bz-uK}%yraNFmYLqKkF(peqTNJP%(fkdgmj8L zdRqE(8T2=~iG|!&2q{}$7&#=flB*;j0jgij*()YRwPsb~abwtj#aQ*a8XD{8soj1JiPF9IU#W=A!36yvyASYyAuA_v*N}pDOpp=dW)of|2^So;1IqF5tUt7B?-yU(b=;*)LKRrR= zHxm$O@oLqfE`w~d{qr!26jkYjrBgn=t1N1tpFDzoVfF#EX zU-cSl!*MmaZMKoP!Y(E6>5PW4@aD@l7&!(8zp#m?Ic_Hg8KNKnIY`n)*q*^FsZ226 z89ihFMI-S=Z0QBtL~OZwP9nHd|L6xnP3i}3cgYBf7_vu0Ai#RFPZ!RA%lMs>|<=knSF&RVscvTm$h9;yaNu+IdPl#P4Ma%Ti4R-yV_<(b1{=~ z#Uc|lBbEnG45e}rrsxxOKh%`fKkF!GR@mCz|J?+QfwW2zXB%z;^n9tAyo7YIhG;`^ zb(z}KJ2-U=S@m-KTG|%7OF1e>5@7eba$MIqHjPq)W6aYw$C{sh3^=c^uF^)xBd^9i z$C-+<9}fm#3gcgnv)}HHAbJc~^VmKz>F>a1r1n$DSR$+u(81?@lv>b;Vf>*s(vrD& zohPs}?%HmSCKg&RU?1sY(vuTE)qU~kTa)jzZFY!Ao}w(2*|$>DQt0wmZPxTs`-qQ?r9Ypt!eqfolyOf|PZ+X@d94KzC%J@N9DK*{ zo^Vb*AwoSRs3s!AB*8w^f^D7M%cJ*zeen1D-Q1TKNFDqdsa>f<$FHdV?cDh6%<}Mv z(+ROaJ47!UDpIHPY|wRHa}Hld_D9b00|srWdRzK1*u^Kjiz_1=bQLZw;tGV96{!1M7I?}a*6rzP=f z+K_)gdc~y>nWSMRo3InHqZy)! z!zo&)HQkwGXCs4KS)D7_P~eVtB@y?2V!s{H3JTOS>CUB{OAgJ==AjSjzdgnFYCIIrI)ZWUHZ%B(?K$!$*(Kz7`Ofeq+wWYN;kBMscxoqOMN&;ZkJah9&DL2Zxvzx=kgcED(aM@;b{3t?UI4JqvEvj z=#=rl)Kjg6-P#RBb#&=s7kO?ix)~fzeX$Ch>wE5JBx8LpTiJvQ`FM3@a0a~^Qrx>; zJ}0=2gcQ@MiNs0}oflwzw}w3V;C$bw%Kym1N@F-Vx{dy*%iQ}xp`Fw7$Mly;fE{UG8xiUr$Zt#s*$g8w#SJ?WiNdM46vF*oABR`)l4X2H=KgB|#@wfLrUP}`L z^;x<@_!xzqzq*`+s*^maWY9mY*tw~ztA76&i7;pTnutqG4i<`t2SKd?3!NJ{&-x*W zJ9H2%|KzRjN|nKHTPAEubA5eod^t-~NaE7%r7S))9v!Nfm=+-}0VDXW|F#@YGG84G zeFa(2@S~UVwj12~wo>S8w^|gWzItV7e!O*QEZnmhG9l7y5w({JRMiW;>67y*6HMx# z7=kHA(|gms-;gl97Piw&@O#1hcD)19-QE=iB@DwEI$mtXlV@A(yzD+R#UV7;IC=_2 z)(?@%G)^r{d9rm*4faUYmpy0;zrh2)2>QGA)9n;jJ^yGvN-}KOb?9S`dEy82mN#x9 zHCR{;VcAms)Q)$OpEi9Yw)=HaPF%rprM(z#ZF)S_aq2eeUaoEI=lCk4d2=9SnfTa! z;!!K^qV@2qxn^(pT!nBWowVFtXIf$MZ8cvRe1fuoV^;wk5ksT* z{*Rre>1R~|J+FhST$sBxDw389Jff%gr9yS!Site zwJ)_w;4?|m+CS-w{&}f2G!CE0yhr)Pn8@+>E#V2>!fUYM&p;|=G+|Zj z;$e{|({Ji}R7;|3+)gzYL^eD!b}5cJUjBO(879lB*d-yeCv?M~-i|L(ltA}c9s^&R z@$P=X7%u4VZ4JWi&lb*L8;n4!flwq3u#9|uGn+KlwCcI`P5T8dDhTRq(2kyxxZv7T z@3LO=P2cT+lkV>L6<4Xd>&h%ZrVPrr|A|U>qpaIXM@=?kZkw%$%!`s2v3D>e=cr8b z{?>G*iohYUYMaX2<|ZK6u>Xf2y;{p{3FKE{=i6VShX-Ydv{;0=JBP){`q7G{BX-Ai zbervLP;^M=0hR=uB|BM&h19GMWOQ$1F8(!n!hX~xN**GIIw%M;42YvWSMJEdk^)R7}9PF%L8 z?V2>X2i+h9+sh6B2x>n;@5teA$jcfE zM+#wYv>p%t2nzk}GEANB_N&LAE1a!Ltaduyn&!Qf%S%RX%lR!TI2W9Jg=lB`C9*T- zpL%5*JF7(9=^K3`jIGl@sZcQZaW=aZ-Oq>@i$AlUH?kpC?UJ^sUNXCqDNkS+-jr zREVZogf_;`vW$eXtm4{vtuU!HL9IcF#8qSYaY`F_Pp~ozDGJTP^}a3l#AWtNbmkT$Oyw7l zQ;%PI9_29-wfIK;Ie;Xka*+_IlkfVAH5g_I1M>51z=zol(%fsl=Sur6;91jK`sd|O zqfkCRhSO2WK;^lVRTtPkHjb1zr+RK{I{wJ;0p`5Rsk~?%6QatlWOs~SY0`ctTAeko zvj|(8N8O!jO1_AXEZo@d4E4GIL`$YPx8)G;%s*h4|zv#o3aM8ww%k`fRXk zhN0d}O8n#BX78L|*5(9)$F_sA$GfIk?i?Enay$LC=9s@a4+D1!14*Yi z6-8`!-46Pn>+}Dhnv6+VBEkoNH&8{<^%6ZtZn&#@8p^GL7ol?Q2|@432%|rtW{)3X zmv!`W1q#fHTkLEELS$kf=jH^EDyn9IO3%el@rk!cCGq!7X1yC zS4KHS1BJ*Y#(a$@DzQgsi-hzAL=g!1o*4iO?spv&3mkqt}E(Z+L^*+ z?Zja6_Ic}!_?fROUvCn+^edU=T&Vg~uYzQpWa|$RxYA4+b;D@fCMrAVK)yNHMd}rp zVQk8#g;HkpOOJx8ZIyK)@g^Q9%Pk3(6sopDafPv&4dBuKuPtRieKc!AvX}Yeou|_| z+xx3|<@ewlX(lv@vmVbTY6p zHgGUzVPIm^XVCx8K5+l+b0kilS_kmHp&Z~~y#Lk`kIGqoPw-`SI52QJGtX{`_rd_()lK zOF3UU!*+O-@B?@^Ezt7vo8~*8nYBlIKy6i~3nuj&dX?RXl0&c4Q_&X7td*YD5 z%ut%I$D+xnr_`jIkk0sL>a4%g4*f?@YU+*=%~eHZQ>w~yvpct~W&BmiO_b{13FV~~ zt8)jHx5g6UT3?g~o(+ZfzI=kud3r$?J5yr$jV130|AaDTeBQS@mkA{Y*vEUsJT{~9pn#}PN^nz&(AqjKMdueFLK zF_s+otR|yq;W5k`nzHRSidBLILthXBjbVyPQAAQ>;iWX``Gl9r(zIfs#!XHK#(HCA-wRQpXnhiGKMZ9{s^E&P^oRZ6wxhB*twd z&aJHCjmB8KD`~kKmAyOyVE(qVbwUTM4+pH%^Y9ZIcJ_tT4@t6 zHYwIr>NHdeH(1A+tr$)Y_M?#(5_)F5r^dbuc(zhmP&^@|2jzm54ZJ+1P90L=Sd z-MLi&fW@444rHbZu~eylZF0-bd7(FK(Y?AgZ(gvc?sfCeo5Q;{D4%?I)jPCrK5@B* zc0roPybHgW-mv3(0Q~zb`(FLd0Nco)DS0(7i{5o+@@r~bhb^bBQbi7f3}o*jj2ybT zC{aU=90UmxVEdWfLoHuh0o#|GIvU>2<6Zyldxw8<-UIDj|1Evje<`S9!i@53eTyQ) z*tLv_woZft+y~68GYN494&e1HhlZu6Ci-MJT|ZgQMt}Tw_!6~0rXcs2T*?96$k`2I~V~B81w;n zQG)wXkw75oB@Q@C^cSFj+3uK4o-0t|USP)=rVO=`II42swx515Rpo?jKS|i@2;dCf zBHHW3L~K7%s6SKL>-b-rzDE*QRnMaqKmb3By*t2Ufc`5V`mX;vTyfg#u-`SmbHCjY z+hw)g7=x-tZz6c=mXSlR+4VBPZtk@l>r}y)uO&?DCBH6Tg$QhggD;B#wl@s$dyTNF zv){>I$amOR{GI%j1zy=q1%Tfk_<~+H$U$IZ7$mf<`*q_LjXG#!gi8BSk~YU=4F;u60n{-vsP@?NIY(uetjvqU8K3(G?~(6w zj_59HsnDJQ9G}aNd}hL;t8fe>Vi8_OnwHQQ*7y1wom)#D@A5$P(h+yh{H)>3fe;c zznH(NN3eSjXF{v1KQobpG75&t%Es=6QoIH4Av=ig|ZywS|H(4!}x6{e&w zoD@EzBOeoPB1ol#-5c}|v;Qi70-(G0_VJM*?%8`32Mao?eg_`9{htmHbf#SnBeXkh z!tu1m&B9u=JN3e(w8l05KPK+dJ{UiW${25Okn#{)FsAYleQ@EIAxg-Zp`K@ECVQmcxRA>IJp@x(18biEuJ?&R zrc2cu1h4xFe}g$mt8ai;Y}kZ=_4mQmtsKk9k>Ez*=HtElvrfJ_k4tMVzR}h0m@-L(hx^b zJc*p9qd&AvS!zPS<-pSs*rEa*c2p`^KWW(HlKFiD8-q&k&uaw?;56h4g4|ZXvW|w} z`Dg|@kEJ?a5ze0H#?~4H|AguUF&QRE1x^pflQuO@qw|{@Bv}x6)iD0UFXLacfYlEh zoF0ZJVKlu6%ha*Owftq^SMCN-^)>)v|~Fm-zcx;aCU$-!oty;ucI7x*+PVjdRbA4*I+ z3`*F2^QwBE6_kHAqr z(-1SlwtYIl`bWN=Ece&zE7C2;s-6kwZP>cix`e58D^Oegfn~e3^UY?1%|@SuY9{cy zVO%?Rlp(hnq7(VxRL~W&6Y_wN;ZnY`MVwG@^-mKrVamzdN1hMpdpJM_L zf9<~zWR^Iuqv{fZd4L@R3KBs)Ip)Ip-#LV#TK4Ok^-DBt6=+?iXk9W_KG0UWg(eI_ z9w|W0=Inre@9a%%8N1kJ&p%>1xqm!h70iKtBAC>N^d>w&)Y-Ca*ox4)q^NwTQ{$_^ z(w_>iw&-8ra_7%|UGaOu2fuy$14^=U9p5&V2j0OQs_hx&AVbg>^@cvz7SbE`pk2o> zN6kxtwyPRTU@}~yaqGL*C0XSIGu0r(kuO}SFS_CzTkb2~y*-0#bz*}1Pj{_-qP)?4 z!EP`Qf`b&nH>h_RdkejLKHPUIe8a3CL+i3y>(W;1QoHiORlWG`@p|JdzlSiPcExSgPnzAK<2vp4$H?7FRx340Y zj?yUxVG{@QQHfh|?9+SSTD#*;y$V~|{S6qyMr(eVAlZZ&Be^(UWCWI|T1DbfFU!mK zUquffmCW*lA`(#^YQbLj+7-7r!yRl>Hc(z|Q7@&>lk26Grp_Pj%pIl|Rf=#MwVLsC ze6V!(msztaI;P;{^}%%(Y^Aj239HgcBCd-Ammu`1 zE`)skXbuTvb=ojk7c;@FqcM5%fS-@WW^M5-RSgT+;;f-hut^?shcGgJK-`RDK7NR@ zudN~?Ou+N`i~?oC!d0Q*n#?1QzH_Iu#~q44+;7rezf}4CZ!eCzI*P0GMpDFew^W+1 zp56ZN^_$l{wH-e!43|XOTgAiKRL=x7sAS!%^*bL5UHaw3$*`qSLK_FiAB}x8qe^T8 zYh#K-lf0E?!E&ucb$OiuZ?23C;qhX_7hIF5IuT@p2^Y31jGxF|@^k}qceCw-Fl{XI zx+2f@?&8+S!Sfz4-47oTI8CIABWE6A%1^!-lo}+#i=2F#fZRp*GG4>r@`;h3gtb(p z3WW_>?TfP{=1nD{+#8IgT~wBt+4|~zCKZt~zn}S%zMPOe$pZC+8b9wC<>K)w( z0^nDBPce@deIw@eqkBD9F?QXj6J&q~WiCMuAPu2E9;W`PtRXk1OD6gNLOz4g+ro&g z4dVZtuq$DL(2dttyoFJ(>TU=ywsJae6fNIfae4{lLmJsNy}caTN+5j^E=s6lP(3Sv z=OKT-;J(GCF%+sw>Diax-M1)z(y{Kp<MyznitUUTGF8*Fy3- zYRW$Q5r{@Tzx6fk&5`PX=w=n(h)Lcu1CI-(e%AEr3q+27)T`1v`0F!aJY;_<5<~!i zzZ+=(4gOkn)g^ycu!lc?3zM%=bPs2zjm@JOQxyB~szYR8^z$n9pfGpexP88l$~KDSz&3?J&jJ%8Cu`CR+GztCZG0umTj2;Hep(Cy!8 znGZ`WWS?k2zK#w5fWP~~omS8wPYb08jiO~ofJzSSw_fV{1h|!7e?1)@l43`$kOJUu z0o@C!>d@s4(0pMrP621}N-V-kgqPlkSLOxbV6@O91ojY(K4D%5U!sIR_NK!2 zdl{@wEG(G@e6R1R`XbWv3*|xtl0?QQ$0WDRFu3p-5wS zNU9{iMkz46EOGhS_{dw@D^*ej>K^R~0&< zW;1@IjiDCj=e^05TLf4WoyuWci_4AF2QEg%fu(#KS;&w221Xwz9}w_o{07t)Q(@S; zq!u^aQTp)rnp=^F-Bj0CACzeT_1FDf{Uv`_e__^;JAUPKMGh` z_n-$ju;;GzZ7cp8NbmG7L&;ym&1ztF)NIsx*FZkd1DLpH82MS?^D|!MN#H`+-_1r` zU;M_0a%=;EbUXe()%QP*k-9CER;W9*4&I^PrHWwPclYX%YzK_fUNg_4m;1oNofzt+%Ooc7MHFZsccc$S_S6>0YDX zA%7wfmMvSJV%Zb@?>h>*17v?bJu$E zb9K~lDey5jbB6FYti7Kn69Rn7{I!2GKJah8Hin}IlZoVck7*GZ0XF#LLy+i$^^RAS zjpE*C;k7|nHi=#kD3=@k?hBt4A5LST=5#pqP4<5l`~>Lq;aj#RUl! zB%j^TFc>PH14~a}Fi^$x=j;y!Au-Fkf%#8y_~`&S^g`$i3U2yE(qZ$TMF9G172N*g zm?}P#a5c9OwqtXh68@a!o|gHPB~%EXWZeD(S>~VG9VdPG=SskM{sNWE11P{bfC79z7w-}M7LSKru!GE5 z>fVRkvTrqeN6<*UkK7%59U`}!T!8(89x=8YU4Y&A%P^v81(>_FEh;PKv-!yyR&y?R z?+ozj)G2SCDm@G(HfJV7t>0s(c&}@f!qYxh?<&kLR`1SxK*0h*{vM+5VeD#dy#OQs z;2akv%_~Cajk=X7z;m)88qNyp&%^Lz}3RMGFzso=Z(3z_|m`3>)a?K`b7>9|2U*-LyW`H(hsTClzNc&XcF0_$hOtDVSj zSYGaeEdzO=%J02ud6n~GS{1jQ+yOMwklwuU8_8_u8kIMsUBH;6=vExwWw9y?o%}1O zRIJ|`-7x$jeSD_hX*}Tls=dR%f$gowE>iNpY?RQM_3X}*8}8Xg_DkB&{czhc{^k9G z)&b$yCV*0&1T{gqfj95)o7onC{4TfOL%d-<$yq;oS?*4BvIy zKz?5Fo1iH)q!Vk0eP{+i;PcJ^1+_cA0b1^5dW&cm#Iq@03g;NL2nU2aPj2XTsdw-9 zAm!H@-4EUdts9vwo48qIEqV*7Rfhj~zn}l@{jQKZE2~9lp$~qCn2%MWg`u=>&SVG+ zY_!iQ^p3vPeFK1Bd?5h%NbrF7>+$aWKC_g>A`ZO|uSXJL1`=R+nd|_=D-jr8DG9)r&A+_gL3EP9|M7l@ zBL4q)zeJc!AsPR8zb}CId)N!-_#E8-&7D8N*d?j%n8oEKTG!nw*|y)(3(1jMv4&3K zb#gZ?QjpFo{@ChMPuIm|h~p=uMCk6hCv{Y|k&qPUw=*d*U8csjL+Ic(b%(WDyG=L2 zfK0|n4d)WwdtDw9aq2;6dK6+2&y%=3{$0TRwJ-5UrwB2iHvFelSlRe9x$bP5Kyla}KjEf=TD_)kg6UtzWE8|Gv{K8wWBZdAox`yRn zkaLPFZwvu%3poC9Z~jyTZ>DJ73t1c-nZ_$IZFDd#1VQT5kXk6cw29#Kuz#>d1XBVp zuuXc(g}fqIHs^@D#PBXGLREq^M1q5;yJJ7xc00bk9jyM9fOs9Zq>g|U5gzcbs3GV6 z-bvh-27bPZ{m|*SZ3_07g+KAS>uSSyp0d$;8L98HKj7&7UU~Ii+3iZSN%0CnVu*)jqJPo(<#nHD%P&LY##oKreKla!Fu|R z<7&n;^rZ^@A)<;6ofCIDw8Gk`7?pPE9`i6+qQHg8`b(^iqQ7Vi8>ZJ{%ExH5Q{psa5|4nK!a7zc zj%`Tci&g-55%L)*CT6A-+a=v5+P=FFqeqF}TFd0=m~J6q74>=w=D=|H1ySwKhTk8? z;Tv5??gbj>@t?f2mut$H?Npby%!OJXc?w;M`l)qu%i|Xyd0o+{d>L=ya!`4>u~PbF zgX*#g+BPyggSvq!&ULp3Cqqlp{vk2v;1LOX1N=x;zBT8e?}8A0xxiUK@rPhsRXZmY|K|4 zGhuvti2Q8(i01D6!Q(Z`v$rqRXotv&?X3uWAzNXy-Yh6h>~*M01BPJq?6*~o|H$jr z#06xuzVebYZPVce;V=T0=;J2W=1aK>NKE4n|inHX{y)xuh zgYiSNML4uU9dP6VzlQ`y&&d4d?Tg%z3!BjkbIcC7lHODRhi?^RB-U3VbD#KS?GmWZ z7!X9T`Ak^hK^{4S=OK>~nTZ0CW|?QpyQ!YWr3;@~0_MnU*9ErYrM72u&wxatPsV=& zE+Agu6s)*1WU-Qp-P)94u+DZxm?%qSP+^TcGc{zjTDLx{aX zWG?PN=6ywHycfs5S28ZlqCJL!>Wf65_ApAc7@LvuCLhj=EVq`68LOEp%b(Auy_7K`e zR9IbEmtxw+;lSp&7n>rNmCcNyI5cTF0b`=DVHJyY5{1|hx}v+Ev7C|{l0|B94>X!- zWD9D?dUDTH<|>xwRN18b7N?A10$wGr*t$4l(C87j&ZrQsJ{eZdgZlFep%{BiEYcWzW zaA1jvBsVQu?c@}3YVuz!Vv5M8$Sh7(!V~lqb7#L5qZH-*XtY$;b^2>ubmwltlEon= zR*YQm^h5fzssZyUS*spNq3C-tO=I#O^P8W-MR%_ke{P7MdF2*jaU!p$XAZA5ELrpt zvjcr6{<`<^e*pmiFe(4QP0OXlitr%<0048`cxGE6wbOg^@xwGK91PU(&QN__`F_*O zgp(#I(7$X_?DR!Yj@5X_ve}R`#S;Dux zn+S2HCa_U{)t7n+b`g)wXP?*%insc-r+7;}i}(7Fot9<$zkfgB{IVfC_C4#SnU$T$ zrkKj~Gw5c?HV?XCp+ueW6pB% z0M*rXGVY(mqX?IfC^*lRkp=|dFZ%BS@FlB9i|F+M1JCih`CEF<*I&Rg*m-k%%@%W3 zpy~*0HPila4TRn+5zQE^^1abyG zr<~0^49M9=pb=EHYDF(4Ct@>F%m_c_wI@>(T8BPlfwbCnt`GPdqdadwr`lESH{fecU#<@z)0HZL@+Zyr)YYzZ z!|aRoEMt!W<$W*1iXk-=DC+t+Rxknlrn)z^?_^rJHI=!@XjTabz+9)AMea9LpXba8 zU&6#^fz$-L)?3VV-ki`|u6fQ9$WF_59=NM9T|$3mqe7LhjsD3peJR)d<`cbzB3~QT z9T8ie()EESPnp#9L5`D2!q${&ZOMUE_1+Y!lT7^{T9TGFdrWCVm+F5A;C-=o0{9;N zod7P?zLsS4p09K-ObO={9D8m$bp1C0?1OQ~P+l3-bUcKzEl+8}Isb~=#5PXdnL7`% z%P2aZT_#$^rsnUZ3gjQr=>G7D zzLR?4H%&6_3Cdx!2L895Mo{URV4Ks*D$3z`K%xeXc>(DzX1QFV z@51)!MBihv1gQoC&me{Q=ehx<{HWl?%2;L>c$*Isjf!yBz~z2~%DOLm=TDBz@iL<3 zCV{S-jg5LdJa=_#=x4nx{rR7!!hzf#hJ_{j_>!-9+EImVIk*_DPZaRTVt;uYz3uX-3Bzr)Ntj`#L1Q%y7l- z9+j2fZNwH~|ImJhmS{->)#f)PbHLz$wj_Q})|s&?iYoN@A$f!J@1ema0nE6;PS8|| zIUsTZK<+bWC#Jx5YJ1XyKr2S%*xrmkx{~mTogY3m!H@et5!xCpE{T>%Mn)|mt{5Ge zOMoZD%@W{X43!jDn;iEAX;V4w>VGU?m4hUNcOV#hvmQ(zY!?FHaiJ%h!Je=MHy{qQ z!Mr2D^r0R||6fU9^ou0FYA7#?O?lHxYpb ze}L%00qX+0fc9eq^FrJFcWdK-cR^^;<~IH-wErAJnqv`H{!e?;g6qRSNcX5ibYWjK z`c*@F(QjIU>m#}mef9FY1RsFK1qz{mSiFfH`8O9Jeg3aN+-wH(`R{O*d}c*HKG1i1 z!)QVrX(xYugc;{1Y{KF4^siUn%5mF#wj1@?JcoS+BISXK#Lcp*2uI5^ukoJ%wn*4a zElL*gewP99>P958_si2smFa>1j^2mGHVFx;jDm;l5B8ejsG0w!=!^k~?mJvXyo47eB4 zrV$tsmQs%!zV4w>TnKb=|A!M(m=|Mo2a2t$8a{}%*|aG(nQ zZyor39{q2>{?pa({feKv>Swav4F1F+xB+vp0_KgMTm7$T^*{6L9P-(try3RrTkvu0 zO)DXklp1JqEAan^v3mfn{LA)0A9U2Q*-6K?ZL8ys)3I%xj_q{Ewr$(CZQIE^f6UCA zd2`>rRXMA^d(}RwN>Y`R{aYUxO@VHV=*qwG-<5wdz`z84$qn*XfqiWG*#Ruk6MLs% zoGk+5bkQ}KmmZ)U|51Rye*UQfw@og?mi<*0hx6`yYjvWX{|*2B%L4wu+spueb@&ND zxSRle=L90qqdz+F{!w}bX2FugK>(jF|D$;Qy!f{t)%V2659@P|NrYj5OReyBM)@M? z)dczJug8nq2kF;`%{G*ewJXAqkM=vxkdMgg%3hB&5N&eDR|iaBVRj~0cdLIBc786b z6+d+P%^Kcbe6vL9rP7dIw@z%OU-lqzWJvt_e#Z1Hx5z5sQmvY{$L0}^PxK4;l@7om z5}P0$ID9I2K)KWM4o?T%6TVV9^;B2N@!Xu-6B^ufPT3HLSpYn808D-zG4gs_!2ru$BP$pbf~= zuRl#-Ur&O;2cN%6#-Ao|L>pr5qd?f7MSg;Rp%LHl>GqZV{x1L+xDZ%ypR5CSJOk0@ z7Fa;|Gfo0cVBrZsPCGcuIYBQOFTV#RZ?HtyTkhvUCYVA$JpkhT^98~VdD zh_<%O2F%-g-*uhIm6AVA;FmSnWe-6QdeaMtv$o7O%-VKus=;;zRFxgnj>)O=g!!F#@oyIqo<4Vm(Fy)$^yjGBXE!Be?*|W{0kqvwe?8yOAZ;r8&DoLG{m@WyQVLYrQ+!~JBgr%!CUg4d4kLOvwi0fR4qfc#$ zqloq#;j&w_Tk;+n^N0j6G8kyjW*0pL^nfA4^P}^^jbk;$#8K&U;(m^Ua0OW!)uyg? z9V%Y4Vla>8i?K#w&0T<8(b7wKYF-?NRQ4?|_jkm~L^^13K7ItHg2M)SX z`o{NpFX!98MBsGDJ+p5*Fnhngo%`4$#=HFczV}4nL`Op;m|BTUh+#U40*Nw1SL0B} zXhS18@OPHY3jb>us_*=?M@jp%Af8PQ$f&XI*&;s^2X6dO1p!;vWT1h zqa?U@Tw3BOWYj5C=8}M_F~HpW=92?8Xq3AC|8qh?pJ zhvQhRF>tQs*wI5<;sS&2X)%dY;8@p@eLt_)7cdm{iPD(Cy-|#i)zQ<~!M0Jd5T4=E z*g@D+%J{()lHXGe5QO}4(8@d+NN1WW&+1Tz7Z;I6-w;2k!xjUN)IGr&h62cp0k%()@2 zA%wEK^uPtc0LTS%3nzz `0PpoxvKL_~4O9@t19VTc(VvWe{+s_r+05%vIuU^wC) zY^HES21BeN<3R?dP{JMwKA;MW22_E~fGV&k@K%F8Ews;+8!&1j0joY3y_FkF*fV4w z2uD5#hb^bdXvm@718jy6_DC`di$zNVvEfpaLFnn8Xk>XAz`|9#2q}VpWWCY;w$V?6^(5 zZM<#2&Aa`zJDGPp?d0G@?Ksy=?dWoJzQ9}PA^+g=W$xrI=kDfC`flV-?TBFVL+Zo- z-J)$R+ERj5%k;ZVW4CSH7DSI-4`SekzZa4-lVzb%ecoF2#&wY>0UwR0{bT6m-Ihmp z2Eqps50SopZ*_19kvlP8RB*&-q-EGD>XU13A6HlNqI<>NmlK!y0EGmxHFTp&*;?8f zUW1qM{qT00=Yy%9vzb%O<&v|9#f*jyD}L)Jr*MZ+CmM%Rms7jfX}iTMlYz`c1;!fv zWPRs89+VsNQ5VLfsv3h5{ffvoy8FKGCmpFQ@(5azEt=S1imut1~CG;V1VDfttH~X zAI0R%y|KWz4Y`mVtn9_3h4h*z?Z9OjNBE1hIE&fh)uU(JxC5dRm#u#&ZdOB$0^t_9m|Tf4HdHgXVcg{XOj>1wjlEzZ8pRA zS?L?#^Rc|(8)YFs#NB^s1{?+1oW`GEJrr||8M*L;RJu;5l=GJC0kAi zxi`x8`oG8Obw=ADdNC&Iy*FN{v$3u>F2oZzQvm*XOHK?w&Qs1*#Z;qBWY<08A|K?+ zK<0*lZ3k{pqh0XdWrrEzp#Ua0bd_31OFE-IO73jmHi-dowLvd;W*9D{r@-i zCvi5~{Qj>n@PBFUXi=W07@3M=FDnE($7g-{-y@dI2vEBHc~2wYfsx4zJDCn)IssN| z0=irSa;E-2w>uv@Kpw{IYfJFXsKi@_r^^42aloqx?_o^Tbc3kY26?#w`b^XRo>u4u zBg-pnvi*N;1Mm5l793!D5zuHu*Y~Vg3jn_3k?0P%r;*7DBjD8F&U^I5cCZz-%nfQF z`zxe{zFmx@7SKqAmqE44Zh@rh_lVQG@Uu!JZvS>6hYDOS5vDY0{B7{+A;S${)dtQ zOMjkn@@;}^wg%y@RG9aFh?h^AK`+MC#}=YqWrY>!cXiqAsNG$Yq#2$BA-_j0Nlqm;%{e#9bfJma^9V1H~vdA+~KUz#yRuL7gKSlVPAOdmj38wiA6g@XamSBQk~guVR!-hBQq_kyP`NH1S{y`ic${*G6i zgY#WFMA#QZWIMdQ=B-h^xDRnZ`k^EuuLPO;8WZBNJtQD3bVtr<;T$+yF7z6~Pv5b6 z-qY8j7+c3@g-`RLhD@F5na)U^PS-oj$MRbSy`A|7%X{)Y1{+T0MtKc`pZJ(k)<%}* zEZ60&O&;D(-IrcLIET)+e(;h|p9)s{uB9wFX)i)cGVM!{?Qjg4)5LE_5&ptvkGZ_WGox*pfFmH+9zW-Yp^rzXd@0$=o4#1`lIT^GG+7o&CYqPZS$Ycy zMppdN5*4y4vM;tT@uL3ZruzQXKJ}KCT1}lj=5AidtlkZkQOt^nQXy~ptn`(Enjl1j zD$Q_@Y=zAJmsMFUktOO-*t!T+w&vpbTh=Gt>x#h<(mOtR;(tiN3FHnpe@Vgklu27w zmgVL}#nzXlhIQLcRw{g@H09=|H_ElF!U60ovoBnRjRgUI2lEZji(XFnMK_PC@wQjh zDAS`xQL)rHiDC-#6xHtW%YyykL}PHj*fq`>l9j_TfL?Hkc*z&TQPb(sZ*EWaL7s{+ z^v;9iB{y>jOo4*e{ey>$x%%P3_`<4D3R8b}h7YT9^-F{CrB$O;{^|@J+U4q}2IGsX zMk)Q(89BVl)o%^PmscI3EhV(^4NnrF+MWKS`0cpN%HmRna1U0}z#^g{FRMK{-lev> z{}g*Y5K=y(Vtr*cnRjGn*R06I%vnXLtO3Xu6_MWXoYgEJTS#^Z$(J;g<@GB~O`RrH zJNJbisjym{q#PU1d*GO(tCQ-}%t!a&nBlt}$Vj8w&jc9z{^gw7l4##?sDS*oE9 zSKM$c8Cw;tr7dWLdonptG-fqa4yGP&c&zx?K#zZpmzft^+z6w& z6|Wp0H@Zh)>Lp}CT9p(&JZ;h6yCrKZWqu+yVe-TD&=3NO!DZL=EUH&qrRE&8#e*{% zGm40Q_{DZADw=*3m09h@Di#4|l-8G>M1|(JwU7uzhgyebh0Rz}WnI1p4VB~#{g|r^ zJu9nIinJXB~}u8G%P$+R7ETYn~l=(6m)6qP#B)J$rh zF3x{eNmm7`z(XX*I~((pNTYKc)oa%`8XLzdPB2xpxEcGOFR-^w2kG=>e(YBtln2z7 zo5F0mdX@NGj3}|0>tK_riiQ31tYQ)?4M(TmnUx9|G`@eV{oRS?GfNS0ih}`$6@dG! zqpYj4uxoW!6_7n1)@ohzYf<^!tf?>^0>^5d;ri9}`vjeC;##&4BN;Ve4Z0s%hU1?o zaFMzB-WGVeO?CHyZiRV~#o5C=RL*3mf^djYRx_&gw57Z-bC`<8XqnzHPrGV$Fuio& z5NA5VxrCDJuPBQ2F@IC>;o=1bx6vXTGL%u!D2Di$&wQf8%Rb}w5t7QJSN1!hb>Y_; zw)9sqbG^bE(2R{k&_a%{_B9$9cF2l4gBr&YxFa0AxgkHohWc^?f2F85r2|P|2z8la z3GklE!y!{<>KfkEy4lKmjK4`>n)T7)T)RxB1125no=^7~;;o(Vb3r6kc6zU5^A6~X zGlQ2ZlbG+p=$u#2E)jEE8>8)jOTWE12Lf)4#~Bb+aWzF5oGm z)l=P>TFTFjI0ez+Ama@9U^NKt9exQ$ajOa*VfxG=Ohfe6bQL_t8ln}%h(G1?Di}P$ z{&MprUvQDQv2Spo;lQN-y9cEcN?RCUa7J>p>K@{BKQ~p7l)SEY8S{vvhtlph31?pL z_m=?oq`g_Y{K&Pks(YhSQC4%+73#Nf2@eKodog4G<6#bO4lE^$?jxLC#s(=l3)PR@ zs;&mE9LS9JA)q^KqU`)(SPi_=rhxWp0EbpX!G78Pg*-`?>eg0_8_>!r1oVIp72f{k z0UzrEJ>b{(e|W&$Ko1!BypdIJe|x}j%LLK9iKLtc|LFlE|LFmH|KS0{{ow(Rqa6Oz z14dd+rufqX?&|u72aFZ|4-dHOPY>7|=mBG;?GX^rfFeFsZsIqA{^bF`|K$OnrxT$3 z=>ZE>CW@F29!CA;0e5fe{ow&0NB!*q>sS8a0k`n~?Eyo=0zKfSw|{!TdROY+KNa2- zHa7w)&^w^4zgNbtf=GA+WQ=S@;IdY0i$N5u^;=TH^~8Gmoh8H7{z;tIetr}*Jck{Fay##{bwh8$+>^LN+8Lac|lK|hf( zO`{w~yS6gm!NMFBzmd7hp9y9^I%TU#;!QGc0nU$n0$)_JXt=^mx=&A8MD5qb(=6jb z`<~;W!*VUoK{+MkYT-CR4Tof`hg^I>2u>KDyg<-#`yju%W@j{E{XXGv>;df=IylI0 z+j9&%0(R~+XEFP|CP_{bg_ls`{@jx`nEz; zyV-h*cR|N(Bbfdj`)#@6Jj1c!ZgwqdgR}I<82S#4!-x2T)#z!RY*3)K>yh@331`ZC z^Z8|+N6F{GoR7=aq{ri_gpW&E+4HcLAPj3A$CqgS0(^YrkJpvRD1a)5yMFA}8TtAk z-beMi=|xjuTnb5!3RALEKZ!+dgp})eHD|~g*-@c=W3?SdM8naoGWWM3nG_|d+9P;n z9^oQdwgS2(V+O?!rMN{)hvT4?aLZ8eNJ&tvl$mHV<|MPrDhe!92b>$LeFpdDgmyxY z#ngP5dIsr1x$B_=$2Cj28?+Qs9z*%P!5d;PtMN+g`pe+xwYr?~DA-C)+8Qh57(%09 z@>FK2D$X8htC;y{U$Aw`2jTcJ?5auQh|iR?mkcxVZfqvIikk7Xxr3A9aqqD8oMqHj z^@rZWzbCLvNZ0nmuNSk=-jp*_QO8vS#>_MgYPg?^M5S+_GK21}m+=_ilu5}B!Ig|1 zmc8l|7rl>RUDH^QD>dz=$StVd)1uetPen2Dug5|2P%{Fn%I+4<><8A_xqUs4uYR6>cAL@@C8QoK9 zX$%RT&SsDNZb?!|4f*%#W}_gEis~<;z3Lhi`0;a07Kw!JF?9vgD1|1fMFZovKIV@` zx7;Gfa1`Y>E%M*}_iwBe2#o@~b7nsVTW5_=3bdZmCYO5m(0L*==1wwdV24@RJoxu4 zE)2)nzAh}`z0DG~OL4w@Z=J`Ok>`EC;Dba7XsZXl)6br=jFp$TdGE&pk=aQ6jMh|k zXxjxitaTEfuatt5^l1Vfk1!eEawvNze!5~~$rE}*ijHgsf4;h5vAcG(L*G6y%h^35 zrtX~}2#Mjx0LsAcrv9&2hrkVRS64Duzzx_rJ4wVey%XNO{qMcsgEQVDL*Jrmk@zQw z$kJs?wWlt4zJ~;xU|IoDVIv-%6<64+o6?-EC2_6b4DjFp@Q@}Xeke2;C=90=t9_)Y zZtTYrNz_fD)_(ZX6K&;fdI?h3GK zAL~FCz?K6`4M6cLFx$L3l5R#Fmk?H1m=TYnW>pK1klOGP|$uggS@8mKxHl zJ4%AmTDl3P)?(Hy#^F6%|6S+*aihRFv3l}(iF;*_%F@)ftKd>on>Jllend2V*|I*6 zB4ls^KZV!)G_jR&=~XxKqA4OaJ&kCB)yiGd%g@GrKt#<-SmkaoJG*bs=pbQ~I#nf= z+ZfEks>r-poi`@L>QcGR-CoS-peg@X!|bIzk-THs{Zq0g`Tp+g+>2_1iphd2u7i17 zJ6RNcLI29Ox|3aGMc>X4cABQj*lbyG(KrDw8DKO~VXp3JhkQ3;EalrTO>IqXzKOV# zqVh5w(O{n_R_yNn5X7Iy9oM{|Y{OOY{yPQ5PeH%#&}psklejY|Z)@XOR6OX#%9FM+ zmx4whLSzj{aH(uO%z%GzrH{dU4B$&8t9oc0d!=iXYo|Y+C5gO;=qbG%O9S>ll!0!r zHoQ;9j;b^)uS#9|Z<>Vbx_lZ;Z$ATjZ)ds>`Vm$?N-K*i8SB`NfY`m{4b`=8y37MJ z3R~JIX31K-)>?Ck$&8lY#ST2|2jnGSRLKCXT5nXo1LVlQBT>;$0iv%TfiT1~Vjo5~ zpU1a99Iu^?U%LT4;^|MeujKr9T7ziQMd&5GbnkP%Vo?(_+veJ5Ru+X$Djr%YbZ3$d zPh82obQe@=Dh|LgU`=`L!vi3ek=)fshIAl&N_08JmmWxXblx#zbBq07L49lJN8fkG z3~YFAC$qgqV!atWe>~9~F!nUNaFq?{!T{dh0d#=uwaSm0!8j*~j5X|Z@3n-CQN}jU zF6M;w_s6$=>eZC;5N)w%A~rIq}V{#Q{;Y@ttuaGx!I(I9oPL#b9m@$<9S z)DiO6w6&Xg8hhM4>Nz?)Sg}5J92IyvZxu2cz#vR)N7=eAGKd#!crV(IOsI*U)4RDX z7Hlb>2@!u^Lf2Sj2l~P2G;)}%Eb*#y>_Z!_w}Tr;J{bhliAXCQV^tq-PaTgz-M!>U zk5EsqkDgDvftxoOOQ+49qC+rk^Y%g+6NmbW2vzloG=_O7iv9XWpPe(rjjNeH+_XLp zl(ZsaK2qX$o4N8nlv^EQP_8~G!Nz!S8W=e5j(>M{ICTSnr||-wt>Ph_)rdM?Z!+7# zyj#@d9$i$Au{-GebG15mi$C__%=sX5e=cGJAbVJfJwAN|N^`FGKfZ7MSUsKGi230m zle*l1eR}e(gR}=Am4wbZN=6^IYvla6*uw!{-)x+jP43Wz(05Msm@W(dICFYn12|2V zAc9a2+wzbq^9}c$cc5tzW8@0lt)fne==*LO=SAgXxA~SV;I}`QbY~K$;d}sUiaPY8 zdY?(>%Vy)nSSkNQab&5n;-jv!ZCW3PQ4I#>NO} zRoxv%F|o;lUzhm888aRD_0^TOL0*Rvq&z?+dM&{zjXpOg-eZU~_yH`QW<+g1$6|9h z6r`|YCW+DN8?o3z^CiT$_8U3vY|M*)GhS*8! zxiw<8!c!k#HrKN@SBD+Ao_eT4HaDunyC)zpcwcK|%jd*JX%Xu$3n(oKxx1=LPCa*9 z9Ml>$=c91o%}J77)n95+fm0jv#2+(%I>qTZEi{h39&$By!57}E@<2c7X{rlP8OYtO z4qGTu2fQ<ExSVv}>%Qu0|C=FLNg@A}erOyPS>3YD?Q=Syat>@mzf}{{bGlI2EO4UK-hXy3{i1$e zVs7a?mZ6Y%5*{^*o5D@#qP5=0xHGUz`(y4(h}C6h;)C|L=&pvVN29RXcQ#^rUUu1X z&J^QW_6p;HvFvMoHM^(Q5YZg5s4txES_)f(FgyMGdwF~Lg9xO7j?lVlyVlt~y`cG! z*()MBi|&~iW~h0F6Oa8+#5|ZfPCcdR$b1uD+~_y1oVU*QEyGSMXy-k9xeZ+R>)@^Q*g5Y$ zFOywJ{H$-|T7Ocv7IwaDbYI$LDtkzNwz*VCi|lng2Bib!p?B;RCVVW?e_!LECWlS^d6CWx%1_>*|*Wpy_xr){UO$ zMqpsYjotbscJ(Ce;{bK$p`7BPS<(JX-K{J0M{|h`F9a<9Gl|8^8lc&FjGoTJ@ieXH zIDedn>o7rw(o=c};-s9r^&+K%i-7-Wf|cahuTOC&#crVk*<&XSMRW3YT$Uv~BAAdp z1l}xGg`gnH%qps*vH!kqYkOB$%kB1L)rRg(@|CyJKUVP;rpb<%k@5)u@YotP9!Z#K z?>Kz%OG4!1-q%yM1~S5P3H#$iv`f4eE?4u|uSRpdsj11o15d?(jPNg&n`QU$F|*$v zgQ6CZToIlaKTwvkM~$ObVZ)8@p>g2Ir0yIXCPvcAW*zd%APO_v+IZu^*Gd_J#q6hX}@l&(xO>et196C%iLo)jj0cw0IR9 za#PM|ZcIFyf1J7Spsdw*zDOmLkD^J$;IAMTT{=(4Nwu`*d+OrbnT zKLD-|Stl-qzf^*7y#*PE9hO9!Gd{@sp;7V*!gG@)KY*^3vo z6k^=-CK>!TTS4?~L-LZf#0;TMubTRzQr6Y4lZY5A7QE%x&&_0HDiH=d_5%ld5yN96 zBe=u^Ku5U6?gr=x53bsB+W+AQ(<^T_&;02KW7{1EpRx1PRIfUtPSLg&Uv!aotUNqG z6i_v&@x;9!ua4rjySf-`k7zP;>zJQ-*IM6PmPK_W#c}Kfz@E1N9pMLQx%Ic#=z@$l zOY7IxA8`cg&5iaw7YVOUy9OQ2)Tfd=&-`aRtYD%8?mE_i; zIyhJ^#uscna+@9O95mI};sSeI_%1&+-6s*=Tofh)9pS99il|59W!;?hcIM+(FV-Iq zw`(o?GwRIe-bD9JLq{I`nyt1g7MSafP)khrzZb|`V~~?>Lf&)8zpz`bcwYG0!2~3D z-LB;|=p145sH=HAE?i95=-ek15miIsh zHXXALffijJ{Z$1ympw)&7bf`Y7tlOPXhpQ6uiDYsKfmhw8co`rkG@@`0opIF+k$!Bh(yV}ytzRJ%Pb_rfB+g>WS^n0g=lE3 z`YiS8^{8-#bYz>yhSfG@uO{JCZbtNn&p2q%z6^y;gu95t(S zi4EFD5ABK}psxps0xpd9PWwp&l9?$!M!^y?*cXCO&u|n>9Lv-Z4xAN~%u6!8X%~VDIiaiEFo|!Rm|;py4LB~ttMb!z#+#=rxj{3DJq z6r227*_~9J#maoTgD)$+cX#uj`va##%#8S3?9A|7CMQ(1sf@NlZ!FmZ_`Wn`6{_b5 zDdHD2T=g1S7>m!CQ9*ej+{5A7<(w8nMJ{>r5*Hg$0)4!}UcTXlc>oU!XoIy;GGgI^1BE^>X(3U^4N#=kG8xOs&h0})V00t*o8{gfra z;^%E8q%a0RG5vt+rdoxQl>?oZy`|ijk*OX^=fWg43)1pv-k|67lFKDZOXWC27Ez*& z2G!=o1JINVaUBM-eV!RWyr42tT+(QupZ^v%YIUj5l3MJ4^Ze6md;C}By2tr7XwT); zSRnjXsvK$nyAdf$oYs8^%Ttr}x%)-YjxnO1oi(;_x-p#2XTh#)Wv}!8?{&`0F-_Gx=pU${ZB&Tqvv@Eu)}DTQkB?G#6)z}u`>bG2yXMS(MzGf}1{m_)1m zWLfTzw0OQxn%8aBsNTHkjXZotx#?>(B|u}I(Z$->om9VUD`?JIq$Z+Ee(xM1N#NqG zPN9*KZ_UG+fHT;{_16{{4@MU76@vVXbclos+bQtQ1*zL1f`Xp=et zP*e3~sEULXJKnhPIxJK`&=FvP;vm{Ch#j3k6VSTpJrVEhEV{7a@`;oj{2BG^?O@nX zA4GNo{u>#Scr@>h1NC5$^4=}~(rFvs!~vv?{(C;y*DYpYI$<)A;|hbNhlDlY1Q6d$ zVze3FK>gvLL|*}LeIg%UNP{#O>~+Q7c)hdyCgJ)>z&X%HerxBAWT`}s^n%erP!S}I zm6sN0fFh3kLh?M<`6OJe?(td|3zj4sM*3;iqUQ7Mv@zY>9M9rak)quTMH30?B&(>z z*<@Nu|EG20N%I*G$aICXiVhZCf%t%!5_Waeto#mS`jmTbhqE;q=$vTR2%X_(1Pcav z1YbI5E`%U&0}Y1*W8(!d(Q~UYgynaN2G{hF@gf#(#}h7LXI`2hvfGJjYc^Ze$L~i& zCTSk^Es0i{?7u_HztZc~-!QhiLY$_vFwi>ys2DXDj;(M7!WNdwo+i5z zR1TCelFRO@X2D)aS;URwGcXZ+S%!YY7vL&LD>;=q17M`V0>dduBPczl3pBrUco0uY zIh({!F_vO!6$0tbTo0p@8DupCo&`i;T?$pe1oU>kUU{71dMho#e%WGQDwHPv6D>bZZ~Xx9urzRi66FoPh%yAs@5KJ-0F**PN zZG(U;oo!Ht7}_1U<9?;$-l^gKc(NoAyo#w*j8`1hZaWD+6a%udpa%wL*y@1wrN!!; zot1|a#2nq^h0$@#A9Fw(Q|Ykpq~+VZi!KJU1^b15=^DcVu4vi|p_hYJ=xb^pp~-{= z>bU-;mwk97q?Qmnybrg>LLdq?W+H0E*{zc0w(1Fo1^>6;_LA`YVngZvAuG*j4(^}u zYGcc7>GJuGV2E}P&&O^T6Pal4w5xh7iUM|Z?x`wOY%^eO zq3MO59|q2ocdGZAJCT(#~A$;31 zy2boOZU?_n+ciC9^S>v5X?(-Gip>i_Q<;V*D>B2wIkZL;nL{P&IuVZQr>;P{*ZncsL7o2@04}Q_jkXXh57+QRT z!ARVIM>ygvXs|s{TM$t=rWZk=n!PzR#{Yjn}g^7AZyL*(*8uRg$`* z-K4=9r?d%LGG*B@DmA_(`L*2ZraC5jHRO4C_yx!Li;EE=xK|?h3?=9ag!(ls%a=#9&@(hJgsd;Q@Z3kV1BR35F5$ja>-ga$x@@#*PRm zX6C@WgmJRC(FLy_Kp+$`>cl1o8v=B&CrF~YUPt}jlaKca0m(|EI}1HM=<;V?If^dT zJiEw!CRvEMX36(oj@7^AlR_h~ceKQsb+6TAcqb#G*k2;a>Qs)n9eO;CMa)pAqUVN; zE%%5hfIW5;HCXr1)M8!^(X274b^SFcER*ed=Ns>?rz-0UN~>mn(g;gkW{6|v(t+PX zvv(h;WI);W_|(ptM-oXHopX2Io(r?Fp2NG6PJ)ujcqVEs;Z~kxwNxpWvcy_l&HHUj zn~Rsbc9F8aE}Z0QF*_g{gv{129cCFHvsdw*B@k37TuT>1=^$$kBaAsNNAB0cyHzIe zbXtrl{10enQrWHf@B=3ttks9q^z+&xe8bJY_oBVbtlI2(KbcQZ#6Ja0Ud~|jgpm&8 z2kEMF5?k(~>|QG#a3e)iDQ&M^JCR@OMZtv9Utg%dBgGPL}UGQDkajkB<2 z2C4)Sl?II5FJDVKoiA>Pp5;x$L($LLb{8dtZld~XN?xvC={lk25>mc6-;nLdHksJ*H`XWzXSOD$J>pQh^S-hS7p?CXIybQ(^)6u|@pdS)<&AmytLP#n3k$Tn~25Ct<+HRau zF)HcclsyS+EYpFl^4Vt%q_p&8D2O1?^J5zrgk;dZdTE09vaglweak_o$AV|FF`4<3 zJR;bJen3H3%lhXK;)@am@gd?v!B_q-VMC5vF;a)sZd41&fqSNouBm_xK0#$yd)P=Z z{xV;8UUX?lUkYf-R6&WYR#(f8Vk<_^0nG9`S64KCtAPwE(Cb(rj@C5>Ve1KF-OmrH zOctNxv3f50j>={HfX@mV)v@>duH?Z^lO0%wPEJKS8DyW){H=zLrOk=j z`503l`}fz;4+n#7C^rltf#TtLze8lt7DjTUgN9w99QnI+_*?L9es9_CRV%rGlot$; z9C7X?TugDr&(+xJIRuJ8y_zT0gDr;F+Yvs$W|_4WIEetFC+-1UdPXk|`m@WoVVBZ964*GuDULMj*z->h4@7)deofBu{t1fA z@YS8T| zBEcl6sM{CD`s%=WG!x9JHSBQKDu!ghIN=hhvhcuJnr(OXW}%gQ=31+0sj-jLt9r~zYyycWT~ zvu`Zz$xGt>+Jv8-UoIrl+?|L#`L4@(H51>Gx(j@g@opMNk5!?}s^W2cRowSYf>a1X z*12{GsM$wi9FA|#X)7E;KR06?JKIn`%&ajc6IOYh$eBp4a(-l9$3CBGbgX}B!_)P% zwkI9&-mmkzVuS7y2bDb0LRNF2Ei!*Ptik@oj#Gi{>1vK?&X}A&J8xIBqGDE@#BW{q z+T+#f)~ArC$JkYq1KMzQlXRx&f_(b9ZC#1}q<*Ja=!gyMi=YX?boUxHRJeMs9ByhV zw1>$;ek}cE;9FpCKs!3&)5`5#0}L;6tc4Zvri{$3=5ULJ!C@PgItbVRrhuNhw}X6e z&P!A!!H&skP|zFg=4arA=$pfDYW9m8rXXNnLqI-v_O?ILbc@SE|1^K!VF?iU;3dq= z0SdyB(1WaMwe1IDQUkh7+xCcp#e~W&SCc=V%4uk$X0l`E+i)xuaAbZh|5OzUWJE3? z-zENZk{uOSb>R{W?<*%@2-O|pSt?x7msF!oBdsQ>S=%wmA5*O4GqIp?UmV>qi&Gi>t8abNvUhaHQgU&mpABLv*LDBD@iu@TmLM#(5Whnb(EXF zC-f7~*Do#1%#p$@rrU8P-MsR%z)5IxSmagrW`PUA@e0CG)FTU4v9FGG!vQgKDorbb z6|YpULZ-Tszc*O4q4_=1jER*xZP}jT8kHwA+cd739Wzmcvs<%i#BMb{(gfPAWZPCo z8SYgXF;76!mRVwBl}Z;{8q67mi1?Gs9?aO+!ePs7jPLc>xrgp5gW{y)c_n338W%cv z^5Y{}J0_j`e5dR}rS~G$7g<`4Kx&e6oi%^8qv7^H!|EFN2+k)-=aU?uwNbfD<{yVm zAsgq6#s7k@rJpDn3p0wPsV<()D2;hgOSCd`x=C|PF-b91l(E+JkSXBDL2Js+0^7x0 zOa9K-u369Tyy4tTihSO{Ra?wf(VZsW^(z4|M|WxEpVy!s(0TXcjU|qZp050%WV}pE z!Bb(H$V4;WcduvVa&|>`e;CHK7vQ*bWz4jh!@wFPAHzfK`gZrmaD3%BR_6b57mAG; z_e>ttZSCEVq8j7h_y{|2$PW2Riv0$g@c~7B?7}y1m+SzZAr>Su!pr58$5|Kufp+c7 zss+vPEaV_T1~zVNYFHRh_^QdBJm?grRX5lN1cXOH1eqyrgHP%3i2nqHdBmKn{{)10 zJU}j63d2mg{mH>DIY7K$UP!JCKrX)u9IqTr3M%^o`pf3aRnG^x9c=4uZ>pMi$89dQ z;3NP9AYYL5e=qu)eS9vN;(AewL9YyHc7@c^Rc{w z6XQG66n%m*R8nOes)kW}@q*6Lv>bhWB5~1J)8T;fvX0m2yx^M2RZeU>VlbcU1sjoN zscXXbx(m#ne?soY`tZhKZI-oL!d>=yKuk3zv3qP%+K`&uZ!gV$2t`fNsXdQRxV$%7 z%WX`?JVQonnj7;eAH3o4t)(kK3S)4Z^PWiO=kpT}9T*bm3q_vj>Z73i!Dd>*X|5FG z;`t$?3vM|U(B@bk?oelA8P`aYM9nDa_uW?yoZU0H3fwvtJ z)B%-FgkoTt5(83z&VDWo#m4q3_5t_UZnW|bEbEKyWZknVs)&FzsO_y-5eWs;MHCh_ zb4z(qh{+~J9hJd{)VTesA#2vTdN{MZ1{68CB-gg48o^&l-JEwc>{Sz8g!3i4p_jkq>-%jP>(iwtGnv_c zH6Xxo@o+OQkN3p{Ka~Wi&TH%H{^s3t?a!8%D)m`8;+B=0GY^>=QEN3*{VfvfC0G0f zL8W?G*G;p&0br2y)plr0W{Iydw8+~+e>=2h&ME}c<(6fF4dS@Q&^=Bt$!o#zawLxr z{dPC8-Y_ulSa*I#S=IFSnamwaKcccT*Jabn^yca5V$qqL;BLtsoNwkS1XBE(_`cvP zzpNG@5gcEdmU)ww;txOA_A{!lPxIp+e(+{vQ>X7x{I~I9AwhSYY>n)8>@%h5klVtA ziq~tgEvsTsYgW9~&w#ipC$ZMyD|O_ZAQJ-~Q|`KkA~rFt+bTR5+?&O=B#q)xoh3`F z%TrdvIGyQfc!t``g%b-YGfxU_8!sENL@RfvLr*m;W#+Rc0jp-vTlIUlmqV{3Ct9!m zBlD4#Z4|KUp$ekHa~aMnKIfR3<34@DU?lIS$sBTL)|GRZK97Nu1N1e9*A1gnE)$oZ z8edI9TO9AYcCjwTy~%uqkOjWIvi%_lL;He-p6+~fRc7jmI8SB!F?id2|0-Zo z3DeFiqljb-3D)bEs)?ZN8y+50A*{>ZI{@<5UFBMqAULpj;7?c$#%xA*io0>6I8kz- z7EJtOf*lPJ*;HhJ4X1;G8`BoWO<~}blF*y*M=xlF0Sb<)5AAe|#0{IeDI zAeOosx6St$m{zMvj!uq|!)ks0=;&QS)%FaP;lZt|x-`0D0!S|4(5E9HU^AB~SOb1H zc(g*dA9eb8j~cZ^zN2-7zTFJUF!*Tqd6fRGF0Er<{n3vH4kX;JyfNauW>4rj&1dYu#8O2 zwvRG)6jrYrK;T9|-C`g1e=IodK?kv#i`Y>c4d{mjt%7ghhO$JT0SWmo0R&!e5V4S)!MT|iAjGeWN_uSl>1p*ok9!h`_YD?Rr}Uxb?Rj6$Z3b4^>}zQa4bDdHq2_M5 z%!f23m#Nb-2^dNn<-tLP#0s6M4ce*adk3*76#t=Gk)6g z7dmtWCS(xsZoR@yKuO~{V!xQwWH>QQXtOLyQjYntJ_8iE9#QdTrSPs;D)VN4jR zf;{5OJ3!kDEROOC6nycG8Y{*4N~MFyj67Lf?q&ib$+@8kQ;RCy!JVZrjz?8KEdRw3 zcLo?0LBonOmz?E9g$Fwit%OO&QkkyP^xVK6Z%{P($F0PH@x*UVH-D3;+FF@oT-0OX zxHZ_>N)k3+)+ko>>B#E*pX8vpL~0SahitK4$~G1`zd~Za*}y(_TIryxa*pwNy=RSJ zj;X*$n;0NpX!i}u1~cuJ16+S{Ivvp||GL@qOzJ!ca%lK;LNlf)c9(~_!7pDQ(e8F= zip?-zE@hiypkcWee{593?L9hPX11ih?E$KWikH)NlloFH?R@kgD!yHxzPnBCzsr(4 z6R$rEIj0PfUmeV(QZ=Do;kjzwY-}_rw>?6if05+$gzx-Gl0&6TluzAd7`jSPO3!1X z=C!@9MDRq(glgFqMC?PioR9s~fL((HhFrN$ zz~#ATtA17UFY-0wU?}T}!v=F-K{%fb(;hd+KB{nC7o;@#dw3^)zZW)`Ry0n^LHY5v zHJZ$kq1URM?>DS!vTj?ZLZa=KswNkd{|{;J7$#YeuI-jxUAAr8c2$?MY}>YNqq}U| zHoMEVx@`NanLV@j%-P?}oO7N0aYy76@0+nA;!kGeTJd1TjK%9@CtEXX>F53iEoV14 zXvxAQ5`0Z=o2)Iri|KUFUp&~E{CK!!`L_2$$1oi5Cn&oGJ10C-c8Y$}fRl_`Vav*Y zs7E|G58SIObVQ0n-2;BuU+Y!V-MN?6a-BpLT;+-ngpe^a&IXjXGmlhlM!Em#K)Dvd z&osvmeKw9AIKC&3G7KZMJTW+&=(UIKlfm&bXLeq)6|bot+qQ|j zD`;q=T2lG01?h=)vhuWmw>!n=S{8QSRB<=Jb?WQ>*v5#bvN5&{!O@|QigCZ1Gp&Q2 zUs?_r^zC(%7xU$($_}o#CB!%jf`u_A9apvs@GhXz+>cfuASseN9GM~fUc96j=={s{ z;meyYdb^vT?Le*ap1=|I=9wr5zr6JY_9Mz4c+@XS>qGx6C+1CnCYMd>YCdKG73d zaEJ0x%>l(!vel^5VTGIyaSO>t_^R?}<&H6l)k(Maq!-$FxjJsA8_4}rMn>;)(Wx;_?|Co#+_RiZ5(`=~G35m4S~Ofd#VJXt|*hs>*OCCSPniUPIyU-f+RM{al;B{(`d zYCDnyj&!=?VEdKEvH!e~yGiJMX78MAce7E+Ij+fa1*|=9fC*svld<(-+KT^FA+I92 zB{e&8N7oT*X6xFs3H#!%&DJm=O!Ka=ILkhdQyST3D8vGvnq`Hy9@j9%LQI#~Gu4n^ zJ2|ma$Rjj2BnxDF!}oMV%kq>i1?8_;E;IT(y!j|s>iW=iR+swfYjqsMcAFfGM_TpM zbGSs~8fbdv&spsDtn#;;Dy_O3r)a_q%*?XpwnFipvzB}WWTgugXN#t$hGT)YBl!Gc z%fUskxNg08ZJ&Hyt~o>dKb7Y9Aa#TsZo}4cy=Q&o z^}N^`?N_m$yi$0f2g>1R2jV6I+eGN~0(M70_G6TPv%CknA_c-vcRKgmGbUm)7v+ywWaWh~W}@d7-RwLFYmb|FGRx4kU^sFVu9dmmug2E%nDO&)tAuuha&XSUA-o4t4sgHi7Td_LwI>Bl-)BJojZk2l|{2v zb$-Y4z`$i+NDQo_+ligO0Rn~no6*b%a7qem(~^aJbyO#el%;5|BdZ~$$ijlFU5;zdF|Lpt zOQn=frAt(rwI+0xNRY17tBb6BQJi1M>8?~;M2RpIfa~VN`NseA{rE+|*R2VP@2P%! zD+Oo7*r&%+%CBSu#7(YRpl1+T1L5POx_RHVLnEO=#*??}BC+Gj627M|=EiZE2$tdX z;p_pSY%r%;Xt!o;Te)@fi3Zt+d?x8K!Cmn3W+SpvD*g>Y8^upHakOWPe4mygMLM?S zvnLQj1$0aIt zseOoR=IBKLdClP={PkOryde%Na0)w;2Z1=Ozo!uU*xqXq!I1vesMw*sS}ED`gNcYQ zfsz7h@3nQNIAKbkyr$tV3s6)|#sw zz1)QB9Usmv$2vwqI;R0(q&Ix4vL|L@7GqAMAEF6F(CJgd-y+4oXW@06euJFO$d2WB zzSpPN90~3~Dm5Xvcxa;;wg+D@Iv3z2hiW4rB~{l)5&jMfN7a~TAu&kaJ~NO?tb$|S zs}9>)PsvE0>p&$MvKAcnNiNA#cQ`yq59`SBgK}L|-_u;-PpRtU`j`J1(eKF^{w||xVBy}^W~8@6Z=suM&1+cES_bxAcycLyxTaLaR#Scq{LnYy z6IOpvyDPod;mr;BsavymPq)V%4jlfEhU54g6mc)pR-%~`@Zk?kBU8FT)L%Q*UdMAD zfLSa6K6BT#-)b^}OYWO`DeqgfBhYrussg5)e}5q|_!HKx62i5pE zILm;#yNS0v<(glO6zm{8q6WH<%vuWrD%uJXk2Gv+CKLr=K%NyoI zKz8J;nLmAE?#>SF5h>^u1p-CSSR=IW$wYssPNBhosYg24#P&`Z$gM)#OZ2=LHK%np z>^LK`?_{z@r1X+m4L$O#K~(e|z-uS0VA=c*|3!95jGEUv12)H+`z_t7j-V@vpT;#I zG>)`zr$h@$pnJw#+Ec)1QW}HIKcN!2_ZVWx%V*kF#Z%3vc>&{tc0{b5)}^+{*Ak_mgk@U^j{XzNH5f^@;~ z^;o;XHx-X$`?$Pwa-5_|h)2w=@3W|6sP=I}7o-DSEEq##zfLRO7}oD%~dg5b|w(SjJ$5R;Mx6w=Kdwv94NHxmmhAuFxUx@1S8l9>FZDX)m` z;7{AAWuvuNa3SenLD>gf$3iYiAw134%$XdM_2M27HSg{ zffiDgZ@vz57PL{BFCV}a@>B&Alul3Xm7mSFKOn;Hg%5hK+Lp zbwczzwe_VVn!#!RhC5maD=v>OC@`~ zy(xKu^A|u3>E3EdDMR2J3=u)f#;sL@jbEii8~w(5#C7%XZ9|4Fn?R}@+MUX$M`)IC{Y;m1X9T@(*r3F%0q@{C1*|cq zq!R?Bnzv&(dq{NpeX=hF(F=PY*_%Yz^;76z0=0B@34r1pddR4`eM;6``8;u#oojT_ zoOZkh^X){Sx9VgCuTazVGtBbz=0R32V#mR50#`JJJU6E+ zc9!h1WE>mGJjlL?!Z?@B$iH+$WD#=>g_Qt@@w*!ZURR@`XGBbx8e6Dan!@gA0Z#uRJYNS zoT`z%3aw-vtAQJ?!~g>IIG5(cUc^9T>*8Yt4qbCPacMkAzz#qMp!|Ge-kyihG3%K= za;WZ)$&a@C8nJg*7JUOmG_3fW3uWLsM^6A^s@l3v#?CGA|4lX*EzRnmM7e)@wNE^*6M2KrZbCrxLTu7s_#KWqI>Tyq9U9e}Df%$^!Ru}!z=Kq&OGm`;kg?Pe&RbKb zfP%l=8)lwx&-^r-AJbgXBZuaSWs2U=7#mx!!rdp`KWd#ep9e;y6JK& zzn1Kz-h`qK9Wsp?ij^^ot+*o?y-BRD<8)s{1X#UAa!RKuN$!Z-_rZEJ~HF!2t|NbK! z{}m9{9i|7ATTS3+0f`oR$Bxiz@3wRU1@|lM*okp{ZkRE{KLO)=p4m2ZO7EY>a+&eI zhRPq6AmB!!DZupvvY_co1wl@I0l%}{+#tKw)!mgBJs`HKIL4xu6XNh=L`|{TF0$J| zU_Zgc+nQ%0-IdPD3ky05#`@IO(yLr<2> zdt@f)K z*iF*l$jTvXZspLx|Gm#8 zOST`H*upiFM+U39UTC6zW72TLR|&fP;VrX7($Ry#{sTvyaiZ7fiBQQ}L!uA<5g+=Z zU;Ihvb=mj0jp-a&od;E0)1EQFjoHEC6|!k`9UUc~Af#p6M?D>7Sv%CO>(Q^066)+AN;=gWw|#0=}bdAAMi!20yB_ou>^ zYV^ck;d@4j2eg1%2bLI-sQDTzZ6Omg8Cd_*lGz-!_1&lZt^8R z8)is#Gx~&vaAnX@Y-+pEv26s+*wM{MWqqR+=fbu!vSaUFv2R0#W`4d+lXB3FSxkGM zb4qO0rDI8|m}JB*B^GrYmH!@q^}Ues=Uz759|8i!Le{9~sF)W`jN4nGe%e2NI8o2f z%Y$mh`h+L(W4JPUvjXgm#d&NhtuuYArd<>nH^o$T4+WiE7v-H?zGMf#93BsTsVX$l z+r@U!+11z79fe?U$XvChg{ll}qQOvs7fLF8?&an9yywOEyecXPf9_{g5VFh5A#Y(U$|2=d7J_8(z6`2ZCn~Y!JXBipv#B^KvkBB& z{vKggX7j^QapGr>fc0UtbXDifk!JWQFSoOf`dfuld7$5;OCV#ltt{)Yz?J{J+?C&l ztm)R`vFY|})~mDRUjaO3dUGvm!Z}$=!Z~QVcMn5=>7HVkcJ<2bjY1yhs2b;Fjr5!{ z>dC2gs>vw;+8+-eXS6?N=(Xb~-f$%~A1xY7%`01Z$j6|I3F z1^2+_<)t0!1e3P2-v(!x4Z)}_?nN&`yI97uiXy2jn#fr$iClt{IH)L=c=d8bEQPB= z3SARV{#PNH`{&;(e3GzIyQRcZ()gq~q-BdG$5&g_#8(cQNauTi8UBY2S)AKF%s(TH z0+1O5d6FfIf(K)W&z2FoU-H|jAXeEV zX~I+XGND>03@xPSZzvH-mMepP?f@~ZUn(=Ix3=aLZPcrgOA;71Y-(a!*Dx0ORe#FO zE56o4^sf;n2(!X}t&kziiu|>55T5JbjBGVH47&i6GK?q2y51QY+Hi?$BfGxN=nxul z8X7?Z9plO(oF{vddDGVAG1c1Dw(|hj;zrssBH=J_-UV+P7bgd)4wcU7EP45>XwJ(? zQ!;cJZtJ5pA=4+9#x;-wj_}BWSr>u6L>-DZt z)0so@y+3jOzQGCv)NWNH3-k}KuYFb^YYRgL7Xy1HMtVkiCU#~nE(Se%y?>p8`nME! z0~-TJ3tJ02Cnm=KPZ>4_M$G>q#twUexRoKtS=?KtP0lORzO@W@Tq$Q1)8_oa& zBFT89V_s#&K41knBSn|YaE?%)4I>HB7l9n3qt^A3#Nz$Wn%4)sdk^}-THmj)5wdlm z_HaKABOgLAi~U`_lo@3oFw5pXEyW9_JDJA8S`K& znH|H4=`~Ct1|l)f_LTc3?4iL%>fLL@1RpKT0qX5&otk&ftfZOGw;M5JK#X%8)2JN8 zy|NK`*R0(7gNPfO>Wqmlh$@6GH^~Glh&IZCNtV4iTB_N$QPsb-iQ$z-3DJo=1CXI2RDho;6XEKwX?UjlMc~(e- zC9}xYkd>ZEE({AX)R6R?;+?__&(K!{Xkl~1(j)*PJ^68QzFX0h7$j`Xx9BtBS=#Cs zd3~0hv_#qnKvU?J~YL|Maj}E zbq}Y^I38GZ3%E^*p8xrvt+@vlaU4(+n*Ozhx ztyPyjTDT^42PU6SflKPyFZ5LmwN4iDNZTLN51RmQXave2K+{(nYOBs{khZqU*k31a z?^5**$wW^;w5Ne#=rPgr9Qz_`dwwO54If~3wScAZBWr_@wt`98A5#n;Fn8sEr4cgG zKOXlXYePueW04LYVENR7r71wui;%U#rEDXU4HF6Swqt+54KL4$fj&3()5|MgQXoKYnz5UWCTpbZ!_yf%TO5wfTe{X zYokXwaE+=H_mSxZPB25$Pms2vHk#q^l%2vk91|IZq~C?sY04@Yr-nmT0E&)6gNhu--)g&$ez#{ zk&vIqU!y0%nLtKJMHx#(Nx?W~oFm7vi`Yh_H_FoM$*$720A#tTT4ZHCDb)zcXAaV$ zq)cyU1`9uKXod>4pH&QJ4W1VaXDObAnZ{J|BxN)66==zI0F+2c&S)}2g>{i8hO;h1 zY=((lvzkm6MYG&YQsN$6>B+^Nc{(?Rd@7ri`_uW>RN-O42!BvRGCe3 zvYCC<7)i|y%~4YDm3W585+)_-tg5ZBuE$M)odI{Nj)eRbQIlu-5`G(R41Nrqb z5u3%L@`OM4>}8>OG4)1X)6cLCA~A)kKQM z2(4;QV3Jx64W{v!QF98bHKMW-Nf|~8le(7Fz#nhr5+fd-dB$2VzdSQT);F^%rSxZp z)!d4@t@`A?;cdOR)5}LGExWf8q}7+J9+Z-*!_OZxtG}201Wea7K1zsNVq*N*yW#%O z+&?M?!(q>ciyLX-=`0T%CC*PHhGhxNCrwdbycec~rbqq$Gi7albTsKVkQn+xbk%Zh zaTIGYxpkLs;JEyCBw1SMMNUS~ypbPXKq!@d)`yjYc{*|G*RfOL1Ig1V8v;m4p;Sg; zAAO^&(IE?;d)F4}FvVATm@++q!UF)NwNJG=b4(nZ8wSEzMmFoWo=};A`Le_8PjYVf zx!!i5u+PiXo{q$i>UUsr7yP@M!JB?L&>;8 zd35eLXF0A&3Kk$EMB2p~g4$(z<3+~#P%l=4QLfIX^emK>?TEe`y=iz?oA+mie@*Y` zAyg6II5;U>)qL_2&>~FYK|sx8Frr`)y^uc}IJ>4)#PWceq6=90K^?@XJph9fd7RG- za~d!{vy2HS*5@k4jl;6iG~i0-Qh8B0Q20gpb8x(G#AuJz=?YK1*t8X-3|ehDJZ5IH z@FWA!6<>~_bWZ|!hf=A@J7ELhDU+V26KfnQxO`J_D>=CU@ck?gQ@)oi&z4$%E%PK& z5fEO8Q@F=2*A-b{BBSm`M$0L8DsAWaOYqKLg3Xk^f^{Xof?trzeS^!F{t_HZrOZ?| zn?*fP#+*bATXqAbvZz2doPYMev|`~ENvl@+g*hD8}tOQ%K71dXBSssVp zIkRfYDOd!3l_+cAu=7vOYg+KN{c_{-yuo(P+)~T$=Sh3a;^|0JgKZnXJrfu z;&owUL_Miw{qJU%!3xuc$%(pHQ)BLC)#+y^^l#&JA+-GOn2)O0QB%Mr8KP2%yJ(vs zj!o*|zuwpgd2(4Z%uX1*Cg^^v!YVH14ZZswUP8bQWD=yPjvd*F>2cBb+dySmMizT% z#KRqkeo$>UT6V^Z_r~WAvk`AFW@z&&F$eF7_~bmX@WQ);Qmm_n#HomEp@kVL?rk)H zHq02iNl)w;?Js`f;Dsg1uStLoXp9}%C!S{(9lQ5bF^{An(NYjc$IozN|?H7nQePOt{jldpF! z=!41M71W&L3txVE??zCrq55Y3g--Z9zv#YA%(IxkBX$n+Wd!U^ws-1(5PU-5NFel_ z6Z*jg>+oCn6A-8k?Ld>~NALdua>M|%34W9#Gwln#${_Sgw(SJ{atO1m1KdHQ?*@KW z4RlE}EwI%4fxWB;`f8=`2Y*)6=b#(((FW|x(R&H;v;owEv+V}@W-Iu)?*GvS{?XF= ziT<<&@~O4$2m59h@JYANAadSN#_2}*8!y}ma(6x8pQ;MD8kP*6Q@#kh8$s@mgqwWf zZvR{rQQR->B1db1*;N%t=MH{RNY*j)0n~18Gy*i?NT|wl_Hdqt-w1C)y zy{jhjW*M#r|34ySH%OD7;MUpD|4`aA%=&+G$G_Y zu>$9iZ_j~wXZp*dTv>qd%k`E(|7&qjLS-;$cLA<5GeC{y$`V5NS8oNDI~!Gr=C zF?ItQ%J}a2=qtgWnt*!Hx0gWPH2w8pudIN5>3VDatr*z3P}+qwbPHbjqsIS|MxA5J z{|(})C&1;F?r1CUgAR8|>q`@P^)mNEIKSL!-5O|rMmpmU+>oe!g>ogx^W*Ptf5ti! z2zocG{e*kS>HA>0J2X@0(CVu}d(-?M?C>`Bw@2&|`{80d@3oE+jEH@3(%+0YBnZSt zy*X$*<2z_K+RhSv!`q$yf52hJJ$EnPB?I*?B=^DW7($wtNjOH9AKGz4Zj?y8)m!WKZ1VT ziTZ0e#-Ir7SNi`iu$S*WF)Vgk%zdQ@$$!!-f%jAjO5n0x@XdQZAnsp@BVx}4*SYQ% zAPjQbMbMqB0cqq{vtYWJy)r2OMhtORI87v{*W_pl$YH;lgYaGLmB)Fq02Q#=E`fh* z{I}xQkmkQG)0E9@l3n)*KX`FrstgjiJ!(5HY+xWsxYs}Y5 zSb(^a>zn---i-pkR#3T?1KjKH2>DK?I821N%%ShD343dW+reJj5OvcHwuC%2BX0e-c-xP@D2Km&1r!F! z$=kaF{0+h0-G2ZS_kX0mx4pjhV<7i${)hh#j9Ym68_pow6umD09)Y}jV5h|_+dQD% z{}CeDPN6Py;O?zJ2pHQtAiUcCVX#;B!1(mN1OIpNrV6(5hi&f&{8KA10mt?pg!j6C z9L|*kDF43{Z+dVlf8h5{fVz7CF(7Oo0C)2Gr$Jub0O|f4vA2C6__P?~>K4RTw|5Hm z$pct`VfzsLtpQ6FF^7H+IP6?kQjWBkDz`6SO0*Z zy*rVQEGEBbsYi+dFehl*@1yd99r|B)Rh$R5X(yycHRe;Vf;%z!)f5KrLkWo*^9tZf z@f#_T1QP~}4wl>mDJO~1`RpnM?`Oji!-TBch_d0J0@l|(Ks54 zCPiaPW2`8c8wLW;2Y;PWvM7>R?%jx*^3tYL*bW!`S2F{1!${!y(62M9zczD+PvX|< zLprcPj?2!6ueQb#vq;b`E3V5HifdLUjrKyrqA&cc#rH|dSKfQBRu`5ABogw|Bg2kM z3elp7vUuFg2Prrl0B3OwMd&p{aa)tN|u3H*Nc zF}2&_`VFx=cTfCtFr8FL7;L2n=~|%i=1++z^loB^fO&L;WDJJq;D}hEw@p#|Bt>>k zuRJP*DCyNu=I9&}hP=VI?GcGWWwtL@g{P;&#$KoZMtWj=yi!86tSoZ|fW%#Q7y@dp z5E|KAcOMNEmk1&Tk5c7Wg*+m3Y&v}{{6Ns-NYR|8R0(EmRvPd>KNjcPEvMZ`C zMtWv?{_m8F+^M)!jM6WpWW&T@tdXLAa8$*^iNq2?p;yhg-tZau_7jOduC-ICr~2|i(b2N?7Tj94giQPSdg&_ryebOoiig=j$s zxd5bPb_Q<8Pi~SR5-=zM@KX#fm?k1i#nKFz7;uE`5-28M4Z&bSUqCs~J$TcoL6I4a z+mqDsi`uA;6TuZ(Cx-Z;K4(zS9Y6AGpI~BU;XtM(En@sy zr72@{a-@uKuHYaI*sQI*!-Zu#f! zlGfxQ8Wwh@xgsM$L-M1IkpyJ`J&%P(OxKyvLogl^qoA8D)Tqlz9#9O)(6ZK}HKGCQ zb@XPk6l?Z9JwDI2r@8v(_dZgz%((IhoOX-;1;lOf6m{A+YggThI};nR2*tNju5XS$ z)iYb=_qbW^)0EC9*b)NogB(V`87O0p0?yxid&<5ZzN-IFL3L=J?jZDo+j@o+gw21Sb=Q>&+NoJZ(k60X-D8};^+ruwt>q6iugGnOxcE{6n2LRu)C@g{-v z=UpJrB)B)T$ykd3`UOEv)QWqN%sXuCC6E zgn*GDP&S!4k{r*4fQ|y}WYThjmXY^EAyH|(u=1e?Mcid*oP!p2MHI<%7%~-&E|wXB zigsodO);8CNhOi9kcy9Th|~I*a-=rGS#TWwxW4WplhKPDNlX~x83mh1l6E`lpG~{? zotSdE40|8k*gYBdrvAcgOUv~ftD_i4q~^2IV{dvq@lv~w#{EFyl?s!~@VG>z{^HoB z4ihO59{3wb^vf;40ynkWTOc)m7C|_VWdUDWZ$~Y#?hY+bLwZ~wJnVO=IN%klH5E=s2c4c1PZKD&ucO1nKhjQ1L7?X;oZAq?LL z)ZYe74r2?SKX5lQ$U^+Qps#ekaTrPMZRtTe$M>JBGe5=AL-?i-;%U_5ao3ds-Z3;f zA!VvXB-kY9{W6C5)Nk;(t(qu~bI2SBQia2ioQII_rj%O+WaXr4P5WXc94 zvx<6fx_ja~L^Q_n#93Zlnd2$cj@^_V8PQKMNE%83Z(b2RfwK2Ks5X0BCq|VZ-un2(N~d4;NvwTnH+#1AdkPR(q*Ouq zO9>hs*-9(F2-(_8^F7nD42&ilFw{VoqEDt=ZrojjeAWVezZNY+wtP8v{K%CiT`M46 zC@|g$2z+Pr+o#mUGCbbBgq-`#ywU-aL?tk&ru3u+ zz9M28pHIiqrE7aqSp6vQB;JOboVCW^x`Mxww&c@$ek7HFy}HdFT$-7DWp^1ryWKFS z=zrRlzjG!BdiZV7-elbmyV)-KI75c82?eQPKFP1~PhJee!}j+hJgtp~hJp8p88 z*a8k&loXPb?4?lRx=f9rk7R6#XF0TbGY!8WGDsR)g&>rj! zwOgN7U^Vhh^UEN_%*4*bXln1K63Pp1LOaALLuSYY*KKOP)jiKl-0i!ww`gHei<_iE zkI)A&zAr!66m$~|F>-;ptAxScGZK}z6%Gyk2%jXPShvdQZ!9WQ@)GBk=GYjNSlO7y zNNMTX*zd^XHzA9PQXsyv?M({3hgxgMNC{B%+h>AGkUly3i8jIfx#+06Wiqadu#3GU}hwL z)68hrD>7E%A^qKq$d@^?d2!?EB~$8m6f<<5<@Z!*OR7ruL#y@mtbOw99P4X2CesE; zq%a2FRShg#9sS2)*Z1nqsI{E28f*S26b|_usMUsv`q1#xU(+X=34$|Br z*N;L(lL7jn%@BI6)On3oxE}o{(mx+mNh0*!3{C`G$F)V{E*Q=9@Z4o($1?B9=4*Dv ziALfWOr6<*%>nz$CYQOx30kKl?3Rxi+|%v}-pe5%CpI3BjB&L{#(u#o+#yB55$&9` z%=ApORE_{l(nJVY|dUqkV2w+=uGUcj6Y z8DrqX7~{HS9H|F!5(7p3?fE!LU6km%6r~dKE|F+ZR3kd!Dd|agH@*}>qy&zgU1O0# zx5KFFo4a3#nwzX5tt!+i*yy1Z9M8T*96Ju+hLL`?QbBK7*(TrUrsO5yPNopC8-HQy zx~kT^k>XI9-89DVUZ`DtJeK#tcwZi0g_a$e#E->;?<7g@l7eQwzmK={3Ac`uDp~Xa zYs`a|x*&m0JO=m1{UyK#7gt_ui}a&v4`$d|VNx*Cfz>ij*w@czvxU%Cb#xf=*%7fF zsB*4!4@d4dz4wY6QxBh$0Jk0PB;Ktk|2`A6A{}T9(6=FWkQhf9*38bbl{Ew$(O+r^ zlL$;i@jWO{k)~>>CleRbN&83=3hx#%SCxp^7FfZn`K3-MF`ANE^^YN?VM_7FF&_y& zw4$qkVA+ps5H60&1Q+C4a$*9a#Qf5NKLy!R5{dEUNu15$C}Zl*&P=29$aoEOiD%Qp zBD}(`KLtLA!(L*%u;EGSbtt69Tz{Qsys9Fl6{DGUkP|JK zW5+rjKx9*`>nGD`?+KxGsi*hOC^dh_dftCdh3mNS5rdVy~gka9wn!xi}e}L{gy+ z>;)V0F#U|6EL4m>0>x6YUhO5M|Diwxj@7)L8=jot5K-4(C`uotK%6pbeGL3|6kIrH zUd^8;W4XVKwC5IM^3DoZ%35V9?w0N_X3fW zJ2FCa@xd=R1B6JTd7|MM|Gl%dI5=>GYYyXLvdIww@SJ~y_UW8v-yJ;5m`xp*1 zQ5Wu&-`dw2H}6+UH^_1N$*Wl$-|fBT&ys=P`&lMc4!@0Y%wfLr%C(vIhI;Uc$EX)H z9lZteToB0Zxm~o@H!)UB8!6fDdLQGT$i&Kb0yyn|!C-wH)kS%G=cvNrV>eqlh3NiL zI6ELu$#!a&QZpQ>kw$3Y*Gdww6{@|zZha5wIMLJUvVpI}=x#^BZ&Fb72+S$}KFD$k zZpKi#h2dl`*?VlH#e89ZTf$*<8j_iV;E@^&mC2blO!bYR(nfSD>G#=8&znQbiq)q& zr{!aG*8`b&oozSU>T9C;jq)30oQAvaUIoVsS`L3)e{zM0IWz|wx}M4uLtY+mOq%gt zeW^rxF#d@WA6Y1b2pyRm3t!}YV1{k0m+ddu-GzCJ%+pe$LbJ(fVpisb==04DtnDAP zOJ^SrXCrv%Yq7Vklqh|L0l)(67SBr(c%$Z}M1y8wG7y7`jHgkJnTs5L&V(I_-B~9=YuX|JNy^BaLisa1MU4sv z%H6OT#ET#b&zf{+#5p@A-&OLsIlYzUDb0ly-t8a!(nNM>Q*9e*oQ?X{t;}D&&|RQB za_8VZ_dKI9RDYIsn)X{?O!V7^7hk?bz?n)G5=? z(*4U2>r=9tksMAeNmrtiFLMeyGD=QVaqTu8bZ7Kn6;Yc$jbhwLPmGx6kYJ}+ax{t= zqrk4G7ue>{9YOjhD^nHAr(>2&u}kiHxe2C^;O4tc*p{95(x=Sw*|t$J#;ZE5MSEJ2 zR)$rA1HH@a=JHSaHZ+bZ7ae(o&G@v&r@eT2D|r`g&o?Q8UqB>jd?F(KZ(OvGW)9`~p=9wNlzdNKIvsN;EULI@ zOc0NP?FloZPdc5cs~>qx966ULfr>l_?Ot?62k5}3Yw>qeWP3S`zcHteiv zi7(&g(-mY{djz9QQH9E1kumERjVC#&xmm&uPjRcSSel=mDifLs28T223xFK-3MYd) z`S{X+=J!R1GGh;sKuO4GRg+;ifTe(jg&*_+ftU!@;U2wMaa}>yh2W8O7H$?$98hnj zULte0zuvKkEPl4VTP&Gaofe&SUZ*C<{iqV)=;=t{iY&2m%dD!ka(9kPo@vk{*NNhB zp3(4l_A1T|%eFgDLaTl_km|g*0tup6(k0m6trVcAMR1dG!pSz|J{r)>-)YxBtvq28 z&oNu{F0HG?zrGRDbiUuPQA$4(-|`@{>oz`c)iO`;lpZ=$eV+_#FUGkw!}#e=S>9bt@jEY_R?Z*LF}Pr(o&3}^vc6+ ze-kOKXhh!a(jX%t6|@PYbN;U3Za#6acdSIYy)p8$iUsu#q~HR&rQy(1W2>P04ES*N z!Y4cO)tsW*^T26F8{(H*T_Mh}y*6uWg-)xIA5w=jdc1h=WO_j=${RZA1q~zZ(|8N7HbaOd z%E}CYiB?Q?GT6O5w@xq?>=&4CLgHiw$g$4kxAIlgLVsT%-x;rm>N5B+aNXH!H?h!F z$~rClluqf4$Cuz3i_O)uk}>!{0B=B$zr#_F3?Y=s%)rL+RtA%xqn%j#>M)a#*-B5D z!9XK0mr#|Gg}V@SoWZ05qwC*x9gU3g`3g7ST9=uNYnO&Quj3}I>2dJ3C86DJq();X z=*wY2)N=?g%tIoVDQ(IQcMmbmuQy?T>RKxov^expDG?~jW&Q+8pM_q99=UG6p3B;s z1!!oKDTvBq!D3mgC*ezYi)As#-?@?_CybXU>i7AJhGU^lu9Lg?Zf#0(FSpq>s!7Q@ zah?C$rV**leVi?Cd2N>eQrT$9EipbnA#iD?;jm3E)_wLDuM1gGmwaIF&UYER`~`1a zpL$F_SF4~IS6Q}#WBEZo@I=T3%er1y4<1v)}an~^k%XQxAJ`cJXd)}xu zOz%SR>fE_yM}px1#bwINR~r!Ub8JIm7;QMFLdf3D@B&34|pf3Vbbuwhla zp@tWio|gS%s?zL!2}2N=OxO>1h&u0P6JH}?*ma~&h(9Pr;JX8vm-jX{qM`4uZfw7}8y(ODpYK;F=Bd7De z>6b>W^W$0<+^-wsatoUj>38Mg^s{@lJ}3$194&F#N^>988n=AOL)JRhPKQ95o5x*< zY$<7!zgyb!x5h|2Du3(#8~K}XAnXW~v3a(H6PdrclxRzk;=gyh|Fi79x+uQ9`d-fk zT_=pT(ypy|Sa)(+f8)T-7pt@aIxGKiW$l$dn}q~NrAhim@M3lUMV&ksY*`vcbh(R- zelot|*$iprw@Qqq&u5%BsI=`oZRN|?vAW$pjc=H)_p~9Pr0A$|(78Dud@jje9=`SR zHcv+J`!(?kV{e(=_YK;Xd%51s*UEHLZoh#86duvLeH=A!9+5chRVcCY!=#(}JDwQk zPkMKi{Yqv}P{M$nKJ!-h#CrL~sF<3^tjm9NO)9Hb@%t%jRs7UsvsX`P9+>_GFVG8= znToLp-{w6JjC~KBunbn|6MAwR6tGq6pe9J;m}*Zbh$2?1ad@gJ_ij9CqNcs&VcQ2OZctxInj756|6nApPa6%g>zgKOP>+lVhHl)AQl; zAoZ$#8y7rkm^11|=F!KCUP@U{r8my++Sw@ieLua|hD-VMB3EIW?uLch#1@>9H?n@D5AshWAr*&-V{` zvNCy5{3fS9*Z<5oyg_SRqyW5>3>v1e9$wq|A+X0B2vVxD-a4%a!e%E<7tSEEJa zf!96Hce{SuCbLhMu01=C81givWzBm`GN~!!Y*6{H1?4zc^yURzp%qSWg zu`{uVz2@)+zvrq+pJ&>{Z~s!=|IBRTvoRGb^`@yt(_AdKhUV>kWLUpz+qtNn>A}qF z9#(;y7Hum_-?*c2Nvh7B1=HB6M%Fg#WD*O9&New**fQmu;ms!ferF5*@UMA`^OI)C zPdpQM=5gZFwfPsh=B-L6hlbtm+o|aG2kTXCRs%IgpJkVP=4PAa5ZPvvX*f=x>Gtnk zFL(UhES;+${xBL5_$tYBl?d@xb@F1c&5^-HNonL<@7p8at~$T+ z!d#YKLi%-9anN;Uv~?O%I3bGQe74L zI6W&_^^yIc^+=xIv&=JH2lnh`-#ky>w-~>{m-9F1Z9Pz1p?}}!Yp*O?wzx*-_Z$NO7}i>PV$Rjk&r1+8W>S`v$QQH;m8{A8_(tUy;$_%)D!v>(7-3HJ!Y0t@fL2OpcYQy?RxtKTuf6lMT)MI6r&h zZrxiahHcnzZjq1mn9yMdQ@1P*emziqbk4K`mX}scoYu?BW1?Thk%>f%YpMN$)?>@9 z)}M{gGCQ&4b!i#Hyx)0~BeNBympxXPcq&*+t9r)(9ogE@71Czr_gp5oc$7yb=3RQ8 zn!MmdU=*wP!QAZOYSuq`B?V3|-mCN*_%?`gZ z3=Xi^XF2fCF9*A*37n67iC3tIY$TFvo*K(-wOW&RV9=bI#L^N*#TV5sdq(7}&06$! z^^m8>=e&2%3D_ryjL~U+*YjTF;;9MqvwZ5tWOH_z;r#~>zPK+|C*7u)$Tt4->m+30 z+-&2=NcT|U-IVb)q`E}Dn^GpbFg&*>&ZjeIXu1($67Q$T2SGo4KgIpVm%%AL7c+X{ zvo&{2L;H`?E$A7ZziNv7reP)OI#FqANp?o|h1rTIQ%d3J!nslGebtG^8Slnr1va)) z~Sw862gCk-+%geclyk|osUcB z6=Y_pf9ewcNieI}!k7h*^;@5f8C^M9W~{J=)xYQU7ucDeeM+Qx^`VNNC#*R0cu3vU zH#ZBE4d$+SG)431&2y{u@YA1ru4ON<%{T06^X^#ZVr=`NpmRBi=0meu91}BN9eBo; zZ)&@`&O|*jLG&oXgnSgyKAQW;;2l2dt-KjIa`^Z zu8l>MBViZG<40K9IYru8+S%ATS~}X=+gL_B^0+Y(Ha0xFm?(+IBRvzN>jRnBvNvct zI2i3pSa&X!w)n>{yE?pyQUyx`oWlu_YO4C1{&{iF;4eL*z)cLHe}JVnY!m? z7hf*W^(NMrX`J5gH}s8#-K^DlgB^|s=x#MS$GUJko3)uT&K8n$s z;cC@7h~D>TVosq=)6N~%fg!`B%GGC|(Tm!XqEL5pTo>i8OMKSa-5Ze8TI}rErxK1I*nSgu5|k7C1y!4PHcHv;iGvzG9YVLu#Vr{rDX|65=~FNGc`EV z%vmpA{^Fv1!J>zwR>tKN+22awe3^Qq_4wX=d)Y58YDbrmW|pO90&`C!TZ@t2l_l#Ux*sp=Pb z)v)DLj}u(^x7M!FWe!QfTMC1cN2$ej4%{ANpvgVgqrOWM~DyjgT^n(oWYQFy=Iow8DPTpMcS)_t&6 z_4GetPx!C3zHc(iW%%W1cHZ;#4$fB?o9)_i;!*bqD?(Q_7iO5_rx_^&Th*|hH$ z1RA*@(9nW_=G?~T9|SC2tIf9)H)ON=+UahRBy{acRaRCYTFs78@L+R^V$r>jOb~T7KL|?-@3|wMdQffSF4u?ZI|nIeCwU{ z7F)*2ZoRc6^jx?OvoU7u6Pp2DRIM8}$^>58;k{?r?Gsk?)QuxwRVKXZ9#*9B+IN4A zWAvuPXkPl7!YF0SYwio*)jg0_yb+dB=5OAhc&Lz_c4(1H%f~v4AuNNwA!fzn1U0JN z_xKOL-Q4UoKj+T)?c;Mh-El3SJ?zPhep7T_7FmZrn&)h}#dh$?J+5DDuI-?^lyBd< zz;V*mm6_e%1cb~taCxuw#7U=nx8ek`DSzP27mLlY_m0MC&p$z zo*9`wV!QQ}TZ2}F9ZoYdd(oV5+$^tKp1VW8qqS4LXPl7jbMktbm$h*5+r)S2oWb4L z!@?IAxc0N1a(CNw%?GOjUN6~p(6=yt>D8K>(`UCoZfZsgVq*tSjJ~db9WF+H@tj}c zQPg+OvBZ}-fn|3Zcb?ZiHD*BV)3v9$SBz)a5ko}F99oHpeuaGtd*}N9)*DSUZ_%tp zleK*%8bR2Ou(6>QyWwJs-2ftx2oPKBJb&%U&|kzC5?QNB@*GB1K9RME$eQ2YNmg_s zD~E7vgQMXZwm(~2qm!ai(2>O@Le_8#tkH7$B`UR13zm5x z2&-74ah7l3z}pH7CS29&t^2Bn z=d1yjw|yR6=PGSwzWlLEr?Tt2^wJhNJ#36V>+O<0&iEC3;+lEFoH?&6yU={Q9-GNJ zP`aL}u)KNXhmlr`3%j~?9X;4T%0MU1pZQw6Btj{7ab`Hw}*4Xgz#>((>ZaRXhEibfw<7daewl3Vo~&h=2A47OljY0H z+S&getW#ReNc`Wa`wS@rJl=smsjA2y|?>pXkvuq;EXck9g^#v@Z7 zZ~gFTR+D_@(>Uj?pNM8gpSji5sR>c@U9PMQ3Fvn?bC6L{x{8hAxE2q&a<`A`&X*25 zS~Pw6pfMogGT6V9QwL_M9rPuHQhd>Qd} zo}WfG?AJ_bDlL3BE85rHe%tdryE)HG8DClySJi(ekjP-kAN&VDqdO;I;`<~!_ z{CbypEplElRx1)#(Jgmb+eRI~{eDWywQ0WTTW-&+b1k?z^z2yIX8rI-w4S3oX`IvE z^Xyoj%8PzO_wh$)pO`%BzGX~x!lR8*Ypob}!%aVL>*rT7M)A*+(}XXln|K#K%zN1~ zJFSnk=B(FeiP-~3xZiUg++FZwmt0D%TwPH%+n>m0`?Pm1osM&}**v7OhR9}wwq1?OW_6`zA?^R{)i?p) zT5&)(+gw|F9{C+S8=gqCBSm7uKf<&N(OJY)??+EWMeKg|aAv)p;=wePncX?hKC$!P ze3%@!XtXexb)!rU%bxnNdBVuv-A0@|ULSF6>>k$`i=ofegG?D*1CLHRi}fzbvgb~S zAVSLtZ{-)^)29S`DctJ2*HLDNXVt<@H&ci~U9wAj6fZx0z=^k}g5-oN(s{pgBP{3u6uVfuwn2alZf9yVNK1gn|E^Ytb8jhE(P~DGrMqdBtVXyrH))7HFOL zPrqH)eyvDeClZ!~y`_!qf9u@Qq|21;Cn2L0+qsPyCM{S_acs#)rmHHPl8vZTl`X-CtV^KZC^ zE-@dj|MFo_f;O?^*vXi)qpIIDJWsDUy>69B-TQ;hqk{*@SoF{KR{gjyX!iNn;i@yo zo_BZmSbjfDvo-Afa82IQ&LO>pEuO41TMth@HTk8(#363FFPCNXnm+*B>Zq*w#yTU5 ze`o!!(T`4F{PWy6EU7o)-Px$erDl5BlDts!gS$U7YLi#n^fLWCaI5u~-Su;A4@8bA zxHrhX@x{euG4p1(j*6UIb+VWI{4Nijo@w_Q6SZ=@VZ!khCB;2HOrE%8)V%aH30G@Z zyx05Wcze<7Q)O~Xa!V^#>1<(m=Iq^-x!lN+v&*DD`q|sphbKjankbL6avC(Yc+3W= znaVRX_D8H$sVumygBU?R8xYS4{;_kLU{iKQ)wODlnSGsgz z_qTk%^e6Au_1yUOfnZX^=%lpuS(R&LH#r@6cB=Ar_D;bCz1MrE;`*5%JI&}C?6iI8 z-7|^c1+^w%j~~vfA89eya&SR{^U2l?-1Ga zqhjv?)_fjNGfTr1{&aQCx2w;;o6^Pqc*S1wk5}yf5B%}U-&*{Cx=tP4dtsHV>CWU? zQ(N_h^t^K9aYID%82W{o&|^n!(mBXZlAiHYx8`(sRt2*bQT*-M+Q;Ttlao zg-$jn*CdVVbVDn3(fSP;p_{7j&Aocge?^+dhTDWw%%l0~*PBfn^N&vo_5NVFZ`2ri zRogn%3H6Ak*s7#dd(!J{mrnO9ryaQ8C+3#a!7E3)NG>iNEnENL;)2c}I(y{Tt3?Zd zgC)WJZ!IoAi2d!O{GWX#MjpQ1J%wXhB=uzP%})!upX+&ZW##21b9XTAp4l>G#K!K$ zukY@P46&9wx;@Wzk3qNaA*n_e{pMGDjJvaHo}ER>V7lV*+*3<#?4Nq2E^4QC|BBc= zd;YVV+FkOcXMYIE|8hP|J0VSKaN`yEtvVa!)!z1#4Lq(rdg*z?I+NU+9u7@>%RBM$ zd48>${VK`=?MpTuyPuj|8!@ECqf=M<6{(Ej=hk>>Z5-siFzZN@=Q=j?x|ZXLp9~#)rHrd`_*6XK_SKuzC&elcQ^fV%yHiEjtepvLsdwWo9B8Lv) z>kEClIySkGh@VjM^y$ki#x-7X!~KWXr@D~$=UInJvknkhd;gV#3h@S?W5bP=bcKdhKPF~xaXkKpM_mmZ(qkzaPp@zL2u zpBis7lCRg#zNj<)!uTfUf(v1n>knT`lM6eK-B%BMr`KJls*cC*e748dvdJu7>%=`5 zqhl@<_M2ZK_hq|E%rqu@$l3=to~cKkw^4bM)Ux;vRdu7%p9Ln)LlCI3x4WesmrBJQ+#JXVB7pzHZ8AQ zam2OO7grYzOh5TRI{xYI;{4J3f;3$pU5Zry{IaY>>LPz{TmZHS-jPIURF_cWwin%XO?pm{aR{4iTyZX4L?0ehq@ve22 zBTJrRsh3c~5eq<5;AUMVvXJ&XkyXx6>uB~8Sxbqm%+g8!7ds0rwzD7N0q0j-O4+Th zHGRh&k5t=#UT7f{wB-e?EHG^$%x1-vMREgGyI_oVQ}}XC0Y)Ip<;?EU$mH zZOby90PEsIcVevw-R9|)`{&PDu70w=+pwz*^B#RDTChB(6h9fTVp=S#e*MhL50unB zcJ+vwNqc=De`&AfYx_FKG{3)(Ej{VpS|Go7^%kp6$LXP63cJ+Zf7W@-+>mEERR=s% zBDL+6xle26n15NNTCA12Y{wz*f)%l$nYm2gyo9~|S1#XOGp~Ny=)3uvcmEtXeALF> zeq}+!TsQW8t(P>3kOb> zdbnZ#i#Jc#UJke(zU$7@PD$N9-E4KHw9{>OVa%E;OZe?^dH!o9pb97~GE>>Y|b!Aj_aBO8RWNd8hJPABh?bmn4 zzKbkb$C5SU&M>yJ?^zO}L=1+k!x(!DLn0LwSu0CIC8VN|BxNh2MVl?9g-BGE^gT0L zw7mcK{eR#0{@(BZ`+ZmU+~+*&dCqg5bIx<_ovfTvAvy?x=)wK@GX&K@i^kHKRL6!(Qs91Z>>1)3OkR*x?0YeZwK$sWvb|?UV`bHQxEsb2H8-l(+X+(j1 zPeTNlm)mR?#qO27?u?9Lr|&?c)Bf;F(n5fQBoF8dZGc9I5!{?V)&tpkXcEDn=&{%hm1bIB z%YUh7@H3fi3X4xOS`!Ay1`H|<2xs}J9$9XYwSRUQ*sV1{KnPlzN=uk38b+(YDi}>_ z4g=&5pa!5#Y6k=z2hU+@+Kx=}3G@!3)<|SnTuZ49cFt(6sWkwQku50Q>!gp`p~SPW5+ zT+n$WH9r|~2jtArN^2os0QnG9h^0Y(Bo$WD(rq-@O{+6bgU=8i0PX{6>KHz>k*GXj zfwqBhmjTEKtpJb}lBcCHG^hz6H>6L4<}|pT1~<_lo(6qrFqj4-0px>X0ThDJU|#J2 z@+>^z7nv7~P)>SY7?$M6lihV)p1QJ|$5;s=cL2Tb?} zOzsB^_XB3|1Ger5%=rrjE(g4SD8W87$e-YbS&CqnA}UJ})ujk-DWbL%QD2H^Kx?ds zo}vB(9Vj5ggGloCafj?8L&$^x^!Hkjenmb@GT036p=1JNL~sxF z_Qt#W6Tattt!?i^{#~|-k3YeIKnn382L4)T9_U3R1>nh`5bytowTuWM9weV2@*fm> z;Y0n&`u;xnkng3mi5UA60tkU*YkUAFPT zHQ&ew?;S`CA^UiQe5<-R7BunKurRf0_Y;oBglk6>N0+7Zb$G4 zB?0w$ed?^1J#-(IoB0LSNp9M8 zLc>%na5}i-;BovKsAiUMPvq7>`?Gf*aBH5pe%yv*!sF5%@&eZ%@IEclSJ4t>cyPH} zQKOw1@x{7|QK_*<@;j37LDs}T;|LD|O?K_Kl8E6U2vBd)sM1pvK0naDzwSUt2m$d~ z`FN0sAw(}S%8*D3B9dr=3PIusNa$P9)iWrxwXr?Q1b8=ua3aYMf>aTZ^3_t*Z(E~L zC?MV_np}pUNQ4lulmt&Sutx}pT@|f{#;V~kI5eyVEbCDO6qC6$52a@i>f=u~h}1%P z`s3Y|jEo%Y);XG6>zf+GI89JW!UuY6)dJo66YwDfWh@$l(z7FZ7y{|gLTx3JgF>{F zmA!q)TSMK^9>f4;Pa-*xKvo8Nh~O2WOePTs$|^A49SrB?;jXHJQ^n!1?w+a|niw^V zCLVV8^whu*V1m1+yBDzAG?Ok2_(WyExA}kFGJv&w2#D>AtWq@=J=n^G#atT_bqD>nx(DZ>JoaU3M{I9j77JV{9N&!Y>CinQ|A{|%)kJbT9d`8f8_uJX4p#5g z&t9DOBRkQxHa)d>HZKv=YrS%R4aNRZyQP>=L#O+63RNDy`kPeg5CL=JmIpT*RmhF( zT*ZgAp4`tctwDC)3`_1FrHYQRmb1RID|OP&Dw@tA&Wn6>cJ~Q%Cc67N1H}0k$#SOo zK4{n(FkV&t*K%}_=T|r8KjN}i_?`~@>W}~Ca#L7}xq>ZWvDNxeR= z1buM-wv+$A{(%cYTMWTpT>V9l9{x=}^`f2~HtK;h(h^s2ie42!2jF440%#1`f|NP% z$gBZw4xq{6sSB#7A77yM!w4)3BXr37YkS=B z>%P?W`7)ocyb1ho&C4DV0)5)hDE0*99-!U7UiUMAJ~XIf4BDc==%g>T!)f#LqwX$5 z)-QejymEiEZYW3(oR&gqb0ULOB#;0UjaodAawQ;5Mzr0#4sxXJSAED7Py&PYnqS&3 z?k*3&ORX=Qq|O*mxQH34uY0$^lXnmUdOpovQH;_SRYJ$Eo?6@aON8wcoc2R*4m z8h~yLsD%MfJZMAB^#r*X&cKgFfu4| z(jkQyAlQgdrFJ z3E?z~=r+(Z@*+3bVR+$XRD_wA)e#@E6&#Ss#6S!;%t_5;;$^ZWcm@yyJuzai2sMY5 z_xDFVj07xBEvMrZ{9bMkPU1>-WPCsn%EnM178BsWsKJ`BIz}C*p{nKtP>m%h9DDX} zp^P17rIxet(&?`=#K^)c7csFwL!Y3n1QN=~&KPBEXRT$TW@4g*HPTmCGB8lbVOGLY zixU$0?S#G@)?f-kaw&rm3=ka!!3E?2!HT3H5YVFoH>K{VA9qXWvu`&SeKLG~qTFEH z1~yZx;G2gokGrr7o1y#Uae2e5JMi4LDq3uO7n>v3A5Il}aHhUPSvWZKdJQWJd_7js zg{6L{w449yv$at^%&D%Tu@|$>#a}V=ENohHVgHJ?Gf!oMQGu5d$}Zh`Yp$%dH+PGA zwpRxJ?wn4|WW%Y0MP4##?WTBHDeJD_X!4O`15?L_=Q*Emmu+4#XlfMA7xF%*?VyXz z-Gf4()^DIh^C#vuuNAm>Z^%u+j$;m6f9SQwk-BMR*8HPwcFWF~;o}a;K0eR9BL9Hd zOr+tv?h^`9n|+1q;{&}$m<|dvY|)6dRFVTW47MNx0}}#4Zwar3&A#F=GGWb^0m8$>e>VVu^e=iQ!@N{_SJG2O@Jp9; z%s=f%I;xZ~#Tu@fu)otbcGB?1;6B#u)!6(ED1+r3^U-fM?=S4qYRkj@Qa<0Ic{QtoEAasKX?VuL~(>1OY~bv@Yc zq8!a%)ktbOBjB=${h?7B?_;4?^E(dp)*(t=`VX1!Sx;`u`|#f69Qx^Ny{v=!4QZU$ zSL`#9j#zg3)iR+7ee=YXA5)qhJ#YQQ+UGO7CkXFm%aF2HC4Qg5wv(j!T=u)ZD$qkX zt8}A#g?-SyhQn5ur!&r8#jaT=Kf;q@dc9|G&kOiretPE6*_8(wLa$v&n`K-xgVvEA zI?yM1Jd=4j(`pN##m0aZyZc>>AtJY-9j$E#+wM_MNr=dwwOHieqAR3eiN#GXw6xrl zfU@)P4g|e^(_`we1_pzLF&GSPQICB`;n=vpg*FbDZBcX4TdlLP{aT&w532vEVk(he zxWnD@c?0XwEQroF<#9#B%&Cv-7o7LnUzNROsd)JHqgavl1jWd<&>c12aWV<@_mo9+ zZfrc6LQJ1?nlHXC+}QNOQoveLyLz*O^UnKD(@K|WPp~vFZhMotpf>~8_$}xW$yGJ? zG|XGOb~7ns`Y+U37j_-3c8_)l3SH;jz|c{6<}!5fs<2Hyel<6Qs7&aRf2TLi^`MZ; z@stNk$>UPr5mUqB%Y4_gWskpbuubgTl$8&~tL1cQb}MiwKc^pR;60oeSGrzZP(NvC zX4jGZ1R-rY&yMCkn;@4-wq2zumBuf^KgS(msU;0OcVJGxs2InSgqa`NND{4|iIe)O znDBrjF2CETbW60=$Kf6OL_D@ZCp$u*wLOyo8YgeY!nV}nW%NK59XExIe_kI|7)wPN zconf&O$}H@5rcR4(j?%#lspKYu#zg4pr(XZ!+9!sYO3I1O`N6|0Ve#Q0o#|oXzM=5 zzY)=@j#lC4zi64wDh@j=YQS|c(1CeC2PPQ*TN)4uGZ1AU#jdc1k_tu%$Sh3Lflf zi$yu7AauiZw}i+#&KAQXcSz;Q{lSu-_6*DpDD}He_Jw=)KdfMcSWcOw7EUk3CagN7 z7JhD2mfW$ewqHpH}|XVO!kQt`<<=BNmpU5r=}O`F1-$w7V0ccY1xy4f#6 z1BTmq9Yy3fX}DfCK6N6yZASj+O^wcrEew}d&0SmBu$7~qE80LP{YFZ?lV2*^`q}%{ zBPnOAROCYFoOc$QP;$#IsD+2^hA9knK;a!{Di|ylqp5-g+6?;z#Zu9KQqlgI3Oh^M){p0={sS5zNq5u9Vn^zhTl z{v)A@ohL(#cHWPD^satV?RcxR@#FF`?E$&18A8QHq!5R<0%^maaA~Bxdtt6(;l^>h zH2AwhHZxrEw%u2B)<^l_3buuVWci^mW&0<~;Y}aA_ql&+Z*?`n*j$w59oB<8N%Gus zk~h??wezsrsWef?IG zP_>mP7d<_Yzyz3wk>$%NgbzW_K`5QYbX#45A)Z)M*Q*4t z_*Q8-lAc|R6|$qnAq*k?A9NY#X^NYkgKWmLmAvx`gRFMxn}(0WHjBE<90uw$&oECv zLHDogvTwyCAlg(FMAKsSOSG67YyulC(PA3^jweUmFoui0{;I!_2xyb0&Q2MV^4CPY zO6+;x*PP0MCFUPqyM~Tgu2#BlSjM){{!$53DAlpeCNoCD<+Qf4<)wlWhuo(@wKeBH zMxHk(eb9NOzq4(SUBIWkC>NzP%Vu-U;il5lwcT|=BPARKbVUvWHG3=^C({jb-@Y4v z^E5$Rbxn;!_Jp0(E`{S1kwZgiOrn!R)*tugx4qykI$+%*+?_&7R|pQs5&9@HVRz5F zL-Mn;=*@z?^|EIpJsgY**590YS-8>RNe)XFZxOnB|dSA!ww%jS^p5dwbB~MOVaOLFZN+zw47jqUQURE|;kqiM-+F6M|fx z;5JL#%DlnyW*6t)bpf2b*4o?T&2mY%-}$#Sjs_Jv9(3HEwl7cEjLzvpXQ4MMxkznH zNm-!fIZ2&oidebEn=)g2cApAAL5y?H6Yf6GDdH`YJ3Rs~Bd^h)>zP~CFTUsKY1TPj zS-rC1nZeSXCbdj%rUW-V>k5NW>#?e^$X-@emH?3$jQ9|z{gY?;bI(k<%RDnb+wh~e zH84m-4W;YL`ZOI%NpIcPnxZ5;XRVjADZBMV&{~@7&F$jbmStoZwd^(1UHf!C^E6?DgJ&|GVVQ@J-;3z_(Ih6W z51jOw6G#WD9!V5^HDXZ@Wv0tnD97T*Hbg8SvPEr}cR}2+$yjxtlu7M1 zCHrILViEe7@Q$4R)p3XN@yPR{9F_AQa?T=dNm|%{o?&RZieme!y-xv-6#pyj{o9l9 z589i1srCjr5FDGisC;8n;n;n@SHJll$MJu=cv83{%lPxx<`tD$hHRW-;zbkwW3>KX zI=cg2b7$;na;7sWuMv5gdN|Lb*ByvkL>fk8`Jna zZIV%W7v0MP3eu86bMNPeBeKvOADD)M>IAKi?Du0OrPt(Z=6WkNujhQ_?ySq7nT*mM zViLm6bYRwoVYC%VY%Q;Xv_J1+wXsS`d1Pi+LdSZC7e|89{7-9I-gzI{a8fYJU4FbE zM_!dNT*$puTP#4FGQoCZRc)tX)w7w=?dP8!FCpV`sL_-dxQP%!KrLT5Uei;5-U_S4OhLfffJj73Xu>NNk`q#JYm1^~> zKO(xD#}lcoRK6*tW?16c`HD7=a}o9ocl6OVr_(BmB2HE19S#+GaBw$osH8HsggG#8 z^WK#WdE@bI68Bz$xIO7&Z{xfIuX6Ifj;r!lN<)gaj z4g7wsyoH}I6uCHI{BuNRI(ZX>SWU=H50DQsEP2Cx0tzW}6b9Uf5ts6L#teIB$6j&#&+1@`Yjq z|7ctOWHRU}2*}2xqigr6w7d(tt7ZANALJ@CDQwxm96i>T?0@HC-02cKBXs*lKRx+t zF>$XOk2Z(uz96`D4Wv8Iu!QOFFfGZ!yIy>xViKnPPKMiU=kds0tQM;4OV?bP57i-N z_??hU?Ru-CKh_iAWt=UVyXB-LabUKoYBhTuI_+68(O3FBM|+Dq*NIn2z0LMYhi9#V z`uqsiEO)9`wb!V5D7V+VY>wBuN>%kW-6&@4wuLr;_p7c@M(5)hJo>NgJ!TAv(@mJsAvMu6)dM1bYw%i?kOJj3y#;=H?l8 zCH87;8Y;e{b#dy&vIVr4M$c1)@#2ZNEju`O!_FHgsZ9}|s&W+p`vLAc0#ar?0$J^%I_s?<@)kNRpye|bs zk5REUFF(`d=i1U$WdkJb_*;Zq4whLIZt*`>s3>YgcWJm6{HZPp_tH?9{I}5eKMn6D z?x~S(VoJ%5iR7D?ahoS4u9}@H%t$(dCbC$1hXGiHI!8!xB8 zS?uj$tsg?t`NMA~*QVWI-h~3JYp8;`OJo)hjLOtU0w2g zKuKFDGX0NVcKz0uB?g7ieC4HqSgQQGQh^ezt^{k)oMrqHXL$o`2d`h^EF1sn0Kdd~ ze;tAhJcqAm86*t-w4G@#Gb6wFBgd;YEmG?W)<@hQ`}pZ*{oN~XXM`Qb>{@(G8SY+d zA03*{+MMpXOhfJpgE8+wc4T6m*QrOfuaO(1s^rtqI&tgj(i<_>G9%0qmL8vS5Aj*4oOf_rcYp0gjs2g|PbyuH8~U|IbXL~-rNsH~ zCY^j$G!TH9`s$rxY6x(mXwAyqw_C3Uqn3ic5==*X2zc&JLw8w3R4tJVQ~K%J>g94rs;mVpLKt1;@_fNu`s-- zT;>1D8TPvwz`(!|U}2o*Vw^>dhGJkU`j49_3i4NjfTS7(BrphI&z+i>C2@J+<{+d%!y_=Y0MtlS=~{o~HvnaSswP7r>eQ@PjWMbf%> zp~-yZO~a|HmCmSaY_8T>!1h$pX;+>tKd7;z`$){HX={fA61bI3nt`4>?JnhVm93D9 zZ=bqEm$2`H>qM7r!``&rbypS>S**Lsuis*liMl-+Z5CH=NH`tGEYbZpzU z-LY*u>DabyyW_0bwr$(Coj1=u_j%7b_ny7?x&M5tGHd>7q%zi68kzN3Hzn%7pGNK| zaogs^q!MPjZPpe~T?Ai1vt-1vvLFzGjuFm(#gwc`8>|dt;|W`3H8X-i&0g8$ZFyFG zev5~w%o&JSI;wUzKp{N1>2I?m4Qq5C+QA|L8ENuoq~`SX-_3A!$xfB6mAE z#Q<|gC)P5kw&+kWES8l1gnOa~s<%b14A*dLnBYi!3PuhE@)RjAf>D`E-Fr51f?bnX zd!=4u0)^Tc-4u-I(CFI4$n%Cj{KQAPm%uUyq!N;w;?o1ZM(-I_VLK=~e4D8g^C38? z)7W)Gw;WxST~WXf{+fWOvhJ<`Nxx4gwhL6!tX55{Uajd{TJB+~x<@cDxmqL;_{{ZY zz;cfe=L+Lt0gjULH-PmpKuCj$iu8Bvgb5bBDt$|}yeD!C@JW6Cu_YFZ!-s!VzV}V_ zQUgp>RS7B_LF>k}lJZzxBMgTHa+Hd8S`sX8dd#Q!fGL_2Y zOjoCeZo-bf`vFYms_q(oPRb%f-iPuT{%6Ci^@KX+7*$Ovs~H1bE??Q0*_@*rb=PVw zKusEsgyo5gZ>x)8dSwIpB zXR|bJ1>>d7!-?maS!0Ycdw&1+3ax$rFv;rFn>L!dSFwP+|ziqDlE& zCgm~P#Y{?e$}ZZOuBEX@{~u;j3r6#Z)XkzHgUI{u-#f}1@Y}HDSXk+iI;>K9oWoJL zL_dq57jd(`Cu33H>SF@rPAb3qBHy8LP+WhW>n7dIZ21v!i;s8s!AdXObbHGp>Qtx& zRX{SuV4QHOqZ-?=c!dSm?pi}wloNY#5qBxr4NQ72ZeJgC^S4)}HL)@@4-lTCq#e`@ zLbwBCMH^9AB@N7R$@40!%h4u$__i(U80f~M9a65b4@0`!ikJuhsY8LJPBWfg(k^y1 z>!s|<6f!1fs~w5a@g#bUM1XC^crZ4q@8&e+B}V1GDvq6zR6xryi{6_cCaYHroi$%E6e;UyusrYAIJ}WkbxO;0=LGCaass&} zzDv+*P?Th_KT};>GVT8M7$dp`O-Yd1W)3EA8`w;d5DD&*b+N^Ry%p&4Q$a8c#fNw3 z1f?PiVUDoSL5;`c%NF4y1KJqz10u&G)M<&@>=O@ulIqK41x>EoG`ugOds?p@fIwhi zB^)X!w}FhdaTEm}y!qitl&6rLc|}UYr;S&#xufvw*2RdS{BT(=%( zUT#pHmw#|Sb#93w(#AuhECsLxtvtnx2>i6r$p;mi0>y|NYKKKMikU+etAU$SkxUxy za@MOAJf+|=Gi!roX+Oo{L7~Z0sop$?c33*;)0yEh{mx4d|8Z`ks>`EwZ*Mw<9$`hJ zRp|9Y(Ai_T8B))STEMixlf}BG32O%39Kd-wM?1qmV2_pbyZ1C@8?lHVb~b%Xg#M}anvW==>V5d zd5x(*SxYS(SCFf=y$4a-UpI2N_l10GUl&$aOabYan$rE&9#dRtu;Q5{RR`5z+e-TE{DpRvh@2Hou{p=2NN(Sv#MaYx!*GeCxEguO&We~F%)1^ z4ef%iQSU=@R$gW(ZeHY5GNd9mKlo59R&*27m1ChxxX8L~SU(MvKU&JcO#`vSC27vG z3#&M=8O3|72g=;}^9@#+8}V9_sc1J{S#*k*x0*i?inJ$NTN}9+T)dy1cHD~Hsy6^L z2&CmvE`YjYg(m&{Jwi>T%GhfEs<$~8g7|&iznL-j7Ngx%VKH14mK3X!m%<@v1Fz!1 zLozBK^yF>CBr6ZM5W~sELVXxHaKQnJ@+Z%5Q!r)dCqjpdn!6Kik*SlU{o?pe#r3%@ zqJOEs+KbjuYTVe@t2&E*-%F#v?B~y*<0t%b*dMbYsJIei(w;|z=UuPxy%Gki;cC+6 z3sKtEmjxMw>qwa;%Yks=sfg0@Rf}A$&w7x9L1o43_@$}YCKT-}tbhCtVzWDPEodpP zbN1`*1)9@FW<-J~Q81C}oGPXoF+@}3hG;YoKpyAfs!`r?rf1dM69TP86RbJB52~lr zpwhQqpV!ARvtI7lSvD^GD?LtJte6Lo%_FUW(+AM3m2+r#w??6QmYdc$zQ*f$QvF2`ieAn zw5ONb{WRVTHqDx1`|HBObxL12tO2mp6stB|nG&#NCzvN@1N&NtI(oB9{`7G7tIY9^D$k}t_{D$tsT zWw$)N7Pc%|Gw+6DE1ksAYy@>fl}?zUDV75z4*HWXr9Jhi@VH~t#;)^hpEH+Va4}G; zymar2vsGv@zBv-3-F6yje*C%27I^l45QADxu529_*0G4SMELUR*qte7#Q|+l|3HER}PdjD=d=?j-kB{Ocq5a?hv~ z)|HfiA#;?^6}dsz(i zH(JjMULtiTT^pOemlwr9$6<_*eyiAttVK+0jJyZt%&YIYxTFUaT%P6z2|hdPBUvUw zJBE}p4WlqG(-_fY?z@TcP;KdBclMZAT1_hzm#~)LkUd{-kabVn3oP3OKFemWg0049 zrcgk90|S#lYuLO(Ox_Sm5gwL7XLk=4ERMQVSzv&pF&^5g0n1&2`EJE+6_*2l1Aqwn_ z$K!q)Iuv&^t#dPv0mn~68a&4fNEi7xaFUn#^vhhMI@8z1IjMD^?$AdmE^@;Q<3*Q-?gCHm&dsd+kuVjf}~$f&V8)7@hUH~HC$iF@df%@ zLeu3a%(|@6b>^R*+XW5mo#-oAgC9?|IZW8cIgU;=rjLdW03~d@+HGG7n8OtvR zgQ%9=u8;}T+hQnx|Tz} zO(V};*LGzzTrE%Tcb`Cik0|`l^zvWy@D~egU~OllXJf-a^KV#Wl>eM+uy@e2GSss( z{C}##0>oQ7EE91Y-+{!*T#nJ zpG--#gZ)C3SY+);7Y_bKHsc=>^3%dcRxsbc7!SgaAnZGTtl3W>+%OP(k`!2!jl1JAI=gr4g?==&X!wmMrH!n_3dt*k-+aCdwT}Nm^^i$Jw z0ebFq!`YkVtjqq7T-FE(*)bDRhy??oKZe(S^NEX>q+k;7g)zuC zfs<=qYIm>g&7tMghlS~LhQROn>v7w1G%VcPyV$RRscKXpNb8~jVv~;|YGk`XzGPwr z$FzVinV8d{0O8$53rj2cm2D>BZL`sSH1vgXw699rhMrFn5QGMmK8>6iPA8eV#}3t- z;gu(&{?SA|2jF!ja*mHH@9&|a=V&|yTSTVWe%A`=UdVNjV**`+6Nw0n`l-h0e8+1Z zOGnPE-jlc|*&p`OJ#p)vCY2gz&pHwqYAN(*tply_Ds#Oc;-KR5lvikcd)?FlR3R~E zM9~N^QeaM?C8Cyy0)QxRoDw#{@Jv8&ac3GRemI(&4q@qmnn+kv)-PaR6O}(cLSI`) z9JGN5Z(GoNSO}=c)*G}ZVV0xfh!kTJN61dl`Cc`JD$*j|D6(0yQ-PDzw zRboJqe1Cay&$H(w@}B0aF_Aa3U(B)U>rFx?C;xNW#k1{%rq7q#I7rliaS?w6HePjPpkQ8AvN8B6dG`VczYqdYro_eB>wPn)G;Nk$6| z6c@7NOTlGQ#RFB&`UxN3 z3jRYYE>Wc@Psj<&6e8x&zcVPdV^+#48evrg$n;<5kNhan<5;A{ zEyjZ5G|9y<#~tLua)<=Vc#|Xu@G3r1(1S=|;|6kZvO@C{6CC2AhQ|een-`})g!> z3(dGuj2JpZ8|!1o3aWF^5zPoYB!e2r)g9Pzp}cB&GP2|=jXP59)86UOP19;fUF&t4 z&SK+!h$Ka;<(aZQgeC@$s6}vLgfoNTia?GpkEQvHlomtn#5vy)B~7IHeW{d$T$#-A z!oUE8%kCM0-43-dqqIM%(-zIK?6BKRjr)wNd9N#2xAYwWg;O)iVH$c6)RyMx{Y*kJ z5Y;X#6zHby5q05(M8ui-08z0}VMasX^Qw_zlZ%+`vcO~9_6}wLKH0iVkOV6_&3ZwTX6|Fm_KZT1#2={S zU+6UL`CktBR~G_R|2{akV333kI*p#ZCeQTiu+1@TuaOT_@^=PJg8U{j1_HyTpZQI7 zdV<3?p-I~W2|F{f@RYs8(m@h_P{}{gX$10{9Q2@Kx8q3q3rG!$p-^L?P^*!WyCa~` zX?hKt42NxoS#WZ z=K%!yaA>o#IE0B+Qk-2XXF>k>n7{mtz=0U~aEhatc$ndOY@Bk9Swa3`8LNC;DHil6 z$#|SXa-8;1s;F4^O@sW5m#Z~7z@I-Qp-vWGPF!AP%rsWhbQTG+Aip5&Hb37o?6x4k zHViU9UnC5&fGBB(fEF`O&?LnTP|zmFO;A?G z#N8<=i;JOCl;-D`Qj``Db(~<3o5r4~lZOHtq{YQmG&Ttwi@4=i@rc_MR>_FTYgom^ zESJ*@@+;1$mC<5CB3 z$jP+~Dia*E4YCsqhnH!IrS`F6;CYi}VDrJDa-?<@O|@U0^VE3y^6ELWhWTk4aKQ6+*=Kt3 z{ApZw@Or-)z3h?v2^bnT*v*cljh?Ul;2FUJg*GM1t8SJS2vN|O{*schdFSKZnVh|* z#RbNQoo`iGm>e8YymiF{-r?>BADHf3Esy?^lEapo{*sc(W=kx}0q9E5jEDF5!d614D`{(HG|K56#hyxee~1E2+* z0+}91m}i+&p#V(jMZw6rCUn)gh+tFu7$MQ=DDpCG`H+#L9vyY#BC%KfSdgOjnH@dZd)F5rHwlAhO=*rkKHpBF{0`7J(91 zCt&}$?AJa=rWqG}Yru%m5;Qi4CA@MDqiSj$dKnky=)!Q$3A`5MZi;uqDRR@ z!I!hVo>>B0c;XNE>YL2@t1slQKKYUlpAz0bCn*@n@f7O-J36HUStEF*B>8>dlD?$` zZlxB5ech6=oDqT&s)7+P#ZZ94gW|DtqCbEkm?FHmCV>K1mbj4bAE+`+;Rsd;-g*D+9hA^6&AC8|l z;T)?i!R4Fik&90D2#V4MM+$xk%1mE^vg_9m$aw8sEWpS6)oP-&(Z~etTn%u?$WtCn zg8OFqDqRbN?La%$VKoCd`6_)6`0WJhsgkm;NXO^03)fw4`g*ERBcSX{4osyIRlBO} z4^X|=EKSfG&@$bJ+Ywm9tD-mKyRr^vJ=CUgkI{4H)^q3SSN(JD>}py+&PB9}l34et zPRdDB3(AW*Nu$NI$teBGLJTn+wZ)GU`6{8@jK1*YLqx?^in>z%zarNO)Y0n;U+#{A zcCx54@W;md!j~C?TS%a*7Qeaw9lsu^PS#RyW`FQXUHz93^s-aMbf_Q}k_3AZLESmx z|2*<9gSEZS@rL5F{-Qv;7y~}&gPaV0vwp>v0o1#}e?dUor2cqIc5fh^N&Ouavq&$4 zP;X;hlm8hJC%89Mf8J#HJ~MpTO#XO}{G#!1GMeH&{4BCEobbv3ja;V zt5z7V#T@SnfzJegZ}z9;{}wmNMH8-y85(ehD1FT!wpM)qZI>(x$T7)7VH>8e75Mt% zR~skX<$vGx&n1&L!KS$24snOw+3;_A#QXp53fLwV+an-%0_~{$dV>hj`F>4_=LOPN z>GOmP_kWANJCq8C%Sh71TZ%ycB6{ROUKQ5C#>@hc!;)H$JJYZgL2C5zF=JP1Z|z1;?34uxA^fYTxI=t98C(VvZi-c zg1@ExXKe8>b${{82;Nx9PrFThxP!!B{POjnZ76S)#23G8hij`@^H2EY;V*tU?w|9^ zhF|>ha0@w@?LJ-wR$rojlO3E2%+3g(CVL3we-vrZ8||75*A;!9AmDVq?@<2o012u5 zc8!eJ0o14RcX2DuHOEI{L5jFb4hZX?hbF^kg3WLX0LX>Hr|4frlVL~cR-B^(w9WiC zm46e-d+5wxmtO+h!Le2PZ-Zvo{^aX&_P)WwTy6a?Vk^#Lw43;}5antbh)2Ck1oG+k zcU>>UKzkK|S7JI7zxXr;Q8Rlx{yEaFc1enV|FaCpHhM`eob@a`q zxtay>YUz?eeL4o>)!Hh8d~^7h#ji`6>;L*SdA^oI`&QzAZ6f(tKtBe)4lsRh2S1Y9 zYLWc<)0;w^7fxAyh0S{5Ux$D>8LJro5&j?ayo+cYTjf6Q^(ge~Rv={q7c1u;GGH)dM>v!L@nv=>@~$*}D2349n)xwG9mOpC!GIYrS=cA6z0`_WvqUE~Bcf zIDjh{xBg8CWZC{jDqm@R+x)kIH`(0Paty(x=^IRWWdnj!(bbFW(gXynvbFs`7oQi9 z7o`4o?DF40^YbS3g4F+(UH%(r*44W4ah(1C!7l#|G=G`RW$FKyUEVqd=K9NGrdbAi z>?VHQ^4hut`}i+mlj$|oiG2`8e_VkCOBEoZ3$Cxnz!A74UUG!gvny7|m7l0MO&$>Z z>|Q`p1TN@TOth^_^b9o)7sB@wnaJp;0K*IsH814aKhe27PH-^GuW zKaNHAkHhTZV_4O2BBqQYBa$;AD=yLqjHFb3Vk?rl!s=PIeO>5~v2z*KG~WUA=wdw; zOLQ|l3E(L`~;RriB1!-+=pz&KFreO&U(R9jW2!(=> z>D(IOfx-%5iUQdYNVfbnF*D(axd?Fxee&hD{I*2Qc2#?#W^cVA$Ej%u!BbO5ac_AF zgN1b<*%c|K0rIMtC5%mj6%YL%g+o?%RtLWQc-?b zQRFri_S#ry1(Y{?r+?rB!S~1v7QZG0xP60uvO40Jsn(Vgh+!tcjKm_NqoPxSa>^QK zgoZpOlteWksKKMn52nM6tQAxQGOMEF5D0jQR!4{)bLydOW&Lpg8SF;YU~3vZ-HbM| zwbR6fhZ)pm)(<_BPO^^Br!1wEp%>h zvN#MeCAD0mSvE80P1QBQquChsygC^&C*rTGR~pV5_UUFq6c0U*>wutSfdF+ zshOUij6IRRg&hck;AcaOhz7Sub~oKkO-=VAUc2SJ_G)eSgBJ{CM#%|2ec1@XdJq1% zj}YL-#jKGo`3K8wI`vlLfDDe-@S`kWt`;25fR@@lx7fcjnn;dK*{LdMIhjim?dGmD z<#;Ymq%~~pnC89ozo%<16nkme+X$`Z<11hzyK5J8E}kW&*!{8mv@Okii;&-d;bt{2 z_ygH+7=IPi9SCN`T$vZjC^Ufc?3sMbTE}UUV}FBE7;E}%k{IWly}6v1~M zly@Nv76pUBadf2n$3GMXg=6nGl@f+T)`Yw>zd)q1&r5irG>ovTqbn23umCcMLb8hf z?%WoCrXQf%l*#Uw9CiQhBWdi_Qv|%`}tF zx(YlDi%^4a;^qPN`yH59>IsLB@lxS8@7kpT%O7mh4rHge_Y@WxLFT4Je|&pbdYG1& zIO5^}d_5#eO)%*bze;lG_=&_D;KzN&bqPF$N1uM1>S0bxElHx7jU{2=%#2$Q3cIsN zz^FyUq2p{WS4E~|F4^4-QIS5jc3%(kBPds_1lfdD)B`+}t}{ zpXhP2-jcAmuLbh_0%6YT9Kx{Zv$KA6WP-p_iCK9tp>>fW7h&RN#1M--`jE20ClQ(a z@Q(tk)|1O%V@!Z>_3}w4Ha0Y@5@9`W*d&X5xIwA;8_N$2;h#Mr??rePgiZ(={+gK1r>RCvYZwd?cHiArt+&0oL3unYyP@iuG z5eGLTRm2{6`;D>8D4MJ75`(Ar7H*H9df3khA7gwrEO?KuzF2_Lv~Nh5SQ)S&CTraq zDKwI&2YPp2cxSh8R_$NmE`BI8G;(X;d@cib$=Ej{YUC)9vLxnw61Y0+Q8t_ugFiph z#y4_m0F(|{sE5B4lhyR{HM4KPfWEiUvGvIE88f&FN$HQsI_xfGOJ-TlW?aw<>-@71 zi+bfe$0sk07-!{s8HR^nEU&DDwE(C$lV|l`#!s7J72v~<=5#yE!Af(vPn;V zupF|=LFM0^Zw^lnTa0fC?u_g$cP3{FS(I-Inm=key|0?4j+812CmO0yRPys!PE;yt zTMid)GEgO|6xabAq6%(GBuNs-YZSHLX`;QdO#p2#1}N|J^YX6uCeODf;K?JUypvhH zGR8@>&BA1q>ta^^z=o3QV8-f*`D{k_(ck0hIP1Bw6(YyLQHx8-L?YX_%L|zT z2u_rsp5I9%D+`W~j4K@f$oyPXAreI~E(}AUAHx~6h^p9aII$excOxRU1+dZ{YsS)P zkztTTRFibh1(UC8aH_6yT)BFf_k8cQOWIML@G!+*TxTT27duN`PsNNU3aPnyfPub1 zKEOTNJ`}jhlq(gDLBQTb50pZHmk|?dYP$mt zuBRxeNcDWLc2i!*b3$4JtX|RiTmUER^&M8h&lzfO^_y@AnE=@|Xy{O*_y@ThKWRw(L6 z9_mYJ5&BeJfV+c?)}%TeHL<=AU(XGOwEkGfG9+*|o7z(Wliu?nM@dH$R#ToVZ$zr= zZoK*Y`oJ9f^{ND_sRjGY)x`sRDZ5@R3P{8`4ozh~5gH)-n)cYkKi-SE5z44L7)J;vrG;f;b#LhxVQ*s0; zi_84{Z+!e=dmtUMH#f5SWc8jv@iA0O6ly@2%fgWznpBtxuRWbS8?4<`rSxtpNt z@_p!DoWvYeI+Rdx+%njbXM^^tUqr8YGb%Twt4n;sy($bakOqGYoHT1YF*Al^Hs7gO z4y5pd^?@Vr%!90PUT$c*9o*+A<>2s=AFF4N(8%?)?`J(_=N{a8qy zyC;sTh19tc7`wb&o4mk8wIAe)g>{wER~!{4^pU7W{v&4+nq?C!3oH|KHR^#+Fs z^vvmBY3L-B*Kr2LEv8-Vb0UKoU=lecI;uN|BDJ25Hpjmb*G?65{hq)X#M;}78v zoG|7@)DM-90x>U<>{pS`L(tF5%g-daY{(YmHkI!E-$Jfh3NdCs zp$A>X1AxL!0pdl+^z^x;64P;kj8|MD7!zbC;tu!@`AlX3K-hy}Xrrd=XnF+ugHvyk z3V_Wrge;y2%nJKh?sfX|)6kS$u5wL+Xxo6Hyh_U4SsRQGHfm!!SMe zoEd&769R}-BtkbG&~SlM%&}d#lYG2MIVi;ZLDKxbPz41S3;smK5!=0&p9XOX3i>X> z0p9^~dvzb7DJJ}A@#hZG>DK4?;KTf-y485>k(hh?d}znTS6Hq;^vumio%c9{2&YrG z>O%yrhIxA=Q)P)(6WJW1wYA$G1UW+u(GX}w5en@E{QR4Fx_vVk zM23+ABu%W0q>!|wqiLt!iH-6}p04zC|^Zg7`Ly{%dpUhjhGZ!k;!CHJjq&QDzb%CR6svU6+O|Z7kciBOwZuG`}8h! z*xHz`kjLAryNtqqh`B31QFpv~JH%33W5UQf)>LJ4Dv_q{ZazLQjRHx&2vpnI@RKj%7)WkGX{ijW7v~`+( z`|F`zcB6(B_rPX_a6k;`K*YCPux*_^l|6+mA*9ho1|tMgw*uDb1V5` z9dBt?vv!!nt)lCKOeE#8;M38>(Z+c3YIYI73ME_Mf} z?R7ss#0b3;T)*2e?pZc%+7%xE>Opuo#@n(JR;%8>5YDYRcp$lW)?swl1M(W@bl+0> z^yc}I`KPPNNI)des$s*?AXuCA>sIl#KQIv?P;dck48}6Hi9M3xO+VI4TIDK5jIvs8 z?+o8T)nUW^U7krg>uxdplkd6dr-g|#Cq=ZPtk$?x zxD{u|b6$r@O9SvJ8~X3HXq#Nz4|+i&5f^oSGexd53-V&Lx)5r*^`@h8m zn0ROR)qKV(>WQa_lC)q8e&TKy@{@@n zpc4L3k8yYtHWNEMo_F?=9_SarjzlIm7;pL{q@|STNiC zn1={fBg~%sJo$)Sihr8tR%-K{geLuDOdc3rzM^o#{;6qedVEm~pJR&Nz5~NJS-#}) zGu=^VS;^$PKJrTWN)oJ= zt=xtqLWQ~hsm7b@oeCIYz?);KKmUNDHl)2HJq8Xvw)3b1W`Y&YgDJF}yHuT#UH?== zWIT?Co30Z4^NE+SWdC_Nm872kWdyQy=K+dCnq{i3e7k__cs>R2E%a?66_++~k^8+; zgmmbB`{GS+t=~Yk1$2hLaz=KBlg`IW$Xu2cB(4b&FV$`Uy6T;C7}s8{-hEFkE_G6t zb4$}Blf6#S?q$Ce(^0Qo1)w*4>w{vi>@nYV91&M&u*=jVHVlU>%1rE zzumL~*0+PnrMX&DPd^WY-UfVd6jZRsF6bR%v)9grYr}}q5os!99&r@1+z;=&RbVJ5 z1)tW|YliRnf}dR7%#}lD1awZuT$hHj2`O6WsbDp_k z9G_BE3(eD|$GE2ne!{903Nt5VhTiRioHHMCIgrwXQ7vJwWZ6MEP}ewS+IB33GSd*y zF;xnP6rNw;?6>EdSE>rN-`SS0lSQ}RQfs@pb|pM?M+aA4evCZk8lV;xa54}oA5&$j z7xHk|jmAbo#NL&TlUu-@#MkJ0`mAd z-GeSkLFe{iIXyi@7MbkotFkJSrorxAHL9+CazX=Ur4HXhEu6*_R1-^pB55h$qKCuK zEa_;lq5CL%>&k4LL5od^?0@*+-4ypTZjZqms9=(yk{}wWadXm$dYpi%ZWu|>s2UDH zwGeql+*VMNGMmjc9E&(0fp9|+n*Kvv%O>aV(=!h_) zOnsp4DG$McX zcO{-f+O1ua?c;kgr2wwZ2!#crZBQk)t93)pCsV0F`dK@4R&D)VmG9#duq4eGZ^4yE z#z}(qa7o6m#aNVelyI6(=`Y+tZ6&NqO)u|2l6vM+7}nd{RwyIaB~hR~F>>Nqgg_*c z6+o=DbHnqn%rY;n@jIX680Xb%EPW2LW3l37&Is4!tm&os>uwbJ1(?XZ_G9a;+;6JQ zRuPw8&D~x--50(Z+}R)t*0@QY3e(#7%Xq;ingtkkm4#3Ck+|*(V{e6cmZ!17sU*Fn z2W}~(Sn1rJ7pVYN)Km-QP}Mj6=L5edk9~aQ*I;7(pulu((`c8X%uTDyfN+6@mum}@ zjdGk5^{B|Gn^q6Ko>Xp29za+jj@ouh-~mrQxt^RJvOBeVutCgQq(Oxsjs(p9WzfM} zIkvUTzO}zMp*Lbw0Jkp#%Vv}f$t`O%!ue16w@04yPYQQhN@)r})2yZPU~K3@OCnfl zi44_|B}UzGPdkh6`COKcwte#<34OPcH-$5|VMWp>mgl5e`k@HixwS!Pv1?+D|s8$d>Fv{*9XId(YaA9Y|>Zy+J*To<^@n zPle6*!E*j2OZt(UEu$^obK^XwvV|=>28IO?u3KY zC?A!>FP-dl-ODOXsj}m+ z>PaJ%QHJ(^P&cuzwNqGpCV4?ZQ$Sz)MZVT*OLg3hfp}{>{%#?-y_>UAqV=o4xL=_= z)jOZVU$l?nO1lj+VvN#etu<(EFwNfdbWN%6Qr~aaR9f+6@s%hfrU*N@Aa~NnGI7jp zJc%#<$$I`A-)yC1=hlEbdEElL+pHdzAk8agZ;4Sf1Yj#6OL@rkh@P138a9x=q6RBx zd%No*Bc6m`^b;bP46S{w4S)x>!4{I5r)*?C>^!ewZP;|8OkauKg_yX9@oXcql%5ej z%v#(q!qwh1c1aNGy%9orD3fe2W~>k%9&n{ikak@0o;G(MA2i8xQm)jbJh%ksqMuXD zd#5X)@hpUbe!QRIs`7kY@M)SIC`)MwKs3^hJ)Ch>Xfj*~Wbw&up-CZhcFHZ9n3YJgos z#mI6=TQMca*?hr8T37>fwf=@&2)Hl>o5l>yePM4vAy3-`h3C=x3J0}NS`ovMWBV>I zfz3}r7z-qy>9&yq}nd#<+V-L|4dtk~Y~smcxlUoN(`pd{ z^zN!~26}E7T!wAF(6WSjhzY1183Y+j*13`iyOMfaX|+8q1`&9IgefDxWR*C6d%l66 zEF7F%OY}0&f0hs4b#0{iQpr3>y-Ua0tPbzS5Rbv4T>(e~p4f)>*L&NM8dAMLlQ0gS zSIZCLs}h7QWfGg7!+NWk?XHme5vv=`sD_LUtAaxJheGCVQRhZ=BAZj*7k4T^BDML> zp{2Eyle|2-=K#}M6Z=J+%TkJ1!57O&e$J zX1GfGJIeJ76kBilZfXjz;SSe5+w9V>m!4MvGvk&qT5qE}k}#Ic#c`M4w%V@^f;i>t zjhtOO`_pwX;+Yusvmf=$9rugS@`P4+)530DK) zdTr&N^;Wi$jUU#z3zC^at+R(~;H65qoudPLs_31MY0oq35qV3-pDinkUXK{o^Tumq ztsW**Q|+jIeZRw57a;`Z7#%1Y6S6r>y$h|_EK{C$O<^6ilZ)8Te(EJ}q-Cp3i+I1; z_b<9*&v9_2GFV^mbs{Dsj6NPfqRn^g_9dtD-yiOG8q7F{t(s*h8_aQ zuO}-VwdHsf8Uz;>-ABy7U!P8v@#}EC-LO23LXDQ69h;c$_lHZM95pCydViW(JoJA& zTP9USNxNq@F%Djq$?HA6h4i8VZDyjy9}bDp&a1xBrmmNb(DiC8KQz8M#I-0qwpQIIE+iSj5 zP~eN_ea3dL`~IdyUmM_+Db}HgBD-5}&!w`1-9E5!HzRMS@LKq1vsSI+jJI(6mxWK7#8up;CwuH>4UTzG5x&`A&FY5s=LSowem=Q+a(*>>4Z+L7iIt zJb*G71KU93YJk?i2f79CsyVTyQY5+#t`WL8PUiZ|(85BmfAuNQ+D2D;eLu942crVJuKFGJ$4&dEHL8^MW>hd zFfLZT`OA`1`uxHrbERIUkl7B32ij9M_;=WNvcP*iHxMke#~D7zAALfqDl1K@GIbJe z((yo28%fkls*P!S(BxiJ@nLD{!~F%B0x-7&p$Sh>uB|+w;QQN>ZlND~$wtjQZy*;- zmS)Ct1x_RssJrSoIF|)`3z?X1SK`}YZg+7c?3X=qHI@siy1$MaIaLMfyookg5dTDZ z=*rIAX2)Hu!^QXjwDxhL)CF#{lbqR}%iCcT?Ll`3Z3gKhs;ZJpEoJ(j(4ZbPV9m9R z70wiJlZ~=>iA?3@&W9evu1KPHa?X+scb6w9#U+e4>fxy$I_UYutuc4_mB~jnl*i$$ z7q2PEXdS6Kh9$lW3NSFaF!TX~Y%I6x=s}i|^uV4Zm68)pV#_P#Vqq&Mw;qRghqSpu ztd&{zbq7-IF|!3*oYdP=Tx7~c7WEBpyCdq3B8>LMG$2O%J###Fm#U=)qZNa*y}ZWk zoVykk(>V^h7v0un8iEMMRQOK!m+1Af-6ApuY?h@a%xIn_VQy-wDe0I)nKaa^T-maD1N9VZ;p3yRB>pK1iGml1 zS0oDXYqyDZN7-Ieci+&G+DM=|V!{e{^O*&3F ztch>kdAzE4f?vkq>(3M8JO7f)rQijI0SWRWJ7ppDkJr<-%}+(RS5~U^=O>Aa%tSp- z@(XC>k%SV5O!6jjwc}2(4PGjny;!l=wjV5fp;X?hA@#y6W{%^q^=Z6}1;R~(*o}^0 z-mLmS)QNIsv#^4tp1(XAdu%>w#X6CqqE(2&tTOINGfA4^uNxbAr>RaZ^m_i4k?qL!vWc3QQDLnJ zWUihqs`YSVGvR0M`4%Cn3)*FT@}~%9yAB~A9UW$)4fhdb%_{xtYS3jkNI6j|!-RKK z9ts!f*OmGkAViuSSX-Ew_J=xFP%m5b?LFHmSFT%n?$q(@WxRM;YB5#$a3C|b8mSde z$xYv=ot7rPJL??d<3)p^tyUAbA&egdtjr>!f*jV4!m(Ax+!A;Ykh?U7%A&@HM%8E+ z$25ueGc8v@ld0(kO5|hF;0(RWY;xwuw)v}su4*7PjldJ_Bu#zBWnWjOB|RD4{+PzN zsWPQ7BIN_!4*ChbUcX(@m%1@G885!erAvM$?r};{{Z4cnzeANnMeTm-?YAsF1Cgq$ zND|C;u8%3H?im+tf2vMMseR0P%{nS{wjyxMQFM)z%3fcJR;AZ(%;jx9QLvB6=&`X` zkVKG-xKiX3CLBHStPHiLfH2g(NMK9piRMTXx}A=R+skpUB>H?;Os|GcrsKUXH=>!$ zelbt{;>BTOHG?wesmSdYi97vq(=T5HgroH{rWr7AFp=8Qs5v%Xgr?hO6;K5GvCuBK z3(oE;Z|1c@Yi$`H(2n^DjYZZPPh6iGB1*eS51yoSm_|MW@BWcqiw6i zYZ4$9qQ0Y~F=`ae+fK;nw1sOyNKs-Yzcc-)-y0-lzt7K@s372E-8&y^R=#E^z4)QGtHthF#YFT|?sV+Nk z4z~2_e9M9Tj|(<^y4*5(Eu!3b;$K!aRpn$6sW^2d@~||U_ogj1+V$=SimM5^#(Yws zUy$%@i)0lQOj{`R_Ya(1j46nUdW5vg7mqvef=6n6K-a;`SKDuNp={wkmVlf9RCcJl z`?a}HMxp^eCP{L1FLM#Zc{tRorR8SlM~Q`J7}$JWZN0B<%o=GVb79Y)jG_y{yICMhYu{ZYg)Jxzleg+D(jZH#~F!r;Ue;ooO$|8{=LPX$X$qKD*tfj0@8Y+|xR^GyJY*&T*QjC&ER74KB?4`+<^>nf_9vwASt zh~d|eSglIf2<;RtI@?|4?Q(Y59WG^F8!;X~SsfxWD4ZxSQv||f2oD8f$<9S1G;G^|O zy6i-0R^7^YOFHk(UC%sB?;JDGG%_xX%n&E1uJ%Ho12m>ool=+&71uQtmr)SWHQUH zOwGfZSN5l!>&KpJ#QWUt((Q>Phv0gpN+NOT6Ia%tv<*2}J~epgyxwLUprSF;SQW&a zLEsc({<1F(lA%8}{Isml$6jH!`XyO&Y=w!Zz^PT_n}Jss7ApHj9M;vg=gr&SMC@NI zc)Oant%(($xJk})+Zoci+Rv4Ipz`tJa%fJi3w|~EIIs34i$;^ei`1?=cZV8$L!{P@ zCLQssPgqJ#4`=2s%5Fw!EVL8ebAv+TW=@yNS5y=6S{6j#`ddCPE<3Vttz4rmddF^f zaR)>4!8O$m8-t4#y?W#~ZBUi6o9<2Aedp=4FO?`#?dfTzeYH02kOVtLgbh38P3;j5 z!=B*{i-?>s?D@($tc*$)6Kh6%8T~s zV`QCWHTEMdwfH{R#E9+!nnnI-%>G87x4nU{PPQP*x}902dR|r` zL;S?#^y`9KxAaEXM%U(pT+4@C#ueE+%-t1c-||D(Y*|^E9w$IDjBfWuJJY^m>@d}w z`*f%LsC$uy`p(l3<_ASpZCQ{sG~f1S)dZIe>rL@GRvGSvD&7joqUTz3Z!(>+Cr5(j(W0u=tk-TtObQ-u?<~MSLXwuh)KcTRr7Hu=#bHEuz zd~2@u8H_0B9^{@tZGP4J-2uw9J}*|rB7fDyvDV>)N%Z4la(CrXv$~_B)OViseeJdt zdM1~-_}1O+idXd~u--Y=aXU9o-QrE!p|!)Xn&5iBYZOs~?h|s?KGdCKa=E1s*=~Rs z-$KglM!WPx(gdMHWnJP^TYI$f{7rSY`P2gO*Iu3>WCR8GLTC!s2u63GJtp6@dvlfK zSpJ&Y;rf`%U}alXa>`tTlFY|^nU@rHvs{w9{8~ZQg4OXWDv6 z%Ho{bd3jd6+4+!maBJ(xoPVr>nD@BG!Lt@g)zbW;<40;aV5jMN41sqdnD#rF_mem$ z3x!V2C20vrk>AEx&hl=N?Z0?h4mVkU8WC{HI+)#m_oJsIwX+85iSnmFh+IZINhAA` z>vo^bt5n+o@0I~GXB?Y!)=vBfewU+XuZ5yU zo=pmHud8?QVvB`&)d*Ddh$AbEaf9@(ebjt% zxjnZd)+Ez}_Kb<^*JfiAS}`{;V!`+9tc=Wt53vadV5i;V)U^+oRp3bTQ6}6?tPUhr z*UPuucOnRB_U-oGhJA4A>l__G4k0SMKgU~n({T4WHw9kVG`vr)O#9Nb{(_@>?4n}* z@}SD-o;jJl-Yb>k1PNqD{vb56_U@O4CwzP>UKY1++kY7KyGym}&O(^TVR+}dlR{|S z)BL^iL5;r0v0F&$$jt1Gt( zY??M(-0C`a#xK2GncJCi8Wm>Y3SS>cu`=wXtPs;rR8w-fXM9=RZ;aNB>E+3*Wsf~5 zdc?8>>r-SI)WRHD#g>RlQ{E4fcHN%R`&(>6z>engF&2EVsHyjxD_I!(e5peD*A?9s zJD*!|*$id2@CRb&ZH#NAjq7X&bX4wMz+ZUB?k523zl~a%v+us%+$U5#xNhxM*eE`s!M*= z{)CW#)Y}`@p=NrlPf6lqulVCzBOoqm&whvqCr;QOk3u!PvwD&fjNtdetS?sh@M7n# zolDaOzBdBh<2xT8^>6Wpd2E|@W5_*%o1Mv{Vld>mph)b57?HN@w0X&^pL#762}^E` z!+IrMuh#SMy=waH<}h>Ehvhd79kvzP<|e1lwIx2`FnX+cvj+tlV9w!->?z%iGt>iT zZZ|A6WjV?4TdkYjUh-_gJ{qJ~K=*39U$xcE_uNIpp*KFo6*)vOu2Uh48MT&uTs4tm zOTgW}wTBv)xLseN)5WU0|Nav`mc!v)57=f~-y3V|h5NO({PE>-Yp7hXL`|61cm_J| zM+#|;-lmgjf6m;agEG{Zs-Tj3+85&QV|HXV;|A;;T{wlCb+?r}1q{~RoGds8Wn?x5 z_NI`yjM~y6YcT40P=%mXi--*8fc<^ViIgJKcq`>jU(|Yejx}Y z*X&rBn_XCpYTSxTT8^`DcFZhzdZh+444(``*c`9dbt`NtNZ!%EN?=5dW9NaKyv1(q zQTIk~6Y)}hzQ9;yci2R;TOW8J~v715+g2BYS19CV8CibgbT*VT6=~M7ncEzr8OLyHe%g z+k`Zz7&TxZn%=&udvMDOJa92d!@*o(>wbzwZ@YA1XE3CtIi`1k3_vfpD?$^0I2O zX#RDU%U_pea)6pat&Pl$ENmcuv-s05In1CsY=4sj?|d0ByT31l@O&0~C``xj*IZxL zn96$2kv6ybc6&x+~Y&2LL%uF+$7Rl6saeVC4YrN*lBuNQz zZbGDR^=hz4xuqZk@kAB4&6>=caPh$MX>!z-z%Y%lPnbJ+N*Q(SQrPruQGdNk6@@InRh*6 zM?Q_uLFcM!bxMubWM8;fxYy(sDIEd<#X}NQ`&LeMVBaLk=Wd0QmCss>*_;q2$t0sK zVrJad8-@#C2A3wa&!lA}ed6SKc+esY(rt;muDcZHp*vjpTDQ&~w^`_fz;Bg=@3h|A zjn&Tq(mw4?*K<{>WHtTC(jo_WW0n9zI%xwT^h&@5k#!}*WUJAD8uOZD-$#Nyh;+!6 z2Z#Z}Bzj8|705wj2ge9BhOMvYU4(3pB+^^hA244Y`6R|kwnUUXvsye)-=@rgxmT-U z8Wi`UxM!|+V`KON$5KV=@pYrwgKO)OTHFcN3`TJFl^Rc<_C1!JVIlrN62R^iRIZNw zK9j!mQq;>BB@>R4t1S2}bR^a>81i?DTc)btRI?Qulc{%I38qtv2PTUKTw6WtB^6S8 zK!vJ?u$1KEzL*+;cT!Wb^%FD&d4@`x->=V+Q-Xs#`(gq8m&L}&z#Iy*wbo;?-(SocRlP_h!D;(a}9 z8zT#IJ_s5b8vu+fJRAT%vOvHP7Iqd67T^@~ZK#bQpOP5&eF+{zL+zVpP7>^<4q|N9 zk}~$=FVl$@d&0Ha0*D=~7CFQpy2A_LMh8 zz~ls&U|=Lez+XP91eol=(f7mut!j9JsD5q$;K3kxg0SJho**=MPY?($9}BN@_U1$N zBH!(Dtplq|83kk4!XM{+?A)Q`rBl|z*nc>ZjTgZN6(}pBd*tswmV}1k1z7%1^86PZ z<<%jN7OpAhQyTvF3KP$uN867NXiIxunX zd(I>DhNLc#eRznK@PrP#B+F}{&Rq00lrs|lL?u4J&TMcqRSJ{w6y16xQL8)n31_2& zqAz7i*PIzzvxEyIn%$IY$+w$LHT4y)=fw}a1PL*G)+zIc>BId55ZeN8SE>SG&@G=` zI>+Xsky#~zdN)$6=cP|G@0U~;M}5f2+9+>$CLDp^eVP)vf}%-ie-|DB1P4mf0Ykx9 zz(Xa&27yiy5rK~61I9i(#yvZ}07d}*fXU8IU?JioUKU$PE&TYj%@e{b8<3TCC1KmF z85>M-c9|NH5RCuu&l8;QhrnY1!KGqVO-_H^DH`sZww?#G**gH8CI@+aHw$=X522n#%ZSM2YMl)mIS&Gmn%r~ zru~Kc+f56f#zS4h6%Xd{l^f-Uf#l=bn>F_g%1x`cHz`aoxRCMPxm~i=%m79HmX_Bb zEnAvgj^0!6UD1UnO-n7uwqm&0M9wT#uGbR4-UcvjlC8X|H7YhySk$cf0 z5=33yM`AHWe50Z}?sLx)M%f0fmhBQQu#|@!KE3%m;{e!In`rPw&PKdX#t=;&mLnaX z+tNFO-o_((+NNG->hRf6>c}Vdo(Cz9sP!)?u-}6f(Os*&YV`K4+}33Se?PH4=9ILh z$4rzF1*DR`D3cgF)6!amH97Ug1(pzfb}OMg%hcRX_a&FMrzvy%5Yn#YEwovsO3AV% z*gWHjX`362mkaaB`fQm@diJt0TJEFmJOi1s`n|w+lr+>UD7r#&k#DxJFMVtX#(tB! z$RxXGQ&sI&G6DkF@!S6(5TY5_1bp?|F&N}SXb6K@ z^0Bg7=-61Ev%|nQzo&xt;r^OR2YP0v*_=zr`t5Oleb5r3XExeR5f&Y57}&$(tU?rs zPGAQxUouZJmk-A`QP!p$|5T3YAM>*R^SpP@sz8Z&8+;4QgM@ZwL;DnofY(9$xNtq@*o9Wd|e*(LTxjU+o{?#gGV>AFuY;k3Zs=Oab%NOSg#pLw43m_K+|Q?W z-#xX(mMt~U2v(hbaMeQwCw)!WDp&^#S1Nx{Q`B*r>oSu6Ui>W?_0uOsB*<8yct@`a z%VggMT`joU*hI^aLQhA`XGI4uz!IAFn&#qk{AKYJCqu)+xGZ%_^2 zle(_AT^G&3-I&+Kph3C8R?Ovp75;?P+KqHjLM(Dog>2~%rfX8XqJMLw(8fv3ctwt0&D;iYgwZc`CHHYt!Dyy?LTD1e`Dr%%;W}a zbBeFF`GxdPj`tGxjBmSE7g^Q@;rwcw|2K?cz_SJ60qk_H@189-z>CMm{nc&3tl_W;8hW?>G&`D_>>BI6><>FJtTnCn8w!K7!&&~WjjjdZLnY%KHv zH=2btuv--r2DlBsT}Swf>wjyi_qr&7+R?@pu1VNCAGxQ|P-xL3R7GsiqfFD*l$Sf5 z_C#lDE7rnAu#LkP#DDC5bdU0qWCGJ>o3Q2k=B|YBqL&Zolb#PdHM!VFXtMVE6^D&K z*E&6sAtZjk>FK2;)v$C=FOZ|0w$q` z9b>on3vY<|TL({BBFG7T^39Y^+LK)$xs*!R3chAt^5TTNAcDOh>wsF3xDwxiQtEs* zswb83E~V~)ypQ){gWZqP?d+l(DMUWxTTu>`HPfG1OB*JHJ~k}`RbMP6rCP>Z6MXfi z#XiqFS04#I42iIG^e*E}v`hInQ@sIbsW<0Lz(2JSe>l4~+pQk0jL2JEf0F^j2RYzO z;({s9oAt;KKl@PsVAk7zQ4=k}=3vfb_GE|;>krfV7xUQ05X#03{o+Ms*0EtWfB@FH z=^wNGVv+wvwmWA9QzD9iZ-TkMIHduD8Ugfg+0!UUNCqAlAVd(@gboH0>fiKwqk1;*J;eP&nS!EnFez-JTPUR#I49;#m~ zDT&si>NV98zg?W9C?FIpXS0wV%6_jB{>|{F?T#S}q$#6@P-N1>ilwa1_ys)7`J>~J zRyL!y&@vA&57G?wz;bYFL#X1`h8S6`SnYCeEOf>7fCD2cV7IiNc)WcpSp+eq5+!GU z?UEMgs!+V{Y!bTZSTp(sLdAKDqIeRWfm#_me%`EMehghrS&_9JWwB_XS#?a(#3^s~ z;SE`)etq5#LaFrQts^6_=453GrIjlI$y6)X+^C6gMZ(%)e6Th6i4K8xJ!A*320m^W z=5iZGWhfIi;%3}|1tQo=g)u7|&S{{6w_5O?OguHC3Tw^Z^6S{61x)mN0Ce(vg-+y) zCHhL!mbO;+TDi5~@n8C-$^I*R;uq-T_#OoSaGVe@2N3S_h4KV@1pY_ZdBzic#?C7; zw&Hp)77J?wN;y4C3mYStg|#E4wjOV>m0 zVy^j)MF{J66t>iJl83JaDY_w2TJ>Y+XD`XNGB9}%k z>XdLYwWnHMshmORMB{=qRPBaM)1$Rr|Bz#}uJhsrO@fvG7*oenCCV5~)U_7J1%}ev zRSsFmUsAsR>zKOrrp^$aQ^LWSo%jujk2v4VQbB0U%{x~vv~=q!U|PUE z%Dj|CQfV+F{n9-$kG)6|>0vybV&s5XLxHrC+7+*^k<;iQ`Uh+Itv=GBD!Zm~%lB}c z+Z=8_mF=fvs-_e3$Mleyl(CvTwH%$r)nYK2VcQp9mr~pUf-k#0i0N%aamjD$rsBs-v;o); zVoK$CPHsmHw?&;gQb~s{a|_^k*p&$l+PrHZO3o^e?^n++a!GL_@;$-B=YBmoVKzj} zoW+x(?aw5N!cxoymac3LByIYQss8{ce`D%zO#MZ@{jH}0adUs6r~dyPQz4#As9;Z~ z3qaKD!^?kaU7e4lP4)yq!Gzy~SWyum=-&^JL4eu(ExZ-=0tEZBZO#ed1ft2gA-t+! zawPPx!LO(|@Hn5Nbbp*c0s$`Z@3|2nREWTypR*I}zWd<84U<|TKIA=ko0&|?tk?No z{x9V(rBzUXJ^Fu^$O`dj0DHUzd(?tGs=z?KzDEEfQVKr-EqgU+4PJVCXA8Hk_fi}G zsqC8HO$`okHBwpkS|`}UA8eNn`)?@X@Hqd9SOJ1$5j{b0>Rlq(GWG|LaBOXI)!3}J zs5klZ8`nx$#X5DI@{p`$db^xR>THKfJ4k3A9%hJOmrt9}j9BRfFpNZdvR>660iha8 zFPG7(@@Lr!8oGzy2x7-1`GhJoRN^FZx;sM{Jrbi(3da&YmSa3q{j~DR&G#Whc{Pmu zb;;AbI{XDVcLv*rFTCPc)fhy);yK|G1{X7QETIdtZv>{IxYRU>Nl)5ws&>|vtQW}{ zz+%1LG$yO)DIg_8Pun45Kw{%qWosqs1s2HZk`ii>OG39=y^f2Ca;T&Pg_n9ByqZ!C z-sP4csJ!JRTg5G)Kp1vCq2{#pd3XV3l~I{nF5^klaBzwzJrwMTOY-yc#)5d_q5&t7 zzIU6mDDX>rV9!h2XHnpo=lTF(K(POm8-xgSWh$U)$$<;R@E{Np`e&E*z8DCZ009g+ zv(UcxAK)2KRy`86)yE!uiDUnO-h}X!oW%xBiK$x70uI3k6V^+81^%*lBfI6AUqYfO zV}Cy)Q}_luFMbapHX9fqsD2s*Ks+xwJf&XOdvYb`@bKW*m1ZVgPd>acyfMOP`aAQo+bfPaXy}vpkD7IWzY4tSOl(#o3cRv2O#0Yy}V< zoAT9|y-r-Od!+>T3IbN;>?Ps`vR{o^kLvT4CII7osWcW4c5ieho9Qg9odxovy5BBP zp06$+5Q6~NlIXY)IvsjSz%J#X{Fd^I2%w6$EUYP^wlG5rYa=Hh>fP2xkJ7^2)DdWO zuCu%dxUAo@P%4@m*#Uw7P}8r0@j!Hjk-m}6XHJh&S5 z;4!kXbMkTmF!ulY{rz1aQ4^H=K@o^!RC^FF?o?SdkeYfxD>!uUNwk;KyfP6_V8ia5 zu6Jpw)zOFQijfX!xYA~3n~WwSs|X5SfnrhQ_(iNkY03I4ll0IKHY%uRgD-`7po=Cx zrL5>X%ezX;Go&-^j%&(8SZ_4HnK0Hv^F?$qNcLsq1=Z+;^Lh$(e`+OoLDTm6tQM zFtA_&`l*o(FjCGYd9d2qd_H$3=?4}1!v4_cws?~KrT(|e$ZU4V@1l^2ei@0MnK;S) z{pSetOa{)g;r2T1=64QUu`tJ)D>y4G@9G?0Jv8+S6i?vS*^WK1V~YqavaiaEttpy? zTxs-(xUY&;^tP`kQzdUxr|sn(GLre3MC{zn@jy&%1V3@XV3fArD%#_SrX}QX~ zbd0Be>m$jv5 zcsR$qRYyaI#C)TlG_3f58#!w?PU{pOdr7Tdc#34T^)foFe6_<9y2&$tH!7MzH3+a8 zc>n;T{0d&q7mE5M3}r?4TKszAi4y+6#QncMxX)NUE->T^iT4G(0EY;0{1v?H&tvod z^o2qPzV-!WDgNaP2V%3O5Un)H7 zg?X*c8AV9?0Ii%|;Km;YU*(e@y_cd_R9m4O%F#y*G{UQDp}iq?0D9Gg1QsN zT@&%xxMA#LkyKyjB5J5+*&|0ze}_CGwh-z!Y$7BoSlL2F?FR#l>*YhU{bXhr`JV2E zwZzZdUaOSH>f?&?acD^4{>IpiA$arG>GS6`KBf-e*L`FKW*8@j66jOj zM~Ws2(y-dvkE%jFCJhyDnO+P+IBI{wI)G*>!@fFD8rFR0iOy}_>sRW>2h9DV1|)j?3x7aNjlYRcN`-O4(}p7!=91f zL$h6Nv}MWB_eP8<-$zoKYQ)-IEF4*lBc#ZwnBjw~?eq_C1C1s&@l;~V<-VH!rrq}P9y(hPhsPUf{FOe@JQ zV}|cP8+1L0DyJq3oumi(g+LkcRl0o=Ygxf&)W_FQ_zn(lQrn7KVw7mAg`kjG-&WF- zE`%4jzV~sQjVDZajwy3ng}UwG1g`V}PD>6Np{XKN>D?wgQ+-+PmML{l5+*j0X}-6% z(Xov88-F=SuG&xwOm0TWl&V(I-J%sKS6H%~%1&=}m1`?9!s8m#abi+Nrxkd)prUYtd_%V@liFDTFk9K_mBGq ze*nu1sso?*FaB=<-Ssm-r9k8bbN}M(h1oCz9$*&x&nWlV?D~wMXC7ZpE@qewa2fg; z!tl=|(45WF{5hx`QnzIl%|*@a>*NIaeNu3Wv-QR-wCr>RC#Rv;P&Ojx!MW1YWt$- z%hs2#PBvX+qJR^wle*k!K-x}@l=ehZT_HedhF#4QyP@0%UdAeENncFZ4&n)~3QP{a z53mhjj{xw03ohYtoPP!KpUJXhk908ccS;3d_%P4WCV#{6{mS9ZNNxrhOj!q#H_;<{O|uP{a=o5S|qRD3oAeQad7LJ*?9X&J~_l1~X%J!sT+~ z!-Hv0kif~V{JKUt#Uyn9jNJJ)l^%3Pk;Rf~uZnkIyaLu=m9Ux&!EIi_@_FiEwd(j( z_`##a$E4mjJz1)-w%&;A`=)U3xzAsm40#lW>6)*>El@YBaXAgYz>d(KTSjF?k8Jy1 z2ZG_NCmsVCZLh9vMt7_Sab4t5Im(}dS>EexU;9bp7A6HLnJ3XLD-9lB$Wo_zL~z~> z?@>%Nw40Dyu^YT|9?o*&bzF9q-ZXe#FRp3TTxgkCO^&!jYKzn(%p-o%sJ`p=Nq#No7Ur%nrq8kEQd2BsLBdcC!L&giy zxSI4>xB=pD@_gm;Ah1iI5w(v1lCXC@qk!?Y0rsP;1k4Q41Tr-MJQRS&Lh=s?WX^eE)0?p~>K#S$G?L`eYkO6) zru&(Ny@98BpSlSQ>EZF2GchO6v1gA7CveR0VBW{`g~$e)*H{U;3a z&-BKx402IV0N2zYlb~@rDAWf9rCS$#d0kF6EIzB;SB&*-7194a2AP#xiiSMV@0A*Z zM6GB88G|I}JyG?ihVpFl^0rE(vja_82E*isCPE`KEA7#R{;FiJZ-#?E8YAowT)=l| zh;Z;0UovtUNN|f5Cp?h)2qw&KaVz!nS4Ch;2;cEC85e-FVHBqdPGi@fe2R9Ub$ih? zd4ty`s4A1%hWBcq_O2q2iFbyNZ4oDtf9kP$^=3Eeu*CB4E{-7D`^=;ZX}qGvZx&cO zq)z%!9zM^I%OBWF)2bM+f>C1xK9-+!dO?FV-g?zj zd;DuAPOd#_(m{9J^|3b8A3MhHA8}zC1ivx+gq>TDmqBEKfN&7*e@_Yoe;Mv6x+Ihnm{zDcD+?>H+kujisK>uTo0<1G6H5<*RLg<*UyZe+-+_20oyB+QS$|%k z+yVA?lFpV*|M5`+B$*m%vr1c-TZowJT3Z1Qtr;?MUC_v%VcR+BIKXL>A)qWKKaQGZt5Y|6FRba98A8qqRS`qS9t$jN|q~$nWvsDFZ5)6DP&ee@SSiedAi~C)^bv3#esM%vK5FGzG8OC2_ z0MqYbP;FB^=CeKmreV8bW6A;iwl^~8Is0SD^CwMkuCjk@*z*P1zW-9$|D>REo&E1R z!NAU!g8pP{hHstVk0Q=+`Ns!!_lt->Zq@KlCGek@@YB`}e=XsBUp6~0;peR!{#pcp z8b5uK&x`nFYlpvUU4{|i=Hg#ToC&7T+X z7sKldF8;cA%8yY>`U?Kfc2fEE<^Jn-BR>Q%RKow?-+bgp@o;c|wp+xH;+L!8f7v_Y Xp40`Tv+LJ@pJhNvHN*q7Rk;5HJoL&? literal 0 HcmV?d00001 diff --git a/packages/System.ValueTuple.4.5.0/THIRD-PARTY-NOTICES.TXT b/packages/System.ValueTuple.4.5.0/THIRD-PARTY-NOTICES.TXT new file mode 100644 index 0000000..db542ca --- /dev/null +++ b/packages/System.ValueTuple.4.5.0/THIRD-PARTY-NOTICES.TXT @@ -0,0 +1,309 @@ +.NET Core uses third-party libraries or other resources that may be +distributed under licenses different than the .NET Core software. + +In the event that we accidentally failed to list a required notice, please +bring it to our attention. Post an issue or email us: + + dotnet@microsoft.com + +The attached notices are provided for information only. + +License notice for Slicing-by-8 +------------------------------- + +http://sourceforge.net/projects/slicing-by-8/ + +Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved + + +This software program is licensed subject to the BSD License, available at +http://www.opensource.org/licenses/bsd-license.html. + + +License notice for Unicode data +------------------------------- + +http://www.unicode.org/copyright.html#License + +Copyright © 1991-2017 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in http://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + +License notice for Zlib +----------------------- + +https://github.com/madler/zlib +http://zlib.net/zlib_license.html + +/* zlib.h -- interface of the 'zlib' general purpose compression library + version 1.2.11, January 15th, 2017 + + Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +*/ + +License notice for Mono +------------------------------- + +http://www.mono-project.com/docs/about-mono/ + +Copyright (c) .NET Foundation Contributors + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the Software), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License notice for International Organization for Standardization +----------------------------------------------------------------- + +Portions (C) International Organization for Standardization 1986: + Permission to copy in any form is granted for use with + conforming SGML systems and applications as defined in + ISO 8879, provided this notice is included in all copies. + +License notice for Intel +------------------------ + +"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License notice for Xamarin and Novell +------------------------------------- + +Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Copyright (c) 2011 Novell, Inc (http://www.novell.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Third party notice for W3C +-------------------------- + +"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE +Status: This license takes effect 13 May, 2015. +This work is being provided by the copyright holders under the following license. +License +By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. +Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications: +The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. +Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included. +Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)." +Disclaimers +THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT. +The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders." + +License notice for Bit Twiddling Hacks +-------------------------------------- + +Bit Twiddling Hacks + +By Sean Eron Anderson +seander@cs.stanford.edu + +Individually, the code snippets here are in the public domain (unless otherwise +noted) — feel free to use them however you please. The aggregate collection and +descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are +distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and +without even the implied warranty of merchantability or fitness for a particular +purpose. + +License notice for Brotli +-------------------------------------- + +Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +compress_fragment.c: +Copyright (c) 2011, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +decode_fuzzer.c: +Copyright (c) 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + diff --git a/packages/System.ValueTuple.4.5.0/lib/MonoAndroid10/_._ b/packages/System.ValueTuple.4.5.0/lib/MonoAndroid10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/lib/MonoTouch10/_._ b/packages/System.ValueTuple.4.5.0/lib/MonoTouch10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.xml b/packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.xml new file mode 100644 index 0000000..6dcce66 --- /dev/null +++ b/packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.xml @@ -0,0 +1,1299 @@ + + + + System.ValueTuple + + + + + Indicates that the use of on a member is meant to be treated as a tuple with element names. + + + + + Initializes a new instance of the class. + + + Specifies, in a pre-order depth-first traversal of a type's + construction, which occurrences are + meant to carry element names. + + + This constructor is meant to be used on types that contain an + instantiation of that contains + element names. For instance, if C is a generic type with + two type parameters, then a use of the constructed type C{, might be intended to + treat the first type argument as a tuple with element names and the + second as a tuple without element names. In which case, the + appropriate attribute specification should use a + transformNames value of { "name1", "name2", null, null, + null }. + + + + + Specifies, in a pre-order depth-first traversal of a type's + construction, which elements are + meant to carry element names. + + + + + Provides extension methods for instances to interop with C# tuples features (deconstruction syntax, converting from and to ). + + + + + Deconstruct a properly nested with 1 elements. + + + + + Deconstruct a properly nested with 2 elements. + + + + + Deconstruct a properly nested with 3 elements. + + + + + Deconstruct a properly nested with 4 elements. + + + + + Deconstruct a properly nested with 5 elements. + + + + + Deconstruct a properly nested with 6 elements. + + + + + Deconstruct a properly nested with 7 elements. + + + + + Deconstruct a properly nested with 8 elements. + + + + + Deconstruct a properly nested with 9 elements. + + + + + Deconstruct a properly nested with 10 elements. + + + + + Deconstruct a properly nested with 11 elements. + + + + + Deconstruct a properly nested with 12 elements. + + + + + Deconstruct a properly nested with 13 elements. + + + + + Deconstruct a properly nested with 14 elements. + + + + + Deconstruct a properly nested with 15 elements. + + + + + Deconstruct a properly nested with 16 elements. + + + + + Deconstruct a properly nested with 17 elements. + + + + + Deconstruct a properly nested with 18 elements. + + + + + Deconstruct a properly nested with 19 elements. + + + + + Deconstruct a properly nested with 20 elements. + + + + + Deconstruct a properly nested with 21 elements. + + + + + Make a properly nested from a properly nested with 1 element. + + + + + Make a properly nested from a properly nested with 2 elements. + + + + + Make a properly nested from a properly nested with 3 elements. + + + + + Make a properly nested from a properly nested with 4 elements. + + + + + Make a properly nested from a properly nested with 5 elements. + + + + + Make a properly nested from a properly nested with 6 elements. + + + + + Make a properly nested from a properly nested with 7 elements. + + + + + Make a properly nested from a properly nested with 8 elements. + + + + + Make a properly nested from a properly nested with 9 elements. + + + + + Make a properly nested from a properly nested with 10 elements. + + + + + Make a properly nested from a properly nested with 11 elements. + + + + + Make a properly nested from a properly nested with 12 elements. + + + + + Make a properly nested from a properly nested with 13 elements. + + + + + Make a properly nested from a properly nested with 14 elements. + + + + + Make a properly nested from a properly nested with 15 elements. + + + + + Make a properly nested from a properly nested with 16 elements. + + + + + Make a properly nested from a properly nested with 17 elements. + + + + + Make a properly nested from a properly nested with 18 elements. + + + + + Make a properly nested from a properly nested with 19 elements. + + + + + Make a properly nested from a properly nested with 20 elements. + + + + + Make a properly nested from a properly nested with 21 elements. + + + + + Make a properly nested from a properly nested with 1 element. + + + + + Make a properly nested from a properly nested with 2 elements. + + + + + Make a properly nested from a properly nested with 3 elements. + + + + + Make a properly nested from a properly nested with 4 elements. + + + + + Make a properly nested from a properly nested with 5 elements. + + + + + Make a properly nested from a properly nested with 6 elements. + + + + + Make a properly nested from a properly nested with 7 elements. + + + + + Make a properly nested from a properly nested with 8 elements. + + + + + Make a properly nested from a properly nested with 9 elements. + + + + + Make a properly nested from a properly nested with 10 elements. + + + + + Make a properly nested from a properly nested with 11 elements. + + + + + Make a properly nested from a properly nested with 12 elements. + + + + + Make a properly nested from a properly nested with 13 elements. + + + + + Make a properly nested from a properly nested with 14 elements. + + + + + Make a properly nested from a properly nested with 15 elements. + + + + + Make a properly nested from a properly nested with 16 elements. + + + + + Make a properly nested from a properly nested with 17 elements. + + + + + Make a properly nested from a properly nested with 18 elements. + + + + + Make a properly nested from a properly nested with 19 elements. + + + + + Make a properly nested from a properly nested with 20 elements. + + + + + Make a properly nested from a properly nested with 21 elements. + + + + + Helper so we can call some tuple methods recursively without knowing the underlying types. + + + + + The ValueTuple types (from arity 0 to 8) comprise the runtime implementation that underlies tuples in C# and struct tuples in F#. + Aside from created via language syntax, they are most easily created via the ValueTuple.Create factory methods. + The System.ValueTuple types differ from the System.Tuple types in that: + - they are structs rather than classes, + - they are mutable rather than readonly, and + - their members (such as Item1, Item2, etc) are fields rather than properties. + + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if is a . + + + Returns a value indicating whether this instance is equal to a specified value. + An instance to compare to this instance. + true if has the same value as this instance; otherwise, false. + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + Returns the hash code for this instance. + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (). + + + + Creates a new struct 0-tuple. + A 0-tuple. + + + Creates a new struct 1-tuple, or singleton. + The type of the first component of the tuple. + The value of the first component of the tuple. + A 1-tuple (singleton) whose value is (item1). + + + Creates a new struct 2-tuple, or pair. + The type of the first component of the tuple. + The type of the second component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + A 2-tuple (pair) whose value is (item1, item2). + + + Creates a new struct 3-tuple, or triple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + A 3-tuple (triple) whose value is (item1, item2, item3). + + + Creates a new struct 4-tuple, or quadruple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + A 4-tuple (quadruple) whose value is (item1, item2, item3, item4). + + + Creates a new struct 5-tuple, or quintuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + A 5-tuple (quintuple) whose value is (item1, item2, item3, item4, item5). + + + Creates a new struct 6-tuple, or sextuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The type of the sixth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + The value of the sixth component of the tuple. + A 6-tuple (sextuple) whose value is (item1, item2, item3, item4, item5, item6). + + + Creates a new struct 7-tuple, or septuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The type of the sixth component of the tuple. + The type of the seventh component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + The value of the sixth component of the tuple. + The value of the seventh component of the tuple. + A 7-tuple (septuple) whose value is (item1, item2, item3, item4, item5, item6, item7). + + + Creates a new struct 8-tuple, or octuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The type of the sixth component of the tuple. + The type of the seventh component of the tuple. + The type of the eighth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + The value of the sixth component of the tuple. + The value of the seventh component of the tuple. + The value of the eighth component of the tuple. + An 8-tuple (octuple) whose value is (item1, item2, item3, item4, item5, item6, item7, item8). + + + Represents a 1-tuple, or singleton, as a value type. + The type of the tuple's only component. + + + + The current instance's first component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its field + is equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1), + where Item1 represents the value of . If the field is , + it is represented as . + + + + + Represents a 2-tuple, or pair, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + + Returns a value that indicates whether the current instance is equal to a specified object based on a specified comparison method. + + The object to compare with this instance. + An object that defines the method to use to evaluate whether the two objects are equal. + if the current instance is equal to the specified object; otherwise, . + + + This member is an explicit interface member implementation. It can be used only when the + instance is cast to an interface. + + The implementation is called only if other is not , + and if it can be successfully cast (in C#) or converted (in Visual Basic) to a + whose components are of the same types as those of the current instance. The IStructuralEquatable.Equals(Object, IEqualityComparer) method + first passes the values of the objects to be compared to the + implementation. If this method call returns , the method is + called again and passed the values of the two instances. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2), + where Item1 and Item2 represent the values of the + and fields. If either field value is , + it is represented as . + + + + + Represents a 3-tuple, or triple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3). + If any field value is , it is represented as . + + + + + Represents a 4-tuple, or quadruple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4). + If any field value is , it is represented as . + + + + + Represents a 5-tuple, or quintuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5). + If any field value is , it is represented as . + + + + + Represents a 6-tuple, or sixtuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + The type of the tuple's sixth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + The current instance's sixth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + The value of the tuple's sixth component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6). + If any field value is , it is represented as . + + + + + Represents a 7-tuple, or sentuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + The type of the tuple's sixth component. + The type of the tuple's seventh component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + The current instance's sixth component. + + + + + The current instance's seventh component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + The value of the tuple's sixth component. + The value of the tuple's seventh component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7). + If any field value is , it is represented as . + + + + + Represents an 8-tuple, or octuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + The type of the tuple's sixth component. + The type of the tuple's seventh component. + The type of the tuple's eighth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + The current instance's sixth component. + + + + + The current instance's seventh component. + + + + + The current instance's eighth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + The value of the tuple's sixth component. + The value of the tuple's seventh component. + The value of the tuple's eight component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7, Rest). + If any field value is , it is represented as . + + + + diff --git a/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.xml b/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.xml new file mode 100644 index 0000000..1151832 --- /dev/null +++ b/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.xml @@ -0,0 +1,8 @@ + + + + System.ValueTuple + + + + diff --git a/packages/System.ValueTuple.4.5.0/lib/netcoreapp2.0/_._ b/packages/System.ValueTuple.4.5.0/lib/netcoreapp2.0/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.xml b/packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.xml new file mode 100644 index 0000000..6dcce66 --- /dev/null +++ b/packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.xml @@ -0,0 +1,1299 @@ + + + + System.ValueTuple + + + + + Indicates that the use of on a member is meant to be treated as a tuple with element names. + + + + + Initializes a new instance of the class. + + + Specifies, in a pre-order depth-first traversal of a type's + construction, which occurrences are + meant to carry element names. + + + This constructor is meant to be used on types that contain an + instantiation of that contains + element names. For instance, if C is a generic type with + two type parameters, then a use of the constructed type C{, might be intended to + treat the first type argument as a tuple with element names and the + second as a tuple without element names. In which case, the + appropriate attribute specification should use a + transformNames value of { "name1", "name2", null, null, + null }. + + + + + Specifies, in a pre-order depth-first traversal of a type's + construction, which elements are + meant to carry element names. + + + + + Provides extension methods for instances to interop with C# tuples features (deconstruction syntax, converting from and to ). + + + + + Deconstruct a properly nested with 1 elements. + + + + + Deconstruct a properly nested with 2 elements. + + + + + Deconstruct a properly nested with 3 elements. + + + + + Deconstruct a properly nested with 4 elements. + + + + + Deconstruct a properly nested with 5 elements. + + + + + Deconstruct a properly nested with 6 elements. + + + + + Deconstruct a properly nested with 7 elements. + + + + + Deconstruct a properly nested with 8 elements. + + + + + Deconstruct a properly nested with 9 elements. + + + + + Deconstruct a properly nested with 10 elements. + + + + + Deconstruct a properly nested with 11 elements. + + + + + Deconstruct a properly nested with 12 elements. + + + + + Deconstruct a properly nested with 13 elements. + + + + + Deconstruct a properly nested with 14 elements. + + + + + Deconstruct a properly nested with 15 elements. + + + + + Deconstruct a properly nested with 16 elements. + + + + + Deconstruct a properly nested with 17 elements. + + + + + Deconstruct a properly nested with 18 elements. + + + + + Deconstruct a properly nested with 19 elements. + + + + + Deconstruct a properly nested with 20 elements. + + + + + Deconstruct a properly nested with 21 elements. + + + + + Make a properly nested from a properly nested with 1 element. + + + + + Make a properly nested from a properly nested with 2 elements. + + + + + Make a properly nested from a properly nested with 3 elements. + + + + + Make a properly nested from a properly nested with 4 elements. + + + + + Make a properly nested from a properly nested with 5 elements. + + + + + Make a properly nested from a properly nested with 6 elements. + + + + + Make a properly nested from a properly nested with 7 elements. + + + + + Make a properly nested from a properly nested with 8 elements. + + + + + Make a properly nested from a properly nested with 9 elements. + + + + + Make a properly nested from a properly nested with 10 elements. + + + + + Make a properly nested from a properly nested with 11 elements. + + + + + Make a properly nested from a properly nested with 12 elements. + + + + + Make a properly nested from a properly nested with 13 elements. + + + + + Make a properly nested from a properly nested with 14 elements. + + + + + Make a properly nested from a properly nested with 15 elements. + + + + + Make a properly nested from a properly nested with 16 elements. + + + + + Make a properly nested from a properly nested with 17 elements. + + + + + Make a properly nested from a properly nested with 18 elements. + + + + + Make a properly nested from a properly nested with 19 elements. + + + + + Make a properly nested from a properly nested with 20 elements. + + + + + Make a properly nested from a properly nested with 21 elements. + + + + + Make a properly nested from a properly nested with 1 element. + + + + + Make a properly nested from a properly nested with 2 elements. + + + + + Make a properly nested from a properly nested with 3 elements. + + + + + Make a properly nested from a properly nested with 4 elements. + + + + + Make a properly nested from a properly nested with 5 elements. + + + + + Make a properly nested from a properly nested with 6 elements. + + + + + Make a properly nested from a properly nested with 7 elements. + + + + + Make a properly nested from a properly nested with 8 elements. + + + + + Make a properly nested from a properly nested with 9 elements. + + + + + Make a properly nested from a properly nested with 10 elements. + + + + + Make a properly nested from a properly nested with 11 elements. + + + + + Make a properly nested from a properly nested with 12 elements. + + + + + Make a properly nested from a properly nested with 13 elements. + + + + + Make a properly nested from a properly nested with 14 elements. + + + + + Make a properly nested from a properly nested with 15 elements. + + + + + Make a properly nested from a properly nested with 16 elements. + + + + + Make a properly nested from a properly nested with 17 elements. + + + + + Make a properly nested from a properly nested with 18 elements. + + + + + Make a properly nested from a properly nested with 19 elements. + + + + + Make a properly nested from a properly nested with 20 elements. + + + + + Make a properly nested from a properly nested with 21 elements. + + + + + Helper so we can call some tuple methods recursively without knowing the underlying types. + + + + + The ValueTuple types (from arity 0 to 8) comprise the runtime implementation that underlies tuples in C# and struct tuples in F#. + Aside from created via language syntax, they are most easily created via the ValueTuple.Create factory methods. + The System.ValueTuple types differ from the System.Tuple types in that: + - they are structs rather than classes, + - they are mutable rather than readonly, and + - their members (such as Item1, Item2, etc) are fields rather than properties. + + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if is a . + + + Returns a value indicating whether this instance is equal to a specified value. + An instance to compare to this instance. + true if has the same value as this instance; otherwise, false. + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + Returns the hash code for this instance. + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (). + + + + Creates a new struct 0-tuple. + A 0-tuple. + + + Creates a new struct 1-tuple, or singleton. + The type of the first component of the tuple. + The value of the first component of the tuple. + A 1-tuple (singleton) whose value is (item1). + + + Creates a new struct 2-tuple, or pair. + The type of the first component of the tuple. + The type of the second component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + A 2-tuple (pair) whose value is (item1, item2). + + + Creates a new struct 3-tuple, or triple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + A 3-tuple (triple) whose value is (item1, item2, item3). + + + Creates a new struct 4-tuple, or quadruple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + A 4-tuple (quadruple) whose value is (item1, item2, item3, item4). + + + Creates a new struct 5-tuple, or quintuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + A 5-tuple (quintuple) whose value is (item1, item2, item3, item4, item5). + + + Creates a new struct 6-tuple, or sextuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The type of the sixth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + The value of the sixth component of the tuple. + A 6-tuple (sextuple) whose value is (item1, item2, item3, item4, item5, item6). + + + Creates a new struct 7-tuple, or septuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The type of the sixth component of the tuple. + The type of the seventh component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + The value of the sixth component of the tuple. + The value of the seventh component of the tuple. + A 7-tuple (septuple) whose value is (item1, item2, item3, item4, item5, item6, item7). + + + Creates a new struct 8-tuple, or octuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The type of the sixth component of the tuple. + The type of the seventh component of the tuple. + The type of the eighth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + The value of the sixth component of the tuple. + The value of the seventh component of the tuple. + The value of the eighth component of the tuple. + An 8-tuple (octuple) whose value is (item1, item2, item3, item4, item5, item6, item7, item8). + + + Represents a 1-tuple, or singleton, as a value type. + The type of the tuple's only component. + + + + The current instance's first component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its field + is equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1), + where Item1 represents the value of . If the field is , + it is represented as . + + + + + Represents a 2-tuple, or pair, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + + Returns a value that indicates whether the current instance is equal to a specified object based on a specified comparison method. + + The object to compare with this instance. + An object that defines the method to use to evaluate whether the two objects are equal. + if the current instance is equal to the specified object; otherwise, . + + + This member is an explicit interface member implementation. It can be used only when the + instance is cast to an interface. + + The implementation is called only if other is not , + and if it can be successfully cast (in C#) or converted (in Visual Basic) to a + whose components are of the same types as those of the current instance. The IStructuralEquatable.Equals(Object, IEqualityComparer) method + first passes the values of the objects to be compared to the + implementation. If this method call returns , the method is + called again and passed the values of the two instances. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2), + where Item1 and Item2 represent the values of the + and fields. If either field value is , + it is represented as . + + + + + Represents a 3-tuple, or triple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3). + If any field value is , it is represented as . + + + + + Represents a 4-tuple, or quadruple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4). + If any field value is , it is represented as . + + + + + Represents a 5-tuple, or quintuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5). + If any field value is , it is represented as . + + + + + Represents a 6-tuple, or sixtuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + The type of the tuple's sixth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + The current instance's sixth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + The value of the tuple's sixth component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6). + If any field value is , it is represented as . + + + + + Represents a 7-tuple, or sentuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + The type of the tuple's sixth component. + The type of the tuple's seventh component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + The current instance's sixth component. + + + + + The current instance's seventh component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + The value of the tuple's sixth component. + The value of the tuple's seventh component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7). + If any field value is , it is represented as . + + + + + Represents an 8-tuple, or octuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + The type of the tuple's sixth component. + The type of the tuple's seventh component. + The type of the tuple's eighth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + The current instance's sixth component. + + + + + The current instance's seventh component. + + + + + The current instance's eighth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + The value of the tuple's sixth component. + The value of the tuple's seventh component. + The value of the tuple's eight component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7, Rest). + If any field value is , it is represented as . + + + + diff --git a/packages/System.ValueTuple.4.5.0/lib/netstandard2.0/_._ b/packages/System.ValueTuple.4.5.0/lib/netstandard2.0/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml b/packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml new file mode 100644 index 0000000..6dcce66 --- /dev/null +++ b/packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml @@ -0,0 +1,1299 @@ + + + + System.ValueTuple + + + + + Indicates that the use of on a member is meant to be treated as a tuple with element names. + + + + + Initializes a new instance of the class. + + + Specifies, in a pre-order depth-first traversal of a type's + construction, which occurrences are + meant to carry element names. + + + This constructor is meant to be used on types that contain an + instantiation of that contains + element names. For instance, if C is a generic type with + two type parameters, then a use of the constructed type C{, might be intended to + treat the first type argument as a tuple with element names and the + second as a tuple without element names. In which case, the + appropriate attribute specification should use a + transformNames value of { "name1", "name2", null, null, + null }. + + + + + Specifies, in a pre-order depth-first traversal of a type's + construction, which elements are + meant to carry element names. + + + + + Provides extension methods for instances to interop with C# tuples features (deconstruction syntax, converting from and to ). + + + + + Deconstruct a properly nested with 1 elements. + + + + + Deconstruct a properly nested with 2 elements. + + + + + Deconstruct a properly nested with 3 elements. + + + + + Deconstruct a properly nested with 4 elements. + + + + + Deconstruct a properly nested with 5 elements. + + + + + Deconstruct a properly nested with 6 elements. + + + + + Deconstruct a properly nested with 7 elements. + + + + + Deconstruct a properly nested with 8 elements. + + + + + Deconstruct a properly nested with 9 elements. + + + + + Deconstruct a properly nested with 10 elements. + + + + + Deconstruct a properly nested with 11 elements. + + + + + Deconstruct a properly nested with 12 elements. + + + + + Deconstruct a properly nested with 13 elements. + + + + + Deconstruct a properly nested with 14 elements. + + + + + Deconstruct a properly nested with 15 elements. + + + + + Deconstruct a properly nested with 16 elements. + + + + + Deconstruct a properly nested with 17 elements. + + + + + Deconstruct a properly nested with 18 elements. + + + + + Deconstruct a properly nested with 19 elements. + + + + + Deconstruct a properly nested with 20 elements. + + + + + Deconstruct a properly nested with 21 elements. + + + + + Make a properly nested from a properly nested with 1 element. + + + + + Make a properly nested from a properly nested with 2 elements. + + + + + Make a properly nested from a properly nested with 3 elements. + + + + + Make a properly nested from a properly nested with 4 elements. + + + + + Make a properly nested from a properly nested with 5 elements. + + + + + Make a properly nested from a properly nested with 6 elements. + + + + + Make a properly nested from a properly nested with 7 elements. + + + + + Make a properly nested from a properly nested with 8 elements. + + + + + Make a properly nested from a properly nested with 9 elements. + + + + + Make a properly nested from a properly nested with 10 elements. + + + + + Make a properly nested from a properly nested with 11 elements. + + + + + Make a properly nested from a properly nested with 12 elements. + + + + + Make a properly nested from a properly nested with 13 elements. + + + + + Make a properly nested from a properly nested with 14 elements. + + + + + Make a properly nested from a properly nested with 15 elements. + + + + + Make a properly nested from a properly nested with 16 elements. + + + + + Make a properly nested from a properly nested with 17 elements. + + + + + Make a properly nested from a properly nested with 18 elements. + + + + + Make a properly nested from a properly nested with 19 elements. + + + + + Make a properly nested from a properly nested with 20 elements. + + + + + Make a properly nested from a properly nested with 21 elements. + + + + + Make a properly nested from a properly nested with 1 element. + + + + + Make a properly nested from a properly nested with 2 elements. + + + + + Make a properly nested from a properly nested with 3 elements. + + + + + Make a properly nested from a properly nested with 4 elements. + + + + + Make a properly nested from a properly nested with 5 elements. + + + + + Make a properly nested from a properly nested with 6 elements. + + + + + Make a properly nested from a properly nested with 7 elements. + + + + + Make a properly nested from a properly nested with 8 elements. + + + + + Make a properly nested from a properly nested with 9 elements. + + + + + Make a properly nested from a properly nested with 10 elements. + + + + + Make a properly nested from a properly nested with 11 elements. + + + + + Make a properly nested from a properly nested with 12 elements. + + + + + Make a properly nested from a properly nested with 13 elements. + + + + + Make a properly nested from a properly nested with 14 elements. + + + + + Make a properly nested from a properly nested with 15 elements. + + + + + Make a properly nested from a properly nested with 16 elements. + + + + + Make a properly nested from a properly nested with 17 elements. + + + + + Make a properly nested from a properly nested with 18 elements. + + + + + Make a properly nested from a properly nested with 19 elements. + + + + + Make a properly nested from a properly nested with 20 elements. + + + + + Make a properly nested from a properly nested with 21 elements. + + + + + Helper so we can call some tuple methods recursively without knowing the underlying types. + + + + + The ValueTuple types (from arity 0 to 8) comprise the runtime implementation that underlies tuples in C# and struct tuples in F#. + Aside from created via language syntax, they are most easily created via the ValueTuple.Create factory methods. + The System.ValueTuple types differ from the System.Tuple types in that: + - they are structs rather than classes, + - they are mutable rather than readonly, and + - their members (such as Item1, Item2, etc) are fields rather than properties. + + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if is a . + + + Returns a value indicating whether this instance is equal to a specified value. + An instance to compare to this instance. + true if has the same value as this instance; otherwise, false. + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + Returns the hash code for this instance. + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (). + + + + Creates a new struct 0-tuple. + A 0-tuple. + + + Creates a new struct 1-tuple, or singleton. + The type of the first component of the tuple. + The value of the first component of the tuple. + A 1-tuple (singleton) whose value is (item1). + + + Creates a new struct 2-tuple, or pair. + The type of the first component of the tuple. + The type of the second component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + A 2-tuple (pair) whose value is (item1, item2). + + + Creates a new struct 3-tuple, or triple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + A 3-tuple (triple) whose value is (item1, item2, item3). + + + Creates a new struct 4-tuple, or quadruple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + A 4-tuple (quadruple) whose value is (item1, item2, item3, item4). + + + Creates a new struct 5-tuple, or quintuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + A 5-tuple (quintuple) whose value is (item1, item2, item3, item4, item5). + + + Creates a new struct 6-tuple, or sextuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The type of the sixth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + The value of the sixth component of the tuple. + A 6-tuple (sextuple) whose value is (item1, item2, item3, item4, item5, item6). + + + Creates a new struct 7-tuple, or septuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The type of the sixth component of the tuple. + The type of the seventh component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + The value of the sixth component of the tuple. + The value of the seventh component of the tuple. + A 7-tuple (septuple) whose value is (item1, item2, item3, item4, item5, item6, item7). + + + Creates a new struct 8-tuple, or octuple. + The type of the first component of the tuple. + The type of the second component of the tuple. + The type of the third component of the tuple. + The type of the fourth component of the tuple. + The type of the fifth component of the tuple. + The type of the sixth component of the tuple. + The type of the seventh component of the tuple. + The type of the eighth component of the tuple. + The value of the first component of the tuple. + The value of the second component of the tuple. + The value of the third component of the tuple. + The value of the fourth component of the tuple. + The value of the fifth component of the tuple. + The value of the sixth component of the tuple. + The value of the seventh component of the tuple. + The value of the eighth component of the tuple. + An 8-tuple (octuple) whose value is (item1, item2, item3, item4, item5, item6, item7, item8). + + + Represents a 1-tuple, or singleton, as a value type. + The type of the tuple's only component. + + + + The current instance's first component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its field + is equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1), + where Item1 represents the value of . If the field is , + it is represented as . + + + + + Represents a 2-tuple, or pair, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + + Returns a value that indicates whether the current instance is equal to a specified object based on a specified comparison method. + + The object to compare with this instance. + An object that defines the method to use to evaluate whether the two objects are equal. + if the current instance is equal to the specified object; otherwise, . + + + This member is an explicit interface member implementation. It can be used only when the + instance is cast to an interface. + + The implementation is called only if other is not , + and if it can be successfully cast (in C#) or converted (in Visual Basic) to a + whose components are of the same types as those of the current instance. The IStructuralEquatable.Equals(Object, IEqualityComparer) method + first passes the values of the objects to be compared to the + implementation. If this method call returns , the method is + called again and passed the values of the two instances. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2), + where Item1 and Item2 represent the values of the + and fields. If either field value is , + it is represented as . + + + + + Represents a 3-tuple, or triple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3). + If any field value is , it is represented as . + + + + + Represents a 4-tuple, or quadruple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4). + If any field value is , it is represented as . + + + + + Represents a 5-tuple, or quintuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5). + If any field value is , it is represented as . + + + + + Represents a 6-tuple, or sixtuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + The type of the tuple's sixth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + The current instance's sixth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + The value of the tuple's sixth component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6). + If any field value is , it is represented as . + + + + + Represents a 7-tuple, or sentuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + The type of the tuple's sixth component. + The type of the tuple's seventh component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + The current instance's sixth component. + + + + + The current instance's seventh component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + The value of the tuple's sixth component. + The value of the tuple's seventh component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7). + If any field value is , it is represented as . + + + + + Represents an 8-tuple, or octuple, as a value type. + + The type of the tuple's first component. + The type of the tuple's second component. + The type of the tuple's third component. + The type of the tuple's fourth component. + The type of the tuple's fifth component. + The type of the tuple's sixth component. + The type of the tuple's seventh component. + The type of the tuple's eighth component. + + + + The current instance's first component. + + + + + The current instance's second component. + + + + + The current instance's third component. + + + + + The current instance's fourth component. + + + + + The current instance's fifth component. + + + + + The current instance's sixth component. + + + + + The current instance's seventh component. + + + + + The current instance's eighth component. + + + + + Initializes a new instance of the value type. + + The value of the tuple's first component. + The value of the tuple's second component. + The value of the tuple's third component. + The value of the tuple's fourth component. + The value of the tuple's fifth component. + The value of the tuple's sixth component. + The value of the tuple's seventh component. + The value of the tuple's eight component. + + + + Returns a value that indicates whether the current instance is equal to a specified object. + + The object to compare with this instance. + if the current instance is equal to the specified object; otherwise, . + + The parameter is considered to be equal to the current instance under the following conditions: + + It is a value type. + Its components are of the same types as those of the current instance. + Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component. + + + + + + Returns a value that indicates whether the current + instance is equal to a specified . + + The tuple to compare with this instance. + if the current instance is equal to the specified tuple; otherwise, . + + The parameter is considered to be equal to the current instance if each of its fields + are equal to that of the current instance, using the default comparer for that field's type. + + + + Compares this instance to a specified instance and returns an indication of their relative values. + An instance to compare. + + A signed number indicating the relative values of this instance and . + Returns less than zero if this instance is less than , zero if this + instance is equal to , and greater than zero if this instance is greater + than . + + + + + Returns the hash code for the current instance. + + A 32-bit signed integer hash code. + + + + Returns a string that represents the value of this instance. + + The string representation of this instance. + + The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7, Rest). + If any field value is , it is represented as . + + + + diff --git a/packages/System.ValueTuple.4.5.0/lib/uap10.0.16299/_._ b/packages/System.ValueTuple.4.5.0/lib/uap10.0.16299/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/lib/xamarinios10/_._ b/packages/System.ValueTuple.4.5.0/lib/xamarinios10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/lib/xamarinmac20/_._ b/packages/System.ValueTuple.4.5.0/lib/xamarinmac20/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/lib/xamarintvos10/_._ b/packages/System.ValueTuple.4.5.0/lib/xamarintvos10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/lib/xamarinwatchos10/_._ b/packages/System.ValueTuple.4.5.0/lib/xamarinwatchos10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/ref/MonoAndroid10/_._ b/packages/System.ValueTuple.4.5.0/ref/MonoAndroid10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/ref/MonoTouch10/_._ b/packages/System.ValueTuple.4.5.0/ref/MonoTouch10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/ref/netcoreapp2.0/_._ b/packages/System.ValueTuple.4.5.0/ref/netcoreapp2.0/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/ref/netstandard2.0/_._ b/packages/System.ValueTuple.4.5.0/ref/netstandard2.0/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/ref/uap10.0.16299/_._ b/packages/System.ValueTuple.4.5.0/ref/uap10.0.16299/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/ref/xamarinios10/_._ b/packages/System.ValueTuple.4.5.0/ref/xamarinios10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/ref/xamarinmac20/_._ b/packages/System.ValueTuple.4.5.0/ref/xamarinmac20/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/ref/xamarintvos10/_._ b/packages/System.ValueTuple.4.5.0/ref/xamarintvos10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/ref/xamarinwatchos10/_._ b/packages/System.ValueTuple.4.5.0/ref/xamarinwatchos10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/useSharedDesignerContext.txt b/packages/System.ValueTuple.4.5.0/useSharedDesignerContext.txt new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.ValueTuple.4.5.0/version.txt b/packages/System.ValueTuple.4.5.0/version.txt new file mode 100644 index 0000000..47004a0 --- /dev/null +++ b/packages/System.ValueTuple.4.5.0/version.txt @@ -0,0 +1 @@ +30ab651fcb4354552bd4891619a0bdd81e0ebdbf