keepasshttp-1.8.4.2/000077500000000000000000000000001306306563300142245ustar00rootroot00000000000000keepasshttp-1.8.4.2/.gitattributes000066400000000000000000000000161306306563300171140ustar00rootroot00000000000000*.plgx -text keepasshttp-1.8.4.2/.gitignore000066400000000000000000000001571306306563300162170ustar00rootroot00000000000000*.swp *.suo obj bin create-plgx.bat /#portable/ *.cer *.pvk *.csproj.user /KeePassHttp/KeePassHttp.dllkeepasshttp-1.8.4.2/KeePassHttp.sln000066400000000000000000000016371306306563300171440ustar00rootroot00000000000000 Microsoft Visual Studio Solution File, Format Version 11.00 # Visual C# Express 2010 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeePassHttp", "KeePassHttp\KeePassHttp.csproj", "{9DFAB9D7-6BB5-4C6C-86EC-C67B494008D2}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {9DFAB9D7-6BB5-4C6C-86EC-C67B494008D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {9DFAB9D7-6BB5-4C6C-86EC-C67B494008D2}.Debug|Any CPU.Build.0 = Debug|Any CPU {9DFAB9D7-6BB5-4C6C-86EC-C67B494008D2}.Release|Any CPU.ActiveCfg = Release|Any CPU {9DFAB9D7-6BB5-4C6C-86EC-C67B494008D2}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal keepasshttp-1.8.4.2/KeePassHttp/000077500000000000000000000000001306306563300164175ustar00rootroot00000000000000keepasshttp-1.8.4.2/KeePassHttp/AccessControlForm.Designer.cs000066400000000000000000000133271306306563300241010ustar00rootroot00000000000000namespace KeePassHttp { partial class AccessControlForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.Windows.Forms.Button AllowButton; System.Windows.Forms.Button DenyButton; this.EntriesBox = new System.Windows.Forms.ListBox(); this.RememberCheck = new System.Windows.Forms.CheckBox(); this.ConfirmTextLabel = new System.Windows.Forms.Label(); AllowButton = new System.Windows.Forms.Button(); DenyButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // AllowButton // AllowButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); AllowButton.Location = new System.Drawing.Point(176, 207); AllowButton.Name = "AllowButton"; AllowButton.Size = new System.Drawing.Size(75, 23); AllowButton.TabIndex = 1; AllowButton.Text = "&Allow"; AllowButton.UseVisualStyleBackColor = true; AllowButton.Click += new System.EventHandler(this.AllowButton_Click); // // DenyButton // DenyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); DenyButton.Location = new System.Drawing.Point(257, 207); DenyButton.Name = "DenyButton"; DenyButton.Size = new System.Drawing.Size(75, 23); DenyButton.TabIndex = 2; DenyButton.Text = "&Deny"; DenyButton.UseVisualStyleBackColor = true; DenyButton.Click += new System.EventHandler(this.DenyButton_Click); // // EntriesBox // this.EntriesBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.EntriesBox.FormattingEnabled = true; this.EntriesBox.Location = new System.Drawing.Point(12, 12); this.EntriesBox.Name = "EntriesBox"; this.EntriesBox.Size = new System.Drawing.Size(320, 108); this.EntriesBox.TabIndex = 0; // // RememberCheck // this.RememberCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.RememberCheck.AutoSize = true; this.RememberCheck.Location = new System.Drawing.Point(12, 211); this.RememberCheck.Name = "RememberCheck"; this.RememberCheck.Size = new System.Drawing.Size(138, 17); this.RememberCheck.TabIndex = 3; this.RememberCheck.Text = "Remember this decision"; this.RememberCheck.UseVisualStyleBackColor = true; // // ConfirmTextLabel // this.ConfirmTextLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.ConfirmTextLabel.Location = new System.Drawing.Point(9, 136); this.ConfirmTextLabel.Name = "ConfirmTextLabel"; this.ConfirmTextLabel.Size = new System.Drawing.Size(323, 65); this.ConfirmTextLabel.TabIndex = 4; this.ConfirmTextLabel.Text = "www.somewhere.com has requested access to passwords for the above item(s). Please" + " select whether you want to allow access."; // // AccessControlForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(344, 242); this.Controls.Add(this.ConfirmTextLabel); this.Controls.Add(this.RememberCheck); this.Controls.Add(DenyButton); this.Controls.Add(AllowButton); this.Controls.Add(this.EntriesBox); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "AccessControlForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "KeePassHttp: Confirm Access"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ListBox EntriesBox; private System.Windows.Forms.CheckBox RememberCheck; private System.Windows.Forms.Label ConfirmTextLabel; } }keepasshttp-1.8.4.2/KeePassHttp/AccessControlForm.cs000066400000000000000000000047331306306563300223430ustar00rootroot00000000000000using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using KeePassLib; namespace KeePassHttp { public partial class AccessControlForm : Form { public AccessControlForm() { InitializeComponent(); } private void AllowButton_Click(object sender, EventArgs e) { Allowed = true; Close(); } private void DenyButton_Click(object sender, EventArgs e) { Denied = true; Close(); } public bool Allowed = false; public bool Denied = false; public bool Remember { get { return RememberCheck.Checked; } } public List Entries { set { EntriesBox.SelectionMode = SelectionMode.None; Count = value.Count; SetLabel(); foreach (var e in value) { if (e == null || e.Strings == null || e.Strings.Get(PwDefs.TitleField) == null) continue; var title = e.Strings.Get(PwDefs.TitleField).ReadString(); if (Plugin == null || Plugin.GetUserPass(e) == null) continue; var username = Plugin.GetUserPass(e)[0]; EntriesBox.Items.Add(title + " - " + username); } } } public string Host { set { _Host = value; SetLabel(); } } private void SetLabel() { if (_Host == null) return; ConfirmTextLabel.Text = String.Format( Message, _Host, Count == 1 ? "item" : "items", Count == 1 ? "" : "\nYou can only grant access to all items.", Count == 1 ? "" : " to all of them" ); } private int Count = 0; private const string Message = "{0} has requested access to passwords for the above {1}.{2} " + "Please select whether you want to allow access{3}."; private string _Host = null; internal KeePassHttpExt Plugin = null; } } keepasshttp-1.8.4.2/KeePassHttp/AccessControlForm.resx000066400000000000000000000140601306306563300227110ustar00rootroot00000000000000 text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 False False keepasshttp-1.8.4.2/KeePassHttp/ConfigOpt.cs000066400000000000000000000076201306306563300206430ustar00rootroot00000000000000using KeePass.App.Configuration; namespace KeePassHttp { public class ConfigOpt { readonly AceCustomConfig _config; const string ReceiveCredentialNotificationKey = "KeePassHttp_ReceiveCredentialNotification"; const string SpecificMatchingOnlyKey = "KeePassHttp_SpecificMatchingOnly"; const string UnlockDatabaseRequestKey = "KeePassHttp_UnlockDatabaseRequest"; const string AlwaysAllowAccessKey = "KeePassHttp_AlwaysAllowAccess"; const string AlwaysAllowUpdatesKey = "KeePassHttp_AlwaysAllowUpdates"; const string SearchInAllOpenedDatabasesKey = "KeePassHttp_SearchInAllOpenedDatabases"; const string HideExpiredKey = "KeePassHttp_HideExpired"; const string MatchSchemesKey = "KeePassHttp_MatchSchemes"; const string ReturnStringFieldsKey = "KeePassHttp_ReturnStringFields"; const string ReturnStringFieldsWithKphOnlyKey = "KeePassHttp_ReturnStringFieldsWithKphOnly"; const string SortResultByUsernameKey = "KeePassHttp_SortResultByUsername"; const string ListenerPortKey = "KeePassHttp_ListenerPort"; const string ListenerHostKey = "KeePassHttp_ListenerHost"; public ConfigOpt(AceCustomConfig config) { _config = config; } public bool ReceiveCredentialNotification { get { return _config.GetBool(ReceiveCredentialNotificationKey, true); } set { _config.SetBool(ReceiveCredentialNotificationKey, value); } } public bool UnlockDatabaseRequest { get { return _config.GetBool(UnlockDatabaseRequestKey, false); } set { _config.SetBool(UnlockDatabaseRequestKey, value); } } public bool SpecificMatchingOnly { get { return _config.GetBool(SpecificMatchingOnlyKey, false); } set { _config.SetBool(SpecificMatchingOnlyKey, value); } } public bool AlwaysAllowAccess { get { return _config.GetBool(AlwaysAllowAccessKey, false); } set { _config.SetBool(AlwaysAllowAccessKey, value); } } public bool AlwaysAllowUpdates { get { return _config.GetBool(AlwaysAllowUpdatesKey, false); } set { _config.SetBool(AlwaysAllowUpdatesKey, value); } } public bool SearchInAllOpenedDatabases { get { return _config.GetBool(SearchInAllOpenedDatabasesKey, false); } set { _config.SetBool(SearchInAllOpenedDatabasesKey, value); } } public bool HideExpired { get { return _config.GetBool(HideExpiredKey, false); } set { _config.SetBool(HideExpiredKey, value); } } public bool MatchSchemes { get { return _config.GetBool(MatchSchemesKey, false); } set { _config.SetBool(MatchSchemesKey, value); } } public bool ReturnStringFields { get { return _config.GetBool(ReturnStringFieldsKey, false); } set { _config.SetBool(ReturnStringFieldsKey, value); } } public bool ReturnStringFieldsWithKphOnly { get { return _config.GetBool(ReturnStringFieldsWithKphOnlyKey, true); } set { _config.SetBool(ReturnStringFieldsWithKphOnlyKey, value); } } public bool SortResultByUsername { get { return _config.GetBool(SortResultByUsernameKey, true); } set { _config.SetBool(SortResultByUsernameKey, value); } } public long ListenerPort { get { return _config.GetLong(ListenerPortKey, KeePassHttpExt.DEFAULT_PORT); } set { _config.SetLong(ListenerPortKey, value); } } public string ListenerHost { get { return _config.GetString(ListenerHostKey, KeePassHttpExt.DEFAULT_HOST); } set { _config.SetString(ListenerHostKey, value); } } } }keepasshttp-1.8.4.2/KeePassHttp/ConfirmAssociationForm.Designer.cs000066400000000000000000000141421306306563300251250ustar00rootroot00000000000000namespace KeePassHttp { partial class ConfirmAssociationForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.Windows.Forms.Label label1; System.Windows.Forms.Label label2; System.Windows.Forms.Label label3; this.KeyLabel = new System.Windows.Forms.Label(); this.KeyName = new System.Windows.Forms.TextBox(); this.Save = new System.Windows.Forms.Button(); this.Cancel = new System.Windows.Forms.Button(); label1 = new System.Windows.Forms.Label(); label2 = new System.Windows.Forms.Label(); label3 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // label1.AutoSize = true; label1.Location = new System.Drawing.Point(12, 9); label1.Name = "label1"; label1.Size = new System.Drawing.Size(80, 13); label1.TabIndex = 0; label1.Text = "Encryption key:"; // // label2 // label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); label2.Location = new System.Drawing.Point(12, 78); label2.Name = "label2"; label2.Size = new System.Drawing.Size(440, 48); label2.TabIndex = 1; label2.Text = "You have received an association request for the above key. If you would like to " + "allow it access to your KeePass database give it a unique name to identify and a" + "ccept it."; // // label3 // label3.AutoSize = true; label3.Location = new System.Drawing.Point(12, 37); label3.Name = "label3"; label3.Size = new System.Drawing.Size(57, 13); label3.TabIndex = 3; label3.Text = "Key name:"; // // KeyLabel // this.KeyLabel.AutoSize = true; this.KeyLabel.Location = new System.Drawing.Point(99, 9); this.KeyLabel.Name = "KeyLabel"; this.KeyLabel.Size = new System.Drawing.Size(87, 13); this.KeyLabel.TabIndex = 2; this.KeyLabel.Text = "Placeholder Text"; // // KeyName // this.KeyName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.KeyName.Location = new System.Drawing.Point(102, 34); this.KeyName.Name = "KeyName"; this.KeyName.Size = new System.Drawing.Size(350, 20); this.KeyName.TabIndex = 4; // // Save // this.Save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.Save.Location = new System.Drawing.Point(296, 129); this.Save.Name = "Save"; this.Save.Size = new System.Drawing.Size(75, 23); this.Save.TabIndex = 5; this.Save.Text = "&Save"; this.Save.UseVisualStyleBackColor = true; this.Save.Click += new System.EventHandler(this.Save_Click); // // Cancel // this.Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.Cancel.Location = new System.Drawing.Point(377, 129); this.Cancel.Name = "Cancel"; this.Cancel.Size = new System.Drawing.Size(75, 23); this.Cancel.TabIndex = 6; this.Cancel.Text = "&Cancel"; this.Cancel.UseVisualStyleBackColor = true; this.Cancel.Click += new System.EventHandler(this.Cancel_Click); // // ConfirmAssociationForm // this.AcceptButton = this.Save; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(464, 164); this.Controls.Add(this.Cancel); this.Controls.Add(this.Save); this.Controls.Add(this.KeyName); this.Controls.Add(label3); this.Controls.Add(this.KeyLabel); this.Controls.Add(label2); this.Controls.Add(label1); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ConfirmAssociationForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "KeePassHttp: Confirm New Key Association"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label KeyLabel; private System.Windows.Forms.TextBox KeyName; private System.Windows.Forms.Button Save; private System.Windows.Forms.Button Cancel; } }keepasshttp-1.8.4.2/KeePassHttp/ConfirmAssociationForm.cs000066400000000000000000000023101306306563300233600ustar00rootroot00000000000000using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace KeePassHttp { public partial class ConfirmAssociationForm : Form { public ConfirmAssociationForm() { InitializeComponent(); Saved = false; } private void Save_Click(object sender, EventArgs e) { var value = KeyName.Text; if (value != null && value.Trim() != "") { Saved = true; Close(); } } private void Cancel_Click(object sender, EventArgs e) { Close(); } public string KeyId { get { return Saved ? KeyName.Text : null; } } public bool Saved { get; private set; } public string Key { get { return KeyLabel.Text; } set { KeyLabel.Text = value; } } } } keepasshttp-1.8.4.2/KeePassHttp/ConfirmAssociationForm.resx000066400000000000000000000143361306306563300237470ustar00rootroot00000000000000 text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 False False False keepasshttp-1.8.4.2/KeePassHttp/Handlers.cs000066400000000000000000000776741306306563300205330ustar00rootroot00000000000000using System.Security.Cryptography; using System.Windows.Forms; using System.Collections.Generic; using System.Linq; using System.IO; using System; using System.Threading; using KeePass.Plugins; using KeePassLib.Collections; using KeePassLib.Security; using KeePassLib.Utility; using KeePassLib; using Newtonsoft.Json; using Microsoft.Win32; using KeePass.UI; using KeePass; using KeePassLib.Cryptography.PasswordGenerator; using KeePassLib.Cryptography; namespace KeePassHttp { public sealed partial class KeePassHttpExt : Plugin { private string GetHost(string uri) { var host = uri; try { var url = new Uri(uri); host = url.Host; if (!url.IsDefaultPort) { host += ":" + url.Port.ToString(); } } catch { // ignore exception, not a URI, assume input is host } return host; } private string GetScheme(string uri) { var scheme = ""; try { var url = new Uri(uri); scheme = url.Scheme; } catch { // ignore exception, not a URI, assume input is host } return scheme; } private bool canShowBalloonTips() { // tray icon is not visible --> no balloon tips for it if (Program.Config.UI.TrayIcon.ShowOnlyIfTrayed && !host.MainWindow.IsTrayed()) { return false; } // only use balloon tips on windows machines if (Environment.OSVersion.Platform == PlatformID.Win32NT || Environment.OSVersion.Platform == System.PlatformID.Win32S || Environment.OSVersion.Platform == System.PlatformID.Win32Windows) { int enabledBalloonTipsMachine = (int)Registry.GetValue("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", "EnableBalloonTips", 1); int enabledBalloonTipsUser = (int)Registry.GetValue("HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", "EnableBalloonTips", 1); return (enabledBalloonTipsMachine == 1 && enabledBalloonTipsUser == 1); } return false; } private void GetAllLoginsHandler(Request r, Response resp, Aes aes) { if (!VerifyRequest(r, aes)) return; var list = new PwObjectList(); var root = host.Database.RootGroup; var parms = MakeSearchParameters(); parms.SearchString = @"^[A-Za-z0-9:/-]+\.[A-Za-z0-9:/-]+$"; // match anything looking like a domain or url root.SearchEntries(parms, list); foreach (var entry in list) { var name = entry.Strings.ReadSafe(PwDefs.TitleField); var login = GetUserPass(entry)[0]; var uuid = entry.Uuid.ToHexString(); var e = new ResponseEntry(name, login, null, uuid, null); resp.Entries.Add(e); } resp.Success = true; resp.Id = r.Id; SetResponseVerifier(resp, aes); foreach (var entry in resp.Entries) { entry.Name = CryptoTransform(entry.Name, false, true, aes, CMode.ENCRYPT); entry.Login = CryptoTransform(entry.Login, false, true, aes, CMode.ENCRYPT); entry.Uuid = CryptoTransform(entry.Uuid, false, true, aes, CMode.ENCRYPT); } } private IEnumerable FindMatchingEntries(Request r, Aes aes) { string submitHost = null; string realm = null; var listResult = new List(); var url = CryptoTransform(r.Url, true, false, aes, CMode.DECRYPT); string formHost, searchHost; formHost = searchHost = GetHost(url); string hostScheme = GetScheme(url); if (r.SubmitUrl != null) { submitHost = GetHost(CryptoTransform(r.SubmitUrl, true, false, aes, CMode.DECRYPT)); } if (r.Realm != null) realm = CryptoTransform(r.Realm, true, false, aes, CMode.DECRYPT); var origSearchHost = searchHost; var parms = MakeSearchParameters(); List listDatabases = new List(); var configOpt = new ConfigOpt(this.host.CustomConfig); if (configOpt.SearchInAllOpenedDatabases) { foreach (PwDocument doc in host.MainWindow.DocumentManager.Documents) { if (doc.Database.IsOpen) { listDatabases.Add(doc.Database); } } } else { listDatabases.Add(host.Database); } int listCount = 0; foreach (PwDatabase db in listDatabases) { searchHost = origSearchHost; //get all possible entries for given host-name while (listResult.Count == listCount && (origSearchHost == searchHost || searchHost.IndexOf(".") != -1)) { parms.SearchString = String.Format("^{0}$|/{0}/?", searchHost); var listEntries = new PwObjectList(); db.RootGroup.SearchEntries(parms, listEntries); foreach (var le in listEntries) { listResult.Add(new PwEntryDatabase(le, db)); } searchHost = searchHost.Substring(searchHost.IndexOf(".") + 1); //searchHost contains no dot --> prevent possible infinite loop if (searchHost == origSearchHost) break; } listCount = listResult.Count; } Func filter = delegate(PwEntry e) { var title = e.Strings.ReadSafe(PwDefs.TitleField); var entryUrl = e.Strings.ReadSafe(PwDefs.UrlField); var c = GetEntryConfig(e); if (c != null) { if (c.Allow.Contains(formHost) && (submitHost == null || c.Allow.Contains(submitHost))) return true; if (c.Deny.Contains(formHost) || (submitHost != null && c.Deny.Contains(submitHost))) return false; if (realm != null && c.Realm != realm) return false; } if (entryUrl != null && (entryUrl.StartsWith("http://") || entryUrl.StartsWith("https://") || title.StartsWith("ftp://") || title.StartsWith("sftp://"))) { var uHost = GetHost(entryUrl); if (formHost.EndsWith(uHost)) return true; } if (title.StartsWith("http://") || title.StartsWith("https://") || title.StartsWith("ftp://") || title.StartsWith("sftp://")) { var uHost = GetHost(title); if (formHost.EndsWith(uHost)) return true; } return formHost.Contains(title) || (entryUrl != null && formHost.Contains(entryUrl)); }; Func filterSchemes = delegate(PwEntry e) { var title = e.Strings.ReadSafe(PwDefs.TitleField); var entryUrl = e.Strings.ReadSafe(PwDefs.UrlField); if (entryUrl != null) { var entryScheme = GetScheme(entryUrl); if (entryScheme == hostScheme) { return true; } } var titleScheme = GetScheme(title); if (titleScheme == hostScheme) { return true; } return false; }; var result = from e in listResult where filter(e.entry) select e; if (configOpt.MatchSchemes) { result = from e in result where filterSchemes(e.entry) select e; } Func hideExpired = delegate(PwEntry e) { DateTime dtNow = DateTime.UtcNow; if(e.Expires && (e.ExpiryTime <= dtNow)) { return false; } return true; }; if (configOpt.HideExpired) { result = from e in result where hideExpired(e.entry) select e; } return result; } private void GetLoginsCountHandler(Request r, Response resp, Aes aes) { if (!VerifyRequest(r, aes)) return; resp.Success = true; resp.Id = r.Id; var items = FindMatchingEntries(r, aes); SetResponseVerifier(resp, aes); resp.Count = items.ToList().Count; } private void GetLoginsHandler(Request r, Response resp, Aes aes) { if (!VerifyRequest(r, aes)) return; string submithost = null; var host = GetHost(CryptoTransform(r.Url, true, false, aes, CMode.DECRYPT)); if (r.SubmitUrl != null) submithost = GetHost(CryptoTransform(r.SubmitUrl, true, false, aes, CMode.DECRYPT)); var items = FindMatchingEntries(r, aes); if (items.ToList().Count > 0) { Func filter = delegate(PwEntry e) { var c = GetEntryConfig(e); var title = e.Strings.ReadSafe(PwDefs.TitleField); var entryUrl = e.Strings.ReadSafe(PwDefs.UrlField); if (c != null) { return title != host && entryUrl != host && !c.Allow.Contains(host) || (submithost != null && !c.Allow.Contains(submithost) && submithost != title && submithost != entryUrl); } return title != host && entryUrl != host || (submithost != null && title != submithost && entryUrl != submithost); }; var configOpt = new ConfigOpt(this.host.CustomConfig); var config = GetConfigEntry(true); var autoAllowS = config.Strings.ReadSafe("Auto Allow"); var autoAllow = autoAllowS != null && autoAllowS.Trim() != ""; autoAllow = autoAllow || configOpt.AlwaysAllowAccess; var needPrompting = from e in items where filter(e.entry) select e; if (needPrompting.ToList().Count > 0 && !autoAllow) { var win = this.host.MainWindow; using (var f = new AccessControlForm()) { win.Invoke((MethodInvoker)delegate { f.Icon = win.Icon; f.Plugin = this; f.Entries = (from e in items where filter(e.entry) select e.entry).ToList(); //f.Entries = needPrompting.ToList(); f.Host = submithost != null ? submithost : host; f.Load += delegate { f.Activate(); }; f.ShowDialog(win); if (f.Remember && (f.Allowed || f.Denied)) { foreach (var e in needPrompting) { var c = GetEntryConfig(e.entry); if (c == null) c = new KeePassHttpEntryConfig(); var set = f.Allowed ? c.Allow : c.Deny; set.Add(host); if (submithost != null && submithost != host) set.Add(submithost); SetEntryConfig(e.entry, c); } } if (!f.Allowed) { items = items.Except(needPrompting); } }); } } string compareToUrl = null; if (r.SubmitUrl != null) { compareToUrl = CryptoTransform(r.SubmitUrl, true, false, aes, CMode.DECRYPT); } if(String.IsNullOrEmpty(compareToUrl)) compareToUrl = CryptoTransform(r.Url, true, false, aes, CMode.DECRYPT); compareToUrl = compareToUrl.ToLower(); foreach (var entryDatabase in items) { string entryUrl = String.Copy(entryDatabase.entry.Strings.ReadSafe(PwDefs.UrlField)); if (String.IsNullOrEmpty(entryUrl)) entryUrl = entryDatabase.entry.Strings.ReadSafe(PwDefs.TitleField); entryUrl = entryUrl.ToLower(); entryDatabase.entry.UsageCount = (ulong)LevenshteinDistance(compareToUrl, entryUrl); } var itemsList = items.ToList(); if (configOpt.SpecificMatchingOnly) { itemsList = (from e in itemsList orderby e.entry.UsageCount ascending select e).ToList(); ulong lowestDistance = itemsList.Count > 0 ? itemsList[0].entry.UsageCount : 0; itemsList = (from e in itemsList where e.entry.UsageCount == lowestDistance orderby e.entry.UsageCount select e).ToList(); } if (configOpt.SortResultByUsername) { var items2 = from e in itemsList orderby e.entry.UsageCount ascending, GetUserPass(e)[0] ascending select e; itemsList = items2.ToList(); } else { var items2 = from e in itemsList orderby e.entry.UsageCount ascending, e.entry.Strings.ReadSafe(PwDefs.TitleField) ascending select e; itemsList = items2.ToList(); } foreach (var entryDatabase in itemsList) { var e = PrepareElementForResponseEntries(configOpt, entryDatabase); resp.Entries.Add(e); } if (itemsList.Count > 0) { var names = (from e in resp.Entries select e.Name).Distinct(); var n = String.Join("\n ", names.ToArray()); if (configOpt.ReceiveCredentialNotification) ShowNotification(String.Format("{0}: {1} is receiving credentials for:\n {2}", r.Id, host, n)); } resp.Success = true; resp.Id = r.Id; SetResponseVerifier(resp, aes); foreach (var entry in resp.Entries) { entry.Name = CryptoTransform(entry.Name, false, true, aes, CMode.ENCRYPT); entry.Login = CryptoTransform(entry.Login, false, true, aes, CMode.ENCRYPT); entry.Uuid = CryptoTransform(entry.Uuid, false, true, aes, CMode.ENCRYPT); entry.Password = CryptoTransform(entry.Password, false, true, aes, CMode.ENCRYPT); if (entry.StringFields != null) { foreach (var sf in entry.StringFields) { sf.Key = CryptoTransform(sf.Key, false, true, aes, CMode.ENCRYPT); sf.Value = CryptoTransform(sf.Value, false, true, aes, CMode.ENCRYPT); } } } resp.Count = resp.Entries.Count; } else { resp.Success = true; resp.Id = r.Id; SetResponseVerifier(resp, aes); } } //http://en.wikibooks.org/wiki/Algorithm_Implementation/Strings/Levenshtein_distance#C.23 private int LevenshteinDistance(string source, string target) { if (String.IsNullOrEmpty(source)) { if (String.IsNullOrEmpty(target)) return 0; return target.Length; } if (String.IsNullOrEmpty(target)) return source.Length; if (source.Length > target.Length) { var temp = target; target = source; source = temp; } var m = target.Length; var n = source.Length; var distance = new int[2, m + 1]; // Initialize the distance 'matrix' for (var j = 1; j <= m; j++) distance[0, j] = j; var currentRow = 0; for (var i = 1; i <= n; ++i) { currentRow = i & 1; distance[currentRow, 0] = i; var previousRow = currentRow ^ 1; for (var j = 1; j <= m; j++) { var cost = (target[j - 1] == source[i - 1] ? 0 : 1); distance[currentRow, j] = Math.Min(Math.Min( distance[previousRow, j] + 1, distance[currentRow, j - 1] + 1), distance[previousRow, j - 1] + cost); } } return distance[currentRow, m]; } private ResponseEntry PrepareElementForResponseEntries(ConfigOpt configOpt, PwEntryDatabase entryDatabase) { var name = entryDatabase.entry.Strings.ReadSafe(PwDefs.TitleField); var loginpass = GetUserPass(entryDatabase); var login = loginpass[0]; var passwd = loginpass[1]; var uuid = entryDatabase.entry.Uuid.ToHexString(); List fields = null; if (configOpt.ReturnStringFields) { fields = new List(); foreach (var sf in entryDatabase.entry.Strings) { var sfValue = entryDatabase.entry.Strings.ReadSafe(sf.Key); if (configOpt.ReturnStringFieldsWithKphOnly) { if (sf.Key.StartsWith("KPH: ")) { fields.Add(new ResponseStringField(sf.Key.Substring(5), sfValue)); } } else { fields.Add(new ResponseStringField(sf.Key, sfValue)); } } if (fields.Count > 0) { var fields2 = from e2 in fields orderby e2.Key ascending select e2; fields = fields2.ToList(); } else { fields = null; } } return new ResponseEntry(name, login, passwd, uuid, fields); } private void SetLoginHandler(Request r, Response resp, Aes aes) { if (!VerifyRequest(r, aes)) return; string url = CryptoTransform(r.Url, true, false, aes, CMode.DECRYPT); var urlHost = GetHost(url); PwUuid uuid = null; string username, password; username = CryptoTransform(r.Login, true, false, aes, CMode.DECRYPT); password = CryptoTransform(r.Password, true, false, aes, CMode.DECRYPT); if (r.Uuid != null) { uuid = new PwUuid(MemUtil.HexStringToByteArray( CryptoTransform(r.Uuid, true, false, aes, CMode.DECRYPT))); } if (uuid != null) { // modify existing entry UpdateEntry(uuid, username, password, urlHost, r.Id); } else { // create new entry CreateEntry(username, password, urlHost, url, r, aes); } resp.Success = true; resp.Id = r.Id; SetResponseVerifier(resp, aes); } private void AssociateHandler(Request r, Response resp, Aes aes) { if (!TestRequestVerifier(r, aes, r.Key)) return; // key is good, prompt user to save using (var f = new ConfirmAssociationForm()) { var win = host.MainWindow; win.Invoke((MethodInvoker)delegate { f.Activate(); f.Icon = win.Icon; f.Key = r.Key; f.Load += delegate { f.Activate(); }; f.ShowDialog(win); if (f.KeyId != null) { var entry = GetConfigEntry(true); bool keyNameExists = true; while (keyNameExists) { DialogResult keyExistsResult = DialogResult.Yes; foreach (var s in entry.Strings) { if (s.Key == ASSOCIATE_KEY_PREFIX + f.KeyId) { keyExistsResult = MessageBox.Show( win, "A shared encryption-key with the name \"" + f.KeyId + "\" already exists.\nDo you want to overwrite it?", "Overwrite existing key?", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1 ); break; } } if (keyExistsResult == DialogResult.No) { f.ShowDialog(win); } else { keyNameExists = false; } } if (f.KeyId != null) { entry.Strings.Set(ASSOCIATE_KEY_PREFIX + f.KeyId, new ProtectedString(true, r.Key)); entry.Touch(true); resp.Id = f.KeyId; resp.Success = true; SetResponseVerifier(resp, aes); UpdateUI(null); } } }); } } private void TestAssociateHandler(Request r, Response resp, Aes aes) { if (!VerifyRequest(r, aes)) return; resp.Success = true; resp.Id = r.Id; SetResponseVerifier(resp, aes); } private void GeneratePassword(Request r, Response resp, Aes aes) { if (!VerifyRequest(r, aes)) return; byte[] pbEntropy = null; ProtectedString psNew; PwProfile autoProfile = Program.Config.PasswordGenerator.AutoGeneratedPasswordsProfile; PwGenerator.Generate(out psNew, autoProfile, pbEntropy, Program.PwGeneratorPool); byte[] pbNew = psNew.ReadUtf8(); if (pbNew != null) { uint uBits = QualityEstimation.EstimatePasswordBits(pbNew); ResponseEntry item = new ResponseEntry(Request.GENERATE_PASSWORD, uBits.ToString(), StrUtil.Utf8.GetString(pbNew), Request.GENERATE_PASSWORD, null); resp.Entries.Add(item); resp.Success = true; resp.Count = 1; MemUtil.ZeroByteArray(pbNew); } resp.Id = r.Id; SetResponseVerifier(resp, aes); foreach (var entry in resp.Entries) { entry.Name = CryptoTransform(entry.Name, false, true, aes, CMode.ENCRYPT); entry.Login = CryptoTransform(entry.Login, false, true, aes, CMode.ENCRYPT); entry.Uuid = CryptoTransform(entry.Uuid, false, true, aes, CMode.ENCRYPT); entry.Password = CryptoTransform(entry.Password, false, true, aes, CMode.ENCRYPT); } } private KeePassHttpEntryConfig GetEntryConfig(PwEntry e) { var serializer = NewJsonSerializer(); if (e.Strings.Exists(KEEPASSHTTP_NAME)) { var json = e.Strings.ReadSafe(KEEPASSHTTP_NAME); using (var ins = new JsonTextReader(new StringReader(json))) { return serializer.Deserialize(ins); } } return null; } private void SetEntryConfig(PwEntry e, KeePassHttpEntryConfig c) { var serializer = NewJsonSerializer(); var writer = new StringWriter(); serializer.Serialize(writer, c); e.Strings.Set(KEEPASSHTTP_NAME, new ProtectedString(false, writer.ToString())); e.Touch(true); UpdateUI(e.ParentGroup); } private bool UpdateEntry(PwUuid uuid, string username, string password, string formHost, string requestId) { PwEntry entry = null; var configOpt = new ConfigOpt(this.host.CustomConfig); if (configOpt.SearchInAllOpenedDatabases) { foreach (PwDocument doc in host.MainWindow.DocumentManager.Documents) { if (doc.Database.IsOpen) { entry = doc.Database.RootGroup.FindEntry(uuid, true); if (entry != null) { break; } } } } else { entry = host.Database.RootGroup.FindEntry(uuid, true); } if (entry == null) { return false; } string[] up = GetUserPass(entry); var u = up[0]; var p = up[1]; if (u != username || p != password) { bool allowUpdate = configOpt.AlwaysAllowUpdates; if (!allowUpdate) { host.MainWindow.Activate(); DialogResult result; if (host.MainWindow.IsTrayed()) { result = MessageBox.Show( String.Format("Do you want to update the information in {0} - {1}?", formHost, u), "Update Entry", MessageBoxButtons.YesNo, MessageBoxIcon.None, MessageBoxDefaultButton.Button1, MessageBoxOptions.DefaultDesktopOnly); } else { result = MessageBox.Show( host.MainWindow, String.Format("Do you want to update the information in {0} - {1}?", formHost, u), "Update Entry", MessageBoxButtons.YesNo, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1); } if (result == DialogResult.Yes) { allowUpdate = true; } } if (allowUpdate) { PwObjectList m_vHistory = entry.History.CloneDeep(); entry.History = m_vHistory; entry.CreateBackup(null); entry.Strings.Set(PwDefs.UserNameField, new ProtectedString(false, username)); entry.Strings.Set(PwDefs.PasswordField, new ProtectedString(true, password)); entry.Touch(true, false); UpdateUI(entry.ParentGroup); return true; } } return false; } private bool CreateEntry(string username, string password, string urlHost, string url, Request r, Aes aes) { string realm = null; if (r.Realm != null) realm = CryptoTransform(r.Realm, true, false, aes, CMode.DECRYPT); var root = host.Database.RootGroup; var group = root.FindCreateGroup(KEEPASSHTTP_GROUP_NAME, false); if (group == null) { group = new PwGroup(true, true, KEEPASSHTTP_GROUP_NAME, PwIcon.WorldComputer); root.AddGroup(group, true); UpdateUI(null); } string submithost = null; if (r.SubmitUrl != null) submithost = GetHost(CryptoTransform(r.SubmitUrl, true, false, aes, CMode.DECRYPT)); string baseUrl = url; // index bigger than https:// <-- this slash if (baseUrl.LastIndexOf("/") > 9) { baseUrl = baseUrl.Substring(0, baseUrl.LastIndexOf("/") + 1); } PwEntry entry = new PwEntry(true, true); entry.Strings.Set(PwDefs.TitleField, new ProtectedString(false, urlHost)); entry.Strings.Set(PwDefs.UserNameField, new ProtectedString(false, username)); entry.Strings.Set(PwDefs.PasswordField, new ProtectedString(true, password)); entry.Strings.Set(PwDefs.UrlField, new ProtectedString(true, baseUrl)); if ((submithost != null && urlHost != submithost) || realm != null) { var config = new KeePassHttpEntryConfig(); if (submithost != null) config.Allow.Add(submithost); if (realm != null) config.Realm = realm; var serializer = NewJsonSerializer(); var writer = new StringWriter(); serializer.Serialize(writer, config); entry.Strings.Set(KEEPASSHTTP_NAME, new ProtectedString(false, writer.ToString())); } group.AddEntry(entry, true); UpdateUI(group); return true; } } } keepasshttp-1.8.4.2/KeePassHttp/KeePassHttp.cs000066400000000000000000000413241306306563300211450ustar00rootroot00000000000000using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading; using System.Net; using System.Windows.Forms; using System.Runtime.Remoting.Metadata.W3cXsd2001; using System.Security.Cryptography; using KeePass.Plugins; using KeePass.UI; using KeePassLib; using KeePassLib.Collections; using KeePassLib.Security; using Newtonsoft.Json; using KeePass.Util.Spr; using KeePassLib.Serialization; using System.Resources; namespace KeePassHttp { internal delegate void RequestHandler(Request request, Response response, Aes aes); public enum CMode { ENCRYPT, DECRYPT } public sealed partial class KeePassHttpExt : Plugin { /// /// an arbitrarily generated uuid for the keepasshttp root entry /// public readonly byte[] KEEPASSHTTP_UUID = { 0x34, 0x69, 0x7a, 0x40, 0x8a, 0x5b, 0x41, 0xc0, 0x9f, 0x36, 0x89, 0x7d, 0x62, 0x3e, 0xcb, 0x31 }; private const int DEFAULT_NOTIFICATION_TIME = 5000; public const string KEEPASSHTTP_NAME = "KeePassHttp Settings"; private const string KEEPASSHTTP_GROUP_NAME = "KeePassHttp Passwords"; public const string ASSOCIATE_KEY_PREFIX = "AES Key: "; private IPluginHost host; private HttpListener listener; public const int DEFAULT_PORT = 19455; public const string DEFAULT_HOST = "localhost"; /// /// TODO make configurable /// private const string HTTP_SCHEME = "http://"; //private const string HTTPS_PREFIX = "https://localhost:"; //private int HTTPS_PORT = DEFAULT_PORT + 1; private Thread httpThread; private volatile bool stopped = false; Dictionary handlers = new Dictionary(); //public string UpdateUrl = ""; public override string UpdateUrl { get { return "https://passifox.appspot.com/kph/latest-version.txt"; } } private SearchParameters MakeSearchParameters() { var p = new SearchParameters(); p.SearchInTitles = true; p.RegularExpression = true; p.SearchInGroupNames = false; p.SearchInNotes = false; p.SearchInOther = false; p.SearchInPasswords = false; p.SearchInTags = false; p.SearchInUrls = true; p.SearchInUserNames = false; p.SearchInUuids = false; return p; } private string CryptoTransform(string input, bool base64in, bool base64out, Aes cipher, CMode mode) { byte[] bytes; if (base64in) bytes = decode64(input); else bytes = Encoding.UTF8.GetBytes(input); using (var c = mode == CMode.ENCRYPT ? cipher.CreateEncryptor() : cipher.CreateDecryptor()) { var buf = c.TransformFinalBlock(bytes, 0, bytes.Length); return base64out ? encode64(buf) : Encoding.UTF8.GetString(buf); } } private PwEntry GetConfigEntry(bool create) { var root = host.Database.RootGroup; var uuid = new PwUuid(KEEPASSHTTP_UUID); var entry = root.FindEntry(uuid, false); if (entry == null && create) { entry = new PwEntry(false, true); entry.Uuid = uuid; entry.Strings.Set(PwDefs.TitleField, new ProtectedString(false, KEEPASSHTTP_NAME)); root.AddEntry(entry, true); UpdateUI(null); } return entry; } private int GetNotificationTime() { var time = DEFAULT_NOTIFICATION_TIME; var entry = GetConfigEntry(false); if (entry != null) { var s = entry.Strings.ReadSafe("Prompt Timeout"); if (s != null && s.Trim() != "") { try { time = Int32.Parse(s) * 1000; } catch { } } } return time; } private void ShowNotification(string text) { ShowNotification(text, null, null); } private void ShowNotification(string text, EventHandler onclick) { ShowNotification(text, onclick, null); } private void ShowNotification(string text, EventHandler onclick, EventHandler onclose) { MethodInvoker m = delegate { var notify = host.MainWindow.MainNotifyIcon; if (notify == null) return; EventHandler clicked = null; EventHandler closed = null; clicked = delegate { notify.BalloonTipClicked -= clicked; notify.BalloonTipClosed -= closed; if (onclick != null) onclick(notify, null); }; closed = delegate { notify.BalloonTipClicked -= clicked; notify.BalloonTipClosed -= closed; if (onclose != null) onclose(notify, null); }; //notify.BalloonTipIcon = ToolTipIcon.Info; notify.BalloonTipTitle = "KeePassHttp"; notify.BalloonTipText = text; notify.ShowBalloonTip(GetNotificationTime()); // need to add listeners after showing, or closed is sent right away notify.BalloonTipClosed += closed; notify.BalloonTipClicked += clicked; }; if (host.MainWindow.InvokeRequired) host.MainWindow.Invoke(m); else m.Invoke(); } public override bool Initialize(IPluginHost host) { var httpSupported = HttpListener.IsSupported; this.host = host; var optionsMenu = new ToolStripMenuItem("KeePassHttp Options..."); optionsMenu.Click += OnOptions_Click; optionsMenu.Image = KeePassHttp.Properties.Resources.earth_lock; //optionsMenu.Image = global::KeePass.Properties.Resources.B16x16_File_Close; this.host.MainWindow.ToolsMenu.DropDownItems.Add(optionsMenu); if (httpSupported) { try { handlers.Add(Request.TEST_ASSOCIATE, TestAssociateHandler); handlers.Add(Request.ASSOCIATE, AssociateHandler); handlers.Add(Request.GET_LOGINS, GetLoginsHandler); handlers.Add(Request.GET_LOGINS_COUNT, GetLoginsCountHandler); handlers.Add(Request.GET_ALL_LOGINS, GetAllLoginsHandler); handlers.Add(Request.SET_LOGIN, SetLoginHandler); handlers.Add(Request.GENERATE_PASSWORD, GeneratePassword); listener = new HttpListener(); var configOpt = new ConfigOpt(this.host.CustomConfig); listener.Prefixes.Add(HTTP_SCHEME + configOpt.ListenerHost + ":" + configOpt.ListenerPort.ToString() + "/"); //listener.Prefixes.Add(HTTPS_PREFIX + HTTPS_PORT + "/"); listener.Start(); httpThread = new Thread(new ThreadStart(Run)); httpThread.Start(); } catch (HttpListenerException e) { MessageBox.Show(host.MainWindow, "Unable to start HttpListener!\nDo you really have only one installation of KeePassHttp in your KeePass-directory?\n\n" + e, "Unable to start HttpListener", MessageBoxButtons.OK, MessageBoxIcon.Error ); } } else { MessageBox.Show(host.MainWindow, "The .NET HttpListener is not supported on your OS", ".NET HttpListener not supported", MessageBoxButtons.OK, MessageBoxIcon.Error ); } return httpSupported; } void OnOptions_Click(object sender, EventArgs e) { var form = new OptionsForm(new ConfigOpt(host.CustomConfig)); UIUtil.ShowDialogAndDestroy(form); } private void Run() { while (!stopped) { try { var r = listener.BeginGetContext(new AsyncCallback(RequestHandler), listener); r.AsyncWaitHandle.WaitOne(); r.AsyncWaitHandle.Close(); } catch (ThreadInterruptedException) { } catch (HttpListenerException e) { MessageBox.Show(host.MainWindow, "Unable to process request!\n\n" + e, "Unable to process request", MessageBoxButtons.OK, MessageBoxIcon.Error ); } } } private JsonSerializer NewJsonSerializer() { var settings = new JsonSerializerSettings(); settings.DefaultValueHandling = DefaultValueHandling.Ignore; settings.NullValueHandling = NullValueHandling.Ignore; return JsonSerializer.Create(settings); } private Response ProcessRequest(Request r, HttpListenerResponse resp) { string hash = host.Database.RootGroup.Uuid.ToHexString() + host.Database.RecycleBinUuid.ToHexString(); hash = getSHA1(hash); var response = new Response(r.RequestType, hash); using (var aes = new AesManaged()) { aes.Mode = CipherMode.CBC; aes.Padding = PaddingMode.PKCS7; var handler = handlers[r.RequestType]; if (handler != null) { try { handler(r, response, aes); } catch (Exception e) { ShowNotification("***BUG*** " + e, (s,evt) => MessageBox.Show(host.MainWindow, e + "")); response.Error = e + ""; resp.StatusCode = (int)HttpStatusCode.BadRequest; } } else { response.Error = "Unknown command: " + r.RequestType; resp.StatusCode = (int)HttpStatusCode.BadRequest; } } return response; } private void RequestHandler(IAsyncResult r) { try { _RequestHandler(r); } catch (Exception e) { MessageBox.Show(host.MainWindow, "RequestHandler failed: " + e); } } private void _RequestHandler(IAsyncResult r) { if (stopped) return; var l = (HttpListener)r.AsyncState; var ctx = l.EndGetContext(r); var req = ctx.Request; var resp = ctx.Response; var serializer = NewJsonSerializer(); Request request = null; resp.StatusCode = (int)HttpStatusCode.OK; using (var ins = new JsonTextReader(new StreamReader(req.InputStream))) { try { request = serializer.Deserialize(ins); } catch (JsonSerializationException e) { var buffer = Encoding.UTF8.GetBytes(e + ""); resp.StatusCode = (int)HttpStatusCode.BadRequest; resp.ContentLength64 = buffer.Length; resp.OutputStream.Write(buffer, 0, buffer.Length); } // ignore, bad request } var db = host.Database; var configOpt = new ConfigOpt(this.host.CustomConfig); if (request != null && (configOpt.UnlockDatabaseRequest || request.TriggerUnlock == "true") && !db.IsOpen) { host.MainWindow.Invoke((MethodInvoker)delegate { host.MainWindow.EnsureVisibleForegroundWindow(true, true); }); // UnlockDialog not already opened bool bNoDialogOpened = (KeePass.UI.GlobalWindowManager.WindowCount == 0); if (!db.IsOpen && bNoDialogOpened) { host.MainWindow.Invoke((MethodInvoker)delegate { host.MainWindow.OpenDatabase(host.MainWindow.DocumentManager.ActiveDocument.LockedIoc, null, false); }); } } if (request != null && db.IsOpen) { Response response = null; if (request != null) response = ProcessRequest(request, resp); resp.ContentType = "application/json"; var writer = new StringWriter(); if (response != null) { serializer.Serialize(writer, response); var buffer = Encoding.UTF8.GetBytes(writer.ToString()); resp.ContentLength64 = buffer.Length; resp.OutputStream.Write(buffer, 0, buffer.Length); } } else { resp.StatusCode = (int)HttpStatusCode.ServiceUnavailable; } var outs = resp.OutputStream; outs.Close(); resp.Close(); } public override void Terminate() { stopped = true; listener.Stop(); listener.Close(); httpThread.Interrupt(); } private void UpdateUI(PwGroup group) { var win = host.MainWindow; if (group == null) group = host.Database.RootGroup; var f = (MethodInvoker) delegate { win.UpdateUI(false, null, true, group, true, null, true); }; if (win.InvokeRequired) win.Invoke(f); else f.Invoke(); } internal string[] GetUserPass(PwEntry entry) { return GetUserPass(new PwEntryDatabase(entry, host.Database)); } internal string[] GetUserPass(PwEntryDatabase entryDatabase) { // follow references SprContext ctx = new SprContext(entryDatabase.entry, entryDatabase.database, SprCompileFlags.All, false, false); string user = SprEngine.Compile( entryDatabase.entry.Strings.ReadSafe(PwDefs.UserNameField), ctx); string pass = SprEngine.Compile( entryDatabase.entry.Strings.ReadSafe(PwDefs.PasswordField), ctx); var f = (MethodInvoker)delegate { // apparently, SprEngine.Compile might modify the database host.MainWindow.UpdateUI(false, null, false, null, false, null, false); }; if (host.MainWindow.InvokeRequired) host.MainWindow.Invoke(f); else f.Invoke(); return new string[] { user, pass }; } /// /// Liefert den SHA1 Hash /// /// Eingabestring /// SHA1 Hash der Eingabestrings private string getSHA1(string input) { //Umwandlung des Eingastring in den SHA1 Hash System.Security.Cryptography.SHA1 sha1 = new System.Security.Cryptography.SHA1CryptoServiceProvider(); byte[] textToHash = Encoding.Default.GetBytes(input); byte[] result = sha1.ComputeHash(textToHash); //SHA1 Hash in String konvertieren System.Text.StringBuilder s = new System.Text.StringBuilder(); foreach (byte b in result) { s.Append(b.ToString("x2").ToLower()); } return s.ToString(); } } } keepasshttp-1.8.4.2/KeePassHttp/KeePassHttp.csproj000066400000000000000000000106441306306563300220410ustar00rootroot00000000000000 Debug AnyCPU 8.0.30703 2.0 {9DFAB9D7-6BB5-4C6C-86EC-C67B494008D2} Library Properties KeePassHttp KeePassHttp v4.0 512 true full false bin\Debug\ DEBUG;TRACE prompt 4 pdbonly true bin\Release\ TRACE prompt 4 C:\Program Files (x86)\KeePass Password Safe 2\KeePass.exe False .\Newtonsoft.Json.dll Form AccessControlForm.cs Form OptionsForm.cs True True Resources.resx Form ConfirmAssociationForm.cs AccessControlForm.cs ConfirmAssociationForm.cs OptionsForm.cs ResXFileCodeGenerator Resources.Designer.cs keepasshttp-1.8.4.2/KeePassHttp/OptionsForm.Designer.cs000066400000000000000000000642701306306563300227750ustar00rootroot00000000000000namespace KeePassHttp { partial class OptionsForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.cancelButton = new System.Windows.Forms.Button(); this.okButton = new System.Windows.Forms.Button(); this.tabControl1 = new System.Windows.Forms.TabControl(); this.tabPage1 = new System.Windows.Forms.TabPage(); this.SortByUsernameRadioButton = new System.Windows.Forms.RadioButton(); this.SortByTitleRadioButton = new System.Windows.Forms.RadioButton(); this.hideExpiredCheckbox = new System.Windows.Forms.CheckBox(); this.matchSchemesCheckbox = new System.Windows.Forms.CheckBox(); this.removePermissionsButton = new System.Windows.Forms.Button(); this.unlockDatabaseCheckbox = new System.Windows.Forms.CheckBox(); this.removeButton = new System.Windows.Forms.Button(); this.credMatchingCheckbox = new System.Windows.Forms.CheckBox(); this.credNotifyCheckbox = new System.Windows.Forms.CheckBox(); this.tabPage2 = new System.Windows.Forms.TabPage(); this.returnStringFieldsWithKphOnlyCheckBox = new System.Windows.Forms.CheckBox(); this.hostName = new System.Windows.Forms.TextBox(); this.label10 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.portNumber = new System.Windows.Forms.NumericUpDown(); this.label5 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.returnStringFieldsCheckbox = new System.Windows.Forms.CheckBox(); this.label2 = new System.Windows.Forms.Label(); this.credSearchInAllOpenedDatabases = new System.Windows.Forms.CheckBox(); this.label1 = new System.Windows.Forms.Label(); this.credAllowUpdatesCheckbox = new System.Windows.Forms.CheckBox(); this.credAllowAccessCheckbox = new System.Windows.Forms.CheckBox(); this.tabControl1.SuspendLayout(); this.tabPage1.SuspendLayout(); this.tabPage2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.portNumber)).BeginInit(); this.SuspendLayout(); // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(313, 508); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(88, 28); this.cancelButton.TabIndex = 2; this.cancelButton.Text = "&Cancel"; this.cancelButton.UseVisualStyleBackColor = true; // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.okButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.okButton.Location = new System.Drawing.Point(219, 508); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(88, 28); this.okButton.TabIndex = 1; this.okButton.Text = "&Save"; this.okButton.UseVisualStyleBackColor = true; this.okButton.Click += new System.EventHandler(this.okButton_Click); // // tabControl1 // this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.tabControl1.Controls.Add(this.tabPage1); this.tabControl1.Controls.Add(this.tabPage2); this.tabControl1.Location = new System.Drawing.Point(1, 3); this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; this.tabControl1.Size = new System.Drawing.Size(410, 498); this.tabControl1.TabIndex = 3; // // tabPage1 // this.tabPage1.Controls.Add(this.SortByUsernameRadioButton); this.tabPage1.Controls.Add(this.SortByTitleRadioButton); this.tabPage1.Controls.Add(this.hideExpiredCheckbox); this.tabPage1.Controls.Add(this.matchSchemesCheckbox); this.tabPage1.Controls.Add(this.removePermissionsButton); this.tabPage1.Controls.Add(this.unlockDatabaseCheckbox); this.tabPage1.Controls.Add(this.removeButton); this.tabPage1.Controls.Add(this.credMatchingCheckbox); this.tabPage1.Controls.Add(this.credNotifyCheckbox); this.tabPage1.Location = new System.Drawing.Point(4, 22); this.tabPage1.Name = "tabPage1"; this.tabPage1.Padding = new System.Windows.Forms.Padding(3); this.tabPage1.Size = new System.Drawing.Size(402, 497); this.tabPage1.TabIndex = 0; this.tabPage1.Text = "General"; this.tabPage1.UseVisualStyleBackColor = true; // // SortByUsernameRadioButton // this.SortByUsernameRadioButton.AutoSize = true; this.SortByUsernameRadioButton.Location = new System.Drawing.Point(7, 147); this.SortByUsernameRadioButton.Name = "SortByUsernameRadioButton"; this.SortByUsernameRadioButton.Size = new System.Drawing.Size(171, 17); this.SortByUsernameRadioButton.TabIndex = 19; this.SortByUsernameRadioButton.TabStop = true; this.SortByUsernameRadioButton.Text = "Sort found entries by &username"; this.SortByUsernameRadioButton.UseVisualStyleBackColor = true; // // SortByTitleRadioButton // this.SortByTitleRadioButton.AutoSize = true; this.SortByTitleRadioButton.Location = new System.Drawing.Point(7, 170); this.SortByTitleRadioButton.Name = "SortByTitleRadioButton"; this.SortByTitleRadioButton.Size = new System.Drawing.Size(141, 17); this.SortByTitleRadioButton.TabIndex = 18; this.SortByTitleRadioButton.TabStop = true; this.SortByTitleRadioButton.Text = "Sort found entries by &title"; this.SortByTitleRadioButton.UseVisualStyleBackColor = true; // // hideExpiredCheckbox // this.hideExpiredCheckbox.AutoSize = true; this.hideExpiredCheckbox.Location = new System.Drawing.Point(7, 88); this.hideExpiredCheckbox.Name = "hideExpiredCheckbox"; this.hideExpiredCheckbox.Size = new System.Drawing.Size(256, 17); this.hideExpiredCheckbox.TabIndex = 17; this.hideExpiredCheckbox.Text = "Don't return e&xpired entries"; this.hideExpiredCheckbox.UseVisualStyleBackColor = true; // // matchSchemesCheckbox // this.matchSchemesCheckbox.AutoSize = true; this.matchSchemesCheckbox.Location = new System.Drawing.Point(7, 111); this.matchSchemesCheckbox.Name = "matchSchemesCheckbox"; this.matchSchemesCheckbox.Size = new System.Drawing.Size(375, 30); this.matchSchemesCheckbox.TabIndex = 17; this.matchSchemesCheckbox.Text = "&Match URL schemes\r\nonly entries with the same scheme (http://, https://, ftp://," + " ...) are returned"; this.matchSchemesCheckbox.UseVisualStyleBackColor = true; // // removePermissionsButton // this.removePermissionsButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.removePermissionsButton.ImageAlign = System.Drawing.ContentAlignment.TopLeft; this.removePermissionsButton.Location = new System.Drawing.Point(14, 239); this.removePermissionsButton.Name = "removePermissionsButton"; this.removePermissionsButton.Size = new System.Drawing.Size(372, 28); this.removePermissionsButton.TabIndex = 16; this.removePermissionsButton.Text = "Remo&ve all stored permissions from entries in active database"; this.removePermissionsButton.UseVisualStyleBackColor = true; this.removePermissionsButton.Click += new System.EventHandler(this.removePermissionsButton_Click); // // unlockDatabaseCheckbox // this.unlockDatabaseCheckbox.AutoSize = true; this.unlockDatabaseCheckbox.Location = new System.Drawing.Point(7, 65); this.unlockDatabaseCheckbox.Name = "unlockDatabaseCheckbox"; this.unlockDatabaseCheckbox.Size = new System.Drawing.Size(256, 17); this.unlockDatabaseCheckbox.TabIndex = 15; this.unlockDatabaseCheckbox.Text = "Re&quest for unlocking the database if it is locked"; this.unlockDatabaseCheckbox.UseVisualStyleBackColor = true; // // removeButton // this.removeButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.removeButton.Location = new System.Drawing.Point(14, 205); this.removeButton.Name = "removeButton"; this.removeButton.Size = new System.Drawing.Size(372, 28); this.removeButton.TabIndex = 11; this.removeButton.Text = "R&emove all shared encryption-keys from active database"; this.removeButton.UseVisualStyleBackColor = true; this.removeButton.Click += new System.EventHandler(this.removeButton_Click); // // credMatchingCheckbox // this.credMatchingCheckbox.AutoSize = true; this.credMatchingCheckbox.Location = new System.Drawing.Point(7, 29); this.credMatchingCheckbox.Name = "credMatchingCheckbox"; this.credMatchingCheckbox.Size = new System.Drawing.Size(238, 30); this.credMatchingCheckbox.TabIndex = 9; this.credMatchingCheckbox.Text = "&Return only best matching entries for an URL\r\ninstead of all entries for the who" + "le domain"; this.credMatchingCheckbox.UseVisualStyleBackColor = true; // // credNotifyCheckbox // this.credNotifyCheckbox.AutoSize = true; this.credNotifyCheckbox.Location = new System.Drawing.Point(7, 6); this.credNotifyCheckbox.Name = "credNotifyCheckbox"; this.credNotifyCheckbox.Size = new System.Drawing.Size(267, 17); this.credNotifyCheckbox.TabIndex = 8; this.credNotifyCheckbox.Text = "Sh&ow a notification when credentials are requested"; this.credNotifyCheckbox.UseVisualStyleBackColor = true; // // tabPage2 // this.tabPage2.Controls.Add(this.returnStringFieldsWithKphOnlyCheckBox); this.tabPage2.Controls.Add(this.hostName); this.tabPage2.Controls.Add(this.label10); this.tabPage2.Controls.Add(this.label8); this.tabPage2.Controls.Add(this.label9); this.tabPage2.Controls.Add(this.label7); this.tabPage2.Controls.Add(this.portNumber); this.tabPage2.Controls.Add(this.label5); this.tabPage2.Controls.Add(this.label6); this.tabPage2.Controls.Add(this.label4); this.tabPage2.Controls.Add(this.label3); this.tabPage2.Controls.Add(this.returnStringFieldsCheckbox); this.tabPage2.Controls.Add(this.label2); this.tabPage2.Controls.Add(this.credSearchInAllOpenedDatabases); this.tabPage2.Controls.Add(this.label1); this.tabPage2.Controls.Add(this.credAllowUpdatesCheckbox); this.tabPage2.Controls.Add(this.credAllowAccessCheckbox); this.tabPage2.Location = new System.Drawing.Point(4, 22); this.tabPage2.Name = "tabPage2"; this.tabPage2.Padding = new System.Windows.Forms.Padding(3); this.tabPage2.Size = new System.Drawing.Size(402, 472); this.tabPage2.TabIndex = 1; this.tabPage2.Text = "Advanced"; this.tabPage2.UseVisualStyleBackColor = true; // // returnStringFieldsWithKphOnlyCheckBox // this.returnStringFieldsWithKphOnlyCheckBox.AutoSize = true; this.returnStringFieldsWithKphOnlyCheckBox.Location = new System.Drawing.Point(55, 215); this.returnStringFieldsWithKphOnlyCheckBox.Name = "returnStringFieldsWithKphOnlyCheckBox"; this.returnStringFieldsWithKphOnlyCheckBox.Size = new System.Drawing.Size(300, 30); this.returnStringFieldsWithKphOnlyCheckBox.TabIndex = 31; this.returnStringFieldsWithKphOnlyCheckBox.Text = "Only return advanced string fields which start with \"KPH: \"\r\n(Mind the space afte" + "r KPH:)"; this.returnStringFieldsWithKphOnlyCheckBox.UseVisualStyleBackColor = true; // // hostName // this.hostName.Location = new System.Drawing.Point(48, 318); this.hostName.Name = "hostName"; this.hostName.Size = new System.Drawing.Size(103, 20); this.hostName.TabIndex = 25; this.hostName.Text = "localhost"; this.hostName.TextChanged += new System.EventHandler(this.hostName_TextChanged); // // label10 // this.label10.AutoSize = true; this.label10.Location = new System.Drawing.Point(7, 283); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(375, 26); this.label10.TabIndex = 23; this.label10.Text = "Only change the host to bind to if you want to give access to other computers.\r\nU" + "se \'*\' to bind it to all your IP addresses (potentially dangerous!)\r\n"; // // label8 // this.label8.AutoSize = true; this.label8.Location = new System.Drawing.Point(157, 318); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(244, 65); this.label8.TabIndex = 26; this.label8.Text = "Default: localhost\r\nYou might need to run KeePass as administrator \r\nwhen you cha" + "nge this.\r\nAlso don\'t forget to open the firewall if you want to \r\nbe able to us" + "e it from a different computer."; // // label9 // this.label9.AutoSize = true; this.label9.Location = new System.Drawing.Point(10, 321); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(32, 13); this.label9.TabIndex = 24; this.label9.Text = "Host:"; // // label7 // this.label7.AutoSize = true; this.label7.Location = new System.Drawing.Point(157, 415); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(241, 39); this.label7.TabIndex = 30; this.label7.Text = "Default: 19455\r\nDon\'t forget to change the port number also in\r\nthe plugins like " + "chromeIPass, PassIFox, kypass,..."; // // portNumber // this.portNumber.Location = new System.Drawing.Point(48, 415); this.portNumber.Maximum = new decimal(new int[] { 99999, 0, 0, 0}); this.portNumber.Minimum = new decimal(new int[] { 1025, 0, 0, 0}); this.portNumber.Name = "portNumber"; this.portNumber.Size = new System.Drawing.Size(60, 20); this.portNumber.TabIndex = 29; this.portNumber.Value = new decimal(new int[] { 19455, 0, 0, 0}); this.portNumber.ValueChanged += new System.EventHandler(this.portNumber_ValueChanged); // // label5 // this.label5.AutoSize = true; this.label5.Location = new System.Drawing.Point(8, 393); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(312, 13); this.label5.TabIndex = 27; this.label5.Text = "Change the default port number if you have connection problems"; // // label6 // this.label6.AutoSize = true; this.label6.Location = new System.Drawing.Point(13, 417); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(29, 13); this.label6.TabIndex = 28; this.label6.Text = "Port:"; // // label4 // this.label4.AutoSize = true; this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label4.Location = new System.Drawing.Point(52, 248); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(277, 26); this.label4.TabIndex = 22; this.label4.Text = "Automatic creates or updates are not supported\r\nfor string fields!"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(52, 156); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(289, 52); this.label3.TabIndex = 21; this.label3.Text = "If there are more fields needed than username + password,\r\nnormal \"String Fields\"" + " are used, which can be defined in the\r\n\"Advanced\" tab of an entry.\r\nString fiel" + "ds are returned in alphabetical order."; // // returnStringFieldsCheckbox // this.returnStringFieldsCheckbox.AutoSize = true; this.returnStringFieldsCheckbox.Location = new System.Drawing.Point(7, 136); this.returnStringFieldsCheckbox.Name = "returnStringFieldsCheckbox"; this.returnStringFieldsCheckbox.Size = new System.Drawing.Size(186, 17); this.returnStringFieldsCheckbox.TabIndex = 20; this.returnStringFieldsCheckbox.Text = "&Return also advanced string fields"; this.returnStringFieldsCheckbox.UseVisualStyleBackColor = true; this.returnStringFieldsCheckbox.CheckedChanged += new System.EventHandler(this.returnStringFieldsCheckbox_CheckedChanged); // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(52, 108); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(299, 13); this.label2.TabIndex = 19; this.label2.Text = "Only the selected database has to be connected with a client!"; // // credSearchInAllOpenedDatabases // this.credSearchInAllOpenedDatabases.AutoSize = true; this.credSearchInAllOpenedDatabases.Location = new System.Drawing.Point(7, 88); this.credSearchInAllOpenedDatabases.Name = "credSearchInAllOpenedDatabases"; this.credSearchInAllOpenedDatabases.Size = new System.Drawing.Size(270, 17); this.credSearchInAllOpenedDatabases.TabIndex = 18; this.credSearchInAllOpenedDatabases.Text = "Searc&h in all opened databases for matching entries"; this.credSearchInAllOpenedDatabases.UseVisualStyleBackColor = true; // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.ForeColor = System.Drawing.Color.Red; this.label1.Location = new System.Drawing.Point(4, 7); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(391, 13); this.label1.TabIndex = 17; this.label1.Text = "Activate the following options only, if you know what you are doing!"; // // credAllowUpdatesCheckbox // this.credAllowUpdatesCheckbox.AutoSize = true; this.credAllowUpdatesCheckbox.Location = new System.Drawing.Point(6, 56); this.credAllowUpdatesCheckbox.Name = "credAllowUpdatesCheckbox"; this.credAllowUpdatesCheckbox.Size = new System.Drawing.Size(164, 17); this.credAllowUpdatesCheckbox.TabIndex = 16; this.credAllowUpdatesCheckbox.Text = "Always allow &updating entries"; this.credAllowUpdatesCheckbox.UseVisualStyleBackColor = true; // // credAllowAccessCheckbox // this.credAllowAccessCheckbox.AutoSize = true; this.credAllowAccessCheckbox.Location = new System.Drawing.Point(6, 33); this.credAllowAccessCheckbox.Name = "credAllowAccessCheckbox"; this.credAllowAccessCheckbox.Size = new System.Drawing.Size(169, 17); this.credAllowAccessCheckbox.TabIndex = 15; this.credAllowAccessCheckbox.Text = "Always allow &access to entries"; this.credAllowAccessCheckbox.UseVisualStyleBackColor = true; // // OptionsForm // this.AcceptButton = this.okButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(411, 545); this.Controls.Add(this.tabControl1); this.Controls.Add(this.okButton); this.Controls.Add(this.cancelButton); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "OptionsForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "KeePassHttp Options"; this.Load += new System.EventHandler(this.OptionsForm_Load); this.tabControl1.ResumeLayout(false); this.tabPage1.ResumeLayout(false); this.tabPage1.PerformLayout(); this.tabPage2.ResumeLayout(false); this.tabPage2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.portNumber)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.Button okButton; private System.Windows.Forms.TabControl tabControl1; private System.Windows.Forms.TabPage tabPage1; private System.Windows.Forms.CheckBox hideExpiredCheckbox; private System.Windows.Forms.CheckBox matchSchemesCheckbox; private System.Windows.Forms.Button removePermissionsButton; private System.Windows.Forms.CheckBox unlockDatabaseCheckbox; private System.Windows.Forms.Button removeButton; private System.Windows.Forms.CheckBox credMatchingCheckbox; private System.Windows.Forms.CheckBox credNotifyCheckbox; private System.Windows.Forms.TabPage tabPage2; private System.Windows.Forms.CheckBox credSearchInAllOpenedDatabases; private System.Windows.Forms.Label label1; private System.Windows.Forms.CheckBox credAllowUpdatesCheckbox; private System.Windows.Forms.CheckBox credAllowAccessCheckbox; private System.Windows.Forms.Label label2; private System.Windows.Forms.CheckBox returnStringFieldsCheckbox; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label4; private System.Windows.Forms.RadioButton SortByUsernameRadioButton; private System.Windows.Forms.RadioButton SortByTitleRadioButton; private System.Windows.Forms.Label label7; private System.Windows.Forms.NumericUpDown portNumber; private System.Windows.Forms.Label label5; private System.Windows.Forms.Label label6; private System.Windows.Forms.TextBox hostName; private System.Windows.Forms.Label label10; private System.Windows.Forms.Label label8; private System.Windows.Forms.Label label9; private System.Windows.Forms.CheckBox returnStringFieldsWithKphOnlyCheckBox; } }keepasshttp-1.8.4.2/KeePassHttp/OptionsForm.cs000066400000000000000000000227311306306563300212320ustar00rootroot00000000000000using KeePassLib; using KeePassHttp; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using KeePassLib.Collections; namespace KeePassHttp { public partial class OptionsForm : Form { readonly ConfigOpt _config; private bool _restartRequired = false; public OptionsForm(ConfigOpt config) { _config = config; InitializeComponent(); } private PwEntry GetConfigEntry(PwDatabase db) { var kphe = new KeePassHttpExt(); var root = db.RootGroup; var uuid = new PwUuid(kphe.KEEPASSHTTP_UUID); var entry = root.FindEntry(uuid, false); return entry; } private void OptionsForm_Load(object sender, EventArgs e) { credNotifyCheckbox.Checked = _config.ReceiveCredentialNotification; credMatchingCheckbox.Checked = _config.SpecificMatchingOnly; unlockDatabaseCheckbox.Checked = _config.UnlockDatabaseRequest; credAllowAccessCheckbox.Checked = _config.AlwaysAllowAccess; credAllowUpdatesCheckbox.Checked = _config.AlwaysAllowUpdates; credSearchInAllOpenedDatabases.Checked = _config.SearchInAllOpenedDatabases; hideExpiredCheckbox.Checked = _config.HideExpired; matchSchemesCheckbox.Checked = _config.MatchSchemes; returnStringFieldsCheckbox.Checked = _config.ReturnStringFields; returnStringFieldsWithKphOnlyCheckBox.Checked = _config.ReturnStringFieldsWithKphOnly; SortByUsernameRadioButton.Checked = _config.SortResultByUsername; SortByTitleRadioButton.Checked = !_config.SortResultByUsername; portNumber.Value = _config.ListenerPort; hostName.Text = _config.ListenerHost; this.returnStringFieldsCheckbox_CheckedChanged(null, EventArgs.Empty); } private void okButton_Click(object sender, EventArgs e) { _config.ReceiveCredentialNotification = credNotifyCheckbox.Checked; _config.SpecificMatchingOnly = credMatchingCheckbox.Checked; _config.UnlockDatabaseRequest = unlockDatabaseCheckbox.Checked; _config.AlwaysAllowAccess = credAllowAccessCheckbox.Checked; _config.AlwaysAllowUpdates = credAllowUpdatesCheckbox.Checked; _config.SearchInAllOpenedDatabases = credSearchInAllOpenedDatabases.Checked; _config.HideExpired = hideExpiredCheckbox.Checked; _config.MatchSchemes = matchSchemesCheckbox.Checked; _config.ReturnStringFields = returnStringFieldsCheckbox.Checked; _config.ReturnStringFieldsWithKphOnly = returnStringFieldsWithKphOnlyCheckBox.Checked; _config.SortResultByUsername = SortByUsernameRadioButton.Checked; _config.ListenerPort = (int)portNumber.Value; _config.ListenerHost = hostName.Text; if (_restartRequired) { MessageBox.Show( "You have successfully changed the port number and/or the host name.\nA restart of KeePass is required!\n\nPlease restart KeePass now.", "Restart required!", MessageBoxButtons.OK, MessageBoxIcon.Information ); } } private void removeButton_Click(object sender, EventArgs e) { if (KeePass.Program.MainForm.DocumentManager.ActiveDatabase.IsOpen) { PwDatabase db = KeePass.Program.MainForm.DocumentManager.ActiveDatabase; var entry = GetConfigEntry(db); if (entry != null) { List deleteKeys = new List(); foreach (var s in entry.Strings) { if (s.Key.IndexOf(KeePassHttpExt.ASSOCIATE_KEY_PREFIX) == 0) { deleteKeys.Add(s.Key); } } if (deleteKeys.Count > 0) { PwObjectList m_vHistory = entry.History.CloneDeep(); entry.History = m_vHistory; entry.CreateBackup(null); foreach (var key in deleteKeys) { entry.Strings.Remove(key); } entry.Touch(true); KeePass.Program.MainForm.UpdateUI(false, null, true, db.RootGroup, true, null, true); MessageBox.Show( String.Format("Successfully removed {0} encryption-key{1} from KeePassHttp Settings.", deleteKeys.Count.ToString(), deleteKeys.Count == 1 ? "" : "s"), String.Format("Removed {0} key{1} from database", deleteKeys.Count.ToString(), deleteKeys.Count == 1 ? "" : "s"), MessageBoxButtons.OK, MessageBoxIcon.Information ); } else { MessageBox.Show( "No shared encryption-keys found in KeePassHttp Settings.", "No keys found", MessageBoxButtons.OK, MessageBoxIcon.Information ); } } else { MessageBox.Show("The active database does not contain an entry of KeePassHttp Settings.", "KeePassHttp Settings not available!", MessageBoxButtons.OK, MessageBoxIcon.Information); } } else { MessageBox.Show("The active database is locked!\nPlease unlock the selected database or choose another one which is unlocked.", "Database locked!", MessageBoxButtons.OK, MessageBoxIcon.Error); } } private void removePermissionsButton_Click(object sender, EventArgs e) { if (KeePass.Program.MainForm.DocumentManager.ActiveDatabase.IsOpen) { PwDatabase db = KeePass.Program.MainForm.DocumentManager.ActiveDatabase; uint counter = 0; var entries = db.RootGroup.GetEntries(true); if (entries.Count() > 999) { MessageBox.Show( String.Format("{0} entries detected!\nSearching and removing permissions could take some while.\n\nWe will inform you when the process has been finished.", entries.Count().ToString()), String.Format("{0} entries detected", entries.Count().ToString()), MessageBoxButtons.OK, MessageBoxIcon.Information ); } foreach (var entry in entries) { foreach (var str in entry.Strings) { if (str.Key == KeePassHttpExt.KEEPASSHTTP_NAME) { PwObjectList m_vHistory = entry.History.CloneDeep(); entry.History = m_vHistory; entry.CreateBackup(null); entry.Strings.Remove(str.Key); entry.Touch(true); counter += 1; break; } } } if (counter > 0) { KeePass.Program.MainForm.UpdateUI(false, null, true, db.RootGroup, true, null, true); MessageBox.Show( String.Format("Successfully removed permissions from {0} entr{1}.", counter.ToString(), counter == 1 ? "y" : "ies"), String.Format("Removed permissions from {0} entr{1}", counter.ToString(), counter == 1 ? "y" : "ies"), MessageBoxButtons.OK, MessageBoxIcon.Information ); } else { MessageBox.Show( "The active database does not contain an entry with permissions.", "No entry with permissions found!", MessageBoxButtons.OK, MessageBoxIcon.Information ); } } else { MessageBox.Show("The active database is locked!\nPlease unlock the selected database or choose another one which is unlocked.", "Database locked!", MessageBoxButtons.OK, MessageBoxIcon.Error); } } private void portNumber_ValueChanged(object sender, EventArgs e) { SetRestartRequired(); } private void hostName_TextChanged(object sender, EventArgs e) { SetRestartRequired(); } private void SetRestartRequired() { _restartRequired = (_config.ListenerPort != portNumber.Value) || (_config.ListenerHost != hostName.Text); } private void returnStringFieldsCheckbox_CheckedChanged(object sender, EventArgs e) { this.returnStringFieldsWithKphOnlyCheckBox.Enabled = this.returnStringFieldsCheckbox.Checked; } } } keepasshttp-1.8.4.2/KeePassHttp/OptionsForm.resx000066400000000000000000000131021306306563300215760ustar00rootroot00000000000000 text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 keepasshttp-1.8.4.2/KeePassHttp/Properties/000077500000000000000000000000001306306563300205535ustar00rootroot00000000000000keepasshttp-1.8.4.2/KeePassHttp/Properties/AssemblyInfo.cs000066400000000000000000000030271306306563300234770ustar00rootroot00000000000000using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("KeePassHttp")] [assembly: AssemblyDescription("A plugin to expose a secure HTTP interface to your KeePass database")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Perry Nguyen, Lukas Schulze")] [assembly: AssemblyProduct("KeePass Plugin")] [assembly: AssemblyCopyright("Copyright © Perry Nguyen, Lukas Schulze 2013")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("5A642578-DFA7-4F75-8483-729B7C32F8E6")] // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("2.34.0.0")] [assembly: AssemblyFileVersion("1.8.4.2")] keepasshttp-1.8.4.2/KeePassHttp/Properties/Resources.Designer.cs000066400000000000000000000061271306306563300246210ustar00rootroot00000000000000//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.18034 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace KeePassHttp.Properties { using System; /// /// A strongly-typed resource class, for looking up localized strings, etc. /// // This class was auto-generated by the StronglyTypedResourceBuilder // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { private static global::System.Resources.ResourceManager resourceMan; private static global::System.Globalization.CultureInfo resourceCulture; [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Resources() { } /// /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("KeePassHttp.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; } } /// /// Overrides the current thread's CurrentUICulture property for all /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } set { resourceCulture = value; } } /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap earth_lock { get { object obj = ResourceManager.GetObject("earth_lock", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } } } keepasshttp-1.8.4.2/KeePassHttp/Properties/Resources.resx000066400000000000000000000137041306306563300234350ustar00rootroot00000000000000 text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ..\Resources\earth_lock.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a keepasshttp-1.8.4.2/KeePassHttp/Protocol.cs000066400000000000000000000160041306306563300205500ustar00rootroot00000000000000using System.Collections.Generic; using System.Security.Cryptography; using System.Text; using KeePass.Plugins; using System.Reflection; using System.Diagnostics; namespace KeePassHttp { public sealed partial class KeePassHttpExt : Plugin { private static string encode64(byte[] b) { return System.Convert.ToBase64String(b); } private static byte[] decode64(string s) { return System.Convert.FromBase64String(s); } private bool VerifyRequest(Request r, Aes aes) { var entry = GetConfigEntry(false); if (entry == null) return false; var s = entry.Strings.Get(ASSOCIATE_KEY_PREFIX + r.Id); if (s == null) return false; return TestRequestVerifier(r, aes, s.ReadString()); } private bool TestRequestVerifier(Request r, Aes aes, string key) { var success = false; var crypted = decode64(r.Verifier); aes.Key = decode64(key); aes.IV = decode64(r.Nonce); using (var dec = aes.CreateDecryptor()) { try { var buf = dec.TransformFinalBlock(crypted, 0, crypted.Length); var value = Encoding.UTF8.GetString(buf); success = value == r.Nonce; } catch (CryptographicException) { } // implicit failure } return success; } private void SetResponseVerifier(Response r, Aes aes) { aes.GenerateIV(); r.Nonce = encode64(aes.IV); r.Verifier = CryptoTransform(r.Nonce, false, true, aes, CMode.ENCRYPT); } } public class Request { public const string GET_LOGINS = "get-logins"; public const string GET_LOGINS_COUNT = "get-logins-count"; public const string GET_ALL_LOGINS = "get-all-logins"; public const string SET_LOGIN = "set-login"; public const string ASSOCIATE = "associate"; public const string TEST_ASSOCIATE = "test-associate"; public const string GENERATE_PASSWORD = "generate-password"; public string RequestType; /// /// Sort selection by best URL matching for given hosts /// public string SortSelection; /// /// Trigger unlock of database even if feature is disabled in KPH (because of user interaction to fill-in) /// public string TriggerUnlock; /// /// Always encrypted, used with set-login, uuid is set /// if modifying an existing login /// public string Login; public string Password; public string Uuid; /// /// Always encrypted, used with get and set-login /// public string Url; /// /// Always encrypted, used with get-login /// public string SubmitUrl; /// /// Send the AES key ID with the 'associate' request /// public string Key; /// /// Always required, an identifier given by the KeePass user /// public string Id; /// /// A value used to ensure that the correct key has been chosen, /// it is always the value of Nonce encrypted with Key /// public string Verifier; /// /// Nonce value used in conjunction with all encrypted fields, /// randomly generated for each request /// public string Nonce; /// /// Realm value used for filtering results. Always encrypted. /// public string Realm; } public class Response { public Response(string request, string hash) { RequestType = request; if (request == Request.GET_LOGINS || request == Request.GET_ALL_LOGINS || request == Request.GENERATE_PASSWORD) Entries = new List(); else Entries = null; Assembly assembly = Assembly.GetExecutingAssembly(); FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(assembly.Location); this.Version = fvi.ProductVersion; this.Hash = hash; } /// /// Mirrors the request type of KeePassRequest /// public string RequestType; public string Error = null; public bool Success = false; /// /// The user selected string as a result of 'associate', /// always returned on every request /// public string Id; /// /// response to get-logins-count, number of entries for requested Url /// public int Count = 0; /// /// response the current version of KeePassHttp /// public string Version = ""; /// /// response an unique hash of the database composed of RootGroup UUid and RecycleBin UUid /// public string Hash = ""; /// /// The resulting entries for a get-login request /// public List Entries { get; private set; } /// /// Nonce value used in conjunction with all encrypted fields, /// randomly generated for each request /// public string Nonce; /// /// Same purpose as Request.Verifier, but a new value /// public string Verifier; } public class ResponseEntry { public ResponseEntry() { } public ResponseEntry(string name, string login, string password, string uuid, List stringFields) { Login = login; Password = password; Uuid = uuid; Name = name; StringFields = stringFields; } public string Login; public string Password; public string Uuid; public string Name; public List StringFields = null; } public class ResponseStringField { public ResponseStringField() {} public ResponseStringField(string key, string value) { Key = key; Value = value; } public string Key; public string Value; } public class KeePassHttpEntryConfig { public HashSet Allow = new HashSet(); public HashSet Deny = new HashSet(); public string Realm = null; } } keepasshttp-1.8.4.2/KeePassHttp/PwEntryDatabase.cs000066400000000000000000000010221306306563300217760ustar00rootroot00000000000000using KeePassLib; namespace KeePassHttp { class PwEntryDatabase { private PwEntry _entry; public PwEntry entry { get { return _entry; } } private PwDatabase _database; public PwDatabase database { get { return _database; } } //public PwEntryDatabase(ref PwEntry e, ref PwDatabase db) public PwEntryDatabase(PwEntry e, PwDatabase db) { _entry = e; _database = db; } } } keepasshttp-1.8.4.2/KeePassHttp/Resources/000077500000000000000000000000001306306563300203715ustar00rootroot00000000000000keepasshttp-1.8.4.2/KeePassHttp/Resources/earth_lock.png000066400000000000000000000070251306306563300232160ustar00rootroot00000000000000PNG  IHDRa pHYs   OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_F@IDATxlMleofv.n[?)1+Vji5%Z3V{J خJlO"!|bDDaHOg omu?ծ4]o*.ΎUn=3Vh~IENDB`keepasshttp-1.8.4.2/LICENSE000066400000000000000000001045131306306563300152350ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . keepasshttp-1.8.4.2/README.md000066400000000000000000000425141306306563300155110ustar00rootroot00000000000000# KeePassHttp is a plugin for KeePass 2.x and provides a secure means of exposing KeePass entries via HTTP for clients to consume. This plugin is primarily intended for use with [PassIFox for Mozilla Firefox](https://github.com/pfn/passifox/) and [chromeIPass for Google Chrome](https://chrome.google.com/webstore/detail/chromeipass/ompiailgknfdndiefoaoiligalphfdae?hl=en). ## Features * returns all matching entries for a given URL * updates entries * secure exchange of entries * notifies user if entries are delivered * user can allow or deny access to single entries * works only if the database is unlocked * request for unlocking the database if it is locked while connecting * searches in all opened databases (if user activates this feature) * Whenever events occur, the user is prompted either by tray notification or requesting interaction (allow/deny/remember). ## System requirements * KeePass 2.17 or higher * For Windows: Windows XP SP3 or higher * For Linux: installed mono * For Mac: installed mono | it seems to fully support KeePassHttp, but we cannot test it ## Windows installation using Chocolatey 1. Install using [Chocolatey](https://chocolatey.org/) with `choco install keepass-keepasshttp` 2. Restart KeePass if it is currently running to load the plugin ## Non-Windows / Manual Windows installation 1. Download [KeePassHttp](https://raw.github.com/pfn/keepasshttp/master/KeePassHttp.plgx) 2. Copy it into the KeePass directory * default directory in Ubuntu14.04: /usr/lib/keepass2/ * default directory in Arch: /usr/share/keepass 3. Set chmod 644 on file `KeePassHttp.plgx` 4. On linux systems you maybe need to install mono-complete: `$ apt-get install mono-complete` (in Debian it should be enough to install the packages libmono-system-runtime-serialization4.0-cil and libmono-posix2.0-cil) * Tips to run KeePassHttp on lastest KeePass 2.31: install packages `sudo apt-get install libmono-system-xml-linq4.0-cil libmono-system-data-datasetextensions4.0-cil libmono-system-runtime-serialization4.0-cil mono-mcs` 5. Restart KeePass ### KeePassHttp on Linux and Mac KeePass needs Mono. You can find detailed [installation instructions on the official page of KeePass](http://keepass.info/help/v2/setup.html#mono). Perry has tested KeePassHttp with Mono 2.6.7 and it appears to work well. With Mono 2.6.7 and a version of KeePass lower than 2.20 he could not get the plgx file to work on linux. If the plgx file does also not work for you, you can try the two DLL files KeePassHttp.dll and Newtonsoft.Json.dll from directory [mono](https://github.com/pfn/keepasshttp/tree/master/mono) which should work for you. With newer versions of Mono and KeePass it seems that the plgx file works pretty fine. More information about it are contained in the following experience report. #### Experience report by dunkelfuerst Just wanted to let you know, I'm running Fedora 18, which currently uses mono v2.10.8: ~~~ > mono-core.x86_64 2.10.8-3.fc18 @fedora > mono-data.x86_64 2.10.8-3.fc18 @fedora > mono-data-sqlite.x86_64 2.10.8-3.fc18 @fedora > mono-extras.x86_64 2.10.8-3.fc18 @fedora > mono-mvc.x86_64 2.10.8-3.fc18 @fedora > mono-wcf.x86_64 2.10.8-3.fc18 @fedora > mono-web.x86_64 2.10.8-3.fc18 @fedora > mono-winforms.x86_64 2.10.8-3.fc18 @fedora > mono-winfx.x86_64 2.10.8-3.fc18 @fedora ~~~ I have no problems using "KeePassHttp.plgx". I simply dropped the .plgx-file in my KeePass folder, and it works. I'm currently using KeePass v2.22. Nevertheless, until KeePass v2.21 I used the 2 suggested .dll's and it worked fine too. Usually I only use chromeIPass, but I did a short test with PassIFox and seems to be working just fine. ## Configuration and Options KeePassHttp works out-of-the-box. You don't have to explicitely configure it. * KeePassHttp stores shared AES encryption keys in "KeePassHttp Settings" in the root group of a password database. * Password entries saved by KeePassHttp are stored in a new group named "KeePassHttp Passwords" within the password database. * Remembered Allow/Deny settings are stored as JSON in custom string fields within the individual password entry in the database. ### Settings in KeePassHttp options. You can open the options dialog with menu: Tools > KeePassHttp Options [menu](https://raw.github.com/pfn/keepasshttp/master/documentation/images/menu.jpg) The options dialog will appear: [options-general](https://raw.github.com/pfn/keepasshttp/master/documentation/images/options-general.png) General tab 1. show a notification balloon whenever entries are delivered to the inquirer. 2. returns only the best matching entries for the given url, otherwise all entries for a domain are send. - e.g. of two entries with the URLs http://example.org and http://example.org/, only the second one will returned if the requested URL is http://example.org/index.html 3. if the active database in KeePass is locked, KeePassHttp sends a request to unlock the database. Now KeePass opens and the user has to enter the master password to unlock the database. Otherwise KeePassHttp tells the inquirer that the database is closed. 4. KeePassHttp returns only these entries which match the scheme of the given URL. - given URL: https://example.org --> scheme: https:// --> only entries whose URL starts with https:// 5. sort found entries by username or title. 6. removes all shared encryption-keys which are stored in the currently selected database. Every inquirer has to reauthenticate. 7. removes all stored permissions in the entries of the currently selected database. [options-advanced](https://raw.github.com/pfn/keepasshttp/master/documentation/images/options-advanced.png) Advanced tab 8. KeePassHttp no longer asks for permissions to retrieve entries, it always allows access. 9. KeePassHttp no longer asks for permission to update an entry, it always allows updating them. 10. Searching for entries is no longer restricted to the current active database in KeePass but is extended to all opened databases! - __Important:__ Even if another database is not connected with the inquirer, KeePassHttp will search and retrieve entries of all opened databases if the active one is connected to KeePassHttp! 11. if activated KeePassHttp also search for string fields which are defined in the found entries and start with "KPH: " (note the space after colon). __The string fields will be transfered to the client in alphabetical order__. You can set string fields in the tab _Advanced_ of an entry. [advanced tab of an entry](https://raw.github.com/pfn/keepasshttp/master/documentation/images/advanced-string-fields.png) ## Tips and Tricks ### Support multiple URLs for one username + password This is already implemented directly in KeePass. 1. Open the context menu of an entry by clicking right on it and select _Duplicate entry_: [context-menu-entry](https://raw.github.com/pfn/keepasshttp/master/documentation/images/keepass-context-menu.png) 2. Check the option to use references for username and password: [mark checkbox references](https://raw.github.com/pfn/keepasshttp/master/documentation/images/keepass-duplicate-entry-references.png) 3. You can change the title, URL and evertything of the copied entry, but not the username and password. These fields contain a _Reference Key_ which refers to the _master entry_ you copied from. ## Troubleshooting __First:__ If an error occures it will be shown as notification in system tray or as message box in KeePass. Otherwise please check if it could be an error of the client you are using. For passIFox and chromeIPass you can [report an error here](https://github.com/pfn/passifox/issues/). If you are having problems with KeePassHttp, please tell us at least the following information: * version of KeePass * version of KeePassHttp * error message (if available) * used clients and their versions * URLs on which the problem occur (if available) ### HTTP Listener error message Maybe you get the following error message: [http listener error](https://raw.github.com/pfn/keepasshttp/master/documentation/images/http-listener-error.png) In old versions the explaining first part of the message does not exist! This error occurs because you have multiple copies of KeePassHttp in your KeePass directory! Please check __all__ PLGX- and DLL-files in your _KeePass directory and all sub-directories_ whether they are a copy of KeePassHttp. __Note:__ KeePass does _not_ detect plugins by filename but by extension! If you rename _KeePassHttp.plgx_ to _HelloWorld.plgx_ it is still a valid copy of KeePassHttp. If you _really_ have only one copy of KeePassHttp in your KeePass directory another application seems to use port 19455 to wait for signals. In this case try to stop all applications and restart everyone again while checking if the error still occurs. ## URL matching: How does it work? KeePassHttp can receive 2 different URLs, called URL and SubmitURL. CompareToUrl = SubmitURL if set, URL otherwise For every entry, the [Levenshtein Distance](http://en.wikipedia.org/wiki/Levenshtein_distance) of his Entry-URL (or Title, if Entry-URL is not set) to the CompareToURL is calculated. Only the Entries with the minimal distance are returned. ###Example: Submit-Url: http://www.host.com/subdomain1/login Entry-URL|Distance ---|--- http://www.host.com/|16 http://www.host.com/subdomain1|6 http://www.host.com/subdomain2|7 __Result:__ second entry is returned ## Security For security reasons KeePassHttp communicates only with the symmetric-key algorithm AES. The entries are crypted with a 256bit AES key. There is one single point where someone else will be able to steal the encryption keys. If a new client has to connect to KeePassHttp, the encryption key is generated and send to KeyPassHttp via an unencrypted connection. ## Compile at your own If you want to develop new features or improve existing ones here is a way to build it at your own: 1. copy the file [Newtonsoft.Json.dll](http://json.codeplex.com/releases/) into the sourcecode folder 2. delete the directory "bin" from sourcecode 3. delete the directory "obj" from sourcecode 4. delete the file "KeePassHttp.dll" I use the following batch code to automatically do steps 2 - 4: RD /S /Q C:\full-path-to-keepasshttp-source\bin RD /S /Q C:\full-path-to-keepasshttp-source\obj DEL C:\full-path-to-keepasshttp-source\KeePassHttp.dll "C:\Program Files (x86)\KeePass Password Safe 2\keepass.exe" --plgx-create C:\full-path-to-keepasshttp-source ## Protocol ### A. New client or stale client (key not in database). This is the only point at which an administrator snooping traffic will be able to steal encryption keys: 1. client sends "test-associate" with payload to server 2. server sends fail response to client (cannot decrypt) 3. client sends "associate" with 256bit AES key and payload to server 4. server decrypts payload with provided key and prompts user to save 5. server saves key into "KeePassHttpSettings":"AES key: label" 6. client saves label/key into local password storage (1) can be skipped if client does not have a key configured ### B. Client with key stored in server 1. client sends "test-associate" with label+encrypted payload to server 2. server verifies payload and responds with success to client 3. client sends any of "get-logins-count", "get-logins", "set-login" using the previously negotiated key in (A) 4. if any subsequent request fails, it is necessary to "test-associate" again ## A little deeper into protocol ### Generic HTTP request (based on packet sniffing and code analyssis) Generic HTTP request is json sent in POST message. Cipher, by means of OpenSSL library is `AES-256-CBC`, so key is 32 byte long. ``` Host: localhost:19455 Connection: keep-alive Content-Length: 54 Content-Type: application/json Accept: */* Accept-Encoding: gzip, deflate, br {"RequestType":"test-associate","TriggerUnlock":false} ``` Also, minimal JSON request (except that one without key set up) consists of four main parameters: - RequestType - `test-associate`, `associate`, `get-logins`, `get-logins-count`, `set-login`, ... - TriggerUnlock - TODO: what is this good for? seems always false - Nonce - 128 bit (16 bytes) long random vector, base64 encoded, used as IV for aes encryption - Verifier - verifier, base64 encoded AES encrypted data: `encrypt(base64_encode($nonce), $key, $nonce);` - Id - Key id entered into KeePass GUI while `associate`, not used during `associate` ### test-associate Request, without key, seems like initialization of every key assignation session: ```javascript { "RequestType":"test-associate", "TriggerUnlock":false } ``` Response: (without success) ```javascript { "Count":null, "Entries":null, "Error":"", "Hash":"d8312a59523d3c37d6a5401d3cfddd077e194680", "Id":"", "Nonce":"", "RequestType":"test-associate", "Success":false, "Verifier":"", "Version":"1.8.4.1", "objectName":"" } ``` If you have key, you can test with request like this: ```javascript { "Nonce":"+bG+EpbCR4jSnjROKAAw4A==", // random 128bit vector, base64 encoded "Verifier":"2nVUxyddGpe62WGx5cm3hcb604Xn8AXrYxUK2WP9dU0=", // Nonce in base64 form, encoded with aes "RequestType":"test-associate", "TriggerUnlock":false, "Id":"PHP" } ``` ### associate Request: ```javascript { "RequestType":"associate", "Key":"CRyXRbH9vBkdPrkdm52S3bTG2rGtnYuyJttk/mlJ15g=", // Base64 encoded 256 bit key "Nonce":"epIt2nuAZbHt5JgEsxolWg==", "Verifier":"Lj+3N58jkjoxS2zNRmTpeQ4g065OlFfJsHNQWYaOJto=" } ``` Response: ```javascript { "Count":null, "Entries":null, "Error":"", "Hash":"d8312a59523d3c37d6a5401d3cfddd077e194680", "Id":"PHP", // You need to save this - to use in future "Nonce":"cJUFe18NSThQ/0yAqZMaDA==", "RequestType":"associate", "Success":true, "Verifier":"ChH0PtuQWP4UKTPhdP3XSgwFyVdekHmHT7YdL1EKA+A=", "Version":"1.8.4.1", "objectName":"" } ``` ### get-logins Request: ```javascript { "RequestType":"get-logins", "SortSelection":"true", "TriggerUnlock":"false", "Id":"PHP", "Nonce":"vCysO8UwsWyE2b+nMzE3/Q==", "Verifier":"5Nyi5973GawqdP3qF9QlAF/KlZAyvb6c5Smhun8n9wA=", "Url":"Gz+ZCSjHAGmeYdrtS78hSxH3yD5LiYidSq9n+8TdQXc=", // Encrypted URL "SubmitUrl":"" // Encrypted submit URL } ``` Response: ```javascript { "Count":3, "Entries":[ { "Login":"{encrypted login base64}", "Name":"{encrypted item name}", "Password":"{encrypted Password}", "StringFields":null, "Uuid":"{encrypted UUID}" }, { }, { } ], "Error":"", "Hash":"d8312a59523d3c37d6a5401d3cfddd077e194680", "Id":"PHP", "Nonce":"Aeh9maerCjE5v5V8Tz2YxA==", "RequestType":"get-logins", "Success":true, "Verifier":"F87c4ggkMTSEptJT8/FypBH491kRexTAiEZxovLMvD8=", "Version":"1.8.4.1", "objectName":"" } ``` ### get-logins-count Request: ```javascript { "RequestType":"get-logins-count", "TriggerUnlock":"false", "Id":"PHP", "Nonce":"vCysO8UwsWyE2b+nMzE3/Q==", "Verifier":"5Nyi5973GawqdP3qF9QlAF/KlZAyvb6c5Smhun8n9wA=", "Url":"Gz+ZCSjHAGmeYdrtS78hSxH3yD5LiYidSq9n+8TdQXc=", // Encrypted URL "SubmitUrl":"" // Encrypted submit URL } ``` Response: ```javascript { "Count":3, "Entries":null, "Error":"", "Hash":"d8312a59523d3c37d6a5401d3cfddd077e194680", "Id":"PHP", "Nonce":"Aeh9maerCjE5v5V8Tz2YxA==", "RequestType":"get-logins", "Success":true, "Verifier":"F87c4ggkMTSEptJT8/FypBH491kRexTAiEZxovLMvD8=", "Version":"1.8.4.1", "objectName":"" } ``` ### set-login Request: ```javascript { "RequestType":"set-login", "Id":"PHP", "Nonce":"VBrPACEOQGxIBkq58/5Xig==", "Verifier":"1dT0gnw6I1emxDzhtYn1Ecn1sobLG98GfTf7Z/Ma0R0=", "Login":"lm9qo5HcAYEIaHsCdSsYHQ==", // encrypted username "Password":"EZLtRxFgZVqIwv5xI9tfvA==", // encrypted password "Url":"", "SubmitUrl":"" } ``` Response: ```javascript { "Count":null, "Entries":null, "Error":"", "Hash":"d8312a59523d3c37d6a5401d3cfddd077e194680", "Id":"PHP", "Nonce":"uofAcMtnPQo5TOdI21VjBw==", "RequestType":"set-login", "Success":true, "Verifier":"4u8OINVGBtlCCPY7OnW5T616iPlzvf56LzPtPAwZIs0=", "Version":"1.8.4.1", "objectName":"" } ``` keepasshttp-1.8.4.2/build.bat000066400000000000000000000011421306306563300160110ustar00rootroot00000000000000@echo off set base=%~dp0 set findnet=powershell -command "$([System.Runtime.InteropServices.RuntimeEnvironment]::GetRuntimeDirectory())" for /f "tokens=* USEBACKQ" %%I in (`%findnet%`) DO ( set netframework=%%I ) pushd %base% cd /d %base% del KeePassHttp.plgx del mono\KeePassHttp.dll rd /s /q KeePassHttp\bin rd /s /q KeePassHttp\obj "%ProgramFiles(x86)%\KeePass Password Safe 2\KeePass.exe" --plgx-create %base%KeePassHttp %netframework%MSBuild.exe /target:clean KeePassHttp.sln %netframework%MSBuild.exe /p:Configuration=Release KeePassHttp.sln copy /y KeePassHttp\bin\Release\KeePassHttp.dll mono popd keepasshttp-1.8.4.2/documentation/000077500000000000000000000000001306306563300170755ustar00rootroot00000000000000keepasshttp-1.8.4.2/documentation/images/000077500000000000000000000000001306306563300203425ustar00rootroot00000000000000keepasshttp-1.8.4.2/documentation/images/advanced-string-fields.png000066400000000000000000001230301306306563300253640ustar00rootroot00000000000000PNG  IHDR gr7tEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp hqIDATx] ~3,r.( ""H<HD6(IЀ*&^$ (AED]@DYή>fv]0S]]]]ի^n馢Bرc[sw#Fvfƍ7hР~Qpw ~歩)ƍuEr~WZH ^?iH?C9!$Ag'B7{&Fi$^I$I7 1o[|A?MW SQn2JP}$3a5*Ikx|Ո^ϩ ո+2Yds14SM6l0Z?qŶ{xGMBCeCm~wяk; +X!*&DNݐJ'%ēmo~ y"#r'u-ry$~]rI"L54)HXG@x)E" =Jݒ, üi(K<,W<;n!wZ&|n&: |Ηxuxz+OYg R•~')Wx Fo+ h&e_.‹wAzW {ۄ5%?b;<*y5ybҚSt^-(1+DJ#\$D]oxGyAd)(SQDf#2YNĩܻxOm1bet"0z SY抵N ❾HwcБw?*x⻛>8P0V:z1(~M_TpSPkIX/wUŅA c,Y}Xa(ֻ梅F*{^\?а^eD4$_ zK fVߖȑh(f#_vtoBpYip9xpߑ{T}!n5 F$;mv1;[iߖЃ<Ċ`e Zz,Fk"%oחï裏:ݳgLپsF@S@+jfTWj(!dW c8|| tKK^KhMv58GűhB ?,'Lz wa cߓ;~z]zi!X/KA'ϧ_O',W lWC('Lu@1OUy#fzJZ~ˣ+^q,>h Ёe7 }bv@fVr.#nx~8ˡfsԮ٘.S$-=f6hl[X=wM_FKu5׼m) #ؐp$Rv??7!SY">È@u fpo Zw=GX"BUx Bwy:יO:?7i > {}kiZ:پnN/>}N\Xց>T'{S$`Q)c*YCۊhoHց+Ux,aY2EDǥh{AB ώof!Q{?[vM:} q ͸;WMx˂ uzv(`uA^^LejHq˱&+-,BF%(aDHiԁޅQg]&tsR1I`xyUY5Bj*Du$YҳY+,&;zW1D/6=_OnvsG".**3 35Sao6c}3"V*!lc9‡$ARN]!ϻ%߉jJu)C/ڇs8JG#zzPO!GD,ve 4K ) Dׄ\{$b!m|Jq9\1Azo<˟rx٥DYt9g!+[DMSn YN:.-ŊRDcc Q>2pO]5iֲpswӸ76ٸoKfEXؿ7YX:–z%; 1ړA7>"3\ 1^MSP`|! Ox$GeuC_jzӣTx*Q4.]YEàp@Wd= ʮϋN/"J}^wn6٤){DHJ[Rasq8M3Tu3z vP8>w瑹%\ (.K!mo@SU:GKԻ { P^ޗBXI"@:, }qNРMqq;Ump'Ų9g !EУ&LzdGozݏcEOg9uƼ2?/>YPH>+4'/v9V| Ey XC`S%r LGʁw~{=t@䰂' OKS54 & "x=0-(A푚;ۅD1O4-?Cy[8mZ $&3@̓'J}ҽPȸמ]wmHR$zWNaiN =V/kRKZ>sWVy)(…%dZ83+"nyo:w(?w%h re{}ŝ}fH=i ݳC$OT("IE9s/G?"@֝哳ν(.z %<~?f{ߨ??$Kꓤ\[+~.th{RCASk=8j|W}AI@j$)'NDXa7޻H/>z5O#?rQ#Z{.р4}{8`EQhXJRGR[ S 5ԆVJC4$ Bj*4SϘ_ŘLOJqO'˲C h9NiN&8gq΅sRV$ ^^S[,YE%1GN5~hs~4i)F{W٩v߉ͽќv=Ǯ|$w^|]ݣVٚ.Lw?]Ęiw6t{g Ey̅W,{6˚ֻ]C-:޸OqY3ĞE>Ń&gݹ5a\x}9UľԠ[KCRƑ~Q2BU& Fܣ [@%VT5.R32_ 83Ҹ^?6\X[ik#~גX!%1BkL= LbitP=`]ǪY_ˊz ѤŌ9(nf'Ti+KO_L7"/)ШRƝVg,;(Q TՔȱbRTL;?fCz!mxbæm%ɦ(wE_: /kh9_' ?IN~'d΃pQKj{+K w]fVyטkC >`Ӣu͎b6k|F ow:S"Jb|x&ϬBWkvpSCg{,/+hHržEuO84*p,5u2u8>8 MM,9ѬPK ۸D:o%ZF 7o?)aŤQv_̺/"k&u>ZxdBvW cb>n1oCF:DzIn~X.,&^.|oଋӚ#GFݠOm=Ts(Kf^#L|/PxW9k"8{s!ĖVPB'=g]c:_⻟!~7^WCU||e$xU>q,{[:[58O z]$y,e斎iN{\/MRP <a7ᚾ|G\@I\Yӆ8ij6vQrZgqׯ}yۋѳmC̆ҵη7hh,sۚ.ΰ3~ X۬;7l;a9k=ڿg/g ΅2&ʷS%! _*$taɾCg '<w9ȑ`= m#_P*oZUY .xAPGϨ {-3PK*X^jX]us8^Qz wPq58,@8 #% kBqNVH)ny7.c{*yN^y{qn;BcF)u8–²FP5R-sbJpӽH4ҰqN|Es{*р!Y_|~Ȯ?C r7C+_O j>r[\4vҝ?ZywEˇ[0)Twn c o$l 0+x/x3(OcQC5䜌Uğ}U+*O+,'Y4Kj !A32+I54AbHlG.{3{CtG/avmپs使{gו\g:A} Z]Wal>g@OQ̕űIXMF+.`K}ZnO_c}䃵iw?bRTJRRZC5~/q 0HD(e3ԧFĘOi{#Vd.ۦԺcjbJ7lGboI?35⻚LoӒyk!¦R*,'xԐ_m@B %2zf=h=DC?'[EpˊZni"M* .▯G =˦']k"oټImV=UC~IyU5q({a=^T T(j6HO/B88Z2=+ k^qt|Ptz |p慤7$i`쌖'(DO@EӗހWG'ѫXSF Hp ,2XGyO_8\=+~p?z{'_]pE{AQڴϷoxk\YSa[a su@o Q&t-t#QtҠwy?wo|=W193%cc[u㱝w/j 4`=8{=R;7KIfMհ|'clUzd!WМG)gH{} PX%n)A:m@AeotR}!Ww>Q=SALD叛I0,a j~ŮKڑۼ5V<|xG?w,/]+? <s  Fx2'S×K\s*-ShV}J ,,UguT)Vs }L\o*P bI3CT/ƞg*cRR_Uc6.8"|U{ QHI7>R' ䷼+zuqT] 8 RҶ}qNu,*1MP[ͯNM%B8Ms2D(ZeH|הtm! h)x.߃|l ЦE*YqB)N&cbuM@@J'pRjBw#j*XtG7nY>.{Ewu[Fco\F, xT9$3q"(9mD?C4ۃ'}.3" X%H8fvmuqT9,M ٸ N^LJ9L0$SmpH45' hxBkWW9G9!2sV$w͐E =g"-WE%< *B҆h2LQ$Q8L=m}^b(S=m "y8k>wQyoZ~ӧXb ۄg }EHҊVYHe'*| a8Tr6 4ynHh<{ K6 1jS =ȿC8=bҖ]&'G5Aك<\!$# ,Wfmq}`Z(͒ZJAfU@"zN  4(7j.ZF 3mi)Gĝu[>DyXutCf+Be޼tyRtWZa,L8]@("nO1V]KyɴYmW;p7z`?DZ \MRyW6Uaf*'?Y9ʒN o0p5# @s&X'--9RO #LSUP0aYC:#NlDټBUxuDJǛbM!L(9P'07[qk"Eq8 .CBjcR(7֠֗x۠5B#6QB y=QI+/_kF{2bĈ"\yaAAz V3bHb; HF-[f4$Sy|eQv#[iM".QJ5^]FMPyfH^<9\$ $6W*8O -/튑#U#FEErPb1^ŭCQ˃\9"eӕ=wYWD?A_t 1ah*|w:C$"F(O AvHr8? 1Lx oⱃl.ag/s+Ib6maP, XAa@2,j^{Qq:K|'$emǜv^r0a}41R,|4$Ui2@-a^`L01f=W'=cK51(ccty#Fw >|Ӡw HZ1aN() rS&ubnt%-u!D3 R7(u 핐x rq!IlDI(BYrR^EybPވ# `ƣtҕp7Qʓsu^PW@j1S8COl\8b;Qbԍt崓e8bYQ3 {T}5 G&,D0^kҨxb<򵎱~qβҖ-0<7ͼqFEil!f"3E.UE2&y^wJA45_$:.W@.Q7IJׁ'z8شSnv5$$ *;zHǰA21&f2R-Mv?ZoO1# 5,j"ANߖ/A>5H A#Ÿ! tFΨP$$Cs.H+BK䡨M,}xL'IAxeKhn@8+16.|{ށo8ÑMݟ}nя=6 4bx@<]E'I,F)uXħ4Y,POQ#NRqKy߃?5w0x-fr`3\:l! i(( [G`UϚb7jy Q;7jϻMy|+T{B%@ oߎ#.g7Rؾ@Oo?/]ij\պ?s>\-~-o΄6] JfkXZu_|o@^;3cfxM?i{Fȸ#ܬDEV,Ƅ[ %F ѓoWypR06s,v0KpD©n4e7>OgF1_Uܮ'!uL/( ?ksg7ÎCUH,|zfwt#m┱SJgު݈j x15^#A(bc)s&$ZZ@3EcoblLxN;+H.֏lLנVlkM$h8 VizvX6@(rete])Ҭ|~v+#4j+ިtgvJ%Na4J KGr63G}m O9W9SLj'g.qFMhzR7I's̜ MGNLə;2R gj((QTt5@`n7$t!*cBO6܈Bpc[#,Eʊ*|~پS+Iئ}͇ *FOF+Nű$Ϛ^2 (5* {PWg\T#(o#h8~ : 4Vmb6SlXWwJ 3*_`m&ʄ}#|ݵG1ڼ ~]t齳2ݖIJx΄oSB2go> ~{L˯lkOIqC3is]X?s\| b_T? :sZ`uMmU%2VBV7|P"D>%}lHA ?D#F"Ry3͸F f9?>\'XՆ%۷^y2J[Ҭ[&#Оnސε@h=?ͿbxJq,/Yۇ-΁LH~λ޿=w~Aɛvi'*HN{{*sV@"'({t"9iFnLXސV`%^ɧ,3 0}#t)̩.;sfYX'\qJ Do}Ml"&웳g &oq_K6SnG@Iq Aa6w~FX/Ų(Cf biNOpSJ'#Xxz\9Eֿ~ǚ)ӛw;aVlxkm֫5Է 9GP/^~olV<3}G)N91-}q-sJ5]e_1:ZdV%8ܗsÂ%y'CZ6eibƃJtA2>0SI+竟*(F խxwT2OW 8'kNAnJDD6a nw_ojÜզR0f9%"ub@X6fi; W R7DXݰRG9|!|ürEe4~ [+ 񫊋 ^Ub3fT!a]im3݆oʈ:3?ӻ[Z3KI@j{a(VDx\Q?':+sJOX(ϔHh8yb߉Oqe$ ,bK@wΉIWR=]#s tVSnOwQTO׬zFٵ8ce~-fZ"QZC@{s ]>))gu,\(KJ3Pfa OԳqegҳ3=yx/kaOI:@NLl9wߞn~9Y=G]ug+[c5z%:C[֭,yY(:EO75v;_m4J`NX)cE ZaƩZjoV/v5}M{ʋ"}֑1|,AGjՓżY4N'/m憀cҽT})|ydkql@PjtƋ!<̧qlW͸: =qd&)y;gȐ_ ʎz%e8B4Se 6H1,Fiᦔ/;t6N%u/#F=P'_6IʙAQ^td=d pZmn@Wڀ#.W;̜D]aRcBFPE-Il(2׀Ŝ::^p5⯁C>b- Tq+vo~<X Zоs{{g嫑F-KJ.ЀmvoQa~XlMJK9Kֽ0lPTbT'g?3mb$YՏ0Ѯx1xbp l69}˩ ρ.3 dP[vjTE0x0R@\:Ҷ9ac,cPmkBCy9-[giN!5رzZ2W>s{iZ~ (Eje^@l?usBſ QA){k`5 n˕+.5c"oUGg a##< 5;wi&Ȅ)ߡMR04sDl G Xciu,0.>"d![lz iׇu]·*cI슻!h<@`p) C0o6@q.P5LAӉ{x?jK:A2ĒIHt*aIn5 uG"R1:^?h?z(lA3_oeJq藛Yn 8TTx=7b06Tms=j(!@{ս[[`1gimGƎ1l[/cɇ$ET)7v5r2﫽(Y.aE~{Y=nu 4m9>'ctrRZ?Ow)LHzl̞-|r{>=E- 1RQO"\%gk:áu=.!0*<^Megy4 SF\R Svb4p fM+U"a6IkTe+V/ir=6c1~sC&g1 RԤ}A:o>Z@U\HŝN_޲e F/Jm661ƭ J/^#oz]E ]ˀ3c8N}[2'5-7ڍ|XE~lfDxũ"/}eyN㇎^S@tcM3%eq替v~c(9$ϋ~l~f0r9~(OC,a7G'DtHڵxY &z)ԞE^kFJqg4|IemgByg_yxB=^|qi6M8eͧQֱm>1-f+kD5R^^i=@+/>SLSݏۺJ)QlQ"d@\ަޟՍ |fy5:=Qlu#/bJlHl$W fA\>)= c3/X>)Ro [ݾq9{_hv&8=KyAqkߔs%#~aB΋Sܵܮx4ruhq–ɘcRS=  K(I4noNˁ^yJԍЃl"UB貑%eRWn6ABg_+XvH#r΂+GK-!@*mo4|oܮQݬkZwu畞vi>GL1xxfͱ˜Ik玛/R`Yg*'}H b!*sXcS/>qbW?Jn #dH淚Fhu֒!k\,]H78qE4I3n.9Φیy۽iMi!۳K;q͛vvR7 #-#,2E PE">Q@l"VKmxApó3HXB61a6y4Zճ,8s_nWTcv{r7?뜗bWg_М)H T;-p pjch`¼Fڜ%}๡/?1gNNcZa 5>cھm>  _YSz[i r}7ȄaL1߱\7h~0dxikmZLւ5vz쮅o3!)_?md.*3}3Nc S©>[2EM {RKtƍ%N9Y7e zq6LhԹRa4%bk 5CNSh- O4ݹt(iS{ P74?,"lDp(.9| P$Yq$ 0s,k&~*|BKX*x[fft񶚣[ B*(O9 K[Ծs?^/ïCx7<4n ׌luݧH }k}Q4Oٲtgw?'swWջI9_<S}?=muU>[KGyD6{_!n!gx0ذ-F+,Ι=l5+-g}l.,_/΁8YL,̷g`F;qg*-N)ox1g4.%)BE9GOY0zs34B'rꎯ4-IK]*VP۲r',qg2$9(WZeqf>)D/ݺGǻݺmlRvUܮݹvOWp1x&z?0'pF[\r\8kQ;,*lگ]>g]_seo8־s͵KW2)~ 5Xm C٫.7qo֝1 ;?Cv^c'({dk3vY<͹O |ks(2m;qϘRBچXRO&ԙό3oz"_akQ.XLitT[*+h3KW8"" tx;|g(ϲ:S:7`P;w &¹Cj@s64<P#*KqjC]{}}ū[^Vo`7}>Soo47:۔ߑΎҴ3Kd/a/v4](:f׌gCEʤʣ&'̾l%ͰUO2};z/qeAo8D4XW?u::lzvv&-ق0qbfO dGw 3FeROp:I&Hg԰lv"O3:cQ֭ m+3{",]ulc6)-pY+KKbX,B1[q T$2O}2Z 4'cӏ(*~ǜ+vqQVR++u.ԶK .WOO܍S]$浱 &( w륆^Gv,l@ᢖ;rw Gd N#;zX~Z] 6;bHy=4nZ=橣&LY7y}mM6mi懫Ql. e&*uH!J4%ĺ|hh/,Λ=+r790 @É`_Q#~O:`phM9dƍO!N9Df2kyĜ5ƹ'S5KhQl}oaRFʛcI(6@R Q9">Af`DeItX5ǶbQ"U3¿ O'K1Ek35^@ui*~ӈ}URߞ]~mtM-8BJ.:c=І}S[L|Cv6k*j4_ݟü,wȵ3 sӫ!aj$ (8Ȣ4cN.1_"vuCt8hРB%6Gy4Dۘ69:2A/ߞ#ޫlj<ܺz%E>ZT#>(t *vn+i;\xX4֧9)ɮ/rm#k1(V?ż^ E=8v؋p_qCyD-ևF0Dh=P>xU{a4#P>xa,X9tF{g+~_olf@R#ZW%hvս~ڽeS }7tGM-=W/nSتY 6oiC#Fj92׵o"&3l+X z2`ɹs2$0Чe΢Z8BaUQ}OC(ܳKĂF9(/-FQ7cXێng?^3!e=@woUZct&ヸ)%4bx1X_Wb64Żv$-9s]{gGH`uގF%%I%^ɔxX݉Z+=4" %cp߿ߵ}^{# p䫔XGˌwb#F_ْ)"1[r0«T6 `2Uc1b6D蝏zA |3 4ҭ% İpTZ %QOj6'|9vi9olnJJa7wp-(+):5b8+/)m`1%m,F ) Mw!m;1lހR,ASQ=9He/MpgUy* , !C7呤j ;ra/[}oK꥔4(iа6ۑ[3bx^c~G8j3{.+ +J( 1n?ذVE#!&}:ljXC’HVGtYR"UK\985F Gϖ:*eS +)$s36EܶN'W&Z)c،H8C:{ASJr̃si,ud,шZv-)I>Ĉ#@OFO5^|Dl\GVX)$ >`llP寘N>2. )Xb8an(vL29ρ1"b,E{$\+OmnE=noF)a.Sm"5Jt4wjƌ,2^!`G6_7MGGG#ԐF?H(o !e]ϩIj["ܒ0,Ù>V6י cCAy#F$ s.`{6oĈ#uUG.r]24bH͢nȉOſ4GutI Hϛ1 ,Fxˈ#F<@>6󫙬u U.|[oZޤI鵷%u`1d-˵u0T9;PRDCy%mWϹk7khsw5k6tv~NAhVOLvy<N#F.rV9;$U+X}胃Lxv%sudt y3+#{)M9) ex-E2AU@\h=+Q~kϏw+K9uB:_q0n^'Z;dYGԀZr-7yXcPݸI&O")!}y3fKn9'=p:8tȚ#d.{z#C֝y_6HYrrrnXу5#3oq#:U]fvuq2D EO/2F9%롧=-d{7l_ytWvvn쩬DqBX$YlgFou(U*v k'su=ҐsUm`D{FSaӛ5/lDJq޲ge]F:ex~vu='D=r7jNS\kO$|yA#h4Iʣ{R˕,%wwT}G`߾tקiz߹KVW.;Wu$SM~;X+njLgTLʧ@+޺ĭIFիfk-ݝw>pֿE]˕%SHwzջz'UMMIVſ <0{e(ճF\FHaWӝwLO꽄xm]va3Mھ6vX=[.5$KbGqؽ_uT)sRc6vhZ9{n~νzJP\n:FL[:iNaڕ1"\isNWut1drA`ܹcg/\:'+ 2>@&<ڹ%a9KNj_^{N]<偅ƥaæ N}@{'W ;˿ޏo~YS=<*?Cn Fx+JgO&){JQNyIpzxnZٯo~01@eØt/2/;}^kg MQ8ff?=Tvx!::E'OWI]qfv\^vLp i/Z%;ٕ~C.!?<C2כ$KўF_;J Z,Fj#Ew+" Iéú<z&2C.:K9iMhAmi;|?"K0S҅6唜Ÿ^fwrJ0OÓ :z?g0eI&aw_H]Ðf08 2:O~(W/࿄;=v] 0z; <8w?CkHmc-[ݶff[xøs;_w6n׮]Q~AId}}ٛuW08̚gǎg?Q}wCů8V;g7>)X~s}y ]\2Ozn7wEyJ,yzN^ݬ2r|0Tzk߿H]YOJj>O060D聏>z{5ڭv?qZ8= T8al"G&/E%7jTZ_+lN#{WD@yq{G'PGO̙k|:TɺuOlM,0#G Ç@T .O$WJ#FA!FB=,)@"F16j4;EfɈ#F*ʣL'47Uވ#F.oI ccW~y#Fʼf_eQĀ#FQg+'ohy#F` md*9ě`F9TygEĐ|kgHE=dlA'͝>o,];)=o=E0]B0$vz>g d*Ysro<(: Mǎv*ͺtOpeL[:ItUވ#FNHax ,RrTp/cFR\V?OY8[nJXAѽ4pXزF1RKz^)Y%WVIZYWߺnknM5vR$ry`kF1bHqso;-W2ҩ <<ՊLVQ ڹ ]/=vE7RTy0&0n{dɒ^3^0aN]>9rNk7`6_Sxӟ.9vd;=FU7a/%q}Wm%JmLcglR.|tZIZtǬ̰ FjԋFKjhwh|Ӣ-MLc Ϝ霴rԂlG굍/mJ{j`x7bv3;&\On^f4yX^Dآϼd|Ѡ~* {ܽ>Ts[ԏȹC?r)0dֲYb# xH Y3/]?J <$sF#6dtv!+%ۥϷ)ѕxJ?]`gѻͼi5~2zMw/9XM<wuQհYEU B<()`Jd >Kj>06s+ɤ]ѵm,@Ioĥ~>k>" A0s>̝;O<f.s99gΗV\Ug~aN7F` &-O Mw13 wEMJN$jÚ:RC2ՐvK6M7vz7a [~ĦVDk\3]S7s`;%_]?8e'çhA>z#'txqFlxr"ImOp#FhIG|x_x{hNu,?o]!Ig©?bY;ޖ'f GnjNf_x$ո:qsUfc?dHZ?+U_xB( XقNLGƯrb U mw v1Q^^ާOeXVv*xy=?^ޙ^0 7ha۳gϴ KnTx¨ymg#!!aÆ v ѾP+G˗/u/䋽GoX1qc7F-]bv%Cy<5;y;n>m0%kE]UEɾ?`e`n{1pd奾;ݍ($''??p#޽{ٸ\!hIOI,(ŬvrժUV;pqF^z 2ĉPy-/LbL.ܹCh/|ěMYYY#G`!yB<6 n}:uyB_u:2C. ..aaG|U^'Lн{oX@bSӳLy 7sAD6]tS ӸQ.O6Of3u_9t*Y)滈f7/+%rƓU}>ƲbI&N'}w(TI|Td4oLdY&7_gB1sriY@;)5tD:B"m煮g0d{q}T ׶N5! [ʛc# y~yN[n<{hhPBҺɓeGA~f؆h.)Pj7:(hѩLbl^T_q5<}9t+],YpeN\c#2ٳ_E;o{yyI)5fҜUvFc=ӔNH " LH.U-ZNdnUrJ^`eE!tUU V/%>gݳt1* ewՉSn"q9<`Ξ9ZDaSW篶s'Hp?駟tңG~] LpΘCU^Z/ܺuƍnn*zE`{v1;7_'WߕOnw?NJW{<7lX@:$?#? HleNUSb ' +xXGyyy>}JHQTnUVt_ Sye~7[_/(σEJx geǎ-EmnTվIj1ӳgϴ \Ɋ ".|mu'*woO҅y%[?|0/>]QDNY"^Hc`@kX& Yr~|L>mvvi.C] 6$''vÑo'=zX|rT5U^nZc;s3uCu^^SU[^0mFIh`3+7ʠ G"v:̝Kf QL Cş>݁U67cCr-Yx [#N{E1{X%HvJ!0OݘV*L@*IOhzvsN JH'!FlyYXJK/mP1pqHIc)ֈ@ TAE+T]N~!W|x~Dݩ/G$qvy[)hg1@o SMm?ow޳ʻ^5{IϾu-'5FIeͲ,Da}3w/ 2KtlX͜t~n3Lje1qFUn6IUMB?I|Vz*[9s|ƚ Jjdm p%w("u6pXD1n/ b<҈٪0qpVz~RfR>"o-Z/iZSKxlx ;mb@hMU bin6d?3auWB`RNxzz)JQDQYTSjkki䞖ǡ*("坹Er¡*QDg#|v[EО*_mb9/+wq=rϘ;n I|i2lذKEYY/g!ø( CXƋl1kz}o0NJmk[nk;8c.ia}e{d5 S̥|A<\.$Do|anY;ӱ8 W6V!ymHaqQ|"3\oDG<]:iS^_E@=6m% }T%{{ŜJ؊ [O8k}.4-s1(?Ǽ'QWۣ*lkӅ zƠWb?m1 Y(//ӧOII2ZViԖZ8%={LKK RH@͊ ".<8+ 6lHNN;#Nz|r<-WQ^ UyPyPyPyPyM@<<ga1෯@-<t58[bmyPpc (ߖUU<о;wq@*ꏋp~}{\ mj)UT{f:u]fNЇ<WcNGbPpqnAJVyPyPyNr:I*#IZ!QXۖSG[J}aSyGt|.$Mw J3s17b~,mϜY+,M3XI {."LH҃5)֏ƨMBo6'q2A& N5O"15f'x>#{f/h̑Y\.xglVaVH'I:w!NW8%ʫՆEIU]${ߢN>ߏ,H+TEEZWmUd7Gtxl)ƿlulSԴ#bʚ%:lWF TTTTT sJ!O0.߮־ hjzJJJiiNSF3===z<0TRqcbŋ۷oݻkYB|{1Y \787wڵE6Ү۷n%$$VWW+ݻw={vbb{kPWWGeV1-m-풧zĖwS=n#3G~PXޅc"*048svY1p.y8+L[8;a6pm넶U`CU ݀ |ܹ!*bWNH,.̫sƨ0Ǧ=L[{VX&KhžҟkªМ:Z٩<6`gŪT.U=\T•99+k,/bKDӸ/11SϟsEA]2>(H\h;v YldTfkգԜFWVV@odzZ:"aiF'VXJ6}B}م~~**{W=Ф+'m`rCKpل]( Yr /I2}_=d Q\?9`U#oą/Vό>"d c-(Micl-$d$ e;6 qfbۛv˘_1|3[ rJДvdz_؟ɖ}|i/9e3kJzYb'(?-Zٿ#|1qyqDkϠF5zcS|" kH <51!d@_>W6&qxrՀYcl0qclđ5[%ók#24Vsmg)<@6mRE3i$R#ҲgϞ \fȔ}X8b4# ׼&:vZC }^ڢa?f`kq5Ǘ*W'QbYudYv!j<-9oŶBa+?7C {dO/D0XLn<'c5לqi<ھחkޛ(4u6-@Q'7i_(>f)/- IM Q-#:I0gOCAF:"I6t),r1 YnîjeVf]<dX5첅|Ԣgk qO@SVWvĎ-_=.f3\8"t.i5-O,<(%- tDA|49ooB-hKm2(lI􋁒7ϒegfV*3{ED \x|aGK]ro#6^<9l0,:uOx-c^:F|O3Ϋ?RxC3?:gFc6vᷯTiǎŢN_xj{BUf?ZxB1q3U=f?LBeڮ15p:Wg8 [jm<c5< cQãO>%%%ʸj*/&rA֨33---&&&(H!?^-|ZABB† e hߣG˗g➬f' F~ ;h+b L6`˷kE c[Z)CϜVK7$Mtq)k^K7o~J 'Z-ϻIY@Cu{k9߸:eUM?+qIxl<%<ٹsZ[TOOOŴK1$a//|2ZTSSK[D%^c3?rKn8턚r\ Q*/ +|d c1P*&o_BWpq4@Bo]YlyT7fC@**eUz-*****PyPyPy! O; U8ʻwzBl7v9Jֽ@A֑>T;(EUyi4AZn^hŸ|_ƀ[0 ""a8Yw*J*PyPJ2V&@u :C]z(d$}uFT$2:͚)PyPs"?dmy{í;tI\p1*2ϋ/ؖ=|NóeޝsgșsTn\* !e~7eS"@oKJJ^&i%ʨȗxmF67ہ:A.9td R:|7o. b|xlTӥ.M͹edxeЀR6%-`h5<|Z]åMYZyek8=&ÇڮMR4*{U\`G匏lUcpi')݌?=TCI(c^o@ZJozWQ*V0N:AP-ںӑ* 35Bho\!h/Cy1w3nypU7{"c# =͂E zpI7jbKXbapY'g \WmUe 7(Uͣ{BO,gnƿlgw"Y^ULa8U~^I7䥡B܍HzkTTTk ǫ=UިwP+#)! $0c3ʴ:?kuI + xP <8lLOOgܹH1;P-@/PyPyFg+۵kWYYNSpgW!=4͛?(u}=-< >ދ/S }޽{i3 8?Εs/tQd[z=3}Ν|}}yBw>{Dp >p3rDP7wz*Ӗ-/'?-(5[qNJj:&{:\͘k///>+WCEqq: ̈́|]:(U)ͼCi+C3Eui(Lӓ3~;?꫋/ NS/]* ))+MЎ8uԑdže7k Z?sw#Z.++yvgOϚ5J Tg1ZW\U 7Q;gd_}"sg=Z,r8לL\:ak,hʅ9w~&%ᯇe]LhˆO;w`?Ĩ>JeoMvYUUUZZVy_]VWD?iu[]6mIJ7*;7zجm> %"_kɺbx/os&;ܕ+7۰aW~_G%7^49s9ٍkYrz]Lּ_ 2ow3($߀a4>G _9~#M$Lh%~"PѼ3a2RJk}\jWVVQZZXx13 oG߽Ocߝ<yCݺx葙3GNZH]P] V}P3g򲮡TU~7>MMl1xd:w .GT>,?\bS)g/X+? #w}d<U?^bn&_zKS=\8iMd遨E,AKY)AwԔq!]nחqC,zhrsN9ƊdžƱ HvE&,Zq5=[@?/#썣 oG iʷ+s]?Fq[<ͺ a NVR Xs5s[yrt3Ƌ EJEHHHnn޸BaǮE[=6//>_df=^^MU9{ޑwY{'_;z){P;>8x؀,1aWKRkf䟒10Lov]guMm&#o5BfG:kUs:ƍC2f]ڳc}rMO`jCk sդ^?5HޘE!o8.Wm~`Żf X?χ^J-|.&˂ 5aI~>n/]}wS^ةNZX/MJUQj~3Y}1h ak6mdC%ĕK {tHK(cSg^CF;O#c|[XAO/K =yE  Q?9Qo<+~D*b]1[F۷WdEMOVe:uS7C'Ȟ2Nt}^co2zl|t o&߭%4m`O-c 'U̞mb>};dz4I۝wzƽ`VkooQoNhhtygרnC,xygaei>Fc˷吜PdãO>%%%~gSx"Ʃj@Lhp z=uvRM>6.JT޺ߦGiii111AAA<L {~laɽLik;Du*o5+lݺ599Yq6h٭[W_}\C y6]eF=3޶EAb S3#RTT@;V5S1``p2sws\ZE8(B yPyP2 (C9UrԨI~mUlnF}:z9G|-1[a:d'1ӜCcg^1DL v࠷Rnghrߩw?!M2fH4iqgdP-M7}z}ť_+zƘ"zdÅGala,{kGωʱݎJ.˜ư$3z20c?yn#[ fGw1rnAku['IUܪлSUNg?YRRҨVvɴl|&Z݉ULDMŕQfʖT¿V??纝ϧrDhR5Aeݬ}]lSj4LW#F̯4S':.]yyyO ܡyL ԫ Q 2zU{[n 0v[+F*7[wQ+^*4kXe2!Uv3ᶔ{DZUsT===;x=?-C?6^u彪6XM#wʺEo9u78 /|DRwM_.dd\xES E7kF7GiQO v߫WRM:sѢE13g9Md/i<:bGoךW*%^g|oorr2|R[^VTTпeqkҭ7|/$F2!IENDB`keepasshttp-1.8.4.2/documentation/images/http-listener-error.png000066400000000000000000000602361306306563300250100ustar00rootroot00000000000000PNG  IHDR!حtEXtSoftwareAdobe ImageReadyqe<fiTXtXML:com.adobe.xmp 2v\IDATx} ŵ~U0 :A(QKtF0h =03yh4bF ٙ$/ 1>QDAF (*o;z>ýTWUW}ԩWǏӿǎ߁:䢢‚|ʼv^XWԻo/<6JJJTIwov*1O\LRī{npã~A8tG7b?tK\-F3V'G~'~ӝvp|'?[ҥ-e#ׯ8|_~ew˯O<)$v 24!ƚNͣ~Ix:XD a?E-4"/Dw4Sm˝z"{M /5#ahr~7=^ x)rˀZ^˄7"P$pKNb `,b^K9]M +Du al?%ӄGK[`$Wd+\vha,„XV2G+pث+:z, -\|b+6r 1M$+hNڌmo6\S9< & aQ^. %՜ RY8,&v_[n2YɾJSvEW&j`+ H$ZZ\zs ymҧ2 vr/)\޿/DŖm;/rŔ{yo|mm1uaa;V58}Kx}'8\DL-KHA&G4abaQ+@@2'>:k-3x;}r7~ $DH&ͼl^yШga>7W28X23sSAf00Q=OXѶ Va"0ϩc5  vhUcaKZ=_W ܵ$mAXȾ ]T rSŠ/V~C$B8s%6VWƭ gT p n/ 3h8ڐ \Mߢ۸,x3 {osGW0H(X }t }D+I&lpmH0D,??L|9$X1u˵#I?/g^]σp-bIډZϸS~|bѮ%Ǿ8lǒ^%F$Xi$ZUUYԆ̾AniDVp(e6[+7ygǪ;ǯ~⾋J3t2 H7m*G_tl{xa/X8m}kF9a&7jZHbt)nc2:!nqҗ)/V'?lPC 6a6ƐJi s_hE{3xm6999Hg"dLK/@ rp|im IC)f;̀Ebs9 M3uu ]Gq`Hbn|n _D^k;$o`_<3$Iy#pp.s[^I/_:Ǝ<8,9듿V.?$oߵv;+o/uLzhc>XvO+L OZxA n呄U'C&lWk!/ys.6wB&я*mm}Ḍ=Oo>">{~1}nO4_OQQ77{P7]ob|6d^ Ύ?z`ma| gܤ#( S0Qz ’^$&Gx`> +Knr.ʸuN&dM8}~_Vf\qь{^:(*jǟrʧ*/9ҧ.+go?gA8y 11/Jͼ}lepzE8D>#f ŨYg( ,ma[=$21FFmdhVcxZ-F> %Ak4)o^_A>*. paBVqoTYEVbTP Ia1**By{? Y-п'z0v =OO*y캄^ ")+%'#ЊƼWs eg?._trxs7|a{;?r[?x?p,yz'x)ڷkc/~MvTqr_^s;hʪ_Z}Gݷoy~/ !uAGnMΏ?;j=݌I^W>7uGд^}$Eygϭ(3ʧFېc_[=ysW/GS1gU,ѳO^\n#[>E_}s?{?ZODBv!TFvx$of蒘nz  P\$*QSa VK;j8w#ȭL6 {ʳA;s{Doy?p^~t &ͼ9ra슟_豽(Ck{Ѕ U\䶱WYKeW8>yϿq8:3ʝ%?} cś߿0̹ m~[þ➩/($D @vDfyI  "rDj8:rvMI `pE0zJ8YXWːCFᴉsn| 3Ff7 #T)`m|?in֯է׀8docKyb [('!+')$KƬ )mo&<[KXP6}+b߿A98M7g{#)_sKDqQS $5w_|}onRqÛnXb[O -MJU/hQz?/͟@D;#ü8vIi9Q-W0}1ǻv{66-LM z8Qm[ċO"'aXkǜbR LC>8D&6jA$ {FY^x|ԬX'ؘHC% 'ad@Qg~54߯]ԯhƣ(^k[̭ CI>C$qD6V**y߯XٌAKނ~[%o+ 2l\0g`O*p#C"OCk}[K/5 L Ą->>_uslgԳn"? Dґ8c_N~#|i-r8slKee%w^,yt"^hpDq胻 [9}t@/,n()L\&bEI֦J:r2^z~m < SX>\;3'433tXJJ K׷w%K*߷駤WӷWFz$=Uз?MSҷWدo!{z]zm-/`f%B+[C ].,YRVy|L]ܷ&'4'o<0Oy~goڜEKQM'neKtRN|uu«7^q7faЅ /ҍEKfhW/9,#֧ⷧ֊'/|sEMn/=ۮze<'o21⸑BqsPcXS:L 9 4V]WQ2#s#<u\grwRDԔ;`Edϝ!u5k*DSHVmۿsg6ϸ 'D <,|y9cM%w1I,Q(?kjymӦ'W>vͭou\:u/@+K|sJ-_ȟYϥ18ɈaCm[lsȎW/rJ<aH^#iO5Yxڧxqq`#vmq?/}elG& } QaG}Iǒ P- u5]<>^-]pqepDW{ tAmF1{ 32phAAu4e`Uac%5#xAySΣuxZzqZ,_3&AB^cT A4ʬHD. +[f[0$#Ƙ.-_3 W42*}鸍3EAGDx\Y宔DaS¸F4 {tE$O]Z8 ;BQs$mN\{kar"д0ӋP9-0yR;Ie/ [KͥD)"`|TL޸2+jUwIɳQan2Ƶ DaKogKIJAB|@m^]1#IiW vYVwT&Zj67z蓑y7Uߖfb$)W05 L ^$'lW_#"v eJjD{<8rM9dpGLfW+9"ή7Y®W_ ţ`jJH[k!"DPhy# {!#DB y/G8F1ZW4fpU&17Aʢw[+lۣ]L7T9uNDWXq/ KO 1.7I؄9%/LmN 6FvHcūbX wJ ۺ0#:}X_x.>s|k"6}XT agǤ`S3,;~ [nE]CUOTq9/ uīCLN`qB: o"L='8 /F n(/HAG!B7BHp#/8ƵC|GJ萔\Ѓvg{,r$U=ۗD]xJϨ 8aFn3+-OM>ߨ3IV8ſ񺟩׷س$ed^ %''eP7 s&K֍([^ɼ8{GA*Q:k!3_pֵG_IRy$ajAnEi\ͫ'莰=v׊!x|=_/|cC??zp=W[;OBOǾT~esch9~gb\ag &R6*4g)%*DDr+G},\,g}}Æ:q^Iz񣽆 9i"tl!?m6| QHqz*eƦ;>x &dS džWaV%5vh{FG\rsj:ݍK#Α={zp}'iAٖR찍Uqh ٧hΏqeI?XFϏy"2U!1 l9kI/.z-k׿ܕ7Ǎqì/:kƊGz#[~׾8܉/$\{3mp\ZCԪ;vE.?{iLjo0s m޽{ذaG>zŘIL7ϛwdD^^SSӱ'O9ȑ桂|7Jx80;k76N:&wt~}pB `br^?HSc -c06K wݚ7omrxѣDa(W_øGLփomο,`Io f[HCd{ȑٲ&O0mZi>HuאŋlG"Qҧ߾c/߶^<=]ؿ(<,׫dejhXȬ;$eejV2jcsK6oʼC#ߖ]qd47S˗EGF]݉~啃;v"&󉲒tby&AR'E C^ }>t`V[;eK'ߢAljrQ/ۿÆ {o}NVm Lj6l~OL[Ņ{|d~;-j 9{&yq9|^Dv%^譠ޥ%^Uͦb1iqD;Fͱ+6ֽsexy=Y#FܵS۵VFqѣa#FP}k6m# ${ اrng%0˗ȠAϙkNx\ w&S3..L`tf_f,]Dp?6jwղQ:hP=6cFӫm'{CNx>ES%jp~ag 9q4Mu o*p&$m1.ʽ6P4k]̆0fʂDhae HaB; '%هwt8 T/qE+$⮅(xZT2W+_YyTn P=Xcko֋M[?{$YŊGYzN9%%ӧO?~c?ݻ?ܿ^GV=9f[ 9t]y峅O_XM p 6Fn5NWj<^Mw!wfvb/lfpΨsb,7饖r'/u !U竐-kA\can4<Å#Wv/JtqHM{Ku @ 6l0kW\̦ca];wuh?OּaC1&3xs;_{=_˲ ?Gl&}hM+vF}|MEA[/ dLsAB43ChLŔ tgFdP-鵖%5*tBUlas+ 5;tM5J X;=/ 3fȑ#_~ロ_Xhs%#[SjyccO[omg }^-|zU`z+3}pI_q҆ 7fV늋%̆!Mc m~Ee6Jwvgecj!"ӭ`|UB;4]P+mk y#p+̓/.m;ɷE\,LիƉ?A 4tW*Mf@N0O E]2ʆ *.Ӗg#4VYc 4r?$tgLy %SF0MBJ"sJS76>_]~FCrˈaCNq (< (o.(xG5呇nn +i=t0߶D31Y֠//)+ ۶]q9_y,_7dKͦFbE~sqAٳt5kwt|-s˾ţ 7oC;mԨ#F 6lpii~#ۿ;wܾmϚ0!h4uA' )6|dkJbn?E1{ Ky/|[ZZJl+bȐ!p @61Zu0v1n5iI%˅1rX}0>Y@Pڇ}3XЬ0|ǁ8+b&DpQN"sɾ-nW/&f>Upq,Yo`Ʀ[wHSYɝ[an6;[6>@{`C-]8oKk;zv9rx*wk}[fl h0>aBS܃*eםC/' [8KwE-͛W=[n"xwpʙ ]ťeL.W^㉠~\ hi>SaQ&z͈/,S&Hp|J6hٙb[X L #Aq~~xFW4LY իZ's5I(.ԑ5r(}?3S,D"Aho+XX+lGBgWY7oQӈ!l<4E v_Zm *8zz*+S %e r`2' ?Խ'W#.:MhOP$QZo/.g0g|BWrr8|s=_ HnG_}wA.|I`qs6]3* %.C]@V1~ R OK:_6r¿|gǂ|][Y&_-i6_0rF% &&0d~ioX_e'reb \'R c' Mȍ~@ARM G̮XH/Y^~7: %`έ6B;g,/d~.X[%mlC]U?al&3@+/<_em"@vW?䂂UYO95q{/]nrM!, Q鴩sx\_)*8rSl^?Uk*|Wu1Vf-P?_gs>K #ݧNWQq[j3cQQjNN.~قDkMe^%,wWV^VZd֊*Yc_bms6Ԕϛ%J-UWnPNcŭ\V?sŬUXu]u6 &0&S\}ݺqe]\dRU+iٿf`Md+ܰec;l\s8[,Z1nfxglAEp2-gUΘnb!MuMUhݼ2ۧ:&.cDђ \4!e/ܖFe_:_^asL6Fyz:w{ށR7;C_]=zl9ڸU,l^jOr!Z0wL:W&;َo [&/kC?ϐ혷<4 ˳~k2Bhe-lYY=>EDGw5EF|_ r ull4_u!vH岚-/7GBuW͛ePzy͇m͐,Y 6ڕG5Jy8!ΝBUgFQ oO\0j|_d?Ym%ӻ l)jQYN:(sq8Qeju9ZQ|mXk~m\mM}o&H-bkWn\2[!-8e vyŒyEBn}F[oN6yl[Eػ&2mQWj 9̩)im Ja/0Σ uQ;2m3ܲWEB r 5~7:I,頔5)}|cWU:]KGr?g/kݬ_b)v˗7aK=$8?/GBzLG[Ə5}#:H6c686=eH0F2u/4H>s8[h:YDwO"8"zpt Ԏ74ͯKy8Dt ɷv𨍞6Xy-~I\oip7VFGd8 nŪ}P'SyӮ"ޗgp%ts ]:V)tv!)Ez#(O8mj9Kj`)oqZ*DcPpoRS54?K^F8f|L[s韱ArI8c*b\ƝmY_׫'^4VLVrK,=Y({KRyeEX˔  e1v*Q$Sư1'wTNmse)[G%'] 阿fgՕW7r`硙#bzG/[ҡ'=Wi_5unBݥO/qma6 -uօP1?> =a!>|4 k|Μ\6gl{!;C@]z;l:tF PxmWl̑ 7k/Y&f\OmnwB~$o 9`04!7 `k;tpKR d3j؍)d;Ϛ"25 h*kNSeE,Aќrsu))K[P9V_ yx;yۨH,U|AYs%ףPkԅ(4EMS1dKgx &T4KܣNR ^,g`E{!\/qOԬ@KjՊrESY6C}Hr;t6T4K@Wu? 5 #J1!R FDe۷>L#1J2cejtd&* Ɇ2U=@@SѰEc$DX,)2}YhDRfi4r#U[2>T\#%WY#S;QTg}yo$lcR3TMtH@A0Dp/(-9sHQ:^.AMEʢrP0Q&B*2mQM45K\R$l&ٕ$hhHQSQÔ3;}5w4{L҅~I\)H]51BR]iLd :V*Q|hb̆jhaWi\ T0}FPъj y"/oAqԘʙDi_-[A.X`wvSfn~)/S9P0SnlcTϩe1J˷)Gܜr$S%s# {-};r U2.Pm(ĭj!e/Ρ\F~FleԌZRKC/Qʙ'7Z!ą}n?9#rU;g@V|bUL{W>ٷ\aW>=aٮek+B1Î|;cdM^'u|/(n#ߣf>9 APht2Ywc<@;c$7;10wUOGc*u>^(W.ڥD\jѷ8w9:n*z|T t\lBl.BjRv}tqUd^>^L`=)]ULGP?$eiJ G$4-lH!OBN& Nj4pJhD*<U4(:FKF9ݐuW ^ Kz0@i0 FyDxU|%5FpD3s ntdceEVB;K9m^ F? SӥV)` +!>%!{Q:e|; zg3`&拣vI/{tS%~ fׯ*/;d:S<}6 g=ъ.O{;TCN= N&:c@0d` 9` @&ՃvtcgZ8$%Yc)?[SDo[尳@F>ޤ/Bm4 QQjNN.~ҙ!9-8{6`SмYqV;M㣵͆xw+flI_t{xK6&dU+g'.,0 zr~;~߃.2CTWL-󨡌=)i!*<~A06Zj_jhFO݂7e|!e(B+@E+IӞ`0{e@+WRQ\1c 5%[y~2@H\ZAcOzPOh9jO.Lԫ &g/b\j؎@I^cAoO1F:P3\])F(US<X%44?1N4dPXoNUN2(S0qSõL^5 S<+)={ 8z%x+s,c l+kAFwS06E\lڢ~ߦ|oe(JQ{9 kIYԵNq y]HuՅ)Ufh !`5S$ w˫lScvef;oCqcX  mBm`2Ԟn2+4IzKHORY9NL'ʆݕ*' pcL[nj=I)0O%q@]L4(Zʜd5Oq, HvtC| ܈ìkCoR ~L(-GanvY~3dgbSz]VT-Ը}|4\%UEM4z(AQ/&D?՟XR$A H&E-rD>Fc$Gqd:!\V0eߘ fZ <j(suF7J.Y>]%Y[Z25%On`dbp#L7sLfnVZ< ϭh^l޸, h'C;eLrQ~Y1 $]8!GJ1vk =zk:׮G>sYY>WJWÙܸ R9|d'3iߞ1'8ٳl'O/U4$YqT=ZjHL=/QV2 v2ʐF[:[a`J]DWYlfn_>òQNǘ{1H q`ʷ_}擗@zd*N/T݂.S$@+V-\Gx^7ou9^`җ+dͲ]4o]Wh=EYO+'{C@16?cBU|]C0}s1_e^WXu&] >+R0O@GF6~}&eg䎂_200 h'5زC&}q~/x~`@;o1/   o @Ca`@Gsaa h:=rb_/rPCAؿ _/ _u`@7ZP+>~!~ @Xw>أJ=l@QYfL<%4Wx 2_^ &[ܣ ޑximkz_h |cw+>ZZxU{n4_Yz);Q[ol*ŏ}!=n,)_ rE,&̟vaK+-/v}/Wz33`Zf9ۗ]q֕䵚6yxnY+gvnq~fn_ZqpHqz>K/~uO?qӞG7LP3 N(男鿾[.U3W챆m8>=׼e3H Dcr|-#Kؘ|yۦ؂^^͗rCIZ75msG|O.w˵* 'v;`%WL+[v _ / 0;@ڿ3 @WIŌv8c;rx,OZUU@H؇ YXER.y+*f&~x-DCITHN: p{f bO)~d놵\;v-GwU *;m||]܅>DAMmjRYc{g%i̧L:{Qݻw 7K:r[u W⅐.A|79"b&GD̛Ε/xUO'm bg w&ً޻XhI8m͊ҩ'8㊏^w] ؿ<}Ǐ>|xǮ {|͟9"eZܿIX.3pt 5IDATx]@Q+b#DAEXt_y/WILP Ec0j"*pAo?w\E8;`>swvvfvfo˷GOqKbjcUo] "?"hhhpwwwq\dS{a p7?=;(W.55b}j#=J~Bܟ0z.+{m0-(fűxBe| O("81|{F/~7:#y6X1i^ σ 9h K:> 31jTT3^tbyp'x%i@~EJokRQn/NONI0=Jms9gwoybY;$|y\ZrYW֧̥7<.3Yk3lٞP3m x-/[1!//ƽ8æ ">d­Cї^b(,Eu!㱖:mh}TӴIM^6䆳fm>}hNG0q? 88oܷ/֩dž5͌W ٯPe>ҐoggMEذ%yy.r$'m?x|&1I[ÕZgؕb=\k`!NaRv2t $[-vE?n4-j|s+h FЧlpZg5V`pL7M a°9;GmpkƄL^݄;ѡѳسⶦE9bEq'mhM>ߘZΕԥQi?/{;dL'm"kI~$BUrh:\mH((YUWPn2p=8lx0+]10,XÃscS+W$9nHk7\x a"C<WB:w_uб fyz:yJicmnc-_3Ap䁣6Uq|E{{U>^r"VEy8 ox4U*?o zV5P}A-Mj[|Ɣo4R>&`7*Ccnazo7^m=ɩV$%)*5–Ji5 %NU˭gQy,$ppqA,(Fޡ_r#2Oэ>eB} J#zV /(s툀^Ue7ÃEe}zެ YZv;1\2VaزaAtskP}Je|ms18|bB8+ǗL_^Y#8BMDE꓆g ɭ{0`n@YUJ@Wa5e{S|,x@;xoES#ѺM4~?OjJK$D 'lNMOM$}Cd|lzLCKN4[\!%l0B?Oz`.tl(W٠!$0*@aJM!A2c,L+ ؽFGu|Ht#;ѣ[ $d9^aAUPJ=e{p}B"JIPp$W !!Qp$LO'(ϼJ}\"\B#}zЍ4JifEQ= Cp.9s{8<=A"vsce<5q faؚgk0RqJ2} !>yj/ MW ΕX2_{4A oP7b|lPVU]RPW_TWԨT*T*jhTA ]"HP K]xBM"z{KnP/Cׅ alT';&zёQ9U) U5Uuu 5*zf:V)@$:- Yz1bv0C(#GO0aXsnbwD)JEnB>9<цm|&I/dCi5'Oޤ1 m77.XU %RS9y^^ m YdP(&5:-j7D>G#G@"@ p  s8% ; nzh {%i &ZU5Z2uz5tz%uz= !unB Gxh4A[| xh ׁ¡&_ %w;M"0Θ],Ss[ek$c}CTJ0lԅ ޾!pj5|_B6 bVSkDAj/8N =M82Ү9܋I8 g T"B,J& (""00dΙ1HSASt*ZP(pAFE0) }.W@qo61s V `)/Pў)4"|<8p\"Hx MyhFECWfŅ Dl5,MU O{]gڰxp'j74iI4rH"9z.0H@\D<]UUӌbP)5P6%-f#g-=jzԫ <-bD_x.bkZWq_pyQ^Ɓ zJ iVQU JBCk >4M# Э*VZop"=;$~%.)ߏ}j|D0S%"/tZecS}MuC}u}uuSC#t2Zf-Vpqe nAvŸ{+%V '^FQn]x 3գ_$n#qb'\(.e0T'ytaEVS?V wг҆vzxb~B䉅ܸA}` ʞ8hLy,+߹'%> KБ-^t R%'T9_4}Y؀{patХM!fV -yPŬ{?\ӿ?˩dߟÑKscH?~q UNJ8h"qjʛރ^;[^1fn?=zcnlȏ4 sBJiFwFN5x6x p׫V+N})= :[@Y }7T*6F_ݽ<{I=y!}/0WxiCGNsN<7PupM-5\>{}=DG'F.ɤWc6Njd,ܜŦŧ$Ieѕ`0p*(HԿoPPD"A or>/ڽu9PMA EjNT4ޮ,wɸ9+,RAzvE+v2=$TΩ& >gDzcȀ~6J븪k@[K6長t:F}3r†8h KLYRRy+7gMw!Nt\"ot0H#7)Q5jAQ[[U\#?u[f?C73qfAaDG 6P#`s챖(Eb\ʨ% VS4+* 3\@Rt)lV/ce.dr˖ҹ֣YQv'}%/ró$F:v/Gmگh3ƾd-HꜲ)imkMAwcL=8Uol۞n͋Lz)k- *\\%L;賮^XDbM'xӺ3YT?G6{X}z]R1O;zfsaC=)fs*q3 H޼5pLJɘ 2t!yv|x)d6ИZg|g3@:Yv>:dtf+u9y|` !!)~1̋'P~vEEEmy1ƱmVL]Aٖm ̗N#3 hFL 8y-L1^a i(jI @%*%tփG4WtYe~=QFNm0a'ghNSqt [ݴi/a*FcM66lwhܦj #KJ0 y9JzW5v;nNmGBMJ5BŻ^ F}u5zKRi*(YkiA9ZINۗ UT 3̞3ٗA⚬ ݜ~_^+Y2:I"Jܼysʔ)0z%>@ύ-GqwcGFǎ1ƌ+8ۨK{\gswwm+KAX!  =<_+kkk:V81֞6 8T? ( 5ZKO̧zGS4>Zz'ڹn]Nř(Ur@VeIoR3V Vzbf0YrLB6KfȍtRG Y1O de,Wg CsE'i|\zfb 1n`v ih t~˵Hu)o[*F7TVapَ`_DTYTBz倩[9"bBb"r.dWbĐ .=ת}N}̆jߡvXha!aOS">HhwBN"r/Om'1z#-Ё`GYrN>\N۔dDȦ NE{ |tbCp[GR_$s݉2,IP 46!k| 1do % &11L2MKKe׳z-B[z"7voN{;xXHR)c{tjl<vO>V6Q&Jݾ~qp]EmN*"qDE13mE;MMM)p2+{{V-;_Kg6p*†Yt ǰR㦩3Cm"&,>ֿa:TП A1m jŰʬ_ l6Ъ3lfbVZ)趁[e]H@X5FZ8c^seewX nܸŠ(rV-oQ]w(6#Bp+(RU]-)iaiͭzڞ+|cn#]MZ|Kb FiͩtHnKDѢ*6КEFZqmNfmv[sUݲ\ G0.!+?opHd3N+s=<򶭝t.t 9L]b I`hS͊+6A6{^Mƃ6kŀ#GN-?$ǦY3t!Ζr\!o_Z}3+:;[UX).6.ڜ_64rA퐥,2 NqddŔ~\5X:i2Mfߥ1\p0 {vZɄ%ONH{נ"dB!WT466åbN@ȑA푥l&>&R5ѯd;% hrEtJA9r %TkÎd,D(SAUb\ɝ5k֬ZɎ(=XחN527hWk ]ny73\oGHHȠAD"13W]fp0tl-bކ #cbp+[х,(xx̞i \q Jb=HSS< wo !bi+O ]{o?С\F 4n܂ѣ=== ]2>F`xwa0zYYYY uf1z,000+000+000+000+00Ed~R=Er^i0z.+$)ԭNj7 (%YN=˂0xZ~5p.iio't<]m?Z:Uԕ^r+-NJ|E>V֪_fGyo+?XZuwDJ}M%V #KsVtZs껄δ*+27(~?,w)V{6r$Ѕxxpyk%#8i,$O$$˓  k.^әU۶Ww_p%09`ص)Eٕ<=9^ajIaj:E炖[ $Vccmv3RlOf0 > ~%lV{ 3']?Ykor̥"9 6UT +*&DN'=00HŔA*elT[ c%,DhVڽޚ==h} j&ͫbU}܅=z8| FxX<Wkwկf%Fp%ǰB5ͯjS4PD@_'Rƽx#+_)-uv]eQ)}6v6檯FzKҢ4g{*+ Ğ37}!rgb-_wHřSv=UwMꮶm-t^6T_SsUQ™:j5*r옑t<w3tiYsW eYWyx##sO=<t=A S.kv \ G_o= <}9^1rW"D,teMD̊v#ꚭ6100+000+000+000+000+000+\~^ aG|ґ}[)pSat\.ޱ%"R9^ E~<˷VJKE!@>c6&ܲ0m`aEyӁw8n'Nfŏl }Sz=+_o:H|YJAËPڭ@d~Á;zU38F 1=o]g/xB3޳j eѴ28u C 'O˼ɫf,)0X}AMȦsW6ng 6z+A2YXutk!f<0o`6d lc, iǹ5uCL_2O[T{$+~|ɇ-0lnAp_}ǍR#ݘ =6k]`!т EƦ%Q9тm0ٽXsMİ"HZRK 6`HZCND{$+"UOʁ.GSs$}$7io}Jh*aAIXmf")!Ƽz#DŽtmC1;~`M_,E $(*K;#a,|^$9hVr -2lmV,)zNށ."KJl*Wj^دp$c.w[)G?w@@pp 0p'O?i¾7_ZgbI}& R̅liZ$0gmw]D7406p5ìhɈijTs/xZq?~MM%+ѲG Em cu$w30Df"=tCh^X׃iYu. W:bg-.").$?-O~Xt!w5>\9(.(RFY`Ƀ'tqqqnH7100+000+00_J%v-kĕѩك'(Xu6k gD*]ѹ(o_d[ρєkⳋmSHo7Ǘ0:~cr\J!z3hhZ ۶dfV.O(׫A H!LdkWwEmOa]ɳ7 k:0+ޓ{'YJ2$)ӛ /ۻt=!{rjk.YuQߠk ދkc }xҷIno]o+'0exN;}+*.^-u[)RÁT&#E=:M]B=o}?;y)Q rXPpjU##fx$?^+bข ~xЂ\)~5sT36C=q~cw0uzx\A`|L=Ł˿Qj͈eG蘏~2׎d6)}f?P=$MYڙτ1ġO a4QFxwƀW}@?]ۦ't`_B*$G BOXz/bB/з =s\$Ro7 jY BA+L[b ,B-V-m*VL'?z>`}]Mѥ }=Ik//_|r}m^j =׹sZ1oo.nA벰Yr9}888N3.,;,vovoE~GGF#d<jȃzL]v+ ؾ"vf?ˑ1 ;m?lYÙmB&3mIpJG߱WIim;m\YvoU]3j68+HH.Ê&1"O$͕YS;iy$e q$fCsZxuq #f $41:S.NJ_0:} +tkl#:R}Aa``V``tyV "Μm[>'?wv蹬(92W]ݲݒs͝vL|T=gϖ[!SICYj~_U4kQTNo ;?ur{ܴAk32oܚ;/8hEn">3R 8 o_j7Bg.nS^-|uWKgoJnnn|>ߺGu ___Fƈ. y 0hVN^V*)a:bV,ұiР0 Yxx;l].-ҞQ"@nBAc 73Дzbذ^U|_8t͆kd 9\oKUy{ ǔ=8*x=xi닮pԖiE(4:McҲoGq4@;y!\v3ҲF7YjF + >bH>톬pE:7D"#+6Wس ~99ڧV^nGCQ*}CZFk OOھݙtZ I@dWs B") ~jV.bW^ q(Ɓ&y rۑM}alBE_vι1fEj0B'ޛ"CPhEs}\@tloЈΜ+ 5M V"=k)HezGhwyb/waGzC)^#{r`Y-6zPÑR`r? pe# L"`#ZZB@--{PwD[{#tm5uFݺvOXbFEk=TrYC®)SyJkVQU V!xF7dኣQYYYqE9IENDB`keepasshttp-1.8.4.2/documentation/images/keepass-duplicate-entry-references.png000066400000000000000000000436351306306563300277440ustar00rootroot00000000000000PNG  IHDRcBtEXtSoftwareAdobe ImageReadyqe<"iTXtXML:com.adobe.xmp aDIDATx] `U՞yyDA!,AE"ĪԺ5ՈVTkZ5["6[j R $Zmb-3sw37wlw眙3?Ý;wa۶m,Fbvt}oիo߾={޽{֭[w-b2sƌ+Ej)O=OH#$Rr`╖'^8l|l/  S&mt`&\Vs/yt hooWC{ߜKw7vXHkc3q,`'bv DI i*#2oaB$BVb.qmFqkCsRh ,}w ~Ɂo "$s&6!\  +ĕ뉌 =B4ݱ-f"ӾsC EOjl0O$z4,yl8Lϑk]fM*{OaqkQ&־D5k-/P=^Φ, =BwڊJZ#z;1[C'#B&aeiVeJzJI7R5ˢ #!w@/># Mg4 '*e"QLpy^@21ZX-}0%$BD^C2`{+ĩ`K!a@"܈I.F^HX,89E  3±ÞXM-iуhNGpPzt{F%QalS_u(*E54*R bR$-5NI>XғMFX F2?M ޮ|AlR~vy\Gx ECF<1IXG$ZCq$_5鏢̂MJ20״ afpzĖCBM섉K[DEŘ0#aDVJlqˮJA0rad$A LxYQP0mV2)MwӉJg%,j̶B̤U&.Er棄Bf=A]; t2b#ϯWhg}' 12C;(I^Q;- +3j&xT2"d"` v0B/E- FrS挧}ǔlg-#R30) cJ(qcKŐ]ugm >d%zAeV q.aA)),5/NJv"JLAɒAj96F 5ۇX4FI=KPܔvBf$ b%dQVkK #\<:_bC.=DL}͔觽m6BYhGV&&5/>]Ӛ9M'iC;L@L,mdpM#( E< aC7 ]m†8Mt = iZ|0Y[T:d7Vrh";SZLS6јW aaӦ9Cٔg 1dV-2E[b^~X$'.3t7Xٍ_֖施ڰD##bJUiq J::ѿwն{2Qp][iItŚR @\SK|+mC?ןy…%^k0",Ht4 H' Zf be"L)`DP(iiS7 MY]=@\j'JH p־[0xZ,y!5۔b2 : G:z؞VD",{IIn,L+%_j^tm|#8>ZAk`نh%{Ea)"ɦWCmmȞbCjFQa? V idߝ~KLlؼlk =¾G~{f?.4 I)UbNK5fgd"RtL U.h/JzOL"ּ;qv|ETʌ3Nl.]Yyd%lثW Af0Sr6+aJ)la-iu76I}XkCqg'!qR$C I@1DEJl Q_î-c{wJkG GQ{4|D%O)S6|_M޳WSSӒ~fk3.ȫ/~dTaЌ"=˟sόf_bs?ëzhS봻>2(7HV2ZQ~ԡ8bu@{u~V1W`hXC0'M`֋T*쓉*_LCVr¤{.a2‰*aY ml#osVE7 ;I$Z⮼ғTJPK7ŰN@F 3ew t낳dtuݺnف٨K6&Y٨[7퓥V{fzhõh-Yj:45&V\2ij]$ُzdS7А:O^zkVU@69[zcƁ˹/t=Oehsn*+6_O14>gY;|Hji"W L7ɞTM~ְ/F'HZ̸ ~{$Y IC;MM[އ۱7~H3ø#MNkԁx_o=B?g/3&#̑.@l 7o|ё-!?r&Ł<+aб-!j0k-fmGdNu[F ;)vΊ::WKbfurҚ|홣tѭwЁ}=@#X˫mƢB_+flP/Hݧ(!seVnjhI"UчPJ:?zȱv6ltI Y0 zd|FB,ڐXN_ӱQٻk5{+{g6UC:GӨsz:K8R']_7Q.6YshNe~E5.߬\/.9!$dO2IwVi1ɪ.Y4'N|}]ة\K+!xK-;=3V*pW +-0= L ,M # nY Gf2& 0g{"$:aq\X1ع;[,bKrs3W7z̩#/+77xHNVN=wޣKN`N̜= tɤCOޅޘC?iYO#͗N0z̏"~qf<̙7f1E\6J>sFwwǼXB-#x{JGhϸY1MLxЌ+UW m/_ 5{i>/3N%0>Q=*:ʕwT¨`i VZ]{VsTYFwZ%/Qr}SNp$VF}0HO⾕_v{N^T+hqBYpPJH88_ږ;BH4돈|S q ` Ž%(ؚx†`yɱS` qQߜf#.%NA6[aٲ~{ikIଫ~hgrɽ<̖]8GeuAR2bmW_G],5첣k[q+{K<$T&ϛԢh&ZUUZЙn|9{]ieh0 \ɦG&d6s}6ɛ]=鳒]5ˆf 1|h ̴m LYLXhi7AZXBVGBvlcñGj.J"!rDi/"DX)ͩ[ `$e;c6l 7vcƅ9gƘ1GmLؔؼ[`~Gk`[[z喽}ۜX«~K9LFY.غE{{*ĘvN,(DS{ ;cc~߅Bs`6(76c=_(!R2Q$Ez,MB=xȈe%d:9Dby.R#q,iDhul"x;hAXOmAҽ$Xs|qkdI;ֿ0vݸĚy:S:ע3q~uqLaW3juPYӊǖT^}݌Svu{~~Y<(b0wuwf,D[Q9'G,.1a\M`"nuPcv&p &yJ^VmEdN,!J w4cD5Cwc(ɜ]c(i_ JV;tN"jBQ ]9}ͭ}ٚX]qlēOi0; 'Hl 1QD+3Ixm-D7Ƒ {=F2 »GN涒ț>(hޗ\-DrN4<;ǖKF!˼]ƞT}#njc7,EXTz3psnȍ5뢰䋏l Wq"ksw*𜩏8Yb傒gHw%#w ;5,% ۊ3M| Dp˝Vas# po9IWH,ftf6廤Y\ Ya%fUmF7,JzcaǛco(v@X٭Q09\ M oDa0m'bHrc6{ZNpIvHHDn%,% c%-6[H3gs#7GΕF,_Ž~7'1nıx$TDk$Qw&+FcF G|X:ckuJ*[h]q\'LKJOLk-J<1#5cmI7/mK+rD׫ $#a#q4zXaawJ*y1GjB2A YlwnpkZc#7<%OP gcaf7u ")GX==G0 U0+}{I_U1NE?". _cŜkByae%$p8Yfbnq J6ga-v|-f%$jr+=%ֿؓX+RO>"}o{nDS݃aհQ/=ʏxTKb(mOzPJFo.]'D 1bqdupx6vl;v =p¤ (% F QɈx a.)i@4H2u>|D@JX 5Ra@!MR&1?m>rM_J@zgDWMG7^+!`c E˓OBt?~"BջuoxaGw{}֝6߭.PZ7Th.YdbZ1Oi_@ϑ??Y~0|TRR,}:q^#yʢF @>eﲾ2PL#סiٸ聽N<ZNG!a 2e8?zK2si Ԗ%-*ol,OVi``⧰I(ջWnV.cՁ@`Q~.+,J$B2$ t(NͨvxAY|t(BӪ~z!a8MZc﮹Wh]YI%:6uD'-!%(  \"R>Gׄ_m#?бc[[Z(k55x|~D=R QehK`C8:@-d\Yj-&gC\k`0"-r{upʢ"/!D//Ui4\bo0UP10QRjS-TFW?y+ٴ7p/:$u h\[x>xthB嚨mݿ~>fj"aA)/rXi&= b7ܻT#PQ48"i'P<$Ho>XR2 8X#v,>DHU]K xܥmir:n|b<#&a ׍_xblO^"UI0Zg?BڏZZZrzء*aq'`D@f0fUBѬ;~L29OW:.X !xQ#LM(0G!Gͭ YlTw \CoC_m( W "cS~$#@٧ >w1gv}op#p2ϫ[҉?J!aIۜlo.&Ye: _'בP7HbqUh^g3JN7nOR2:xʥLZ sdAHl.ߝeH?bF@}Ƣ_^i;qy'nV8{)r?Gz Fdʹ1Gjw16OWZ*I<죬wSq:vWJ/+}ӷx+1 BYDu$fw6T֬_$5g`3jjĢ9II=ٖ/[\38S8g$GaC]C Nqܥ޿dc9Vkjlǹ]rs=<푞$;;9U$`A=d!C9'9ˌ7ԦHOr"#ijd;۪YH2ueecQzˊ:IJ<(} ѝi;QT֐y%+e˙ [wţC(;;"}Uš=.=ha$DtA=|P}PCdYD yE2p?F:ک2O ֘hNRySSb >e_E(T> )gGG}JYh@FQ$]J=s~n~B&Kw zFfRhxPO );Aw>wZ&+d SX*'HtbH,+r')E{TSb=;mg8JZHUoVn[ի\ ߳s}ֱFp}ֽҡn lܧ~޿%DH=hU ;Ury9hƭyG0K]0) )yG0fzQAlztnͮVLt|nN.4t*mѹoEpSJFHu\D&؂!t#: :_NBIGU,br!D i\qI;H!$qG|DHF e"+LCﴀ4$X&"GI"qff g:ltz#)v**>zf6Z%eQoER Yxe:n4ԑU6vbo+6giUUq7{'@ZCO"7_$ !$e5-P1U 1_DK-: wT㗖@0xs7!I[TzPR ij ڏ4%yIeU.5 /6Ⱎii5Ku)m$.zԝ-YJUn]ȣ ̍afuO߽tX~tD\E')ϯSȝѐ?m;\הhlP7ގѲ.eVrH]x5u[!\⮷H3{}+j뻇:2bD3SߍwɊgdnJ4Ӓtiu_Fm"uwXm"U)?سNam.KDu6T+Q6&K]jsE3鬩w?~DFk}+,ɭTٰ|13_nX~KxK)[V=}9W555efїK2ڱuJLYEPֵ 6L3XiCjAlIIYQݜEsSBOG=ke*m[fw,κ5Tt 5TuX%̗ȞW~GWfځ4%#/3D6od=I2m˕0ljO0=6<ʙ>E/2nCHh.Žl(/yEf|,ֿHU_UP<ؔ>Wcn:B}U=Qy{ɺЙPԈYԽxLʆMnIgn:ͭ~+)>(w}=G%rybЅ&.Gi_Y6g6!Qqki!WR~Q09 4S8 4g_7º%Vmo.q-#ܫiUo.>gn卬OH,35Td e-+WI]Rߤ=lK3 )G;WO=YѶ][CEټCW0GG鄴/k=g'Mv.Cacy- ~Zb;_w4LܯまUxq'% w|Š!NxHS)^Ċ*OЁaYd+%5@Hɣ$ ! ۲E~S\nrH[kVgWWqc""RR "oHh_nn|5{.+mCS&^EI} jM`'~n2FuP@T<YjL{AQR@NS '`?Sk*xq?3<|AKsQ?\ށS󪇫衪0{uKP*8#ST>h|1~d<=ꛖ>>8uZ ݆ $D%o?'x?3=|Ao]}~=W݊gg5~<*qơtxB1:a29᧱_Ϭ *mPc|AK+ՅdxE]I).2<;ng1=bUpi+фDE"<4x:Xfz!m(F_ZyF|V4'F ڶG6%#Uw ^`lknxy]S_GYT(puFDSxհ.>fN ,JOeem& 7 }VQ})DcQ; diK@t}â?E kd2)*0)3dXG{B>`ꆍww%oHR n6#1g)O2ӂ?uA2pa}Ǘ[aDB'yc4ZH! TZrh@gm#pVLwH<̓E?-,xRFFqG%iPd{cmqh6rGݱav>cRX7rQׄoAlevH0ғl;z98T6,7B8[wR8lio0"NW=LnmP0QdRjedde;*U9 YEэ3a(d8ާ7i>NԌȇ5rG5V9׻$[TZN \æUzL,ߤ{dt6?pLGdW8+kX9>(y'fE:`>nW6)ZRC r6&j ùµ0.a_p>]m0>Db{d"G $fND}ZfOvMM5UejŲ8pV]CH6-??p~"9>2F))g'8^/2ӣu_Yu@EK n$[SDOAxC[UN?pDD9## Ld8tpbǣL#ϓ]_ ;VRV[$[gs9=lͪ5>ؑ>7yp*G>2/rG G@HDQJ2G?m'+VoU,+Q;4e2N 08Iau[U ڧ3z)`ODIt6jBEr+ ࢃ5vPG>MuiSsA8 N`G([D0 돒iYcKVe#l%-Dx H l$*eڞ :6% ۮ"eKyB[R҆d"II|\=|yK^NoI$HuM/5٘xKFz,H"%HĝP8I#bZ@Y͹HSkDkSK<+9t]l,98:%rwnYL:T8 qث4bbg;Sv4$xC->**B:ƞO +!@ ̓HdDLb$YKsN2$H``!@( crR $KY#:-Zɨq]~ wK3gW[ P]uxQQGasmFS5>3.Ln4emw UI[ojl2&CrnC04za(Tv8=<ԍ2Kz4M6 +ܶJ&pIek beή\ZQ*h:| 9aTQD2J$ё:MŵԶx*"WkJJ3Ʀ"4-rKg _/j W%$^\u\27o\Z?㲑^&TB ș`e"T+@PtXԐn)* L3d,3bכLQئy?,Gnip<أ2T%˪Q`Is,̝RF6Af,2kj`jmXb SDji3reON*KMQ{1tLJ|H:Y"ۊ 3PD 4$#R|-Iv v ⋫XaHߏ$mAIwumn$G`KL U!I?lRGΐ( JeCR@L,qmRn#4_( *Z6mj<9/ۄ.,r---]v˛2eJAa$X>u)9ݳ;G6=*E!?=Pbnn޽{w*رc…^ӦN!VozƏuD>u{ֆ\h?\3sfnnnSSSave͝;7b_} Zl8$[:Mh]hh"iLBkD+a[>°>Rl}m% |UN0!8_.BQUk3"]/TkJW\eR#}~Mث HEgrok2Z_?`Yԣi6DKQύw~)8liUFz:ڨ䡥Z I }͚_(ƔsD{?Z}J=ڨ#~(Qp[?;ϙcG>e)8 iCHB}k=nLC<&鑷o*}܂7;$ ~l Qomᦷ5=>Bϯ7[&6!G@޾gϞ%%T06yCк4^=\cL\_eZm̝wj߾,5!ZuS@=dY\z<>ny_0H3]Cfs6̯:1Ej^u爜ZGZ2궷_c{3 JXo2'2ו{Je2k|Rr\=/Po]y{$F0Axr ]()n8  ٸasеQ<3 ;r#IZ4UBo+_}cB*oenDрO}aaUa/#@Zxbӆ[t{*'YW5##W? {KWJ"VEHul߻}PZItJvVj=uJG-~l5@ )Ί;랸kH[/\1PA3r89eo7Auw85㏽OyuwEߔUgT! Aﺂv>cs]ُt~ڵwc=Z{9JBU6ԋQaѮ/5>q- jֽG@|9O^CWYZTt~@zG]jժx'EQiħG΀>=75?wsQ-Bff]v*8ֈ б1~O~Mvt'ҁR^z+%%%C 5޽{7cy㣕v-u~nCRL:G,@%C=-ãd̑sPU9)!81b=@:>iGIG ]|+9'  X nDI m 3z LH^8gAvkmE6E2qRҮ&e܄ &M Ŷ7e1,c0D3~镃A#)%mx)W8*R%JF[Lx]/iФ_?6FOS= f|v'I󧙂qNCĕHG i7"}G,oQ.I'yfL/fn o84_x}W1fuGm'%/n]}X VWP=+:nߪE HS;xovRI<)" ߓ- usVr.ha7Pq̑O>;ƛf\rI*S~CYVq?@I{^dDhРAT> ,صkWcc_{kH  {Nih9_c ~ЄWIENDB`keepasshttp-1.8.4.2/documentation/images/menu.jpg000066400000000000000000002641051306306563300220200ustar00rootroot00000000000000,ExifII*  (12i  ' 'Adobe Photoshop CS5.1 Windows2013:04:14 17:19:480221 nv(~HH Adobe_CMAdobed            h" ?   3!1AQa"q2B#$Rb34rC%Scs5&DTdE£t6UeuF'Vfv7GWgw5!1AQaq"2B#R3$brCScs4%&5DTdEU6teuFVfv'7GWgw ?}[ g V:YQq mnnu_οnEO&XMtߢ;sslvKMTP˫cW1U5{3Uk^[-R\jU\t=6ǧ&zGoO'E9l&Bjv6 Z.k^= vocF?UߋOSvXzalSYj/QR\[ݵ2>ZMUrXqDFUW1v۽+{~.=O[\qciX6m1=?O"տLSqٶ_w>L^^q{˘89V90/lYVe-]o迮1Q[zK澷BikǺnOݾ7tuqkc}7XִóCe>}-m.ji6;K>S?wpߋߙʨ 亮Th.۱e~[U~?V#5=7Ǻ1]kmd5gIݵA;w~'t{mk?]8N7q쮶m3"ʩ15Wm"OEڀ?gK$:+owsE|xfmH[gEi̳3~˳;1 nȸy1Xa%m,Cӷ?Yr'ȸ}1 [oEh8Um&c\?3?]/r+ȿCKFQϕL ;|{>2lu}uzz{?h/"gcYQU07Mɛgq2q`\iNxv7ݼi AZmYt>+m6[+ ǐA*eu ]AuM h "V?99oek)};*#uo 5=0Sf]%αlKyvK]}Cm[cdiewz w,J1snX+Fh=?[7X`buق\h"4lc(k2+I:+ ? 粵ԧ)@_,YW_ViZ >u,;_G}e[ߌbml5Wu?Q$!<>,XhIy 'h6ʾO~.cu!y4J Ymxm X^Ṙ\ .48VՑmFeO^}bgcf6Dw.wӇ2gs̼Î(׿q{p_*^oDD_o؋uNjHm-c1\\mۻzu7_}RzSX:e-p߷~jfN}:oп76ݳՇfPoYO!#&sj}鰊sX堦[Ltq_`\Sֻv?-wЁU`{  p4Cg7}ķJk9d6ӵŅ~(R<<21m:jt3ϥ{};ܒ$?-H~)D'Gcr[S}v%وk{?MȂ#vuDLz{vۿOy=N25Ngo"7{[k6絲[)$ArI$ ,4VD͎S}~3#.GMm̷1-_ZuWglgӭh]ֶZ]Zǰk*]/tee Kkhݵ3oeP x>{P/isY/f>EfA !m~gΔ-soN/{[+6絲[)$ArI$wCJݟڃpYo}c^Y_8rznVuëJrqjgxmum]c3A׽XիJ~w黎@붰msoN/{[+Tcꤗʩ %I)zMM?:T뺎a-c^]6={76Q]g`Xn5Yi,.ppqzxz?}x{<^ݽ޷r՜Mi{M~`mv={b32C]vƽI :i%{))?_amf9SYc͖n 6=}RVqoFY k-5Eۏez~޷lefw&6Z\!ik[cf?@WVEn5_6YgukŒK??_oGkC}{<X<7Wv5'IS?my]+?_ˣwg^ _?mt_FM墻vp׵[?RLY#/QKcp|}{k~aPhotoshop 3.08BIMZ%G8BIM%Y ҉ \D{(8BIM: printOutputClrSenumClrSRGBCInteenumInteClrmMpBlboolprintSixteenBitbool printerNameTEXT8BIM;printOutputOptionsCptnboolClbrboolRgsMboolCrnCboolCntCboolLblsboolNgtvboolEmlDboolIntrboolBckgObjcRGBCRd doub@oGrn doub@oBl doub@oBrdTUntF#RltBld UntF#RltRsltUntF#Pxl@R vectorDataboolPgPsenumPgPsPgPCLeftUntF#RltTop UntF#RltScl UntF#Prc@Y8BIMHH8BIM&?8BIM 8BIM8BIM 8BIM' 8BIMH/fflff/ff2Z5-8BIMp8BIM@@8BIM8BIM= menu nullboundsObjcRct1Top longLeftlongBtomlong RghtlongslicesVlLsObjcslicesliceIDlonggroupIDlongoriginenum ESliceOrigin autoGeneratedTypeenum ESliceTypeImg boundsObjcRct1Top longLeftlongBtomlong RghtlongurlTEXTnullTEXTMsgeTEXTaltTagTEXTcellTextIsHTMLboolcellTextTEXT horzAlignenumESliceHorzAligndefault vertAlignenumESliceVertAligndefault bgColorTypeenumESliceBGColorTypeNone topOutsetlong leftOutsetlong bottomOutsetlong rightOutsetlong8BIM( ?8BIM8BIM8BIM h Adobe_CMAdobed            h" ?   3!1AQa"q2B#$Rb34rC%Scs5&DTdE£t6UeuF'Vfv7GWgw5!1AQaq"2B#R3$brCScs4%&5DTdEU6teuFVfv'7GWgw ?}[ g V:YQq mnnu_οnEO&XMtߢ;sslvKMTP˫cW1U5{3Uk^[-R\jU\t=6ǧ&zGoO'E9l&Bjv6 Z.k^= vocF?UߋOSvXzalSYj/QR\[ݵ2>ZMUrXqDFUW1v۽+{~.=O[\qciX6m1=?O"տLSqٶ_w>L^^q{˘89V90/lYVe-]o迮1Q[zK澷BikǺnOݾ7tuqkc}7XִóCe>}-m.ji6;K>S?wpߋߙʨ 亮Th.۱e~[U~?V#5=7Ǻ1]kmd5gIݵA;w~'t{mk?]8N7q쮶m3"ʩ15Wm"OEڀ?gK$:+owsE|xfmH[gEi̳3~˳;1 nȸy1Xa%m,Cӷ?Yr'ȸ}1 [oEh8Um&c\?3?]/r+ȿCKFQϕL ;|{>2lu}uzz{?h/"gcYQU07Mɛgq2q`\iNxv7ݼi AZmYt>+m6[+ ǐA*eu ]AuM h "V?99oek)};*#uo 5=0Sf]%αlKyvK]}Cm[cdiewz w,J1snX+Fh=?[7X`buق\h"4lc(k2+I:+ ? 粵ԧ)@_,YW_ViZ >u,;_G}e[ߌbml5Wu?Q$!<>,XhIy 'h6ʾO~.cu!y4J Ymxm X^Ṙ\ .48VՑmFeO^}bgcf6Dw.wӇ2gs̼Î(׿q{p_*^oDD_o؋uNjHm-c1\\mۻzu7_}RzSX:e-p߷~jfN}:oп76ݳՇfPoYO!#&sj}鰊sX堦[Ltq_`\Sֻv?-wЁU`{  p4Cg7}ķJk9d6ӵŅ~(R<<21m:jt3ϥ{};ܒ$?-H~)D'Gcr[S}v%وk{?MȂ#vuDLz{vۿOy=N25Ngo"7{[k6絲[)$ArI$ ,4VD͎S}~3#.GMm̷1-_ZuWglgӭh]ֶZ]Zǰk*]/tee Kkhݵ3oeP x>{P/isY/f>EfA !m~gΔ-soN/{[+6絲[)$ArI$wCJݟڃpYo}c^Y_8rznVuëJrqjgxmum]c3A׽XիJ~w黎@붰msoN/{[+Tcꤗʩ %I)zMM?:T뺎a-c^]6={76Q]g`Xn5Yi,.ppqzxz?}x{<^ݽ޷r՜Mi{M~`mv={b32C]vƽI :i%{))?_amf9SYc͖n 6=}RVqoFY k-5Eۏez~޷lefw&6Z\!ik[cf?@WVEn5_6YgukŒK??_oGkC}{<X<7Wv5'IS?my]+?_ˣwg^ _?mt_FM墻vp׵[?RLY#/QKcp|}{k~a8BIM!YAdobe PhotoshopAdobe Photoshop CS5.18BIM http://ns.adobe.com/xap/1.0/ Adobed@ 3     u!"1A2# QBa$3Rqb%C&4r 5'S6DTsEF7Gc(UVWdte)8fu*9:HIJXYZghijvwxyzm!1"AQ2aqB#Rb3 $Cr4%ScD&5T6Ed' sFtUeuV7)(GWf8vgwHXhx9IYiy*:JZjz ? b|wzv'z`]>7OR~:/S1J͟fmD1>:-p'qz?q7Q|k]}Y랈(ON6'nRl[n8LO?}Vk'IG@_w]KO_{gu׶ٶz?NUu#/%.wk}Moς z׻~~1x7IK\ݷ_Go.}|iǽ}O?ZS]~|g}ni?^_:7I޿wlއ]pdO%/v=k7/J]{ݟPO?[z/: o{fO?_ w@ݻ?~' {O%9ݻ?~.?_?OG@{pm'~xw?%񎽻dAt?p!(tkwϲz?꿽7O>|5/߹_A?G3yυ\4Rsߺ6OA?.yǏ^˿ޛS)_\?YxQIOko~AoXwG% ;{{P׿{o?pc_ 45?Ip7zs;1k>CxܟacOn`1, 2x~4P7>~G AOW'Mh<7^G˯QBȜܝga/z-=36LdCg8w/߸6@?78.P|k^ ;iyE(3&\~8WOOCnUPzo˼zo>|f$/^?-"|3){׷UPzy_ >3o(7a??_JM᜿$/aW 'MYw8.GG.?~8q_^;O_ 7Sޛ{ӼwX2Hai?7[Jp>8wTy{Z7OFeo?/$?= Z7N1^Hdoiо3X{Oz{Ѽ_Ƅ~>,|4;?ӟ֝S?2]K=P:y_7> pI=_Ѽ˧??|Tg';OT7x~%o_9?ξ/I_=P:xħH_m{uN)d? >%??A߿{u)bdS?Oo(oӼwX? _}ZSֿ;uп߇;J? ̞BcLu7ϘW[k;q-ڝs?=9_=[GVxhg#><}vg[sNjVKi_7}ɿ6df;c>9䳕_7F{;0)M6o\3ݼ^{m|6fqA yd\rm_vU?.qkG{&KhZ<6cx%O:q\?× (-r dFܙ()?Xn~^"@gYG$ߏ~-g>QG7Y׊$K4#f QW鏦tf]a}=҉?۞'[[_J|6rk~t|(U߭uhmIe~sSkxvj8zzo_Y.Kte?Nt.7ϴ_]7J~ou7o1f7/Uw%'ߖ+ä3Xto:_+GLs~mvTnjiFSgCZwIJn;O%vڹܟ|S>c?{3x6/8_O~s`@G|N僬:;%Qڻ&x4ع SP<"~g} }IeA/{is_S&/wKˈa<77_J^e[q{;!&o|Y~<B?F0A]׽rpuU4{n>n9wlwlllw`uʝ1WՌ[2 O[q%lw!f`$1{D )ey00^K93 >40^}`}/}/Cx!{*m?n?肾fI?{ů}?y ?҆Qqfi7Od?T>@]^_[ovMb/9CsXe3,.{(>8=򒲍k3y[vG~ Ok{ǚPvhDz3/ݷ 7M=嗁?# AXg 4d=[W7OGu7}:nmܛ?.x:'0M:Y`۶ ^}qJZ^90 Ež^x&kRG}^h_h?Ŀ^ eO ?KIwUVK;o=N8ͫ{q]_'i*|N4ۧhmꚌvB)[EvYfca5!%6zx,ekoY/Lr)6W]4c,H#0yUͧtzz ~~36iVv. q|{=Mg-l]k(7H6k!4;{o?<'yS+ })$g?Y i&d0[^jg:JL~8MoMOKghĞɪ'EM7i ꧄ُe I"ax`_pw<%qm.ݓ3;7XL>7bME^|3q[ó;^ݦy|'6qml~k#pAN}:%EEt{ 6Cqushya'F|c[{[8u|=}?֞kz 0}V$zbw[O=^,G|j͇ ~KSQg]n1K5crYuOyg??Fk#=?<<<OOA<A?@-#7SC78OOͷ:+=R’xp=Pt͒_#=Y`&X~?^ߏG%HXQn ?|OI]Hۏ~GtߺI|Lh}x_>EzKrUKhǿCzߋ`qXډD]{_;O; 7oMX?x?O~>]k_ASkO6۞(.q7c%YN"okȥIu^͒aυW/%mHoiOuUW_烼j6ŹsKl ~nmڍQNX~N:ޏfpzdp'V[|uW\cqak ?I'uKv.1&Gj 翼OdԽ73G'v#< y^g߹cۏކv>{?  Wo7?:vcٝ#GA>(b Wa=+Ima!Omǵo>8S oxO߯?Mq)?Yo?!7 ?Gtw?D{~?sh? 'WeoqopU/~ަ'OIԾ_WyOM5o#ss%mntרO߿%uuGNm~?s˯~WRiXҾϒWWrǵm|[oNO=ǕfDF|G,ABF{O~Λ_W5O,8#v 8wSe3wwM|[Fw i]q%vkn,nSIAi#bς|mvpYmaY, g>Jwnn}z׳AJ^MV_POU9S_uVkzr`ߍ8Ե]?6snjfqo*|8 doto6!&ņk<A<>BxxH 56/M {C~3C4'3O Dt1ob?Po}AbsP`t ;Bm= 8w7}CGk1M{gz[ղ/2HoW^~@?}{3]?uSzC-m>p=E|To\|>#Qm\ݦyomlm#5ޖS=(&;e0x6bh"s4ӻup&헻_W?&מx 2|!Mڽn:x&?՝Y.ާ66;mXqsvn7}07)y9\jn^9{Qs -}C5^8gfPnpMn؋ڐ}FoxAƪ}v[Xݽqk}lٽ;՛B/*(-ڸo4X(W7Ͳ f4\Ԛ@x89oKU?ꇁ]ǟǟjwNzoνuvڝ}do]Acw>'bf Þۙz! *XK{YO y Ny*q i/#ZsA > ^9C{e|?GEuZ+}u[4{Kwgo{M}MɊŨSٟh*nH$BkKy/m_Xfc^,B gws.wMm7{O  Rn݃+{7}nmrX:#wV=U6s鎈 (kz|wp*tsao|~M5M_u4{֎: ט ޼a؛(f5 on.q:tsW[~گl[`'ᄊo^n'=9 ~Ca_;')8ӊY g{[㰝Q}a{>Udž|bhzix8lFV(/fPAP)]1]2ɝ鿉a3KøG5Lb?X߂+ka^Ep̓;|Z>6T~an^=v7iwQۋlyα9θeKs?N}_d?cv+04{Gxl~Dy6zǁechVVPx<yo綽&?#3g'.dOGO{cts{ߺP>{}Mu>#}}tޘ`u޽trI dy=,TDRQQ8O?ӟSWD){wϯMe@ >_GN/?_uc?{~ſ~SWSq>ZtJ UDO |EM/_ًlo+}nY&'M*)`0;W>ޛS+>7r~7O?z/t7 OO~'SEh_zW\}w??_Q֋OD{杉TDoW_^ԏ"?;Eu{Y?_e)~ np]cI=x'?}a迷p+>EuO?¿+^Ix/?g+˯~?"?߿v¿rG_ >DuWZl?o7]"Cݿ=o>K[ =a_=7]/~~_oW~'T{a?opՍ_]F}-]UٳpzoߐUvi}ULTwX=x>?Wr_N֞P}?[U-U=o~xk{'}~(U{fQ?Sx;g'}~(U{fWy_x;g'}~(U{fWy_x;g'}~(U{fWy_ǻqBW_Buٿ^z?qW5Z&_ O{ޟkz{β)!cȯďOWQwS_ Gϑ_m+t}s 7ƿP?28{o{S Ƀ?,j?LT]:uuB#!?Guw?ֿcƏ[?{_ԍGL藾 ߇?28Su?y/n|-?ۇ%7|G7;mץF+c>~Y+pNݵb|O?oiMO]wk񗿿C߿oiMOXm7q?>'io~\?Q7=G}۷,_oͧ׿t񟿿?߿oiMO^Wu׿r{񧿿?߿oiMOXxi냷&'niOZzpqcO6;O^nzț壿e>'i냷&'K5wȧi=pv_֞D?e|OZ_߿oiMOO0^~Bopv_֞D?1!ş?9ZzpO]ar}GW?A}H}cw?ztڬ/K _D{mcvol߆)v]l6;so\HwY|^?ņmq6Ü?SM 5OmζۛoFW<>7|ON+?C>" ~ڇЋ>^=8iщڽfɏ=-qQVOz7GW̖7~S)G۬{^isS!Fúc[_ouptV^~Ot龽{oƬwSI=ߺ{zw&Mӕ5~vGUdzsbawr"i~`m5l?ǾyWQ/3Rװ@?<=(}wWﰶF+xw. N qg>rTcS}XlPL'06G޽{z;pzM幺uw&)!Ýۛ'w]1T07.ܬyqoێC<;~,s;ȇ\9N3 93?ŕA韢{oͥ}M۴(wM|>cpn~7=mY0yga6O{ED[5/~a_g6WA5+| u{e?ײ/x?y^׽t|bufx1qy>N'r_$:%c*>ꎲ<3{^ih)tଠR`If3z|>6pR",Gy!Eo46M85)/8?q{?Sۿg3CSwv]/nc`;Rtnݹų6񘜆6<T/ղc2?43Ldj&"" k=}Z m͂o k)Ξ>|]jt ortF#]Ц͗WYG mUm%,@T4}v]Y}k8D`/J0W?{ֽ Oȍ|]jz]3]7]G[7YݛQٻk\پ7|.$3xߺFAB;wMj.-|~} ?SYC>bǷq8LV;}acmь>Z9OSys,>`_t䱈61K7dSxkmJznrWzle7FnM1n9chrUzTW^紿6˓Q?6}o-)|~}^׽u#ߺ^׽u~{ߺ^׽u~{ߺ^H??}uߺ^׽u~d'ߺY=u~{ߺ^i+ߺ_S}cr}n{,m{s7f[6~ۙϻ7^of&ܙ\>mVVM?a6[MV:?@[o{t/#O/x{ﺺ7i1_݅?iGbtWlME8 L~>r(4xKJ y|oF)7vo(+}kͰYy yoˍk9'XEz;#q*?V-/f-V޴++z|hP/T~aY[T/.&@\"ӕE՛y6 $}nj<3@ag56940 w۝@t比YFAoAqYa}[u]+{?X;3+GpzohUe6cx9Tr>o{owbw߮~E @Nq˖ k-a~4:^{-ߪWs6^YU;΋۟+*{;+p1'rnv67hv߉ՕUow%wU ~FZ>گ;nvn78+ +I"F\ym}|dW|sC?ӟhA ӛ/^gN诇3of~&^n-ݙݏCY;#ޛuok#fz`{W60&}x~E~5oహ;uƲxx1n>%vcmGw^vEunI.'tݿϤdy,:"vp1a 3XU4;3~G]yOA=͈17AqßWC?ݖXW4yb/d}u~R~ظ|*c;~#|)GDvF{[1Yu Cb K)ʛ^kxog?k( kѥsmUijtmdžfM?c}{e~-ev tU>^_ݙ uVbdr9y/@qsq[9AO~?g/_@ 0l[)l;eհs ~M{ecYMv?G]]oQ]onVvw;Wfn~˹vNWE[stc3O\Rh٦հnٺ_w\7_lۥ'dVP}=:Ek5w k 1n{]x?_CAWՔ|덵?4U3zuݵ58 Nvoo\i^`as}o0^0},<%{-jV+}=o_)_mO&z_Kz1wmw&Vw^7ۛWjmn=ɹ7^x|E,Օ}=7{=?!gߋ_:>#_Vy|G.ۆ>?ǮQ7:6N ]Z7mخMC_O=8fىJzm{ k6W >WUuwSZnsݝO^yvG}0AQ8K1C=߽9T4<'NigYk;b4菌^ E_9ctsk`3xlE<7' A  hcs}CSHV gH݌۝Qވعn d8 (3U ܯO &q./ع`g辋lyZ 19?em`y~Os 71d?FYлZvvi`rmvW.PlE6oOmth%^d[c3;4Ncn~nUp| 1A @%32l?Fm͘Cbh-XX?^s^53O#'טO=MO_q?XfCrt ~Dtx ͬŚF1YCN>Mo{I?r6h ح 7al~E :S4;j~<~x]kǥk;~v\_"ޟ;9꿑;c0-ׂ-?ݫcջ߱~#+۔;trnsh,>k h7)罃'ǽ!{/s8G܋\ cpD6OqLlf7Rd7/k|k{?5SN0hO_=~߉o2`aNwlg7ZX\y/u xg謾`5եŗ(rź=}_ff>~u{׺u{{^׺u{{^׺uGa{׺u{{^$>׺{{^׺uO^׺S}cr}n{,p ʺFFtI}4:: +*GWu+*=({?}?U^?}?U^?}?U^?}?U^?}?U^,pS{O>׺,pS{O>׺,pS{O>׺,pS{OU읮SOy&:uL~CWzOS2ǒTK,WӁғ 퇿uߺ@nmY-Cquѳ;Y}:W-XU?O#{:+?{ߺ\o?^׺>L&U{'owNw>4s)o|#ek^sv>OLQ㡞1@?f=*mGc߷iuY5/b= ޽*?ɟٿ۫uyg?F6o~u1?;ߺY?&?too`T^O:7I}u'ɏ?>׺m~{cGF6uOu1?{ߺ^|ѿMS{q>L&׿&?too`T^O:7I}uɯ^׺3??7uWu3??7uWu3??7uWu3??7uWu[3'C }?;׺#nm~#w"އnLawOlܦj172U8#7M%eLitgƳU[ߺ\>ң9~sJ:{^S}cr}n{,o&=3?Go?aԑ'hUn)]K1j&k+5bi:Gtݸ-ˉ3>TX}G'َ ksqd&h-q>~no0mHc1A:vN߾;RWGj WRK[wۯZzBtu۾v{vw']rz Gꍅ1h&2ټ#>_x>Y[lwA5ű4¹$Ν7]\\\]_xt gbu7OU]qx,aod`ܕ=H18jN/}}4XlVٝ'?ӏx' *-X5ز3B?G@ػyhfr4'{}=m>9=B>O 1:ba3~O\Xv; ғAԸLZY n|O}£onG;;fv܏ullc?KLJVQVCMSO&vm|~V7Mt(.MwܻW 3o Ihi}ϿuXr;:?sd\RO%̆JZ:?a{]f+2/|$_ {Wxg5MGUU/7uc|So鳷D v['֔{dN#3Қ}F&k 8M<0}{|6j1叙grNoՠ[[49G{76;%[3n>ەX갴0ٹ}l__uG/s4_ofoo{窶ݛ!zfhҫ5$=VB|4=tpoE_477gMM֎pX+S]*qL}wRn7 =bx!v}h׳LC7Y{MJgV y;wj;??HEh>|q^xSv_Ч[|ϺjTSTe6jZÌȓ A a_?9x|G?S{7gl~Si?GK݇QIs3yLi=W|UWw䟱sǶ>ox{ǂ?%Vi`=|uoNm~Sܻ멶N:j7SV<%i Lu?MbE*;w}kguoc 4&{!Z(6k{[+\MAJCgf+4 1/faS)1+xOIh;k':k~/vVYv\FNqccu aq|r![ɪ<(.&3A)$I~en屄ޓ4?*fx,ڰa_; mybT'hu%(lZf^?s*T[3%q58JoA66h+ upۆ?w~;HIa1XbxaDi1JN!pRG  yg |% dЧf SioMW#lk7_C`cben9|9}Q ñ&xZ4sX)iagX)_!@,5Bo ?[Bå[øA}3pGγWG_k-7$]odC~!|Qo/[gd& ]kvF7A5c\ 8E5<-vY0*%L <iMχ}]5yF 8h)5CLDi<9n|!ٹ5A0~ 8>UUۯK|{gi[pIZSzlOy[;zOn{?zuī-]Eһf˝%4k>ZƧQ/7~ 03?o-ȟ[{QZv@&<1}3OwA7HgL/-o#G[_#W}S37DLKwm͎kn R0hI {eeqoyr,.{n| 4hYäM{/e٬O 0_  _Zp?D,ɠ`ֆiиd=m%{&+!U+u=ugvc60y:go-;qm͛  vll0PޠMXOA^ٴC$Oci88Y'zxMc,;޻'kgy?A?!L:c0_9vf~Hd3{+s=Y\VtoU{/՛xRS7}&*Ɋ8hfvq!  @Xxg<LG F}G4 M0?؏~'sܻ?ս;vܽw h^ݍչ 4e}jlmݶOj^@37'a\Fi S{״>k8 f@^׺u{{^׺u{{^׺u{{^0}_'v\%SYK{w>[7'drx*$jt.y7{y7{S}cr}n{,m'`ǿƿmٿwڣv~g?u$t5UjS6hOܛxf?7~zxJ:sS?g3(?{9qӓ}h׵7ԃ.DZ ~;1(pOc+E;ndl㚓mOSUxkf#oc}z9o9oA43WcfaAZpI2`yxCǢic bL~i`Y T謢߇mv,?~lwܟ7<>/w<ܥl\aooy?DTps Ϸ;ct\7>;v뭹EUmE->cq8G0S{78\rea=43a\WT}guwwWG}_q擬^HobnCo5O?YÇ+znAs40ck1ii>}ua?1N}oa|_o~]{~lM7gbęJjosnlXQIkg?cy'+μo`偾XI܈|lxqG|W}6QӪn^~m[~GvxؐdmM7rCuD|cosW {yckYl0-E뚑Z F˽{ezoj@xGwpsBp W-uLcLEvjMǁ5;nos v*>|3홾5MO}?;׵Xse'.sőw[]|8^>xa{mqbS}%|˿? 7nߘMb|L ՙհsvw'g&oe2TuS5ஃES މz3zf+ku.[kb7n;tcp[>OSwg~ܵttLK#T~lL{$&~OsJߺ\;r{ '1d"a"ۻ QQI۔yj<5x>V։c1v\&)wrrpК9r_>9Ufhf>c GFu.V= PE=Wg喿7=:ʿ#%Sq?X(jxmt}jO+SwOM cԷs]}}_Ь@ap.um߾lLTl>8" Ǎ 3I }Ne  P, &  ݘOݧ]ݽO2~e :+a:{핿6K~Rm>=7>J|>xuVWQALW-q߬lŽKZ*C{CJσw xJ= Kmյ^uNq[|pL0_^ <_(B>}Q%?ɺzU'd|_>N˵ (9BeցYy֔7IJ%LLoMm}nzUcF~XnMWw|ﭱˉLXV-.Yj)[w tF[ °+#)I<և·E0 WWult7A<X~ Qq,C/gv/7g>G`0]+m|U7bu1{JUUYX+f$=ZAk{M/-w8 &hwO7~{0b̒! 0^%; G xY.<yIfrD]yWz&݃/m]A֋c]/}tTv}Onսo ;~հ}D'}-[xl)Yqb*f,SA4bmD+q ޿4)Զ7q=Hlz@돓{OX{KivVJO#EGqQ _c)mĸᇂu$7|yF._CǞ IA1tS}Vܳl ۏ,lt M Y7C7 ]mC:g?[ k޽S;K+Ocu~>L>՟w6O5JoBD6`YvIha,?z >žni_s~䆨? DgLO9r;~8cn}յQ7Ŏ­ڝϚ ؝o_ q{~x1 .2d;Y u~v(~Anq^wR!Nx3MħkU)[ vX!Rqb0>2mC.WW*ۙO{y6hPXgP9,7;' h,辆 E֑ of›gN.]zl;Y6Oeϙ[O; pY5͍j+`{M/4rs d<TVrύRNB040{y9|w-ʾ_;T495|X E'-˛j>o~)_'nMnڜq۽տ{Ÿc?wj7[e7mȃ +r ?DCQ$1Och,xE7A5޴3WyB*v|}wF^0Kl% xAHĖƨ;yeFCFw='\l*:JHalñ߽?dW{u`s??u?I{^c?grmYQ:DEDLƒ*lsquԉ[vh|D,V/{Ϫipyx7߸f!0ıdop954̶hۅT5 t[n'Ǹ|0V[u_{s7 Y?|t͵~Bk[}3>C8J J|O2u97{1YEMɽvX,u~ؼ `0m:~Ao7^IDr'^?guot?q;ã5MGx7]{Ʒg3?t]~noo1ݟ7 dy,j|oWC3;UQUoKSUV}Tuצ&uu9Ͽx7]{ƷaGKe=ztm0Ro_5555>{5XGkJ*zcYǚS?F{xLfoΓѫ ^zC;nxf >.7RM]O7T|Z=7Gmo}?o?Fۄeu0c.?ٛ?j_{YtW[%7Nc1J:^B-x<oSMT~uפowMof^ ϸr 3KE`m|^Cr?q]]Poz@}oX>MGJbcCߺCu{{^׺u{{^׺u{{^׺u{{^׺u{{^׺u{{^׺u{{^3ں8PV˦4ٻ^)|ݼzt07Iؿ~x{:OFx7]{ƷcgؿrUY.~ꏁQ-[gv?}޽U۔y??'j%29&͙jb>_% lUcgkoܠ667[HjZ4 kXCC1_=oY\[}}6C"ִc-}֙˴CGN||UoQ_iG˳?nt壮۹ua}w-dTY*,$-زk Zh+ j L\þYBjxya@f l}s0\n2!<&\L){b{Spޠ-򟦻odQ2 Q}u|=^_۹ *p3[)%_mo,WkQ1L`Cq3f-w+MOg Ho#UW)N#8v+ɺ'pvxfl$9w'/Hg0G7/nw??gvilѧqc(uǿ?&Em{w-Ϳ0#{p}Y|_>5|;+):;̶w515z7.p7;R ]ge7MxD4#0 r-r5ȿz3sNa`w~+:x̤Scn.ژ |7ow/}=!3E8bT62ZR9kw; 7,OAߣfaA>?Bi(0\Y_noGK0XCXowK+)&zb=́:xw^cQ^r}Y޲^G-G'>uOaw-hcsQ]_M h` ÈضA76fA+dll =ٲxmkx@"&iB 񾎷ba Q|1_&_zxMn=%꿒UwvzB8Ήm,^VDZ?3OAw2m}l/f,&~CA:<?pAY[;͎ٵƚ/w?hN37,[iP?a9쯏 SB!y?Y7 7}幻? 8 =3|} 4T= kn`nl0j5|lvX&xb/.6KX@" T ݲTA=5la ǃ2>ՠ?7Egn^W=Г|_#v{IY}zo ]D|6暧x`m1.~ yͿah<(`'Ƙx454IӐ7, =+u{ 9=E]6s9*w>~+[9Q׺ mezO$`$\Liy Ww}mBNab,,>k0YЙmf8C1ܟ7}f<4M:b{K0*Rˉ퟿wA|zݡմ6Opmm8|?|/I+y|[~g`H7Anǂ-ʗv`jkșMb`ewm4ۏ+=+7~=__7ۻ'zn|z_ocnYvvؘ|D;#Ì ժi6qp{ֳ֐c]D!M4A{g0X^o_E{oؙ?4׻g@'MG4ͷûKvvO@uM}[xsQQ:c[dGOg2ӈx'ĸU S=d8=;2 .-Y?m#Ǭ7]헁Zx?M_Iay7lv`fmo6KA4dC␿>VSiUҽݿ~\wY~MvtۏWn>T?em͍ۛglg8:A(sյX{ox춽ƀX`kل Aoф2L\@gudy`!4m <~ ŝX& 9Lk>2nϸI3}.m;07 qGUs䰻Nt5=[1!~fa޳gs@&q> 3 xQnc[`47,19L֫ (}:)]7vw[__ݿ߳7Gwb2o rN~nK'ݳw?yG*08!&UZ^鿳"*6o V)`g_38 A]_]IΦOWTx#I]S>[T}WcKAcri(dsnRxo@n~o?;;lqx)<<դS=59mɻYݘ=?MZp5_5K|}ސ[㬳6&;u_'dF>/SR 5EE443Vgxײmۧ0n/yyf" o,g^蓵޴EySu+^nöZy;f lV6^4$x0O0S?wv=П%qmjg'd>3n嵲r vT㱴f}4A1īs#wM=|'+m3m;ܷ]7׷zqo}c9қ{+BM<9nnvakbk/|_~Axa7ソ򿸻~);+򟻻d| ?l['7^Tgܪ޸#?ɠ//Ir?!7^<ռ3Nm煷*g2I]|}/D/ݒk(E|{?X!ac|ca>)ZX`_||ƭbٞ8,?[l=6h ɻvxc÷qﷃ'9ms6Aar+[&><2Oy Mf3@O ;pkݳ~7T`/lԛs0GO?OFfަ)Oȏ]-spj_M7}agm9,lR *픞=jnaNQ[ טFl hn m…y9] ǚl7MdiBa{bo@+/&0ՙ|D?}'~|t7]o&Œ{WmFv];oy|_Aٛm|`ŕV{^gk-n~N[ݿ MRw^dkk?q}YZ?|n3mVVT43o8!?}y3u7Wu'{_{G/n߯N?|ъA4qs81Z UZJ:GG2؁׷&}?o4<{V_KgyGܣޟ:;6gn^\nژܶ=;]ӵv~;{gbudWl9f 꽳mηݙ>.},f/KK5Mdmon_{s+@H J4?D($vN?Q[ 0&=Ǹʯ>dSCBK=]YNk5n4"nԳ/}'l5TL|NwayuPTuPl6)4>Z6Sc}ub6?RZai4 3OYL`jcZ!=1w#_ww5-{m{8/uB) zg#4҉j fJTl}'k;)vNݓM݋("8Zmu!i~$[|7vSCIzI ɥ3$A4TRQ2]Ԓ YM fb(f6DS @= h|BM=y0;9l*vOcu]`f~=ׄ=|6.#]aNW H~s}dZ{Q0MKc %nn"rف<"zItOZna0}QuUds{fsxiopV 69zIϓjM\jL~Dzm憫@Wt)# "F M~x/!2's-).*: F*|UOxlø%] _{?0Q_}?; ;OL% WQ/yx .*_&~=sipk5f1TlW6Ht'(@(_PQr17b7x>ܧ_x0_1UһRh~ 4EP~e +Kŏ{rLվ0 3q FkE!00(-m-l@a0 {%$d4 r WƬw::/^N>kn'5wodv6;ﴲմђL)|*1n7F soCBjިT@e(YL֞v;(gixb!"懁 PЏ Ô_'suOoY{+vamN<~G>}w4dǭ6ݩ8H8h{~TT +!RJLS4u:s]+{0RyB0ެ|Ni6&Tbj ?`j%fY%[4H/&3Nƀe9(I"6kuŞ ?Ѳi_Cy?q(0{k{ߺ^׽u~{ߺ^׽u~d>w#S:h~k)W#6ػ[<=? }1??3,~}؇h~:&|>U'ox 7R+ﭙomkZ ¿E=| bs9_[ȜMV[XvE־ֲ֟h37ϏOXt&m.謇h76C]}!cr?,n=3[=;R{2Ol3, BOǟe'?oHZf E? XO4#"z&CAw%g,saa["ͺGnuN|I=KnTlPɹΦTSNo?_ɴK16횏8MRi7~JJ $cQcm=rr[@;iCВcJܰ0';;=#wٷ:.[֎vwzzW_goTuT?G^ei~\цg^[֎_Ӿ~ νRPF }=Egk=]\3UUBz:ISISO7NQ78kk^%pP#orn۱{:ja6\ǰv>٤ݳvN 5[; 6Icq=D0oK{&pُ~T3O=4e,w+ĒII$=*z?;==+w??aVpti~\цg[֎͡1{/E0_ǚɼ3ykr59,Bejc.ǁ +> B+X,`[[aҿ~~{ߺ^׽t_~L̷'St߿u)?}tK{xƇruZǬJi Mtp))瞎j'%}f[~{o./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺./gn~׺#vy}σڸ|lX1tulݭGIIc^O!}o4|6Y~Օڸc {/o9:*)jjoo",P^[d_??IFvgzzsS2PPVw%~ԭ66btz6D~ow?=8%^pa [ )\e QM7bA$6no]|ڧ/f2&< {2Kqar@hH0/DjWnA~oأ?er WժXc= _د9׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^׽t_~L̷'St߿un]Խy^gC3ux +~|mFg5kYmU%Md?Ǝ7%c?q9~I[ ?'5W˩Umה9vY0jx>0?N훪It 1n.k*z?y<05fGqc_<}=y Ӛo.<|oЮ>үuy"oyOR{_o3?7cz90k>'WߺD뎺gʮ[u|ȶ~:ݍhA۟.z};G`瞳-aDPLf2 ͸n7[_0y,'(p0vr:#Õ'$}6K;ŞK{s7*"Ț`Yw%O^4g+Vin secݑ c?f"}΀f}u;;#Xopmۋqmu}a5;l,?g`aT樽3A87?r?1,T)ϥ|LG`d~![CµN}ɲizz-9ݜjli[Dtw;Su ',j &lԘzm~dw1x0Yx1qe-qE>rb)gd,f)wn :Ea aTUj8|tfbq'ʾCMëə!<_J۽o;wmtI{_htYo N2[3I鲹.3UAhtrr]#P9h.7de3BGЋgRIPe)#RJ zuZ?L.go詧7 =_~߹bL>ɨz{F{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~?YdW?_zߺLc}e׺zivVΠ w~d? +d}M6&(r]=I'MO<80&76 ۡx &aZ҂ /pX͏ѳiȂ\r(iQX>淲=3ѧ_|%>w.l{?]%.}Ч}`%l(Vd15 N8CeD oT/ly7>7FYg7ZN!0Sdžy|c46W 0-| 3>"-drOfl}#'1SL-UU&U QXay׭[+S|ow f{=3Gq;vTMݹtPeU <=4=CxϘ}>s?'mVmlv? &X!|s CAOTzǾ6|1Нcj3;?Udjir{c'MG~oVo+i9KkCωjI/=sKV u{S;C{c}l\.Rn+1Uj*q:zzGWG_)~x&3Ѥ50_;z|[LWjwf՛뮶&c_=f}ue{WnTsTTSdip\䟡ǹ_֟҆j3{?P~?g:oU(C/t];31}#/G7ؿ!AᄍhW>O'B{Wp()ԫj=X m 4vyY/ 'A S<;fG]^-Y a"񯯠"{)f_Ǜe !3un$h:ރ>GO߽/Oޛf9WQ請7y'cvFWl=UpV}2o~ e˷F smxO0 !1+;#zD 4-9R&ɥ孬Ns0]SC϶__X83,wDߪ~/nMM~I쯊umʝǀWO6drJ6j|s}3T74=QǾwk9͙{F51 'Û~laY {fY0^ "xڿ JTo߃qcOpW;hWl.ؽߺ~ofcqtCm5h1*?ֶ>ŵP )D3pW{1mt޼le|1fs}r`߮7ix[e=&}ɽs>0Dw~|+lZm~Wژ5J7lAWt&[{ mXnM{$hV 8lv"[C7إ)͆ғcr͔6i1f73y=#=8<[7/?C+Eyy{f>15C{?O|˳)7WWFdO^V|N;S5'3f>Nr]QXqpVOm<<'tsЈG~o)oq)/"@} b|sYm%x<6_Ye>ӛߢh5&}ֽQp-蝁c/'q;{Kco͍{cUMaѐMGLDVmL6'kJbmq 1^^B 4ɷRw쵸&ֈw9ӏ}/_#0Y i;cuF^՟.ܝֻIi2vvAVphx~zӶ7 `3_O.j卒s[mloE|xz?xu]ֿ{_]vrVS]끧 ?yG Ew1\8Pp*(9R|7Fgi퉰7|!vB?koR(۵|jعpƁ8OlH74 BfS抒9W` i¥"e`g#ku8INcWlmWhZ5 'ߍQ[0d93y_oA4ϱOlDOF_Zj!4x040iyZg3Ͼ\\N9_h%% z7#;eUv?k  bTTjs9v0河֧6+uǍ<4)y5if~Fz+ oM_aSL!j$۫eck'~eZ?ŏ&?}&_!/::u{{^׺u{{^׺u{{^׺uɟ{ n?Ou CcrsPd1QSjjj::?^rҟvu@lzbVoohnqJmK36GG~ QQAuǿu{{^׺u{{^׺u{{^׺u{{^׺u{{^׺u{{^׺u{{^3$Ia:ۉ֏Ko{]|h~)_ͽÌ_WU}?/?z]{V}^R G w1q_܎ ?@C/o~ӝ{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~{ߺE}7M^b'ߺIo׺IA_h ^a`wGp쏏/ꟊKo^m]g.ĥ}yE{htC2v~ǾFj )neh`3mf i6_Y5&pg5mռ )[}gy&>X&lu > **HYuS]쮴L'0vWlmNu:%һ2ݑ\11R`hm}oj7l{hl0Zk&w^Mg,!3^-Dh*P}qYR@|{ Ӏ&(H'f|a.)f}YGڽÑꏓ[S ]%_|F[26We-ffm(ي-v' ^jxkG(..aعK}}mD&ciR_K?BaN.lۘyfڪ)( ykIrfi;}l= w._~UbMv\&=Oם6Kp\vת)6s4; +B<xB[[yq ¦/L]G[rϏBE歳U!̏3}en"h0Dã>]t^ݣ7߰1ۓ9=ύ]Z6v{FnM?k? 4~ǤĎհU\xCyGC0;B& Yxݪ>㱂-yFC_Lc?VSEKق{/'Nn, ۯ:='M q5B02['1h ŌY1x&&š=(GD:շ;yYadO(&c) M D=.ur<~{{'pHET:~>oxWSZ=Qooc:(reY=< Qs4yVv3WŷGN8&>2$CS̢𪰒 fAa5%UiM}(!k)>AM9Dg?7t/x|Wd'OwtnnӃYr{[n{|nblnS#OE[Muo8"k?ro^Q{o;ì5U9sK0Ə Y033*ݽSn{T <EqaM<؟ܰKso^Ugx4oA|jd^]~eRrIv>"5?o۾1alxxb̺H$?Br@q5c?C Bw3Rim!_~O <o;A_nC>nC}*Rb~']ɑe=ܙ#Z[l3,s=tu|&"Q9/ ʖ1r0s L}] )K|s$a3>&/ZaMv췿#ī֒O?Ɇ/؞?A-uf?9a܆Ў/W{׺u{{^׺u{{^׺u{{^׺/&[O)oߺC>׺MGJbcCߺCuvnd.ɶ~ԟ7K{j-G}[fWboEOwd1T,4|08Ijط0nBfXk !gOx"{ޫ[e[,3 h@j/D(8*;O[qi㴶gEN)3>9:7F/?yh(9<!`'dxV`y O&/ɱtvDnx?"f ";{3U?}]U!!~V`'eu;svo~ j~Jm}4{O~vmhnmOYOVI6mQdL&{2|o-I7 7XfFw7W=vWksmAY1M逘ccm .o{[gl C5gsθLqO_wuOde=5&/oaZ>7$ Ӛ^5m;/{ `f )BE =D}<}M-޶{ wK+@ 'Nk(xM 8tTMi|~{ {|g}|o'|w =n3UenǓ&s,׻O(; BݖYL %K [~õ}@UL#kFS^ex?ĺ qo=ڿwFGh=UQ?uSz=(v&,Bj=v?MOGEYO\r$R$&Yoa y 1X؃,L,`^%;[ DW^`3މ AY&oV[Oe/s5:]~>eUlﳆG;-Re sڰf\xrئ#ys6sYi :jy ^ϻ=X/0sC5a1!7M . ;}2~4|sQ||w9?ݻQmS].co.c$hਊ^kVifDZmsYCex}DR׸_\[6=ޮ'4 Og8:K9`DJ[=|x%]U3rw[V{3unJlV{gSh_pnȥ̝|j_]Cspρ7 D|k bD1.U | 5q8ox+x0I g]/׺u{{^׺u{{^׺u{{^=oơF! 3p_Cmuݱqw?e˳fud|fo4tۏ{GqQ?r ? f2 ,]"ǯt"~7U='.~,c/ѻ F>,4?Z*?_coAzdtae[_srn3+:߾SuëwVOX)27|/Tոqv,ā@oVcɏ ~ o "~·~ν{{^׺u{{^׺u{{^׺u{ge?t1Oa{Gz_~$/4?}t+VCI=d$p;-FF>S jϥ"O^Eh{:G{^/nοQa׺K۟}guEh{:G{^/nοQa׺K۟}guEh{:G{^/nοQa׺K۟}guEh{:G{^/nοQa׺K۟}guEh{:G{^/nοQa׺K۟}guEh{:G{^/nοQa׺K۟}guEh{:G{^1- tΓeCə;mn;j'0&'>ߺAQ|͢צ;CvgX ώo'+MA|Ka3riQfb6RjԞYL|ad!}D&ay} 쏯#kkk+ sp? BaySu6͢zQ~7/qSQGޫ]waB >ۍtzbSo.|vBhe!O0ؙ&!b?]W0Os{kD^ kOƄ?fe/}EZ+ouv[tc鞠nܹʽ;wV G1v;n}S[O~|:=EYbn5*=a՚>)Av=vS?48֝;1n u3mՍ{zR;kށu]u޿2*t`RQdk67m.cp<5m0!g[q$2q=֧A5(D5iG>8q؝ԏ1!"bG SZ:{{^׺u{{^׺u{{^׺u{{^׺u{{^׺u{{^׺u,+=s{g^ i_~~{ߺ_ӹNȧ6ZS`x,"#pW/q+W~,1s?9܆+t=Nu~{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~ߓ?-'7{\:{mTIKJ˄1 s~K8"R<rto#[׿eq͏ꩺ ϙٿ]U;dnT>6d*7T;njFu-Gu&dp9K/to; C,6oe,?Ր<?'? 7^El3`Ӯhr>fO˪3`Ba/+2tT~{/L['DۺD|݇w>BnlVϚ?XE?^K@d;[7z%ŕǎ?>>5XD3O.leR|}Mu}bi `Xj%N,_.y[0#x0N>O}3I;cfl6]:jsےK‹']}g`w=vLiw<+Bz )mbPl{q5`><'t0O!׿_I1Q˾/!{O\]9PC1:dq^ظk&aۧ3u6fܚ }/*m$oGׂЅ+/^ ]kcm74{f{*cg ߃k!=10_x>6 >Z|-gG1=wپ>Z^[6t/}_yԘ|1׹AP+VVӏvÒ;|6^dyoy8Mz^G5}ٲ~k9y +l}0O{K'GG'άcˡmם W{WnevS/)'S`>Lw K&੦'5unmѽosBDX ?6PL KH ;v=)IŹ֊Wl)9'lg|>;qBXdڛցkսIG#T=聞e\Md+o &voFGy)Hf giR)uqז_?\P{]{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^f:|%Cn?:ro^_izl՟'>&~7.9/uX3 bl%#WLU(.s]",Mp?N "ٍqc?_ݶT?/#Ut9j dT'4Ͻ E:}sOzWZ{ʵԶ FXӾ?CW?d?P{9܆+t=Nu~{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~ߓ?-'7{W>Eݩ'qBU{Gpu 56[3z|ֽ\Y[5KNEb>U*nZ7a~5Pl&/;Or=f n;g흳qw~6kڬv <<yr.[kW{ǜ~>w?B^{>4[#7g9ߟ+SvVНո)7>K][äReX8hh|SM^-?!{//~v|Εm~;jSgFdo agLcoMѺ5bRN_k?O<3@ZRo ԞN}n-S ,W3|j \Q B!r_xd~C >Hv{+ H]ItⷆۻiJtVܬ}3M>ޢ @ZHl/m/}?6B ׷L dM?5]m]Y<].ݓNuSha~Y??,L]Yu$sVt{?72FtQCl6HG述pe7ն́Fܽe7VsZOo7s+WaLxoLbgC߿t^׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^}32o~M~׺ >X0 zYݝ(W]3Fn9Eb6oGڨxh1s>˰ɿ//ekpu-6[oiXm070rz-;Gu_mucxu~ܮ[e{xD . TnJj\&^f>짼#=Ga{M]_q0AbhfjjD(S~vfm|xz9Oc}7/6ϒ7h|l-ظ]';c(zJW~MzcwtTxug%im}SOrgmVݮ.]lfpzxPHWWV7Xm6gfgx㰈ai>ug~l=_{'_.<{#; 549lVG6haj(,!0Up3m˹ ?7+6ܯwڟ_˯ֺOl~g[l??,%#qW/q+W~,1s?9܆+t=Nu~{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~ߓ?-'7{[;+vgew/F>uu|STAMn5]e˾ƚ|R{ {P󽅎`&gWk=O- p \ 9hf4̰#]`?b3;We[[WQ㷾7*鿉Me]MNjܽc޽׺]CD4)5[@.:kFrmǒwWnNH)gwU}.C")ii{*r\rV 'I>۾2ύ0)ë"+ֹ17ﭱs?Ů|9=Ӈ_γwOBv.۽K>El-kvV˩wK}NaAsY^o.a?Egz Lahgn}rvQkomy*Z6aXA924̾IEwCw'˞}Vo/^/_=?ml^\q[c{mU0d㢿v>u_w7k/q47|0{v HO wݽ2l{|L-}GxtN^&̞ݔkaM<po(Oٮkgt[37\3xEٓ^K/۹vzl4װOS XE ᾲ+ڽc_vfKgbl^n>hzڛ*MivV=0[f!'^o;LwI\7La`aU5?q>`b-mv'~ߧef>6J/8ìv&.Cݏ#Te6\ <m0Ռa8 \-qË{ Rϥ|]!=kf."b!^<AIH7W׺u{{^׺u{{^׺u{{^׺u{{^׺u,+=s{g^ i_~~{ߺ_׻N`u2a =~)u+y??9pLC}g::u{{^׺u{{^׺u{{^׺uɟ{ n?Ou1&L7%${^xƇru~{ߺ^ ݟ3oQ|I++vvu>J=WT]Φ)bYސ` 66W{͡}!OvJ֞0`%0j~ߟb!H1q$V gI qon?:];׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^׽tDg_pgU~ ?BhJ^{^׺лN`u2a =~)u+y??9pLC}g::u{{^׺u{{^׺u{{^׺uɟ{ nеY44TTT <4j*&`{~ 7^ٛ+ދrdx~YZ s}ٟ77={C/XANЭ[EMk(ꠧj9[ߺHM՟:@ֿ~{ugN;oߺ^DY>ӯk׿7VϴZuM՟:@ֿ~{ugN;oߺ^DY>ӯk׿7VϴZuM՟:@ֿ~{ugN;oߺ^DY>ӯk׿7VϴZuM՟:@ֿ~{ugN;oߺ^DY>ӯk׿7VϴZuM՟:@ֿ~{ugN;oߺ^DY>ӯk׿7VϴZuM՟:@ֿ~{ugN;oߺ^DY>ӯk׿7VϴZuM՟:@ֿ~{ugN;oߺD썙>~_o׼WK%f G/sciI?o7{^|L +{!{{^ѻN`u2a =~)u+y??9pLC}g::u{{^׺u{{^׺u{{^׺uɟ{ n9{:'<-JqU*=Wh?U5 FiV:Ou~Ψ] :uq-:d[pwov9fj6jg@i>)c Gհs_1ppЧ5Ǿv=77vQȜUaѶ:z]=чr| P\^꯻OiU|ź?vh__GpnNמ-ܽܛ?'_ct^.ޮu=-q9 4J9imv]s^wz>lc0gҴ@gz!cӻߔ-퀭94_E 0A0?Xg1y$0uƝXݭ{w;K+kWߐ[g;/nMaV׎0QVݎu\cOOcyo0AxY5h4C o]Z? ~h!t`|4B|яCu|Ǽ7[7zgw8 v?vߟ?*\3nA~١Iacp//ֳo$C91(-MŞg\qdШAA=LƇ0Cwq~iO9K:u{{^׺u{{^׺u{{^׺u{{^׺u{{^2"Ϊ>׺>&̅P֕ѐ׽uһN`u2a =~)u+y??9pLC}g::u{{^׺u{{^׺u{{^׺uɟ{ ns.'\/`eq Rfh1TfnJjJl7̅U-? mɿ{;Yk=^m=)={rCcxYYk+1J|=6{1~Pg6nxSGϣ)W魫6lR_ei{7QVVf3to =M7u~UWIv~tX6V/8Cm}C7SCwvNl 1lgSV)Z)^dW4k cyZڜ745 Hf#>+ #G)Z@ao ׼+v$տ&z]){WUXm\|H_C\5bO2Mۖu,X&&!a -l;e&o?{3MJLk՜O7뙧Lsw1GY|2|m.]۝s3_g۫nRu~[{퍡orkQUd6OG?rrw[[idža('SDŽC9G+Ig&k3yX04y) Mۃ1}˓9X݁c{gawGTAKA[Ӵ:?:[h;nsxS09Սlfo"ױx7@ D!&xCڬAe&//@+)0LijmQ9"ٝ_&o f;rσw=U>Zƭ'qn2(َ;r`%݈\d?+9Bϟ@}?ޯckg^}k6>Oce{f?#xX?_Ì)X/{kՏ>w7Č> pQj|}RzR NL,~dZ{:lF'SxBql6Y2/A9h}.F'n/v/e6;l :fqG0*ѓRǩ?ƿOY0y?t hwo:sO-%hNeEKCZst*{ hwo:[;j0ӿ2ŏ_F/{ hwo:[;j01o=DGF7ozW>~d0׿,ϳb4޿U F7_zSE?1_?*{m[{O)y? we??}}Ѷ-޽'2şWF hf^}^v]{_?+O_}_omuw>_/;g. g}ѧCZ6ٺ׿z/p^W>!~W-oyO8`˿+Yginn<ދel0׿,ϳb4߿U F7_zSE?1_?*{m[{O)y? we??}}Ѷ-޽'2şWF hf^}^v]{_?+O_}_omuw>_/;g. g}ѧCZ6ٺ׿z/p^W>!~W-oyO8`˿+Yginn<ދel0׿,ϳb4߿U F7_zSE?1_?*{m[{O)y? we??}}Ѷ-޽'2şWF hf^}^v]{_?+O_}_omuw>_/;g. g}ѧCZ6ٺ׿z/p^W>!~W-oyO8`˿+Yginn<ދel0׿,ϳb4߿U F7_zSE?&uNoׄq;3l㶶w;gutNKp9>{ q䩪kգw#^zzW>'ls tC?¾ֿ7]e;ٕyeKC>Gc6.!Y}?pܙw_o6:S_ބyalF'o ~|?\h{ȞU[`mZp.{:5}C=ջN`u2a =~)u+y??9pLC}g::u{{^׺u{{^׺u{{^׺QOXl= U}+V.:PEs)rںR/?t_ĿO}e {_*FWLvUvM+j6OV|f|nf۳p>79ۛvwvNf W1{}f^}>6HV,![^L|ܢ`{ԬҤHBPn!U"f?CK 6cقxPU$ ͉OPvv8;v.1嫪i}T5;o9cQQKOXL*D$㽳;̼wsn<%13#?;Jx=z_5+Z:`Qc>Jt~g{i7c; q8l;1&zT(PJ 7nf^[ rˈWTsK}FZXml=at$>}Py{}ˣϪVotM'9ˮݛ>u'a>//O"-Ӽ7|m4]E:d+jOYJE7[lۚX]R1qw4Da=vpDl[{7*o+Y^[cYC 3,VW9>gu+3=Wnn߇]kq?&1Vav*l/}C5jom r7?mwћzeMC<ӧ>onG^7w=#>:w`6ha2Xne;OhVm-pK3M|{%ۣv .-e=r|DMdA%+7_[i;]OI&<G ɅŦ@\ ?Z O |j4# (gۭzox?_t Byc+ڟçgdQwJl=ޖ7swZJ|˹+tTT;a|vcMS߾k_[kT| ai (Lxߢ!R<|E2mvZq;^{<Kk*@>Wg~TE=񃰺d/:C>ۙSԟryIl=8sTSxc ?A 7!fx| " |`o֞JX}a4!>7D=F>X|m9c}\GSoݝ7GvwdmʺݷQ}6: ?noWu A3b$Omk QOOt8z";sm27BQT4ޔ;ߛw-MǸxliCoE9ltضg4w0! sdz#x4ǘ *![ w[ھs/gvqb l0i?|KݏMћws­t~15ݝۮwq=cU?t(vVJf*wNgjeeE<\ƛFgc}/Ӭ5˧f !Y\A}%hCak/xOC_]\tun-Ek>tnγ펮Zta8_[Q>)ܨ|]l0b۝wPw<O05jA oO}l.~`{LJBE'9Qc#t}ן]jtat~ݴgo߻«xڍji-[[r6^?x>90j'0R0-zG _x?M473?u2|_C{nNӯH6g.vH-Aӕ_ t{ͷ>5D ݙ)O,> gŜ&qc XRoBf3oCAza?s(t9 *:|YIUg^_#:x_׿gWǿ}2/}H/~ν?=_}{GuULR?_x~eW_^_{{/ԏW3߾׾g^_#:x_r0ll}5?7ʏO͟ {_;U ?E>g`?R_"χr*ʭҶĉ=wb>ֻN`u2a =~)u+y??9pLC}g::u{{^׺u{{^׺u{{^׺QOXl= U}+V.:PEs)rںR/?t_ĿO}e {_*FWLvUvMy7W|Uۻxlΐ띓06jwfە=AW&%2 EpTL濼~'g-OS%F11-窣ONm3qv. Px-- 8}f۹zV΂gJmqt8_KO//S}nng"op=si1;crae/% loi#{m{҆ѽHH?Ǎ<0| Ґ)6rǬml/+y E ppO`(]ws|_Um1ctς{_d}=q'hm;nlOo9A7ueo9,!l SuL8 ?X\!ﶭu<~П ;7:{Н9՝];t^aw>no[cxt̊ ϼ=Óxno =8-gk/"3ax|=tO^4`f?LhgЃ?0[ןwoY*E;1gVlgvCܽчx ͊lȬ\e&3%6:6.x+h鉟m06Dy='L@/D?X/s?'>x,%%7 xI_t\W7u(/6YN~譛dt~}+QR+;lid5i+fW~칰0~Ila?ge_f|oǘBa]nb{~mke߲?zO{7k'?tkv'F~u auG;yx7ϫsrek1E==.wsu}th Y} h CbkS+W~lۿvoVDJȀH40<|:-,~66waO_~\ٝk7V>퟉#vF-n:Ο;>߬>u^J>.}Ѿ{SaWo^cu{+bvc =gnsO׹ǽ+7"mm=?[la~X>) ,vO}uzwzݕ=1vcg7Vs{ .Kr=qˋhSTd*~oSڊbm~PKM}+e< {)okFAz +sw߭6_ƟoYm{,;e[ |/ߚäKFϊ&>b'ؽ[?_n:wNa̎O?HϚ?ٚZ衃9ٸy}ldžͮ렽&y|ώcvc{?1}1sQ_ǩeX|]9ǙE ,l 0aƛC;xm{\sKyF'=svEO<>{j+t zC'~<J1QnfJ#5O*۬6< нv7OO ^xNub ?&/wKփGO`gp'03Sga jfWp=6ss[*ø?>/gWw^\-߼4>EASAzW'>}Zoc6(<|<׿e%,sm[/m?bxVa~7%?''oT*?jjmmX`:и./b]xڿ7:c~{}鿣׾׿__߾?{~{}鿣׾׿__߾?{~{}鿣׾׿__߾?{~{}鿣׾׿__߾?{~{}鿣׾ !gfOb~h[I)|t6PuZ{d//D?|S؈/gUϏgV?[oV\Dw;GP_׻N`u2a =~)u+y??9pLC}g::u{{^׺u{{^׺u{{^׺QOXl= U}+V.:PEs)rں͏/?Oml.noy&}{]򪟽>ܔ[!8&_i9C[o"sgw߽^{Ϟr6l|Ƥ6VYm™L?UH~nugȍ\ofoP S>1m6ԔUU$林]jݽ ʷ4~+ jRı$$_F[7l{w-%`OA 3Px67%{|i\[Ls^vѷ+߿o$OdGsz;?^_+%^'?Nܕemc֏'}~v^w؟|ѷ+߿$_?_d߼?s!׿''?mnJ2_ >wOz7kuw}< WO.&Mx?b{b!sF~/tˇɓ~^6^w؟|ѷ+߿$_?d߼?s!׿''?mnJ2_ >wOz7kuw}< WO.&Mx?b{b!sF~/tˇɓ~^6^w؟|ѷ+߿$_?d߼?s!׿''?mnJ2_ >wOz7kuw}< WO.&Mx?b{b!sF~/tˇɓ~^6^w؟|ѷ+߿$_?d߼?s!׿''?mnJ2_ >wOz7kuw}< WO.&Mx?b{b!sF~/tˇɓ~^6^w؟|ѷ+߿$_?d߼?s!׿''?mnJ2_ >wOz7kuw}< WO.&Mx?b{b!sF~/tˇɓ~^6^w؟|ѷ+߿$_?d߼?s!׿''?mnJ2_ >wOz7kuw}< WO.&Mx?b{b!sF~/tˇɓ~^6^w؟|ѷ+߿$_?d߼?s!C4S۸=%F;fo; v?S}Waщi[6}6iڿqUװHH׸ςս()OC˟.n?/~>=C/A `_5:wZTٽwgfPn}tqە[tg+E6}v_o6:Sx9~o쬿7~|?\h{ȞU[`mZp.{:5}C=лN`u2a =~)u+y??9pLC}g::u{{^׺u{{^׺u{{^׺QOXl= U}+V.:PEs)rں[3u׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^׽u~{ߺ^gUϏ_UVա?'\tj=zkeepasshttp-1.8.4.2/documentation/images/options-advanced.png000066400000000000000000000656451306306563300243260ustar00rootroot00000000000000PNG  IHDRrBbtEXtSoftwareAdobe ImageReadyqe<fiTXtXML:com.adobe.xmp -'~gIDATx} `TT_E<0/hTh j-*&W*DmEaUģMP+P5FPU+h?;;;;{}s|g~_nݺu˖-7o޴i3ϮByH;n7nرQ}~G}cOD\r7gwHp"4H1N)  {gTx${!Muh-X_rdZi_-Eii5TR*+{IK= 7_?h]wrL4ixx2 /\褺SZo/ש&ճCY}̟fX{JOb'FXc7I\ӬscfQ1e 8sS, z Dʴ { ɑ + 2F4y_ Ijy]G{ %#Ol]=gA~19ɯ{2&0 G]a1)aX?-on=Zr D.+)>f~ >G  qJgU#VJVՒXڰ%懍N_8J}t:K"/alRs>Y>j&&N|9o'ƫHD i30O,|q5E8? #' *9FG\^]L uo``äp}h;\M7D/e?z{&MWEL:9?)!6Ϳ+ۣU-2Q4ET$m3DOh%% Ep4VZ(ZIJ1%Gnc͎3i k6q|l^Iŧ5 qRny_8E?Y$"2A*hLtZح_ óJNxDl`} 0Q4w1m&M6Ma ׭rpϫ[&)ӸA46YCc?،F3 PlvhcY8wj&˛E4Iծ Gnu2fn3`GD'(}c #FUO.#4(Ϸme/0hW yӆ&GOIN+-#!lzLM >~׵cjB'bE"!r!,w&.5ED70^yX7ݺ$.Îcd2tH J|A-Jp}ЃN41n:SФbIGX7Hr8kٌnt a6LV 9cȆkg?bއ^_yV\:}q6<&d]Vzq/{ێ$:kwvU38Y ge #BC"gI'u>~#(aŋS"`C%<*f&郮$f8 X#k$ġ^Ql^t2h32hgp+3-dH[SۛYfvE}cPQ]d8"^6OO+7 [h30B gYbӄ-ᆳ4#hf_۽f5 }"_?YH V׷?.|A '[/vbS}ʒ5$ڝBwyi]z<4S{ *&{vjpVm@fy"3*NxlZj*憯aTi9 8ɇI=='6c[Xqnν_ 8((<5C92K0%%Cbwy:2˘Lf}Uf fx"H׌RBKU 5L\zN#7DX0#xdɭ7] rh#SyXi80ٌ-t͹/rn)C|׫-1vqn'nG8{-o{bylo[[+zތO.4s 9R}g@}H|(sIeq/,M6smqCwmxG$n<|Y, [xycVG& L)@<I^I@HJPɫ44;y f%b#%DM!1-b㱝[S_}}͗\NrS>5͸ksc朹#2M&?xy}H{߳J?})2W~o)D!5_mUU~7SXK~-k&ld&C<7܀S<{Olظ悃˧{+64F-G}QTG'q}k\p{SM9bJv9սf,xO]^=zSӏ˟@3p>+$+[}g?0l%>KN!އ_c0철ͩG@sKQ TL.*AwƃV¯_H%UK+2!iؚ)BatJGK9DDhlqX+-SV[J2lld,*JұL?Jٱ~!-ٌ/Iz0}Cb#qjb Ie"IN#0vQm3=}aǏhQ럸۞}˓z#կ9k+P=ϹgֻgOb6||~ߺ;N^m{,q_yV'YXO[3lkI}O]FqZлgHzh{WmaťG}g__s=~O9uw'p'KWxǚ>y}s1Tqg'y/{>zV\^}}~뛴􏥏v;zr+ி0}x~IdL WN-LξnqSE2v:cJCAqĚ<=cefV#$l>]FĎqu!ʤu jN@߉2HT+*FT]ӒsP&  o4εM'}HJƍJy9"F(9"12$)*%9Q2e>W^ߚtz董2Þ^]6_g} Wi?x)?fO'8WO έ何'޵c#!>rzr;u{X,zڎ,GL&Wr}ehs3IaxjG'MiWCgϬ*?q+AoXQg[zϴ+{U|8mE7>H/aЗdM}RCn܇CO| &*t2F%30bk" b>sP-kf0d,͗v!A|06oƚ.×HkN ڦ~L@'~Eƍ-0 i'}vNHEE|0}B!5Au/T֌i1t.@#FIHNsK4I4?CzCSfgKާ +NY].Bȼ';.ۆu? 8e4~J\G a_WݳԙIU֢ }+-њ\V8AkF)鍽 I\~5-G.NZLc?[+m qFX}angm}X`1P "OtꃎbcV|Pi5vgqN&+܍<3,M"1»<.Ys#0#64ˆNSl7 1$Tғ1eI&N{<@V|ƑzJr*䣗V+]<`zlw`kMK/T˻Ww\/=@߾Jnf7ʙX$M+ҕOOU= +)nBkG^?x%Ͽsc|PKZh{]UcAޤٍ#$z7Б]C Cb3^kA,tcc,v#$nMkXr!zCNGw]^;XȌG溉_?\7=NzPp @qw,kP 7Ϧڗņ 5o4yPw LkC_& >sPif.jH侺T12E,9j4sԐ,u އW>e{qJgAc$wUw$̗hO?{vE뽦M{|VkHNpeBZbj^sbÓU՞۫'yeK23?zD{T$yHg56q$&7ғav'NΆa5̅DjH)@MZXwܗNs=.3'CV~Kt9IjUfe5r*[u:[BxIRS h.w*+cqW6G \+NOL_s8%)LT3g%q _< [>bU|Cˣ3?}w#l!fDx/ 2i.NX{e/MH[+ J} {ܰ0ctIfCX24a1R8[݂ZF5-HHo4үE}k&lV0bU4;']diiǜ[F(ٻ;rJ {39E+. 0R]ؠ; Ďi)=k*<u2mzv),̽塚m^-缡eij1c bP5EXQ',=f3a$3;q٪RAx3CZĞ$rmPh8~rSGm3qG>^LW^~qkoKh43/ҔWؚ?o'HC1?:LA ̘4G(?82}iCF 8],Obۉ(F#vW(֔HyHE>u2\HY*SiWiN= I}3uEF$)݈Ƚ<~O2Pџ@]jkZڥȶr,?rBZ☞AmI4̔A(N._.@q:76$;:2:O05}05.A+MDX1Ht`EeZX{q[I+,bC#_0epH]G9Zĉ~5ք/)ް[ / +y \XMbfܛvAj lsbj Nt4PG:%  kfuz kGveUHd ƃBi11XluŖk'F,Hp4Qa q}2,I3nU ة s¦t` ߐ[Ċ%ttyYXB|ӣ>9C"Ӧ^cT}a44sپ. U&Vul*+4/!uq1v6ܒ5>TV IwcAwhTkn5m$6w6} A]- 5ƋN;9cE캮K~|N  5޼ن;o:Lh>a3j6)q%npmKGa$"S@ S4]`ۦ:.inʒN&LiӦ JtDAΘ<㏳ Pr/DGD@0ѪW4-:>W]Tis v2IWRf@elol#PmF$4+nEZُHPʔh-x"IkoΟO}ns;%^"Qˮ\[حM7ݴ 0esb0Vy-BȭTos e-fx- g+/=^IG^ zog!?>D=KKNd"#[lpӪv`sހ.Zm­j/2,JFFф`:(M>M92h@ڙGoce"e4 ~ /OP,__ʠ`c>%5Qv|@N^\@,8|@}%Pz&2 9P<#C ( 0,]HTpen.M`yk ܒjPѦad|@*nIZwnJ%`$F0BV_qSP=u^(QM7J>Hs0>$]AM[nwg-@ɑ%(U,+`V"d@Dx>IDͽ~d$@ }@6}OyoM6]>KC9!DǑy8=Q#{:Ow[#xxO5 iyre0wA,/#O#j&-Š̡]z䊕˙U[?Y)<ٕ.ĥm9weaa-c/hz R~/B&D o[; S7cG؈QDt94uE˖!hn,衺nBuu(NjF1}zYluo<$|. eV ~wK x|]W|bUOJlFM| zDw6l1rO*8Y#lT<Ese?\zpŪĊ` òњȗf⭶N6LDU &DWM^C!PzR"ĄԊ b;4(0G`c> "CX3h R5!l0fc@>Aڱq& "B5b c c M`b9@i^q Ca4@W+5q$a[[]#W.| ty=ss0̆HZ;fA W \CGv鯹f{+XAX@ W`P`[?q|s#{?=v5mMh/Ѵ=ڗ @NZAk,~v|'F4Z窵F-AR(|֜p'Zu@ dw@V0 _'L 4pݓ<ϻ'lj)yg2EEcJtWvھD8z>Zړy׎,h$ |Uczϧ>˜䕝/<6:@çɑNk/~Lwi˧EXձljŋ f"t wĴxjܾ˖Ohs~ʢtx-N(-.EǰkG.6(_R f3=?bOJ[j=' ׫;#HQQ(E*Xc3~Buza4Cݕ4Ar$tπg5+VBFlRU\29&pC\4B E(DcBu0M(afU=0u#r}3 lf:" [o ?cVggm&:`Hl"bE#!TT)0t5TT tUUS2UА)Uw|A?f7z%GhBV(cRR<[>œYMØc]0fDWO|}ˮr]Ǚv(J΀t5ahԃQ%MuC3PUssnfV0(˹Ve۪-jST"1eң HNCbzViל-w*%EAe zyEjd3t8)>9V%6l$oQq1 jKcƸ1`fԐ(ͽq„Xa\Ԉ㟚E1>m*uubZ3V>hLfc5(M]M8BE;ۼ):eQ^p*f)ђE2ә$*e xg ĀDp^Ӧo|h 709xhOjݴi7 /,k+7rG~ aph@'1i[?~^o 36Rz|_cZۦ?ҘC0 [Fד%m|FdY_dH;褋zџ=ژolAق&f;cu lv?_ /< #YzIW@q,\}&&Oo/Q>]Cľc:.ڶoN~kfC^q^4 lh15:~Zwsܶw\V? 29!b*+"HS{: vOy=X0_%G^]F/z: t E>!Lգ 1|hi͋ٙ CxK\^{A6[_ypq0( r~xk#27Ke|D#;qhwJ0 eG|-3oD^zp|Q͊E09|m6[vb'1U1q;?Mc1A7vO#Av61dx\ɐs?_ =Ĉ2SaFQQ&v$1sok۶Q>!{m8-3Vԏ"+H-M8y$L=&I”gW&'lܺ ~.lrFZpe:aRO6H[6t R4@_ߛƸavKzWN8o˟pt]:`!xjʔtl f#:}'~_UumnhмbD"E %lp:nlakw/\ݭ{/~yH8e!Nх[f<Gx"M"ǕpݾR79=&:|mi_\3H.1}ϖe\HoϷ5!B YUqMZg9QP qM#'u-}M*%}jaGr8Np;Xٴ[f<ޚr1MHHgRMfsX _rz[' 얙%؊`;kBo6c|荻)կ&2@2Lm0>yW=^:.ܷٚ8M]ç^ Q9Y:슍o''S'ҥφ){l-МMqjwA>m~AT @s1e htX'ز YP A TCBh3/@?M3|DA  \g({UG UP$hc6  ?JTUDl$a͈@J `d-:``I_Ö([ ,DQI E"cG; RGHd@ql$d8:C{ք=#?Ts+_ݫ@Mc ,9򂤐 )M՗="Hʟ Sڋݧ|iEQw'ѐp6/Q޿6;ݝ]8[*N7la u ΄VGc -l=|!@gyI%VE c)U3@ ?F" jT.?:Ft$ehԫ?vfZ*x}~nDnthDpI%Q ' 6KG #쑨n:<Ўݬ@IIfI-۞? mXoذؿEE&TH#h̘7-&U"\}0Ġ.1x[ؒQ⚐=K[Y8[iVXȫc5Vk#U1 Blv!)xi,Hy9WN*B L2) _(jYȒWq#DO Uԇ4ҧ5mU|_?Ze\-Aք8r@ւGW՝kzuaG̜2,gW)‫vX&@"Y Y)YY :hKQ%$p.]xgDGDueqz8@v14"'T;E>- ]|^;h:72tXvh 7[?B?;<8ɿnZǮ+Мsb3f$wIBUj8jʪ8nˍsq288o 6tn;'/:_aHr:t48R4pݶfu[N9d3R9NCqwqT?Yݵ i,i6ϴG\؜ZUC^6o mq;Sve.9A9n9_Mhzh X 8>Zߢ>c?bk `A( G .``OQnzztWotp/|)}/x{r͟It9/9߷Aέgfn$i&AHDMɻA:KbK g{ ꦼ\׵g 6<:y;\|G 79O_C~!UzdmPHloi1| Fo%VG[seWpAـل3t@iMsocdY/ F ^m*:)^.1t|џ|cS*N]'TII);2j{ԝξ֮>"D?r2ڒz=($Uyǀa}p^s[@F?-IQkik W(9IU<}\bI.L+'Ȉƒ#Mo`Ig_C]MEU@@_HO#l`$m,_tP8sA9]& cBPQ S~mHy<|?}y~ F)\MYo>^J 3|A[^é9ϦK/Y[-fŠ7J;zHGJByE &>{֍_lKmsZ5=HZ\ݙaQ"x=ol ̞"3 V/ز -qG]8Z?5N9DjlvXo.E둊 }m>`JH1u1m}*ʧM/V\]5vϲ n[wauyCJv)\e]O) @`N# hEhqq(:Au&ȿP!B$2lI(gpIFc;i2M$HvO42 lht ǖ4lزҒ2f"ֿBy TH4t_V5n{r))j0=S^D͋i7 Uko{΅tX۸dWI" B^XL98yVЄ{3?+I<ʖxn^n7Ŝ&Ln!$)9yUؤm >Ѱ̃-9R`QgubƀecJ4X? i0[\w,Kx&LZj릿j*Vo%òHȈ1i4{( J-gr[J뭘TBn^K_kWkD?bSVS&1uBvɡXZo]"WZ ^`{oxiZ)v%FXoH/l4?]֐Zؼk c~n1H%k@)?xFqLM}cξ%N!#\al#y9GOg 4CBT3~ƅfm|u${ClSfon _F Pn,P`sm>ҕI[zr_!RY\IuCW57Qгyz ݵ{7 ð80ۑҒ 6 ƌ ̀EdJ05ݝ1 .wqTY(i,rKwfx\ ]ҕU^XkQH*>H5Z]P e5\Sɒd˕,Of |LbK:ʡT&HyD8d"\ ;+pT5mߟ̜~;{%z<|Kkk5!*.K/ qM1;[\},#fΜ)aHmћ[BaThS R $+8E8й"@{z6LO r偕HG;A t@,w7/0 H#_Bˁ@.35}_ EFD [hϝ70}]; v}quN a@Z{eʄ|a/w,L7s(9/T€?d ^E@^yYŤ.@[wfx;|[uJ7=\ǖ>.=\uS56p®m.{!Hh~=N*\1i~ ֖.]1`R;uQ\ 9U-j7=Q"Nt 7>e} qݿwlKE6Zp;QV;Ro߿ܻ-mP@$ȎOM7øA`}{!`IP݆ut)JvԚҿw[JO0Z4uw񔻶"[ZƉj]ruQ5A6Pf(8Bph4+H|o )ɵٖP©{X f={@X^KLZ]R=-͊9LM-;JU6/k^@ᡦ71ޱylޱ[z0>= g@ߙti+ sxy>-/$oLnXKZ&. jgp)oQOZ{#__\35r{,\s1ϑkNT.S%ܟ:E )hIK $$1@z$(b Fja͊ZMMf~G"<]ioil獹꾰_Z%NJBwugSkӿ5m,*}TXo_{?CCnAʹ !'Aʊj>{7ʀ}^_˚jPEb;/>#-zd," P,wY%N+| 1Hr^}e.9lnF<81+. cn>ȋ[Ui]VJW !/bsp0bEm3 0\J,tI5ʪfHеxA$-/3#,G.>l$lu \B\hN=3aD"@NAAG&4XP Ao`%d5~M}#_AB<Mmx #D f$zB\BlPx$R'+  1 x0duK j:H3 e X%Yoh>|e!%n9 \< !OJΕO[`"gFj۹h+< |X : g 76s?>yZa}Vk ]}X}S<9ib>)V Pko ̨o}} 5P \?ΨU"UP<^$[-Xd7mɺ/c5Ya8r`M$c0+`>C_@ et}BBPV;ا@XJZZ/ЕjsGV/S:}0VP|!Lf|}]ܠpws=J3ˮI+F>e`ȋC3$Ԣ\mJ1òk`20.H7b@G—S@#]OP[Mʠ;ѪrXӓB-=7rRI†.+-,<J#-s  }2U XT"Wi>w/796W *bm# ¿Բ u&}(#^5.v՞>Qpi6rIU2^姃7&D Vp)lN,wd`[@V8 `68+BUS@nPG cwX/9:VPʖm#.!:KtW%G yBD[s!d<U%5I[h>~:̶ހw4 U,GܾlفQ `B P z z:7;7_ nkݝ3_v(Ѷ%%Q=G8rrȾ<یGI oy SSȷN?z0xanzx;,G^> A ڹC@asŕUʾ<R`,wwbsvRA i} j,WЭZ4w4y]腎XLkfFy ww:}+ZΣ;;v3BB@a<#X,TLWd+@%(As4]JBu/EU>'w$32ru;Bb8-AډUn:vŀZod/JjXy f2=΀4 kjXR0TLh^cp#+otq6n!:E;dގe~O1?M 0osq) 9Z wUgs4 J0<E3| 雓Ћtc )#w3eb 0{-I RVD#5'=JQE` c f5s'74'XRM_1πOA gO&^ց@S3B;G+ XtK4;T6 BH},7 IYMERXT/YSFSjo*D.X@?RB*ˆ%AU!@ Tqr~?MA#;=,Fq;cK;R7="> +y9`Jw͒$}:7THϥShJx? 3 (^!zH?~BZ_7 35b@A<: bHQP |>X֮ CzOF(d4 &FޙF&#$1W>p*;_Ƙ>i/C:;I% 7K]VrbZ/3El ^k1QZVVu{;*[ħԓKSt :'cK9[XN: 񦸲*gx^6X ΀ʧYЮొ>lVb>ز0PX:s ڳ cA{XTЃRA+ۗ)3;YP (t4:ݸ.jickͰm-wj)W1('?^UgȔ93RA8kMu n3GT\ua䀕gL/l;U]? knz  G: `@Ba@ i9 xM@Bg@:a,~[P ͛7@FB@!0@![aB + vzUq\B귻^|MTPV{Ȟ~o^P)))p90 gZڇ%G9~UM[?s/&#*_-+袋&NXPٸqO .!jd+nɗ*ߵg KY̳n >VK˄ >をnvg,^8-8YLd+id؟M^h'E&'w .O M2Ȥ+cpvfC V0 )8lP^wd2#pܣ4JFFZA6 ``Gtֿ ~?S|p?:}<*YX3Oξz6uo:Q=҉ڴ7mL8XEv7T;Z+^[~DcW5k 0؟N3,VHOJk3:u~e4j~+PY>'LZt@P9-[d gayGNZHbfx7߼{ޥ?s.8c|9~w0I+a=̷ecGI2۶mdi܈~+ٕ_yr~ڵǒ@O-ğ]jyJH0nܸ2& cB><^zWkW]A{^|e%oիWF {4Rq좵T>$^mR N눧_>|]Y__ZSg'LvS7kg ]],=i2~ʟBM1' W y0;=L;޸!iӏaОf}l-P{_3(28zr8HSx?p7v'500?pYo55'Ќ2ekf\j<Gtƴߡ4jǤT3V\qMY֩o&E]Vf0--4.|k]mٿlG8|+pnҐm=5!S3fUVV:/gU}.4J Fd4h#!~o(:x}G*# < $F+8*i0!c z/\y ~cr SR|EEE~)Sz뭂ԩSIIA?׫_~l*'WI͛W^^^Pټy3)8)zYӎ:q׳k6l-&TR{Ȟn[e\pvے%K ߮z(̛79@N u|cCf@a^ 9 w,P   lOuԑxHf~'~`qsN;-.}> vZ&׭a1tE]pg quHw5̼?$S`D,~jZѱQ`;læm[7ç_݅VHS*>) +Y/w-NוlEXR˒agSd_+[n+w݉aHyy-|дF l IҚ|y4jyKf9w6/!zmu8Mij_t5u3*u]#Ǐ_o!̳G:j1]R֬li#4d}.i"pug3iH"2 `PL+%Ħ<ƍ7fJsLK>|ۧVY\C"Lpyj`pNG{y|= ln=:RdUn;}z +{h^z͛ׯ_J47_zm߆{N܅ߤIt?F4IENDB`keepasshttp-1.8.4.2/documentation/images/options-general.png000066400000000000000000000700431306306563300241620ustar00rootroot00000000000000PNG  IHDRrBbtEXtSoftwareAdobe ImageReadyqe<fiTXtXML:com.adobe.xmp /:lSIDATx]`TU־w2途RBK" DP' ʺ$JKq (J`,P,$EB@2Wd&er>}s9_Ϟ={̙ӧOAW'5jԨiӦQQQN}N:wu!S32F՜'br{ a KI;SuIUWL {`qhl/)md؛a_mc_Jn7fbpї"Ýq5kkv,]5}n޼yee%ǀϘy۰;;c.<6m)[M|F "LC<@h@yMT;B3H9N`HH.19as%=$^#JT"L3] 2Im*^!g)X8{0ZRc>er3b&)6>>yʾ: b#2i ky֘51ɌOP6ʊ߾yᧃ!XLȁo9f "&JŮK䏑[W?zc%AQ:М(töOG o,"72bE4A"Jj2oOpJpYD, ?pf""$J4LH8Ռcn,2*0S1c(DҌ^($că^]***.] #(Dru#0ح)?,)-)+*͉_=_|h;M+!pW!@A\@&vD5_cx1V dHѸ&>CQ’v'󏺥/Šf%LhUZ[қJr!>k׾,xP+j "I|dɃL aA1UB4d x ,CD=K% 2Bҹ$ʭ Oˉr "A62'A݃JJK[R '|*^$˜ *xؕ(!$K&eŋ7}PNܔ0BER3ГLPn"6,u^BZC>U.O R/X Xσ<# "J#XWȃ8PA_"P"@p+38( \Ya=yYaAl1cyXꞜ"|,a"9H蔚LHvW(ΰ$_Lݭ*/_F0 IrE@|n[a~.W?@ US]bv4_Oa*`ɐn̝>n^żNL[! +D"XTd4f$;Ȟ-ψ뚙 σ}{7gG)r"+)彖3G'5uKR"l/*d@N'c4_$m㢷o{_NO/8ߤuw->sǾ|=o / nBW1#y_ޚ}cscA|vG?SIcnpsV=Q9P<?T DTDS(0K`T2ΫBOt>;^sT,fEڒMX~DWJ!By)*VA,V&I0;իS RI1# jvZap+U 8L2g>]R˶ϱ4D$ 7 ( XŋʕGNYuFW+VQ99Aܠ# Cκ4ա@K7PaO|A c a`@s,}VB70K$䗲#ߖ~GrglhYvӥ8 ukuUI+Hm$ʲXq-VthBdـOZD&2O nBĥʿA1+sD+L?+-J,rnXПo'L4N)ѭWa*IYJBlną@nfHWՎR Rx BѬ'S$\1]]#f? rӰ6B[d8zL"*WR4V̨J^z}#L?4;hcr7cuDŽɣG|2m-ٰ􎹯l(ӼjJ.'RDs[#!i)E1:BPro5^)DJmx|؎WЂ«\??ymOѠ}Fܐ7zV~2-j1pCܥtsZp^J y]ܴ_;F_`/վ4|Bׯs[6z?|rBe\"1!GYcnA;ųgd [pc5o֡[LJGvA&y@p74GlqE^~x}>ᖱAurNJ~t[VDN–V$^xl0i 1U{fxeF1zz"aᔱRjqojI8:[)?q5h횞Iҥ[׷/ǕZh>-"\oNg] |,=xݷ91|W=ۋͫ,69)mZYV#,/=.pOKLvYse/Qo[gwKMA7k"Z1PO04aY8-:nw߶\7Q4}w2q_EBe.iϭ}7ZHW,2DdɃzyP7Y,NҲbe^K$%nc>1~(F]\#lSSVhs>nWhlsex#P(rsܤ^ f#b$ ȸ]Eqhbd5],&M4*;?X9i4ּ 598CO\D١phty?Z$L˦caf qinT5>;s-[G4nl0AF 6 kЈ6hlx=u_a ) O⟽Ɲi*\ZtiE0NeWXGMO~>awcn0kY›D@(q!\-ϡW++uzrlXQ[T Okvjj EMb+GDֽ_ŖCY5X Mj*[˅4SE u3dIA:̽V+u m%c ?9HЖMNhsؗY躒?1ҩPMA$7+.HQW]#eƂ3\T~nU=Gn;yn'լO|*,}SU93<[1BJu(OUjnhFw5ʅeS;^b/Ona[p\B1qˬ&:/& Gv|yapjAwnDș5fV0F I%樼$üR^O53!rANOtq_ S[l1&HPo.VO+K^ucŜ^cv*kRAD{1\=q<xm=`V6nEݷ{*:Av/cZ r`V`_n}5)yy Yl{R(IpLPJ~N؍Ŷhz #:1 o@[O* 31Gʯ" 7ƄF1mkZ1efK0Xs@t/^UztŤ/,=D!Psio!۲.`:$blT cњM& ]VFzNO6*  s_%qPŶnu}Vp`Py7ؓ^0*yP4$z \4Ƭm> i +etVYk(s*^W/.<[8P}UwU&sDiS"U%[Nu& FOҡ n$ͪ[gHj4H1NJ\ug<$72(^,i`Qsk}!up]Ux1&X!B6Y CD,VMbEU~ySc`g&҈T؏V#VЈzI]ȴyxTYt&|YwY]-ZO3 13P0<-kejטhjH]N {M>y%0xen$PHn}H(GNe,P3|4Evj2܌4' kYH_0xA%сyi(aCInc5 yAEc͘ 62rV1 X68cNeFLT끉yM4bt|"Aux ./ԠV~p"Ƿmb0yl爽k2hmXf I=B%;azrP7+Fj=jj9AiwFͣ槹: c6ze i)C#PIjϚ QU`AY,To؇mT_NjPNh|ڼO7| (2RJ9QM sK$N|5I~bGC%b 5Dԗ%N ?eJ F sos4*Š|y;jgI 4'"~BP`-QA\jh̀COW'bV6t=PvRGp…ڟɨ(p@> 1ӑ)Jْ t (iO'E}BMP# P(hZ@EY3/vl5=60ຉW\1dQz!FuZڤk8r"MVV1,I]of8Ҹqb-׭^6jT҇ ;2=30IVج$UËxyxۤS+0 <;;[ 1(ݨ\-"jh>j'ܭ^mۤ&m۶ju1BgX!0$Q!\inf!~Z"\yfJJN܉>ZGWÊ:=<-.<܉bf{98B^$S{۫4JsGa4iZs*#}fH'L\ooRn~Ks O/}Caml={9;ɇ; '&+3C5o׫ٳ}GeVNۿ޴Iw?ynsPeQS++ѹo?QA})]=sOGRbѥ%d.:::PHP3d;6$AqpF(nݜZyzᷔ>A9 ]fADUud_+a-rm'_u}OݚH{;hsz7>"!Ox'FvyhxCHɵ+ntg?y.-T/QVgzV[nQ#uecpEE|t[ m{7>ܭbBO>EwE`@6 X̀mh\W^Ye^ˁ2 hx]@jMk# *©}u֕L!s@AvA4\gjP{q(D^C QbF*!`ˀT' ,4p*99W*aϡ.d직C_F5{9TRPrb/@=PEiPVVDwNFoOdgeIuRz:T=q#:hЪaBkdžwډsC/:N*TVVV%K@-QU ;"N{.pݦ-J_ѓV{Jg}c JjY} jfnl\Ej0ATom v:_K7g@/RVaJ 79_۽\C@P-3?l7k<}cl]45R0yx)~uhpY*LNʐO}~POZl(r/SQQ1G5mku8sʰ(}f4e w|R>ܵ+I_`ɂQ[''"(3ib" l(Y7*]uXD6xܸbU1#;iڬ4ҕ6uQ +4x^R(KJB¾`V8-[Ĝ-nuMnR%KixUښ^*35(ʮ}rrEYrXÝ'.JN*2obhOAmM2X%kV! yrO춵RDaV^V!%""@ˏ;˿ֲal0bZ:}yTLw5M)Ulg'$%{V1/ޚa[ڙ>YF*-RV6f٩%@@cgB|O:@SsWtf oJN +u, [oAnanvKWSK໦T:c |xMˬZo^fQZ9Fu~ Mfcmj|(U*.7ߐ(D{-il#>FBAY>Rrx(%[VHa3㏖yI&j*e<MM˺Dž,mRvR7(%iQP+4uDT${ʮ8"I!'A sMBB p8y΅~`'Ɨ,0<a "WFYM5%'y5iTI{tI̒u s"k1v‚U diiKm \eJHBDvZ 6jr1_$US(͞(/ɶQKՁ n۩W$تɟ'|M!{ʒt:PYYɚYvj Tjiπ`ǜ_`)ch<hPU"m` qB Q֗& =CϚ4x?wՎoEH=+[]Z_?zخ%Q^kh/H"yLg#P@ ,щgN!e&qĄ BXуZ ҟvYWqa@ Ka@CЂej,^'0V-?H AJX\B3!BA@ 1s*XH]_>E˱ ܯ7sLEs֍Q.jð:,^Fe'*S. |p` >>~ϷQ܁0lJz6@$/y;= P Pr'X|&Uv?{Ŧg+Σsք/nMR=fMsTÖGLE@`@Wd.l{p^|j^$>prΨ9EY"Q=gk)'Zhnup^ YW4u3'T 1w/^DQKe//T̚r{;, m ( ιJ ~OMvq4MMEZ{(-Fu d GUȒ\Ap\&`ˢAVQL$~,̝m4)P!/]_5lK͆e԰l*ӬAQa@$Ja3sC[$klHU 'g8[|5-}gE.U2wV?1s,(f󩸻LHfd9e1+HK3*ҁ,)! sSG&̊itYk%[ۭ{SJlPӣ\2 e>591B,?&46Tbf%@'U'pMOEYX3I͍5dKxѝE*5lYpg>$Ϝ+^v3L?h@Pza8( J4:)euXuh~7oݼm_P%5ۡx嬒CJJNBce̽D|q}iK߶SmW1VQHPu,.p`ze NQǶm+:CBCa!G7a6;[0?wP[덳J?ea0)zr,z@t^"e*ޔyt>V^988b֣\ ` o〲,(^j۩s _( 6kyߘGəu *p"",xˤBu:œ :C>ܣ{-ZA~c`e䥲3%uk8k7A V#81KQ8q@}aaT 5GQLS }'!hAU`S[E _FѩB\+35 q:C(Q=p:EDD=R`r+20PYKeP~<2AhC  "J (BPW'w =:G_k8y~!V[տ~ɪHje*b1I1?GU'}"O^ע#q2 7Ku_@|\LתV j, sCX-O!#F xlF6֝D?q@BBLi_/2ڀVsj9j DRY-/ MyLtW(vС}VW4k֨aèȈttGSĀnOv;=FbŦUoW+w.c j F)2u摨+,rö0-KbK yܰ߻@af3Ɯ%KVk70ϯNϘ}Uu_|C]%Lrz ܊d89|X%fUp- Z[ݤ'jiN(B7C'LMSLTuv|='"vzFZF ;C#je47YnGn1%¬USx΂,"׷EA[H?,*ZpE :EgllPGNod7؏PLiJaQ^A"#-ܷ p0Wb} M{y4%!y݋"r ػʼ+W6]pbCz2f&k6xkerJ햞RһL"1̃ ][xW %^![5PǘK6 D祻f~).711ϏMɺx?Y0M01xlBTy"r}[7Qᵡ !3pжSN,:"4m^"XrK26"Sb'B.WT ^vB C%!+%XNSN@e (0H\ Bd@*=@M@e U9~V?ʀ+*n"3`3]Ue6Jt?$nO9*K2ILّ a0p N) dd@(z29 X+2 /gBdO!e`-#\Ӊs25qCUXd 7\i+PO>ނ3#4zo,#2OGCW@$AF O[44) Ϙ~/^7.$6DY6~ "m[4xϵG]}۰_Ȁ 5 B*++n3PGx-X4Oon%ow/~|I3׈;J g_g>Ã柆\R ѭshDC=r+fRc۶~bc;u\E7uvT~*;\חPiz+/M^4ͼF}lMJA?<":_IjBn*>|iPTRk+]OP _n m)e_ԠԿa3 :jVʞ"ag1o~և;:r|*]=aeZȋtjMUHrt{S%MͰ-D{q̐8zrGds>6 Oo9.)9c3﷑J!²e}^(@ pC3@Hk۴2祻}r[eLũSHSsWtf oJN j~̱1|QVʪV|tbiғJnBF_闖U<` ˀH6Q_ӂ 7ߐȻw#p8BR9 ;`fH$AI' e eË>E1Wx͋84Yz>ExĒkJ-RGk˾B4(+0Kp-fM5#Rrd8z3PEPUZkߑ4(<4;WQ~:̢LcR=|"H+,it8!=͞&hPCPWE@a"VɊ<$ihrkd$ ~?jW:khlSPHPƄ2wj"ӵ#<@I 'i=!@ @U&Z0"*Tb?PPz;ɞM@"AFdF@P%ӃŠ8.ǩ If:$94oF{ΣGN~fV}Drbe uZ #f=L*&UT`ng4vl͘dM@ f=#]ء$po0CRE -$+f =1Z+93mdCQq;oO҃CH;  : BY_K lvGHCc`:a%RpE2 \٭]}͇> U?]yD} Te'QSCKE9R>Eb32ps*ن?I=_\b.%OssDL0nܛ).:,AʁaȒ@ K ( qc>( 1}JfHd@#w R% jq+n.3byh(cWOcH 69p] KV3!υgXx]";amڢ߼u󖯶}g9)pkT[neܪ93LQE4zoKGW0RV̈́\\?=Wic۶:O9S需Ŋ9aNpXzG"H$Cy=[SI)L*6G!;>(V7tw1LNt!AoH}?-s7߼yt3ʊ|' NI>J|:p uÇ{t7o%Xo?]ӷ2Euk   `XXYxlh3Pb SSx' h?F3R^TDXёQᡡ068M 0<!$Dtu j Xqh¼EB'[_o<抩'4_pqZ꼡T#ڙ 1C27`'8!oӼ@FҶ!)يܲսUvLG#( A۞c@vU*Z'8b&J6ok) tͩǶbJ=?7gl! R4<P .-ԝ~EW6t-mHܩ%;D<`VVv<< TMh]ee)YZ:[j1*\7:orZd9uR4WF̹ -@vUoI:2둡Iϱ2$GO/*Ƥ]:thߪՕ1͚5j0*222"e%a c `c`L*0V ,1F/'/+|.U& 4h:x`T= ,hjyH\Ơd[JɔZFJ!9Z6q |M߼Z4浒R"E[౷W]HZy6g1vsD,i2eNd>X UdgMϩ+&|pvCR*~C f0FE`&6?jk^Y034P2ml}K+&$U$ >olPnYB Ƥ}fFZԹyK 5" `Rg+l\6m# L[I%]R`jaRJGo-®8na+bh۰͋E[N\Y RhѼ3hAھn)A0er=WWt6@Mxl_0lZwKx4$Ps7 ϒQaҰxM [Ɖ3:BޚttƣU ΝkU{iv`XzėdLg*vH }'&w٨d dZ9$U™ 6Jй$57exEQ̍PJε\:Y4d_!;` tV3}YsjVbNNNFI^y]Z.kP Fm;u>vn{ ӧg[DjycU3 TP@xl2j+.j$24Mg)ղ%{A Kg#@FLDZ{ueo5pM~G`-_&/O7`J,YM՗\5e P+++UV ݻu@I?wܻ+V;vWϞ==-')8Q6xj,Aonn\c/-9֧OzޢL1]hԀ/$5b#p@ jOAߖ-[&vts7vl{ɓ'|>. ꫍Hs!|3xAc ٬ HbGwd<\1u_ܣc\N{ \ }YLzrf-28/<*Ny *?V)΍RjD̡h.=6388ͽݶ0 ~;zE_.l q_ঃ!)\:wf-\j**AEN%*?V+Szx/5UZ-sPmgd_s:~q= G#c!~mCF/?.("*++dbɨÖ##'ŒSZcuzfJ%{lgd_V-b-Xtc]RRWN㉪1UZmc=#늣]z6-Ww{ݾ+)rU-cٳƃoLQj[iDX_s= 7S_托db=zFvicګ/<@0;Wlʝ[K9w_{Ꮭ3?{O<>s77+ءCVJ|ڠAbx9/"ذ{|g7*o5}ee@q zz8aj A9#F|djzM T]qޱgd M֮+-{L^o_NZ5] e^<6}gd; pPv%<}Gw8حg;bfĸ(<e7w9|s>澄'qZS9IKVD&ќ۩@i2PL6|j ɀ2 @Ak0Щ@Rzy>  cMһsӚsE0i@i8E9|\ cB:hcMCҮ4W.,q@l2 'N(.kj*/g:2@"GccwI8qaW6J|=բh [f$ 1{룣n<ڈ-/C'N2 $?enݱ;**Yf4K}L'Q,yb[fC 5l *e͚=zezԥ5JS"M 2O9sE #h0:yLӊJYeoE|I5U>-i'{ᡡQaa6[f`eZ|ZUт"A[fL& ݰAo)Bg@-3MX^.HTo~mУ` {޽Ϟ;w>JЈoIOKJe?&Ґ}9Yo)*7-тˇ e- 8 @}g@V0*z zȀ@}c@ESf85ʯ `zˀ0 @0 _< 5- /0 0 0 _>|pyy9T1m۶}GΙ;7"<|ҤI111Єg?~|ʕRȨ3 x,##q.\&>iӦ#F;wn7 |'4$r Fze/B%J)դhvׂQڠy/x~A@Dŀ;*E ?_уo׮|sA~9P(TDz:5#&P] Ǻ}6M*ԏ[pi@AʀǛџpȐS_~PVuv׺X|[i; Vxh<-˜!9DU=5㧬Lnvn뀖OdŹ߮Z_q3󄄝->ɷ+ S <5\. M./5ЄiűC8-xH GY;JPq#UW[mwecVMxJ])ETs8|B( z墂&j# XXi};r]1\KS.`K\ wcMl &.9ySx O.Ч._6s] x:-65uZ5:wt#;vd^K#-5=4-ŧ};n{kl5cPKrNLZܴ45+}CL;Ҿ]3Զ62 Xs1_}qoŋs੩⭨8{l#;f\fe?X7U$nnF?L۽_^{=|q|$.-s`i, *2T&f90UՌ} KliGgWD{дYʳ/ցqCYvRz+ OL >!Ѭ%|ȃv'vlWB) gؔ !Kv+#\qO _v x~^?8Ûc&lBV7(2!ercp8f̏B]rEcZW\{nԜi?аb hML-D`vV5#dʆt bQ8QJN-^i+{ݜg$&rWz=o,Ńؑ/<5V>)v,˟Ǝ&'wO-n_)HޭCg ~'aW:As^iVp%-6 '燑o(A7|ǗoQb%ewCKrޡH,JC7X&z+M#dfm>/Ö v%t)v:1+L3SPm;uPz> ܑ'g~ҷx( fXcҤIfa=3]6s8 D/{ H;mڴ_Hl=>)oJӷo_q0.DW a:`r|M'cnufP!))Isz|lҸUuJ >τ HEMsS:lklºK5O>U|z+N@:vmwi_^?/) }ӂ\ uI|G $wڮ}># F:ɀ8;mJ#,I47╁, jZM_]nj7k〡NjӦ L 66 `@ #q8/54O!͛iiiЄg9s c###c ,'P@f͚M:_*5$ H@* :d@$2 - x_~PgmGK 8g܈I&@q+WRJy"#0񲲌ƍ_pM1bܹ1"\\Cޘsx3aj3/{teo?PE\xI, jI"W.dE[Hm7^v`> KM@'MZ1 VfaM V;32 *99`]\x<>v0Fx]$-ֳ5vsVѼjoeNOzy4IvMe@v+5 GJC\y%tF\Y :ԄvxMx:| fEOD' txs J$5u%M,vp-.O]'.rrx*Q51(#^ȏ6ܱ#Z!&}b>'\CUjtb<5cX\UY5de{%m!gU5ϔ|Q?Ebc[ܢoI9{Aa=3͢ #epP+."[L8 &7A.-1`rx)˷bHƆM<vŦW Wn)B&Z!c+B'ݻ h2[fEЖZ}J{uj_PgxQΑi+xj?0}!AԶ&BVY5!Ⱥ@_ˠf6M3M23b?뙦]=x bUIe5?8`=+nPJ/ )4$ypSĎCY(eP;L:A3`neP+ϯ34jj%  KMV?3ʹEشEַJ08 ƕπEkU}ϔ2hٰݻ ZܬtEMЇєXt> X3ŹWEڊr{7.ܕ^O}`rx v O)c5 #S,W %wYJƌXs'nP#kߢ1JH5 1ޯjigyd[jM<\KfXP)萸q<bEj}6rtO#o\lk9^.fץ(猺1+qM3"?y_+Ґ>N_ϻ9I&͚5G5Co'zCUӦM?y'@s>SX5:ھ5SK/ 4Wju& Zܝ .fςkpuA9f ]qo|yp4Xح yi_NE5H!6ɒˡt;4w_עgkZp@1ftHCCCO:զMUAll,%J)~16eو4gl޼|M|ƙ3g(PJ2,`@<%edd̞={׬YS] R?o8 @qAX1J%b01?P $@ `@`@s^|G| PA23g@0 0 $f.X A 2aS-Pe@#w9rzU֍#SnڻEe˖f[j5zh`@@Ý?/T 5hU ~ n7OaW/4iRLLLǏ\ |{$|M"^h^dE\Ϸ1'hܸ U4mtĈs9~uG\tDGм,˗)\x -2-8-~U`,!0 ݀.jV-fXjЂP3'_he@ CMd@h$Pvŷ?Ŀ=c0ڠG~pZ PL\P낣?2NXi3!:%hH>:jӂf.A:܄Sd@@@;Q#KkcdL. t+%.~ S͔9Am/\Qhkj_Ybٳ8fĊi5Ϥǽo|ot{gMY\zpLjGV]mKWÌ_=GUS͜/Duqikc1㻇•7mJ;ߘ68u#eY*F ݺ,Cf2)L^iB1yd&n2m s^Hf"cL5Qǧw=w^+\{O.ܿw}/ff\x;Z/%d0 bFoB <%-#3-ZO?Y?\K%g%_{'2* q$'\"Vp}4lފ UOy^:տڋuWov6 S]ڿg/Ocu=Ղ ]);568, /iDY~,ˍ R6wEbHC€EPsn 7윈LLs( _4r؊?G[쪧z]؄t)}>|kqnl"T0G#d> VGd>|৚3,V${.LUb)rΎ+ʔy7qohR]Ao荚#:9ˊH4`"힞4%2i٥)> ϧd "yk)}  7T855E+ˤ5@ `jLNNNP'2Q0uF2i|ix(ގ0 XAbҽǹ{L}lu/4CVVrQQ,0 .8.>D@pKz/f# \|Qm e@ ;z9?__Z1 d)TT&upp?#X,mmmI) <),|,׷t`)ɨ0d2H1 ƽ8[9D LX4EL`*twToQ@]y _v}߀GZ@ Gi5No@d 41Ci? 8WB1ck;p;w7[ )p~)p{hg=&-%DbTVg "42AWPbNWQ@ch%( Z4}5ojRն ϒun>}V#Z\3Mf<&$VZ9bѱkcUYULǻG 7Vo#;=b[xӵoYj8YMO H6˲m#g45$+;.on8b/1{fyWuuu^NWg~搽Ŋ`h#Ox:nhx6ʈUW!$MIbHg#*LD}Xf}tOSv:lj=O X\\]'O~njy %xE+ɫczt4PnV+UI*s{D'rTPw*=Sw"2+EF].9s {}Xrss鮮Յ`0d*WPPqN?IENDB`keepasshttp-1.8.4.2/documentation/images/psd/000077500000000000000000000000001306306563300211305ustar00rootroot00000000000000keepasshttp-1.8.4.2/documentation/images/psd/http-listener-error.psd000066400000000000000000005202041306306563300255740ustar00rootroot000000000000008BPS!a8BIM%8BIM$7 Adobe Photoshop CS5.1 Windows 2013-04-16T17:10:07+02:00 2013-04-16T17:10:07+02:00 2013-04-16T17:10:07+02:00 application/vnd.adobe.photoshop xmp.iid:D09E2EB9A7A6E211A3ACDE5C0122C745 xmp.did:D09E2EB9A7A6E211A3ACDE5C0122C745 xmp.did:D09E2EB9A7A6E211A3ACDE5C0122C745 created xmp.iid:D09E2EB9A7A6E211A3ACDE5C0122C745 2013-04-16T17:10:07+02:00 Adobe Photoshop CS5.1 Windows 3 sRGB IEC61966-2.1 8BIM: printOutputClrSenumClrSRGBCInteenumInteClrmMpBlboolprintSixteenBitbool printerNameTEXT8BIM;printOutputOptionsCptnboolClbrboolRgsMboolCrnCboolCntCboolLblsboolNgtvboolEmlDboolIntrboolBckgObjcRGBCRd doub@oGrn doub@oBl doub@oBrdTUntF#RltBld UntF#RltRsltUntF#Pxl@R vectorDataboolPgPsenumPgPsPgPCLeftUntF#RltTop UntF#RltScl UntF#Prc@Y8BIMHH8BIM&?8BIM x8BIM8BIM 8BIM' 8BIMH/fflff/ff2Z5-8BIMp8BIM8BIM8BIM08BIM-8BIM@@8BIM8BIMK! Unbenannt-1!nullboundsObjcRct1Top longLeftlongBtomlong!RghtlongslicesVlLsObjcslicesliceIDlonggroupIDlongoriginenum ESliceOrigin autoGeneratedTypeenum ESliceTypeImg boundsObjcRct1Top longLeftlongBtomlong!RghtlongurlTEXTnullTEXTMsgeTEXTaltTagTEXTcellTextIsHTMLboolcellTextTEXT horzAlignenumESliceHorzAligndefault vertAlignenumESliceVertAligndefault bgColorTypeenumESliceBGColorTypeNone topOutsetlong leftOutsetlong bottomOutsetlong rightOutsetlong8BIM( ?8BIM H HLinomntrRGB XYZ  1acspMSFTIEC sRGB-HP cprtP3desclwtptbkptrXYZgXYZ,bXYZ@dmndTpdmddvuedLview$lumimeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ QXYZ XYZ o8XYZ bXYZ $descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view_. \XYZ L VPWmeassig CRT curv #(-27;@EJOTY^chmrw| %+28>ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km8BIM8BIM ~cb Adobe_CMAdobed            c" ?   3!1AQa"q2B#$Rb34rC%Scs5&DTdE£t6UeuF'Vfv7GWgw5!1AQaq"2B#R3$brCScs4%&5DTdEU6teuFVfv'7GWgw ?ۢ骚m k 5s\Qw.?5?^7Pvzmz~Wl/RZŢu;֏6ێNz5:>"47mK{?Im閵 S3k]WO7zw/L<㿽+*V1(X=Ek\ָtɍKvӱV~m3 O5n$Uk7c\斓Fmo,#;;~6&2wۏ"&t?xKYHb[iso}YcgKm ?)UѸKCD;h[!-rkpdEYdn7#ԫ;jHf831}3' ՠ;{w8ON8##_BctO~oOpSOMuah[3(ӹ@/v9Qgi~ʥeu3)+ Ѱͷ,VHnFO[=?YgaQȦ]X>_V՛:L6_S k#ֱ;,o_V}Mgz_neF꾕v{* =66k.2->T5۽ŕ> ,iލO&B1buI8J~E-_X S^eM{'o^/kŎ!oL{]L{oQ5Y5nC+~{/W_Rٌm W>wc=O[/떊e};%ݭ!7{[g??ߢi*cϳ\0 Quf,8(uӾ1]~潟uVuମ+s)uywg"M[kKn ޟg+92o>lKkK+f63{a`sѵUk ѱK9sjBs6!Ic;un`;& fMRNk-cH.&.k[ DSWCaeml4Vcv욬ЇMIgRaڶ׵zTmxֳ/})Idفm( Oc}i}3[۱v9 R}ͿgzJuYUsU2\+ݮm=7s(\ցepc~JH>wOhSMkοcq~5>D$7Qt4Jy?-N`Bޅ.f%ny%wo{2iS]YI{uĿ֥oMk=$>12V[ݕm&wBsZ^C:6ퟡJb͸cRkZ czFMmoS؟e}m6XCfZ>zINLsH@vݍt[zۺW*kݬo :{RQ}>Bn~Ako}!u{6c};}?Q+ؒ%}lmy7u6kn=mlk꩗ee]nk\=7P:Iȯ}Go{?OMޏiOF߹5{Pmac,>؅h` >ڪNqnޮ_S$(ζS~v6bp~Yjʷ,,§$z}WMv C }/Х=Km-.zt6-q,nܛ ;uDJ.ӯ/kh|^_' 5$魯ݏξ:oCls/e߾e~Ӳ~L_]p41{amokWKGS>:cg'mF:S(AؿwMk}sRwǻ#-Kn=јepxys7z_g,[Y}e؃#997ѢLe;JZoE5fm !ޥo͟?QJoofV\?9z"Wvz]۹Ͽ ƮAcWѿk-ҳߙM ]W4uGկ^ֳ׳OI-˩Ͳ:>7,׹.ip`n_OҲt*IݾR; Ew=ª8{u<V. M5/gJK>9^stN=J} Xk_fĔrw~"5άTezg?WMavn hǗ0w_Oňm` .Xigo?57]>ueeS]ͲF6>*s}JO_V5v;n߲SMA Oq;zoOcŌťk;ÀK ~m}K*ls5{Vտױ?B|fP*ɨXIͥnaEۻĐZ֜jFc` 4l~9.8ni:{5Q= 6g1֒kXַ赛=%~$mllnV٪onbsCǨ {ttSXޞ\q$$vQk|0ju{]~+i$,C?SbX]7Fb>bW;џF[ PybQUŖKwX&JG pGLG=#,acvUnu0lwCj!;Y lJGJq^`qq֝V6soj~=9~L c>1mw.GRP2`d@oOw?=?W$گQ5/qyBI}W-? %}c_ ky:H}V?+ʒGe} /⼩$} ʒKW_7^X_jߊD͞z_"U?8BIM!YAdobe PhotoshopAdobe Photoshop CS5.18BIM".MM*bj(1r2i ' 'Adobe Photoshop CS5.1 Windows2013:04:16 17:10:07ՠ!&(.HH8BIMmaniIRFR8BIMAnDsnullAFStlongFrInVlLsObjcnullFrIDlongh9FStsVlLsObjcnullFsIDlongAFrmlongFsFrVlLslongh9LCntlong8BIMRoll8BIMmfri`4! L L L8BIMnorm H( Hintergrund8BIMluni Hintergrund8BIMlnsrbgnd8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubA[Zm8BIMfxrp! L{yBx8BIMnorm<(Ebene 18BIMluniEbene 18BIMlnsrlayr8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubA[Zm徫8BIMfxrpYD?7<63.*BKFomcf\U  '+0_wyAAB=;<xikfd]LJL+'7:7ysvotv cbVVah12*cSIMS^8*,322 !m,+%Hni*)%;,136<24+"""""""122212232""""#""!<hfdj,cZPG<6?KSYYNF[[9GQPFְ'~}}|{zxwwvusrrppoomllkkjjihgfeeddcba`_^]\[\]^__`aabbcddeefgghhijkklllmnopqrstuvwxyz{|}~XXܭՐ9GEß }}{zxvutrqoommlljjiihgfedccba`_^]\[\]\]^^__``aabccdfefgghhijllmnopqrstuvwxyz{|}}~~UUܙ95#ס~|zxvurpommkjjiihgfedcba`_^]\[\]\]^_` abbceefgfghhijklmnopqrstuvwxyz{|}~T T)~{zvurpnmkjjigfedcb`_^]\[\[\]^_` abbdeefgfghhijjklmnopqrstuvwxz{|}}~RSSRޥ}zwtronmjhhgfedcba`_^]\[\[\]^_`aabccdfghijjklmnopqrstuvwwxyz{|}}~PSSSSP }ywtqnlkigfeeddcba`_^]\[Z[\]^_ `aabccdfefgghhijklmnopqrstuvwxyz{|}~~M݌SSSM }yurpnjhgfedcba`^]\[Z[\]^_` abbcdefgfghhiiijklmnopqrstuvwxz{|}}~KSSK {xupmjifddccbba`_^]\[Z[\]^_` abbcddfgfghijklmnopqrstuvwxz{|}~~IпSSIkkčB jjg}xurokhfddbba`_^]\[Z[\]^_`a bccdfefgghhijklmnopqrstuvwxyz{|}~~:SS9kkōCBkk?hef{wrnkifcba`_^]\[Z[\]^_` abccdeeffgghhijklmnopqrstuvwxyz{|}~ 8SS7ﯲllƏCBkk ?he{wsolhecbaa`_^]\[Z[\]^_`aabccdefghiijklmnopqrstuvwxz{|}~~8SSS7ﰳlmȏCɤpɤ pɤppɶɏoooōBBAml@i ihfe ~;;_W{wtplgecb`_^]\[Z[\]^_`abbcddefgghijklmnopqrstuvwxyz{|}~8SSSS7ﰳlmȐCɤpqC!pɤɏCȵȏȣB ƍm@ihh>)ef~;c;}W{wrolieba`_^]\[Z[\]^_`abccdedefgghhijklmnopqrstuvwxyzz{|}}~:SłS9ﰳlmȏCɤɤDqCCBBǴƍBl!??hhgef~<};v~yvrokhdba``__^]\[Z[\]^_`abbcdcdefgghhijklmnopqrstuvwxyz{%|}}~=ë=ﰳlAppɤɤDpɶDqpBBnƍBšōB#lk?>hgedd!};|;~yuqnkfdb`__^]\[Z[\]^_`abbcddedfgghhijklmnopqrstuvwxyzz{|}~~LLۘ*ȣȣȏȢ ƍƢšōBŲmČAkk>>ff+ff {:z:~zvsnkgea__^]\[Z[\]^__``abbcdefhijklmnopqrstuvwxyzz{|}~LKŰ}xtplieca__^]\[Z[\]^_``ab bcdcdeeffhhijklmnopqrstuvwxyzz{{|}}~͉bLLMOPQRSTUVWWYWXVUTSRQPONLKKbˬ}zuqmifdba__^^]\Z[\]^__``ab cddedeffghijklmnopqrstuvwxz{|}}~}xtqmjgeba`__]\[Z[\]^__``a bccdedeffggijklmnopqrstuvvwwxxyzz{{||}}~~zwspmjgecb`^^]]\[Z[\]^_`abbcddefefgghhijklmnopqrstuv!wxxyzz{{||}~쥥 }zwsqnligecb`^\[Z[\]^__``abbcddefefgghjklmnopqrstu!vwwxxyzz{{|}}~ 졢~}{zxvsqomigfdb`_^^]\[Z[\]^_`abccdefghjklmnopqrst!uvvwwxxyzz{{|}}~쟟~}}|{zyxwvuusrpnmkiheda``_^]]\[Z[\]^^__`aabccdedeffgghijklmnopqrstuvvwwxxyzz{{|}~~  띝#~~}||{zzyxxwwvusrqpon mlkjihgfeda``_]\[Z[\]^_` abbcddefefgghijklmnopqrstuvwxxyzz{{||}~}}|{zzyxxvutsrrqqponmllkjihgfedccba`_^]\[Z[\]]^^__``aabccdefeffgghiklmnopqrstuvwwxxyzz{{|}~~ 踾ܿˈ7777777777Қ77Ӛ77ӛ77ӛ뚛77ӛ뚙77ӛ777777Ԝ78ӝ78Ԝ78Ԟ78Ԟ78՟78ՠ78뜜78ա78ա78բ띝78787878787 ǩ|oo|87٪ٺ87및쿏8٪7ؕ繕fffffff9f87ёӑffffffffffffff87ؑ¶ffffffffffffff87þӕf ff9f99f9f9ffffffff f99ffff 9f9 9fff8ﭬ7Ϻ鹰fffff9ff9 fff9fff9fffff9ffff9ff9f9f8ܱ7ُdzf fff fff9 f9f9fffffffffff99f9ff9f87ٻؿ9ff9fff9 f9fff9fffffffff fff9ff9f87Խ ff9f99ff9 fff99f9fffffff99ff9ff9fff9ff8𵴳7Ǣfffffff99ffffffff9f9 ff9ff8񷷶7󠘣f8񹹸7ǽ󠙤ڏf87||f8򽽻7oo8⿾7o˴o87|ǿε|87ѻոُf9ffff9ff9ffff987ܷἴffffffffffff9fffff87Ǡ䳭f9ffffffffffffffff87岨ff9ff9ffff 9 ffff99f99ff9ff 9ff99ff9ffffff9ff99ff9f99ff fffffff99ff9f9fffff87զΫ࿪ffff9fff9fff9f9 fffff fff9f9ffff9ff9 fffffffffff9ff9ffff9f9ffffff9fffff9fff987ُﱤЛ⿾̱f9fff9ffff9 ffffffff99ffffff9fff9 fff99f ffff9fff9fff999f999fffffffffff9ffff87裟ѧ뺰f99f999ffff99 ff99ff99999ffff999fff9 fffff9ff9ff9fff9fff99f9fffffffffff999ffff87٤Өԕ fffff99fff9fff9 9ff9fff99ff9f9fff9ff 9fff9fff9f9ff9ffff9fff9fff9f9f999fffff99fff9fff9ff87ؑڠϩf99ff9 ffffff99fff9ff9 ffffffff9ff9ff99ffffffffff9ff87ё谙̯ӑfffff87ؕĠ﹕999f9۳87및ͷ뿏f87٪ٺ87 ǩ|oo|8787fff9f87f9fff987fffff987f99ffff99ffff9ff 9fff9fۭ8Жꕕ7fff9f9fffff9f99fff9f9f9۬8ϔ7f999f999 99fff99f9ffff8ϒꔔ7f99f9ff9fff99f9ff998ϒ7ff9f9f999ffff99 fff9f9f98ꔓ7f99ff9fff9ff9f98ꓓ7f8ϐ铒79ۦ8Α钑78ΐ鑑78ΐ鑐78͏鐏78鏏78͍78鎍78̌荍78̋荌78̊茌78ˉ茋78ˉ苊78ʈ芉78ʇ艈78爇78Ʌ燇78Ʌ燆78Ʉ熅78ȃ焄78Ȃ惂7fffff9ff9f9۶9f99fff98ǁ悁79ff9fffffffffff9999ffffff8ǀ悀7ff9ffffffffff9f9(9ۏf9f9f99ff9f99ffffff8怀~7f9fۏff 9f9f9 f9f9fffff f99ffff 9f9 9fff9f9f99ff9ff9:ff9fffffffffffff99fff999ff9f ffff 9f9 9ff98~}7 ffff9f9 ffff9fffff9ffff9ff9f9fff9 f9f9ffff9f7ffffffffffffffff fffffff9fffff9ffff9ff9f8~~~}|7 9fff99f9 fff ff9fffffffff99f9ff9fff99ffff9fff$ffffffffffffffffffff99ff9fff99f9ff 9fff8}}~}|{799 ff9 fff fff9ffffffff fff9ff9fff99ffff9ffff9ff999f99fff 9ff99ff9fffff9ff 9fff8||}}|{{7 99f9ff9fffff9f9fffffff99ff9ff9fff9ffff9f9f99ffff9ff"ffff9 f 9f 9fff9ffff9ff9ff9fff9ff8|{|}}|{z7f9fffff9 fffffff9f9 ff9ff99ff9ffff9ff$999fff fff99f9ff9ff 9ff8z{|}|{zy7fff98zz{|{zzx79ff8yzz{zzyx7ff8yyzzzyxw78xxyzyxwv78wwxyxwvv78wvwxxvvu79ffffff99ff9f99f998vxwvut7ffffffffff9999fffffffff8uuvwvutt7fffff99fffffff9f999fffffffff8utuvutts7f99ff9f9f9f99fff99f ff9ffff99 9fffffff99ff99 9ffff9ff"f9ff9f9fffff ff9fff99f999fffff999f8tuttss7f9f9f9ffffffff9fffff99fffff9ff9ffff9f99 ffff9ff9f9ffff9f999fff fff9ffffffff8ssttttsr7 fff9 fffffffff99 f9f9fff9f99ff9fff9ff99 ff999ff99ffffff9f999۶9ۏffffff9ff99ffff9f8sstttsrq7 fff9 fffffffff f9f99fff9ffff9fffff999fff9ff99ffffff9fffۏ9ffff9 ff9fffffff9f8rrstrsrq7 f99ff9 fffffffff9999 fff999fffff9 9ff9f9f99f99 9f9f9ff9f9fffff9f999f9ffff 9fff9fff9ffffff8rrssrqpp7fff9 ff9ffffffff9ffffff9ۏf9ffff9ffff9f&ff9fffffff99fff fff99ffff9f8rqrsqppo7ffffۭf98qrppoo7ff8qpqqppon7ff8ppqqponn78popqoonn78poppon78opnm799ff98onoonnml7fffff8nonnml7fffff8nomlkl7f999fffffff f9ff9 9ff9ff999 f9f9ff99ff998nmnnlk7f9f9fffff9fffff9ff9ffff9 f9f9ffff98nmmnk7f9 9ff99ffff9fff 9fff fff9 fff9fffff98nmk7f9+9fffff9ff9fff 9fff fff9fff99fffff98nmk7ff9ff9ff9ffff9fff9ff ffff9fff99ffffff9f8nmkj7f99fffff9ff 9ff ff9)fffffffffff9f8mkkjj798mlmmkj78mllmj78mlj78mlj78mlj78mlj7fffff9fffff998mlj7f9ff9fffffffff9fff9f ffff98mlj7fff9ffffffff99f f99 fffff98mlij7ff9fۏff 9f9f9f9f9fffff f99ffff 9f99ff999f99f90ffffff9f9f99f98mlij7ff ffff9f9ffff9fffff9ffff9ff9f99ffff9*ffff9f9fffff9ff8mlij7f 9fff99f9fff ff9fffffffff99f9ff9f99f9f9ffff9 fff999f8mli79f99 ff9fff fff9ffffffff fff9ff9ff9f9ffffff9 fff9fff8lih79f 99f9ff9ff fff9f9fffffff99ff9ff9fff9fffffffffffff9 fffff9998lih7ff9ff fff9 fffffff9f9 ff9ff99f9f9ffff9ff9998lkklhghh7ff98lkklgghh79f8lkgghh7f8lkgghh78lkg78lkffgg78lkf7fffff998lkef7f9ff9fffffffff9ff98lkeeff7fff9ffffffffff98lkeeff7ff9fۏff 9f9f9f9f9fffff f99ffff 9f99fff9ff9ۓ8lkef7ff ffff9f9ffff9fffff9ffff9ff9f9ff ff9fff8lkde7f 9fff99f9fff ff9fffffffff99f9ff9f9ff fff8lkde79f99 ff9fff fff9ffffffff fff9ff9ff9ffff8lkcd79f 99f9ff9ff fff9f9fffffff99ff9ff9fff9 ff9f9ff9ۓ8lkcd7ff9ff fff9 fffffff9f9 ff9fffff98kjkkc7ff98kjcbcc79f8kjccbb7f8kjbcbb78jbcbb78jiijbbcc78iab7ffffffffff99f9ff9fff98ihiiaabb7ff9ffffff9ffffffffff9ffffffff8hi`aab7ffffffffffffffffffff9fffffffff8hghh``aa7ff99ff fffffff99f99ff ffffff f99f99ff9fffff/9ffffff99fff9ff9ffff99 9fff9۷8gh_``a7fffff9f9ffffff9fff9f9ffffff9ffffff ffffff2ff9fffffffffff ff9fff9ff8gfgg_`7ff999f99fffffff999f999fffffffffff ffff fff9ffffff9fffff f9f99fff9f99f8fg_`79ff99f9 fffffffff99f9fffffffffffffffff9ff9ffffff9ffffff9fffff 9ffff8feff_79fff9f9f999fffff99fff9f9f999fffff99fffffffffff9ffff9fffffffffffff99ffff99f9۷8fdef^^__7ff99fffffffff99ffffffff99۶ffffffff9 9fff9fffff f9ff98ef^^__7ff998ddee^^__7ff8de^7ff8cd]]^^78bc]]^^78aabb]]^^78a`aa]78`a\]78`_``\]78_^__]78^]^_]\78^]]^]\78]^]\78]\]]]78\]78\]78\]78\[[\]78\[]78\[]78\[]78[Z[[]78[Z]78[Z]78[Z]78[Z]78[Z]78[Z]78[Z]78[Z]78[Z]78[Z]78[Z]78[Z]78[Z]78[Z]78[Z]78[Z]78[Z]77[Z^]77[Z^]77Z^]77Z^^]]7V<V7Z^7;=A=;7Z^7S>jj>S7Z^7dcfj(cZPG<6?KSYYNF GG9GQPFۻ~}}|{zyxwvutsrqpononopqqrssttuvvwxyzz{{|}~~DĦߧ Dڒ9G Eˬ~~}}|{yxwvuutsrqponononoppqqrrsstuuvxxyzz{{|}AA॥Ȓ95%ܭ~~}||zzyxwvutsrqponononopqr sttuwwxyyz{{|}~??)~}|{zyyxxwvutsrqpononmnopqr sttvwwxyyz{{|}}~<qVqqVq<㱱}{zyyxwvutrqpononnmmnopq rsstuuvxxyzz{{|}}~8VVnVV8 𲴶}{zyxwwvvutsrqponmnmnopq rsstuuvxxyzz{{|}~2iVVVi2𴶹~|zyxwvutsrponmnmnopqr sttuvwxyyz{{|||}~/|~gVVg~}{/ 𶹻~|zxvvuutsrqponmnmnopqr sttuvvxyyz{|}~,vxyzyeVVeyxwu,񹻽EtsD nnk|yxvvtsrqonmnmnopqrs tuuvxxyzz{{|}~=>@ABANVVNA@?=<񹼾EtsEEDoǢƲ|zxuutsrqponmnmnopqr stuuvxxyyzz{{|}~ 78:;<;KVVK;:976񺼾EtsEEDoǢƳ}ywvusrqponmnmnopq rsstuuvwxyyz{||}~ 89:;=>MVVVL=<:987񺽿FutuutϔEFEEEEDr pponnm‰A@ >h?a_8}ywvtssrqponmnmnopqrsttuvvwwxyzz{|}~ BCDFGVVPVVFECBA񻽿Fu uEuuДEutFϔEEssEsEErD̦oȣǴƢnšŠA@)?>a~zvutrqponmnmnopqrstuuvwwxyzz{{|}~LNOPRUVTQTVTQONMK񻽿FututЪ EutмEt EϼϼsEΓrD̦#ooȣdzšAA@i>>a`}zutsrrqponmnmnopqrsttuvvwxyzz{{|}~ \XXZ[[\^__`_`_^][ZYWW[)񺽿ututϔEtsϼE EϼλEEΧrrD˦#ooǢƳĠAAii>=>`_|xutrqponmnmnopqrsttuvvwwyzz{{|}~ $pgghjlnopoponmmkigfo$ߤ)񺼽pÇtstsEEttEΓEt EDDrDrD̒DrDʥonšŲÞ@>!==_^~{wtsrqqponmnmnopqqrrsstuuvwwxyy{{|}~ R~wttvwx{|{|{zwvussv}Qߤ 񹻽D tstsΓEtEE rDͦrqCCnAml@i@?h>f g=<:_^}yvtrrponmnmnopqqrrstt uvvwxxyy{{|}~ +{{+ɹ񸺼~{xvtqqponmnmnopqrrst tuvvwxxyy{{|}~ W0$$%&'))*+,-.-.-.-,+*))'&%$$/Vе 𶸺|ywtsrrpomnmnopqqrrst uvvwwxyyz{|}~ 𴶸}ywutsrrponmnmnopqqrrs tuuvwwxyyzz|}~𲳵~|ywutsrrqponmnmnopqrsttuvvwxxyzz{{|}~ ﰱ}zywutsrponmnmnopqqrrsttuvvwxxyzz{}~ ﭮ}{yxvutsrrqponmnmnopqr stuuvwwxyyzz{}~   ~|zywvutssrqqponmnmnoppqqrsstuuvwwxyyzz{|}~    ~} |zyxwvuttssqponmnmnopqr sttuvvwxxyzz{|}~~}|{zyx wvuuttssrrqponmnmnooppqqrrsstuuvwxxyyzz{|~ҍ@@@@@@@@@@ئ@@ئ@@ا@@ا@@ا@@ا@@٨@@ب@@٨@@ة@@@@٪@@٪@@٪@@ڬ@@ڬ@@ڬ@@ۭ@@ۮ@@ۮ@@ۯ@@ܰ@@@@ݲ@ ƨ{nn{@ݳ@٩ٺ@޴@및ٽ}꿏@߶@ו®o\RQOOPQ_丕@߶𳳲@ѐЩeQOM IJIGIKӐ@߷@אᵦwQONMLKIHGEECB?CE@@ӵfPF=DKHGFCCBC:/5<=?ӕfff9 ffffff f9ff@@ЏhN@ee;FCCB@?3N[*68>˸f9 f9۶ff9@@ُ{KA_Z3B@=>0HT(24S fffffff@@yLAW[.>:.IG%+2999f99 @⾽@`G +( 999ff f99ff9999 9ffffff9ff99ff99 f@@  5< &H 9ff ۶ff9 ۶fff۶fff fff9۶ff9fff@@ ُE 3: /K H9f9ff 99ff9 ff  fffff9 f@@$    ͹ff9 9 f f 9 9ff۶99 f@@Ө   ԕ 9999 99۶999999۶999999@@ א#   "fff99 9ff9999ffff f ۶ff99999 fff9ff999۶ffffff f@@ѐC  IӐffff@@ וw!  V츕9999@@및ٵZ9,Iq꾏9999۲@@٩ٺ@@ ƨ{nn{@@@@9f@@f9f@@ۏf@@9ff99f9ff999@@9۶ff9ff9@@ff 9ff9f@ՠ좢@۶99f@ՠ@99999@좡@f9ff999۶ffff@졡@f@Ԟ졠@9@Ԟ젠@9ۥ@ԝ젟@@ӝ@@ӝ쟞@@잞@@ӛ@@뜜@@Қ@@ҙ뛚@@Ҙ뚚@@ј뚙@@ї뙘@@ї똗@@ꗖ@@ꗖ@@Дꖕ@@ꕕ@@ϓꕔ@@ϒꔓ@@ϒꓒ@ff9999999f۲@Α钑@۶99fff9fffffffffff9ۺ@钑@999+9999999fۺ@͏鑐@ 999f fff f9ff 999f8999999 fff 9f@͏鐏@ 9fff9 9۶ff99f 9۶f9۶ff f@鐏@ 9 fffffffff7999f9fff@̍鏎@f 99 9f99999 99 99ff@̌鎍@ 9999$9ffffffff fffff9999 @̌莍@fffff ffffffff۶ff ff99ffff 9999999999999999f9 999fff۶fff@̋荌@fۼ99@̊茋@9ۼff@苋@9ۼ@ˉ苊@@ˉ芉@@爉@@ˉ@99ff99f99@@999 9ff9f99@ʇ燆@9ff f9@ʇ熅@ f99ff99ff9f9999ff9f9 9f9 fffff 999f@煅@999۶9 99۶f99f99 ۶f9f9ff99f۶ff@Ɇ煅@ f fff ff99ff ff9f99 f9@Ʌ煄@ 9 999f9 f999f9999 99@Ʌ焄@ 9ff 9999f9f9f99 9999f9 @Ʉ愃@ f f99fffff9999ff9999999ff9 99f۶fffffff99 f99۶ff@Ʉ惃@999@Ʉ惂@f9@@9@悂@@ȃ@@ȃ@@恁@@Ȃ恀@@恀@@~@f 9 fffff fff9@ȁ~@۶ff f9999f@ȁ~@f9 ff f f@ȁ~@9 9ff 9@ǁ~@9 ۶99@ǁ~}@ f۶ff999ff fff999f@~~}}@@ǀ~}@f9@ǀ}@9@ǀ}@@ǀ}@@ǀ}@@ǀ}@fff9ff@ǀ}@۶999 99 999@ǀ}@99 f@ǀ|}@fff 999f fff f9ff9999f 99 999@ǀ|}@ 9fff99۶ff9999*9f@ǀ|}@ 9fffffff99 f ff9@ǀ|@9f 99 99 @|{@9 999۶99۶99 99@|{@999fffffff  ffffffff۶ff f ffffff99ff@~~{z{{@f۳99@~~zz{{@9۳f@~zz{{@9۳@~zz{{@@~z@@~yyzz@@~zzyy@fff@~yzyy@۶9۶99ے@~yyzz@999f@~yyzz@fff 999f fff f9ff fffff99@~yz@ 9fff99۶ff9 @~xy@ 9ffffff 9ۓ@~xy@9f 99 f9@~wx@9 999#۶9999@~wx@999fffffff  ffffffff۶ff fffff999fff@~}~~w@f۸99ے@~}vvww@9۷f@~}v@9۳@~}uv@@}uv@@}||}uuvv@@|tu@9f9f99f99f@|{||ttuu@f9f9999۶@{|sttu@ۏfۏf f@{z{{sstt@fff9 ff 99ff9ff99f f99ffffۏf*99f9f9@z{rsst@9۶ff99۶ff9f  $9f ۶f9۶f@zyzzrs@ffffff ff 9ff9۷@yzrs@9۶9 9۶999f 9 f f@yxyyr@99999۶9999@xwxyqqrr@999fff9ff999۶ffffff9ff999۶fffff99ff99ff999f9 f99ffffff@wxqqrr@۾99۶@vvwwqqrr@۾ff9f@vwq@۾9@uvppqq@@tuppqq@@ssttppqq@@srssp@@rsop@@rqrrop@@qpqqp@@popqpo@@pooppo@@oppo@@onoop@@np@@np@@np@@ommnp@@onnmp@@onnmp@@onnmp@@nmnnp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmp@@nmqp@@nmqp@@nmqp@@nmqqpp@𾏱@nmq@ʱʓ@mq@ޱˎ@mq@@mq@@mq@@mq@@mq@6`@mq@ 6`@mq@6̅_@nnmmq@55@nnmmq@22@nnmmq@2@nmq@2@nq@||2@nq@X1@nq@ױ@nq@ױ@nq@ձ@nq@Ա@nrq@ұ@nr@ϱÎ@nr@ıđ@nr@𻌱@onr@@onr@@onr@@onr@@onr@@nr@@nr@@nr@@nr@@nqr@@nrqqr@@nr@@nrw@@@@unr¼nrqrqpopqrstuvwxyz{{|}~~}|{zyxwvuutuvvutsrqpon1 rqrqpopqrstuvwxyz{{|}~~}|{zyxwvuutuvvutsrqpon %9rqrqpopqrstuvwxyzyz{|}~~}|{zyxwvuutuvvutsrqpo,F5Ďrqrqpopqrstuvwxyzyzz{|}~~}|{zyxwvuutuvvusrqpoÒ(9MC5  (8?TKC4,$+9?EI  LPB??;'+/_wz?@A899ypsdfeHFL,(8<8xuwpxv gdVVgc/1*`XQNYa8)+222!n+*%Lmk(($@2637?23+###!! "3112.0033 ""#""!>a^`h,cZPG<6?KSYYNF#CC"9GQPFŶ??ޕ9GE ҷ?>㰰Ε9 5(ḹۿ;:") Ǻ8ufuufu7 缼3ffqff3 ,zyxwlffflvwxy,  )trjffjqs)  &nlgffgkm&˧ҾH ϩ ʥp  0/.,MffM+-../} ̨HGussΓE˦Ȣ{*)(&KffJ%'(()yͩHGussΓDǢ {--,,++)(KfffK'(**+yͩwwwHG֯wvGԿuѪssrr̦CɤC&BBűmle~ 3210ffOff/001} ͨׯ xIG FuussϓEsr̦C+ȢnoBBĊÊAji?=<:SfS:SfS:9;<<=ͨy יHHG֙GG GuuѪssΓErr̹CȴǢnðA?NKJIHFEGGHIM(̨ԮH֙GHG֙GGvGuuѪss͒Drr˸CǢCƢ¯@fZ[ZXVUWXYe)wwwwGHw GFӬutrr̒DqpCɣBŲm OtjfgedbdeisN ͼ FH GwHծԭvuuҾϩ ͹pCȣBA ?&ww&o O% "#$$%$ #" %Nվn İll 񼾿  񺻽  񸹺 𷷸𵶶    ؒHHHHHHHH𴴳HHݲHIݲHIݳHIݳHIݳHI޳HI޴HI޴HIHIHIHI߶HI߶HI߷HI߷HI߸HI๷HIູHIູHIູHIẹHIἻHIHIH ƨ{nn{IH٩ٺIH및ؽ꿏IHוío\TPOOQQ_丕99999999fI򾾽H ѐЪeQOOM LJGGIKӐ9999999999999fIHאᵧxQONMLKIHGEECB?CF9999999999999fIHӵgNF=DKHHFDCBA:15<=@ӕ9 99f99f9999f999f9ff99ffIHЏhN>ee9FCCB@?3N\)69?˸99ff9999f 99f999999999f99f۶ff9f۶IHُ{MA_Z3B@==0HU(24T9999f9999f9 f9999 99999 99999ۏIHzLAW[.>:,JG%,39f99f999f9f99f999999999999f99f9IH`E<<:;(\? kڎ9IH{@<:8869!JB D{9IHnY;:7566# I_  -nIHnf85450 IJ+  1nIH{}845* ƿŸ)  G{IHٙ86, ¾' nَ99999999f99999IH:/ 8"$9999999999999999IHƠ: ? (!Ӣ9f99999999999999999IHF !> +(9f99 99ff99f9ff 9f9f 9ff 99f 9999f9fff9999f999ff 9999fIH  5< &H 99f999 9f 999fff9f9f9ff9f9ff9f 9fff99999999ff999f۶9f۶999ff99999fff999IH ُE 39 /K H99fff999f 999f99f9ff999ff 999999 f999f 999f99f999ff99 9999999ff 999IH%    ͹9ff99f999ff 9999999f999ff99999f 99f99999f999f 999f99f99ffff9f9999999999999f 999IHӨ   ԕ 9ff9ff99f 999f999f9fff999f9f999999۶9f999f999f99f9 999f999۶9999f999f9ff99IH א#   "999ff99f99999f99999999!999fff999f999999999f9ffff99999999ff99IHѐD  JӐ9IH וy"  V츕9IH및ٵY7+Jq꾏99999IH٩ٺIH ƨ{nn{IHIH9999fIH99999ۭIH9999999ۭIH9fff999 999ff9ffIﰰH9f۶9f۶999ff9999f99fIH99ff9f999f9f9ffIﯯH9ffff9f999999ff9f999ۧIۮH 999f9999999 9f9f9fIﯮH99f9fffff999 99fIڭﮮHIHIڭH9IڬﭭHIڬﭬHIשׂHI٪HI٪HI٪HI٩HIبHIاHIاHIاHIצHIץHIHIHIHI֣HIբHIբHff9999999f9ffff9ff99999I졡Hf99999999999999+f999999999999f9999999Iՠ졠Hf9999999999999f,9ffff9ffff999999I젠Hff99 99f99f999f9ff99f9f f9۶99f;999fff999999f999999f999f999 f9f9fIԟ젟H ff99f۶fff 9999f۶9999999f99f۶ff9f۶ fff 9f۶9999ff6ff9ffff9f9f9f9f9f99fff9999f۶999999f99f۶ff 9ffIԞ쟞Hf9999 9f999 99999 999999ff9 99f996f99fff999999999999999 f99999f99999f99IԞ쟝H99999f 999 99f9999999999f99f99fff999f99%f9fff99f9f9f 99f9f9f9 f999f99f9999f99f99I읝H f99۶9999999 999999f999۶9 9999fff99f99$999fff99999999999f9f999999f999۶999 f99Iӝ읝Hff999999 99999۶9ff999999999999ff9 f999f9999ff99 999IӜ띜H999Iқ뜛H999I뛛H999IҚ뛚HI뚚HIҙ뚙HIҙ뚘Hf99ff999f99f9f99f999999I뙘H999999999f9 999ff99999999Iј똘H999999999f9f9ff99999999IїꘗH999ff۶9f9۶f9f999 99f9ff99999f 99f99f۶۶99 9999f ff999f9IꗗH99f۶99ffff999fff9999ff9f9f9ff99f9ff99f 999f9f999ff9999fff99۶99ff9ff9f۶ff9f99ff99IїꗗH9999f99999ff9fff9999f99 99999f9ff99999ff99999f9999999f999!f999999IіꗖH 99f 99f99999999fff9999f999f99999fff 9999f99ff99999f999f9999f999ff9999999IЖꕖH f9 99ff9999ff 9ff9999f 9۶9f99 ff 9f99۶99f999999999f9999f999ff99۶999999IЕꕔH999 9999999f9999#f99999fff9999f9ff9ff9999999ff99999f999!99ff999f9IЕꔔH99fIЕH99IH99fI铓HIД铓HIДHIϔH99999I钒H99999Iϓ钒H99999IϓH99ff999f99f9f 9f 99999ffIϓH9f۶999f99999ff 9ff9ff9f fff9ff9ff9fIϓH99999 f999f99f99 999999f9f99999IH9f99999f999f99f99 999f999f9f99999fI鑑H99999۶99f999f99 f99 999999f9999999IϒH9-f99ff9f99999 99999999f9999999IϒHfIϒHIHfI鐐HIϑHIϑHIϑHff9999999999f99IϑH9f9999999999f999f9 99999IϑH9f9999999999999999 999999fIϑHf f9999f99f999f9ff99f9999999999ff۶9ff9IϑH99 ff99f۶fff9999f۶9999999f99f۶ff9f۶999999*99999f۶99ff9ffffIϑHf99f9999 9f999 99999 9999999999999f9 99ff9IϑHf9999999f999 99f9999999999f99f9f99f9999f 99ff9ffIϑHf99 f99۶9999999999999f999۶9 9999f9999f999999ff99IϑH f9ff999999 99999۶9ff99999f9f999999 999 ff9fIϑ荍H99Iϑ荍H99Iϑ荍H99Iϑ荍HIϑHIϑ茌HIϑ荍Hff99999ff9ۑIϑ茍H9f9999999999f999Iϑ茌H9f9999999999f999fIϑ茌Hf f9999f99f999f9ff99f999IϑH99 ff99f۶fff9999f۶9999999f99f۶ff9f۶9 99ffIϑHf99f9999 9f999 99999 999999f999f9IΑHf9999999f999 99f9999999999f99f999f999ffIΑHf99 f99۶9999999999999f999۶9 99 99۶9f9999IΑH f9ff999999 99999۶9ff9999 f999fIΐH99Iΐ牉H99IΐH99IΐHIHIΏ爈HIH9999999999999999999۵I͎燇H99999999999999999999 9999999999I熇H99999999999999999999999999999999fI̍熆H9fff9999f99fff9999f99f999f999991f9999999999f999I熇H999f۶9f۶999ff99999f۶9f۶999ff9999fff99f f9999992f9f۶f999999999ff 99f9ff9f9fǏHf9999ff9 9 999999ff99 99999f9999999f999f9f999999999f999f99IHf999ffff9f999999999ffff9f999999999f9999999f999fff99999999999f9999f99fI̋Hf99 999f999۶9999f9999f999۶9999f9ff99999999f999f9999f99999999f9۶999f9۶9I̋煅H f999f9ffff9999999f9ffff9999999999f999 999ff9f9999999ff999fffI煅H99f9Iˉ煅H999IH99fI愄HI愄HIʆ愄HIɆHIHIɅHIɄHIɃHIɃHIHIȂHIHIHIHIȁHIǁHIǁHIǁHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIǀHIȀHIȁ煅HԺIȁHIȁHIȁHIȁHIȁHIHIHa 6IH `66IH`66IȁH`66`IȁHIȁH\444IH[3[[IHZ 33IHZ3IHIHIHޱIHܱIH۱IHIHIHҸIHIHIHIHIHIHIHIHIHIHHHHHHHHHH}˯ߑƈ1#ݑň#%9ޑň,F5̞ޑň˕(9MC5##(8?TKC4,$+9?E8BIMPatt8BIMFMsk 2~x~x~xkeepasshttp-1.8.4.2/documentation/images/psd/keepass-context-menu.psd000066400000000000000000006456571306306563300257460ustar00rootroot000000000000008BPSv8BIM%8BIM$: Adobe Photoshop CS5.1 Windows 2013-04-14T16:48:53+02:00 2013-04-14T17:36:11+02:00 2013-04-14T17:36:11+02:00 application/vnd.adobe.photoshop 3 sRGB IEC61966-2.1 xmp.iid:EC3BA7BE16A5E2119D328B8B8974E535 xmp.did:EA3BA7BE16A5E2119D328B8B8974E535 xmp.did:EA3BA7BE16A5E2119D328B8B8974E535 created xmp.iid:EA3BA7BE16A5E2119D328B8B8974E535 2013-04-14T16:48:53+02:00 Adobe Photoshop CS5.1 Windows saved xmp.iid:EB3BA7BE16A5E2119D328B8B8974E535 2013-04-14T17:35:36+02:00 Adobe Photoshop CS5.1 Windows / saved xmp.iid:EC3BA7BE16A5E2119D328B8B8974E535 2013-04-14T17:36:11+02:00 Adobe Photoshop CS5.1 Windows / 8BIM: printOutputClrSenumClrSRGBCInteenumInteClrmMpBlboolprintSixteenBitbool printerNameTEXT8BIM;printOutputOptionsCptnboolClbrboolRgsMboolCrnCboolCntCboolLblsboolNgtvboolEmlDboolIntrboolBckgObjcRGBCRd doub@oGrn doub@oBl doub@oBrdTUntF#RltBld UntF#RltRsltUntF#Pxl@R vectorDataboolPgPsenumPgPsPgPCLeftUntF#RltTop UntF#RltScl UntF#Prc@Y8BIMHH8BIM&?8BIM x8BIM8BIM 8BIM' 8BIMH/fflff/ff2Z5-8BIMp8BIM8BIM8BIM08BIM-8BIM@@8BIM8BIMnullbaseNameTEXT BenutzerboundsObjcRct1Top longLeftlongBtomlongRghtlongslicesVlLsObjcslicesliceIDlonggroupIDlongoriginenum ESliceOrigin autoGeneratedTypeenum ESliceTypeImg boundsObjcRct1Top longLeftlongBtomlongRghtlongurlTEXTnullTEXTMsgeTEXTaltTagTEXTcellTextIsHTMLboolcellTextTEXT horzAlignenumESliceHorzAligndefault vertAlignenumESliceVertAligndefault bgColorTypeenumESliceBGColorTypeNone topOutsetlong leftOutsetlong bottomOutsetlong rightOutsetlong8BIM( ?8BIM H HLinomntrRGB XYZ  1acspMSFTIEC sRGB-HP cprtP3desclwtptbkptrXYZgXYZ,bXYZ@dmndTpdmddvuedLview$lumimeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ QXYZ XYZ o8XYZ bXYZ $descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view_. \XYZ L VPWmeassig CRT curv #(-27;@EJOTY^chmrw| %+28>ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km8BIM8BIM  Adobe_CMAdobed            " ?   3!1AQa"q2B#$Rb34rC%Scs5&DTdE£t6UeuF'Vfv7GWgw5!1AQaq"2B#R3$brCScs4%&5DTdEU6teuFVfv'7GWgw ?nv9IJۓuxu1QeޛBY 9c%n<-ik=+BY̫O'=T swh-Ѩ3+U[:7s .}? jh='A[:X#M:ƇmlapM&׀mrVMtiþ6ִ~XƆKd/ȣCEoT)Mb٣X[^Yn?'E/l"Ut=QAӱYn?'E#>͓B\#Ug:bmW E@=*,nnc{ESkcKmUSA>nW׈l?Igg;rS}if9{eE{0?X f,\&֥ΗM!yۯmF=m_Oe{}Fd_oS~ ,ǡch|czO Su}[_WP@21=졳#o\ǐ֗7Kw 6; 剑VՇ3NpӐܷVYO&{ѭSc+Ym{ks_Xv,mOf{_SFOrrT-F8YߴWi\eܕ* WOߒl վcPK/l~u?0ۆ묩Z]TlwƧRg>moǯ.OhZ㉒\ߢA$Ac۹ _2۝awu`v-gzU i4Zn y 9};.]_mMbߵվwSk"}}ۗMߓXfV-mkk1 kq M oO7# {[Ӯk_ 8sC=޷_R}8XkUuX\Z,TW,܏Tڎ)ũ}h͂[+k!eYkKmam?Ǹ9%&\us9G?IX?)?vYrG' ?Ÿ(G e-\ZΥuΣ2+®^փNwn49~o@͸Ck2l{Kr7Vi~Oٟ]6Vڟ hu cvu/Tۯtu/TۯuR~Cqڳ2>K~ϴw-?Siv1-u1޵g@q?~V]ogEvF7^F8] ;J~pxȿlُ7ҭeQW_kF]w9{5t?ǸwV۫v/UQzRVgwloCI'ngc!X%WfW֜|ْuN|jm̌n_cNUW9kʹv }z,*?e\.Uuv [EQu-KX}aP7KZ {pmRz2`J]ٕTk϶o[f,kv)`hm1[=7eXߢ:m<K'?%=Vqlh&Ékv3ު"_t6uۢ~:{.J`teUxZpel)}8\>كe_ r?Y]:w6;tp}Ϳi?"RKris+=:aW{[K 'sUYNV*5*:4TI%5rwyYl쫅9=s}a5h?󐨌-z/֢_ gӹ}A<|dFCN JF\Le,bƶTֆƷhkZvlkٵ,ِq"1gKl{i{=kw,}uY;҆ed:;Eհkm6ֆ[k;}OOgEߢkz<##̋^LI 9q/*5uV6YuS0K5ȯm^c?\X}uW߇i95C~VUo}J>ĒQCr1ݾ H-%cxm[Y;9>.@~;ikuȻYU;׾}P!;깮86}/UOǢObU$B![c1u6}Ne=ʛi?auov+2M2r7YY[]F}I$uL 2N56XvWV9ʽ_Ohȥ /X+grlu3.Wnn]/x6ݏw[k(U3E]Th&e濴uW}a縉)uxA:ioQħ*7@!c湕Y26,e# 2j6Քc-s_}tBgMe?⥦:o)$TI%5rwyEr__9ILinGuZH3ܭź~/dSMu.is-~]OU9;^V`ǷNm^]BuۇONߵ~o٭SYj6agufm{YnVR͝; ƚs6c۵͇},~G88vHigd5}?FDӍK8Yp$?gN7V?%$I8YpӍIICN7V?/gRDӍK8Yp]cUf.q2-ĽKXis=Y؃宯Ox\t:;c Z7=euZwYi_IpGRJTI%5r?!g,>umKݳ{O5{B,nVyƧ&[mn%yk~ d̀lr)~k*z^] ɯ9Xǵ=GSqq,}lad3uW,{eɫ?c=}#V484WK.ǻz=՟eA8}tu M>x/. kc{ۘ*sYV(K*rh;GO֬~ʀ槒`5Z|A6!cZXUl~6 Z^cj+vmVS6~&UG[Øln?٩~_U [uli%Z^XӬ9?tuϳk!S}wd3_e1E?"2׶k\cHg(ٷjt#IsSkَT-v}+_埢CRZ~}a. ]Lx,quO~;xJ:xT[Eo_N#'clvǓelmgSPⲺ-bS-&Uiaf7_u?2K^Z\^W?E}+]JnEb̜km6cd]C~9ַ)>Q^;k[Ok\?X?jCIpfΉ2wko٫Յne\)eZݡVSc˞FPz/Jv0iv1}eo-Ջ^=٭ewmis"-mn͟@JU:3X`~;-R:C'D8:PP_^6{NꝻOUM#2K+Tzx{q\ ~ڝ+!K/]_2RY}7Z犒STI%5rwy@uKE}VcoзݟA//眅D7 k 4m=7~k?O^J4"< .WqsfS̺ kI1÷5K*ޛm- mvzUKdCNߣo_V ^2`#8OUԮm_SK_]w;?H/ Q {-jMMbdkE}~K=3S6MM~_vIgvԜKӐFSf1-:Y_-8vdZ.nǿceƹ]o7r*;m{r^%2ޅ6w1I UY +Ti{Zkq^9;w[VG'~ѳqpW6o{SzѾK~3+{0qG|?cg/cg$hKhDI%53lT. c^5Umu=A=C7F̋+ղ}m=Q`Z{c ku~>YevUmv~ӷe7'ň̖Q߲c[?ٿPtr[[mimeHMfDBϳ)iڟNfA.uΠͭe K?cggz@Hp?ARY7Z犒STI%5r?!e׬XAaTTֳ~PGԹhmt rf֏=ʾU5dXDzԶ~l^9G?\P%z G6z}6Hu2\]y s\l{1R^.DC Nz|9}7{,SMb[s[CZ\Kҵ=".뱤k;Yw5XKݷ& x4Ne_Z2wa82F?]PSam9>7/Sd}fʡ+fb wknEXꍕ21cQ~ >1:;ǢkocXY=:?~VuٲQhm4{d?[:{]hu9!Xim]^+:S{qU97Xꍎ5Pq[},ّ2Ы-Y{zXZm= u-}w=ͪ*zVSyi\wzZ6/89C0r0qZ1cSέg u|LjupmGlcJ=D3^!s^zX.fq4c=)ѡcv {u/{k.77 ?蘉zWW|œǵac-p2<SmUa>cM-kZ4kZݵj-OKۗWN6_keY im;Va"r?E~Su!}Ч_ev1[krlǫqnȯNI{_uu۽^o$w$㸻u9V*wF݀0h !RK|?Əx  _gz"&zmOwmcU{)JM@:qCq{z}Fe{r(M宯OxZe-:.t{[wU궲v:kb@_B$ tTI%9lE/i?bF,?!/asʽFGo-Kov-OOJYBޙudd:s~Ln?*~}0Lu&W"1r-kqlt8kK?7c}/gc~oyoiFZL_ޝxU˜욽F}? 4tk+#%KHƀ׾몭c׾~֤D 62n#dzվͥmAc(wdnmҳ?4Zרp( ۫vF}ߣC=Z1m~ma;"m{w?nmnO^& frWأ_(^q?\lhn=, W^]F}X~ֳ:,ޫe'!1&/q춾VgrJFUlSGOmpבemfJ0dMaU/?bYWݾls߰-e=>-}LmV_-_^HʪnT Zͻn溿n܉m~Ю{V?nd_n G~ɧ-KM?o  8BIMnorm<(Ebene 28BIMluniEbene 28BIMlnsrlayr8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZT8BIMfxrp(.8BIMnorm<(Ebene 38BIMluniEbene 38BIMlnsrlayr8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZ08BIMfxrp<<?  .9.[akjG86?N4od[445**********TYQ445**********HGKQNOPOP34********-*******)VZZ.05*******-********UZY{zyw//0**********V\\4/0****7CDutqnpo*(!******LUW||uttw//.******N4bc[445**********O]Q445**********GHKPNPOOO43********-********S]W-/4*******-********P\Vxxxr~//0**********R[\3/0****3CDurrkqm*(!******FUUyzvnts/..******^Y˶_ٙٙd֯f֯::ϯ8` 8cccc cc88ccc񬇵԰c88԰ccc8 ` c c c8c88c8 88888888c8 b8bbӰ888b ```88b888b888Ӱ ٙٙٙٙٙٙՁ՗ҷԬ        '    |ˎ s t聈f eaaaaaaaa p```````` % 2qvǺytroopooprrsuvx}Ѿ}}{zywvutsrsstvy~%55555555555555552qg¸Ľ  6oPIyƿ ɺ#|xvtuvy{~-sBoľҀ uf&Ƽ ̸H-Ƶ~yrqqruy} o}tk屏!ÿ7 6Vitu{ؼ˰ڔy٦99 l 99Йڵ9 ڵ˸c999L999eeeeee9e99ڵeeڵe99 9A⫧ ee9e e e _'r9 e99999 99c@ܩڵ99e9eeڵ9ڵ9Q2νӵ[9ee99e999e 9eeڥ. l̷ΩSeg˪@"nh9Xɾh29bJT[`c[SF ee99 999 !# "999 99ڵ9: eee eeeeee 9ee' eڨ 9ڨL -9ڨ|VPj       Ž       ǣe9999zδ99 ڵoݑҘ9qt^99  ee99ee9 r˓s vϹ99eee9 9_de999 mၞ999 9op9999ڵ9qcjzyeeeee 9ee99ыa栎e qcc9 Sbo9        f^ جc 䮣ڢɊeeeu}9ڵeeztyeyocjne9e ee ee999eecץ]q ee9eeeeemћX9 99 e9e999etv9 9999999x溩me9e999vcfqeeeeee9eeee ޓ_術9e tbe9 R`v9ژ    ֥д̐w}{pj^ɒaθrɒuvJ!44]]] ]]44祙v람`wch\444 祁\\\oIJf3\\3y3 3 ԅv33 333œ țĵZZ 333ZZZZZZԑƟYے21چ֨؆÷ׇ     K_ /c`Q 2r<8tIu33)eeyt xoc/9eee999cץ9:9 eee 9m!x9eee 99et叀 x湨l  99ڸ vcfq}eeeeeeeee ޓ_矓e tbe9 R`v9ڇ      :<<  )AL{jrG9@@N8aaZ114**********T[Q335**********GGLPPQPNP34********-********U[Z,.4*******-********SZYzyxw~..0**********R]]3.0****6EFvuupsq)'!******JWWz}xtxy../******rlo؎99::::999::::::888999999888d99d99d 9999d99 999d88888dִ88d8dֱ8888ddd8d888dddd88ֱ88 8888 888d8d8888dd888d88 888c8d8d888d8888d8d88 88dd88 888ղ8ձ888c88888c888888cc88 88 cc888c88888c8cccc8888cՁ՗݁     x /n'E L@Nېېېېېېېې /W3&::::::::9+ffffffff6h B1k;|zwvwuvwvwz|{³~}|} &ffffffffi -8OZ·"o0z½*n'!müԀ oa"½>"°|{{|}YMm #<-Rgqz}˹o̼`99 B9oMv9999999ee\99999999i{rH=Fe9e99e99e 9999ee9e9e9eז_OG;j99e99e9eڵ9999eee9e 99ee1۵ee9e9999e9e9999e 99999c-e 9999e9e999e9999e 999e9d?eeee99ڵ999e9999e 999e99 R0s 999 ee999e9999 999*n9N,t9ɾ_99؆qs        <X[2fs;Gu999 Lg99999+Qn99999a9Ee9e999 99e9e9e9ee2(99e999eeee99ڵ999 99e,ee9eee999e 99e 999e ,e 9999e9999ee 99 999e-eeee99e999999ee999e 999ee. 9999e9eeee9999e9 99"/9,9+99           9999 9 99ee99 9 99999e 9 99e99 999eee 9 99e9e9 9 e999e9e 99999 99 9eee 9 9         Ž      Wu|W`߭SdV9e9e{99e99999ePJ999999999ee6L99e99 99e99 9999 e9ee9e9ee~|+)999eڵ99eee99 9999e99e 99e9K`Ve99e9999 999 99ee9e9e 9999:B> 9e 99e9999e9 99e9 999e 999e9 !# "999e9999e e99e9e9ee 999e9:999999999e e99999 999' 9 9L -99|VPj       Ž       uv qѾ`[999KavGeP3,Gxe99999999.T_oJ\LA8&p999999999I'SPeGbO,9 9999eڵ9ee9e9e9[M#7n~3=>99999eee9e 99e97  (29999999999ee 9999E +<e999 999999 999e9L /de99999 9999 e9999e 999e9K+'+;9e9e9 ڵ999999 99х- \ B $a9        Ĥ  99ee9V]e9999e999ee9!A|tj999ee999991,gGsk9999e9e999eڵ9e 9ee9999e9e:9,af e9999e999eee99eee9e9eڵ999eeT 29999e999999999e9e999999[ >`9 9999 99e9e9 99999999e999999d -V99999 9999e9 9999 e9999 999e9999]<4 )6e9999999ڵ999 99999ee9999 ޑ - d L 'k9    ؕfYZo99Umo899999Kƫi'))')*09d9999{r$888888d88dֱ8dc% A14888888 888dddd8dzɳ`8 8888 88d d8888888dمƿʱ8c88888c c88c8 888888՜ §8c8c88 c888 8888c8 ݫ˼8bb88888 b8Ӱ888록̩8򢞪866     K_ /c`T 2r<7rJ99T[e23*9999999 @yqj 9e99999e90,gEph/9e9ee99eڵ9e9 e9:8+^8;99eڵ99eڵ99eeee9e9 9eڵ9T 1 |999999999e999[ <;]9ee9e9e9999999ڹ9ee9d +U 99999999e9 99]<4 '499ڵ99999 ޑ + d L 'k9       OVR**+    ܪ ɛeeeeeee Ç9eeee9ee9eeee9爠eeee9eeeeeeܰO9 9ee99eeee9ee e9ee9e999eeeee~кxf9e9e9eeee9e9eeeee9e99 ee9ee~Ҫǟ؏99eeeeeee999e ee eee99 eee9ee9We9eee99 9e9eeee9eee9e eeeeef~}eee9e999e9e9ee99eeee9e eeee9_渺S9 9eee9eeeeee99 eeeJ먠wgKee Adobe Photoshop CS5.1 Windows 2013-04-14T16:48:53+02:00 2013-04-14T17:24:11+02:00 2013-04-14T17:24:11+02:00 application/vnd.adobe.photoshop 3 sRGB IEC61966-2.1 xmp.iid:E53BA7BE16A5E2119D328B8B8974E535 xmp.did:E53BA7BE16A5E2119D328B8B8974E535 xmp.did:E53BA7BE16A5E2119D328B8B8974E535 created xmp.iid:E53BA7BE16A5E2119D328B8B8974E535 2013-04-14T16:48:53+02:00 Adobe Photoshop CS5.1 Windows 8BIM: printOutputClrSenumClrSRGBCInteenumInteClrmMpBlboolprintSixteenBitbool printerNameTEXT8BIM;printOutputOptionsCptnboolClbrboolRgsMboolCrnCboolCntCboolLblsboolNgtvboolEmlDboolIntrboolBckgObjcRGBCRd doub@oGrn doub@oBl doub@oBrdTUntF#RltBld UntF#RltRsltUntF#Pxl@R vectorDataboolPgPsenumPgPsPgPCLeftUntF#RltTop UntF#RltScl UntF#Prc@Y8BIMHH8BIM&?8BIM x8BIM8BIM 8BIM' 8BIMH/fflff/ff2Z5-8BIMp8BIM8BIM8BIM08BIM-8BIM@@8BIM8BIMnullbaseNameTEXT BenutzerboundsObjcRct1Top longLeftlongBtomlongRghtlongslicesVlLsObjcslicesliceIDlonggroupIDlongoriginenum ESliceOrigin autoGeneratedTypeenum ESliceTypeImg boundsObjcRct1Top longLeftlongBtomlongRghtlongurlTEXTnullTEXTMsgeTEXTaltTagTEXTcellTextIsHTMLboolcellTextTEXT horzAlignenumESliceHorzAligndefault vertAlignenumESliceVertAligndefault bgColorTypeenumESliceBGColorTypeNone topOutsetlong leftOutsetlong bottomOutsetlong rightOutsetlong8BIM( ?8BIM H HLinomntrRGB XYZ  1acspMSFTIEC sRGB-HP cprtP3desclwtptbkptrXYZgXYZ,bXYZ@dmndTpdmddvuedLview$lumimeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ QXYZ XYZ o8XYZ bXYZ $descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view_. \XYZ L VPWmeassig CRT curv #(-27;@EJOTY^chmrw| %+28>ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km8BIM8BIM $\$ XICC_PROFILE HLinomntrRGB XYZ  1acspMSFTIEC sRGB-HP cprtP3desclwtptbkptrXYZgXYZ,bXYZ@dmndTpdmddvuedLview$lumimeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ QXYZ XYZ o8XYZ bXYZ $descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view_. \XYZ L VPWmeassig CRT curv #(-27;@EJOTY^chmrw| %+28>ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km Adobe_CMAdobed            \" ?   3!1AQa"q2B#$Rb34rC%Scs5&DTdE£t6UeuF'Vfv7GWgw5!1AQaq"2B#R3$brCScs4%&5DTdEU6teuFVfv'7GWgw ?Otc]UO/}B׽Wm9-9}7Ku\NL+C8gU @nGضQ~-sqQ8ؿ)V˕Wo_{)x>ŜE|oL%|oL+_bROU"?\EbgA8?? rzÓȥǏO~(>/ǧگ 1?=?oe~_{)ɕ}ȦCO `l3i\R~/Tƫ V%+okKR1zT %ۏb( p͂gUpȼh5m{=(?=[=]F̚r0c+ľƽ{C=7;]]g4 eX1 (ZjqA\5>b&#.. QH[8CEq(5YeLc*[[I57t + sKUۙץp>m,h6=ѧ~I}:[]\=5r&\ /=}_v{1oǦWvKO۟h'9 =n..NIk/pshwd;ңe}OT|7dΙfxc-V^pe~UeclQlZX77v{s꥗?,?/o}ڟU>psgeщԽLkmkH79vwlm6~V5zJ+9 :9_X3=;LUk7ΰ;ҵn3{^Sﮛ?3CrzKI̵mc^_"Ymŀۻ5;~ vN&c-&@a}UnwOثhrMU\7_O*buf2̑sZEvC&Um~q U fTq s\\C]3"3}XxOmNJ.sW_[b\p2P~q4u^wO7~kKf6M?iswn.crn=umgřWNWz۬Ӆsߜϴ6"^@W/s'z>JOWkUsȭY~];>6=6>_Jћ91s묇_wXfs?CIqmUgceUk찷cjsd%lgh~ _*2cg FFQۗ%3uJUa?]Tz?'Kg,P1/ʋCS8YލfK1GS?oks>=EY!b" #|_ ]՚܍[alݯ _4gKm.c-!=celg#-% ksme?3Gx?i\9n/K*TÑՙcC\1Y?H+5?1̥;+8 0c3FYo]Gu*-7c88˭f~YN=gG1/W](ͱֶ,iqY-\Jcs77!}c?@N`,.O+5d2멾46ko.`k1o_S?1]ɷF1Xìv+u=K.gogMe ՗u?iWrWL/<-=d͏`m04vWfk1h]ѱk˭]eZ=GbuQgspokթN-o~mv96zε,βmxhhȶ}hϧ뾿Wzg>=:}'xf}sz69հѹ!ۙm'ͩٔvduFjQoO֥hf&:&=^KP{r[_E[긠1kǾmOg?G/ҡ?iӓcdelsUL׻3`s_O_*MC2zKKpqw}1O{ձȺYP׵cKceL)%p[C~s~ѱkYW?U^:UfC. rѱ{Tпo\gcdL7semmcYg^ VZA{wYcYOSe}lRF5{cz5޷oz}̙g:#Ӱ0o>Vycc[Gsp ~ cKzvW; V[~KGl}6b?d:G'={#$⌷DvnOi5__]m}!*Un\ջ'9Jf/B=[upcݑ7vTZVY9 \KяX֛*P9g+H}ceBiuVHckw59?6J _Ju,9ޠ`6w"Mљ0ُ`sǫwwok?&e}BX,x3ݎTKg֧̿k/!C7g/MgӶ?Eq>t_eƷ;x-mMw߳{,kޯc?Ikn30# sewYUo|UYm`?}ѱߢlMuZI,nE1#kG{gfLw7FJtKf5f5689jsGO[=[T[6Z1C^8Mͱt'=E%\co$OV=oMan]E;=skjpoWINkw_nCw}H:廿5Z"fHݹ=n{֚I)ޏgR犜c9=۞N_MT[e-kDZX,mewwŤJs(n7هSks4vޓtk*1Zc *wRIH0q0*4V]. :^]XZKAgwD/KqK 9_?u?"cc c)zS.[??"?E:IR'Ȧ6"TILwȥ~EI$x[TfU\0X*ip~n@l5(??u?"1]I*kc=Klm -c\^ʷ=޽Y]~-'e]u,?3?H;\G%7~E-_c*]5ײ[ga{,=k%6M{um@n&2Њ5m_c)oY2Cc{cάշc}=W]}8e$ Zi;}V5}?K~VGxF#4V-X72 ~o܃քRGy_):0'A?KCkܹ|??c.Mwzާ;"u?a8$ޏkܖxsSfta Y;]~䶻˞o_?JV{=x-?rZ0_OfUCKkֿܹ%لwgІOܨ3[[2ja;@w{Vo_OfktFG\?K$u%z׺ﶍ§lfޕ{D3 I0X?}sܳZ0_Kfko':meeTkFRwO89΂ɍĽvsG_KfkYt;;wᷛw k}eG驳[el{I!͡cلZ_0C=clp\Zyc}f}H k7ߴÓ_ozqoz^_ODU[?8BIM!YAdobe PhotoshopAdobe Photoshop CS5.18BIM".MM*bj(1r2i ' 'Adobe Photoshop CS5.1 Windows2013:04:14 17:24:11&(.HH8BIMmopt4TargetSettingsMttCObjc NativeQuadBl longGrn longRd longTrnsbool fileFormatenum FileFormatPNG24 interlacedbool noMatteColorbooltransparencyDitherAlgorithmenumDitherAlgorithmNonetransparencyDitherAmountlong8BIM-msetnullVersionlong8BIMms4w8BIMmaniIRFR8BIMAnDsnullAFStlongFrInVlLsObjcnullFrIDlonguêFStsVlLsObjcnullFsIDlongAFrmlongFsFrVlLslonguêLCntlong8BIMRoll8BIMmfri%0%8BIMnorm H( Hintergrund8BIMluni Hintergrund8BIMlnsrbgnd8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZ0pw8BIMfxrpYT,K8BIMnorm<(Ebene 18BIMluniEbene 18BIMlnsrlayr8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZ0p^8BIMfxrp< UI8BIMnorm<(Ebene 28BIMluniEbene 28BIMlnsrlayr8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZQ98BIMfxrp:4,-7%,Y'#LjfD>#LPO3;91Pp[OPB<UJ'"B^IGEB@ND'+?hUOJF>QD:=((A>CCBFHJF|xx+01+,,HIB\XXW_\,3+/-+'8RNMO%ƴx%$%%$%%$%l%)[[)%s YYs% VV%sk)UU)S3SSSSښ3%QSSSSQ%%W,::+XNSSSN%%׊EALSSL%%`τݐ` JSSJ%%1>45čмML;ʮSS;%%DZHŷ0W>LNNML9ȫSS9%%WsZML9ɬSSS9%%3,ז55p~t+MNХMM~޴H9ˬSSSS¿9%%: (sj2MNммML~M~K;̰SЇS;%%39A=:^//+5h`2MNЂ NNMLL~~~|?ζ?%%+ j/ '_W*LѽNЂNNLL~~}~|ݳHO̿O%%QW740aV&#+ViZLмϼ MLLK~LK~K~}|{Ӟ%%Aן N9Mм L~~~}|{ M̗M%%Չulc[SMeMMNPQRSTUVWXXZXYZXWVUTSRQPNMMe%%_ĉkbZRf` %%։=9%%W)21)W%%  %%  %% %%%%%%%%]\]]\]\\]\]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]ɝw`666`]%%]WD66666`` ````]%%] Ee`6`66``66`````]%%] ^G`6`6`6```6````6`````````]%%] ɣId(6`````6`666666````` `6`6`66`````````66]%%] nGgK6`6`6` `6`66``6`6` ``6``6````````]%%] HIKa6666`66 `6`6`6`6` ``66`6```````6]%%] JL6 ```66`6``666``` `6`66`6``````66``]%%] ߌ```` `6`6````6```6`6``]%%]```66]%%]```δ]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]U]%%]UU]%%]Uy]U``66``]%%]Uy"U`6`66``]%%] Uy֞0U``66``]%%] Uyֺ'U `6``6```6```````6`6 ·`6```66`6`6``6``]%%] UުČ*U`6```66`6`666```666``6666`6666``/6666`6```666 `````;``6`6``6`666`66]%%] U?-U`` `6`6```6`` `6 6``6`6`6`6`66666`6``6 `6``````` `6``]%%]Uޭ"U ``6`6``666`66` `6`6``66`6`6`6 `6`6`6`6``6 `6``6`6`6 `666]%%] UލbU`%66````66`66`6``66` `6`6``666```6`6``6:```6````66`6````6`` ``;`66`66`66`66`66``]%%] UތhkU`6```66` `6 6``6 6`6`6``6 `````6``6``` `6]%%]UU``6]%%]U``΅]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]6Ϋ`6η666666`6Ϋ6]%%]6`666666666666666`66Ϋ6]%%]666666666666666Ϋ6]%%]66`6666`666`66 66``6`6666`6``66`666 ``666!6`6`66`66` ``66`666666`6``6`6666 `6`6]%%]6666`66`6`666·`6`66`666`666`6·6·`66`6·6```66·6`6 `6666!6666666`6·``666`6·666`6666`66666·6`6 66`6·`]%%]66 6666·666666666666·66666666666 666666666666 `666666666666666 6666 66·666666 666666 6666]%%]666666666666666666 66`6666666 66666666666 6```6666666666666 6666 666666`66666`66666]%%]6666666`666·`6666`666`66·`6`666·`6```66·`66 `6666!6`66`66`666· ```6666·`6`6`6666`666·`66`66·`]%%]66`6666666`666666 `6666`66` `66```6666`6 `666!6`6`6`66 ``` `66`66`666666`6 6666]%%]6`6κ]%%]66κ]%%]]%%]]%%]6`66 ```66]%%]6`6666666 666666]%%]666666 `666]%%]6``66``66`666`6`666`6 66``666`6`66`666`66``66666` 6``6`66666`6``66``66`666]%%]6'6`6`6`6·`6``6`666`6·6`66·`666`66666`6666·6`6``·6`6·66`6666`6666`66666·6`66"6`6`6`6·`6`6`6]%%]666$·66`6666666·6666 66666666666666666666666``666666 66·666666 6666666666!·66`66666666·6]%%]166`66```66666666 6666666666666`666666666``666666`6 666666`66666666,66`66```666666]%%]16`66`6`6`6`6666·`6`66·`6666`6`666666·`66`666·`666``6`6666`666·`6`6,6`66`6`6`66]%%]6 66`6666666 `66`6666 6666 `66`66`6`6`66`6666`666 666`666 66` 666666]%%]6Ϊ6β]%%]6Ϊ`6β]%%]]%%]]%%]666666666]%%]6666666666666666666]%%]66666666666666]%%] ``6` `6`66666``6` 66`666``666`6`66`6``66`6 ``666`66`6 6`66 `6`` `66666666`66`6``]%%] ``6`666`6·`6·6·`66`666`6`66·`666`66666`6666`66`6·6```66` `66666666`666 666·`` 6666`66`6666`6·66`6·6·`6]%%]6666 66666666666666666666666666666` 666666666` `66666666666 6666666666Ϋ` 66·66 6666666`66]%%]666`66666666666 `666666666666`6666666 666666666 6```666`666666666`6666 `666 666 66666666```]%%])``66`66·`6·`6`666 `66`66·`6666`6`66666`666·`6```6` `6666``6`'666`66·```66``6`6666·`666·`6`6]%%] ``66666 `6666666 66666666`66`66` `66```6666 `666 6`6 666 `6``666 66` `66`66``]%%]``6``]%%]``6666]߸%%]]߸%%]]߸%%]6ή]߷%%]666]߷%%]666]߷%%]6Ϋ`Ϋ`66]߶%%]`666 6``]޶%%]6666666666]޵%%]66`66`666666]ߵ%%]``6` 6``]޵%%]66```66`]޴%%]`]޴%%]]޴%%]]޴%%]]޴%%򿿾]]ݴ%%]]ݳ%%]]޳%%]]޴%%]]ݴ%%򾾽]66666666``]ݳ%%򾾽]666666666`]ݳ%%]6666666`6]ݳ%%]66666``6 6666666`66`66```66]޳%%]6 ·66666·66·`6666666`6·``6`6]޴%%]6666666666666`6666666666]ݴ%%򽽼]6666666666666666666666]ݳ%%򽽼]66·`66666·`66·`6``66`66`666·```66]ݳ%%]66`666`66`6666``6`6`66```6]ݳ%%]6κ]޳%%]]޴%%]]޴%%]]޴%%]]޴%%]]޵%%]]޴%%񺺻]]޴%%񺺹]]޴%%񺹹]]޴%%]]޴%%񹹺]]޵%%񹹺]]޵%%񹹺]]޵%%]]޵%%]]޵%%]]޵%%񷸸]]߶%%񷷸]]߶%%]]߶%%]]߶%%]]߶%%𶶷]]߷%%]]߷%%𵵶]]߷%%]]߷%%]]߷%%𴴵]]߷%%]]߸%%]V<<Vwpw]߸%%]?FHHF?葇]߸%%]SFjjFSuu]߸%%]><pp]%%]S>[[>Suu]%%]<==<䏈]%%]Q<<Qupu]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%]]%%𴴳]]%%𴴳]]%%𴴳]]%%]]%%ؒ]\]]\]\\]\]ܼ%%ͼ%3ԻۼǽȚ3c)Իۼǽ)Js%Իۼǽ֜%XjһڼȽQsj%))%Qp~hY%$%%$%%$%HVr~2 W'#Mf^>4#FLI 0 :4,OmZQO87SG&"A\IIC>?JH'(@fSMEB?HC8<('?>BA@FGIE{rv+01+,,IJE\XXY_],3+//+'5>@?Iƴx,,,l,-GG-,sEѳEs,CC,sk-AA-S3>ţwVwwVw>3, 9VVsVV9,,_/;;.` 3oVVVo3,,EB0mVVm0,,eԈe -jVVj-,,2A79ѐQQRQJKMNOSVVSONMLJI,,E]L4a@QQQQDEGHIQVVQIIHGFDC,,_ À"aRQQQQQEFGHJKRVVVRKJIGFED,,8/DºD-RڈQQQRڭňR QOPQSTVVVTSPON,,;'5RڈQQQRQRQQ׫OXXY[\]_ZVZ_ZVZ_]\\[ZX,,3;FCAl886D5RۭQQQڈ QQīPP徭hddghhikllmlmljhgfddh,,.}8'|-RQۭQQQڈP QQīPP'|ssuwy{|}|{{ywts|',,3_ͽ?<9vl1/<{aRQQQQQRQQ!QN \ \,,Au,%FA#&3TF1-A88<"";9>>@E=@<}xlh{~+01+,,FHDYSTU][,3+//+$.213ƴx333l32CC23s@@s3@@3sk2<<2S39{f{{f{9335ffwff533h2<<2hѕ.rfffr.33 EE+pffp+33 j㔘j(}{zmffmz|(33 7J@DTV ?>=;SffS:<==> 33EfVA}DUVV 9875QffP46778 33h$.hUUU ;:87RfffQ6799: 332nn1T UUTU  A@?ffUff>??@ 33< ;TUUUUV LLMMLLKIYfYIYfYHJKKL33 Adobe Photoshop CS5.1 Windows 2013-04-14T16:48:53+02:00 2013-04-14T17:29:28+02:00 2013-04-14T17:29:28+02:00 application/vnd.adobe.photoshop 3 sRGB IEC61966-2.1 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 xmp.iid:E93BA7BE16A5E2119D328B8B8974E535 xmp.did:E63BA7BE16A5E2119D328B8B8974E535 xmp.did:E63BA7BE16A5E2119D328B8B8974E535 created xmp.iid:E63BA7BE16A5E2119D328B8B8974E535 2013-04-14T16:48:53+02:00 Adobe Photoshop CS5.1 Windows saved xmp.iid:E73BA7BE16A5E2119D328B8B8974E535 2013-04-14T17:29:05+02:00 Adobe Photoshop CS5.1 Windows / saved xmp.iid:E83BA7BE16A5E2119D328B8B8974E535 2013-04-14T17:29:05+02:00 Adobe Photoshop CS5.1 Windows / saved xmp.iid:E93BA7BE16A5E2119D328B8B8974E535 2013-04-14T17:29:28+02:00 Adobe Photoshop CS5.1 Windows / 8BIM: printOutputClrSenumClrSRGBCInteenumInteClrmMpBlboolprintSixteenBitbool printerNameTEXT8BIM;printOutputOptionsCptnboolClbrboolRgsMboolCrnCboolCntCboolLblsboolNgtvboolEmlDboolIntrboolBckgObjcRGBCRd doub@oGrn doub@oBl doub@oBrdTUntF#RltBld UntF#RltRsltUntF#Pxl@R vectorDataboolPgPsenumPgPsPgPCLeftUntF#RltTop UntF#RltScl UntF#Prc@Y8BIMHH8BIM&?8BIM x8BIM8BIM 8BIM' 8BIMH/fflff/ff2Z5-8BIMp8BIM 8BIM8BIM08BIM- 8BIM@@8BIM8BIMnullbaseNameTEXT BenutzerboundsObjcRct1Top longLeftlongBtomlongrRghtlongslicesVlLsObjcslicesliceIDlonggroupIDlongoriginenum ESliceOrigin autoGeneratedTypeenum ESliceTypeImg boundsObjcRct1Top longLeftlongBtomlongrRghtlongurlTEXTnullTEXTMsgeTEXTaltTagTEXTcellTextIsHTMLboolcellTextTEXT horzAlignenumESliceHorzAligndefault vertAlignenumESliceVertAligndefault bgColorTypeenumESliceBGColorTypeNone topOutsetlong leftOutsetlong bottomOutsetlong rightOutsetlong8BIM( ?8BIM H HLinomntrRGB XYZ  1acspMSFTIEC sRGB-HP cprtP3desclwtptbkptrXYZgXYZ,bXYZ@dmndTpdmddvuedLview$lumimeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ QXYZ XYZ o8XYZ bXYZ $descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view_. \XYZ L VPWmeassig CRT curv #(-27;@EJOTY^chmrw| %+28>ELRY`gnu| &/8AKT]gqz !-8COZfr~ -;HUcq~ +:IXgw'7HYj{+=Oat 2FZn  % : O d y  ' = T j " 9 Q i  * C \ u & @ Z t .Id %A^z &Ca~1Om&Ed#Cc'Ij4Vx&IlAe@e Ek*Qw;c*R{Gp@j>i  A l !!H!u!!!"'"U"""# #8#f###$$M$|$$% %8%h%%%&'&W&&&''I'z''( (?(q(())8)k))**5*h**++6+i++,,9,n,,- -A-v--..L.../$/Z///050l0011J1112*2c223 3F3334+4e4455M555676r667$7`7788P8899B999:6:t::;-;k;;<' >`>>?!?a??@#@d@@A)AjAAB0BrBBC:C}CDDGDDEEUEEF"FgFFG5G{GHHKHHIIcIIJ7J}JK KSKKL*LrLMMJMMN%NnNOOIOOP'PqPQQPQQR1R|RSS_SSTBTTU(UuUVV\VVWDWWX/X}XYYiYZZVZZ[E[[\5\\]']x]^^l^__a_``W``aOaabIbbcCccd@dde=eef=ffg=ggh?hhiCiijHjjkOkklWlmm`mnnknooxop+ppq:qqrKrss]sttptu(uuv>vvwVwxxnxy*yyzFz{{c{|!||}A}~~b~#G k͂0WGrׇ;iΉ3dʋ0cʍ1fΏ6n֑?zM _ɖ4 uL$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km8BIM8BIM   Adobe_CMAdobed            " ?   3!1AQa"q2B#$Rb34rC%Scs5&DTdE£t6UeuF'Vfv7GWgw5!1AQaq"2B#R3$brCScs4%&5DTdEU6teuFVfv'7GWgw ?g jM7zlǐMΰz.o t;XbY[I6kc=[} ]׾K*CEtWmpp TWKwҝcF^^cv S3+{lgOYC]ޭac7Y?ejk1mauH>O;;PCZmQ{C c]~wzms}GcsFv#cZͰ;lam^Ema~9-s4hvMw 5m0 :Yo4!毴l5?ic=1=@c(gYkRx"ZAg5g6E/r,5W'~?oE8 X"ZԽ+ۓ=?l1F_16E?ݠڋ?j^'1gEWG*V2kHtFPqOUjYV˱Kqj=kkZ.;Cod|?I1H/&"a1.*ɷ3$i~+@40CoXlO_u9u6 $80d9k~o޺nO4^lgse"*J8#Mx|g3q8v-x8W_Mt3][P?RpïZ8[]ބZv9cmtLW҄}Ye-/m?}lgPkLz=G&d f''FÄωl{kkV8nX\j{\ckf[c=m]=Փ2Ϥ׆;UC}v V}^3rw*5pS^==_{X??(}[@[Cݏ+1F>5+ plG61׶|!l{ X{I~?o2Բ]ckX׆n7ngWebG{{st=?Iz9?:.]v9ԚsYոc}ߧWg_Υ\7 \}qc:voC͟~.)Wbts+~ _>O$?HOB3-8̲孱Ĺzͨ~_fPjsEff-~$]W*Iяkc |-?r%TG籅 2Ƶւl{67kv92k'ϳSG3u w>ZmwIŇk'6?Iz9?}\5^~KhK^welԊNnˇSccK &nֻ[;wOqG'^O%S#_}X1yhnzm_~@gVC=1CKX[ww=:FRW }[O% oѵlkVS:ٱWkwkݶv7Gbt 'QLy?r譳 unsǐޘznǣ-~}u@cw<ڟv%uڥ-r+?R彷}[Im.v1f]cNG*g֢YE7߱M7έcxɐ蟧|`k}Uu1DZŻ\>*I駾߭M4 }۠le7?? ~I27Zv[=gz"C m{Ueviwtnʣ"c-6ZQ\_fzU#<3O[fbXYR4,kQ~k&ưRրLWnzoPs`[K9v熮[ugatmK0{[~ݵos[[-ߛsF-U+uwiclclc붷zO𞚟& Jdh?0> pMױinȦmYUkknK{6]w鬢,P2;ꍎ=̑69sJD: ~J^3enͻ'}{\9=i Ҿ}-\Z7Y6m>Y'n3vOn;gMR׵2'ܰ/wnEb}W=}̯om^qFΓAE19 VƏLK94OX090qԚ $"n=7")=.wk@~?M_oT99:γGnN-]Y]>$hH0lh; k?Ri+}SvV Z\m?M?쏫l}cK)s}+ݾ7z5>z?S,8["uT<5h ,-^X8ɨWI-mbK4kenk=i)IStm6eKZv߹;=Vu>S\ y8#u[[.ؒI*m.Ƕ0W c$,/?Eu`k=ؿ>s)nEYV]u>ݻ?FZV-kIg³"uY9Eٸ[[EtRW};,XU5_H;D-۳`2*Y%sRW3e~ qzb}<#XcP-U^;/lsiuMѯ-] _}3D48l12GZo4\k͏uL.{zc}'#gJUGV+v5n`ٵLzCӧlNEYcYcIq;Zlz`oHcOg ]$uH,$qd{,~wENX& A@061ߘͭ E{:7Kuu.%p?ܷ-t?H M h]YX_ұާ7OObS6ƽc ۜm^o қ:.ִZ-34K:GLWLzm"coT=`cK)sA!T{X{*]zè7 ޳[C'W稒C P֏OD3h4AIac1m^fߥc.uV9kK]Uw?/\qzo[]Q-S%6:[J톖_첿c`y Z: åJluϹs];v͍fcwnG/EcT,yy{@.6<_OɏHa~P??_K2[m'qwU~ͻ=5i%5i?юʍ{lO_+I$~FgֿCя-~=g^s,\k팷;Bu`"lzc?5GֿW@ɘJ&1׃ۇ~@ RRrЙy.~Qȱmg?3ԧ't>dΝF۹Uޓ?_oPh[r32F5s2ݷv69cn>ORmu-u=oeM\B+Ee:{}F߽lg?AEVoOz{lj H~7~o4/wO,c=8f&e VbKFu9,`+KSVG߳c]ѦYZxxgg =vƵ?̳#,O_ݔY]N.E$3H{=6Q ';-⎳SL\͢j"յ?&?Ypq['%]{~[~Sӳ3=;X972+caҷv] ߦG+Tf( `F$:(w3wTgUf͠o~k;~v_k} ˮe,ƴ5մ ng_[[}&9Ƹ?FoMn6s^S=%<ػʫg;í Yev=O} [Ժn7NEm/_uմU[MzUw,EYL.nHv7/{=8ᵡX4qh7?RS?35εc?qccih?ʾe*>Cp,cvGk1ѽnk}*etm~&CHiHH6Ϳk9~>9Ϲ$Nn?$];u ؖ0 VNF%bmN~I_)K_fky`k=ؿ~1¯.*]2#Rt= up:ۍHٹۅn3XUskmY|W7N-Jmǯ|]<,n3s[kK=Uz_]7w:aWӻ{+ϡo>]tWYi}v>ήK Wc=j?>&Wּgf1-{\[>͔kH1m}UJ .__BXCK\1c*yw9boᵍ;ShmAߏMºlkFP]ͦe/{muUQjc1,}oJ{{.Kd13T=z>SUұfL0TT8[:Re>)>fUn6EW9*ݳ?--e Fo˽B۵dm]3_uI}|ٳ7#`u-{-cMcz GgU5qnVGB .{PsC6ͱ׾[ rjo=휷;{y cm?E͑-ijYa.pk@7ʆ{C]^Ӫ}mu2=g)W:f00`{!\km&ѿZGo~8nk8wlu_NKz_ZLJ7f٫w=_N]Rrtl;ƜF֋Zl7`mfX_m9FkzMBUM@{sݵoڳ[w׷5yV{-]j~v=W;׸Z5Ի4뱹lU?z_OJo~7}mnU$RֿCz1%Xʱ/$z`'kn}?v窖|$^?~FOYY>KmȝYӱՃ}&?H'5.-T~nUcٚYyp{6zN5lqJV&1¼׿ ̽mkmoޟtUU~ؓ┟Sn30K}H~w?5Z:1.5c(fs*j4kr_krkr_krm5Ͷ$ YPw4R#d]wxKxXߵ1[c꿩9sii"߻l?՚.4#iMv5Dw긥g%*L}a76繎k1kkOUk$ Oչ"m1ޕFn}}2S{BQw?=Dë[U-%;m,2Է[{-ڬA.{?ܱ>X1ZjYgHj~qWY]~Y1y8ˣA&%:?0D/@Mꥫx\^٨=63_G'zGGjΤ}1c 7?$ߦGGr|>|>#K?b]oI~UUߋ.z?*s*o}l}o4Vfms]^85Qr߬ ~'(kt7֌=0bzq{\-cV6ͬΟ[]vc15䵯\_ i}W_l> /ParagraphRun << /DefaultRunData << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> /RunArray [ << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> ] /RunLengthArray [ 2 ] /IsJoinable 1 >> /StyleRun << /DefaultRunData << /StyleSheet << /StyleSheetData << >> >> >> /RunArray [ << /StyleSheet << /StyleSheetData << /Font 0 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading .01 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> ] /RunLengthArray [ 2 ] /IsJoinable 2 >> /GridInfo << /GridIsOn false /ShowGrid false /GridSize 18.0 /GridLeading 22.0 /GridColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /GridLeadingFillColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /AlignLineHeightToGridFlags false >> /AntiAlias 4 /UseFractionalGlyphWidths true /Rendered << /Version 1 /Shapes << /WritingDirection 0 /Children [ << /ShapeType 0 /Procession 0 /Lines << /WritingDirection 0 /Children [ ] >> /Cookie << /Photoshop << /ShapeType 0 /PointBase [ 0.0 0.0 ] /Base << /ShapeType 0 /TransformPoint0 [ 1.0 0.0 ] /TransformPoint1 [ 0.0 1.0 ] /TransformPoint2 [ 0.0 0.0 ] >> >> >> >> ] >> >> >> /ResourceDict << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 1 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> /DocumentResources << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 1 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> >>warp warpStyleenum warpStylewarpNone warpValuedoubwarpPerspectivedoubwarpPerspectiveOtherdoub warpRotateenumOrntHrzn8BIMluni18BIMlnsrrend8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZ8BIMfxrpCkWlVVV8BIMnorm)(28BIMTySh(??@Z2TxLrTxt TEXT2 textGriddingenum textGriddingNoneOrntenumOrntHrznAntAenumAnntantiAliasSharp TextIndexlong EngineDatatdta& << /EngineDict << /Editor << /Text (2 ) >> /ParagraphRun << /DefaultRunData << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> /RunArray [ << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> ] /RunLengthArray [ 2 ] /IsJoinable 1 >> /StyleRun << /DefaultRunData << /StyleSheet << /StyleSheetData << >> >> >> /RunArray [ << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning false /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> ] /RunLengthArray [ 1 1 ] /IsJoinable 2 >> /GridInfo << /GridIsOn false /ShowGrid false /GridSize 18.0 /GridLeading 22.0 /GridColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /GridLeadingFillColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /AlignLineHeightToGridFlags false >> /AntiAlias 4 /UseFractionalGlyphWidths true /Rendered << /Version 1 /Shapes << /WritingDirection 0 /Children [ << /ShapeType 0 /Procession 0 /Lines << /WritingDirection 0 /Children [ ] >> /Cookie << /Photoshop << /ShapeType 0 /PointBase [ 0.0 0.0 ] /Base << /ShapeType 0 /TransformPoint0 [ 1.0 0.0 ] /TransformPoint1 [ 0.0 1.0 ] /TransformPoint2 [ 0.0 0.0 ] >> >> >> >> ] >> >> >> /ResourceDict << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> /DocumentResources << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> >>warp warpStyleenum warpStylewarpNone warpValuedoubwarpPerspectivedoubwarpPerspectiveOtherdoub warpRotateenumOrntHrzn8BIMluni28BIMlnsrrend8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZM8BIMfxrp0vVVV8BIMnorm)(38BIMTySh(??@a@2TxLrTxt TEXT3 textGriddingenum textGriddingNoneOrntenumOrntHrznAntAenumAnntantiAliasSharp TextIndexlong EngineDatatdta& << /EngineDict << /Editor << /Text (3 ) >> /ParagraphRun << /DefaultRunData << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> /RunArray [ << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> ] /RunLengthArray [ 2 ] /IsJoinable 1 >> /StyleRun << /DefaultRunData << /StyleSheet << /StyleSheetData << >> >> >> /RunArray [ << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning false /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> ] /RunLengthArray [ 1 1 ] /IsJoinable 2 >> /GridInfo << /GridIsOn false /ShowGrid false /GridSize 18.0 /GridLeading 22.0 /GridColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /GridLeadingFillColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /AlignLineHeightToGridFlags false >> /AntiAlias 4 /UseFractionalGlyphWidths true /Rendered << /Version 1 /Shapes << /WritingDirection 0 /Children [ << /ShapeType 0 /Procession 0 /Lines << /WritingDirection 0 /Children [ ] >> /Cookie << /Photoshop << /ShapeType 0 /PointBase [ 0.0 0.0 ] /Base << /ShapeType 0 /TransformPoint0 [ 1.0 0.0 ] /TransformPoint1 [ 0.0 1.0 ] /TransformPoint2 [ 0.0 0.0 ] >> >> >> >> ] >> >> >> /ResourceDict << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> /DocumentResources << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> >>warp warpStyleenum warpStylewarpNone warpValuedoubwarpPerspectivedoubwarpPerspectiveOtherdoub warpRotateenumOrntHrzn8BIMluni38BIMlnsrrend8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZp8BIMfxrpNVVV8BIMnorm)(48BIMTySh(???@d2TxLrTxt TEXT4 textGriddingenum textGriddingNoneOrntenumOrntHrznAntAenumAnntantiAliasSharp TextIndexlong EngineDatatdta& << /EngineDict << /Editor << /Text (4 ) >> /ParagraphRun << /DefaultRunData << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> /RunArray [ << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> ] /RunLengthArray [ 2 ] /IsJoinable 1 >> /StyleRun << /DefaultRunData << /StyleSheet << /StyleSheetData << >> >> >> /RunArray [ << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning false /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> ] /RunLengthArray [ 1 1 ] /IsJoinable 2 >> /GridInfo << /GridIsOn false /ShowGrid false /GridSize 18.0 /GridLeading 22.0 /GridColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /GridLeadingFillColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /AlignLineHeightToGridFlags false >> /AntiAlias 4 /UseFractionalGlyphWidths true /Rendered << /Version 1 /Shapes << /WritingDirection 0 /Children [ << /ShapeType 0 /Procession 0 /Lines << /WritingDirection 0 /Children [ ] >> /Cookie << /Photoshop << /ShapeType 0 /PointBase [ 0.0 0.0 ] /Base << /ShapeType 0 /TransformPoint0 [ 1.0 0.0 ] /TransformPoint1 [ 0.0 1.0 ] /TransformPoint2 [ 0.0 0.0 ] >> >> >> >> ] >> >> >> /ResourceDict << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> /DocumentResources << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> >>warp warpStyleenum warpStylewarpNone warpValuedoubwarpPerspectivedoubwarpPerspectiveOtherdoub warpRotateenumOrntHrzn8BIMluni48BIMlnsrrend8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZxE8BIMfxrp?;VVV8BIMnorm)(58BIMTySh(??@i2TxLrTxt TEXT5 textGriddingenum textGriddingNoneOrntenumOrntHrznAntAenumAnntantiAliasSharp TextIndexlong EngineDatatdta& << /EngineDict << /Editor << /Text (5 ) >> /ParagraphRun << /DefaultRunData << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> /RunArray [ << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> ] /RunLengthArray [ 2 ] /IsJoinable 1 >> /StyleRun << /DefaultRunData << /StyleSheet << /StyleSheetData << >> >> >> /RunArray [ << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning false /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> ] /RunLengthArray [ 1 1 ] /IsJoinable 2 >> /GridInfo << /GridIsOn false /ShowGrid false /GridSize 18.0 /GridLeading 22.0 /GridColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /GridLeadingFillColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /AlignLineHeightToGridFlags false >> /AntiAlias 4 /UseFractionalGlyphWidths true /Rendered << /Version 1 /Shapes << /WritingDirection 0 /Children [ << /ShapeType 0 /Procession 0 /Lines << /WritingDirection 0 /Children [ ] >> /Cookie << /Photoshop << /ShapeType 0 /PointBase [ 0.0 0.0 ] /Base << /ShapeType 0 /TransformPoint0 [ 1.0 0.0 ] /TransformPoint1 [ 0.0 1.0 ] /TransformPoint2 [ 0.0 0.0 ] >> >> >> >> ] >> >> >> /ResourceDict << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> /DocumentResources << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> >>warp warpStyleenum warpStylewarpNone warpValuedoubwarpPerspectivedoubwarpPerspectiveOtherdoub warpRotateenumOrntHrzn8BIMluni58BIMlnsrrend8BIMlyid 8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZ?8BIMfxrpDDRVVV8BIMnorm)(68BIMTySh(??@pP2TxLrTxt TEXT6 textGriddingenum textGriddingNoneOrntenumOrntHrznAntAenumAnntantiAliasSharp TextIndexlong EngineDatatdta& << /EngineDict << /Editor << /Text (6 ) >> /ParagraphRun << /DefaultRunData << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> /RunArray [ << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> ] /RunLengthArray [ 2 ] /IsJoinable 1 >> /StyleRun << /DefaultRunData << /StyleSheet << /StyleSheetData << >> >> >> /RunArray [ << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning false /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> ] /RunLengthArray [ 1 1 ] /IsJoinable 2 >> /GridInfo << /GridIsOn false /ShowGrid false /GridSize 18.0 /GridLeading 22.0 /GridColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /GridLeadingFillColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /AlignLineHeightToGridFlags false >> /AntiAlias 4 /UseFractionalGlyphWidths true /Rendered << /Version 1 /Shapes << /WritingDirection 0 /Children [ << /ShapeType 0 /Procession 0 /Lines << /WritingDirection 0 /Children [ ] >> /Cookie << /Photoshop << /ShapeType 0 /PointBase [ 0.0 0.0 ] /Base << /ShapeType 0 /TransformPoint0 [ 1.0 0.0 ] /TransformPoint1 [ 0.0 1.0 ] /TransformPoint2 [ 0.0 0.0 ] >> >> >> >> ] >> >> >> /ResourceDict << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> /DocumentResources << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> >>warp warpStyleenum warpStylewarpNone warpValuedoubwarpPerspectivedoubwarpPerspectiveOtherdoub warpRotateenumOrntHrzn8BIMluni68BIMlnsrrend8BIMlyid 8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZ 8BIMfxrpC4(VVV8BIMnorm%p(78BIMTySh$8???@rh2TxLrTxt TEXT7 textGriddingenum textGriddingNoneOrntenumOrntHrznAntAenumAnntantiAliasSharp TextIndexlong EngineDatatdta"n << /EngineDict << /Editor << /Text (7 ) >> /ParagraphRun << /DefaultRunData << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> /RunArray [ << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> ] /RunLengthArray [ 2 ] /IsJoinable 1 >> /StyleRun << /DefaultRunData << /StyleSheet << /StyleSheetData << >> >> >> /RunArray [ << /StyleSheet << /StyleSheetData << /Font 0 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading .01 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> ] /RunLengthArray [ 2 ] /IsJoinable 2 >> /GridInfo << /GridIsOn false /ShowGrid false /GridSize 18.0 /GridLeading 22.0 /GridColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /GridLeadingFillColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /AlignLineHeightToGridFlags false >> /AntiAlias 4 /UseFractionalGlyphWidths true /Rendered << /Version 1 /Shapes << /WritingDirection 0 /Children [ << /ShapeType 0 /Procession 0 /Lines << /WritingDirection 0 /Children [ ] >> /Cookie << /Photoshop << /ShapeType 0 /PointBase [ 0.0 0.0 ] /Base << /ShapeType 0 /TransformPoint0 [ 1.0 0.0 ] /TransformPoint1 [ 0.0 1.0 ] /TransformPoint2 [ 0.0 0.0 ] >> >> >> >> ] >> >> >> /ResourceDict << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 1 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> /DocumentResources << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 1 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> >>warp warpStyleenum warpStylewarpNone warpValuedoubwarpPerspectivedoubwarpPerspectiveOtherdoub warpRotateenumOrntHrzn8BIMluni78BIMlnsrrend8BIMlyid 8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZh`8BIMfxrpCrv"8BIMnorm<(Ebene 28BIMluniEbene 28BIMlnsrlayr8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZrkX8BIMfxrpUj=VVV8BIMnorm)(88BIMTySh(???@Z@2TxLrTxt TEXT8 textGriddingenum textGriddingNoneOrntenumOrntHrznAntAenumAnntantiAliasSharp TextIndexlong EngineDatatdta& << /EngineDict << /Editor << /Text (8 ) >> /ParagraphRun << /DefaultRunData << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> /RunArray [ << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> ] /RunLengthArray [ 2 ] /IsJoinable 1 >> /StyleRun << /DefaultRunData << /StyleSheet << /StyleSheetData << >> >> >> /RunArray [ << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning false /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> ] /RunLengthArray [ 1 1 ] /IsJoinable 2 >> /GridInfo << /GridIsOn false /ShowGrid false /GridSize 18.0 /GridLeading 22.0 /GridColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /GridLeadingFillColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /AlignLineHeightToGridFlags false >> /AntiAlias 4 /UseFractionalGlyphWidths true /Rendered << /Version 1 /Shapes << /WritingDirection 0 /Children [ << /ShapeType 0 /Procession 0 /Lines << /WritingDirection 0 /Children [ ] >> /Cookie << /Photoshop << /ShapeType 0 /PointBase [ 0.0 0.0 ] /Base << /ShapeType 0 /TransformPoint0 [ 1.0 0.0 ] /TransformPoint1 [ 0.0 1.0 ] /TransformPoint2 [ 0.0 0.0 ] >> >> >> >> ] >> >> >> /ResourceDict << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> /DocumentResources << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> >>warp warpStyleenum warpStylewarpNone warpValuedoubwarpPerspectivedoubwarpPerspectiveOtherdoub warpRotateenumOrntHrzn8BIMluni88BIMlnsrrend8BIMlyid 8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZ%E8BIMfxrp.mRVVV8BIMnorm)(98BIMTySh(??@` 2TxLrTxt TEXT9 textGriddingenum textGriddingNoneOrntenumOrntHrznAntAenumAnntantiAliasSharp TextIndexlong EngineDatatdta& << /EngineDict << /Editor << /Text (9 ) >> /ParagraphRun << /DefaultRunData << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> /RunArray [ << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> ] /RunLengthArray [ 2 ] /IsJoinable 1 >> /StyleRun << /DefaultRunData << /StyleSheet << /StyleSheetData << >> >> >> /RunArray [ << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning false /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> ] /RunLengthArray [ 1 1 ] /IsJoinable 2 >> /GridInfo << /GridIsOn false /ShowGrid false /GridSize 18.0 /GridLeading 22.0 /GridColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /GridLeadingFillColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /AlignLineHeightToGridFlags false >> /AntiAlias 4 /UseFractionalGlyphWidths true /Rendered << /Version 1 /Shapes << /WritingDirection 0 /Children [ << /ShapeType 0 /Procession 0 /Lines << /WritingDirection 0 /Children [ ] >> /Cookie << /Photoshop << /ShapeType 0 /PointBase [ 0.0 0.0 ] /Base << /ShapeType 0 /TransformPoint0 [ 1.0 0.0 ] /TransformPoint1 [ 0.0 1.0 ] /TransformPoint2 [ 0.0 0.0 ] >> >> >> >> ] >> >> >> /ResourceDict << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> /DocumentResources << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> >>warp warpStyleenum warpStylewarpNone warpValuedoubwarpPerspectivedoubwarpPerspectiveOtherdoub warpRotateenumOrntHrzn8BIMluni98BIMlnsrrend8BIMlyid 8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZó88BIMfxrpN$ VVV8BIMnorm)(108BIMTySh(??@f02TxLrTxt TEXT10 textGriddingenum textGriddingNoneOrntenumOrntHrznAntAenumAnntantiAliasSharp TextIndexlong EngineDatatdta& << /EngineDict << /Editor << /Text (10 ) >> /ParagraphRun << /DefaultRunData << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> /RunArray [ << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> ] /RunLengthArray [ 3 ] /IsJoinable 1 >> /StyleRun << /DefaultRunData << /StyleSheet << /StyleSheetData << >> >> >> /RunArray [ << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning false /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> ] /RunLengthArray [ 1 2 ] /IsJoinable 2 >> /GridInfo << /GridIsOn false /ShowGrid false /GridSize 18.0 /GridLeading 22.0 /GridColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /GridLeadingFillColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /AlignLineHeightToGridFlags false >> /AntiAlias 4 /UseFractionalGlyphWidths true /Rendered << /Version 1 /Shapes << /WritingDirection 0 /Children [ << /ShapeType 0 /Procession 0 /Lines << /WritingDirection 0 /Children [ ] >> /Cookie << /Photoshop << /ShapeType 0 /PointBase [ 0.0 0.0 ] /Base << /ShapeType 0 /TransformPoint0 [ 1.0 0.0 ] /TransformPoint1 [ 0.0 1.0 ] /TransformPoint2 [ 0.0 0.0 ] >> >> >> >> ] >> >> >> /ResourceDict << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> /DocumentResources << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> >>warp warpStyleenum warpStylewarpNone warpValuedoubwarpPerspectivedoubwarpPerspectiveOtherdoub warpRotateenumOrntHrzn8BIMluni108BIMlnsrrend8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZȮ8BIMfxrp@0aVVV8BIMnorm)(118BIMTySh(??@l02TxLrTxt TEXT11 textGriddingenum textGriddingNoneOrntenumOrntHrznAntAenumAnntantiAliasSharp TextIndexlong EngineDatatdta& << /EngineDict << /Editor << /Text (11 ) >> /ParagraphRun << /DefaultRunData << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> /RunArray [ << /ParagraphSheet << /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> /Adjustments << /Axis [ 1.0 0.0 1.0 ] /XY [ 0.0 0.0 ] >> >> ] /RunLengthArray [ 3 ] /IsJoinable 1 >> /StyleRun << /DefaultRunData << /StyleSheet << /StyleSheetData << >> >> >> /RunArray [ << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning false /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> << /StyleSheet << /StyleSheetData << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 4 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> /FillFlag true /StrokeFlag false /FillFirst false /YUnderline 1 /OutlineWidth .05759 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> >> ] /RunLengthArray [ 1 2 ] /IsJoinable 2 >> /GridInfo << /GridIsOn false /ShowGrid false /GridSize 18.0 /GridLeading 22.0 /GridColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /GridLeadingFillColor << /Type 1 /Values [ 0.0 0.0 0.0 1.0 ] >> /AlignLineHeightToGridFlags false >> /AntiAlias 4 /UseFractionalGlyphWidths true /Rendered << /Version 1 /Shapes << /WritingDirection 0 /Children [ << /ShapeType 0 /Procession 0 /Lines << /WritingDirection 0 /Children [ ] >> /Cookie << /Photoshop << /ShapeType 0 /PointBase [ 0.0 0.0 ] /Base << /ShapeType 0 /TransformPoint0 [ 1.0 0.0 ] /TransformPoint1 [ 0.0 1.0 ] /TransformPoint2 [ 0.0 0.0 ] >> >> >> >> ] >> >> >> /ResourceDict << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> /DocumentResources << /KinsokuSet [ << /Name (PhotoshopKinsokuHard) /NoStart (00 00    0=]0 0 0 00000000A0C0E0G0I0c000000000000000000?!\)]},.:;!!  0) /NoEnd (  0;[00 0 00\([{ 0) /Keep (  %) /Hanging (00.,) >> << /Name (PhotoshopKinsokuSoft) /NoStart (00 0   0=]0 0 0 0000000) /NoEnd (  0;[00 0 00) /Keep (  %) /Hanging (00.,) >> ] /MojiKumiSet [ << /InternalName (Photoshop6MojiKumiSet1) >> << /InternalName (Photoshop6MojiKumiSet2) >> << /InternalName (Photoshop6MojiKumiSet3) >> << /InternalName (Photoshop6MojiKumiSet4) >> ] /TheNormalStyleSheet 0 /TheNormalParagraphSheet 0 /ParagraphSheetSet [ << /Name (RGB - Normal) /DefaultStyleSheet 0 /Properties << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 8 /Zone 36.0 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /AutoLeading 1.2 /LeadingType 0 /Hanging false /Burasagari false /KinsokuOrder 0 /EveryLineComposer false >> >> ] /StyleSheetSet [ << /Name (RGB - Normal) /StyleSheetData << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /AutoKerning true /Kerning 0 /BaselineShift 0.0 /FontCaps 0 /FontBaseline 0 /Underline false /Strikethrough false /Ligatures true /DLigatures false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /NoBreak false /FillColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /StrokeColor << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> /FillFlag true /StrokeFlag false /FillFirst true /YUnderline 1 /OutlineWidth 1.0 /CharacterDirection 0 /HindiNumbers false /Kashida 1 /DiacriticPos 2 >> >> ] /FontSet [ << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 2 >> << /Name (Verdana) /Script 0 /FontType 1 /Synthetic 0 >> << /Name (MyriadPro-Regular) /Script 0 /FontType 0 /Synthetic 0 >> << /Name (AdobeInvisFont) /Script 0 /FontType 0 /Synthetic 0 >> ] /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 >> >>warp warpStyleenum warpStylewarpNone warpValuedoubwarpPerspectivedoubwarpPerspectiveOtherdoub warpRotateenumOrntHrzn8BIMluni118BIMlnsrrend8BIMlyid8BIMclbl8BIMinfx8BIMknko8BIMlspf8BIMlclr8BIMshmdH8BIMcust4metadata layerTimedoubAZ0X8BIMfxrp@@@E 61()!k #%03<X[zxzxWU$$$$#+Ond  1+Npd8?/-Zse#+i}  7/HNM~~~/3/-|d[H?SiH:(@SJ02)F`W02'))'''((Tjc+#%2&5:''''))''))(((('Ku_@:92H<,0''''))'-00,---,@D:fba^kf,4,,,-1/,8cdhj/yjZQ_q|ui$[[#Vkyxiô YYVkh ѵ VV纺ՖV P)බ TU#> &ķRSSSǓ&蹺 PSSSSP 񺼽 MSSSM KSSK ISSI˒EuGFGs:ĨSS;̒EЪGԭF GvuFuut8¥SSÿ9 ͓EGGF Gvuut 8æSSSÿ9͓EwwHH wծGԗGGvGvvu uFuFмEEsDǍj 8ŦSSSSÿ9"͔HGxwHGwvGGFG*GFҾutFFsE މ:ƪSʄS; ͔FHGHwծGGGvuGӬGuGututFEDǡA܉>Ȱ>͓EvHHH՘vԭGԗGGvuGӬututFEDŊi։MƹN͓EнGGGwvFGvuGGu0FѽtѼtϼtsErErECɉ}ÿΝ湹̒EЕGGGӗFӫҾGFFFѼEϼEͺ DDC ӉLǖMFͻ ҉ՌcLLMOPQRSTUVWWYWXYWVUTSRQPOMLLcE¿ωʸD͉񺼽Ή  񺺻͉񷸹ʉ ȉ𴵵ʉވˉ̝ٶؒJJJJٶ𴴳JJJJߵ𴴳JJ޶𵴴J̉J޵JJ޵JljJ޵ 񶵵JJJJ޴ 񶶵J9J 񷶶J9J 񷷶J955Jݳ 񷷶J999f99fff9_444JݳJ9ۏ99f9ۏ9999_44JJ9999999994샃444^4^^^44J 񸸷J99999 9f99^4^ɨ4 44^4Ƀ^^ 4Ƀ^JJ#fۏf999ۏf99f9|111||11111 |11JJ9f99f990z00zz0Wz00000 00Jݲ 񹸸J0/0zWںں0W00zWWzzW0zWںJ 񺺹JVy 0000yع00VVVy00JJJJJJJJJJЉJJJݳJJJJJJJJJJJJJJJJ߶JJJɝw:f:f::::۩JJWDf:: ::f::::::::::۩JJ Ee:::::::::::۩JJ ^G::f:fff:f::::fff:::fff:f::fff:f::::f:۶f:: f:f: :f::::::::۩JJ ɣId:f:ېff:::f:ېf::::ېff:::ېf:f:f::f:ې::f:%ff::ېfې::f:::::f: :::::ې::ې:f:::ېf۩JJ nGgK::::۶f:::::::::::::::::::f::::::::::::: ::::::ې::::::::::::::::۩JJ HIKaf:::::ffff::::::::::f::::::::fff:::::::::::::::f:: f::::: :::::::::۩J J JL::ېff:f1::ېf::::ېfff::ېf::f:::ېf:::2ff:f:fېf:::::f::f:f::f:ffېf:::f:f۩ J⼼J ߌ:::f:::f:::fff::::f::f::%ff:f::f::f::::f :f::f:ff::۩ J⾽J:JJ:JJJJJ J JJJJJJJJJJ JJ JJJ J JJJJ:f:::fff:f:JJ:::::::::::fff:::JJ:f::::::::ff:f:J J::::::ff::f:::f:::f::fff:f::f:::f:f::f::ff:fff::: JJ:::::::f:f:f:::f:f:f:::::::ff:f:::f:ېf:::f::::ې:f: :f:::f:ff::JJ:f::::::::::::۶f:::::::::::::::::::::::::: :::::::f f:f:JJ::::::::::::::::::::f ::::::::::::::::: :::: f::::::JJ:ff::f:::f:::f:f::::::f!:ff:::::ېf:f::::::ېf:: :f: f::f:f:J J: fff ::::::::::f:f:::fff::::::f::f::f: ::::::f:JJ fJJ :fJ J JJJJ :f::f::::JJ:::f::::f::::::JJ ::::::::::::JJ::f::f::ff::::f:f::f::f:f:ff:f::::::f::f::fJ J::f:f::::ېff::::::f::::ې:f: :f:::f:ې:f::f:ېf:ې:fېf::: :::f:JJ:::ې:::::::::::::::::::: :::: ::::f:::::::::::::::::::JJ::::: f:::::: f:::::::::: :::: :::::fff::::::!:::::::f::::JJ!:::::f:fېff: f::f::::::ېf:: :f::::ېf:f:::ېf:ېf:!fېf:::f:::JJ::::ff::::::f::f::f: ::: f::ff::::f:::::::::JJJ J J JJ J Jա J JԞ J Jԝ J Jԝ J JӜ J JӜ J Jӛ J JҚ J Jҙ J Jҙ J JҘ Jɝw:ff:::::f:::۞ Jї JWD:::f:::::::::f::::::۞ Jї J Ee:f::::::::::::::۞ Jі 졡J ^G: :::E::::f::f:::f::ff:f ::f::f::۶f۶f:f f::::f::::ff:f::۞ JЕ 졠J ɣId: :ې::ې:f:: :f::::f::ېfff:f::f:ېf:::f:ې:f::::f :f:::::::f::ېfff:f :ېf۞ JЕ 젠J nGgK:f: ::::::: :::::::::::::::::: ::::::::::::ې:::::::ې: ::::::::۞ JД 젟J HIKa:: :::::: :::::::::::::f::::: ::::'::f::f:::f::::::: :::::f:::۞ JД 쟞J JL: ff:ffېf::: :f:f:::ېfff:::::ېf::::ېf:#ff:f:f:f::::::::ېfff:: f:f۞ Jϓ 잞J ߌ:ff::f:f ::::::::ff: :::: f::f::f::f:::f::::ff: f::۞ Jϒ 잝J:ۼ Jϒ 읝Jf Jϒ 읜J Jϑ 뜜J Jϐ 뜜J Jΐ 뜛J JΏ 뛛J JΏ 뛚J JΏJ JΎJJΎ 뙙J J͎ 뙙J J͍ 뙘J J͍J J͌ ꘘJ::ff:f:: J͌J::::ff:::: J͌J:::::ff:f::JJ:::۶fff:fff::::ff:f::f:: ::J̋ ꗗJ::f:::ff:f:ff::f:ff:f:ې:::::f: J̋ ꗗJ :ې::::::f f:f::::::::::: J̋J::f:f::::::::::::::::JJ:::f:ff::f:f::ff::ېf:::: f::JJ::fff:::f::ff::f::: f:J̊J J̊ ꖖJ J̊J JJJJ ::::f:ff:J̉J:::::::::f::::::::::f:::::J̉ ꕕJ :::::::f:::::::::: J̉J::f::::f:f::ff:f:f :f::f:f:::#:ff:f::f::::ff:ff:: :ff: f:f::f::ff::f f:f::f::::ff::JJf:f:::f::f::::ې:f:f::::f: ::f:ې:f:::::ې:$f:ff:f:ې::::ې:::f:::: :f:::: f: :::: ::::::::::f:ې:ېfJJ:::::۶f::::::::f:::::: :::::: ::::::::: ::::::::::::: ::::::::: :::::::::::: :::::::::JJ:::::::::::::fff:::: ::::f::::::::: ::::::::::: ::::: : ::::: f::::: :::: :::::JJf:::ff::::::ېf::f::::: :::ېf::f:::ېf::ff::ېf::::ېf:::::::: ::::: ::: :::::ff:f::f::f:::ېf:fJJ:::::f::f::f:f:f:: f::f: :::f#:ff::f:::ff::ff::ffff ::ff:::ffff:f::ffff fff:f :ff::::f::JJff:f:f:fJJ:f:::fJJJJJJJJJJJJJJJJJJJJJJJJJJϪJJ ۹:ff::J 铓J âf::f::::JJ Ϲ'H6 ::::::JJ ܹ$iܩ:::ff::::f:::f:f:::f::::::fff:f:::JJ }0](f:::f:::f:ېf::f::::ې:f::f:f::f::::f:::::ې:ۺJJ "  :::::::::::::::::::::::f ::ې:: :::: ::::J 钒J  ݧ f:::::::::::::::::::::: ::::::f:::::J 钒J κ ېf:::ff::ېff::::::ېf:::ff:!f::::f:::ېf:JJ Ѧâ ::f :: :::::f::f::f:::::f::: :::fJJ ܺfJJΪ:J 鐐JJ 鏐JJ 菏JJ 莏JJ 莎JJ 荎JJ 荎JJ 茍JJ 茌JJ 苌JJ 芋JJ 牊JϪJ 牉J ۹:ff:::ۖJ 爈J Ƶâf::f:::: ::::ۖJ 燈J Ϲ鳽ž:::::::::ۖJ 燇J žܩ:::ff::::f:::f:f:::f::f::JJ f:::f:::f:ېf::f::::ې:f::f:f::::ې:ۜJJ :::::::::::::::::::::::f :::::J 熆J ݧ f:::::::::::::::::::::: :::::J 煆J κ ېf:::ff::ېff::::::ېf:::f::::ېf:J 煆J â ::f :: :::::f::f::f:::f:f:fJJ ܺfJJΪ:JJJJJJJJJJJJJJJJJJJJJJJJJˈJ JˈJJJJJJJJJJJJJJJJJwppppwJJ葉JJuuJJppJJppJJppJJppJ 愄JppJ 愄Jp5_55555_55pJ 愄Jp555555555_55555pJJp5^55555555555pJJp5 555^555555^55 55^ ^5^55.55^^^5^55^555^5^555 ^5^5 5^55^^^55555ɨ^ɨ^5^ ^55pJJp2!}}22}2}2}Yݾݝ2ݾ}}2222 Y22Y222}}}2}Y},22Y2}YY}2}2Y2}ݾ22}Yݾ2Y22Y}}}22YY222}}Y 2}2}22}YY}222ݾ}}2}Y2222Yݾ 2Y2}}2pJJp2}Y2}222222}}2}222 }222222}222}222$2ݝY2222222222}Y}2222 222222 222}}2}22222222}22}pJJp1111111{{11X{11111X{1111111111{111111111{X1{111 1111X{11 11{{11'11X{11X{111X{1ۜ1pJJp1!W{W1111{Wڻڻ1{W1W111{{{11W1{W1{Wڻ0{W111{WW{1W1ڻ11{Wڻ1111{W1W1{{{11{W 111W{WW{11ڻ1{W1#{WڻW1W1ڻW1{{W1pJJp1zWWz11111zWz11 1111Wz11/Wz11WW1ؚ111W11111عzWzؚ1ع1111 111WWW11zWz11W1ع1WzpJJpW1WؑpJJp111֑pJJpԁԑpJJpԁԑpJJpҁґpJJpсёpJJuρϑuJJ䏊JJuppppuJJJJJJJJJJJJJJJJJJwppppwJJ葉JJuuJJppJJppJJppJJppJJppJJp5_555_55pJJp55555555_55555555pJˇJp5^5555555555pJJp5 555^555555^55555^5545^55^^55555555^5^5^55^5555^5^ 5555^^^^55555ɨ^ɨ^5^ ^55pJJp2!}}22}2}2}Yݾݝ2ݾ}}2222Y22}Yݾ2}}}2}Y52}ݾ}}22}2}2}22Y2Y22}Yݾ2Y2Y222}}Yݾ2}2}2}22Y222}2}2Y222Y22}YY}222ݾ}}2}Y2222Yݾ 2Y2}}2pJJp2}Y2}222222}}2}222}2 22222}22222(}22222}2}222222}222222222}222222}222222 222}}2}22222222}22}pJJp1111111{{11 X{1111111111111)11111ۜۜ11111ۜ11111111 111111111X{11 11{{11'11X{11X{111X{1ۜ1pJJp1!W{W1111{Wڻڻ1{W1 W111{{{1{Wڻ1{W1{Wڻ51ڻ{W1111111{{{1{{{1{Wڻ111{{{11{Wڻ111{W111111 {W11{{{111W{WW{11ڻ1{W1#{WڻW1W1ڻW1{{W1pJJp1zWWz11111zWz111W11Wz1110Wz111111ع111111111111Wz11W11 Wzع1111WWW11zWz11W1ع1WzpJJp1ؑpJJp1֑pJJpԁԑpJJpԁԑpJJpҁґpJJpсёpJJuρϑuJJ䏊JJuppppuJJJJJJJJJJJJJJJJJJJJJJJ 燇JJJJJJJJJJJJJJJЉJJJJJJJJJJJJJJJJJJJJV<<VwppwJJ?FHHF?葇JJSFjjFSuuJJ><ppJJS>[[>SuuJJ<==<䏈JJQ<<QuppuJ苋JJ苋JJ苋JJJJ茌JJ茌JJ茌JJJJJJ荍JJĂJJJJ&ʔ۔̓&J#ʔٔ̓#7V ʔה̓BjOϣ ̔Ք͓̖=VteO##=T^~qeNC6@U^g9 a #%12?W[wyz{WX%$$$!)Pne3+Kk`6>.-Zrd#+i|  8-DLK{zy}-1--tkPG5Y`D8(BRK/3)H_X/3'))'''((Ujc,  -'4<((''))''))'''''Kt]B73.C<,0''''**',00,---,AC;db_\ie,4,,,-11,;hhhj(yjZ""""Q_q|ui#'GG&"VkyxiDɫ DVkh%BBߙ"V P, @@&> & =tVttVt=՗&" 9VVqVV9" " 3lVVVl3" "0jVVj0"" -{}~hVVh~|}-""IIJIBCEFGHQVVQHGFDC""I{I|K Jܳ<=?@ABNVVNBA@>=""IKܝIJ{I =>?@BCOVVVODCA@?>" "II|ȵ|K|KJ {J{JƝIIIڜxGGHIKLVVSVVMLJIH"!"J{޵KޞJ||JKJJ*ƝۜŲHؚwu QSTUWVWXWVWXVUTR""Jzޞ||KJ|{ܜI zyzyv a]]_``acddefedba`^^b""IݞJK|K|KJ|{J{IۜI"zyyxF%ullmoqstuvuttrpnmv%""IڜKJܝ |{ܝIJI{0ۜڜڜðsq٤ V|yy{|}~ }|zz}W""IJǞJ|JݞKI{{ܝIIۜI ٛHؚuD¿,| |,""ؚH¿ [1%%&'(**+,-./././.-,+**('&%%1\" "G ""G" " " """" """ ""ޣ""""VVVV""VV""VV""VV""V̌V""VV""VnjV" "VV" "VV""V99V""V99V" "V9955V""V99f9f9_44V""V9999999994444V""V9999999^44^4^4V""V9999 999냃44^^4444444V""V99999999111ݽ1ݽ11ݽ11ݽ111ݽ1V" "V999999W00ۻ000ۻ00ۻ000ۻ0V" "Vzz(0z0zzڛ00ں000ں0z0V" "V00عy00ع0ع00V""VV""VV""VV""VV""VЌV""VV""VV""VV""VV""VV""VV""V V""VV""VV""VV""V̧:f::::V" "VjZ: ::::::::::::V""V Zw:::::::::::V""V q\::f f:f::::f::::f:f:f::: :f:::f:f:::: ::: :::V""V Ϯ^v:::f:۶::::f:::::::::f::۶:::::$:::::::::::: ::::::::::::::::V""V \x`:::::fff::::::::::::::::: fff:::::::: ::::::::::::::::::V""V ]_`s:::::::::::::::::::::::::::::::::::::::f :::::::f:::V""V _af::::ff:2:::f:::::::::f::f:::::2::::::::::::: :::::::::::::V""V ♝f ::::f:::::::::::: :f::::::: :::::::::::: ::V" "V: V""V:V""VV""VV""VV""VV""VV""V V""VV""VV""VV""VV" "V V""V V""V:::f:V""V::::::::::::::V""V:::::::::::V""V:::::::::f:f:fff:::: :::f:::f::f::f:::::::f:f::: V""V:::::::f::f::: :::::::::::::::: ::f:::V""V:::::::::::::ff::: ::::::::::::::::::: ::::::::::V""V:f:::::::::::ff::f: ::::::::::::::::::f :::: ::::::f:V""V::::::::f::::f::: :::::::::::::+::::::::::f: :::ff::V""V:::::::::::f: :::::::::::::: ::::::::::fV""V fV""V ۢV""V V""VV""V :f::f::::V""V:::::::::::::V""V ::::::::::::V""V::f::f:f:::f::::::::::f:f:: :::f::fV" "V:::::::::f::::::::::: ::f:::::۶:::f::::::f: ::: V""V:::::::::::::::::::: :::: :::fff::::::::::::::::V""V:::f: ::::::::::::::f :::: ::::::::::!:::::::::::V""V!::::::::::f::::::::::::::f:::::f:::f:: :::f::::::: V" "V::::::::::::::: ::::::f::::::::::::::V""VV" "VV" "V V""V V߷""V V޵" "򾽽V V޵" "򽽼V Vݴ" "򽼼V Vݳ" "򼼻V Vݳ" "򼻻VV" "򻻺V Vܲ" "񻺺V Vܱ" "񺺹V Vܱ" "񺹹V Vܱ" "񹹸V̧f:::::f::: V۰""VjZ:::::::::::::::::: V۰" "񹸸V Zw::::::::::::::: Vۯ" "񸸷V q\::::::::::::f::: ::f: :::f:f::f::f::::::::: Vۯ" "񸷷V Ϯ^v::::::::: ::f:::::f:: :::::::::::::f ::::::::::f:: :::: Vۮ" "񷷶V \x`:: :::::: ::::::::::::f ::::: ::: :::::::::::::: ::::f:: Vۭ" "񷶶V ]_`s:f ::::f: ::::::::::::: ::::: ::: ::::::::f:::::f ::::::: Vۭ""V _a::::::: ::f::::::f:: :::::::::*:::::f:::::::::::f:: ::: Vڭ" "񶶵V ♝:::::: :::::::::: ::::::::::::::::::::: Vڬ" "𶵵V:f Vڬ" "𵵴VۏV" "𵴴V Vګ" "𴴳V V٫" "𴴳V V٪" "𴳳V V٪" "𳳲V V٪" "𳳲V V٩" "𳲲V V٩""V V٩" "𲲱VV""VVب""V Vب""V Vا" "ﱱVf:::: Vا" "ﱱV::::::::: Vا""V:ff::::::V""V :f:f:::f::::f::V""V:::::::::::::: ::Vئ""V ::f:::::::::::::::::Vئ" "ﰰV:::::::::::f:f::::::f Vئ""V:::::::ff:::::::::: ::یV""V:::::::::f:::::V""V V""V V""V V""VV""V ::::::::::f:::Vץ""V::::::::::::::::f::Vץ" "ﯯV :::::::::::::::::::::::: Vץ""V:f:fff:f:::::::::f :::ff ::::f::f:f:::::: :f::::: :::::ff:::: :::::::f:V""V:f::::::::::۶:::: ::::::::#::::::::::f:: :::f:: ::f:: :::::::::::::V""V:::::ff::::::fff:::: :::: :::::::::::::::: :::::: :::::: ::::::::V""V:::::ff:::::f:::::: :::f::::f::: ::::::::::: ::::::f:: :::::: ::: ::::::::V""V:f::::::::::::f:::: ::::::::::$:::::::::f::::f ::::f: ::ff :::::::::::::V""V::::f:::::f::::: ::::::::::::: ::: : ::: :::: :::::::V""V::::::fV""V:::V""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VЫV""V ۺf::V" "ﭭV ã:::::V""V кGcQ@::::::V""V ܾD@?ܩ:::::::f::f:::::::fff::::ff :::۹V""V K΢3::f:::f::::::::::::f:::::::::V""V 33 :::::::::::::::::::::ff ::: ::: ::::ۺV" "V ??=?ݨ ::::::::::::::::::f::ff::f:::::::V" "V λ>54>f::f::::f:::::$::::::::f:,:::::::::::V""V հãf :::::::::::::::f :: ::: ::::۹V""V ܻV""VΫV" "VV" "VV" "VV" "VV" "VV" "VV" "VVפ" "VVפ" "VVפ" "VV" "VV" "VЫV" "죣V ۺf:::V" "좢V ɺã::::: ::::V" "졢V к:::::::::V" "졡V ܩ:::::::f::f:::::::fff::::::ۛV""V ::f:::f::::::::::::f::::::V""V :::::::::::::::::::::ff ::::ۜV" "젠V ݨ ::::::::::::::::::f::ff ::::V" "쟠V λf::f::::f:::::$::::::::f::::::V" "쟠V ãf :::::::::::::::f::ۛV""V ܻV""VΫV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV֣""V V֣""VV""VV""VV""VV""VV""VV""VV""VV""VwppppwV""V葊V""VuuV""VppV""VppV""VppV""VppV" "잞VppV" "잞Vp55555_55pV" "잞Vp55555555555555pV""Vp555555555555pV""Vp5555^55 5^^5555^55^^^555555^55 ^^^55 555^ 5555^55^55^pV""Vp2ݾ222}YY}}Y2ݾ2222 ݾݾ222ݾ22ݝ2/2ݾ2ݾ22}Y2ݾ22}Yݾ222ݾ2ݾ 2ݾ2 }Y2222ݾ2Y}}Y2ݾ22ݝ2222}Y 2ݾ2ݾ2pV""Vp222ݾ2ݾ22ݾ2ݾ22222 2}ݾ2ݾ2ݾ22ݾ2ݾ22ݾ22(2YY2ݾ2ݾ22ݾ22ݾ2Y2YݾYY2} 2ݾ2ݾ2 22ݾ2ݾ222 2ݾ2ݾ22 ݾ2ݾ2ݾ22ݾ22ݾݾ22}ݾpV""Vp1X1ۼ1ۼ11ۼ111ۼۼ111X1ۼ1ۼ11ۼ1ۼ11ۼ111ۜXX1ۼ11ۼ11ۼ11ۼ11ۼXXX 1ۼ1ۼ1 11ۼ1ۼ1ۼ11 1ۼ111ۼ 1ۼ1ۼ11ۼ11ۼ1ۼ1XpV""Vp1 1ڻ1ڻ1ڻ11{W{{1ڻڜ11111ڻ1ڜ111ڻ1{11ڻ1ڻ1111ڻ{W1ڻ11{W1ڻ1"1ڻ1ڻ1ڻ1ڻ1ڻ11 {W1ڻ1ڻ1ڜ111ڻ1{{1ڻ*1{1ڜ11ڜ1{Wڜ111ڻpV""Vp11 1ع1ع1ع1z111 zz1ع1z11ع111ع11Wzع111ع1ع1ع11z Wzzz 1ع1ع 1ع1ع1ع1z1 1ع11z1z11z1zzpV""Vpع1ؑpV""Vpyָ1y֑pV""VpԁԑpV""VpԁԑpV""VpҁґpV""VpсёpV""VuρϑuV""V䏊V""VuppppuV""VV""VV""VV""VV""VV""VV""VV""VV""VwppppwV""V葊V""VuuV""VppV""VppV""VppV""VppV""VppV""Vp555_55pV""Vp5555555555555555pV֢""Vp55555555555pV""Vp5555^555555555555555 5^55555 5^5555555^^ 5555^55^55^pV""Vp2ݾ222}YY}}Y2ݾ2222ݾ22}Y2ݾ22ݝ25}Y2ݾ222ݾݾ22}Yݾ2ݾ2ݾ2}Y22ݾ2ݾ22ݾ2 2ݾ2ݾ2ݾ2222ݾ2Y}}Y2ݾ22ݝ2222}Y 2ݾ2ݾ2pV""Vp222ݾ2ݾ22ݾ2ݾ222222} 2ݾ2ݾ22ݾ2ݾ22ݾ(2ݾ2ݾ2ݾ222}2}ݾ22ݾ22ݾ22}2ݾ2ݾ2ݾ22ݾ2ݾ22ݾ22ݾ2ݾ22}22ݾ222 2ݾ2ݾ22 ݾ2ݾ2ݾ22ݾ22ݾݾ22}ݾpV""Vp1X1ۼ1ۼ11ۼ111ۼۼ111X 1ۼ1ۼ11ۼ1ۼ11ۼ1 1ۼ1ۼ1ۼ11XX11ۼ11ۼ1X1ۼ1ۼ1ۼ11ۼ1ۼ11ۼ11ۼ1ۼ1X11ۼ1ۼ11 1ۼ111ۼ 1ۼ1ۼ11ۼ11ۼ1ۼ1XpV""Vp1 1ڻ1ڻ1ڻ11{W{{1ڻڜ111111{W11ڻ1{1L{W1ڻ1ڻ1ڻ1ڻ111111{W1ڻ11ڻ1ڻ11{W1ڻ1ڻ11ڻ1ڻ11ڻ1ڻ11ڻ1ڻ11ڻ1ڜ111ڻ1{{1ڻ*1{1ڜ11ڜ1{Wڜ111ڻpV""Vp11 1ع1ع1ع1z111zz ع1ع1ع1111(1ع1ع1ع11zzzz1ع1ع1ع1zz1ع1ع1ع1ع1ع1 1ع11ع1zz11ع1z1 1ع11z1z11z1zzpV""Vp1ؑpV""Vp1֑pV""VpԁԑpV""VpԁԑpV""VpҁґpV""VpсёpV""VuρϑuVա""V䏊V""VuppppuV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VЌV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VwppwV""V˔葈V""V̎uuV""VppV""VppV""VppV""VppV""VppV""Vp5pV""Vp55pV""V5p55pV""V5^p5^5^5pV""V2 2Y}}Y2ݾ2p2 2ݾ22 2ݾ22pV""V2ݾ2ݾ22p222ݾ222pV""Vۼ111ۼp1 ۼ11ۼ111pV""V{Wڜ1ڜ1{{1ڻp{1ڜ11ڻ11 1ڻ1pV""VWz1عpzz11ع11pV""VppV""VppV""VppV""VppV""VppV""VppV""VÎuuV""Vđ䏈V""VuppuV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""ҍVVVV""ַۦ͸"&ʮۮ̭ޟ&J'ʮٮ̭ޟ'7V" ʮ׮̭۟ę"BjOۺ ̮ծͭߟ֙=VteO"''"=T^~qeNC""""6@U^g7H #%02:UUtuvuWU$$$$!)IiY  0)Gd\8@-.NgZ#+[yp7/CIJ|yyy-1..t_Q<*SfD7(<OE03)A[Q03'))'''((JaX/$5;''''))('))(((('AgR0/&>6+/''''**',00,---,<B9__\Zic,4,,,-11,?kjjn$yjZ''''Q_q|ui(+CC*'Vkyxi??Vkh*??'VP0 ;;*> &8xfxxfx8&' 4fftff4' ' -~offfo~-' ' *{ymffmyzyz|*' ' 'usjffjststv'''MML  7653PffP35668 ''MNM10/-NffN-/0012''MMMNMM 320/NfffN/02234 ' 'LL MMNMMLMϻLM LL 987ffRff7889:9: '*'M悁MNMNMM+LMMLLLM~EDCAVfVAVfVACDDFE''NMХMN NMMMLLKUQPOMOPQRU''΀NMM M NMMMMLKK maa`_]_`abm ''MLMNMNNM0MMM~LKKT{qmlkiklmq|U''LNMMMN NNMLMLLMLMKJ'x x(' 'LM T' !""$%&&'& %$""! 'U' 'KL ھ''KL ؾ''־'' Ծ'';'' ˾''Ⱦ''ƾ''''韉aaaa''aa''aa''aa''a̕a''aa''aǕa' 'aa' 'aa''afb''affb' 'a9`5b''a99ff_b''a f999_b''a99444샃4b' 'a9ff944^4냃44냃^b' 'afffff||||1||||1||||b' 'af9999zۻ0zzzzۻ0zzۜ0zzzWzzb''a000z0ڛWWzzڛ0zW0zb' 'a0 yVy0yy00yyؚ 0y0yb' 'ab''ab''ab''ab''aЕb''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''a:ffb''a ϒb''a  ffff:f:ffff:: ff:::ff: ff::::b''a Ֆ:::f::::f::::f:ff:: :::f:ff:fb''a ᪔⧗f:f :fې::::: :: b''a 镖ff::: f:fff:f:fffffb''a 𻗘:f :fff: :ff:ff:f:fff::ffff:ffff::f:b''a 麽ff:f:ff:":::f:::::f:::::۶f::b''ab''ab''ab''ab''ab''ab''ab' 'ab''ab''ab''ab' 'ab''ab' 'ab' 'affb''afff b''affff b''a:ffff:: f:#f::ffffffb''af:: :ff::ff :: : :::ff::fffb''a:ff:::f fb' 'afff:ff:fff::fb''affff :f:f::ff : ff:::ffffb''a:f::::۶f:f:f::: b''a ffb''a f:b''a b''a b''a b''affb''a  b''a ::ff:f::ffff:ff: f:ffb''aff:f:: ::ff:: ::f::f:::b''a:::: :fې:b''aff::ffff f:f : b' 'a::fff::ff f f::: ff:f::ffb''a:۶f:::::f:: f:f:::b''a b' 'ab''ab''a b''ab''ab''a b' 'a b''a b''ab' 'a b''a b' 'ab' 'ab''a b''affb''a ϒf b' 'a :#::ffff f:ff:::ff:f: b' 'a Ֆ f::f :ff::::: :f: ff:ff::: :f b''a ᪔⧗:::f::b' 'a 镖ffffff:::fffff b''a 𻗘 ff:ffff:::ff::f f :fffff:ff::f::::f f:b''a 麽!:f:::::۶f:::: f:::f:: ::f::: ::b''af b' 'a:b''a b''a b''a b' 'ab' 'ab''a b''ab''ab' 'ab''ab''a b''a b''affb''a:ffb''a:fffffb' 'af:ff: :f ::ۋb''a :fffff:::: :ff b''afff f::ۊ b''a ::::fffffb''a fff :ff:::f f::b''a:f:: ::ۋb''a b''a b''a b' 'ab''a fffffffb''a:ffffffffb''a ffffffff b⿿''af:f::f f:f:: f:::f:fffffffff f:fff:fffffff: ff:f:b''a :ff:::ff:f :ff :::ff:: ::::ې ::ff::ffff ::ff:::::::fb''af:::f:::::ې ffffff fff::::b''af:ffff:ff:ffff:ې fffff ff::fffb''a : ff::f f ::ff f$:::fff f:fff:::ff f:fffffffff:b''a:f::ff f::: ::::fff:ffffff: :fffff:ffff ffff:: :f::::b''af:fb''af۸ffb''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''aЫb''a ۺb' 'a şã:ffb''a к`xfXb''a ]\Wܩffff:f::ff::f f:b''a _H::: : f:::ff:ffff:: :::b''a GHf::ff ::b' 'a W]]Xݨfffff:ff :fb' 'a λWJJW:f: :ff: ff::f:ff::fff fb''a ׹ã ff ::::f::::::: :b''a ܻfb''aΫfb' 'ab' 'ab' 'ab' 'ab' 'ab' 'ab' 'ab' 'ab' 'ab' '򾿿ab' '򽾿ab' '򼽾aЫb' '񼼽a ۺb' '񻻼a Ϳã:ffb' '񺻻a кb' '񺺻a ܩffff:f::fff:b''a ::: : f:::ff:ff:b''a f::ff:b' '񹹺a ݨfffff:fb' '񸹹a λ:f: :ff: ff::f:fb' '񸹹a ã ff ::::f::ff:b''a ܻfb''aΫfb''ab''ab''ab''ab''ab' '񸸷ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''awppppwb''a葊b''auub''appb''appb''appb''appb' '񸸷appb' '񸸷appb' '񸸷ap텅_텅pb''ap^pb''ap5^^5555Ʉ ^^55넄^^^^^넄 55^^^ ^^ 555^^55pb''ap}Yݾ2}2}2}}222}}}} Y}Y}}}} 2ݾ2}}Y}2})}}ݝ2}2}YݝY}22}}}}2}}}}2ݾ2}YݝYY}Y}}2ݾ 2}2}2}}}ݝ2}}}}22}}Y}}}2} Y}Y2}}pb''ap}}2}}}}}}}}2}2}}} }}}}}}}2}}}}}2}}}} Y}}}Y}}}}} 2} 2Y}}}}}}}}}}}}} }}}}2}2}}}}}}}Y}}}2pb''ap{X{X{{{{{ۼ1{{{X1{{ X{{{{1{{X{{{X{{{X1{{{{{{{X{XX1X{{{{{{{{{{1{{ {{ۼ1{{{X{{1{ۜ1{{1{{X{Xpb''ap{!W{W{{{{{{11ڻ{WWW{{{{1ڻ1{{{{WW{ ڻ{W1{0{W{{{{ڜ1{{ڜ{{W1{{{{1{{{{{{Wڻ{Wڜ{{1ڻ1{{{ڻ 1{{{{{{WW{ڜ1{{{{1ڻ{W 1{WW{ڜWW{{W1WW{{1ڻ1{Wpb''apzؚ1zzzzzzzzz111zz 1zzzz1z 1z1z 1zzzzؚzzz1zؚWzzzzzzzzz1ؚ11zzzz zzzzzzz1zؚ ؚWzzz11z1z1zW1zz1 z1ؚ1pb''apWzzWؑpb''apVyyV֑pb''apԁԑpb''apԁԑpb''apҁґpb''apсёpb''auρϑub''a䏊b''auppppub''ab''a b⽽''ab''ab''ab''ab''ab''ab''awppppwb''a葊b''auub''appb''appb''appb''appb''appb''appb''ap_텅pb''ap^pb''ap5^^5555^^^5,^^5^^Ʉ55Ʉ^넄5^^^^^5넄 ^ 55 555^^55pb''ap}Yݾ2}2}2}}222}}}Y}Y}ݾ2}2ݾ2}}Y} }222}2}2}2}Y}YY}Y}}2}}}Y}Y}}2ݾ2}2}2}}2}}}2}} 2}}Y}Y}}}}ݝ2}}}}22}}Y}}}2} Y}Y2}}pb''ap}}2}}}}}}}}2}2}}}}}}}2}}}}}}Y} 2}}}}}}} ݾ}}}}}}}}}}}}}}2}}}}}}2}}}}} }}}}2}2}}}}}}}Y}}}2pb''ap{X{X{{{{{ۼ1{{{X1{X{{{{{X{{{{X{{{{{{XX{{{X{{{{{{{{{{{X{{{{{XX{{1{{ {{ۼ1{{{X{{1{ۜ1{{1{{X{Xpb''ap{!W{W{{{{{{11ڻ{WWW{{1ڻ1{ڻ1{{ڻ{W1{{W1{W{{{{{{{1ڻ1{1ڻ1{{1{{{1ڻ1{{{ڻ1{{{{{{ {W{{{{{{{ {W{1ڻ1{{WW{ڜ1{{{{1ڻ{W 1{WW{ڜWW{{W1WW{{1ڻ1{Wpb''apzؚ1zzzzzzzzz111z1Wzzzzؚ1z1zz1zؚ1zzzzzzz11zzzzzzzz1zzzzzzzzzzz1zzzzWzzzz 11zz1zؚ ؚWzzz11z1z1zW1zz1 z1ؚ1pb''apzؑpb''apy֑pb''apԁԑpb''apԁԑpb''apҁґpb''apсёpb''auρϑub''a䏊b''auppppub''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''ab''aЕb''ab''ab''ab''ab''ab''ab''ab''ab''ab''aԺʱwppwb''a葈b''auub''appb''appb''appb''appb''appb''ap5pb''a5_p5pb''ap5pb''a 555p넄5넄pb''򾾽a2} 22}}p}}}}22}pb''򾾽aY}}}}}2}2p}}}}}2}}pb''򾾽aX1{{ۼ1{{{Xp11{{{X{pb''a1W{WW{1ڻ{Wp 1{ڜWW{{ 1{W{{pb''aW1zz11p11zzؚ1zzpb''appb''appb''appb''appb''appb''򿿾appb''auub''a䏈b''aҸʱuppub''ab''ab''aa''aa''aa''aa''aa''aa''aa''aa''ߗaaaa'''&ǦƜ&J*Ǥ*7V' Ǣԝ'BjO ǡ=VteO'**'=T^~qeNC''''6@U^g  3wff3wDDDDDDDDDDDDff3wTTTTTTTTTTTTTTTTTTTTT   Uww3wwwww3ww3"U""3wDfDDff3wUTTTTTTTTTTTTTTTTTTTTT     wwD3DwwDff"wwww33DwDf"wf"wwf3Df3UwTTTTTTTTTTTTTTTTTTTTT   wfDw "  "3UwwwUUwwfTTTTTTTTTTTTTTTTTTTTT   ww3Uw"wDwww33U"UwTTTTTTTTTTTTTTTTTTTTTffDwfwww3DUD"DUwD"wwwDDDDwU3D"f"ff"ff3f"Df3w"UwwwwUTTTTTTTTTTTTTTTTTTTTT ""w"ww""""DwDwfwffwfwDTTTTTTTTTTTTTTTTTTTTT=  46..#j""b&:6Ihfy~MP&+a%!&<MH+*#'AUN57#'Yzg!04_86/&;0#""&/ $#,+*.OVR%")'"qr!!)"'#BKL""\w?./-A8&*u~+,/WU &0/<JBnuqnpm#%-11,,,,,@D;gb`]kg,4,-,,1/-<fgjk*yjZQ_q|ui$[[#VkyxiYYVk h Ѵ UV纺ՖV P)බ TU#>&ķRSSSǓ& 蹺 PSSSSP湹 񻼽 MSSSM湹  KSSK湹 ISSI˒EuGFFs:ĨSS;̒EЪGԭF GvuFtut8¥SS¾8 ͓EGGF Gvuut 8æSSS¾8͓EwwHH wծGԗGGvGuvu uFuFмEEsDǍj ۉ8ŦSSSS¾8"͔HGwwHGwvGGFG)GFѽutFFsE:ƪSʄS: ͔FHGHwծGGGvuGӬGuGututFEDǡA >Ȱ>͓EvHH՘H՘vԭGԗGGvuGӬuttsFEDŊiMƹN͓EнGG GwvFGvuGGt/FѽtмsϼtsErErEC~¾Ν~混̓EіGGGӗFӫҾGFFFмEλEͺ DDC މLƖLFͺ ߉֍cLLMOPQRSTUVWWYWXYWVUTSRQPOMLLcö E¿݉ȶDۉ ى  񼼾߈ډ 򺻻ۈ؉ 񹹺و։ֈՉш؉ 񸸷ٓ̕JJJJشJJJJJJJJJJݳ񹹸JщJݳ񺹹J@JݳJJJ99JJf999JJ5f99JݲJ49999f9fff99JJ4f9f۶9 99f9ۏff9ۏfJJ444^44^^^4999ۏ9999999JJ4Ƀ44^4Ƀ44449999f9999999JJ111|111|1119+9f9f99ۏfff9fJJz00000 0Wz00f 999999fff99JJ#WzW000zW00W0J񻻺Jy0Vy00Vy0ع0JJJJJJ8JJJJωЉJJJ޳JJJJ޵JJ޵JJ߶J JߵJ J߶JJJJJJJJ߷J JุJJJJJJJJJJ J J⼼J J⾽JJJJJJJJ J JJJJJJJJJJ JJ JJJ J J JJ JJ JJJJJ JJ:::J Jf:::::::۫JJ f:::::ۥJJ ::ff f::f:::fffffff::::::f:f::JJ f::ېf: ::ff::::ېff: :ېffff:f:f::f::f::::ې:f:JJ :۶f:::۶f::::::۶f:::::::::::::::::::JJ :::ffff:f::::::ffff::::::::::::::JJ:::f:ff:f::ېff:fېfffff::::ff::::::ېf::JJ f :f :::::ffffff::f:f::f::f:JJfJJ:JJJJJ JJJJJJJJJJJJ J J JJ J Jա J JԞ J:::: Jԝ Jf:::::::::ۦ Jԝ J f::::::۠ JӜ J ::ff f::f:::ff :::f:۶f ::f:::f:f:: JӜ J f::ېf: ::ff::::ېff::::f:: ::f:ېf:::f::::ې:f: Jӛ J :۶f:::۶f::::::۶f:::::::::: ::::::::::::: JҚ J :::ffff:f::::::fff::::::f:: :::::::::::: Jҙ J:::f:ff:f::ېff:f:ff: :::ېf:f::::::ېf:: Jҙ J f :f :::::f:::::f ::::f::f::f: JҘ Jf: Jї J::f Jї J Jі 졡J JЕ 졠J JЕ 젠J JД 젟J JД 쟞J Jϓ 잞J Jϒ 잝J Jϒ 읝J Jϒ 읜J Jϑ 뜜J Jϐ 뜜J Jΐ 뜛J JΏ 뛛J JΏ 뛚J JΏJ JΎJJΎ 뙙J J͎ 뙙J J͍ 뙘J J͍J J͌ ꘘJ:f::::::f: J͌Jf:::::::::f:::::ۡ J͌J ::::::::::::ۛJJ ::f:fff:f::ff::::f::f:::۶f۶f:ff:::f::f:f::fff:f::f:::f:f::J̋ ꗗJ :::ff:f:::f::::f:::f:ې:ېff::::f:f::f: :f::::::ff:f:::f:ېf:::f::::ې:f: J̋ ꗗJ:::::::::::: ::::::::::::::::::ې::: :::: ::::::::::::::::::::: J̋J f: f:::::::: f::: ::::: :::::'::f::f:::f:: :::::::f:::::::::::::::::JJېf:f:ff::::: f::f:f:::ېf:f#ff:f:f: f:: :f:*:::f:ff:::::ېf:f::::::ېf::JJ f:ff::::::::::f::f::::f: :f: ::::::fff::::::f::f::f:J̊J:J̊ ꖖJ:f J̊JJJJJJ̉JJ̉ ꕕJ J̉JJJJJJJ:::::::::::fJJ:::::::::::::::::::::fJJ::::::::::::::::::fJJ:::f:::f:::::ff:::۶f۶f:f f:::ff:: :f:ff:%:f:f:ff::ff:f:ffff::::ffJJ:f:f:::f::f:ې:f:::ې:ېff::ېff::::f :f:::f::f::f :f:fff):f::f:ې:ېff::ېff::::f::ff::ې::f::fJJ: ::::۶f :::::::::::::::::::::ې:::::ې::::::::::::::::::::f::::::::::: :::JJ ::: ::::::::::::'::f::f:::f::::f:::::::::::::::::::::fff::::f::::: :::JJ::::f:::ېf:: f::ېf:ff:f:f#ff:f:f:f:::f::f :f:fff)::::ېf:ff:f:ff:::::fff::ېf::::JJ :::: f::f:f:fffff::::f::f:::f::fff:)::::fffff::f:f::ff::f::ffJ 铓JfJJ:JJJJJJJJJJJJJ 鐑JJ 鐐JJ 鏐JJ 菏JJ 莏JJ 荎JJ 莍JJ 荎JJ 茍JJ 茌JJ 苋JJ 犋JJ 牊J:f:::f::::: ::f::J 爉J::::::::f::::::::::::::::J 爈J :f::::::::::::::f::f::fJ 燈J ::::::ff f:::f::: f:ff f::::f:f:f:::::ff:f:ff:f:۶f:fff:f:f:::::fJ 燇J :::::::f: ::f:f :ېf۶: ::f:ېff:ېff:::::f:ېf:::ې::ېff:f::f::ېff:f:f:::::f::::f::f::JJ:f:::::::: :ې:::::::ې:::::::::::::::::: :::ې:f:::::::: :::::f::::::::::J 熇J ::::::::f::::f::::f::::::::::::::::: ::::fff:::::::f::::fff:::::::::J 熇J:ff::f::: f::ffېf:f::ېf ff:f::::::ېf:::ېf::ېf:f::::ېff::::f::f::::::::::J 熆J : fff :::: ::: :::::f ff:::f:::::::f::::f:::ff:::f:ff:f::::::fJJJ 煅JfJ 煅JJJJJJ 愄JJ 愄JJJJJJJJJ:۶f:f::::::J 惃J:f::f::::::::JJ::::::::::::JJ::f::f: f:f::f::::f:f::::::f::::: :ff:f:::::fff:f:::::ff::ff::f:JJ::::f:ې::: ::::::ېf::::ې::ېff:#:f:ې:ې:ېfې:ېf::f:::f:::f::::f:::::ې:::":f:f:f:ېf:fJJ:: ::::::::::: :::::::: :::ې:::::::::: :::::: ::ې::: ::: :::::::!ې::f:::::::JJ:: :::::: f::::: :::::::: :::::::::::::::f::: ::::::f::::::,::f::fff:::::JJ:::::ېf::f:f:f::::ېf:f:::ېf::ېf:#::ېf:f:fېf:f:::f::f:f::::f:::ېf::,:f::f:f:fJJ::f::f:f:f:::::f::f::::#::ff::f:: f:::: ::f::: :::f: ::f::::fJJ:fJJ:ۻJJJJJJ: :f:::::::::f::JJ: f:::::::::::::f:::::JJ:f:::::f:::::::::JJ:f::ff::f:::f:f:: ::::: f:f::::::ff:f:ff:ffff:f :f:::f::f::::f:f:JJ:f:ېf::::::::::f:f:::ې::ېff: :::::f::ېff::f::ېff:f:ff::f: :f:"fې::::f:ې:ېf::f:::f:ې:JJ:::::::::::::::::::: :::ې:::: ::ې::::f:::::::::::::::::: :::::::::: ::::JJ::::::::f::f:::::::::: ::: f::: ::::::fff::::::: f::::::::: :::::::::: ::::JJ::ېf::::f::::::f:::ېf::ېf:f:f:f: f:ff::::ېff::ff f:: :f:"fېf:::::ېf:f::::::ېf:JJ::::::::f:::::::f:::::f::f::ff:::ff::ff:::f!::f::::f::::: f::fJJfJJfJJJJJJ:::fJJf:::::f:۾JJ ff::f::::۾JJ::::f:fff::۶f:f:ff:f::f:f:JJf:f۶: ::f:ېff:ېf:::ff:::f:::f::::fJJ:::ې::::::::::::::::::::::fJJ::::f::::::::f:::::: f::::::::JJ:+:f:f::ېfff:f :f:f: f::f:::::fJJf ::::::fff::f:::::f::f::fJJfJJ:JJJJJJ:ff::::::::::JJf:::f::::::::::::::::::JJ::::::::::::::::::JJ::f:f:f::::: f:f:":f::::ff::::ff::f:ff:f::fff: ::f: ::f f:f::f f:::::۶f:fJJ::::f:ېf:::ې::ېff: :::&:::::::f:ې:ېf::f:::::f:::f:::ېff::f:fې:: ::f:ېf:f: :۶:::ff:::::JJ:::::::::: :::ې::::::::::::::::::::::::::::::::::::::::: ::::::::ې:::: :::::JJf:::::::::: :::f:::::::::::::::::!f::::::f:::::::f:::::::::f:::::::f:::::::f:::JJ:::::ېf:::ېf::ېf:f :f:&:f::f:::ېf:f:::8f::::f:f:::ېfff:f:fېf::f::ېf::f:f::f::f::JJf:::::::f:::::f :ff::::f:::::::::::ff:ff:::::f: :::::::ff::f:fJJ:JJf:JJJJJJ: ::f::f::f::f::fJJ::::::::f::::f::::::JJ::f::f::ff:::::::f::JJff:f:f:::::f:f::::f::f: ::f fff:f :::f:::::ffJJf::::f::f::::::::f:ېf::f:ې: f:::ېff:::::::f::: JˇJf::::::::::::::::::: :::: ::::::::::::::::JJ:fff:::::::::::::::::: ::::::f::: f:::::::::::JJf::::::::::::::::ېf:::ېf:::fېfff:f::f:::::::fJJf:f::::::ff:::::::: f::f ::: fff:ff:::::ffJJf:۹JJf:۹fJJJJJJJJJJJJJJf::JJffff:fff:JJffff:fff:JJ f:fffffff:fffff f:f:f:fff:ffff:f:f:fffff:JJ :ff:f:fff::ff:::f::f:: :ffff:ff:::f:: :ff:f:::ff7:f:ffff:ffff:::JJ:f:ff:ff: :ffffff:ff f:ff:f:f::ff:fff:f:f&f:f:f:f:ffff:JJ2::::ff:ff:f:ff::f: f:f: f:f"f:f:f:f:f: f:f:f:f:f&f:f:f:f:ff:f:J 熆J:0:f:fff:f:ff:*::::f:f::ff :ff,f:ffff:f:f::fff:f::f::ff7fff:ffff:fff::ff:J 熆Jf:f fff: :ff:fff:fff:::ff:ff:fffff fff:J 熆JfffJJfffJJJJJJfff:fJJffffff:fJ 燇Jffff:fJ 燇Jffffff:ffff:fJ 燇J f:fff:fffff::::ff:f:::fJJ ff:fffff:f:fff ff:JJ ff:fffff:f:ff: ff:JJ f:ffffffff:f:ff::fff:ffJJfffffff:f:ffff:fJJfJJ:JJJJJJJJJJJJJʆJJʆJJʆJ JʆJJJЉJJJJJJJ爈JJJJJJJJJJJJɅJV<<VwppwJɅJ?FHHF?葇JɅJSFjjFSuuJɅJ><ppJJS>[[>SuuJJ<==<䏈JJQ<<QuppuJJJJJJJJJJJJJJJJJJJJJĂJJJJ& ͔֔̓&J#ώ͔ؔ̓#7Vؔ˔̓BjOϣؔɔ̓ ̖=VteO##=T^~qeNC6@U^g5  b!!b'<6IgfwyMR&+a%WzgZlicGE"&;MG*,#'ATN55"'Zxh  /0`52'%70"##'.))+,PUR&"& &"sr#$ '!DKL"#]w;-)(>6'(s}-+/LJ #*):C9ktpooj#%-11,,,,,AC<eb^[if,4,-,,11-<dfgo*yjZ""""Q_q|ui#'GG&"VkyxiDɫ DVkh%BBߙ"V P, @@&> &=tVttVt=ԗ&"9VVqVV9" " 3lVVVl3" " 0jVVj0"" -{}~hVVh~|-""IIJIBCEFGPVVQHGFD C""I{I|K Jܳ<=?@ANVVNBA@>=""IKܝIJ{I=>?@BCOVVVODCA@?>" "II|ȵ{K|KJ{J{JƝIIIڜxGؤGHIKLVVRVVMLJIH"!"J{޵KޞJ|{JKJJ*ƝۜŲHؚwu QSTUWVWVWXVUTR""Jzޞ|{KJ|{ܜI zyzyva]]_``acddefedba`^^b""IݞJK{K|KJ{{J{IۜI"zyyxF%ullmoqstuvuttrpnmv%""IڜKJܝ{IJI{0ۜڜڜðsp¿  V|yy{|}~}|zz}W""IJǞJ|JݞJI{{ܝIIۜI ٛHؚuD,||," "ؚH [1%%&'(**+,-./././.-,+**('&%%1\" "G ¿" "G" " ""ߣ""ۣ""٣"" ֣""ѣ""""⚉VVVV""VV""VV""VV""VV""VV""VьV""V@V""VV""V99V""Vf99V""V559999V""V44f99f9f9V""V4499ff9999999V""V44^4^4999999999999V""V444444444f99999999999V""V111ݽ11ݽ11(999999999V""V000ۻ0 0ۻ009999999V""V00ں0ں00ں0ڛ00V""V00ع00y00V""VV""VV""V8V""VV""VόЌV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VffV" "Vf V""VffV""V:f::f ::fff:f: :fff:f:: :: f: :fff:fff:f:f:fV""V::: :f f:f::ېf:f:(::f:f:fffff:ff:ېf:f:fff: :f#:f:f:V""V::f:ff:"f:ff:: :f:f#V""V::f:f$f ff::f:f:f :#V""V:$::::f :f::f::(::f:ff::f:f:f::f::::f:::V""V:::::::f ::f f : :f: :: ff:::f fV" "Vfff V""V::::::::V""VV""VV""VV""VV""VV""VV""VV""VV""V V""VV" "VV" "V V" "VV" "VV" "VV""V V""V:::V""Vf::::::V""V :::::::V""V f::f ffff:: f:::f:::::V""V ::۶: :::::f:۶::::::::f:::::::V""V: ::fff :ff::::::fff::::::::::::::V""V f:::::fff::::::::::ff::::::::fV""Vf:f:::::::ff::::::::f::::::::۶ V""V  ::f :f :::::f::::::V""VV""VV""VV""VV" "V V""VV""VV""V V" "VV""VV" "VV" "V V""V V߷""V V޵" "򾽽V:::: V޵" "򽽼Vf:::::::: Vݴ" "򽼼V :::::::: Vݳ" "򼼻V f::f ffff:::::::f::::f::f::::: Vݳ" "򼻻V ::۶: :::::f:۶:::f:::: :::::::::::V" "򻻺V: ::fff :ff::::::fff::::::: ::::::::::: Vܲ" "񻺺V f:::::fff::::::::::::::: ::::::::::f Vܱ" "񺺹Vf:f:::::::ff:f:::: :::::::::::::۱ Vܱ" "񺹹V  ::f :f :::::f::::::::::::::: Vܱ" "񹹸V:f V۰""V:ێ V۰" "񹸸V Vۯ" "񸸷V Vۯ" "񸷷V Vۮ" "񷷶V Vۭ" "񷶶V Vۭ""V Vڭ" "񶶵V Vڬ" "𶵵V Vڬ" "𵵴VV" "𵴴V Vګ" "𴴳V V٫" "𴴳V V٪" "𴳳V V٪" "𳳲V V٪" "𳳲V V٩" "𳲲V V٩""V V٩" "𲲱VV""VVب""V Vب""V Vا" "ﱱV::::::f: Vا" "ﱱV::::::::::::: Vا""V ::::::::::::V""V :f:::f::ff:::::f::f::f::f:::::f:::f::f::f:::::V""V ::::::::::::ff::::::::::::f::: ::f::::::::::::::::Vئ""V:::::::::::: :::::::::::::::: :::: :::::::::::::::::::Vئ" "ﰰV  ::::::::::: :::::::: ::::::::ff ::::::::::::::::::::::f Vئ""V f::::::::::::::ff::::::=:::::f::::::f:*:::::::::::::::::::::۬V""V f:::::::::: ::::::::::::: ::: ::::::::::::::V""V:fV""V:V""VV""VV""VVץ""VVץ" "ﯯV Vץ""VV""VV""VV""V:::::::::::V""V::::::::::::::::::::V""V:f::::::::::::::::::V""V:f:fff:::f:::::f::f::f:ff:::::f:f:::::::ff:: :f:::V""V: ::::::::::::::::::::::f :::::::f f::::(f:::::::::::۶:::::::::::::V""V:::ff ::::::::::::::::: :::::::::::::::::::fff:::::::::::fV""V:f:::ff :::f::::: ::::::::f :::f:::::::::::::::::::::::::::::fV""V:::::::::::::::::*:::::f:::::::::f f:::(f::::::::::f::::::::::::V""V :::f::::::::::::::::::::::::f:::::: ::V" "ﭭVV""VV""VV""VV""VV""VV""VV""VV" "VV" "VV" "VV" "VV" "VV" "VV" "VV" "VV" "V Vפ" "VV" "VV" "VV" "죤V:::f:::::f:::::f:V" "좣V:::::::::::::::::::f::ff::::f:V" "좢V ::::::::::::::: ېf:::::ېfV" "졢V :::::::::ff :f:f :f:::::::f:::::f::f::f:::::::f:::::V" "졡V :::::::::f :::ff ::: :::::::::::::::::۶:::::::::۶:::::V""V:::::::: :::::::::: :::::::::::::::: ::::fff:::::::::::fff::::۶::::V" "젡V :f::::::::f:::::::::::::f::::::::::::f::::::::f:::::::::::::::V" "젡V:::::::::::f::::::: ::::::::::::::::::f:::::::::::f::::::::V" "젠V ::::::: :::::: :::::::::::: ::::f::::::::f:::::::V""VfV" "쟟V۬V" "쟟VV""VV""VV" "잞VV" "잞VV""VV""VV""VV""V:f:f::::::V" "띝V:::::::::::V""V::::::::::::V""V: :::f:f:::::::::::f:: :::ff:f :::::ff :::::f:::V""V:::::::: :::::f:::::::::#::::::::::::::::::::::::f"::۶::f::V""V:: :::::: :: :::::: :::::::::: :::::: :::::: ::::f f:!:::fff:::::V""V:: :::: :::: :::::::::f::::::::::::::f::::::: :::ff:::::::V""V:::::::: :::::::f::>:::::::::::::::::::::::::::::::::,f:::f:f:::V""V:::::::::::::: :::::::::::::: ::::: ::::::$::f::::V""V::V""V:V""VV""VV""V:f:::f::::::f::V""V: f:::::::f::::::::::::V""V:ېf:::::ېf:::::::::V""V:f :::::f::::::::f:::::f:: ::::f::ff:f::: ::f:::f :::fV""V::f::::::::::::::: ::::::::::۶:::::::: f::!:::::::::::::::::V""V:::::::::::::::::::: :::::::::::fff::::::::::: :: ::::::::: :::V""V::::::::::::::::::::::f ::::f::::::::::: ::::::: ::::::::: :::V""V:::f::::::f::::::::::::::: ::::::::f::::::: ::: f:!:::::::::::::::::V""V:::::::::f ::::::: ::::: :: :::f::::::::::: :::::::::::V""Vf:V""VۆV""VV""VV""V f:::f::fV""Vf:f::f::::V""Vېf::::ېf::::V""Vf::f:f:::f::f:f:f::::ffV""V::ff:::::::::f:f:::::::V""V:::::::::::::::::::::::::ffV""Vf:::::::::::::::::: :::::::ffV""V(:::::::::::f:f: :::::::::V""V:::::::::::::: :::fV""VV""VV""VV""VV""Vf::::::::::V""V::::::::::::::::::::V""V::::::::::::::::::V""V:::::::f::::f:::::::::::f:::ff::::ff:::::f:::::f:f::ff::::f:::V""V::::::::::::: :::&::::::::::::::f::f::::::::f:::: ::::: :ff::::f:::V""V:::::::::: :::::::::::::::::::::::::::::::::::: :::::::::: ::::::::V""V::::::::::::f:::::::::::::: :::::::::::::::::::::::::::::::::f::::V""Vf::::::::::::::: :::&:::::::::::::7::f:::f:::::::f::::::::::::::::f:::::V""Vf ::::::: :::::::::::::::::::::::::::::::: :::::::::::V""Vf:V""V:V""VV""VV""V:f:::::f:::f::::V""V:::f::ff::::f:::::::ff::::fV""V:: ېf:::::ېf:::::::::::V""V::::f:::::f:::::f: :::f ::ff::::::::fV""V:۶:::::::::::::: f :::::::::: V֢""Vfff::::۶:::::::::::: ::: ::::::::۶::::V""V::::::::::::::::::: :::f:::: :::::::::V""Vf::::::::f:::::::::::::f::::::::::::fV""V:f::::::::::::::::: :::::::::::V" "젠V:fV" "젠V:V" "젠VV" "젠VV""VV""VV""VV""VV""VfV""VVա""Vf Vա""V:ff:::::fff::ff::f:f:f Vա""V!::ff:::::f:f:f ::f:f:f :f f:7:f::f:fV""V::: f:f::f::f )f:fV""V2:::: :f:f : )fV" "졡V:-::::::*:::f::ff:*::::ff::f :3f:::f:V" "졡V: : ::::::f::f::f:f: ::fV" "졡VV""VV""VV""VV""VfV""VfV""VfV""V:::f::f:fV""V ::ff::f:f:fV""Vf:ff:۞V""Vff۞V""V:f::f:fV""V::ffV""VfV""V:V""VV""VV""VV""VV""VV""VV""VV""VV""VV""VV""VЌV""VV""VV""VV""VV""VV""VV""VV""VV""VVՠ""VwppwVՠ""V˔葈Vՠ""V̎uuVՠ""VppV""VppV""VppV""VppV""VppV""Vp5pV""Vp55pV""V5p55pV""V5^p5^5^5pV""V2 2Y}}Y2ݾ2p2 2ݾ22 2ݾ22pV""V2ݾ2ݾ22p222ݾ222pV""Vۼ111ۼp1 ۼ11ۼ111pV""V{Wڜ1ڜ1{{1ڻp{1ڜ11ڻ11 1ڻ1pV""VWz1عpzz11ع11pV""VppV""VppV""VppV""VppV""VppV""VppV""VÎuuV""Vđ䏈V""VuppuV""VV""VV՟""VV՟""VV""VV""VV""VV""VV""VV""VV""ҎVVVV""ּۘͷ"& ̭֮ͮ&J'خ̭ͮ'7V"خˮ̭ę"BjOۺخɮ̭֙=VteO"''"=T^~qeNC""""6@U^g7@! b'93Gddryw|KO%+a%ZsgxygCI"&7GD++#'=NI57"&MjZ .1Ust)*62###'v%#+.FQI %&!d|f(#?IH"#Oye(! <-&)k}++0YR(0/9H?muoqrn!%-12,,,,,<B:`^ZXid,4,-,,11-@hmlo&yjZ''''Q_q|ui(+CC*'Vkyxi??Vkh*??'VP0;;*> &8xfxxfx8&'4fftff4' ' -~offfo~-' ' *{ymffmy{|*'' 'usjffjsuv'''MML 7653PffP35667 ''MNM 10/-NffN-/001''MMMNMM  320/NfffN/0223 ' 'LL MMNMMLMϻLM LL 987ffRff7889 '!'M恀MNMNMM+LMMLLLM~EDCAVfVAVfVACDDE''NMϤMN NMMMLLKUQPOMOPQU''΀NMM M NMMMMLKKݾ maa`_]_`am ''MLMNM MNM0MMM~LKK۾T{qmlkiklm q{U''LNMMMN NNMLMLLMLMKJپ'xx(' 'LM ӾT' !""$%&&'&%$""! 'U' 'KL о' 'KL ξ''̾'' ƾ''þ'' ''''''''ꡉaaaa''aa''aa''aa''aa''aa''aѕa''a@a''aa''af9a''afa''a`fa''a__9999a''a499f999fa''a4샃4^^샃99a''a ^4냃44999fa''a||1|||1||||9999ff9f9a''a0zWzzWzۜ0z9 f999 99a''aWzzWzzzzzWzzڛWWza''aV0yyؚ0yyyyؚ0yy0ya''aa''aa''a8a''aa''aϕЕb''ab''ab''ab''ab''bb''bb''bb''bb''bb''bb''bf:fff:ff:b''bfffffff:fffffff:fff:fb''bfffffffffffff:b''b:f ff:ffffff fffff fffff:fffff f:fff f:fffffff::f:۶fb''bf۶:::fff :f:f:#f۶:ff۶:::f:)۶:::ff۶::۶:fff۶:f:f:۶::::::f۶:f: ::"۶:f::b''bffff ff:ff:fff:ې::ff:f:#f:f:fff:f:f:f:ffffffffff:f::f:f:ې:: ::f:fffff:f:f"f:f:ff:f::: b''bfff:::ff ff:ffff:fff:۶:ff:f:)f:f:fff:f:ff:f:ffff:f:f:f:۶::f::f f:f: :ff"f:f:ff:f:::b''b:$::ff:fff:#f۶:ff۶::fff::)۶:::ff۶:f:f۶:f:f:ff:۶::f:f:۶::f:ff::f:۶:::f۶:ff::b''b::fffff ff:fff f:ff:۶ ff f:fff:fffff:f:۶f:f:f:fffff۶ ff:۶b''bf::::b''bfb''bb''bb''b b''bb''bb' 'bb''bb''bb''b b' 'bb''bb' 'bb' 'bb''bb''b b''bb''bf:b''bfb' 'b fb''b :fff: : ffff::::f:f::۵b''b ::ې:fffff ::f:::ffff::::ff b''b :f f:f:::۴b''b :f::f:f:f::ffffffb''b::ffff::ff :fff::f::::: ff::b''b : f: :: f::::f:f::۵ b''bfb''bfb''b b''bb''bb''bb''b b' 'bb''bb''b b' 'bb''bb''b b''bb''bf:b''bf b' 'b f b''b :fff: : ffff:ff:f::۰ b''b ::ې:fffff ::f ::f :::ffb' 'b :f f:f f::ۯ b''b :f::f:f:f::fff b' 'b::ffff::ff :ffff::ff ff::b' 'b : f: :: f:::::f:f::۰b''bff b''bf:b''b b' 'b b' 'b b''bb' 'b b''bb''bb''b b' 'bb''b b''b b''b b' 'bb' 'bb''b b''bb''bb' 'bb''bb''b b''b b''bb''b:ffb''b b' 'b :fffff::ff):::fffff:f::۫b''b :: :::::: :ff:ff:ff:::: : :::ff b''bf:f::f:::۪ b''b ff::ff:::fff :fffb''b:ffff :ff:f:ff: :ff"fff:ff::f::: ff :ff::b''b f:::::::::f::::::f:f::۫b''bfb''b:b''bb' 'bb''bb''bb''b b㿿''bb''bb''bb''bf:fb''bf:fb''b:ffb''bff :::: :ff:::f ff:f: :f f:f:b''bfff :ff::::ff: ff:ff: :: :::::f:f::b''bfff::::f:f::::f:ېb''b:ff:fffff:::ff:fffff::fېb''bf: f::ff:f: :fffff:ff::f ff::: f:f ::f:f:fff: fb''b f: f::::f::::f:: ::::f::f::ff::ffb' 'bfb''bfb''bb''bb''bb''bb''bb''bb' 'bb' 'bb' 'bb' 'bb' 'bb' 'bb' 'bb' 'bb' 'b b⾾' 'bb' '򾾿bb' '򽾾bb' '񼽽b f:f:b' '񻼼bfffffb' '񻻼b ff:ffb' '񺻻b :f :f::: :ff::ff::ff ff:fffb' '񺺻b f:: ff: f:::f ff: : fff:f :ff::f:b''b: :: : :fې :f:fb' '񹺺b ff:f: ::ffff f:f:f:b' '񹺺bffffff :::ff::ff:f: ::f::: f : ::fff:b' '񹹺b :f::: :: ::: :: :۶f::: f:۶f:fff:ffb''bfb' '񸸹b:b' '񸸹bb''bb''bb' '񷷸bb' '񷷸bb' '񸷷bb''bb''bb''bb' '񷷸bffb''bb''b :f :ff:ff:ffff:f:: ::: ::f f::ff::fff:fffb''b ::::::::::: fff#::f:fff:: :::::: ffff:f::fb''b:::::::::: f:fېb''bff:fffffff :ff :f::f ff:b''bfffff:ff:::ff:f: ffff::f ff f:,f:ff::::f::b''bf::::::::::::: f:::::: :::$::f:fb''bb''bb''bb''bb''bf:f:b''b ff:ffffb''bffb''bfff f ::ff: ::ff: ff: :f::b''b:::: ::f: fff::ff:f:f :: :: f::f :b''b f::: :fېf::::b''b :fff:fff f::ffffb''b:ff:ff:::fffff::f: f ::ff f:f:f f: fb''b:ff::::::::::f f:: :: :: f:b''bfb''b:b''bb''bb''bf:f:f:b''bffffffb''b fffb''b::::ffff: fb''b::f:::f::::ffb''b::f:fb''b:::f::ff:b''b::::ff:f:fff::ff fb''b: f::: ::f:::ffb''bfb''bfb''bb''bb''bb''b:ff b⽽''bb''b ff:: ff: ff:f:ffff: fff :ff :::f:fb''b :: : fff::::::f :::::::f:: f :::ff:b''bf:::: ff:::: b''bfff:fff::f:f: ::ff:b''b:ff:::fffffff:ff,f:fff:f:ff::fff:ff:f: ::ffb''bff::::: :f::::: :::f::::::::f:۶f:fb''bfb''b:b''bb''bb''b f:f:ffb''bffff:f fb''bf:fff :ffb''bf f:fff ff: :ېff:::ffffb''b:f::ې:: f : ff:: ::::::ۖ b⼼''b:f:f:ې: f:::f:ۖb''bf::ېf f:f:f:ۖb''bf:f: f::f:ff:fff f:b''bff:fff: f: :ې:::: f::ffffb' '񺺹b:fb' '񺺹bffb' '񺺹bb' '񺺹bb''bb''bb''bb''bb''b::b''bffffff:fff:b''bfff:fff: bỻ''b :ff:ff:fff::fff f::fff:f:fff:۶f bỻ''b!f۶:f:f۶::ff:::::f:: ۶:f::::f:: ::۶:f8:f:::::۶:f:b''bf:ff:f: ffffff f:ff:f:f:fff:f:f&f:f:f:f:ffff:b''b2:f:ff:f::ffffff :fff f:f"f:f:f::fff :fff:f:f)fff:f:f:f:ffff:b' '񻻺b:.:f۶:f::ff:*::f:ff ۶:f-::::ff:ff:۶:f8ff:::::۶:ffb' '񻻺b::f f:fffffffffffffffff:۶ffff ffb' '񻻺bfffb''bfffb''bb''bb''b::f:b''b:ff:ff:b''bffff:b''bffffffffb''b f۶::ff:ff:f::b''b ff:fffff:f:ff fff::b''b ff:fffffff:f:fffff:f::b''b f۶:fffffff::ffffb''bffffffff:۶fffffb''bb''bb''bb''bb''bb''bb''bb''bb''ab''ab''ab''ab''aЕb''ab''ab''aa''򽽼aa''aa''aa''aa''aa''aa''aԺʱwppwa''a葈a''򾾽auua຺''appa''appa''appa''appa''appa''ap5pa''a5_p5pa''ap5pa''a 555p넄5넄pa''򿿾a2} 22}}p}}}}22}pa''aY}}}}}2}2p}}}}}2}}pa''aX1{{ۼ1{{{Xp11{{{X{pa''a1W{WW{1ڻ{Wp 1{ڜWW{{ 1{W{{pa''aW1zz11p11zzؚ1zzpa''appa''appa''appa''appa''appa''appa''auua''a䏈a''aҸʱuppua''aa''aa''aa''aa''aa''aa''aa''aa''aa''aa''aaaa'''& ǘƜ&J*ǘ*7V'ǖԝ'BjOǔ =VteO'**'=T^~qeNC''''6@U^gDDw"U3DDf3"DDf3U3w"3"""wwUwD""wDD""wwwwwTTTTTTTTTTTTTTTTTTTTTw333wwD3"3wDwwwf"w3f"Df"3Dw"33"wwwwf"fwwDfU3wwwwwTTTTTTTTTTTTTTTTTTTTT "ww3D3w"wfDUfw3wU3U3DwfDwDDDDDDwDw3UD3UwDDf"3fffw3wwTTTTTTTTTTTTTTTTTTTTT Uw3wwDwfwfw3wwwDwDwDwDwDwDwDwDwDwDwDwDwfwfw3wwDTTTTTTTTTTTTTTTTTTTTT8BIMPatt8BIMTxt2sY /DocumentResources << /FontSet << /Resources [ << /Resource << /StreamTag /CoolTypeFont /Identifier << /Name (Verdana) /Type 1 /Synthetic 2 >> >> >> << /Resource << /StreamTag /CoolTypeFont /Identifier << /Name (Verdana) /Type 1 >> >> >> << /Resource << /StreamTag /CoolTypeFont /Identifier << /Name (MyriadPro-Regular) /Type 0 >> >> >> << /Resource << /StreamTag /CoolTypeFont /Identifier << /Name (AdobeInvisFont) /Type 0 >> >> >> << /Resource << /StreamTag /CoolTypeFont /Identifier << /Name (TimesNewRomanPSMT) /Type 1 >> >> >> ] >> /MojiKumiCodeToClassSet << /Resources [ << /Resource << /Name () >> >> ] /DisplayList [ << /Resource 0 >> ] >> /MojiKumiTableSet << /Resources [ << /Resource << /Name (Photoshop6MojiKumiSet4) /Members << /CodeToClass 0 /PredefinedTag 2 >> >> >> << /Resource << /Name (Photoshop6MojiKumiSet3) /Members << /CodeToClass 0 /PredefinedTag 4 >> >> >> << /Resource << /Name (Photoshop6MojiKumiSet2) /Members << /CodeToClass 0 /PredefinedTag 3 >> >> >> << /Resource << /Name (Photoshop6MojiKumiSet1) /Members << /CodeToClass 0 /PredefinedTag 1 >> >> >> << /Resource << /Name (YakumonoHankaku) /Members << /CodeToClass 0 /PredefinedTag 1 >> >> >> << /Resource << /Name (GyomatsuYakumonoHankaku) /Members << /CodeToClass 0 /PredefinedTag 3 >> >> >> << /Resource << /Name (GyomatsuYakumonoZenkaku) /Members << /CodeToClass 0 /PredefinedTag 4 >> >> >> << /Resource << /Name (YakumonoZenkaku) /Members << /CodeToClass 0 /PredefinedTag 2 >> >> >> ] /DisplayList [ << /Resource 0 >> << /Resource 1 >> << /Resource 2 >> << /Resource 3 >> << /Resource 4 >> << /Resource 5 >> << /Resource 6 >> << /Resource 7 >> ] >> /KinsokuSet << /Resources [ << /Resource << /Name (None) /Data << /NoStart () /NoEnd () /Keep () /Hanging () /PredefinedTag 0 >> >> >> << /Resource << /Name (PhotoshopKinsokuHard) /Data << /NoStart (!\),.:;?]}    0!! 0000 0 0 0000A0C0E0G0I0c000000000000000000000000 =]) /NoEnd (\([{  00 0 0000 ;[) /Keep (  % &) /Hanging (00 ) /PredefinedTag 1 >> >> >> << /Resource << /Name (PhotoshopKinsokuSoft) /Data << /NoStart (  0000 0 0 00000000 =]) /NoEnd (  00 0 000;[) /Keep (  % &) /Hanging (00 ) /PredefinedTag 2 >> >> >> << /Resource << /Name (Hard) /Data << /NoStart (!\),.:;?]}    0!! 0000 0 0 0000A0C0E0G0I0c000000000000000000000000 =]) /NoEnd (\([{  00 0 0000 ;[) /Keep (  % &) /Hanging (00 ) /PredefinedTag 1 >> >> >> << /Resource << /Name (Soft) /Data << /NoStart (  0000 0 0 00000000 =]) /NoEnd (  00 0 000;[) /Keep (  % &) /Hanging (00 ) /PredefinedTag 2 >> >> >> ] /DisplayList [ << /Resource 0 >> << /Resource 1 >> << /Resource 2 >> << /Resource 3 >> << /Resource 4 >> ] >> /StyleSheetSet << /Resources [ << /Resource << /Name (RGB - Normal) /Features << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> >> >> ] /DisplayList [ << /Resource 0 >> ] >> /ParagraphSheetSet << /Resources [ << /Resource << /Name (RGB - Normal) /Features << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 0 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> >> >> ] /DisplayList [ << /Resource 0 >> ] >> /TextFrameSet << /Resources [ << /Resource << /Bezier << /Points [ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] >> /Data << /Type 0 /LineOrientation 0 /TextOnPathTRange [ -1.0 -1.0 ] /RowGutter 0.0 /ColumnGutter 0.0 /FirstBaselineAlignment << /Flag 1 /Min 0.0 >> /PathData << /Spacing -1 >> >> >> >> << /Resource << /Bezier << /Points [ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] >> /Data << /Type 0 /LineOrientation 0 /TextOnPathTRange [ -1.0 -1.0 ] /RowGutter 0.0 /ColumnGutter 0.0 /FirstBaselineAlignment << /Flag 1 /Min 0.0 >> /PathData << /Spacing -1 >> >> >> >> << /Resource << /Bezier << /Points [ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] >> /Data << /Type 0 /LineOrientation 0 /TextOnPathTRange [ -1.0 -1.0 ] /RowGutter 0.0 /ColumnGutter 0.0 /FirstBaselineAlignment << /Flag 1 /Min 0.0 >> /PathData << /Spacing -1 >> >> >> >> << /Resource << /Bezier << /Points [ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] >> /Data << /Type 0 /LineOrientation 0 /TextOnPathTRange [ -1.0 -1.0 ] /RowGutter 0.0 /ColumnGutter 0.0 /FirstBaselineAlignment << /Flag 1 /Min 0.0 >> /PathData << /Spacing -1 >> >> >> >> << /Resource << /Bezier << /Points [ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] >> /Data << /Type 0 /LineOrientation 0 /TextOnPathTRange [ -1.0 -1.0 ] /RowGutter 0.0 /ColumnGutter 0.0 /FirstBaselineAlignment << /Flag 1 /Min 0.0 >> /PathData << /Spacing -1 >> >> >> >> << /Resource << /Bezier << /Points [ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] >> /Data << /Type 0 /LineOrientation 0 /TextOnPathTRange [ -1.0 -1.0 ] /RowGutter 0.0 /ColumnGutter 0.0 /FirstBaselineAlignment << /Flag 1 /Min 0.0 >> /PathData << /Spacing -1 >> >> >> >> << /Resource << /Bezier << /Points [ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] >> /Data << /Type 0 /LineOrientation 0 /TextOnPathTRange [ -1.0 -1.0 ] /RowGutter 0.0 /ColumnGutter 0.0 /FirstBaselineAlignment << /Flag 1 /Min 0.0 >> /PathData << /Spacing -1 >> >> >> >> << /Resource << /Bezier << /Points [ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] >> /Data << /Type 0 /LineOrientation 0 /TextOnPathTRange [ -1.0 -1.0 ] /RowGutter 0.0 /ColumnGutter 0.0 /FirstBaselineAlignment << /Flag 1 /Min 0.0 >> /PathData << /Spacing -1 >> >> >> >> << /Resource << /Bezier << /Points [ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] >> /Data << /Type 0 /LineOrientation 0 /TextOnPathTRange [ -1.0 -1.0 ] /RowGutter 0.0 /ColumnGutter 0.0 /FirstBaselineAlignment << /Flag 1 /Min 0.0 >> /PathData << /Spacing -1 >> >> >> >> << /Resource << /Bezier << /Points [ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] >> /Data << /Type 0 /LineOrientation 0 /TextOnPathTRange [ -1.0 -1.0 ] /RowGutter 0.0 /ColumnGutter 0.0 /FirstBaselineAlignment << /Flag 1 /Min 0.0 >> /PathData << /Spacing -1 >> >> >> >> << /Resource << /Bezier << /Points [ 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ] >> /Data << /Type 0 /LineOrientation 0 /TextOnPathTRange [ -1.0 -1.0 ] /RowGutter 0.0 /ColumnGutter 0.0 /FirstBaselineAlignment << /Flag 1 /Min 0.0 >> /PathData << /Spacing -1 >> >> >> >> ] >> /ListStyleSet << /Resources [ << /Resource << /Name (kPredefinedNumericListStyleTag) /PredefinedTag 1 >> >> << /Resource << /Name (kPredefinedUppercaseAlphaListStyleTag) /PredefinedTag 2 >> >> << /Resource << /Name (kPredefinedLowercaseAlphaListStyleTag) /PredefinedTag 3 >> >> << /Resource << /Name (kPredefinedUppercaseRomanNumListStyleTag) /PredefinedTag 4 >> >> << /Resource << /Name (kPredefinedLowercaseRomanNumListStyleTag) /PredefinedTag 5 >> >> << /Resource << /Name (kPredefinedBulletListStyleTag) /PredefinedTag 6 >> >> ] /DisplayList [ << /Resource 0 >> << /Resource 1 >> << /Resource 2 >> << /Resource 3 >> << /Resource 4 >> << /Resource 5 >> ] >> >> /DocumentObjects << /DocumentSettings << /HiddenGlyphFont << /AlternateGlyphFont 3 /WhitespaceCharacterMapping [ << /WhitespaceCharacter ( ) /AlternateCharacter (1) >> << /WhitespaceCharacter ( ) /AlternateCharacter (6) >> << /WhitespaceCharacter ( ) /AlternateCharacter (0) >> << /WhitespaceCharacter ( \)) /AlternateCharacter (5) >> << /WhitespaceCharacter () /AlternateCharacter (5) >> << /WhitespaceCharacter (0) /AlternateCharacter (1) >> << /WhitespaceCharacter () /AlternateCharacter (3) >> ] >> /NormalStyleSheet 0 /NormalParagraphSheet 0 /SuperscriptSize .583 /SuperscriptPosition .333 /SubscriptSize .583 /SubscriptPosition .333 /SmallCapSize .7 /UseSmartQuotes true /SmartQuoteSets [ << /Language 0 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 1 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 2 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 3 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 4 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 5 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 6 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote ( 9) /CloseSingleQuote ( :) >> << /Language 7 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 8 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 9 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 10 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 11 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 12 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 13 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 14 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 15 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 16 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 17 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 18 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 19 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 20 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 21 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 22 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 23 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 24 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 25 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote ( 9) /CloseSingleQuote ( :) >> << /Language 26 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 27 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 28 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 29 /OpenDoubleQuote (0) /CloseDoubleQuote (0) >> << /Language 30 /OpenDoubleQuote (0 ) /CloseDoubleQuote (0 ) >> << /Language 31 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 32 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 33 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 34 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 35 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 36 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 37 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 38 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 39 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote (<) /CloseSingleQuote (>) >> << /Language 40 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 41 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote (<) /CloseSingleQuote (>) >> << /Language 42 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 43 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> << /Language 44 /OpenDoubleQuote () /CloseDoubleQuote () /OpenSingleQuote ( 9) /CloseSingleQuote ( :) >> << /Language 45 /OpenDoubleQuote ( ) /CloseDoubleQuote ( ) /OpenSingleQuote ( ) /CloseSingleQuote ( ) >> ] >> /TextObjects [ << /Model << /Text (1 ) /ParagraphRun << /RunArray [ << /RunData << /ParagraphSheet << /Name () /Features << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 1 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> /Parent 0 >> >> /Length 2 >> ] >> /StyleRun << /RunArray [ << /RunData << /StyleSheet << /Name () /Parent 0 /Features << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading .01 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 0 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures true /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms true /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 42 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst false /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth .05759 /MiterLimit .23037 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> >> >> /Length 2 >> ] >> /KernRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /AlternateGlyphRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /StorySheet << /AntiAlias 4 /UseFractionalGlyphWidths true >> >> /View << /Frames [ << /Resource 0 >> ] /RenderedData << /RunArray [ << /RunData << /LineCount 1 >> /Length 2 >> ] >> /Strikes [ << /StreamTag /PathSelectGroupCharacter /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 0 /Children [ << /StreamTag /FrameStrike /Frame 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /LineStrike /Baseline 0.0 /Leading 32.4 /EMHeight 27.0 /DHeight 20.88405 /SelectionAscent -23.31519 /SelectionDescent 8.18701 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 0.0 8.18701 ] /ChildProcession 1 /Children [ << /StreamTag /Segment /Mapping << /CharacterCount 2 /GlyphCount 0 /WRValid false >> /FirstCharacterIndexInSegment 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /GlyphStrike /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 16.54384 8.18701 ] /Glyphs [ 20 3 ] /GlyphAdjustments << /Data [ << /BackFixed -1.35 >> ] /RunLengths [ 2 ] >> /VisualBounds [ 0.0 -23.31519 16.54384 8.18701 ] /RenderedBounds [ 0.0 -23.31519 16.54384 8.18701 ] /Invalidation [ 0.0 -23.31519 29.50373 8.18701 ] /ShadowStylesRun << /Data [ << /Index 0 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> ] /RunLengths [ 2 ] >> /EndsInCR true /SelectionAscent -23.31519 /SelectionDescent 8.18701 /MainDir 0 >> ] >> ] >> ] >> ] >> ] >> ] >> ] >> /OpticalAlignment false >> << /Model << /Text (2 ) /ParagraphRun << /RunArray [ << /RunData << /ParagraphSheet << /Name () /Features << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 1 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << /Font 0 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> /Parent 0 >> >> /Length 2 >> ] >> /StyleRun << /RunArray [ << /RunData << /StyleSheet << /Name () /Parent 0 /Features << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 0 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures true /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms true /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 42 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst false /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth .05759 /MiterLimit .23037 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> >> >> /Length 2 >> ] >> /KernRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /AlternateGlyphRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /FirstKern 0 /StorySheet << /AntiAlias 4 /UseFractionalGlyphWidths true >> >> /View << /Frames [ << /Resource 1 >> ] /RenderedData << /RunArray [ << /RunData << /LineCount 1 >> /Length 2 >> ] >> /Strikes [ << /StreamTag /PathSelectGroupCharacter /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 0 /Children [ << /StreamTag /FrameStrike /Frame 1 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /LineStrike /Baseline 0.0 /Leading 32.4 /EMHeight 27.0 /DHeight 20.88405 /SelectionAscent -23.31519 /SelectionDescent 8.18701 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 0.0 8.18701 ] /ChildProcession 1 /Children [ << /StreamTag /Segment /Mapping << /CharacterCount 2 /GlyphCount 0 /WRValid false >> /FirstCharacterIndexInSegment 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /GlyphStrike /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 16.54384 8.18701 ] /Glyphs [ 21 3 ] /GlyphAdjustments << /Data [ << /BackFixed -1.35 >> ] /RunLengths [ 2 ] >> /VisualBounds [ 0.0 -23.31519 16.54384 8.18701 ] /RenderedBounds [ 0.0 -23.31519 16.54384 8.18701 ] /Invalidation [ 0.0 -23.31519 29.50373 8.18701 ] /ShadowStylesRun << /Data [ << /Index 0 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> << /Index 1 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> ] /RunLengths [ 1 1 ] >> /EndsInCR true /SelectionAscent -23.31519 /SelectionDescent 8.18701 /MainDir 0 >> ] >> ] >> ] >> ] >> ] >> ] >> ] >> /OpticalAlignment false >> << /Model << /Text (3 ) /ParagraphRun << /RunArray [ << /RunData << /ParagraphSheet << /Name () /Features << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 1 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << /Font 0 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> /Parent 0 >> >> /Length 2 >> ] >> /StyleRun << /RunArray [ << /RunData << /StyleSheet << /Name () /Parent 0 /Features << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 0 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures true /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms true /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 42 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst false /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth .05759 /MiterLimit .23037 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> >> >> /Length 2 >> ] >> /KernRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /AlternateGlyphRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /FirstKern 0 /StorySheet << /AntiAlias 4 /UseFractionalGlyphWidths true >> >> /View << /Frames [ << /Resource 2 >> ] /RenderedData << /RunArray [ << /RunData << /LineCount 1 >> /Length 2 >> ] >> /Strikes [ << /StreamTag /PathSelectGroupCharacter /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 0 /Children [ << /StreamTag /FrameStrike /Frame 2 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /LineStrike /Baseline 0.0 /Leading 32.4 /EMHeight 27.0 /DHeight 20.88405 /SelectionAscent -23.31519 /SelectionDescent 8.18701 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 0.0 8.18701 ] /ChildProcession 1 /Children [ << /StreamTag /Segment /Mapping << /CharacterCount 2 /GlyphCount 0 /WRValid false >> /FirstCharacterIndexInSegment 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /GlyphStrike /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 16.54384 8.18701 ] /Glyphs [ 22 3 ] /GlyphAdjustments << /Data [ << /BackFixed -1.35 >> ] /RunLengths [ 2 ] >> /VisualBounds [ 0.0 -23.31519 16.54384 8.18701 ] /RenderedBounds [ 0.0 -23.31519 16.54384 8.18701 ] /Invalidation [ 0.0 -23.31519 29.50373 8.18701 ] /ShadowStylesRun << /Data [ << /Index 0 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> << /Index 1 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> ] /RunLengths [ 1 1 ] >> /EndsInCR true /SelectionAscent -23.31519 /SelectionDescent 8.18701 /MainDir 0 >> ] >> ] >> ] >> ] >> ] >> ] >> ] >> /OpticalAlignment false >> << /Model << /Text (4 ) /ParagraphRun << /RunArray [ << /RunData << /ParagraphSheet << /Name () /Features << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 1 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << /Font 0 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> /Parent 0 >> >> /Length 2 >> ] >> /StyleRun << /RunArray [ << /RunData << /StyleSheet << /Name () /Parent 0 /Features << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 0 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures true /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms true /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 42 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst false /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth .05759 /MiterLimit .23037 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> >> >> /Length 2 >> ] >> /KernRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /AlternateGlyphRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /FirstKern 0 /StorySheet << /AntiAlias 4 /UseFractionalGlyphWidths true >> >> /View << /Frames [ << /Resource 3 >> ] /RenderedData << /RunArray [ << /RunData << /LineCount 1 >> /Length 2 >> ] >> /Strikes [ << /StreamTag /PathSelectGroupCharacter /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 0 /Children [ << /StreamTag /FrameStrike /Frame 3 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /LineStrike /Baseline 0.0 /Leading 32.4 /EMHeight 27.0 /DHeight 20.88405 /SelectionAscent -23.31519 /SelectionDescent 8.18701 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 0.0 8.18701 ] /ChildProcession 1 /Children [ << /StreamTag /Segment /Mapping << /CharacterCount 2 /GlyphCount 0 /WRValid false >> /FirstCharacterIndexInSegment 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /GlyphStrike /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 16.54384 8.18701 ] /Glyphs [ 23 3 ] /GlyphAdjustments << /Data [ << /BackFixed -1.35 >> ] /RunLengths [ 2 ] >> /VisualBounds [ 0.0 -23.31519 16.60474 8.18701 ] /RenderedBounds [ 0.0 -23.31519 16.60474 8.18701 ] /Invalidation [ 0.0 -23.31519 29.50373 8.18701 ] /ShadowStylesRun << /Data [ << /Index 0 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> << /Index 1 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> ] /RunLengths [ 1 1 ] >> /EndsInCR true /SelectionAscent -23.31519 /SelectionDescent 8.18701 /MainDir 0 >> ] >> ] >> ] >> ] >> ] >> ] >> ] >> /OpticalAlignment false >> << /Model << /Text (5 ) /ParagraphRun << /RunArray [ << /RunData << /ParagraphSheet << /Name () /Features << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 1 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << /Font 0 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> /Parent 0 >> >> /Length 2 >> ] >> /StyleRun << /RunArray [ << /RunData << /StyleSheet << /Name () /Parent 0 /Features << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 0 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures true /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms true /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 42 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst false /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth .05759 /MiterLimit .23037 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> >> >> /Length 2 >> ] >> /KernRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /AlternateGlyphRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /FirstKern 0 /StorySheet << /AntiAlias 4 /UseFractionalGlyphWidths true >> >> /View << /Frames [ << /Resource 4 >> ] /RenderedData << /RunArray [ << /RunData << /LineCount 1 >> /Length 2 >> ] >> /Strikes [ << /StreamTag /PathSelectGroupCharacter /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 0 /Children [ << /StreamTag /FrameStrike /Frame 4 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /LineStrike /Baseline 0.0 /Leading 32.4 /EMHeight 27.0 /DHeight 20.88405 /SelectionAscent -23.31519 /SelectionDescent 8.18701 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 0.0 8.18701 ] /ChildProcession 1 /Children [ << /StreamTag /Segment /Mapping << /CharacterCount 2 /GlyphCount 0 /WRValid false >> /FirstCharacterIndexInSegment 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /GlyphStrike /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 16.54384 8.18701 ] /Glyphs [ 24 3 ] /GlyphAdjustments << /Data [ << /BackFixed -1.35 >> ] /RunLengths [ 2 ] >> /VisualBounds [ 0.0 -23.31519 16.54384 8.18701 ] /RenderedBounds [ 0.0 -23.31519 16.54384 8.18701 ] /Invalidation [ 0.0 -23.31519 29.50373 8.18701 ] /ShadowStylesRun << /Data [ << /Index 0 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> << /Index 1 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> ] /RunLengths [ 1 1 ] >> /EndsInCR true /SelectionAscent -23.31519 /SelectionDescent 8.18701 /MainDir 0 >> ] >> ] >> ] >> ] >> ] >> ] >> ] >> /OpticalAlignment false >> << /Model << /Text (6 ) /ParagraphRun << /RunArray [ << /RunData << /ParagraphSheet << /Name () /Features << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 1 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << /Font 0 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> /Parent 0 >> >> /Length 2 >> ] >> /StyleRun << /RunArray [ << /RunData << /StyleSheet << /Name () /Parent 0 /Features << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 0 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures true /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms true /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 42 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst false /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth .05759 /MiterLimit .23037 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> >> >> /Length 2 >> ] >> /KernRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /AlternateGlyphRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /FirstKern 0 /StorySheet << /AntiAlias 4 /UseFractionalGlyphWidths true >> >> /View << /Frames [ << /Resource 5 >> ] /RenderedData << /RunArray [ << /RunData << /LineCount 1 >> /Length 2 >> ] >> /Strikes [ << /StreamTag /PathSelectGroupCharacter /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 0 /Children [ << /StreamTag /FrameStrike /Frame 5 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /LineStrike /Baseline 0.0 /Leading 32.4 /EMHeight 27.0 /DHeight 20.88405 /SelectionAscent -23.31519 /SelectionDescent 8.18701 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 0.0 8.18701 ] /ChildProcession 1 /Children [ << /StreamTag /Segment /Mapping << /CharacterCount 2 /GlyphCount 0 /WRValid false >> /FirstCharacterIndexInSegment 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /GlyphStrike /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 16.54384 8.18701 ] /Glyphs [ 25 3 ] /GlyphAdjustments << /Data [ << /BackFixed -1.35 >> ] /RunLengths [ 2 ] >> /VisualBounds [ 0.0 -23.31519 16.54384 8.18701 ] /RenderedBounds [ 0.0 -23.31519 16.54384 8.18701 ] /Invalidation [ 0.0 -23.31519 29.50373 8.18701 ] /ShadowStylesRun << /Data [ << /Index 0 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> << /Index 1 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> ] /RunLengths [ 1 1 ] >> /EndsInCR true /SelectionAscent -23.31519 /SelectionDescent 8.18701 /MainDir 0 >> ] >> ] >> ] >> ] >> ] >> ] >> ] >> /OpticalAlignment false >> << /Model << /Text (7 ) /ParagraphRun << /RunArray [ << /RunData << /ParagraphSheet << /Name () /Features << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 1 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> /Parent 0 >> >> /Length 2 >> ] >> /StyleRun << /RunArray [ << /RunData << /StyleSheet << /Name () /Parent 0 /Features << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading .01 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 0 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures true /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms true /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 42 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst false /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth .05759 /MiterLimit .23037 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> >> >> /Length 2 >> ] >> /KernRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /AlternateGlyphRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /StorySheet << /AntiAlias 4 /UseFractionalGlyphWidths true >> >> /View << /Frames [ << /Resource 6 >> ] /RenderedData << /RunArray [ << /RunData << /LineCount 1 >> /Length 2 >> ] >> /Strikes [ << /StreamTag /PathSelectGroupCharacter /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 0 /Children [ << /StreamTag /FrameStrike /Frame 6 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /LineStrike /Baseline 0.0 /Leading 32.4 /EMHeight 27.0 /DHeight 20.88405 /SelectionAscent -23.31519 /SelectionDescent 8.18701 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 0.0 8.18701 ] /ChildProcession 1 /Children [ << /StreamTag /Segment /Mapping << /CharacterCount 2 /GlyphCount 0 /WRValid false >> /FirstCharacterIndexInSegment 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /GlyphStrike /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 16.54384 8.18701 ] /Glyphs [ 26 3 ] /GlyphAdjustments << /Data [ << /BackFixed -1.35 >> ] /RunLengths [ 2 ] >> /VisualBounds [ 0.0 -23.31519 16.54384 8.18701 ] /RenderedBounds [ 0.0 -23.31519 16.54384 8.18701 ] /Invalidation [ 0.0 -23.31519 29.50373 8.18701 ] /ShadowStylesRun << /Data [ << /Index 0 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> ] /RunLengths [ 2 ] >> /EndsInCR true /SelectionAscent -23.31519 /SelectionDescent 8.18701 /MainDir 0 >> ] >> ] >> ] >> ] >> ] >> ] >> ] >> /OpticalAlignment false >> << /Model << /Text (8 ) /ParagraphRun << /RunArray [ << /RunData << /ParagraphSheet << /Name () /Features << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 1 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << /Font 0 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> /Parent 0 >> >> /Length 2 >> ] >> /StyleRun << /RunArray [ << /RunData << /StyleSheet << /Name () /Parent 0 /Features << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 0 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures true /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms true /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 42 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst false /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth .05759 /MiterLimit .23037 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> >> >> /Length 2 >> ] >> /KernRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /AlternateGlyphRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /FirstKern 0 /StorySheet << /AntiAlias 4 /UseFractionalGlyphWidths true >> >> /View << /Frames [ << /Resource 7 >> ] /RenderedData << /RunArray [ << /RunData << /LineCount 1 >> /Length 2 >> ] >> /Strikes [ << /StreamTag /PathSelectGroupCharacter /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 0 /Children [ << /StreamTag /FrameStrike /Frame 7 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /LineStrike /Baseline 0.0 /Leading 32.4 /EMHeight 27.0 /DHeight 20.88405 /SelectionAscent -23.31519 /SelectionDescent 8.18701 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 0.0 8.18701 ] /ChildProcession 1 /Children [ << /StreamTag /Segment /Mapping << /CharacterCount 2 /GlyphCount 0 /WRValid false >> /FirstCharacterIndexInSegment 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /GlyphStrike /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 16.54384 8.18701 ] /Glyphs [ 27 3 ] /GlyphAdjustments << /Data [ << /BackFixed -1.35 >> ] /RunLengths [ 2 ] >> /VisualBounds [ 0.0 -23.31519 16.54384 8.18701 ] /RenderedBounds [ 0.0 -23.31519 16.54384 8.18701 ] /Invalidation [ 0.0 -23.31519 29.50373 8.18701 ] /ShadowStylesRun << /Data [ << /Index 0 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> << /Index 1 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> ] /RunLengths [ 1 1 ] >> /EndsInCR true /SelectionAscent -23.31519 /SelectionDescent 8.18701 /MainDir 0 >> ] >> ] >> ] >> ] >> ] >> ] >> ] >> /OpticalAlignment false >> << /Model << /Text (9 ) /ParagraphRun << /RunArray [ << /RunData << /ParagraphSheet << /Name () /Features << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 1 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << /Font 0 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> /Parent 0 >> >> /Length 2 >> ] >> /StyleRun << /RunArray [ << /RunData << /StyleSheet << /Name () /Parent 0 /Features << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 0 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures true /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms true /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 42 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst false /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth .05759 /MiterLimit .23037 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> >> >> /Length 2 >> ] >> /KernRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /AlternateGlyphRun << /RunArray [ << /RunData << >> /Length 2 >> ] >> /FirstKern 0 /StorySheet << /AntiAlias 4 /UseFractionalGlyphWidths true >> >> /View << /Frames [ << /Resource 8 >> ] /RenderedData << /RunArray [ << /RunData << /LineCount 1 >> /Length 2 >> ] >> /Strikes [ << /StreamTag /PathSelectGroupCharacter /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 0 /Children [ << /StreamTag /FrameStrike /Frame 8 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /LineStrike /Baseline 0.0 /Leading 32.4 /EMHeight 27.0 /DHeight 20.88405 /SelectionAscent -23.31519 /SelectionDescent 8.18701 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 0.0 8.18701 ] /ChildProcession 1 /Children [ << /StreamTag /Segment /Mapping << /CharacterCount 2 /GlyphCount 0 /WRValid false >> /FirstCharacterIndexInSegment 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /GlyphStrike /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 16.54384 8.18701 ] /Glyphs [ 28 3 ] /GlyphAdjustments << /Data [ << /BackFixed -1.35 >> ] /RunLengths [ 2 ] >> /VisualBounds [ 0.0 -23.31519 16.54384 8.18701 ] /RenderedBounds [ 0.0 -23.31519 16.54384 8.18701 ] /Invalidation [ 0.0 -23.31519 29.50373 8.18701 ] /ShadowStylesRun << /Data [ << /Index 0 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> << /Index 1 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> ] /RunLengths [ 1 1 ] >> /EndsInCR true /SelectionAscent -23.31519 /SelectionDescent 8.18701 /MainDir 0 >> ] >> ] >> ] >> ] >> ] >> ] >> ] >> /OpticalAlignment false >> << /Model << /Text (10 ) /ParagraphRun << /RunArray [ << /RunData << /ParagraphSheet << /Name () /Features << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 1 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << /Font 0 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> /Parent 0 >> >> /Length 3 >> ] >> /StyleRun << /RunArray [ << /RunData << /StyleSheet << /Name () /Parent 0 /Features << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 0 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures true /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms true /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 42 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst false /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth .05759 /MiterLimit .23037 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> >> >> /Length 3 >> ] >> /KernRun << /RunArray [ << /RunData << >> /Length 3 >> ] >> /AlternateGlyphRun << /RunArray [ << /RunData << >> /Length 3 >> ] >> /FirstKern 0 /StorySheet << /AntiAlias 4 /UseFractionalGlyphWidths true >> >> /View << /Frames [ << /Resource 9 >> ] /RenderedData << /RunArray [ << /RunData << /LineCount 1 >> /Length 3 >> ] >> /Strikes [ << /StreamTag /PathSelectGroupCharacter /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 0 /Children [ << /StreamTag /FrameStrike /Frame 9 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /LineStrike /Baseline 0.0 /Leading 32.4 /EMHeight 27.0 /DHeight 20.88405 /SelectionAscent -23.31519 /SelectionDescent 8.18701 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 0.0 8.18701 ] /ChildProcession 1 /Children [ << /StreamTag /Segment /Mapping << /CharacterCount 3 /GlyphCount 0 /WRValid false >> /FirstCharacterIndexInSegment 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /GlyphStrike /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 33.08769 8.18701 ] /Glyphs [ 20 19 3 ] /GlyphAdjustments << /Data [ << /BackFixed -1.35 >> ] /RunLengths [ 3 ] >> /VisualBounds [ 0.0 -23.31519 33.08769 8.18701 ] /RenderedBounds [ 0.0 -23.31519 33.08769 8.18701 ] /Invalidation [ 0.0 -23.31519 46.04758 8.18701 ] /ShadowStylesRun << /Data [ << /Index 0 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> << /Index 1 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> ] /RunLengths [ 1 2 ] >> /EndsInCR true /SelectionAscent -23.31519 /SelectionDescent 8.18701 /MainDir 0 >> ] >> ] >> ] >> ] >> ] >> ] >> ] >> /OpticalAlignment false >> << /Model << /Text (11 ) /ParagraphRun << /RunArray [ << /RunData << /ParagraphSheet << /Name () /Features << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 1 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << /Font 0 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> /Parent 0 >> >> /Length 3 >> ] >> /StyleRun << /RunArray [ << /RunData << /StyleSheet << /Name () /Parent 0 /Features << /Font 1 /FontSize 27.0 /FauxBold true /FauxItalic false /AutoLeading true /Leading 48.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking -50 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 0 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures true /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms true /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 1 /Tsume 0.0 /StyleRunAlignment 2 /Language 42 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 .32947 1.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 1.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst false /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth .05759 /MiterLimit .23037 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> >> >> /Length 3 >> ] >> /KernRun << /RunArray [ << /RunData << >> /Length 3 >> ] >> /AlternateGlyphRun << /RunArray [ << /RunData << >> /Length 3 >> ] >> /FirstKern 0 /StorySheet << /AntiAlias 4 /UseFractionalGlyphWidths true >> >> /View << /Frames [ << /Resource 10 >> ] /RenderedData << /RunArray [ << /RunData << /LineCount 1 >> /Length 3 >> ] >> /Strikes [ << /StreamTag /PathSelectGroupCharacter /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 0 /Children [ << /StreamTag /FrameStrike /Frame 10 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /RowColStrike /RowColIndex 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 2 /Children [ << /StreamTag /LineStrike /Baseline 0.0 /Leading 32.4 /EMHeight 27.0 /DHeight 20.88405 /SelectionAscent -23.31519 /SelectionDescent 8.18701 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 0.0 8.18701 ] /ChildProcession 1 /Children [ << /StreamTag /Segment /Mapping << /CharacterCount 3 /GlyphCount 0 /WRValid false >> /FirstCharacterIndexInSegment 0 /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 0.0 0.0 0.0 ] /ChildProcession 1 /Children [ << /StreamTag /GlyphStrike /Transform << /Origin [ 0.0 0.0 ] >> /Bounds [ 0.0 -23.31519 33.08769 8.18701 ] /Glyphs [ 20 20 3 ] /GlyphAdjustments << /Data [ << /BackFixed -1.35 >> ] /RunLengths [ 3 ] >> /VisualBounds [ 0.0 -23.31519 33.08769 8.18701 ] /RenderedBounds [ 0.0 -23.31519 33.08769 8.18701 ] /Invalidation [ 0.0 -23.31519 46.04758 8.18701 ] /ShadowStylesRun << /Data [ << /Index 0 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> << /Index 1 /Font 0 /Scale [ 1.0 1.0 ] /Orientation 0 /BaselineDirection 2 /BaselineShift 0.0 /KernType 0 /EmbeddingLevel 0 /ComplementaryFontIndex 0 >> ] /RunLengths [ 1 2 ] >> /EndsInCR true /SelectionAscent -23.31519 /SelectionDescent 8.18701 /MainDir 0 >> ] >> ] >> ] >> ] >> ] >> ] >> ] >> /OpticalAlignment false >> ] /OriginalNormalStyleFeatures << /Font 2 /FontSize 12.0 /FauxBold false /FauxItalic false /AutoLeading true /Leading 0.0 /HorizontalScale 1.0 /VerticalScale 1.0 /Tracking 0 /BaselineShift 0.0 /CharacterRotation 0.0 /AutoKern 1 /FontCaps 0 /FontBaseline 0 /FontOTPosition 0 /StrikethroughPosition 0 /UnderlinePosition 0 /UnderlineOffset 0.0 /Ligatures true /DiscretionaryLigatures false /ContextualLigatures false /AlternateLigatures false /OldStyle false /Fractions false /Ordinals false /Swash false /Titling false /ConnectionForms false /StylisticAlternates false /Ornaments false /FigureStyle 0 /ProportionalMetrics false /Kana false /Italics false /Ruby false /BaselineDirection 2 /Tsume 0.0 /StyleRunAlignment 2 /Language 0 /JapaneseAlternateFeature 0 /EnableWariChu false /WariChuLineCount 2 /WariChuLineGap 0 /WariChuSubLineAmount << /WariChuSubLineScale .5 >> /WariChuWidowAmount 2 /WariChuOrphanAmount 2 /WariChuJustification 7 /TCYUpDownAdjustment 0 /TCYLeftRightAdjustment 0 /LeftAki -1.0 /RightAki -1.0 /JiDori 0 /NoBreak false /FillColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /StrokeColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 0.0 0.0 0.0 ] >> >> /Blend << /StreamTag /SimpleBlender >> /FillFlag true /StrokeFlag false /FillFirst true /FillOverPrint false /StrokeOverPrint false /LineCap 0 /LineJoin 0 /LineWidth 1.0 /MiterLimit 4.0 /LineDashOffset 0.0 /LineDashArray [ ] /Type1EncodingNames [ ] /Kashidas 0 /DirOverride 0 /DigitSet 0 /DiacVPos 4 /DiacXOffset 0.0 /DiacYOffset 0.0 /OverlapSwash false /JustificationAlternates false /StretchedAlternates false /FillVisibleFlag true /StrokeVisibleFlag true /FillBackgroundColor << /StreamTag /SimplePaint /Color << /Type 1 /Values [ 1.0 1.0 1.0 0.0 ] >> >> /FillBackgroundFlag false /UnderlineStyle 0 /DashedUnderlineGapLength 3.0 /DashedUnderlineDashLength 3.0 /SlashedZero false /StylisticSets 0 /CustomFeature << /StreamTag /SimpleCustomFeature >> >> /OriginalNormalParagraphFeatures << /Justification 0 /FirstLineIndent 0.0 /StartIndent 0.0 /EndIndent 0.0 /SpaceBefore 0.0 /SpaceAfter 0.0 /DropCaps 1 /AutoLeading 1.2 /LeadingType 0 /AutoHyphenate true /HyphenatedWordSize 6 /PreHyphen 2 /PostHyphen 2 /ConsecutiveHyphens 0 /Zone 36.0 /HyphenateCapitalized true /HyphenationPreference .5 /WordSpacing [ .8 1.0 1.33 ] /LetterSpacing [ 0.0 0.0 0.0 ] /GlyphSpacing [ 1.0 1.0 1.0 ] /SingleWordJustification 6 /Hanging false /AutoTCY 0 /KeepTogether true /BurasagariType 0 /KinsokuOrder 0 /Kinsoku /nil /KurikaeshiMojiShori false /MojiKumiTable /nil /EveryLineComposer false /TabStops << >> /DefaultTabWidth 36.0 /DefaultStyle << >> /ParagraphDirection 0 /JustificationMethod 0 /ComposerEngine 0 /ListStyle /nil /ListTier 0 /ListSkip false /ListOffset 0 >> >>8BIMFMsk 2!Xtt ,+tnwX$ p\ :NG@<M< ,Nk' Kpd#FbekwX   Nkb_]kP !Xtt ,+tnwX$ p\ :NG@<M< ,Nk' Kpd#FbekwX   Nkb_]kP !Xtt ,+tnwX$ p\ :NG@<M< ,Nk' Kpd#FbekwX   Nkb_]kP                                                 keepasshttp-1.8.4.2/latest-version.txt000066400000000000000000000000301306306563300177350ustar00rootroot00000000000000: KeePassHttp:1.8.4.1 : keepasshttp-1.8.4.2/logo.png000066400000000000000000001520441306306563300157000ustar00rootroot00000000000000PNG  IHDR\rftEXtSoftwareAdobe ImageReadyqe<IDATx} UwzdEQpCDuQG\~e\upQgDPD6YeI$wW[۽UzIC]zUB)6l/M36366l30l3 l36366l/oB]:7⼴*'hj/3AWcܢCZカ;֥n2DӒh1M[@"1OC'H,Q {"&0 *T* +?LZ\ 0%tbf;-Evs^73LguM9fmҕG.bdzle+V5DeuMO:yy|7ojc;VzftkC]<ơ4`ϬbVP. H囂OLۧzv#SA\36=n611Ƿ b%?|bX6oN7Е{4J" @<~~{rw$lux7- v|z2'xzݳ"ÎP fPid2:#s?yOԳOhzi ҘU_Zkh$gB]Ӊ0չ` PX90uaW?zI1)#f7ci[2.q0@`Kosޢ"NI=JoxL&jZHGvox{o{{'e3 >. ~G,<VJ}Yc<zsakraTVVdH0;64)ԧBaAlp)F#~.f$`vC'- [>-K~}JCE ?}j̋ߵ{x(K &XDu(0,5Ic̶ޖ|_={˥RD,.X3p7dck3FYQz;=W(ମ8.9@Q$S˶B!/4R|[@_ah6oI̮W@8Ԉ @4Gَc4Qs^LY&H^o}?rnpf^˰q ^PȣRTԠV vzj}}By~W5yf ޹2ӖP&t 냽ӁoݷNJDuR2"T|tJ-MCetݻW-m)EAQ;Hxвn~^EnHf &}އ>K>lقr_HZ},pUx $<<ٝ pP8]kfU&tLGJeÌTQ45ߜ( vq*~PH*3.0!։>e\iL7Oo㾽; 0Rv fzm,;ȵ?5>y(Յ`*ǩq}/~'\|2[+ \qL Lt6ض7ێ-͊w/1//@)@7f@\A9B DOV,આx*'6<[7y|k8Ih @O 9?KjˍeEO F܏ _*bGDc^;ou ,bR0WђG7;A6L7+僛@jJǒD)Z".t^PHN̫K]ǂ sqL/&`q_wyӆu5Rf Z맏9ᕧ~ _+O3/K(Zw 0O⏏oHB, K5|pb7h>[̴6q]η܋Qd/g,e@aPAB?<?{9 HktN0d |6A:>}_bj#j'ejM|9;ui]  @@"k]{5sqƲ6JWHП/㗛K8iA fY}_?n?9@pH5D-|[ΖƖ<O1_>4!|cްCrMIn0GR4_lY%(J8wa @-9ό[{?o#F& ;_1Hs0xE o"b:8Ƿ놡6H Wט"I "f@X Tآ'b bTq&mلH,tʉ!:1pv"875,_, bW M>|;;Զ-<=u;LD ,nΎ9IyP#6Rp:G6Ʒn_RLr.)COpμ]5jENN!iR|]V 0-\3N.H v*vp'EVRx&V#(+Sn-&bӐf %2(x'6|@AG=ő 8vQ;=yt3Z;h`II?$ubFV]%|>-M9&h쀫ɉ}^=.U8)@,_f 7qeNRfeoxLf˴H2(Xos(* r7X>>ߓ։^(#S[@zdn;~pShX_~1;w ~<:CMH%8 wšb/ܖ":R,Ե"Y~"s)a;d.Es]Mv)f8d~!'C6%] RIWv "Z[0a=F=rR-mVrlykАgb .TwП>rՕ ~P 8)LCSO^7,ԮI@z~N=/}߻=$+\Wl-, .-īY5hiqǖ1ö8l WqXM8zvҿ 1杍^jy;,H5Q/`[`'3"8gڼ%Ed'ʎ`egw{5UNTKE$2<c+8oe7&oO<̿?}tƧ Lk~r̓?X(8&5y>f fYتic!uZuUfec_rRT.9ȭqÓ{m@5 &_pAEX x]!` ;pxg#7ryxyH]vSp"`:'QI$p)"  |Ji92gRv]B~>b{sE=pzr;I* {zw~xR\Gyfe膟VZFg?("Ȯh M] h>X3,k G! pW8A|^Awx="_1ETQ)),mC<JaS>x1̞>?r/$l|WSՃ 8R)WDɯq\Lo0`;O1P}ľ3RLXPˈ]9IX| g?5@PCu:0_.w]m32õtS63Y׏xWQ/8~`O2PJ1o^c=uT<ݚC97m5:}҈jo7&@yWʬ}~76d5QO^/&cxq][b*|a|cf!AkVM 10'mEܻmDhr]$DD }5> $R m%N@Ng_r` ! O=z<F,*48=y"5QC|bҐ"`^! W|dP/է5bPYW/gܹ&B䣼Ng\uB/8'_ˏ]p󔗰έ7ܥ"XڤZ)h)C0K?J`Is0a)P^1H[_sD"YL-&Yۖ$x"jhqk? 37]ueW̕}xǷJǵt<@K@9/E?7_e-hJ56!iq7?yA#.?Sd *t.UPd =YQ~U}KB QK]Gs Z$(QNFwQ Vyv} $Qoj˗hx<=k"(} s.Gp%]tǯ$;o#wOZ;DQ]z3ݒI4D*HW- =Y[5@3'Nj|j9o>M업>J{W[֚t3'Ś5N td=j}"5^4yDrm²0jHD0*HP,jHgQ7g)Ff^S4h(ip\񅇇QF`?f~]!2 ;?ᕧvlx&aa<+ɮ7=O[Pɾ=T,ӌ>_ڔĩs{nGH-4Ҍ :~gig*H 5瑏n" UIi=$h({=?\}N"X0 XҨ6)R\s+ޭw"W(%CC}v1h;’J.Jx-Fy}uy"P(q1(V=l醩'` k@*P-T.~'2͗gHS}r{.͜2QA]#BMB:`UuxƔQIEMZjd5I@IȈ-ʈ4Z%IKx:N ڗJߢˍb%˾]VG3?7\p׾+ X1֙-tS2\NѰuW x$` "P G:WZk]ݖPcSXӷs#8aQݗ_ H(u0kM73ifq&OC"G W$1$v+3'6O`Om?6VDe.E t̔TđJQ\vE;ϱx^l$lmugT*3¿7Ѣ?f-j< .c-(2N8"^9oг#Q]>B ?•g4Qӵtf?<{+{q WS.@C&\sa $"g&WJpxpkL`%xRP= uQDFgM&U>KCFBՍ5$^ܼNEQ=X(g;F~48.J' ؚ&؟G*~USV5W|_k6ȕ/&%^_dL#f',tcT,5tb`MGمkQ(ӂyfᡣGg%u$ND *{*`[)XC`Ǟ5~JDbphˍ)<]cP̽4<]034A`=˥Ş@[<BdG1yd4 KZkpxG#dŽniĐQ^o1Iugg  J.]So_{Gb2+' 7;f]u}Ⴎ.nE./WSfl59#g2Ӕ&fkqW{j69n$(\A2Q7m;A^/oYE4gP[R}#}:Eا+9V(\qX BlBAGHauG-޴f>q=W{| Q\v>:-K0Y~;S`q2y q)Cx0o5D{_t?!%})rćX~懰 b$RI1j͡vˡr? DP"5 1!EٲYsqujLgDŽ~AoAȣĨ_C] Q TR@uа 0ȏ36qIK81wX+oByw \@yFdN idb`{ $zhm_w'xiww&I+t O]y~˲h!;5qd~9A L]nZ΋ vɄP#/{4DXٗqR RTҭ4{Hՠyx``k b dѴ(᧏ėn['v CGeB+%?lͥW?7F4p?ȣ|3~HcO[k p&'4כ!oxXе-mo>wl%dN%] {ЁV ԏEtxHCD W4KZ^ L7>K`YBfQَyh^Y\gp=s04[Ɉqq ׾-v RQFg>l-g63i\vFs\ Muv#̵wEZuZ^4 a }I1*`xue~@6 0ZfhBdn[ GzѸsgܶ?xNÖ| 1-P\`{˿|hVǬ/E.7挓ZkV݇k'"Ȋn*A쿫 / XYm*%|5~Wk eRwJ~gۓ* vC F7!4Ѳ9+[[4+)Mh_tao8%uhƴYEt-^L(W@G̜y V\}8;-wK6fayy@݀ݏeuf<7KUJ{*7r XvMN牊UUD$PH4Î̖p b +)Mǯ$U Ai |e8d1%"'roQW{tC2i(7OV@ϞS8JA, E~M%4䊕1BI {& LI5x-0&d"CA&L'`' Fm|sJG˚XƬM.y'ԣJ3J r ,:կ9}~/B=] +Dx޷٘ @\U-S)/ҞnЋ%Su4QF˫B]ӾTj!cH)@UTe%noLks;Lt&{e`4#oFRXN D@"6m[fy FӟʄN z41CyJ&& \G^ Cx!SwigSQ_8Bie9ر-!nB_tM^z"C X0< ޭXa:B3twVD~7|_9tO^xɥoO@: 9v"&\CXӕF|ɉ&f_ؖѝO *+^m4I8UAZ~סEPc™-m4t{F%.%̒@ 3huЈaп'ndf-ώ|?~twj~ v#>ٱ';VtH?:^J> uX(6Tbώo\SBCP~}:| Md zBD ^@y Aα RaT Q 0( @vgQl56Ϳ>_>Z؟-. ) *bl?^97 V<.ˤ|ش 8b%.\|Ci#{f<=#j<]wq>6 AkT*-\E)|:lAjqMvI-CP1^0[t<'iFE|`C% ' RD9 5f}uA NTxhBU/Z$uspZC4hhN]ti';;T|#EDV_B wn؍dcS_+b?֍=[dۺ`6yPhPI~FP$G{2ӮMunf;ܹ-91/\E{dϽd2ՄiQ¥+o{!fK7@<2?(SQ>iHTP-\☄Q\/b@kBE'A3F .Q_c]+`8ؽ=x"9 vmv0,_uo9琕 ZUt"&ާ77ރ:86EJuid|PVW^-df/O}"<~=6$qewnI|w7bGVDTp -nÕ!1|(𛋂ea9BL}GhJb%a(V=!W"᧚]' ~[p",7S5Fl7^+`87E7bmS0Ls/\rEoݡ,ē)3Vڡ<xz ۲thb$϶ ّxFx3vgyzx8Mӥ~_o=Qa ,(Kcb('"~*5B{tᬂc1 U'  q2ۈ-8w"!N85=q?W;gRI//1?+^a 0ɢ@@zY Z) %d᧜Snnp.$.ze6|2@nELJo؄9$ۀD$ˢa yL|Au@_)NrI+q/wnwoBm55kDDtěՇCoG,ʌ>ёq(iAK0 %|!P5IƂĄB'?-OEf7( ??"M2gfzqVVtԋӹgX=7&v0GktYƋ8(gЕ//xb(.fU|'4wud7c_Ƿv4T)%µ8]Ȗ\b{iAPj%: HnQ   wBu O WRNdR}AXat\҂I=RT S* z[+ˎ?xB4i w-᯸g{]|Я%JYm8(w/Qd۞YN>ؐ@ @j?Wti(>>-&#$ A? xGX5'H Ew~'i;7 ?{zzl;-fE9H*q=1Yy& :q {]1nѯ=~QE,8{h>0rY>0b-ևwGza4]`$:lIԊ&uVh3JY*YjO\5:pﵨ Y.8nuf.5ծCO#M'B@8HC7VQ>MmtҿGt68蘂<*T.c%t[ȉh//^:on1EfqnLN&pg?m2q/O"꾣²c<$AF6[0nl@bfJ `#ނR⫂\} ?lфRn֫|' $_{jВkK+C'6qtg5/?c0^ lHFr(K ۶7Y [_݅J"$5R /QzC~)+d7pvB#R =u*̤k:Lè /v A k|pLĶc*VN(9*]ePP oHT&+Ub/ aLit]ɲXګ&<9uNgߟl ֣O;"Zc1&Rj=7r>;QhZW5mGjQ~_H%!AzY빃5_7(qvQM4@5")2RK9ɇIuNVśLD3:MJĉChLtrD"&wS"ƈ6pGDY`> @  8n\9 2@`!̟sμ;^x>W+-ѹpcL!ƃP';JG_߇rd`/HD}"l}a-UK|x$>ɤ:xP{iNЍ-.2AwEOu5P[NKjl(e"INSʑpxJ%F9w՚f ihD8 Tw @!R1iʪΞQ/T&SD;dO:k_y[r/\t܊ iC]琜w8ݮ;Gʹbn@,:(R*Rpp 4p!1p!d;,;G$\P r2^-ɏNp/o)D:)"yb]+&KmgQ)a'DVA[G:5dg ۱iR?B`0ٺ?L&>4Pfo hh"=jYt4?$XOȗr `̀[__݌UL3E0," ߢN$Q' -zTLy+L0a$-gyH58|-1 s=e @ =xMgdg !%(2#FhDQMvǣۇoD R2Wֱʍ3kOZG "_&ׄ&3tmOU^q`d맇PHv~C KeDE%6]*SޓK.yO0AaOƅp 7Mg'Vl_"EY~GX>߳@w4b\:~o7Lql=uEoV$.}hEkt9 IA#*5!ˍ;^S\vUfk{_>?:;wG}n%bqOϕ>+b144 1#ѧ;o wдd sjY@[I>Mu5ܫՖSrϣI13ܗOb8}kR[i3@$ G==~u0J|" m4>u. 𡕯Q|@<ck X/N43T͞Aa%i7ɎFwI/Fv{ǡAJ2I-~nrY4QsA ~Ab4g鵡F #hrbse\6//~ tY u a϶l\^675u?tF%U?T.y< !ZTJNxwU #;`a]o/nԏvbQ]u8%UuhK(7Gdi%sB`Go#CO?TK<2gD 2%9|n\z3c{@Zd  Phe^wB#y2}e!O2YbH+]P j[s;wu"`aH^4ԳT'R/)eCv/-׺Gt r[G*(薚^746Î XR1ߎBB7ot?4Tw}Ē9֦5uΛM(G-;`$ yRSO/: ;[a`{^@pI"cs!4peQ'zO!VfuLʑ>#WjeGUa*n*@+U(${N8k%TMԈ!9.:"K4^LɠIJ|} ?h79QQ[`ʬbWJJckpҬ8Z}L:lE'&MZF=%Y][ɔ2}zNzilR |Dlve [rnPC.߭$E i-䶠7 U uCfG:Ҳk[3NMbL$8%eh+QMu (}l$.W8{p#}y4bI=c`+P )|T]o20ՔRGVPEZclI5{9PuWҠOD$VHOZ$2CED~O/*ʗj@Dty (ZlcHCQך2f }3[Z,{:cUcl{%۶&O|Gsnl, T S pcawJě"#\)W(b$,[/Z5r`7&[@'t$|}ø懿ix]W{"𢻚׎ ԁ54-{qoq(i?#"E䊮E/lʚGh;M { K^p3s Շ% JtI# |  ge/>! DN!F EbtIh3 D\X,;дx4{ P<NG`o}cQ'R˽%?2__\BPzVaG$^w5YI"Ӌb"n&,xs:_ʫ(dF+~$Eo% 0>X> W ]_\Wr0JNe$eJ^?=\3GS<=H&: e"|:ݸWœ`Sn0/:\lPD #4T,o!_jLcn["3m7mۍ3n<Sih{JQL2&:Ţ:uZR}S^ [/XB_:TS RpGUy@"{!T@`"PMPh(ȘMwT)JPVdk~pmAZFGlJ8,JlZ0cV F|nsM[huA5id:ؐuPb['8W(q4wk7m!USe,;bɤD3WBU hj=i )MW0<7*L#TxQ^r%Uz.x$$_̶_2^̋OҢ51 LUX͗LFeKJ"epCd7pKOz2xq;Zd/x0uB2 ά4BlE+R!2ͧ?!XmrSP)j-tDMA.-bijJ1RED %:Lk @/jvr0?z]Ŋ:W SRge*,L"{i h^Y{_'zhO ͦ~cKOh" s6Zߔ e$pM+6yU&HrL5 JLWw^^|F5L,; L|Zb=o; ݐrI98Ԣ1:ݢca@;>L6Xb"lpB~$@D5JoŞ%Pg04Fdi{@S=?Bg r(bJ޾Rgh 5*OuKQa4Izx]e&hEQ s~X>_{&8Y{U"Fyc-'p>9QwMCrCJ-Qi!l|p7818 Q)$ Fz,HA"hMـ'*zB.HˮRc#{bAcDWdG8},HΞG;90!5 ' p_EIe҄XM:Ѳ}x)tS<P؂~>tFAjvcޝ!B$0 WcDY|&/ߐ K  QeLS^24H>wnieqRsCUz=:A]D\$D55 қ 37ܻ^4| 48XxF@/28z,)jڔY-s"<`w=k.3 b#S D]mbuMhH訋!۾(39Y -7)1[~زIbW x\|4DR D* >i2(SVxاE?,U'GJ8EUeL*3h%g#2Qk=,4p>WS#BI_"BMqtɩX2eKNt/UЮzr"=Q %ưX|7yZ8cYK04~BndZ[,Xo^)rerh&WA=\%{qߦn<=B,%Fdy=IfqV^2Ch}o%|z*Ekk@.l>P&$1(* 2R]=w` -ύg̾p1r\pov4'cQN8"Z)3GJtqj6F;1ܺ0܂HW  ÁS6@O)) l'a 412R?=٨FOG`d\0Q?=^u9Z*ghMlB*"᫿u1%¯^t#EAf `F)PcY/į K/zʓ:0o -1הO\E8* iP+_1%D(RTGO>|8?GFOѥۓ2dd&ot&;s0Hi8s h F<" 'nE!w7CQ+6RokF!u u|@\{Ϻ\V= +%{OȲy+ I*eKZ?7Zt%΂Cѷ5z/XWg³O\j*al{ʵ~)bl!h-3OkOTB !~cbX>fgff\H 1'_nVuLøc# +dkBC=oF9֡gem۵L&1yE OdhܒtQ %qb"d8X/BՅJZKk{d딠Ps&Nh' 4:}SJYl\ީi9Y%xQ`#eAHa{^twн.pߡx}!!` Z= %]0:=ɽ"]Wg0s @KXesx4zsqB|Jy9)~ A;s:ȅ{Ox+52">2V9]quji&,)c>56pWMןs˧@Z @AP`P!2ǗrzFNzEЃB w,AcjLQ$&% }LVEKT`/8?,$ /3P)$:<0̽*|;?u[u: K`ka N?'n<?s!\~0( PXbh~Hn&"QCrrTiARw p_[-Q2!Fq!N)2Lo`1ڠd.s"<:$[MJxYy3`$Y (8P$fBQ( 9K=;I|H?_Z:μKy!K`KB{׮^ ;e |򶣜x(3}(Dir`_||{4 =A41\wa‹\HBݶa\&1ZRc1Manz[/ܟ d.9a8xF`wE/u߹NtDjC\RGp@R8R3䩱Ct6X9YPG[ma ԠDc8{yϯ2hCW9t=H"Hm^@9 ?[px kL L2Urmj=7 SB"!Ӣ%~E/DyrXviޫ}#AsXspJ H]Ɉ6 d7D^j')b0rr7]'BZ>LdWR BCOGpv4r; U˧S݃>&x\NTG`^ޭiAQD{ԅp>gX7aقVjnJac v^ }"KʱvigaH˹ T \v6o5Lu)2]Z ɾW"3 8 ~FCxHzHB2wI~"?zuRT؇Da\~4@B5>gccy(فb逳wt4( `3QܾÉFŕ|b89C3 &N=ޢ wyUF@3zY$uC! ̴\-kg@ľ@.<~eP?heʄ.KI+᭜(k]nA1Gu)91!σ) %3ͱ1ܥ«Dڑti^)v5"r'Bkκ&8E%1SJ̶jy1M`dD1\?gփ2= #ɐHԳw? xR V6Ka&3&!|'Gpd|œ{>Xwxq>:9섂.9(^h7K-q _ /?c̴0ly3I$/IS{?|ޢ!Tn~xXtYXYonk6P[D%Xcfdfx@l(Y%(Z(^ rC()2:e`V]Di/ &3̉Fh4*#TY6>DvkE~w% =uJ9&Foק¨T~ q :wב:r.,@@u8ԓ^u\:r22_+wXsN$B=){V߾p1G:V6;?: 4`]SRkf^nj_ZsHRyK^R#KH>k%x -sJ(%sre xug@HI[tiO!EڍkazvV: AE؀#R,kfdZPw9ލ &iWW--oL8qY4-x -КxRrQJ9#ٗEU /"evyX?R@ l64ePZ%"sl_Fi4o̿"sqhaл.x1q<-"n5;bXv^͝pxM ͜OրQ>]@t90a|!hla۾825k2*0Au${D w f%6Y"Ӝ1Pqe 'ˢ; _]?vD:wľpИ$'tYrw>n]m#X]s=:;,NQiKR;[gmث8g[Nc;kvh0V58CjyD(hU񧮳>.ؼg u82l%r%Xk_y폆LPRw0;yd1XT X[l @7c4Yov_+'ΨK, X4(%oy3íJVİ2Ǹ}V /kn rs'8aUY&șh|:h&[椞y0poȋ %HO)R[ѕYNZNܠ ɹDge<Ԩv ҥ#:3Ub[ xAkO89Dvƻb9z\Of[FGv\>q8NV79!wQF&'V?nRJ[ŠО8]ΛREy Y,߯?)>Ucs/9)#.Z@OPјZPa:R‰IPqt$_j +X(G2 6 7:* TQqd9G/5 $'K u[$|ztW ,ҎgQ?>7,i5l?8f2 (U`ۣfD|L3;<+fUr<A9G?mI x/ڢJ˒ EWY1j}pVFHH}=QIفl4P{z A9,4?܍U],x4 EhQU#|`>g`Nsd{GhՀY#T__ \v]cπn^ _=',\ nڕ$e+3`I$hrb>Q=3 -ČǮYI r.n@twj8O8W[|)WQj(b Ns &k>> 1:E]U؀{~ð{hCUg7sg 8'pqҨ Q+-7LyEo%_Sp9sVhL hǔ̸Np:O m7&PU'gWZ`I{arI&)YHaȱ E*oxϡs2^F#-PQ's_V/4 C\A&蝇jK3ig6lOs\2B!-!郡<׌fϟ)RGrz fbpDGr n#A`ц'8ekPb} ԣڥ"P!`F[EmE2ka 'C{KƩۥN4g πSSذBDp|b]Λ~`q_@;HvՂSPp|bPʍ'xDtl2n3HBOS1<2Mg8n=ilY:."B[jД^-^ ]]ZKXD р>Jw?OpD$ gjN2-Ln3/U឵[ZnG9Ɍ}{>;~lnA-ᖝJ4Aiipφ=ގGL}: kIcUԟ5=IW/%POGhVs,@0x6c#/)=<)ܨĐغJF4ޜM #,շ7) sR`3HSoS\y/7OrHdͨB]aq ,R2wJ{ܭ=i2%/qϙpt4) >2#cc,5/C` 1AJIkГWۄϸ㓲4a噔yaؼw,iuGg Əψ;2ۖA\#c0)'^[9)9RR$ ]cPJ95F^n}-8G3J]Etq, .T{N Vh1)E{Eؙ2=<;2 [D>mAȘh jc]n23p;&?S@'SSS=sN7O/N,F%=hz ' oٕ/ 9qRX:[Z{鴁z`0tK;?čk2cucX̸UD^L<_Z2AK'yߨy֛ .8 8ir3zL4%"󏩬-` ɹG v1Ȓ)J0Fx``:oD`D͜eOLUªvS7_MPYbV/X8 ] Z.EtfXqa ZR)s?P*ɛݕ^?pC)߼:{Լ0GgGI+ }-$ )ׅƑ:nC]<~;TFZ媈T*h ('KCPn6S%c/H(V#KK'iSNzπoܽVE1 yd9#} @?.88{a}vs>ΑCʙ@ʐݕe~.SO^I'dնYXh:_W"=Ёm VKOn >:4Vh~מAq iqRch7Bj͕E XoH7`v1,G;:$ZMa!%Hz'7\Tم 9f/~*o<|G A3J$ir*8ώ-yO5\[1'{0 7p5'f~FRgYb}F>`i'e:Q )+Q`X"u[‚.a^_μ=_)s@N/Z5J>Eh C+ڵmF~ J3+zk8$}l֏Hz ?~50N8>h6P$DRPRv:[ XVjNm=t-x>$ڳ9XG@>2:S JL17buDG &` l}lK#;f`5*҄L3j9zbGC–+GnǞS@;3͘Dpy( g]w΀/߿ڍYI?RGáv)*pEG@eʔj./'˂~Gͷ>t.TJ)Σ?#:ix-a2 ÿ~2'J> W/2bJPv3pXދdx{oK=;`ifΤ-;yJ8urA·6?RTTԘ '5ǹƳ1`<,(U@`-"B1U`&O387Y,pgC栋Ep)8LM:sz1޴~a$Im/1?'Ju*`xĸ,n]DN%LY#d] a6"3GS̍2To ة:I;I]MV MDI9/ HݧW$ cWR1<<L1+ AӾ.pxe/a!9[k.ɵ|QK$'7g,^GqȄHng_`Vۃ/ ^ τ}p=7K_<;s2L=>n"X[ݙ7?&̙[ffk\):%T\IjNkC/#zBd+k@ 3СgH;i܎9 WSg#=TKo)3".}N-2):Fg3 ]"]yH()kj&K*^_9+Uz?xzԄ~BMfR끑MvLs4M@ܿ枇!@yqNŊ#cJRe:tfv7YvOw?6XVӛ^|B vw+,j]BtEPkZ $@#| K`br\e*Iit?wb^==$Ago :x8ZvHzQc! ѼI0 (ەe׍ 3dy$`fl 8(EU@P2aGr`d*U/)9f2}INHUTNL  zqU2to81=;u4 ǒW޷uݎ {]MXR&A\s@6h:O__cS+a| h;ᣯ< 38뭐Rכ-׽^s7{2XhbMw^28pB gCO]N뇿xTag=g> -A#2aN1:yQ>j<:C|MD@Z1D71BWB2S4[tșF+=$Hlr:l7 )'~,5`%:mh|;*s%FJ Ӈ3I,>t%;^w)R7;igෛ\P-ї@V*Jqm:\X‘)LJI*S-l7 |}. } ݹpa{ =Q.\[;K amr. Btb1Qm0 )9$ωwȎ,8% ƾ SPF!B JP k~L@f)~`} )|!L梙,rO9fomd/ !8xU4q ĚrI*.P0 !{I=gU+0eC*v\ P;x ~N6a:Wx@"P%#Ev$GQUXD}MDf=ULG,%,8PAzwT4 PlY/6ȸ0с92I~Mʻxg{#(TA*ݬ1*/Ms=E5ĘCMʲۏ2 +o{΁ =d G> [sω'YƽrBL)=n#K>nAPMIZsP|^`EkdIAΒ#<'G` ]8fq%IJPctۆwm=Zq,ni#w VL}# x~? 45}u*_e^ca5t1| 0_l¤Y_ xۥˠ.#E%\rRdfJkpo ?7{?L3DN"-)wD)VD)覜rH;eS32"< $5L S"Y РHϩ iT{z`ޕvڇ(W8j+DIz]6o1PD T̸݅!i-= ʻ$㱒5jw:!ᴁ܉Dċ{<8`vB] ]N1bчoJΓd0~x@;Tq_ )td4R481HoXFۅ8䇛mW+u+gaz]0+YeyJjyoYpM%B[kDc0 /0`:9O wv0wX|Vk*~@|O9´֩$H2ȮCpcr\C~*c/e)^(̢o`12aefYA3j`AmE >-*Gy1ߗ wûAXQvMz/y\{FyNzkq_îrWgFm֫HBZΘUC_2i*@I CFlXot_fέ-͐faLtېtm`s- 6u̬ iQ)F7IyDqKnGG!vGv|ƏlBJ/K\CL$j|E{<TGy8ZSsᬓoܲ.-gp@@jBEӧ< Ү0O< +onV9z ` yř&2Zmzw,P!B06ic*.ڭHNb(wnхۍ?K7d$**v;cM/ylqreIV ܾyѕgMGW"to7Щ#XҾbxՌDvx3V_(-JAxë^ Uª`׾:̖BwXv=3HRC#ZhjiN^Cpt]XFȥ%ﱌQgHV+8b<,N(1k`84Fꌠ.F*-( .Nuz$YAkϦ-ӟyuw/x&TRiw8.8`->$v[ Ҽd Ad&"P0mHǿωt1GCu Gt .KY}bC[ǀdpd|bVe{8(t)ygvcJBFA)/ZiDQ :M7KȝƜ9=xy+Άg7YPMx}t;{sr; n/{VRsf4}9 ]v3dO/r~ɀ)}rCT\W{afݲ~=St hZu˭K*. vRmYqbu?~i$% 7]2K+2n|A(!GcG(!|sF 'p6 Y- _r0C,e;gz+:tj=dQvp`qKm[/ E#?{\f 8 |EoF%`>_0 M07(TbAaW\ oy"Hv3͖d2FK@|y8W셂HMDރؖt8x|=/rxHHvCp92F_c)L-$*_xR=~=">tjwfFV]ks@+MH7 'L>+@r4vXc3@]|{= \u)Pdgᣫ T bQ]^Xmyipj,jRet^g@]?EBGռ!U:3uŽ ,j^0rfs]ߙf!XAE*_gVO*o9VH Hs|'V4eEvq^>Ԏ$kosʦ_PKQsO\ ƄFZ"{QnMb!!*zgr"Uτ6ly8@wWTl bTc _0Utt)zAn9$ xPc9:YՎJB5ᔔ%h|GId8 mL=t7k%&b3 4*Mg8l)]|l @CEy Gs3P2/|3 sG qV#,JTBZ\3-ǵOs0h, 79NQ[.gp&#ST9\酩na[U>zo[0{ae"xQtTq=(֝ǃ$/fJ4c+ )eLXsP?,NYN_XҜO >0F!A 58_(rΐ;ƲUj^+= /Po" 8 GP5" \:V߻[y9{ .S&V~&IJ<^Cqn9Kzѡ[b@wȎIDi>YSAf 8ʹSi1cqmb哺:Ľ.<( yRҡ=G [:S fK- =At穕Z/U{[,,o=i" i0܏SWR"UP++o(PHϸ2➀ FVMQWypPk$VB1 K0ol ie\^Q\L1Ya 01ra#m4; wT0N˖۶9o}XN<{5#{Ηz s6i_-%TXKş -&"m+l~e~QχD̆N p\CC.bjB#nΉ6L궓%GLwXO)P7D`ancPZv#4HƄ5aF#=LJ$ل-{Z&TfPEΠS[ot]D8Poa~`=*)_ǰ$_-['ǣzh }SM'cxh<`<]jsJV 4 +?tMq5$DSut7\}70}04:rR^JR)셃HQt-5F~$u3Ek9r#t n@$׈ҏO8u!W)PP>rTK0*ԙ**=0ܹ/x>d/`}OKl=Ijx(,Co2 j`6ܴ}}PgЋ, LzpGih2:zMxwL1AHѽs`AonxӂvMs'tJЮ->TPe9+RU^Vқ2YVkuPच藓48.P+ HfG$G9%v9fJhz_v93#bW}W'$?@Lux׍_ZЗC J!mEu Q+gQc '_e}pͩ|y$%SNd9nэ5e(3]OI8eSLѮqgiu! @V2S"0R2(&#.`AtksNh߁ȁ[b:/Gxt =IKw50T نTID$ ɳ &F~$Np$ z׶-!O(#}"v<|/_umK"f_Hqр=R 4#JS8Ln 2P365bjݚ<6Xʉm=ҒyAbhI q58n i*Y |EF#cSab30`0`&0{D趗{@24 =}Pd"+1JYj6-<, %EE/smǛ0uKA^}T*7۾o(o>Xԁ>3/:O? \Qx,b (=&+gq`avb1`C]<(j)__ .g \q0e3 1@rHojFR!{@4{n@@:~@/;}^nC Dξ Q% !Ieݟeg3q.gAX3]ʳ`xJHK$gPzsGw TRy$%UkCb11)iʡ,zksMf_|LjG1`l,8;9=sh>=8zS3k[`ϲ>ZsE~ޚ위O?x8]b>?ǂ?%xEz1"d׈pD>\1rM-*1^P$?oM|π?;_z2ʣ% WX(E.Wd]GoET)ė(àEq+:sLr׌=U{? woۂ O[y `99\gOTQf'-[IoH ZROށ G: 4#D99R0,.ktbjГl͎w'?<;g Aѵ6@$D hT;5; fP ]{)~8VPKMh?nIsqzYHCNC"o,7L5(i9;F,;3Xz0#NQ *\9: "gS+Ŏ=~?}ޫ4'R`;h.[#Nɲղ@\"/-@AsI;W)&|~X>% h΀>]/ ;4880C畦1</^s&'-M ᎎct^!ú;< oxqA##?RaO'wg X ]Ų{o○b OAW/;fx_8 عUMiAjMgR\K>T:2'G6 Y7 Yo<1rЄ$`&7L[UE8Vٍ1TN 4dE KB 8θ YJ~o7lk@)F#"UX"k䱉d}ˌnni`@ l"CW@dcĺ:NHNʯY.q[NІ;?r,%G8Y S6q?F7 &e9$sCS$Jyeq[3NNU.ڈiqX{ =%/f1%0wCš6/xO~-U0'Х/RK?}3I#eǞj%`ٚV>N0&gcз@42s. ZJ \Rx}7ҟgf:K[YRqݺJV+/HP{l.tINt*&8boX#Kƈ"=Yݥ!Vz+i,+9R-10ë?OJևVں,譵RݟD7$%*Ƅ#cF1>'co5mha↓n8s20:Ud5.l~ A;` PN'H_X {kp_f$ti#3i-hO&7B} ͽ!?cSG[>/W? 7|nס)6 ' T"3\AKod)ȞG˖5&=u|PGEX*flM N& IuQElNrgJ8QMv$ ? ''` C.4js%/y_ɋ>լ4[;2Dfhjl5Q]vDbgr~t_J-FVB.j{=#5}k%("79gOwȯn(< ×;&0٧4~ɘģ\0O;ݻ]flOEV#_w/~wc木vz,YԪ%&lq"-=4Ӂ{Nri$籔bx^mji¼Q]Ai*C Ex_}2roϻ4"N_S1V%t#?ꨯ0$.cfϕ*kz,CXѝ-o5SsΦiVnQf7]7~-}c&xPH QqcQB Sb aמq~ԛߑTQC!#Am&3}e9-%:(_.B(|n=Q8¢u*@ɀ󉓘`fxR;#[߱;oW9vڵyW>ZǞy୆+2~mY"bh0|YHD80 lm?ó? ѠyPH,R7A>a<~9!|i32۔Y׳ᆃee Bwݑm1(V2㗳bf` urTp|U v 3'@BXHgo Ǡ~\B2JN)aNu/ٗ#Mc0HeP0rjŨK cA|jG3NoG2=9Jt3{Z p(px`}䍊 O[(n8#q&eY6ԙhw_S~{f3OuWNIa>&5>}~;yo 7CDgT JtR:apx%04AW#QȬ\sVv;pOӔsAKkY!9a)C:7ɓi '{Y9{CLO5 BzT}I%,IIMEC6ca,>i>dƿ ?YwMV)cOVc zjz#?Ŭ*KXD5R(9D?o\C%ѱ.[IA8Ԁ}dΠSZ"1Z2M%:sGfYןP=tmJd^V+k"}id;!|U7/D}q/:HM# _RMo}*ӥ7mZsӢGh+c9y٬ G;t=VòC[` >8ʵ؄ѥ)0%@iLj_ݎI|J~O.Z&dhg:שj()IJ*1X Z}Q 9P2WaywͿ ?MiOk B1\ri]kSvlc2}ʲhe54Ӈ  )'V+RP-c'?()b3*7ǥJAvQL;T gL'wתcO 䣵PJwERy?zR_B?ńF >1Qȿi4Ԉ$*)yZ/`Zw=w*J6N%@,<ֻzۇvaH0׏Ӂ1+ɋG(l?,ewu:QGb24.~k1g)w`"}#%Xq(F%núҲi< WSl>˾Hge؏jqV ≝/T6s@?8`ZYy̞oi.gAjDYk& )9xDJYR:*9CpޒJVpZyR`q`ygs~AH(&5H'V ԐH.g |bW &:Z& i<yךzr ~)TрY@DW(Bb hѕB"hۿSރ#w>eq[>mz;&DJzi isV0-d$U\Thb"$)=I` p!~u!t7_y$ZѥE$zDO#%m1~HwyYG𼦴<)Di D2|gjƴ\F[CWs?ޖN?a"8Y׽OftNJ&eXh?\ vax W@ vX>0 <;oԉ%%G}AoKՁ!dX'IlAzwZ<$qc脅NJn?)R.MؒrYGo^Ef(7B%rggo|U_i+ׂBUb~Hh%*K e+*0@bmk~ϼHOI] Du'SUkkH9$p݁2j+yʝغj['˒u7H<>?+ Z^|\ ̾bǯo??mTݾ'#x::}Dv_I`^uk.ۏ$ljw䬏rl 4)z]BVfu «OA@#,:zM7 m)1bڐ# t~Og'`&0_ƜƚTxt`JOWL00h!ޑ xm%CMr^b`12 >NB=`ĊHT5z;^5>Oۤ!DNOظ[W}pK;7eld=i esOs8U&eYe%ZR%%͵-i1\.NY(]6#gy/+~/gi @6 slSb}x۳ 4hNU61NTQv:^wnmhyH/M!tmO깒i^H=.)3_Lހx0߱+¯[ZB-$@17v68 *GJ9JU*T\#@| (KX$Vh%$]9ә&e [BbhG~wu<  @8^k}?>VLYi) Lkb^ e㯟jM0NOG>H4\ F2O@. 9?ŴDuVOľպ!)6+œ ,ЈS5(8>M}Z]$t", `ЃD7.M3_tvKjI "k6t83Աs%3T0H!uؾ,`DBLj}MhQLebMwZټA/r~x{v~'DSrvq})f>(|;;m/[NoG9.K|g[E9k2 vg=$ܩ/Cm:l8U~cK7Ӝ  $7>ӅprKHCU8y(?A8k Nڹnjڀb/+R#&R06 c[k#;9:T=Z+Jx_PkzPkGu&SҐAfEbP݋^?NG8ǿ[y%.Rl_!ɫ7poNA6ېYO\wC PSz g+՜{^)NOޏa2gns (VmE3Dt3w|։WwN|Qy%|B ]/{lǡm{sKVz: cϣl [w=ͲktV! ߉hD0_FtPg!S0ei-Jv|Tϑ?8j ,f-)\Oe/bob^.g@u ҃SȅO޺y ^~Qw| ,z'<{T|8v Ղ 5z9eR9m'a ;dUde89/^rϥ\jzp'1 N*1)N.=;98 ėp?*%Wwy";3_]8\@MJ&Y0d+cŮʾ[V`5pZ !AD`sC:B|́d3r{!nn ?=r  T.A9X}ϳw۽[FD\.A k|`V;103lڀb[(ް9aTF@髋B* vp.UϢG#ɍ ~~Ե>Inq!>yS9ܜ^QkhWYɔWE!/`~|T/6T50U0D99?3p.bj y%v0_CY|^۵sۑ۟hjxryK`  V?.: R[p:g^s./_퍊!B|T :r|<6^\ in#(Ȇ'R$Lׇ8I wĿ0y0)_9*py]ҔX8L3֩?8g2-|/7SDv-5PXTJA(TEB)7جésSc}7>wf2=Y6<;˜^'*jEX+xݚ:{hs׮̅&J:Jdg]D[~3}ˆCȯtZ:KYmEϧ  Ү s1s~x⹡Vzh*N)o2w%<2iƦepk-9M._z^+V4&ShabPeazm'ۺ6ZKd4]LE2TUHDT*56|%.825|`拏\Lq9sW`Jvс@"yc]$غmmOtmرw݊6-bƶUMe5/T \NcLۦ""EXq yM<Ӈuc~&LL5A3ympBh}PN߹39=9xYpvS}y80PBAkE+Wi-b٬+U槞nL._@hf=t+-\CV(iJYUQEWPYSpJ9 ]ܗ;ZP(J&3>OO3. N+^  ͇ܿ9I~#əwDD8-6.Lmr'9tv 08` I'@4iK$M4 ҤI M4 ҤI M4 ҤI M%e`H{[!IENDB`keepasshttp-1.8.4.2/mono/000077500000000000000000000000001306306563300151745ustar00rootroot00000000000000keepasshttp-1.8.4.2/test/000077500000000000000000000000001306306563300152035ustar00rootroot00000000000000keepasshttp-1.8.4.2/test/lib/000077500000000000000000000000001306306563300157515ustar00rootroot00000000000000keepasshttp-1.8.4.2/test/tests/000077500000000000000000000000001306306563300163455ustar00rootroot00000000000000keepasshttp-1.8.4.2/update-version.txt000066400000000000000000000000301306306563300177230ustar00rootroot00000000000000: KeePassHttp:1.8.4.1 :