Revision 1b4a7550

b/trunk/Pithos.Core/Agents/StatusAgent.cs
179 179

  
180 180
                var connectionString = GetConnectionString();
181 181
                using (var connection = new SQLiteConnection(connectionString))
182
                using (var command = new SQLiteCommand("update FileState set FileStatus= :fileStatus where Id = :id  ",
183
                                                    connection))
182 184
                {
183
                    var command = new SQLiteCommand("update FileState set FileStatus= :fileStatus where Id = :id  ",
184
                                                    connection);
185
                    
185 186

  
186 187
                    command.Parameters.AddWithValue("fileStatus", status);
187 188

  
......
206 207

  
207 208
                var connectionString = GetConnectionString();
208 209
                using (var connection = new SQLiteConnection(connectionString))
210
                using (var command = new SQLiteCommand("update FileState set FileStatus= :fileStatus where FilePath = :path ",
211
                                                    connection))
209 212
                {
210
                    var command = new SQLiteCommand("update FileState set FileStatus= :fileStatus where FilePath = :path ",
211
                                                    connection);
213
                    
212 214

  
213 215
                    command.Parameters.AddWithValue("fileStatus", status);
214 216

  
......
233 235

  
234 236
                var connectionString = GetConnectionString();
235 237
                using (var connection = new SQLiteConnection(connectionString))
238
                using (var command = new SQLiteCommand("update FileState set OverlayStatus= :overlayStatus, FileStatus= :fileStatus where FilePath = :path  ",
239
                                                    connection))
236 240
                {
237
                    var command = new SQLiteCommand("update FileState set OverlayStatus= :overlayStatus, FileStatus= :fileStatus where FilePath = :path  ",
238
                                                    connection);
241
                    
239 242
                    command.Parameters.AddWithValue("path", absolutePath.ToLower());
240 243
                    command.Parameters.AddWithValue("fileStatus", fileStatus);
241 244
                    command.Parameters.AddWithValue("overlayStatus", overlayStatus);
......
301 304
            {
302 305
                var connectionString = GetConnectionString();
303 306
                using (var connection = new SQLiteConnection(connectionString))
307
                using (var command = new SQLiteCommand("select OverlayStatus from FileState where FilePath=:path", connection))
304 308
                {
305
                    var command = new SQLiteCommand("select OverlayStatus from FileState where FilePath=:path", connection);
309
                    
306 310
                    command.Parameters.AddWithValue("path", path.ToLower());
307 311
                    connection.Open();
308 312
                    var s = command.ExecuteScalar();
309 313
                    return (FileOverlayStatus) Convert.ToInt32(s);
310 314
                }
311
                var status = from state in  FileState.Queryable 
312
                                 where state.FilePath ==path.ToLower()
313
                                 select state.OverlayStatus;
314
                return status.Any()? status.First():FileOverlayStatus.Unversioned;
315 315
            }
316 316
            catch (Exception exc)
317 317
            {
......
404 404
            });
405 405

  
406 406
        }
407
        public void StoreInfoDirect(string path, ObjectInfo objectInfo)
408
        {
409
            if (String.IsNullOrWhiteSpace(path))
410
                throw new ArgumentNullException("path");
411
            if (!Path.IsPathRooted(path))
412
                throw new ArgumentException("The path must be rooted", "path");
413
            if (objectInfo == null)
414
                throw new ArgumentNullException("objectInfo", "objectInfo can't be empty");
415
            Contract.EndContractBlock();
416

  
417
            _persistenceAgent.Post(() =>
418
                                       {
419
                                           try
420
                                           {
421

  
422
                                               var connectionString = GetConnectionString();
423
                                               using (var connection = new SQLiteConnection(connectionString))
424
                                               {
425
                                                   if (StateExists(path))
426
                                                   var command =
427
                                                       new SQLiteCommand(
428
                                                           "update FileState set FileStatus= :fileStatus where Id = :id  ",
429
                                                           connection);
430

  
431
                                                   
432
                                                   var filePath = path.ToLower();
433
                                                   //Load the existing files state and set its properties in one session            
434
                                                   using (new SessionScope())
435
                                                   {
436
                                                       //Forgetting to use a sessionscope results in two sessions being created, one by 
437
                                                       //FirstOrDefault and one by Save()
438
                                                       var state = FileState.FindByFilePath(filePath);
439

  
440
                                                       //Create a new empty state object if this is a new file
441
                                                       state = state ?? new FileState();
442

  
443
                                                       state.FilePath = filePath;
444
                                                       state.Checksum = objectInfo.Hash;
445
                                                       state.Version = objectInfo.Version;
446
                                                       state.VersionTimeStamp = objectInfo.VersionTimestamp;
447

  
448
                                                       state.FileStatus = FileStatus.Unchanged;
449
                                                       state.OverlayStatus = FileOverlayStatus.Normal;
450

  
451

  
452
                                                       //Do the save
453
                                                       state.Save();
454
                                                   }
455

  
456

  
457
                                                   command.Parameters.AddWithValue("fileStatus", status);
458

  
459
                                                   command.Parameters.AddWithValue("id", id);
460
                                                   connection.Open();
461
                                                   var affected = command.ExecuteNonQuery();
462
                                                   return;
463
                                               }
464
                                           }
465
                                           catch (Exception exc)
466
                                           {
467
                                               Log.Error(exc.ToString());
468
                                               throw;
469
                                           }
470

  
471
                                       });
472

  
473
        }
474

  
475
        private bool StateExists(string filePath,SQLiteConnection connection)
476
        {
477
            using(var command=new SQLiteCommand("Select count(*) from FileState where FilePath=:path",connection))
478
            {
479
                command.Parameters.AddWithValue("path", filePath.ToLower());
480
                var result=command.ExecuteScalar();
481
                    new SQLiteCommand(
482
                        "update FileState set FileStatus= :fileStatus where Id = :id  ",
483
                        connection);
484

  
485
                                                   
486
            
487
        }
407 488

  
408
        
409 489
        public void SetFileStatus(string path, FileStatus status)
410 490
        {
411 491
            if (String.IsNullOrWhiteSpace(path))
......
434 514
                var s = command.ExecuteScalar();
435 515
                return (FileStatus)Convert.ToInt32(s);
436 516
            }
437

  
438
            var status = from r in FileState.Queryable
439
                     where r.FilePath == path.ToLower()
440
                     select r.FileStatus;                        
441
            return status.Any()?status.First(): FileStatus.Missing;
442 517
        }
443 518

  
444 519
        public void ClearFileStatus(string path)
b/trunk/Pithos.Core/FileState.cs
35 35
// </copyright>
36 36
// -----------------------------------------------------------------------
37 37

  
38
using System.Data.SQLite;
38

  
39 39
using System.Diagnostics.Contracts;
40 40
using System.IO;
41 41
using System.Threading.Tasks;
......
382 382
                        Execute(call, state);
383 383
                    }
384 384
                }
385
                catch (ActiveRecordException exc)
385
                catch (ActiveRecordException )
386 386
                {
387 387
                    retries--;
388 388
                    if (retries <= 0)
389 389
                        throw;
390 390
                }
391
                catch (Exception exc)
392
                {
393
                    throw;
394
                }
395

  
396 391
        }
397 392
    }
398 393

  
b/trunk/Pithos.Core/Pithos.Core.csproj
230 230
    <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
231 231
    <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
232 232
    <CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
233
    <CodeContractsEnableRuntimeChecking>False</CodeContractsEnableRuntimeChecking>
234
    <CodeContractsRuntimeOnlyPublicSurface>False</CodeContractsRuntimeOnlyPublicSurface>
235
    <CodeContractsRuntimeThrowOnFailure>True</CodeContractsRuntimeThrowOnFailure>
236
    <CodeContractsRuntimeCallSiteRequires>False</CodeContractsRuntimeCallSiteRequires>
237
    <CodeContractsRuntimeSkipQuantifiers>False</CodeContractsRuntimeSkipQuantifiers>
238
    <CodeContractsRunCodeAnalysis>False</CodeContractsRunCodeAnalysis>
239
    <CodeContractsNonNullObligations>False</CodeContractsNonNullObligations>
240
    <CodeContractsBoundsObligations>False</CodeContractsBoundsObligations>
241
    <CodeContractsArithmeticObligations>False</CodeContractsArithmeticObligations>
242
    <CodeContractsEnumObligations>False</CodeContractsEnumObligations>
243
    <CodeContractsRedundantAssumptions>False</CodeContractsRedundantAssumptions>
244
    <CodeContractsRunInBackground>True</CodeContractsRunInBackground>
245
    <CodeContractsShowSquigglies>False</CodeContractsShowSquigglies>
246
    <CodeContractsUseBaseLine>False</CodeContractsUseBaseLine>
247
    <CodeContractsEmitXMLDocs>True</CodeContractsEmitXMLDocs>
248
    <CodeContractsCustomRewriterAssembly />
249
    <CodeContractsCustomRewriterClass />
250
    <CodeContractsLibPaths />
251
    <CodeContractsExtraRewriteOptions />
252
    <CodeContractsExtraAnalysisOptions />
253
    <CodeContractsBaseLineFile />
254
    <CodeContractsCacheAnalysisResults>False</CodeContractsCacheAnalysisResults>
255
    <CodeContractsRuntimeCheckingLevel>Full</CodeContractsRuntimeCheckingLevel>
256
    <CodeContractsReferenceAssembly>Build</CodeContractsReferenceAssembly>
257
    <CodeContractsAnalysisWarningLevel>0</CodeContractsAnalysisWarningLevel>
233 258
  </PropertyGroup>
234 259
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
235 260
    <OutputPath>bin\x86\Release\</OutputPath>
......
332 357
    <Reference Include="NHibernate.Search, Version=0.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
333 358
      <HintPath>..\Libraries\NHibernate.Search.dll</HintPath>
334 359
    </Reference>
335
    <Reference Include="ServiceStack.Text">
336
      <HintPath>..\packages\ServiceStack.Text.2.27\lib\net35\ServiceStack.Text.dll</HintPath>
337
    </Reference>
338 360
    <Reference Include="System" />
339 361
    <Reference Include="System.ComponentModel.Composition" />
340 362
    <Reference Include="System.Core" />
b/trunk/Pithos.Interfaces/FileInfoExtensions.cs
55 55

  
56 56
        public static string GetProperDirectoryCapitalization(string fileName)
57 57
        {
58
            if (String.IsNullOrWhiteSpace(fileName))
59
                throw new ArgumentNullException("fileName");
60
            if (!Path.IsPathRooted(fileName))
61
                throw new ArgumentException("fileName must be an absolute path", "fileName");
58
            Contract.Ensures(!String.IsNullOrWhiteSpace(Contract.Result<string>()));
62 59
            Contract.EndContractBlock();
60
            
61
            if (String.IsNullOrWhiteSpace(fileName))
62
                return String.Empty;
63 63

  
64 64
            var dirInfo = new DirectoryInfo(fileName);
65 65
            return dirInfo.GetProperCapitalization();
66 66
        }
67
#Replace State.FindByPath update with direct update call
67 68

  
68 69
        public static string GetProperCapitalization(this DirectoryInfo dirInfo)
69 70
        {
70 71
            if (dirInfo == null)
71 72
                throw new ArgumentNullException("dirInfo");
72 73
            Contract.EndContractBlock();
74
            Contract.Assume(!String.IsNullOrWhiteSpace(dirInfo.FullName));
73 75

  
74 76
            var parentDirInfo = dirInfo.Parent;
75 77
            if (null == parentDirInfo)
......
98 100
        public static string GetProperFilePathCapitalization(string fileName)
99 101
        {
100 102
            if (String.IsNullOrWhiteSpace(fileName))
101
                throw new ArgumentNullException("fileName");
102
            if (!Path.IsPathRooted(fileName))
103
                throw new ArgumentException("fileName must be an absolute path", "fileName");
103
                return String.Empty;
104
            Contract.Ensures(!String.IsNullOrWhiteSpace(Contract.Result<string>()));
104 105
            Contract.EndContractBlock();
105 106

  
106 107

  
b/trunk/Pithos.Network.Test/ChecksumTest.cs
14 14
    class ChecksumTest
15 15
    {
16 16

  
17
        private string _apiKey = "9d3cb7b231e96f72ebe96af1c6cd5112";
18
        private string _userName = "pkanavos";
19
        private bool _usePithos = true;
20

  
21 17
        private ICloudClient client;
22 18
        [SetUp]
23 19
        public void Setup()
24 20
        {
25 21
            var account = "890329@vho.grnet.gr";
26 22
            var apiKey = "24989dce4e0fcb072f8cb60c8922be19";
27
            var client = new CloudFilesClient(account, apiKey);
23
            client = new CloudFilesClient(account, apiKey);
28 24
            client.Authenticate();
29 25
            
30 26
        }
b/trunk/Pithos.Network.Test/FolderTests.cs
14 14
    [TestFixture]
15 15
    class FolderTests
16 16
    {
17
        private string _apiKey = "9d3cb7b231e96f72ebe96af1c6cd5112";
18
        private string _userName = "pkanavos";
19

  
20 17
        [SetUp]
21 18
        public void Setup()
22 19
        {
b/trunk/Pithos.Network.Test/SignatureTest.cs
68 68
            {                
69 69
                var hash = t.Result;
70 70
                Assert.AreEqual(hash1.Hashes, hash.Hashes.ToArray());
71
                int i = 0;
72 71
            }).Wait();
73 72
        }
74 73

  
b/trunk/Pithos.Setup.x64/Pithos.Setup.x64.vdproj
15 15
    {
16 16
        "Entry"
17 17
        {
18
        "MsmKey" = "8:_00C78A0AE638245667A5681AAAA0F51F"
19
        "OwnerKey" = "8:_1BD6A9CD577C40098C968C8B464A03BC"
18
        "MsmKey" = "8:_11BDAAF760654D3792A432B5EB874364"
19
        "OwnerKey" = "8:_UNDEFINED"
20 20
        "MsmSig" = "8:_UNDEFINED"
21 21
        }
22 22
        "Entry"
23 23
        {
24
        "MsmKey" = "8:_00C78A0AE638245667A5681AAAA0F51F"
25
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
24
        "MsmKey" = "8:_1BD6A9CD577C40098C968C8B464A03BC"
25
        "OwnerKey" = "8:_UNDEFINED"
26 26
        "MsmSig" = "8:_UNDEFINED"
27 27
        }
28 28
        "Entry"
29 29
        {
30
        "MsmKey" = "8:_00C78A0AE638245667A5681AAAA0F51F"
31
        "OwnerKey" = "8:_3455E6F41DFDCA75B1C8BAD894A467F2"
30
        "MsmKey" = "8:_284BED2B665647A5BCB69FFB3C9E6052"
31
        "OwnerKey" = "8:_UNDEFINED"
32 32
        "MsmSig" = "8:_UNDEFINED"
33 33
        }
34 34
        "Entry"
35 35
        {
36
        "MsmKey" = "8:_00C78A0AE638245667A5681AAAA0F51F"
37
        "OwnerKey" = "8:_9C9414F9AC6F40DD9B23916692C951BE"
36
        "MsmKey" = "8:_33E50CBEE1E84C4EA5F5ADA9C735CE41"
37
        "OwnerKey" = "8:_UNDEFINED"
38 38
        "MsmSig" = "8:_UNDEFINED"
39 39
        }
40 40
        "Entry"
41 41
        {
42
        "MsmKey" = "8:_00C78A0AE638245667A5681AAAA0F51F"
43
        "OwnerKey" = "8:_33E50CBEE1E84C4EA5F5ADA9C735CE41"
42
        "MsmKey" = "8:_392252B203784D91A39016FC82CD5887"
43
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
44
        "MsmSig" = "8:_UNDEFINED"
45
        }
46
        "Entry"
47
        {
48
        "MsmKey" = "8:_392252B203784D91A39016FC82CD5887"
49
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
44 50
        "MsmSig" = "8:_UNDEFINED"
45 51
        }
46 52
        "Entry"
47 53
        {
48
        "MsmKey" = "8:_00C78A0AE638245667A5681AAAA0F51F"
49
        "OwnerKey" = "8:_C19B1A60C99103E4AB0CB34FBD46A86E"
54
        "MsmKey" = "8:_4C5B93BC82FE5E63E01458A8DA46B4D6"
55
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
50 56
        "MsmSig" = "8:_UNDEFINED"
51 57
        }
52 58
        "Entry"
53 59
        {
54
        "MsmKey" = "8:_07169606B53C447F3C4DEF318E8BB147"
60
        "MsmKey" = "8:_4C5B93BC82FE5E63E01458A8DA46B4D6"
55 61
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
56 62
        "MsmSig" = "8:_UNDEFINED"
57 63
        }
58 64
        "Entry"
59 65
        {
60
        "MsmKey" = "8:_07169606B53C447F3C4DEF318E8BB147"
61
        "OwnerKey" = "8:_15C6D19249891DD0DF6332A0CC3AAB34"
66
        "MsmKey" = "8:_4C5B93BC82FE5E63E01458A8DA46B4D6"
67
        "OwnerKey" = "8:_A611766CD2793378FFAB2F3063F81496"
62 68
        "MsmSig" = "8:_UNDEFINED"
63 69
        }
64 70
        "Entry"
65 71
        {
66
        "MsmKey" = "8:_11BDAAF760654D3792A432B5EB874364"
67
        "OwnerKey" = "8:_UNDEFINED"
72
        "MsmKey" = "8:_586310F986FB0DB4F49D3EAFBD87760C"
73
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
68 74
        "MsmSig" = "8:_UNDEFINED"
69 75
        }
70 76
        "Entry"
71 77
        {
72
        "MsmKey" = "8:_12F390B80DE8E9BA050029362F21B586"
78
        "MsmKey" = "8:_586310F986FB0DB4F49D3EAFBD87760C"
73 79
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
74 80
        "MsmSig" = "8:_UNDEFINED"
75 81
        }
76 82
        "Entry"
77 83
        {
78
        "MsmKey" = "8:_13807DF64A18092E2104382D6350B99E"
84
        "MsmKey" = "8:_586310F986FB0DB4F49D3EAFBD87760C"
85
        "OwnerKey" = "8:_9C9414F9AC6F40DD9B23916692C951BE"
86
        "MsmSig" = "8:_UNDEFINED"
87
        }
88
        "Entry"
89
        {
90
        "MsmKey" = "8:_586310F986FB0DB4F49D3EAFBD87760C"
79 91
        "OwnerKey" = "8:_1BD6A9CD577C40098C968C8B464A03BC"
80 92
        "MsmSig" = "8:_UNDEFINED"
81 93
        }
82 94
        "Entry"
83 95
        {
84
        "MsmKey" = "8:_13807DF64A18092E2104382D6350B99E"
85
        "OwnerKey" = "8:_3455E6F41DFDCA75B1C8BAD894A467F2"
96
        "MsmKey" = "8:_586310F986FB0DB4F49D3EAFBD87760C"
97
        "OwnerKey" = "8:_E42C4D0836CDB6008642BC929C51E416"
98
        "MsmSig" = "8:_UNDEFINED"
99
        }
100
        "Entry"
101
        {
102
        "MsmKey" = "8:_586310F986FB0DB4F49D3EAFBD87760C"
103
        "OwnerKey" = "8:_A611766CD2793378FFAB2F3063F81496"
104
        "MsmSig" = "8:_UNDEFINED"
105
        }
106
        "Entry"
107
        {
108
        "MsmKey" = "8:_5C6B428301E6F93F534C94605CA6B509"
109
        "OwnerKey" = "8:_1BD6A9CD577C40098C968C8B464A03BC"
86 110
        "MsmSig" = "8:_UNDEFINED"
87 111
        }
88 112
        "Entry"
89 113
        {
90
        "MsmKey" = "8:_13807DF64A18092E2104382D6350B99E"
91
        "OwnerKey" = "8:_15C6D19249891DD0DF6332A0CC3AAB34"
114
        "MsmKey" = "8:_626ECD9012C5D7BD4388B6BE07F5107D"
115
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
92 116
        "MsmSig" = "8:_UNDEFINED"
93 117
        }
94 118
        "Entry"
95 119
        {
96
        "MsmKey" = "8:_13807DF64A18092E2104382D6350B99E"
120
        "MsmKey" = "8:_626ECD9012C5D7BD4388B6BE07F5107D"
97 121
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
98 122
        "MsmSig" = "8:_UNDEFINED"
99 123
        }
100 124
        "Entry"
101 125
        {
102
        "MsmKey" = "8:_13807DF64A18092E2104382D6350B99E"
126
        "MsmKey" = "8:_626ECD9012C5D7BD4388B6BE07F5107D"
103 127
        "OwnerKey" = "8:_9C9414F9AC6F40DD9B23916692C951BE"
104 128
        "MsmSig" = "8:_UNDEFINED"
105 129
        }
106 130
        "Entry"
107 131
        {
108
        "MsmKey" = "8:_15C6D19249891DD0DF6332A0CC3AAB34"
109
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
132
        "MsmKey" = "8:_626ECD9012C5D7BD4388B6BE07F5107D"
133
        "OwnerKey" = "8:_E42C4D0836CDB6008642BC929C51E416"
110 134
        "MsmSig" = "8:_UNDEFINED"
111 135
        }
112 136
        "Entry"
113 137
        {
114
        "MsmKey" = "8:_1BD6A9CD577C40098C968C8B464A03BC"
115
        "OwnerKey" = "8:_UNDEFINED"
138
        "MsmKey" = "8:_626ECD9012C5D7BD4388B6BE07F5107D"
139
        "OwnerKey" = "8:_A611766CD2793378FFAB2F3063F81496"
140
        "MsmSig" = "8:_UNDEFINED"
141
        }
142
        "Entry"
143
        {
144
        "MsmKey" = "8:_6B641B23AAABB7462B0B1E4ED1634C6F"
145
        "OwnerKey" = "8:_7CBBD8DA1433C10DD08B468DC5A09CF3"
146
        "MsmSig" = "8:_UNDEFINED"
147
        }
148
        "Entry"
149
        {
150
        "MsmKey" = "8:_6BC141E8128E964AD9B9281537E64BEA"
151
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
116 152
        "MsmSig" = "8:_UNDEFINED"
117 153
        }
118 154
        "Entry"
119 155
        {
120
        "MsmKey" = "8:_2486B3A261E9B1189CF1D6B7923DEEE4"
156
        "MsmKey" = "8:_6BC141E8128E964AD9B9281537E64BEA"
121 157
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
122 158
        "MsmSig" = "8:_UNDEFINED"
123 159
        }
124 160
        "Entry"
125 161
        {
126
        "MsmKey" = "8:_2486B3A261E9B1189CF1D6B7923DEEE4"
127
        "OwnerKey" = "8:_15C6D19249891DD0DF6332A0CC3AAB34"
162
        "MsmKey" = "8:_7CBBD8DA1433C10DD08B468DC5A09CF3"
163
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
128 164
        "MsmSig" = "8:_UNDEFINED"
129 165
        }
130 166
        "Entry"
131 167
        {
132
        "MsmKey" = "8:_284BED2B665647A5BCB69FFB3C9E6052"
168
        "MsmKey" = "8:_7CBBD8DA1433C10DD08B468DC5A09CF3"
169
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
170
        "MsmSig" = "8:_UNDEFINED"
171
        }
172
        "Entry"
173
        {
174
        "MsmKey" = "8:_7EE0A8196B844AA59399DDFA0D4D5750"
133 175
        "OwnerKey" = "8:_UNDEFINED"
134 176
        "MsmSig" = "8:_UNDEFINED"
135 177
        }
136 178
        "Entry"
137 179
        {
138
        "MsmKey" = "8:_33E50CBEE1E84C4EA5F5ADA9C735CE41"
180
        "MsmKey" = "8:_8578E6C7CCB943B09A0FF555EE834C0E"
139 181
        "OwnerKey" = "8:_UNDEFINED"
140 182
        "MsmSig" = "8:_UNDEFINED"
141 183
        }
142 184
        "Entry"
143 185
        {
144
        "MsmKey" = "8:_3455E6F41DFDCA75B1C8BAD894A467F2"
145
        "OwnerKey" = "8:_15C6D19249891DD0DF6332A0CC3AAB34"
186
        "MsmKey" = "8:_89E3F50B2C3DDF59B632A4BEFEE3D3A1"
187
        "OwnerKey" = "8:_DD69E9C0F36E10A97EB92CFBAFD2662D"
146 188
        "MsmSig" = "8:_UNDEFINED"
147 189
        }
148 190
        "Entry"
149 191
        {
150
        "MsmKey" = "8:_3455E6F41DFDCA75B1C8BAD894A467F2"
192
        "MsmKey" = "8:_89E3F50B2C3DDF59B632A4BEFEE3D3A1"
151 193
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
152 194
        "MsmSig" = "8:_UNDEFINED"
153 195
        }
154 196
        "Entry"
155 197
        {
156
        "MsmKey" = "8:_4DEB12AE1A97F1592C5B75ADEBF86C3D"
157
        "OwnerKey" = "8:_86C6A4ACD935E66BC53753149FB5DB8E"
198
        "MsmKey" = "8:_89E3F50B2C3DDF59B632A4BEFEE3D3A1"
199
        "OwnerKey" = "8:_A611766CD2793378FFAB2F3063F81496"
158 200
        "MsmSig" = "8:_UNDEFINED"
159 201
        }
160 202
        "Entry"
161 203
        {
162
        "MsmKey" = "8:_4DEB12AE1A97F1592C5B75ADEBF86C3D"
163
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
204
        "MsmKey" = "8:_89E3F50B2C3DDF59B632A4BEFEE3D3A1"
205
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
206
        "MsmSig" = "8:_UNDEFINED"
207
        }
208
        "Entry"
209
        {
210
        "MsmKey" = "8:_89E3F50B2C3DDF59B632A4BEFEE3D3A1"
211
        "OwnerKey" = "8:_FBB2F726C4025B9184DFBD2748E15EBE"
212
        "MsmSig" = "8:_UNDEFINED"
213
        }
214
        "Entry"
215
        {
216
        "MsmKey" = "8:_89E3F50B2C3DDF59B632A4BEFEE3D3A1"
217
        "OwnerKey" = "8:_4C5B93BC82FE5E63E01458A8DA46B4D6"
218
        "MsmSig" = "8:_UNDEFINED"
219
        }
220
        "Entry"
221
        {
222
        "MsmKey" = "8:_90E897E68BA5452CBEC4A01C45B58AC7"
223
        "OwnerKey" = "8:_UNDEFINED"
224
        "MsmSig" = "8:_UNDEFINED"
225
        }
226
        "Entry"
227
        {
228
        "MsmKey" = "8:_91EEC8BDF3543C1C3379FB93171A844E"
229
        "OwnerKey" = "8:_6BC141E8128E964AD9B9281537E64BEA"
164 230
        "MsmSig" = "8:_UNDEFINED"
165 231
        }
166 232
        "Entry"
167 233
        {
168
        "MsmKey" = "8:_5907BDFBCCD9996878A22FB928EC136D"
234
        "MsmKey" = "8:_91EEC8BDF3543C1C3379FB93171A844E"
169 235
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
170 236
        "MsmSig" = "8:_UNDEFINED"
171 237
        }
172 238
        "Entry"
173 239
        {
174
        "MsmKey" = "8:_5A954DFDECEA1772693C525449B45377"
175
        "OwnerKey" = "8:_94AF0407772DC0469EA5A27F079132FE"
240
        "MsmKey" = "8:_91EEC8BDF3543C1C3379FB93171A844E"
241
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
242
        "MsmSig" = "8:_UNDEFINED"
243
        }
244
        "Entry"
245
        {
246
        "MsmKey" = "8:_9C9414F9AC6F40DD9B23916692C951BE"
247
        "OwnerKey" = "8:_UNDEFINED"
248
        "MsmSig" = "8:_UNDEFINED"
249
        }
250
        "Entry"
251
        {
252
        "MsmKey" = "8:_A490E069DF5DE5852575B6E157EB50BE"
253
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
176 254
        "MsmSig" = "8:_UNDEFINED"
177 255
        }
178 256
        "Entry"
179 257
        {
180
        "MsmKey" = "8:_5A954DFDECEA1772693C525449B45377"
258
        "MsmKey" = "8:_A490E069DF5DE5852575B6E157EB50BE"
181 259
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
182 260
        "MsmSig" = "8:_UNDEFINED"
183 261
        }
184 262
        "Entry"
185 263
        {
186
        "MsmKey" = "8:_5BDDF78B8F57F5F0C86B681FC536679D"
264
        "MsmKey" = "8:_A490E069DF5DE5852575B6E157EB50BE"
187 265
        "OwnerKey" = "8:_9C9414F9AC6F40DD9B23916692C951BE"
188 266
        "MsmSig" = "8:_UNDEFINED"
189 267
        }
190 268
        "Entry"
191 269
        {
192
        "MsmKey" = "8:_5BDDF78B8F57F5F0C86B681FC536679D"
193
        "OwnerKey" = "8:_3455E6F41DFDCA75B1C8BAD894A467F2"
270
        "MsmKey" = "8:_A490E069DF5DE5852575B6E157EB50BE"
271
        "OwnerKey" = "8:_1BD6A9CD577C40098C968C8B464A03BC"
272
        "MsmSig" = "8:_UNDEFINED"
273
        }
274
        "Entry"
275
        {
276
        "MsmKey" = "8:_A490E069DF5DE5852575B6E157EB50BE"
277
        "OwnerKey" = "8:_E42C4D0836CDB6008642BC929C51E416"
278
        "MsmSig" = "8:_UNDEFINED"
279
        }
280
        "Entry"
281
        {
282
        "MsmKey" = "8:_A490E069DF5DE5852575B6E157EB50BE"
283
        "OwnerKey" = "8:_A611766CD2793378FFAB2F3063F81496"
194 284
        "MsmSig" = "8:_UNDEFINED"
195 285
        }
196 286
        "Entry"
197 287
        {
198
        "MsmKey" = "8:_5BDDF78B8F57F5F0C86B681FC536679D"
199
        "OwnerKey" = "8:_15C6D19249891DD0DF6332A0CC3AAB34"
288
        "MsmKey" = "8:_A611766CD2793378FFAB2F3063F81496"
289
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
200 290
        "MsmSig" = "8:_UNDEFINED"
201 291
        }
202 292
        "Entry"
203 293
        {
204
        "MsmKey" = "8:_5BDDF78B8F57F5F0C86B681FC536679D"
294
        "MsmKey" = "8:_A611766CD2793378FFAB2F3063F81496"
205 295
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
206 296
        "MsmSig" = "8:_UNDEFINED"
207 297
        }
208 298
        "Entry"
209 299
        {
210
        "MsmKey" = "8:_5CB7E7BC9A3FBCBBAAA5B13892A9804A"
211
        "OwnerKey" = "8:_86C6A4ACD935E66BC53753149FB5DB8E"
300
        "MsmKey" = "8:_B215C2F0CB9EEF18C32CCAC6CCD02CEF"
301
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
212 302
        "MsmSig" = "8:_UNDEFINED"
213 303
        }
214 304
        "Entry"
215 305
        {
216
        "MsmKey" = "8:_5CB7E7BC9A3FBCBBAAA5B13892A9804A"
306
        "MsmKey" = "8:_B215C2F0CB9EEF18C32CCAC6CCD02CEF"
217 307
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
218 308
        "MsmSig" = "8:_UNDEFINED"
219 309
        }
220 310
        "Entry"
221 311
        {
222
        "MsmKey" = "8:_6B641B23AAABB7462B0B1E4ED1634C6F"
223
        "OwnerKey" = "8:_CC30DE73FADCF70C6AD1C4570027C5C3"
312
        "MsmKey" = "8:_B215C2F0CB9EEF18C32CCAC6CCD02CEF"
313
        "OwnerKey" = "8:_A611766CD2793378FFAB2F3063F81496"
224 314
        "MsmSig" = "8:_UNDEFINED"
225 315
        }
226 316
        "Entry"
227 317
        {
228
        "MsmKey" = "8:_7EE0A8196B844AA59399DDFA0D4D5750"
318
        "MsmKey" = "8:_B72F70CAAFB941ECB02BABC0095D074D"
229 319
        "OwnerKey" = "8:_UNDEFINED"
230 320
        "MsmSig" = "8:_UNDEFINED"
231 321
        }
232 322
        "Entry"
233 323
        {
234
        "MsmKey" = "8:_8578E6C7CCB943B09A0FF555EE834C0E"
235
        "OwnerKey" = "8:_UNDEFINED"
324
        "MsmKey" = "8:_B998E7FC1F540278910B0D58694455C2"
325
        "OwnerKey" = "8:_4C5B93BC82FE5E63E01458A8DA46B4D6"
236 326
        "MsmSig" = "8:_UNDEFINED"
237 327
        }
238 328
        "Entry"
239 329
        {
240
        "MsmKey" = "8:_86C6A4ACD935E66BC53753149FB5DB8E"
330
        "MsmKey" = "8:_B998E7FC1F540278910B0D58694455C2"
241 331
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
242 332
        "MsmSig" = "8:_UNDEFINED"
243 333
        }
244 334
        "Entry"
245 335
        {
246
        "MsmKey" = "8:_86C6A4ACD935E66BC53753149FB5DB8E"
247
        "OwnerKey" = "8:_15C6D19249891DD0DF6332A0CC3AAB34"
336
        "MsmKey" = "8:_B998E7FC1F540278910B0D58694455C2"
337
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
248 338
        "MsmSig" = "8:_UNDEFINED"
249 339
        }
250 340
        "Entry"
251 341
        {
252
        "MsmKey" = "8:_90E897E68BA5452CBEC4A01C45B58AC7"
253
        "OwnerKey" = "8:_UNDEFINED"
342
        "MsmKey" = "8:_C7EE41E4C982C8217BD7DCDA76836670"
343
        "OwnerKey" = "8:_E46F39A63288379E63BDD76C9F21CC3E"
254 344
        "MsmSig" = "8:_UNDEFINED"
255 345
        }
256 346
        "Entry"
257 347
        {
258
        "MsmKey" = "8:_94AF0407772DC0469EA5A27F079132FE"
348
        "MsmKey" = "8:_C7EE41E4C982C8217BD7DCDA76836670"
259 349
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
260 350
        "MsmSig" = "8:_UNDEFINED"
261 351
        }
262 352
        "Entry"
263 353
        {
264
        "MsmKey" = "8:_9C9414F9AC6F40DD9B23916692C951BE"
354
        "MsmKey" = "8:_C7EE41E4C982C8217BD7DCDA76836670"
355
        "OwnerKey" = "8:_9C9414F9AC6F40DD9B23916692C951BE"
356
        "MsmSig" = "8:_UNDEFINED"
357
        }
358
        "Entry"
359
        {
360
        "MsmKey" = "8:_C7EE41E4C982C8217BD7DCDA76836670"
361
        "OwnerKey" = "8:_33E50CBEE1E84C4EA5F5ADA9C735CE41"
362
        "MsmSig" = "8:_UNDEFINED"
363
        }
364
        "Entry"
365
        {
366
        "MsmKey" = "8:_C7EE41E4C982C8217BD7DCDA76836670"
367
        "OwnerKey" = "8:_1BD6A9CD577C40098C968C8B464A03BC"
368
        "MsmSig" = "8:_UNDEFINED"
369
        }
370
        "Entry"
371
        {
372
        "MsmKey" = "8:_C7EE41E4C982C8217BD7DCDA76836670"
373
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
374
        "MsmSig" = "8:_UNDEFINED"
375
        }
376
        "Entry"
377
        {
378
        "MsmKey" = "8:_C7EE41E4C982C8217BD7DCDA76836670"
379
        "OwnerKey" = "8:_E42C4D0836CDB6008642BC929C51E416"
380
        "MsmSig" = "8:_UNDEFINED"
381
        }
382
        "Entry"
383
        {
384
        "MsmKey" = "8:_CA9290C6891140349781FA66336D9693"
265 385
        "OwnerKey" = "8:_UNDEFINED"
266 386
        "MsmSig" = "8:_UNDEFINED"
267 387
        }
268 388
        "Entry"
269 389
        {
270
        "MsmKey" = "8:_B0464BCF85DA5A9724AC7A145E4742A1"
271
        "OwnerKey" = "8:_86C6A4ACD935E66BC53753149FB5DB8E"
390
        "MsmKey" = "8:_DD69E9C0F36E10A97EB92CFBAFD2662D"
391
        "OwnerKey" = "8:_4C5B93BC82FE5E63E01458A8DA46B4D6"
272 392
        "MsmSig" = "8:_UNDEFINED"
273 393
        }
274 394
        "Entry"
275 395
        {
276
        "MsmKey" = "8:_B0464BCF85DA5A9724AC7A145E4742A1"
396
        "MsmKey" = "8:_DD69E9C0F36E10A97EB92CFBAFD2662D"
277 397
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
278 398
        "MsmSig" = "8:_UNDEFINED"
279 399
        }
280 400
        "Entry"
281 401
        {
282
        "MsmKey" = "8:_B72F70CAAFB941ECB02BABC0095D074D"
283
        "OwnerKey" = "8:_UNDEFINED"
402
        "MsmKey" = "8:_DD69E9C0F36E10A97EB92CFBAFD2662D"
403
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
284 404
        "MsmSig" = "8:_UNDEFINED"
285 405
        }
286 406
        "Entry"
287 407
        {
288
        "MsmKey" = "8:_C19B1A60C99103E4AB0CB34FBD46A86E"
289
        "OwnerKey" = "8:_1BD6A9CD577C40098C968C8B464A03BC"
408
        "MsmKey" = "8:_DD70D5956F2E708F680AF121870FFCCD"
409
        "OwnerKey" = "8:_4C5B93BC82FE5E63E01458A8DA46B4D6"
290 410
        "MsmSig" = "8:_UNDEFINED"
291 411
        }
292 412
        "Entry"
293 413
        {
294
        "MsmKey" = "8:_C19B1A60C99103E4AB0CB34FBD46A86E"
414
        "MsmKey" = "8:_DD70D5956F2E708F680AF121870FFCCD"
295 415
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
296 416
        "MsmSig" = "8:_UNDEFINED"
297 417
        }
298 418
        "Entry"
299 419
        {
300
        "MsmKey" = "8:_C19B1A60C99103E4AB0CB34FBD46A86E"
301
        "OwnerKey" = "8:_3455E6F41DFDCA75B1C8BAD894A467F2"
420
        "MsmKey" = "8:_DD70D5956F2E708F680AF121870FFCCD"
421
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
302 422
        "MsmSig" = "8:_UNDEFINED"
303 423
        }
304 424
        "Entry"
305 425
        {
306
        "MsmKey" = "8:_C19B1A60C99103E4AB0CB34FBD46A86E"
307
        "OwnerKey" = "8:_15C6D19249891DD0DF6332A0CC3AAB34"
426
        "MsmKey" = "8:_DD70D5956F2E708F680AF121870FFCCD"
427
        "OwnerKey" = "8:_FBB2F726C4025B9184DFBD2748E15EBE"
308 428
        "MsmSig" = "8:_UNDEFINED"
309 429
        }
310 430
        "Entry"
311 431
        {
312
        "MsmKey" = "8:_C19B1A60C99103E4AB0CB34FBD46A86E"
313
        "OwnerKey" = "8:_9C9414F9AC6F40DD9B23916692C951BE"
432
        "MsmKey" = "8:_DD70D5956F2E708F680AF121870FFCCD"
433
        "OwnerKey" = "8:_89E3F50B2C3DDF59B632A4BEFEE3D3A1"
314 434
        "MsmSig" = "8:_UNDEFINED"
315 435
        }
316 436
        "Entry"
317 437
        {
318
        "MsmKey" = "8:_CA9290C6891140349781FA66336D9693"
319
        "OwnerKey" = "8:_UNDEFINED"
438
        "MsmKey" = "8:_E42C4D0836CDB6008642BC929C51E416"
439
        "OwnerKey" = "8:_A611766CD2793378FFAB2F3063F81496"
320 440
        "MsmSig" = "8:_UNDEFINED"
321 441
        }
322 442
        "Entry"
323 443
        {
324
        "MsmKey" = "8:_CC30DE73FADCF70C6AD1C4570027C5C3"
444
        "MsmKey" = "8:_E42C4D0836CDB6008642BC929C51E416"
325 445
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
326 446
        "MsmSig" = "8:_UNDEFINED"
327 447
        }
328 448
        "Entry"
329 449
        {
330
        "MsmKey" = "8:_CCAE7818C895B517369F69B2359B7A13"
331
        "OwnerKey" = "8:_1BD6A9CD577C40098C968C8B464A03BC"
450
        "MsmKey" = "8:_E42C4D0836CDB6008642BC929C51E416"
451
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
452
        "MsmSig" = "8:_UNDEFINED"
453
        }
454
        "Entry"
455
        {
456
        "MsmKey" = "8:_E46F39A63288379E63BDD76C9F21CC3E"
457
        "OwnerKey" = "8:_A611766CD2793378FFAB2F3063F81496"
458
        "MsmSig" = "8:_UNDEFINED"
459
        }
460
        "Entry"
461
        {
462
        "MsmKey" = "8:_E46F39A63288379E63BDD76C9F21CC3E"
463
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
332 464
        "MsmSig" = "8:_UNDEFINED"
333 465
        }
334 466
        "Entry"
335 467
        {
336
        "MsmKey" = "8:_D90F384DDD0DCD7EF3877F70303E7A5E"
468
        "MsmKey" = "8:_E46F39A63288379E63BDD76C9F21CC3E"
337 469
        "OwnerKey" = "8:_9C9414F9AC6F40DD9B23916692C951BE"
338 470
        "MsmSig" = "8:_UNDEFINED"
339 471
        }
340 472
        "Entry"
341 473
        {
342
        "MsmKey" = "8:_D90F384DDD0DCD7EF3877F70303E7A5E"
343
        "OwnerKey" = "8:_3455E6F41DFDCA75B1C8BAD894A467F2"
474
        "MsmKey" = "8:_E46F39A63288379E63BDD76C9F21CC3E"
475
        "OwnerKey" = "8:_1BD6A9CD577C40098C968C8B464A03BC"
344 476
        "MsmSig" = "8:_UNDEFINED"
345 477
        }
346 478
        "Entry"
347 479
        {
348
        "MsmKey" = "8:_D90F384DDD0DCD7EF3877F70303E7A5E"
349
        "OwnerKey" = "8:_15C6D19249891DD0DF6332A0CC3AAB34"
480
        "MsmKey" = "8:_E46F39A63288379E63BDD76C9F21CC3E"
481
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
350 482
        "MsmSig" = "8:_UNDEFINED"
351 483
        }
352 484
        "Entry"
353 485
        {
354
        "MsmKey" = "8:_D90F384DDD0DCD7EF3877F70303E7A5E"
355
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
486
        "MsmKey" = "8:_E46F39A63288379E63BDD76C9F21CC3E"
487
        "OwnerKey" = "8:_E42C4D0836CDB6008642BC929C51E416"
356 488
        "MsmSig" = "8:_UNDEFINED"
357 489
        }
358 490
        "Entry"
359 491
        {
360
        "MsmKey" = "8:_DB755C1EAC71B2C6FAB0C47B84E8DC98"
361
        "OwnerKey" = "8:_4DEB12AE1A97F1592C5B75ADEBF86C3D"
492
        "MsmKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
493
        "OwnerKey" = "8:_UNDEFINED"
362 494
        "MsmSig" = "8:_UNDEFINED"
363 495
        }
364 496
        "Entry"
365 497
        {
366
        "MsmKey" = "8:_DB755C1EAC71B2C6FAB0C47B84E8DC98"
367
        "OwnerKey" = "8:_15C6D19249891DD0DF6332A0CC3AAB34"
498
        "MsmKey" = "8:_F472AA6700476700D62AABE8262628BF"
499
        "OwnerKey" = "8:_4C5B93BC82FE5E63E01458A8DA46B4D6"
368 500
        "MsmSig" = "8:_UNDEFINED"
369 501
        }
370 502
        "Entry"
371 503
        {
372
        "MsmKey" = "8:_DB755C1EAC71B2C6FAB0C47B84E8DC98"
504
        "MsmKey" = "8:_F472AA6700476700D62AABE8262628BF"
373 505
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
374 506
        "MsmSig" = "8:_UNDEFINED"
375 507
        }
376 508
        "Entry"
377 509
        {
378
        "MsmKey" = "8:_DB755C1EAC71B2C6FAB0C47B84E8DC98"
379
        "OwnerKey" = "8:_5CB7E7BC9A3FBCBBAAA5B13892A9804A"
510
        "MsmKey" = "8:_F472AA6700476700D62AABE8262628BF"
511
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
380 512
        "MsmSig" = "8:_UNDEFINED"
381 513
        }
382 514
        "Entry"
383 515
        {
384
        "MsmKey" = "8:_DB755C1EAC71B2C6FAB0C47B84E8DC98"
385
        "OwnerKey" = "8:_86C6A4ACD935E66BC53753149FB5DB8E"
516
        "MsmKey" = "8:_F472AA6700476700D62AABE8262628BF"
517
        "OwnerKey" = "8:_DD69E9C0F36E10A97EB92CFBAFD2662D"
386 518
        "MsmSig" = "8:_UNDEFINED"
387 519
        }
388 520
        "Entry"
389 521
        {
390
        "MsmKey" = "8:_DD541C2AF5FE013AE9765628AD8A3E88"
391
        "OwnerKey" = "8:_86C6A4ACD935E66BC53753149FB5DB8E"
522
        "MsmKey" = "8:_F693ED58D49B3EC1892CE4184575B87B"
523
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
392 524
        "MsmSig" = "8:_UNDEFINED"
393 525
        }
394 526
        "Entry"
395 527
        {
396
        "MsmKey" = "8:_DD541C2AF5FE013AE9765628AD8A3E88"
528
        "MsmKey" = "8:_F693ED58D49B3EC1892CE4184575B87B"
397 529
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
398 530
        "MsmSig" = "8:_UNDEFINED"
399 531
        }
400 532
        "Entry"
401 533
        {
402
        "MsmKey" = "8:_DD541C2AF5FE013AE9765628AD8A3E88"
403
        "OwnerKey" = "8:_5CB7E7BC9A3FBCBBAAA5B13892A9804A"
534
        "MsmKey" = "8:_F693ED58D49B3EC1892CE4184575B87B"
535
        "OwnerKey" = "8:_A611766CD2793378FFAB2F3063F81496"
404 536
        "MsmSig" = "8:_UNDEFINED"
405 537
        }
406 538
        "Entry"
407 539
        {
408
        "MsmKey" = "8:_DD541C2AF5FE013AE9765628AD8A3E88"
409
        "OwnerKey" = "8:_DB755C1EAC71B2C6FAB0C47B84E8DC98"
540
        "MsmKey" = "8:_FA76529F78D7D6108EDBA33F19836A6B"
541
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
410 542
        "MsmSig" = "8:_UNDEFINED"
411 543
        }
412 544
        "Entry"
413 545
        {
414
        "MsmKey" = "8:_E5218B47A431F6C7D8B3ED3E316932A9"
415
        "OwnerKey" = "8:_86C6A4ACD935E66BC53753149FB5DB8E"
546
        "MsmKey" = "8:_FA76529F78D7D6108EDBA33F19836A6B"
547
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
416 548
        "MsmSig" = "8:_UNDEFINED"
417 549
        }
418 550
        "Entry"
419 551
        {
420
        "MsmKey" = "8:_E5218B47A431F6C7D8B3ED3E316932A9"
421
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
552
        "MsmKey" = "8:_FBB2F726C4025B9184DFBD2748E15EBE"
553
        "OwnerKey" = "8:_4C5B93BC82FE5E63E01458A8DA46B4D6"
422 554
        "MsmSig" = "8:_UNDEFINED"
423 555
        }
424 556
        "Entry"
425 557
        {
426
        "MsmKey" = "8:_E5218B47A431F6C7D8B3ED3E316932A9"
427
        "OwnerKey" = "8:_4DEB12AE1A97F1592C5B75ADEBF86C3D"
558
        "MsmKey" = "8:_FBB2F726C4025B9184DFBD2748E15EBE"
559
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
428 560
        "MsmSig" = "8:_UNDEFINED"
429 561
        }
430 562
        "Entry"
431 563
        {
432
        "MsmKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
433
        "OwnerKey" = "8:_UNDEFINED"
564
        "MsmKey" = "8:_FBB2F726C4025B9184DFBD2748E15EBE"
565
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
434 566
        "MsmSig" = "8:_UNDEFINED"
435 567
        }
436 568
        "Entry"
......
442 574
        "Entry"
443 575
        {
444 576
        "MsmKey" = "8:_UNDEFINED"
445
        "OwnerKey" = "8:_5907BDFBCCD9996878A22FB928EC136D"
577
        "OwnerKey" = "8:_284BED2B665647A5BCB69FFB3C9E6052"
446 578
        "MsmSig" = "8:_UNDEFINED"
447 579
        }
448 580
        "Entry"
449 581
        {
450 582
        "MsmKey" = "8:_UNDEFINED"
451
        "OwnerKey" = "8:_284BED2B665647A5BCB69FFB3C9E6052"
583
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
452 584
        "MsmSig" = "8:_UNDEFINED"
453 585
        }
454 586
        "Entry"
455 587
        {
456 588
        "MsmKey" = "8:_UNDEFINED"
457
        "OwnerKey" = "8:_EBAF62F0335F4918AB23EDA708507D1F"
589
        "OwnerKey" = "8:_B72F70CAAFB941ECB02BABC0095D074D"
458 590
        "MsmSig" = "8:_UNDEFINED"
459 591
        }
460 592
        "Entry"
461 593
        {
462 594
        "MsmKey" = "8:_UNDEFINED"
463
        "OwnerKey" = "8:_15C6D19249891DD0DF6332A0CC3AAB34"
595
        "OwnerKey" = "8:_9C9414F9AC6F40DD9B23916692C951BE"
464 596
        "MsmSig" = "8:_UNDEFINED"
465 597
        }
466 598
        "Entry"
467 599
        {
468 600
        "MsmKey" = "8:_UNDEFINED"
469
        "OwnerKey" = "8:_3455E6F41DFDCA75B1C8BAD894A467F2"
601
        "OwnerKey" = "8:_8578E6C7CCB943B09A0FF555EE834C0E"
470 602
        "MsmSig" = "8:_UNDEFINED"
471 603
        }
472 604
        "Entry"
473 605
        {
474 606
        "MsmKey" = "8:_UNDEFINED"
475
        "OwnerKey" = "8:_2486B3A261E9B1189CF1D6B7923DEEE4"
607
        "OwnerKey" = "8:_7EE0A8196B844AA59399DDFA0D4D5750"
476 608
        "MsmSig" = "8:_UNDEFINED"
477 609
        }
478 610
        "Entry"
479 611
        {
480 612
        "MsmKey" = "8:_UNDEFINED"
481
        "OwnerKey" = "8:_86C6A4ACD935E66BC53753149FB5DB8E"
613
        "OwnerKey" = "8:_33E50CBEE1E84C4EA5F5ADA9C735CE41"
482 614
        "MsmSig" = "8:_UNDEFINED"
483 615
        }
484 616
        "Entry"
485 617
        {
486 618
        "MsmKey" = "8:_UNDEFINED"
487
        "OwnerKey" = "8:_5CB7E7BC9A3FBCBBAAA5B13892A9804A"
619
        "OwnerKey" = "8:_27775256C658428EB10B76E347766AD5"
488 620
        "MsmSig" = "8:_UNDEFINED"
489 621
        }
490 622
        "Entry"
491 623
        {
492 624
        "MsmKey" = "8:_UNDEFINED"
493
        "OwnerKey" = "8:_4DEB12AE1A97F1592C5B75ADEBF86C3D"
625
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
494 626
        "MsmSig" = "8:_UNDEFINED"
495 627
        }
496 628
        "Entry"
497 629
        {
498 630
        "MsmKey" = "8:_UNDEFINED"
499
        "OwnerKey" = "8:_DB755C1EAC71B2C6FAB0C47B84E8DC98"
631
        "OwnerKey" = "8:_A611766CD2793378FFAB2F3063F81496"
500 632
        "MsmSig" = "8:_UNDEFINED"
501 633
        }
502 634
        "Entry"
503 635
        {
504 636
        "MsmKey" = "8:_UNDEFINED"
505
        "OwnerKey" = "8:_DD541C2AF5FE013AE9765628AD8A3E88"
637
        "OwnerKey" = "8:_E42C4D0836CDB6008642BC929C51E416"
506 638
        "MsmSig" = "8:_UNDEFINED"
507 639
        }
508 640
        "Entry"
509 641
        {
510 642
        "MsmKey" = "8:_UNDEFINED"
511
        "OwnerKey" = "8:_E5218B47A431F6C7D8B3ED3E316932A9"
643
        "OwnerKey" = "8:_E46F39A63288379E63BDD76C9F21CC3E"
512 644
        "MsmSig" = "8:_UNDEFINED"
513 645
        }
514 646
        "Entry"
515 647
        {
516 648
        "MsmKey" = "8:_UNDEFINED"
517
        "OwnerKey" = "8:_B0464BCF85DA5A9724AC7A145E4742A1"
649
        "OwnerKey" = "8:_C7EE41E4C982C8217BD7DCDA76836670"
518 650
        "MsmSig" = "8:_UNDEFINED"
519 651
        }
520 652
        "Entry"
521 653
        {
522 654
        "MsmKey" = "8:_UNDEFINED"
523
        "OwnerKey" = "8:_CC30DE73FADCF70C6AD1C4570027C5C3"
655
        "OwnerKey" = "8:_F693ED58D49B3EC1892CE4184575B87B"
524 656
        "MsmSig" = "8:_UNDEFINED"
525 657
        }
526 658
        "Entry"
527 659
        {
528 660
        "MsmKey" = "8:_UNDEFINED"
529
        "OwnerKey" = "8:_12F390B80DE8E9BA050029362F21B586"
661
        "OwnerKey" = "8:_4C5B93BC82FE5E63E01458A8DA46B4D6"
530 662
        "MsmSig" = "8:_UNDEFINED"
531 663
        }
532 664
        "Entry"
533 665
        {
534 666
        "MsmKey" = "8:_UNDEFINED"
535
        "OwnerKey" = "8:_94AF0407772DC0469EA5A27F079132FE"
667
        "OwnerKey" = "8:_FBB2F726C4025B9184DFBD2748E15EBE"
536 668
        "MsmSig" = "8:_UNDEFINED"
537 669
        }
538 670
        "Entry"
539 671
        {
540 672
        "MsmKey" = "8:_UNDEFINED"
541
        "OwnerKey" = "8:_5A954DFDECEA1772693C525449B45377"
673
        "OwnerKey" = "8:_DD69E9C0F36E10A97EB92CFBAFD2662D"
542 674
        "MsmSig" = "8:_UNDEFINED"
543 675
        }
544 676
        "Entry"
545 677
        {
546 678
        "MsmKey" = "8:_UNDEFINED"
547
        "OwnerKey" = "8:_07169606B53C447F3C4DEF318E8BB147"
679
        "OwnerKey" = "8:_89E3F50B2C3DDF59B632A4BEFEE3D3A1"
548 680
        "MsmSig" = "8:_UNDEFINED"
549 681
        }
550 682
        "Entry"
551 683
        {
552 684
        "MsmKey" = "8:_UNDEFINED"
553
        "OwnerKey" = "8:_B72F70CAAFB941ECB02BABC0095D074D"
685
        "OwnerKey" = "8:_DD70D5956F2E708F680AF121870FFCCD"
554 686
        "MsmSig" = "8:_UNDEFINED"
555 687
        }
556 688
        "Entry"
557 689
        {
558 690
        "MsmKey" = "8:_UNDEFINED"
559
        "OwnerKey" = "8:_9C9414F9AC6F40DD9B23916692C951BE"
691
        "OwnerKey" = "8:_F472AA6700476700D62AABE8262628BF"
560 692
        "MsmSig" = "8:_UNDEFINED"
561 693
        }
562 694
        "Entry"
563 695
        {
564 696
        "MsmKey" = "8:_UNDEFINED"
565
        "OwnerKey" = "8:_5BDDF78B8F57F5F0C86B681FC536679D"
697
        "OwnerKey" = "8:_B998E7FC1F540278910B0D58694455C2"
566 698
        "MsmSig" = "8:_UNDEFINED"
567 699
        }
568 700
        "Entry"
569 701
        {
570 702
        "MsmKey" = "8:_UNDEFINED"
571
        "OwnerKey" = "8:_D90F384DDD0DCD7EF3877F70303E7A5E"
703
        "OwnerKey" = "8:_7CBBD8DA1433C10DD08B468DC5A09CF3"
572 704
        "MsmSig" = "8:_UNDEFINED"
573 705
        }
574 706
        "Entry"
575 707
        {
576 708
        "MsmKey" = "8:_UNDEFINED"
577
        "OwnerKey" = "8:_8578E6C7CCB943B09A0FF555EE834C0E"
709
        "OwnerKey" = "8:_392252B203784D91A39016FC82CD5887"
578 710
        "MsmSig" = "8:_UNDEFINED"
579 711
        }
580 712
        "Entry"
581 713
        {
582 714
        "MsmKey" = "8:_UNDEFINED"
583
        "OwnerKey" = "8:_7EE0A8196B844AA59399DDFA0D4D5750"
715
        "OwnerKey" = "8:_FA76529F78D7D6108EDBA33F19836A6B"
584 716
        "MsmSig" = "8:_UNDEFINED"
585 717
        }
586 718
        "Entry"
587 719
        {
588 720
        "MsmKey" = "8:_UNDEFINED"
589
        "OwnerKey" = "8:_33E50CBEE1E84C4EA5F5ADA9C735CE41"
721
        "OwnerKey" = "8:_626ECD9012C5D7BD4388B6BE07F5107D"
590 722
        "MsmSig" = "8:_UNDEFINED"
591 723
        }
592 724
        "Entry"
593 725
        {
594 726
        "MsmKey" = "8:_UNDEFINED"
595
        "OwnerKey" = "8:_27775256C658428EB10B76E347766AD5"
727
        "OwnerKey" = "8:_586310F986FB0DB4F49D3EAFBD87760C"
596 728
        "MsmSig" = "8:_UNDEFINED"
597 729
        }
598 730
        "Entry"
599 731
        {
600 732
        "MsmKey" = "8:_UNDEFINED"
601
        "OwnerKey" = "8:_C19B1A60C99103E4AB0CB34FBD46A86E"
733
        "OwnerKey" = "8:_6BC141E8128E964AD9B9281537E64BEA"
602 734
        "MsmSig" = "8:_UNDEFINED"
603 735
        }
604 736
        "Entry"
605 737
        {
606 738
        "MsmKey" = "8:_UNDEFINED"
607
        "OwnerKey" = "8:_00C78A0AE638245667A5681AAAA0F51F"
739
        "OwnerKey" = "8:_91EEC8BDF3543C1C3379FB93171A844E"
608 740
        "MsmSig" = "8:_UNDEFINED"
609 741
        }
610 742
        "Entry"
611 743
        {
612 744
        "MsmKey" = "8:_UNDEFINED"
613
        "OwnerKey" = "8:_13807DF64A18092E2104382D6350B99E"
745
        "OwnerKey" = "8:_A490E069DF5DE5852575B6E157EB50BE"
614 746
        "MsmSig" = "8:_UNDEFINED"
615 747
        }
616 748
        "Entry"
617 749
        {
618 750
        "MsmKey" = "8:_UNDEFINED"
619
        "OwnerKey" = "8:_11BDAAF760654D3792A432B5EB874364"
751
        "OwnerKey" = "8:_B215C2F0CB9EEF18C32CCAC6CCD02CEF"
620 752
        "MsmSig" = "8:_UNDEFINED"
621 753
        }
622 754
    }
......
724 856
        }
725 857
        "File"
726 858
        {
727
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_00C78A0AE638245667A5681AAAA0F51F"
859
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_284BED2B665647A5BCB69FFB3C9E6052"
728 860
            {
729 861
            "AssemblyRegister" = "3:1"
730 862
            "AssemblyIsInGAC" = "11:FALSE"
731
            "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b9a188c8922137c6, processorArchitecture=MSIL"
863
            "AssemblyAsmDisplayName" = "8:System.Data.SQLite, Version=1.0.76.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=x86"
732 864
                "ScatterAssemblies"
733 865
                {
734
                    "_00C78A0AE638245667A5681AAAA0F51F"
866
                    "_284BED2B665647A5BCB69FFB3C9E6052"
735 867
                    {
736
                    "Name" = "8:Newtonsoft.Json.dll"
868
                    "Name" = "8:System.Data.SQLite.dll"
737 869
                    "Attributes" = "3:512"
738 870
                    }
739 871
                }
740
            "SourcePath" = "8:Newtonsoft.Json.dll"
872
            "SourcePath" = "8:..\\Libraries\\32\\System.Data.SQLite.dll"
741 873
            "TargetName" = "8:"
742 874
            "Tag" = "8:"
743 875
            "Folder" = "8:_FA3E4362540D4C76A5914763C178A3BD"
......
752 884
            "PackageAs" = "3:1"
753 885
            "Register" = "3:1"
754 886
            "Exclude" = "11:FALSE"
755
            "IsDependency" = "11:TRUE"
887
            "IsDependency" = "11:FALSE"
756 888
            "IsolateTo" = "8:"
757 889
            }
758
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_07169606B53C447F3C4DEF318E8BB147"
890
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_392252B203784D91A39016FC82CD5887"
759 891
            {
760 892
            "AssemblyRegister" = "3:1"
761 893
            "AssemblyIsInGAC" = "11:FALSE"
762
            "AssemblyAsmDisplayName" = "8:System.Data.SQLite, Version=1.0.76.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=x86"
894
            "AssemblyAsmDisplayName" = "8:WPFToolkit.Extended, Version=1.5.0.0, Culture=neutral, PublicKeyToken=3e4669d2f30244f4, processorArchitecture=MSIL"
763 895
                "ScatterAssemblies"
764 896
                {
765
                    "_07169606B53C447F3C4DEF318E8BB147"
897
                    "_392252B203784D91A39016FC82CD5887"
766 898
                    {
767
                    "Name" = "8:System.Data.SQLite.dll"
899
                    "Name" = "8:WPFToolkit.Extended.dll"
768 900
                    "Attributes" = "3:512"
769 901
                    }
770 902
                }
771
            "SourcePath" = "8:System.Data.SQLite.dll"
903
            "SourcePath" = "8:WPFToolkit.Extended.dll"
772 904
            "TargetName" = "8:"
773 905
            "Tag" = "8:"
774 906
            "Folder" = "8:_FA3E4362540D4C76A5914763C178A3BD"
......
782 914
            "SharedLegacy" = "11:FALSE"
783 915
            "PackageAs" = "3:1"
784 916
            "Register" = "3:1"
785
            "Exclude" = "11:TRUE"
917
            "Exclude" = "11:FALSE"
786 918
            "IsDependency" = "11:TRUE"
787 919
            "IsolateTo" = "8:"
788 920
            }
789
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_12F390B80DE8E9BA050029362F21B586"
921
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4C5B93BC82FE5E63E01458A8DA46B4D6"
790 922
            {
791 923
            "AssemblyRegister" = "3:1"
792 924
            "AssemblyIsInGAC" = "11:FALSE"
793
            "AssemblyAsmDisplayName" = "8:Hardcodet.Wpf.TaskbarNotification, Version=1.0.4.0, Culture=neutral, PublicKeyToken=2cc55badaa91f4de, processorArchitecture=MSIL"
925
            "AssemblyAsmDisplayName" = "8:Castle.ActiveRecord, Version=3.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL"
794 926
                "ScatterAssemblies"
795 927
                {
796
                    "_12F390B80DE8E9BA050029362F21B586"
928
                    "_4C5B93BC82FE5E63E01458A8DA46B4D6"
797 929
                    {
798
                    "Name" = "8:Hardcodet.Wpf.TaskbarNotification.dll"
930
                    "Name" = "8:Castle.ActiveRecord.dll"
799 931
                    "Attributes" = "3:512"
800 932
                    }
801 933
                }
802
            "SourcePath" = "8:Hardcodet.Wpf.TaskbarNotification.dll"
934
            "SourcePath" = "8:Castle.ActiveRecord.dll"
803 935
            "TargetName" = "8:"
804 936
            "Tag" = "8:"
805 937
            "Folder" = "8:_FA3E4362540D4C76A5914763C178A3BD"
......
817 949
            "IsDependency" = "11:TRUE"
818 950
            "IsolateTo" = "8:"
819 951
            }
820
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_13807DF64A18092E2104382D6350B99E"
952
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_586310F986FB0DB4F49D3EAFBD87760C"
821 953
            {
822 954
            "AssemblyRegister" = "3:1"
823 955
            "AssemblyIsInGAC" = "11:FALSE"
824 956
            "AssemblyAsmDisplayName" = "8:log4net, Version=1.2.11.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL"
825 957
                "ScatterAssemblies"
826 958
                {
827
                    "_13807DF64A18092E2104382D6350B99E"
959
                    "_586310F986FB0DB4F49D3EAFBD87760C"
828 960
                    {
829 961
                    "Name" = "8:log4net.dll"
830 962
                    "Attributes" = "3:512"
......
848 980
            "IsDependency" = "11:TRUE"
849 981
            "IsolateTo" = "8:"
850 982
            }
851
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_15C6D19249891DD0DF6332A0CC3AAB34"
983
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5C6B428301E6F93F534C94605CA6B509"
852 984
            {
853
            "AssemblyRegister" = "3:1"
854
            "AssemblyIsInGAC" = "11:FALSE"
855
            "AssemblyAsmDisplayName" = "8:Pithos.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=2cc55badaa91f4de, processorArchitecture=AMD64"
856
                "ScatterAssemblies"
857
                {
858
                    "_15C6D19249891DD0DF6332A0CC3AAB34"
859
                    {
860
                    "Name" = "8:Pithos.Core.dll"
861
                    "Attributes" = "3:512"
862
                    }
863
                }
864
            "SourcePath" = "8:Pithos.Core.dll"
865
            "TargetName" = "8:"
985
            "SourcePath" = "8:Pithos.ShellExtensions.tlb"
986
            "TargetName" = "8:Pithos.ShellExtensions.tlb"
866 987
            "Tag" = "8:"
867 988
            "Folder" = "8:_FA3E4362540D4C76A5914763C178A3BD"
868 989
            "Condition" = "8:"
......
874 995
            "Permanent" = "11:FALSE"
875 996
            "SharedLegacy" = "11:FALSE"
876 997
            "PackageAs" = "3:1"
877
            "Register" = "3:1"
998
            "Register" = "3:2"
878 999
            "Exclude" = "11:TRUE"
879 1000
            "IsDependency" = "11:TRUE"
880 1001
            "IsolateTo" = "8:"
881 1002
            }
882
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2486B3A261E9B1189CF1D6B7923DEEE4"
1003
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_626ECD9012C5D7BD4388B6BE07F5107D"
883 1004
            {
884 1005
            "AssemblyRegister" = "3:1"
885 1006
            "AssemblyIsInGAC" = "11:FALSE"
886
            "AssemblyAsmDisplayName" = "8:Microsoft.WindowsAPICodePack, Version=1.1.0.0, Culture=neutral, PublicKeyToken=2cc55badaa91f4de, processorArchitecture=MSIL"
1007
            "AssemblyAsmDisplayName" = "8:ParallelExtensionsExtras, Version=1.2.0.0, Culture=neutral, PublicKeyToken=2cc55badaa91f4de, processorArchitecture=MSIL"
887 1008
                "ScatterAssemblies"
888 1009
                {
889
                    "_2486B3A261E9B1189CF1D6B7923DEEE4"
1010
                    "_626ECD9012C5D7BD4388B6BE07F5107D"
890 1011
                    {
891
                    "Name" = "8:Microsoft.WindowsAPICodePack.dll"
1012
                    "Name" = "8:ParallelExtensionsExtras.dll"
892 1013
                    "Attributes" = "3:512"
893 1014
                    }
894 1015
                }
895
            "SourcePath" = "8:Microsoft.WindowsAPICodePack.dll"
1016
            "SourcePath" = "8:ParallelExtensionsExtras.dll"
896 1017
            "TargetName" = "8:"
897 1018
            "Tag" = "8:"
898 1019
            "Folder" = "8:_FA3E4362540D4C76A5914763C178A3BD"
......
910 1031
            "IsDependency" = "11:TRUE"
911 1032
            "IsolateTo" = "8:"
912 1033
            }
913
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_284BED2B665647A5BCB69FFB3C9E6052"
1034
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6B641B23AAABB7462B0B1E4ED1634C6F"
914 1035
            {
915
            "AssemblyRegister" = "3:1"
916
            "AssemblyIsInGAC" = "11:FALSE"
917
            "AssemblyAsmDisplayName" = "8:System.Data.SQLite, Version=1.0.76.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=x86"
918
                "ScatterAssemblies"
919
                {
920
                    "_284BED2B665647A5BCB69FFB3C9E6052"
921
                    {
922
                    "Name" = "8:System.Data.SQLite.dll"
923
                    "Attributes" = "3:512"
924
                    }
925
                }
926
            "SourcePath" = "8:..\\Libraries\\32\\System.Data.SQLite.dll"
927
            "TargetName" = "8:"
1036
            "SourcePath" = "8:wshom.ocx"
1037
            "TargetName" = "8:wshom.ocx"
928 1038
            "Tag" = "8:"
929 1039
            "Folder" = "8:_FA3E4362540D4C76A5914763C178A3BD"
930 1040
            "Condition" = "8:"
......
937 1047
            "SharedLegacy" = "11:FALSE"
938 1048
            "PackageAs" = "3:1"
939 1049
            "Register" = "3:1"
940
            "Exclude" = "11:FALSE"
941
            "IsDependency" = "11:FALSE"
1050
            "Exclude" = "11:TRUE"
1051
            "IsDependency" = "11:TRUE"
942 1052
            "IsolateTo" = "8:"
943 1053
            }
944
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3455E6F41DFDCA75B1C8BAD894A467F2"
1054
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6BC141E8128E964AD9B9281537E64BEA"
945 1055
            {
946 1056
            "AssemblyRegister" = "3:1"
947 1057
            "AssemblyIsInGAC" = "11:FALSE"
948
            "AssemblyAsmDisplayName" = "8:Pithos.Network, Version=1.0.0.0, Culture=neutral, PublicKeyToken=2cc55badaa91f4de, processorArchitecture=MSIL"
1058
            "AssemblyAsmDisplayName" = "8:Caliburn.Micro, Version=1.2.0.0, Culture=neutral, PublicKeyToken=8e5891231f2ed21f, processorArchitecture=MSIL"
949 1059
                "ScatterAssemblies"
950 1060
                {
951
                    "_3455E6F41DFDCA75B1C8BAD894A467F2"
1061
                    "_6BC141E8128E964AD9B9281537E64BEA"
952 1062
                    {
953
                    "Name" = "8:Pithos.Network.dll"
1063
                    "Name" = "8:Caliburn.Micro.dll"
954 1064
                    "Attributes" = "3:512"
955 1065
                    }
956 1066
                }
957
            "SourcePath" = "8:Pithos.Network.dll"
1067
            "SourcePath" = "8:Caliburn.Micro.dll"
958 1068
            "TargetName" = "8:"
959 1069
            "Tag" = "8:"
960 1070
            "Folder" = "8:_FA3E4362540D4C76A5914763C178A3BD"
......
972 1082
            "IsDependency" = "11:TRUE"
973 1083
            "IsolateTo" = "8:"
974 1084
            }
975
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4DEB12AE1A97F1592C5B75ADEBF86C3D"
1085
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7CBBD8DA1433C10DD08B468DC5A09CF3"
976 1086
            {
977 1087
            "AssemblyRegister" = "3:1"
978 1088
            "AssemblyIsInGAC" = "11:FALSE"
979
            "AssemblyAsmDisplayName" = "8:NHibernate.ByteCode.Castle, Version=3.1.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL"
1089
            "AssemblyAsmDisplayName" = "8:Interop.IWshRuntimeLibrary, Version=1.0.0.0, Culture=neutral, PublicKeyToken=2cc55badaa91f4de, processorArchitecture=x86"
980 1090
                "ScatterAssemblies"
981 1091
                {
982
                    "_4DEB12AE1A97F1592C5B75ADEBF86C3D"
1092
                    "_7CBBD8DA1433C10DD08B468DC5A09CF3"
983 1093
                    {
984
                    "Name" = "8:NHibernate.ByteCode.Castle.dll"
1094
                    "Name" = "8:Interop.IWshRuntimeLibrary.dll"
985 1095
                    "Attributes" = "3:512"
986 1096
                    }
987 1097
                }
988
            "SourcePath" = "8:NHibernate.ByteCode.Castle.dll"
1098
            "SourcePath" = "8:Interop.IWshRuntimeLibrary.dll"
989 1099
            "TargetName" = "8:"
990 1100
            "Tag" = "8:"
991 1101
            "Folder" = "8:_FA3E4362540D4C76A5914763C178A3BD"
......
999 1109
            "SharedLegacy" = "11:FALSE"
1000 1110
            "PackageAs" = "3:1"
1001 1111
            "Register" = "3:1"
1002
            "Exclude" = "11:FALSE"
1112
            "Exclude" = "11:TRUE"
1003 1113
            "IsDependency" = "11:TRUE"
1004 1114
            "IsolateTo" = "8:"
1005 1115
            }
1006
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5907BDFBCCD9996878A22FB928EC136D"
1116
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_89E3F50B2C3DDF59B632A4BEFEE3D3A1"
1007 1117
            {
1008 1118
            "AssemblyRegister" = "3:1"
1009 1119
            "AssemblyIsInGAC" = "11:FALSE"
1010
            "AssemblyAsmDisplayName" = "8:WPFToolkit.Extended, Version=1.5.0.0, Culture=neutral, PublicKeyToken=3e4669d2f30244f4, processorArchitecture=MSIL"
1120
            "AssemblyAsmDisplayName" = "8:NHibernate, Version=3.1.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL"
1011 1121
                "ScatterAssemblies"
1012 1122
                {
1013
                    "_5907BDFBCCD9996878A22FB928EC136D"
1123
                    "_89E3F50B2C3DDF59B632A4BEFEE3D3A1"
1014 1124
                    {
1015
                    "Name" = "8:WPFToolkit.Extended.dll"
1125
                    "Name" = "8:NHibernate.dll"
1016 1126
                    "Attributes" = "3:512"
1017 1127
                    }
1018 1128
                }
1019
            "SourcePath" = "8:WPFToolkit.Extended.dll"
1129
            "SourcePath" = "8:NHibernate.dll"
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff