aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-07-23 01:59:14 +0100
committerJustin Clark-Casey (justincc)2011-07-23 01:59:14 +0100
commit667b54f5a2a04fa5a2859397868d270eab3913f1 (patch)
treebf91543d5c0c4aa6f1a25873be6acb86144675bc
parentFix problem where sculpts were not getting physical proxies (diff)
downloadopensim-SC_OLD-667b54f5a2a04fa5a2859397868d270eab3913f1.zip
opensim-SC_OLD-667b54f5a2a04fa5a2859397868d270eab3913f1.tar.gz
opensim-SC_OLD-667b54f5a2a04fa5a2859397868d270eab3913f1.tar.bz2
opensim-SC_OLD-667b54f5a2a04fa5a2859397868d270eab3913f1.tar.xz
Don't load current/next/everyone/base permissions from the library item xml files - always use PermissionMask.All instead (which was the existing default).
Library items always need the same permissions, so it doesn't make sense to load them from the xml files. This just opens the door to permissions mistakes.
-rw-r--r--OpenSim/Framework/InventoryFolderImpl.cs8
-rw-r--r--OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs4
-rw-r--r--OpenSim/Region/CoreModules/Framework/Library/LibraryModule.cs8
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.Inventory.cs5
-rw-r--r--OpenSim/Services/InventoryService/LibraryService.cs37
-rw-r--r--bin/inventory/AnimationsLibrary/AnimationsLibraryItems.xml6
-rw-r--r--bin/inventory/BodyPartsLibrary/BodyPartsLibraryItems.xml33
-rw-r--r--bin/inventory/ClothingLibrary/ClothingLibraryItems.xml14
-rw-r--r--bin/inventory/GesturesLibrary/GesturesLibraryItems.xml80
-rw-r--r--bin/inventory/LandmarksLibrary/LandmarksLibraryItems.xml4
-rw-r--r--bin/inventory/NotecardsLibrary/NotecardsLibraryItems.xml14
-rw-r--r--bin/inventory/ObjectsLibrary/ObjectsLibraryItems.xml4
-rw-r--r--bin/inventory/OpenSimLibrary/OpenSimLibrary.xml4
-rw-r--r--bin/inventory/PhotosLibrary/PhotosLibraryItems.xml4
-rw-r--r--bin/inventory/ScriptsLibrary/ScriptsLibraryItems.xml223
-rw-r--r--bin/inventory/SoundsLibrary/SoundsLibraryItems.xml4
-rw-r--r--bin/inventory/TexturesLibrary/TexturesLibraryItems.xml274
17 files changed, 159 insertions, 567 deletions
diff --git a/OpenSim/Framework/InventoryFolderImpl.cs b/OpenSim/Framework/InventoryFolderImpl.cs
index 29c7682..139776b 100644
--- a/OpenSim/Framework/InventoryFolderImpl.cs
+++ b/OpenSim/Framework/InventoryFolderImpl.cs
@@ -27,13 +27,15 @@
27 27
28using System; 28using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using System.Reflection;
31using log4net;
30using OpenMetaverse; 32using OpenMetaverse;
31 33
32namespace OpenSim.Framework 34namespace OpenSim.Framework
33{ 35{
34 public class InventoryFolderImpl : InventoryFolderBase 36 public class InventoryFolderImpl : InventoryFolderBase
35 { 37 {
36 //private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 38// private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
37 39
38 public static readonly string PATH_DELIMITER = "/"; 40 public static readonly string PATH_DELIMITER = "/";
39 41
@@ -402,6 +404,10 @@ namespace OpenSim.Framework
402 { 404 {
403 foreach (InventoryItemBase item in Items.Values) 405 foreach (InventoryItemBase item in Items.Values)
404 { 406 {
407// m_log.DebugFormat(
408// "[INVENTORY FOLDER IMPL]: Returning item {0} {1}, OwnerPermissions {2:X}",
409// item.Name, item.ID, item.CurrentPermissions);
410
405 itemList.Add(item); 411 itemList.Add(item);
406 } 412 }
407 } 413 }
diff --git a/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs b/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
index b714f2b..4933147 100644
--- a/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
@@ -984,11 +984,14 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
984 public virtual bool CanGetAgentInventoryItem(IClientAPI remoteClient, UUID itemID, UUID requestID) 984 public virtual bool CanGetAgentInventoryItem(IClientAPI remoteClient, UUID itemID, UUID requestID)
985 { 985 {
986 InventoryItemBase assetRequestItem = GetItem(remoteClient.AgentId, itemID); 986 InventoryItemBase assetRequestItem = GetItem(remoteClient.AgentId, itemID);
987
987 if (assetRequestItem == null) 988 if (assetRequestItem == null)
988 { 989 {
989 ILibraryService lib = m_Scene.RequestModuleInterface<ILibraryService>(); 990 ILibraryService lib = m_Scene.RequestModuleInterface<ILibraryService>();
991
990 if (lib != null) 992 if (lib != null)
991 assetRequestItem = lib.LibraryRootFolder.FindItem(itemID); 993 assetRequestItem = lib.LibraryRootFolder.FindItem(itemID);
994
992 if (assetRequestItem == null) 995 if (assetRequestItem == null)
993 return false; 996 return false;
994 } 997 }
@@ -1019,6 +1022,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
1019 m_log.WarnFormat( 1022 m_log.WarnFormat(
1020 "[CLIENT]: {0} requested asset {1} from item {2} but this does not match item's asset {3}", 1023 "[CLIENT]: {0} requested asset {1} from item {2} but this does not match item's asset {3}",
1021 Name, requestID, itemID, assetRequestItem.AssetID); 1024 Name, requestID, itemID, assetRequestItem.AssetID);
1025
1022 return false; 1026 return false;
1023 } 1027 }
1024 1028
diff --git a/OpenSim/Region/CoreModules/Framework/Library/LibraryModule.cs b/OpenSim/Region/CoreModules/Framework/Library/LibraryModule.cs
index d570608..2ef4457 100644
--- a/OpenSim/Region/CoreModules/Framework/Library/LibraryModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/Library/LibraryModule.cs
@@ -185,6 +185,7 @@ namespace OpenSim.Region.CoreModules.Framework.Library
185 archread = new InventoryArchiveReadRequest(m_MockScene, uinfo, "/", iarFileName, false); 185 archread = new InventoryArchiveReadRequest(m_MockScene, uinfo, "/", iarFileName, false);
186 archread.Execute(); 186 archread.Execute();
187 } 187 }
188
188 foreach (InventoryNodeBase node in nodes) 189 foreach (InventoryNodeBase node in nodes)
189 FixPerms(node); 190 FixPerms(node);
190 } 191 }
@@ -197,18 +198,23 @@ namespace OpenSim.Region.CoreModules.Framework.Library
197 archread.Close(); 198 archread.Close();
198 } 199 }
199 } 200 }
200
201 } 201 }
202 202
203 private void FixPerms(InventoryNodeBase node) 203 private void FixPerms(InventoryNodeBase node)
204 { 204 {
205 m_log.DebugFormat("[LIBRARY MODULE]: Fixing perms for {0} {1}", node.Name, node.ID);
206
205 if (node is InventoryItemBase) 207 if (node is InventoryItemBase)
206 { 208 {
207 InventoryItemBase item = (InventoryItemBase)node; 209 InventoryItemBase item = (InventoryItemBase)node;
210// item.BasePermissions = (uint)PermissionMask.All;
208 item.BasePermissions = 0x7FFFFFFF; 211 item.BasePermissions = 0x7FFFFFFF;
209 item.EveryOnePermissions = 0x7FFFFFFF; 212 item.EveryOnePermissions = 0x7FFFFFFF;
210 item.CurrentPermissions = 0x7FFFFFFF; 213 item.CurrentPermissions = 0x7FFFFFFF;
211 item.NextPermissions = 0x7FFFFFFF; 214 item.NextPermissions = 0x7FFFFFFF;
215// item.EveryOnePermissions = (uint)PermissionMask.Copy;
216// item.CurrentPermissions = (uint)PermissionMask.None;
217// item.NextPermissions = (uint)PermissionMask.All;
212 } 218 }
213 } 219 }
214 220
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
index 30421d4..afc1a4f 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
@@ -724,7 +724,10 @@ namespace OpenSim.Region.Framework.Scenes
724 newName = item.Name; 724 newName = item.Name;
725 } 725 }
726 726
727 if (remoteClient.AgentId == oldAgentID || (LibraryService != null && LibraryService.LibraryRootFolder != null && oldAgentID == LibraryService.LibraryRootFolder.Owner)) 727 if (remoteClient.AgentId == oldAgentID
728 || (LibraryService != null
729 && LibraryService.LibraryRootFolder != null
730 && oldAgentID == LibraryService.LibraryRootFolder.Owner))
728 { 731 {
729 CreateNewInventoryItem( 732 CreateNewInventoryItem(
730 remoteClient, item.CreatorId, item.CreatorData, newFolderID, newName, item.Flags, callbackID, asset, (sbyte)item.InvType, 733 remoteClient, item.CreatorId, item.CreatorData, newFolderID, newName, item.Flags, callbackID, asset, (sbyte)item.InvType,
diff --git a/OpenSim/Services/InventoryService/LibraryService.cs b/OpenSim/Services/InventoryService/LibraryService.cs
index 383f311..b46add3 100644
--- a/OpenSim/Services/InventoryService/LibraryService.cs
+++ b/OpenSim/Services/InventoryService/LibraryService.cs
@@ -93,26 +93,6 @@ namespace OpenSim.Services.InventoryService
93 LoadLibraries(pLibrariesLocation); 93 LoadLibraries(pLibrariesLocation);
94 } 94 }
95 95
96 public InventoryItemBase CreateItem(UUID inventoryID, UUID assetID, string name, string description,
97 int assetType, int invType, UUID parentFolderID)
98 {
99 InventoryItemBase item = new InventoryItemBase();
100 item.Owner = libOwner;
101 item.CreatorId = libOwner.ToString();
102 item.ID = inventoryID;
103 item.AssetID = assetID;
104 item.Description = description;
105 item.Name = name;
106 item.AssetType = assetType;
107 item.InvType = invType;
108 item.Folder = parentFolderID;
109 item.BasePermissions = 0x7FFFFFFF;
110 item.EveryOnePermissions = 0x7FFFFFFF;
111 item.CurrentPermissions = 0x7FFFFFFF;
112 item.NextPermissions = 0x7FFFFFFF;
113 return item;
114 }
115
116 /// <summary> 96 /// <summary>
117 /// Use the asset set information at path to load assets 97 /// Use the asset set information at path to load assets
118 /// </summary> 98 /// </summary>
@@ -193,22 +173,27 @@ namespace OpenSim.Services.InventoryService
193 item.Description = config.GetString("description", item.Name); 173 item.Description = config.GetString("description", item.Name);
194 item.InvType = config.GetInt("inventoryType", 0); 174 item.InvType = config.GetInt("inventoryType", 0);
195 item.AssetType = config.GetInt("assetType", item.InvType); 175 item.AssetType = config.GetInt("assetType", item.InvType);
196 item.CurrentPermissions = (uint)config.GetLong("currentPermissions", 0x7FFFFFFF); 176 item.CurrentPermissions = (uint)PermissionMask.All;
197 item.NextPermissions = (uint)config.GetLong("nextPermissions", 0x7FFFFFFF); 177 item.NextPermissions = (uint)PermissionMask.All;
198 item.EveryOnePermissions = (uint)config.GetLong("everyonePermissions", 0x7FFFFFFF); 178 item.EveryOnePermissions = (uint)PermissionMask.All;
199 item.BasePermissions = (uint)config.GetLong("basePermissions", 0x7FFFFFFF); 179// item.EveryOnePermissions = (uint)PermissionMask.All - (uint)PermissionMask.Modify;
200 item.Flags = (uint)config.GetInt("flags", 0); 180 item.BasePermissions = (uint)PermissionMask.All;
201 181
202 if (libraryFolders.ContainsKey(item.Folder)) 182 if (libraryFolders.ContainsKey(item.Folder))
203 { 183 {
204 InventoryFolderImpl parentFolder = libraryFolders[item.Folder]; 184 InventoryFolderImpl parentFolder = libraryFolders[item.Folder];
185
205 try 186 try
206 { 187 {
188// m_log.DebugFormat(
189// "[LIBRARY INVENTORY]: Adding item {0} {1}, OwnerPermissions {2:X} to {3}",
190// item.Name, item.ID, item.CurrentPermissions, item.Folder);
191
207 parentFolder.Items.Add(item.ID, item); 192 parentFolder.Items.Add(item.ID, item);
208 } 193 }
209 catch (Exception) 194 catch (Exception)
210 { 195 {
211 m_log.WarnFormat("[LIBRARY INVENTORY] Item {1} [{0}] not added, duplicate item", item.ID, item.Name); 196 m_log.WarnFormat("[LIBRARY INVENTORY]: Item {1} [{0}] not added, duplicate item", item.ID, item.Name);
212 } 197 }
213 } 198 }
214 else 199 else
diff --git a/bin/inventory/AnimationsLibrary/AnimationsLibraryItems.xml b/bin/inventory/AnimationsLibrary/AnimationsLibraryItems.xml
index 2a6ceb4..9cfadf0 100644
--- a/bin/inventory/AnimationsLibrary/AnimationsLibraryItems.xml
+++ b/bin/inventory/AnimationsLibrary/AnimationsLibraryItems.xml
@@ -108,8 +108,6 @@
108 <Key Name="inventoryType" Value="19" /> 108 <Key Name="inventoryType" Value="19" />
109 </Section> 109 </Section>
110 110
111
112
113<!-- 111<!--
114 <Section Name="Example Library Item"> 112 <Section Name="Example Library Item">
115 <Key Name="inventoryID" Value="30000000-0000-2222-4444-000000000001" /> 113 <Key Name="inventoryID" Value="30000000-0000-2222-4444-000000000001" />
@@ -119,10 +117,6 @@
119 <Key Name="name" Value="Example Library Item" /> 117 <Key Name="name" Value="Example Library Item" />
120 <Key Name="assetType" Value="7" /> 118 <Key Name="assetType" Value="7" />
121 <Key Name="inventoryType" Value="7" /> 119 <Key Name="inventoryType" Value="7" />
122 <Key Name="currentPermissions" Value="2147483647" />
123 <Key Name="nextPermissions" Value="2147483647" />
124 <Key Name="everyonePermissions" Value="2147483647" />
125 <Key Name="basePermissions" Value="2147483647" />
126 </Section> 120 </Section>
127--> 121-->
128 122
diff --git a/bin/inventory/BodyPartsLibrary/BodyPartsLibraryItems.xml b/bin/inventory/BodyPartsLibrary/BodyPartsLibraryItems.xml
index aa8d9d9..d9adf1c 100644
--- a/bin/inventory/BodyPartsLibrary/BodyPartsLibraryItems.xml
+++ b/bin/inventory/BodyPartsLibrary/BodyPartsLibraryItems.xml
@@ -9,10 +9,6 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
16 </Section> 12 </Section>
17--> 13-->
18<!-- 14<!--
@@ -24,10 +20,6 @@
24 <Key Name="name" Value="Hair" /> 20 <Key Name="name" Value="Hair" />
25 <Key Name="assetType" Value="13" /> 21 <Key Name="assetType" Value="13" />
26 <Key Name="inventoryType" Value="18" /> 22 <Key Name="inventoryType" Value="18" />
27 <Key Name="currentPermissions" Value="2147483647" />
28 <Key Name="nextPermissions" Value="2147483647" />
29 <Key Name="everyonePermissions" Value="2147483647" />
30 <Key Name="basePermissions" Value="2147483647" />
31 </Section> 23 </Section>
32 24
33 <Section Name="Skin"> 25 <Section Name="Skin">
@@ -38,10 +30,6 @@
38 <Key Name="name" Value="Skin" /> 30 <Key Name="name" Value="Skin" />
39 <Key Name="assetType" Value="13" /> 31 <Key Name="assetType" Value="13" />
40 <Key Name="inventoryType" Value="18" /> 32 <Key Name="inventoryType" Value="18" />
41 <Key Name="currentPermissions" Value="2147483647" />
42 <Key Name="nextPermissions" Value="2147483647" />
43 <Key Name="everyonePermissions" Value="2147483647" />
44 <Key Name="basePermissions" Value="2147483647" />
45 </Section> 33 </Section>
46--> 34-->
47<!-- 35<!--
@@ -53,10 +41,6 @@
53 <Key Name="name" Value="Jim Skin" /> 41 <Key Name="name" Value="Jim Skin" />
54 <Key Name="assetType" Value="13" /> 42 <Key Name="assetType" Value="13" />
55 <Key Name="inventoryType" Value="13" /> 43 <Key Name="inventoryType" Value="13" />
56 <Key Name="currentPermissions" Value="2147483647" />
57 <Key Name="nextPermissions" Value="2147483647" />
58 <Key Name="everyonePermissions" Value="2147483647" />
59 <Key Name="basePermissions" Value="2147483647" />
60 </Section> 44 </Section>
61 45
62 <Section Name="Little Goblin Skin"> 46 <Section Name="Little Goblin Skin">
@@ -67,10 +51,6 @@
67 <Key Name="name" Value="Little Goblin Skin" /> 51 <Key Name="name" Value="Little Goblin Skin" />
68 <Key Name="assetType" Value="13" /> 52 <Key Name="assetType" Value="13" />
69 <Key Name="inventoryType" Value="13" /> 53 <Key Name="inventoryType" Value="13" />
70 <Key Name="currentPermissions" Value="2147483647" />
71 <Key Name="nextPermissions" Value="2147483647" />
72 <Key Name="everyonePermissions" Value="2147483647" />
73 <Key Name="basePermissions" Value="2147483647" />
74 </Section> 54 </Section>
75--> 55-->
76<!-- 56<!--
@@ -82,10 +62,6 @@
82 <Key Name="name" Value="Shape" /> 62 <Key Name="name" Value="Shape" />
83 <Key Name="assetType" Value="13" /> 63 <Key Name="assetType" Value="13" />
84 <Key Name="inventoryType" Value="18" /> 64 <Key Name="inventoryType" Value="18" />
85 <Key Name="currentPermissions" Value="2147483647" />
86 <Key Name="nextPermissions" Value="2147483647" />
87 <Key Name="everyonePermissions" Value="2147483647" />
88 <Key Name="basePermissions" Value="2147483647" />
89 </Section> 65 </Section>
90--> 66-->
91<!-- 67<!--
@@ -97,10 +73,6 @@
97 <Key Name="name" Value="Jim Shape" /> 73 <Key Name="name" Value="Jim Shape" />
98 <Key Name="assetType" Value="13" /> 74 <Key Name="assetType" Value="13" />
99 <Key Name="inventoryType" Value="13" /> 75 <Key Name="inventoryType" Value="13" />
100 <Key Name="currentPermissions" Value="2147483647" />
101 <Key Name="nextPermissions" Value="2147483647" />
102 <Key Name="everyonePermissions" Value="2147483647" />
103 <Key Name="basePermissions" Value="2147483647" />
104 </Section> 76 </Section>
105 77
106 <Section Name="Little Goblin Shape"> 78 <Section Name="Little Goblin Shape">
@@ -111,10 +83,7 @@
111 <Key Name="name" Value="Little Goblin Shape" /> 83 <Key Name="name" Value="Little Goblin Shape" />
112 <Key Name="assetType" Value="13" /> 84 <Key Name="assetType" Value="13" />
113 <Key Name="inventoryType" Value="13" /> 85 <Key Name="inventoryType" Value="13" />
114 <Key Name="currentPermissions" Value="2147483647" />
115 <Key Name="nextPermissions" Value="2147483647" />
116 <Key Name="everyonePermissions" Value="2147483647" />
117 <Key Name="basePermissions" Value="2147483647" />
118 </Section> 86 </Section>
119 --> 87 -->
88
120</Nini> 89</Nini>
diff --git a/bin/inventory/ClothingLibrary/ClothingLibraryItems.xml b/bin/inventory/ClothingLibrary/ClothingLibraryItems.xml
index 9e297f0..a12bb8a 100644
--- a/bin/inventory/ClothingLibrary/ClothingLibraryItems.xml
+++ b/bin/inventory/ClothingLibrary/ClothingLibraryItems.xml
@@ -9,10 +9,6 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
16 </Section> 12 </Section>
17--> 13-->
18<!-- 14<!--
@@ -24,11 +20,8 @@
24 <Key Name="name" Value="Shirt" /> 20 <Key Name="name" Value="Shirt" />
25 <Key Name="assetType" Value="5" /> 21 <Key Name="assetType" Value="5" />
26 <Key Name="inventoryType" Value="18" /> 22 <Key Name="inventoryType" Value="18" />
27 <Key Name="currentPermissions" Value="2147483647" />
28 <Key Name="nextPermissions" Value="2147483647" />
29 <Key Name="everyonePermissions" Value="2147483647" />
30 <Key Name="basePermissions" Value="2147483647" />
31 </Section> 23 </Section>
24
32 <Section Name="Pants"> 25 <Section Name="Pants">
33 <Key Name="inventoryID" Value="d5e46211-b9d1-11dc-95ff-0800200c9a66" /> 26 <Key Name="inventoryID" Value="d5e46211-b9d1-11dc-95ff-0800200c9a66" />
34 <Key Name="assetID" Value="00000000-38f9-1111-024e-222222111120" /> 27 <Key Name="assetID" Value="00000000-38f9-1111-024e-222222111120" />
@@ -37,10 +30,7 @@
37 <Key Name="name" Value="Pants" /> 30 <Key Name="name" Value="Pants" />
38 <Key Name="assetType" Value="5" /> 31 <Key Name="assetType" Value="5" />
39 <Key Name="inventoryType" Value="18" /> 32 <Key Name="inventoryType" Value="18" />
40 <Key Name="currentPermissions" Value="2147483647" />
41 <Key Name="nextPermissions" Value="2147483647" />
42 <Key Name="everyonePermissions" Value="2147483647" />
43 <Key Name="basePermissions" Value="2147483647" />
44 </Section> 33 </Section>
45--> 34-->
35
46</Nini> 36</Nini>
diff --git a/bin/inventory/GesturesLibrary/GesturesLibraryItems.xml b/bin/inventory/GesturesLibrary/GesturesLibraryItems.xml
index 1312129..ca3ce2d 100644
--- a/bin/inventory/GesturesLibrary/GesturesLibraryItems.xml
+++ b/bin/inventory/GesturesLibrary/GesturesLibraryItems.xml
@@ -7,11 +7,8 @@
7 <Key Name="name" Value="can we move along?" /> 7 <Key Name="name" Value="can we move along?" />
8 <Key Name="assetType" Value="21"/> 8 <Key Name="assetType" Value="21"/>
9 <Key Name="inventoryType" Value="20"/> 9 <Key Name="inventoryType" Value="20"/>
10 <Key Name="currentPermissions" Value="2147483647"/>
11 <Key Name="nextPermissions" Value="2147483647"/>
12 <Key Name="everyonePermissions" Value="2147483647" />
13 <Key Name="basePermissions" Value="2147483647"/>
14 </Section> 10 </Section>
11
15 <Section Name="me!"> 12 <Section Name="me!">
16 <Key Name="inventoryID" Value="4c141851-1bef-4c00-9058-8c4d97ab48fe"/> 13 <Key Name="inventoryID" Value="4c141851-1bef-4c00-9058-8c4d97ab48fe"/>
17 <Key Name="assetID" Value="652475bc-ffb7-4a18-b6bb-7731ddeb6a51"/> 14 <Key Name="assetID" Value="652475bc-ffb7-4a18-b6bb-7731ddeb6a51"/>
@@ -20,11 +17,8 @@
20 <Key Name="name" Value="me!" /> 17 <Key Name="name" Value="me!" />
21 <Key Name="assetType" Value="21"/> 18 <Key Name="assetType" Value="21"/>
22 <Key Name="inventoryType" Value="20"/> 19 <Key Name="inventoryType" Value="20"/>
23 <Key Name="currentPermissions" Value="2147483647"/>
24 <Key Name="nextPermissions" Value="2147483647"/>
25 <Key Name="everyonePermissions" Value="2147483647" />
26 <Key Name="basePermissions" Value="2147483647"/>
27 </Section> 20 </Section>
21
28 <Section Name="clap"> 22 <Section Name="clap">
29 <Key Name="inventoryID" Value="a5a30fdb-613f-44fa-8bc2-7806e4da67f6"/> 23 <Key Name="inventoryID" Value="a5a30fdb-613f-44fa-8bc2-7806e4da67f6"/>
30 <Key Name="assetID" Value="712e81fd-a215-498c-ab1a-caf1f5bf950d"/> 24 <Key Name="assetID" Value="712e81fd-a215-498c-ab1a-caf1f5bf950d"/>
@@ -33,11 +27,8 @@
33 <Key Name="name" Value="clap" /> 27 <Key Name="name" Value="clap" />
34 <Key Name="assetType" Value="21"/> 28 <Key Name="assetType" Value="21"/>
35 <Key Name="inventoryType" Value="20"/> 29 <Key Name="inventoryType" Value="20"/>
36 <Key Name="currentPermissions" Value="2147483647"/>
37 <Key Name="nextPermissions" Value="2147483647"/>
38 <Key Name="everyonePermissions" Value="2147483647" />
39 <Key Name="basePermissions" Value="2147483647"/>
40 </Section> 30 </Section>
31
41 <Section Name="no"> 32 <Section Name="no">
42 <Key Name="inventoryID" Value="514b3ca6-1571-4f58-a24e-f58eb5cb8460"/> 33 <Key Name="inventoryID" Value="514b3ca6-1571-4f58-a24e-f58eb5cb8460"/>
43 <Key Name="assetID" Value="6c123970-0f5a-448e-920a-07bae9aadf4c"/> 34 <Key Name="assetID" Value="6c123970-0f5a-448e-920a-07bae9aadf4c"/>
@@ -46,11 +37,8 @@
46 <Key Name="name" Value="no" /> 37 <Key Name="name" Value="no" />
47 <Key Name="assetType" Value="21"/> 38 <Key Name="assetType" Value="21"/>
48 <Key Name="inventoryType" Value="20"/> 39 <Key Name="inventoryType" Value="20"/>
49 <Key Name="currentPermissions" Value="2147483647"/>
50 <Key Name="nextPermissions" Value="2147483647"/>
51 <Key Name="everyonePermissions" Value="2147483647" />
52 <Key Name="basePermissions" Value="2147483647"/>
53 </Section> 40 </Section>
41
54 <Section Name="suprised"> 42 <Section Name="suprised">
55 <Key Name="inventoryID" Value="120fb1f3-112b-4bc4-a7d3-a784ecc360af"/> 43 <Key Name="inventoryID" Value="120fb1f3-112b-4bc4-a7d3-a784ecc360af"/>
56 <Key Name="assetID" Value="dbaf104b-cba8-4df7-b5d3-0cb57d0d63b2"/> 44 <Key Name="assetID" Value="dbaf104b-cba8-4df7-b5d3-0cb57d0d63b2"/>
@@ -59,11 +47,8 @@
59 <Key Name="name" Value="suprised" /> 47 <Key Name="name" Value="suprised" />
60 <Key Name="assetType" Value="21"/> 48 <Key Name="assetType" Value="21"/>
61 <Key Name="inventoryType" Value="20"/> 49 <Key Name="inventoryType" Value="20"/>
62 <Key Name="currentPermissions" Value="2147483647"/>
63 <Key Name="nextPermissions" Value="2147483647"/>
64 <Key Name="everyonePermissions" Value="2147483647" />
65 <Key Name="basePermissions" Value="2147483647"/>
66 </Section> 50 </Section>
51
67 <Section Name="dance2"> 52 <Section Name="dance2">
68 <Key Name="inventoryID" Value="1ca0e368-5a11-4da1-8503-925a55e7c45f"/> 53 <Key Name="inventoryID" Value="1ca0e368-5a11-4da1-8503-925a55e7c45f"/>
69 <Key Name="assetID" Value="3bd1792a-6756-4ee0-a54e-3ae6493c2036"/> 54 <Key Name="assetID" Value="3bd1792a-6756-4ee0-a54e-3ae6493c2036"/>
@@ -72,11 +57,8 @@
72 <Key Name="name" Value="dance2" /> 57 <Key Name="name" Value="dance2" />
73 <Key Name="assetType" Value="21"/> 58 <Key Name="assetType" Value="21"/>
74 <Key Name="inventoryType" Value="20"/> 59 <Key Name="inventoryType" Value="20"/>
75 <Key Name="currentPermissions" Value="2147483647"/>
76 <Key Name="nextPermissions" Value="2147483647"/>
77 <Key Name="everyonePermissions" Value="2147483647" />
78 <Key Name="basePermissions" Value="2147483647"/>
79 </Section> 60 </Section>
61
80 <Section Name="definitely YES"> 62 <Section Name="definitely YES">
81 <Key Name="inventoryID" Value="022fa770-abb1-4266-963a-4ece4747b748"/> 63 <Key Name="inventoryID" Value="022fa770-abb1-4266-963a-4ece4747b748"/>
82 <Key Name="assetID" Value="392c292f-3d27-45ff-9437-c79c06699237"/> 64 <Key Name="assetID" Value="392c292f-3d27-45ff-9437-c79c06699237"/>
@@ -85,11 +67,8 @@
85 <Key Name="name" Value="definitely YES" /> 67 <Key Name="name" Value="definitely YES" />
86 <Key Name="assetType" Value="21"/> 68 <Key Name="assetType" Value="21"/>
87 <Key Name="inventoryType" Value="20"/> 69 <Key Name="inventoryType" Value="20"/>
88 <Key Name="currentPermissions" Value="2147483647"/>
89 <Key Name="nextPermissions" Value="2147483647"/>
90 <Key Name="everyonePermissions" Value="2147483647" />
91 <Key Name="basePermissions" Value="2147483647"/>
92 </Section> 70 </Section>
71
93 <Section Name="Wave"> 72 <Section Name="Wave">
94 <Key Name="inventoryID" Value="6406a7c6-a690-44be-a444-ba723e50c17d"/> 73 <Key Name="inventoryID" Value="6406a7c6-a690-44be-a444-ba723e50c17d"/>
95 <Key Name="assetID" Value="cce0e317-2c49-411e-8716-f9ce3007c715"/> 74 <Key Name="assetID" Value="cce0e317-2c49-411e-8716-f9ce3007c715"/>
@@ -98,11 +77,8 @@
98 <Key Name="name" Value="Wave" /> 77 <Key Name="name" Value="Wave" />
99 <Key Name="assetType" Value="21"/> 78 <Key Name="assetType" Value="21"/>
100 <Key Name="inventoryType" Value="20"/> 79 <Key Name="inventoryType" Value="20"/>
101 <Key Name="currentPermissions" Value="2147483647"/>
102 <Key Name="nextPermissions" Value="2147483647"/>
103 <Key Name="everyonePermissions" Value="2147483647" />
104 <Key Name="basePermissions" Value="2147483647"/>
105 </Section> 80 </Section>
81
106 <Section Name="take it outside"> 82 <Section Name="take it outside">
107 <Key Name="inventoryID" Value="1488b988-c300-4c2e-b48a-3b8eacb93659"/> 83 <Key Name="inventoryID" Value="1488b988-c300-4c2e-b48a-3b8eacb93659"/>
108 <Key Name="assetID" Value="d082bd28-f655-43b7-a0eb-cb80db03753e"/> 84 <Key Name="assetID" Value="d082bd28-f655-43b7-a0eb-cb80db03753e"/>
@@ -111,11 +87,8 @@
111 <Key Name="name" Value="take it outside" /> 87 <Key Name="name" Value="take it outside" />
112 <Key Name="assetType" Value="21"/> 88 <Key Name="assetType" Value="21"/>
113 <Key Name="inventoryType" Value="20"/> 89 <Key Name="inventoryType" Value="20"/>
114 <Key Name="currentPermissions" Value="2147483647"/>
115 <Key Name="nextPermissions" Value="2147483647"/>
116 <Key Name="everyonePermissions" Value="2147483647" />
117 <Key Name="basePermissions" Value="2147483647"/>
118 </Section> 90 </Section>
91
119 <Section Name="whoohoo!"> 92 <Section Name="whoohoo!">
120 <Key Name="inventoryID" Value="18c1a2fc-17f6-4af4-a519-827b272feaac"/> 93 <Key Name="inventoryID" Value="18c1a2fc-17f6-4af4-a519-827b272feaac"/>
121 <Key Name="assetID" Value="7f7384c0-848c-4bf0-8e83-50879981e1a4"/> 94 <Key Name="assetID" Value="7f7384c0-848c-4bf0-8e83-50879981e1a4"/>
@@ -124,11 +97,8 @@
124 <Key Name="name" Value="whoohoo!" /> 97 <Key Name="name" Value="whoohoo!" />
125 <Key Name="assetType" Value="21"/> 98 <Key Name="assetType" Value="21"/>
126 <Key Name="inventoryType" Value="20"/> 99 <Key Name="inventoryType" Value="20"/>
127 <Key Name="currentPermissions" Value="2147483647"/>
128 <Key Name="nextPermissions" Value="2147483647"/>
129 <Key Name="everyonePermissions" Value="2147483647" />
130 <Key Name="basePermissions" Value="2147483647"/>
131 </Section> 100 </Section>
101
132 <Section Name="raise hand"> 102 <Section Name="raise hand">
133 <Key Name="inventoryID" Value="5c0afacd-bbd0-4f66-a516-4ac4e380853c"/> 103 <Key Name="inventoryID" Value="5c0afacd-bbd0-4f66-a516-4ac4e380853c"/>
134 <Key Name="assetID" Value="2d0819cf-452b-4db8-b7ac-cda443bc89e7"/> 104 <Key Name="assetID" Value="2d0819cf-452b-4db8-b7ac-cda443bc89e7"/>
@@ -137,11 +107,8 @@
137 <Key Name="name" Value="raise hand" /> 107 <Key Name="name" Value="raise hand" />
138 <Key Name="assetType" Value="21"/> 108 <Key Name="assetType" Value="21"/>
139 <Key Name="inventoryType" Value="20"/> 109 <Key Name="inventoryType" Value="20"/>
140 <Key Name="currentPermissions" Value="2147483647"/>
141 <Key Name="nextPermissions" Value="2147483647"/>
142 <Key Name="everyonePermissions" Value="2147483647" />
143 <Key Name="basePermissions" Value="2147483647"/>
144 </Section> 110 </Section>
111
145 <Section Name="LOL"> 112 <Section Name="LOL">
146 <Key Name="inventoryID" Value="407f6a99-1a12-43c6-bec1-8fad974c8f42"/> 113 <Key Name="inventoryID" Value="407f6a99-1a12-43c6-bec1-8fad974c8f42"/>
147 <Key Name="assetID" Value="d545ac78-09cc-4811-8700-8df1a37d7f56"/> 114 <Key Name="assetID" Value="d545ac78-09cc-4811-8700-8df1a37d7f56"/>
@@ -150,11 +117,8 @@
150 <Key Name="name" Value="LOL" /> 117 <Key Name="name" Value="LOL" />
151 <Key Name="assetType" Value="21"/> 118 <Key Name="assetType" Value="21"/>
152 <Key Name="inventoryType" Value="20"/> 119 <Key Name="inventoryType" Value="20"/>
153 <Key Name="currentPermissions" Value="2147483647"/>
154 <Key Name="nextPermissions" Value="2147483647"/>
155 <Key Name="everyonePermissions" Value="2147483647" />
156 <Key Name="basePermissions" Value="2147483647"/>
157 </Section> 120 </Section>
121
158 <Section Name="dance1"> 122 <Section Name="dance1">
159 <Key Name="inventoryID" Value="59cce8ab-5c0c-49be-aa3b-036f05fbd7f4"/> 123 <Key Name="inventoryID" Value="59cce8ab-5c0c-49be-aa3b-036f05fbd7f4"/>
160 <Key Name="assetID" Value="9cc5bb24-bacf-44f9-a1d0-d409e6ccfa6c"/> 124 <Key Name="assetID" Value="9cc5bb24-bacf-44f9-a1d0-d409e6ccfa6c"/>
@@ -163,11 +127,8 @@
163 <Key Name="name" Value="dance1" /> 127 <Key Name="name" Value="dance1" />
164 <Key Name="assetType" Value="21"/> 128 <Key Name="assetType" Value="21"/>
165 <Key Name="inventoryType" Value="20"/> 129 <Key Name="inventoryType" Value="20"/>
166 <Key Name="currentPermissions" Value="2147483647"/>
167 <Key Name="nextPermissions" Value="2147483647"/>
168 <Key Name="everyonePermissions" Value="2147483647" />
169 <Key Name="basePermissions" Value="2147483647"/>
170 </Section> 130 </Section>
131
171 <Section Name="wink!"> 132 <Section Name="wink!">
172 <Key Name="inventoryID" Value="ba33e8ab-b816-4ead-9302-c8475deb1845"/> 133 <Key Name="inventoryID" Value="ba33e8ab-b816-4ead-9302-c8475deb1845"/>
173 <Key Name="assetID" Value="67d47cd0-9634-4c99-97db-ddce9bda467c"/> 134 <Key Name="assetID" Value="67d47cd0-9634-4c99-97db-ddce9bda467c"/>
@@ -176,11 +137,8 @@
176 <Key Name="name" Value="wink!" /> 137 <Key Name="name" Value="wink!" />
177 <Key Name="assetType" Value="21"/> 138 <Key Name="assetType" Value="21"/>
178 <Key Name="inventoryType" Value="20"/> 139 <Key Name="inventoryType" Value="20"/>
179 <Key Name="currentPermissions" Value="2147483647"/>
180 <Key Name="nextPermissions" Value="2147483647"/>
181 <Key Name="everyonePermissions" Value="2147483647" />
182 <Key Name="basePermissions" Value="2147483647"/>
183 </Section> 140 </Section>
141
184 <Section Name="not sure"> 142 <Section Name="not sure">
185 <Key Name="inventoryID" Value="02da80eb-cad0-4cd1-9ff7-d3d3dd150fbc"/> 143 <Key Name="inventoryID" Value="02da80eb-cad0-4cd1-9ff7-d3d3dd150fbc"/>
186 <Key Name="assetID" Value="9bc46cd2-95cb-456d-9070-a4439e42af9e"/> 144 <Key Name="assetID" Value="9bc46cd2-95cb-456d-9070-a4439e42af9e"/>
@@ -189,11 +147,8 @@
189 <Key Name="name" Value="not sure" /> 147 <Key Name="name" Value="not sure" />
190 <Key Name="assetType" Value="21"/> 148 <Key Name="assetType" Value="21"/>
191 <Key Name="inventoryType" Value="20"/> 149 <Key Name="inventoryType" Value="20"/>
192 <Key Name="currentPermissions" Value="2147483647"/>
193 <Key Name="nextPermissions" Value="2147483647"/>
194 <Key Name="everyonePermissions" Value="2147483647" />
195 <Key Name="basePermissions" Value="2147483647"/>
196 </Section> 150 </Section>
151
197 <Section Name="dance3"> 152 <Section Name="dance3">
198 <Key Name="inventoryID" Value="05e53736-dacb-4935-a1e9-d9897b35b962"/> 153 <Key Name="inventoryID" Value="05e53736-dacb-4935-a1e9-d9897b35b962"/>
199 <Key Name="assetID" Value="fd9ad83a-4921-4b6e-8b8e-558556d9f503"/> 154 <Key Name="assetID" Value="fd9ad83a-4921-4b6e-8b8e-558556d9f503"/>
@@ -202,9 +157,6 @@
202 <Key Name="name" Value="dance3" /> 157 <Key Name="name" Value="dance3" />
203 <Key Name="assetType" Value="21"/> 158 <Key Name="assetType" Value="21"/>
204 <Key Name="inventoryType" Value="20"/> 159 <Key Name="inventoryType" Value="20"/>
205 <Key Name="currentPermissions" Value="2147483647"/>
206 <Key Name="nextPermissions" Value="2147483647"/>
207 <Key Name="everyonePermissions" Value="2147483647" />
208 <Key Name="basePermissions" Value="2147483647"/>
209 </Section> 160 </Section>
161
210</Nini> 162</Nini>
diff --git a/bin/inventory/LandmarksLibrary/LandmarksLibraryItems.xml b/bin/inventory/LandmarksLibrary/LandmarksLibraryItems.xml
index 4047a58..44194cd 100644
--- a/bin/inventory/LandmarksLibrary/LandmarksLibraryItems.xml
+++ b/bin/inventory/LandmarksLibrary/LandmarksLibraryItems.xml
@@ -9,10 +9,6 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
16 </Section> 12 </Section>
17--> 13-->
18 14
diff --git a/bin/inventory/NotecardsLibrary/NotecardsLibraryItems.xml b/bin/inventory/NotecardsLibrary/NotecardsLibraryItems.xml
index 713c365..e232bcc 100644
--- a/bin/inventory/NotecardsLibrary/NotecardsLibraryItems.xml
+++ b/bin/inventory/NotecardsLibrary/NotecardsLibraryItems.xml
@@ -9,10 +9,6 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
16 </Section> 12 </Section>
17--> 13-->
18 14
@@ -24,11 +20,8 @@
24 <Key Name="name" Value="Welcome" /> 20 <Key Name="name" Value="Welcome" />
25 <Key Name="assetType" Value="7" /> 21 <Key Name="assetType" Value="7" />
26 <Key Name="inventoryType" Value="7" /> 22 <Key Name="inventoryType" Value="7" />
27 <Key Name="currentPermissions" Value="2147483647" />
28 <Key Name="nextPermissions" Value="2147483647" />
29 <Key Name="everyonePermissions" Value="2147483647" />
30 <Key Name="basePermissions" Value="2147483647" />
31 </Section> 23 </Section>
24
32 <Section Name="Example notecard"> 25 <Section Name="Example notecard">
33 <Key Name="inventoryID" Value="a170ffc0-b9c7-11dc-95ff-0800200c9a66" /> 26 <Key Name="inventoryID" Value="a170ffc0-b9c7-11dc-95ff-0800200c9a66" />
34 <Key Name="assetID" Value="8d1ada50-b9c7-11dc-95ff-0800200c9a66" /> 27 <Key Name="assetID" Value="8d1ada50-b9c7-11dc-95ff-0800200c9a66" />
@@ -37,9 +30,6 @@
37 <Key Name="name" Value="Example notecard" /> 30 <Key Name="name" Value="Example notecard" />
38 <Key Name="assetType" Value="7" /> 31 <Key Name="assetType" Value="7" />
39 <Key Name="inventoryType" Value="7" /> 32 <Key Name="inventoryType" Value="7" />
40 <Key Name="currentPermissions" Value="2147483647" />
41 <Key Name="nextPermissions" Value="2147483647" />
42 <Key Name="everyonePermissions" Value="2147483647" />
43 <Key Name="basePermissions" Value="2147483647" />
44 </Section> 33 </Section>
34
45</Nini> 35</Nini>
diff --git a/bin/inventory/ObjectsLibrary/ObjectsLibraryItems.xml b/bin/inventory/ObjectsLibrary/ObjectsLibraryItems.xml
index 4047a58..44194cd 100644
--- a/bin/inventory/ObjectsLibrary/ObjectsLibraryItems.xml
+++ b/bin/inventory/ObjectsLibrary/ObjectsLibraryItems.xml
@@ -9,10 +9,6 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
16 </Section> 12 </Section>
17--> 13-->
18 14
diff --git a/bin/inventory/OpenSimLibrary/OpenSimLibrary.xml b/bin/inventory/OpenSimLibrary/OpenSimLibrary.xml
index 7eb8de3..bef59d8 100644
--- a/bin/inventory/OpenSimLibrary/OpenSimLibrary.xml
+++ b/bin/inventory/OpenSimLibrary/OpenSimLibrary.xml
@@ -10,10 +10,6 @@
10 <Key Name="name" Value="Example Library Item" /> 10 <Key Name="name" Value="Example Library Item" />
11 <Key Name="assetType" Value="7" /> 11 <Key Name="assetType" Value="7" />
12 <Key Name="inventoryType" Value="7" /> 12 <Key Name="inventoryType" Value="7" />
13 <Key Name="currentPermissions" Value="2147483647" />
14 <Key Name="nextPermissions" Value="2147483647" />
15 <Key Name="everyonePermissions" Value="2147483647" />
16 <Key Name="basePermissions" Value="2147483647" />
17 </Section> 13 </Section>
18--> 14-->
19 15
diff --git a/bin/inventory/PhotosLibrary/PhotosLibraryItems.xml b/bin/inventory/PhotosLibrary/PhotosLibraryItems.xml
index 4047a58..44194cd 100644
--- a/bin/inventory/PhotosLibrary/PhotosLibraryItems.xml
+++ b/bin/inventory/PhotosLibrary/PhotosLibraryItems.xml
@@ -9,10 +9,6 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
16 </Section> 12 </Section>
17--> 13-->
18 14
diff --git a/bin/inventory/ScriptsLibrary/ScriptsLibraryItems.xml b/bin/inventory/ScriptsLibrary/ScriptsLibraryItems.xml
index 9641f7d..df9d867 100644
--- a/bin/inventory/ScriptsLibrary/ScriptsLibraryItems.xml
+++ b/bin/inventory/ScriptsLibrary/ScriptsLibraryItems.xml
@@ -25,11 +25,8 @@
25 <Key Name="name" Value="llAbs" /> 25 <Key Name="name" Value="llAbs" />
26 <Key Name="assetType" Value="10" /> 26 <Key Name="assetType" Value="10" />
27 <Key Name="inventoryType" Value="10" /> 27 <Key Name="inventoryType" Value="10" />
28 <Key Name="currentPermissions" Value="257487132" />
29 <Key Name="nextPermissions" Value="257487132" />
30 <Key Name="everyonePermissions" Value="257487132" />
31 <Key Name="basePermissions" Value="257487132" />
32 </Section> 28 </Section>
29
33 <Section Name="llAcos"> 30 <Section Name="llAcos">
34 <Key Name="inventoryID" Value="6519bf38-b19f-11dc-8314-0800200c9a66" /> 31 <Key Name="inventoryID" Value="6519bf38-b19f-11dc-8314-0800200c9a66" />
35 <Key Name="assetID" Value="6519bf39-b19f-11dc-8314-0800200c9a66" /> 32 <Key Name="assetID" Value="6519bf39-b19f-11dc-8314-0800200c9a66" />
@@ -38,11 +35,8 @@
38 <Key Name="name" Value="llAcos" /> 35 <Key Name="name" Value="llAcos" />
39 <Key Name="assetType" Value="10" /> 36 <Key Name="assetType" Value="10" />
40 <Key Name="inventoryType" Value="10" /> 37 <Key Name="inventoryType" Value="10" />
41 <Key Name="currentPermissions" Value="257487132" />
42 <Key Name="nextPermissions" Value="257487132" />
43 <Key Name="everyonePermissions" Value="257487132" />
44 <Key Name="basePermissions" Value="257487132" />
45 </Section> 38 </Section>
39
46 <Section Name="llAddToLandBanList"> 40 <Section Name="llAddToLandBanList">
47 <Key Name="inventoryID" Value="7ceba3f0-b1a0-11dc-8314-0800200c9a66" /> 41 <Key Name="inventoryID" Value="7ceba3f0-b1a0-11dc-8314-0800200c9a66" />
48 <Key Name="assetID" Value="7ceba3f1-b1a0-11dc-8314-0800200c9a66" /> 42 <Key Name="assetID" Value="7ceba3f1-b1a0-11dc-8314-0800200c9a66" />
@@ -51,11 +45,8 @@
51 <Key Name="name" Value="llAddToLandBanList" /> 45 <Key Name="name" Value="llAddToLandBanList" />
52 <Key Name="assetType" Value="10" /> 46 <Key Name="assetType" Value="10" />
53 <Key Name="inventoryType" Value="10" /> 47 <Key Name="inventoryType" Value="10" />
54 <Key Name="currentPermissions" Value="257487132" />
55 <Key Name="nextPermissions" Value="257487132" />
56 <Key Name="everyonePermissions" Value="257487132" />
57 <Key Name="basePermissions" Value="257487132" />
58 </Section> 48 </Section>
49
59 <Section Name="llAddToLandPassList"> 50 <Section Name="llAddToLandPassList">
60 <Key Name="inventoryID" Value="609047e6-b390-11dc-8314-0800200c9a66" /> 51 <Key Name="inventoryID" Value="609047e6-b390-11dc-8314-0800200c9a66" />
61 <Key Name="assetID" Value="609047e7-b390-11dc-8314-0800200c9a66" /> 52 <Key Name="assetID" Value="609047e7-b390-11dc-8314-0800200c9a66" />
@@ -64,11 +55,8 @@
64 <Key Name="name" Value="llAddToLandPassList" /> 55 <Key Name="name" Value="llAddToLandPassList" />
65 <Key Name="assetType" Value="10" /> 56 <Key Name="assetType" Value="10" />
66 <Key Name="inventoryType" Value="10" /> 57 <Key Name="inventoryType" Value="10" />
67 <Key Name="currentPermissions" Value="257487132" />
68 <Key Name="nextPermissions" Value="257487132" />
69 <Key Name="everyonePermissions" Value="257487132" />
70 <Key Name="basePermissions" Value="257487132" />
71 </Section> 58 </Section>
59
72 <Section Name="llAdjustSoundVolume"> 60 <Section Name="llAdjustSoundVolume">
73 <Key Name="inventoryID" Value="56df4bcc-b393-11dc-8314-0800200c9a66" /> 61 <Key Name="inventoryID" Value="56df4bcc-b393-11dc-8314-0800200c9a66" />
74 <Key Name="assetID" Value="56df4bcd-b393-11dc-8314-0800200c9a66" /> 62 <Key Name="assetID" Value="56df4bcd-b393-11dc-8314-0800200c9a66" />
@@ -77,11 +65,8 @@
77 <Key Name="name" Value="llAdjustSoundVolume" /> 65 <Key Name="name" Value="llAdjustSoundVolume" />
78 <Key Name="assetType" Value="10" /> 66 <Key Name="assetType" Value="10" />
79 <Key Name="inventoryType" Value="10" /> 67 <Key Name="inventoryType" Value="10" />
80 <Key Name="currentPermissions" Value="257487132" />
81 <Key Name="nextPermissions" Value="257487132" />
82 <Key Name="everyonePermissions" Value="257487132" />
83 <Key Name="basePermissions" Value="257487132" />
84 </Section> 68 </Section>
69
85 <Section Name="llAllowInventoryDrop"> 70 <Section Name="llAllowInventoryDrop">
86 <Key Name="inventoryID" Value="54d6962c-b394-11dc-8314-0800200c9a66" /> 71 <Key Name="inventoryID" Value="54d6962c-b394-11dc-8314-0800200c9a66" />
87 <Key Name="assetID" Value="54d6962d-b394-11dc-8314-0800200c9a66" /> 72 <Key Name="assetID" Value="54d6962d-b394-11dc-8314-0800200c9a66" />
@@ -90,11 +75,8 @@
90 <Key Name="name" Value="llAllowInventoryDrop" /> 75 <Key Name="name" Value="llAllowInventoryDrop" />
91 <Key Name="assetType" Value="10" /> 76 <Key Name="assetType" Value="10" />
92 <Key Name="inventoryType" Value="10" /> 77 <Key Name="inventoryType" Value="10" />
93 <Key Name="currentPermissions" Value="257487132" />
94 <Key Name="nextPermissions" Value="257487132" />
95 <Key Name="everyonePermissions" Value="257487132" />
96 <Key Name="basePermissions" Value="257487132" />
97 </Section> 78 </Section>
79
98 <Section Name="llAngleBetween"> 80 <Section Name="llAngleBetween">
99 <Key Name="inventoryID" Value="6b341608-b34e-11dc-8314-0800200c9a66" /> 81 <Key Name="inventoryID" Value="6b341608-b34e-11dc-8314-0800200c9a66" />
100 <Key Name="assetID" Value="6b341609-b34e-11dc-8314-0800200c9a66" /> 82 <Key Name="assetID" Value="6b341609-b34e-11dc-8314-0800200c9a66" />
@@ -103,11 +85,8 @@
103 <Key Name="name" Value="llAngleBetween" /> 85 <Key Name="name" Value="llAngleBetween" />
104 <Key Name="assetType" Value="10" /> 86 <Key Name="assetType" Value="10" />
105 <Key Name="inventoryType" Value="10" /> 87 <Key Name="inventoryType" Value="10" />
106 <Key Name="currentPermissions" Value="257487132" />
107 <Key Name="nextPermissions" Value="257487132" />
108 <Key Name="everyonePermissions" Value="257487132" />
109 <Key Name="basePermissions" Value="257487132" />
110 </Section> 88 </Section>
89
111 <Section Name="llAsin"> 90 <Section Name="llAsin">
112 <Key Name="inventoryID" Value="7e7422ec-b425-11dc-8314-0800200c9a66" /> 91 <Key Name="inventoryID" Value="7e7422ec-b425-11dc-8314-0800200c9a66" />
113 <Key Name="assetID" Value="7e7422ed-b425-11dc-8314-0800200c9a66" /> 92 <Key Name="assetID" Value="7e7422ed-b425-11dc-8314-0800200c9a66" />
@@ -116,11 +95,8 @@
116 <Key Name="name" Value="llAsin" /> 95 <Key Name="name" Value="llAsin" />
117 <Key Name="assetType" Value="10" /> 96 <Key Name="assetType" Value="10" />
118 <Key Name="inventoryType" Value="10" /> 97 <Key Name="inventoryType" Value="10" />
119 <Key Name="currentPermissions" Value="257487132" />
120 <Key Name="nextPermissions" Value="257487132" />
121 <Key Name="everyonePermissions" Value="257487132" />
122 <Key Name="basePermissions" Value="257487132" />
123 </Section> 98 </Section>
99
124 <Section Name="llAtan2"> 100 <Section Name="llAtan2">
125 <Key Name="inventoryID" Value="7e7422ee-b425-11dc-8314-0800200c9a66" /> 101 <Key Name="inventoryID" Value="7e7422ee-b425-11dc-8314-0800200c9a66" />
126 <Key Name="assetID" Value="7e7422ef-b425-11dc-8314-0800200c9a66" /> 102 <Key Name="assetID" Value="7e7422ef-b425-11dc-8314-0800200c9a66" />
@@ -129,11 +105,8 @@
129 <Key Name="name" Value="llAtan2" /> 105 <Key Name="name" Value="llAtan2" />
130 <Key Name="assetType" Value="10" /> 106 <Key Name="assetType" Value="10" />
131 <Key Name="inventoryType" Value="10" /> 107 <Key Name="inventoryType" Value="10" />
132 <Key Name="currentPermissions" Value="257487132" />
133 <Key Name="nextPermissions" Value="257487132" />
134 <Key Name="everyonePermissions" Value="257487132" />
135 <Key Name="basePermissions" Value="257487132" />
136 </Section> 108 </Section>
109
137 <Section Name="llApplyImpulse"> 110 <Section Name="llApplyImpulse">
138 <Key Name="inventoryID" Value="714ec678-b419-11dc-8314-0800200c9a66" /> 111 <Key Name="inventoryID" Value="714ec678-b419-11dc-8314-0800200c9a66" />
139 <Key Name="assetID" Value="714ec679-b419-11dc-8314-0800200c9a66" /> 112 <Key Name="assetID" Value="714ec679-b419-11dc-8314-0800200c9a66" />
@@ -142,11 +115,8 @@
142 <Key Name="name" Value="llApplyImpulse" /> 115 <Key Name="name" Value="llApplyImpulse" />
143 <Key Name="assetType" Value="10" /> 116 <Key Name="assetType" Value="10" />
144 <Key Name="inventoryType" Value="10" /> 117 <Key Name="inventoryType" Value="10" />
145 <Key Name="currentPermissions" Value="257487132" />
146 <Key Name="nextPermissions" Value="257487132" />
147 <Key Name="everyonePermissions" Value="257487132" />
148 <Key Name="basePermissions" Value="257487132" />
149 </Section> 118 </Section>
119
150 <Section Name="llAvatarOnSitTarget"> 120 <Section Name="llAvatarOnSitTarget">
151 <Key Name="inventoryID" Value="579fc820-b426-11dc-8314-0800200c9a66" /> 121 <Key Name="inventoryID" Value="579fc820-b426-11dc-8314-0800200c9a66" />
152 <Key Name="assetID" Value="579fc821-b426-11dc-8314-0800200c9a66" /> 122 <Key Name="assetID" Value="579fc821-b426-11dc-8314-0800200c9a66" />
@@ -155,11 +125,8 @@
155 <Key Name="name" Value="llAvatarOnSitTarget" /> 125 <Key Name="name" Value="llAvatarOnSitTarget" />
156 <Key Name="assetType" Value="10" /> 126 <Key Name="assetType" Value="10" />
157 <Key Name="inventoryType" Value="10" /> 127 <Key Name="inventoryType" Value="10" />
158 <Key Name="currentPermissions" Value="257487132" />
159 <Key Name="nextPermissions" Value="257487132" />
160 <Key Name="everyonePermissions" Value="257487132" />
161 <Key Name="basePermissions" Value="257487132" />
162 </Section> 128 </Section>
129
163<!-- B == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba004"/> --> 130<!-- B == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba004"/> -->
164 <Section Name="llBase64ToString"> 131 <Section Name="llBase64ToString">
165 <Key Name="inventoryID" Value="1d4c71d8-b428-11dc-8314-0800200c9a66" /> 132 <Key Name="inventoryID" Value="1d4c71d8-b428-11dc-8314-0800200c9a66" />
@@ -169,11 +136,8 @@
169 <Key Name="name" Value="llBase64ToString" /> 136 <Key Name="name" Value="llBase64ToString" />
170 <Key Name="assetType" Value="10" /> 137 <Key Name="assetType" Value="10" />
171 <Key Name="inventoryType" Value="10" /> 138 <Key Name="inventoryType" Value="10" />
172 <Key Name="currentPermissions" Value="257487132" />
173 <Key Name="nextPermissions" Value="257487132" />
174 <Key Name="everyonePermissions" Value="257487132" />
175 <Key Name="basePermissions" Value="257487132" />
176 </Section> 139 </Section>
140
177<!-- C == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba005"/> --> 141<!-- C == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba005"/> -->
178<!-- D == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba006"/> --> 142<!-- D == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba006"/> -->
179<!-- E == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba007"/> --> 143<!-- E == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba007"/> -->
@@ -187,6 +151,7 @@
187<!-- O == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba015"/> --> 151<!-- O == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba015"/> -->
188<!-- P == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba016"/> --> 152<!-- P == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba016"/> -->
189<!-- R == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba017"/> --> 153<!-- R == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba017"/> -->
154
190 <Section Name="llRemoveFromLandBanList"> 155 <Section Name="llRemoveFromLandBanList">
191 <Key Name="inventoryID" Value="299b2100-b392-11dc-8314-0800200c9a66" /> 156 <Key Name="inventoryID" Value="299b2100-b392-11dc-8314-0800200c9a66" />
192 <Key Name="assetID" Value="299b2101-b392-11dc-8314-0800200c9a66" /> 157 <Key Name="assetID" Value="299b2101-b392-11dc-8314-0800200c9a66" />
@@ -195,11 +160,8 @@
195 <Key Name="name" Value="llRemoveFromLandBanList" /> 160 <Key Name="name" Value="llRemoveFromLandBanList" />
196 <Key Name="assetType" Value="10" /> 161 <Key Name="assetType" Value="10" />
197 <Key Name="inventoryType" Value="10" /> 162 <Key Name="inventoryType" Value="10" />
198 <Key Name="currentPermissions" Value="257487132" />
199 <Key Name="nextPermissions" Value="257487132" />
200 <Key Name="everyonePermissions" Value="257487132" />
201 <Key Name="basePermissions" Value="257487132" />
202 </Section> 163 </Section>
164
203 <Section Name="llRemoveFromLandPassList"> 165 <Section Name="llRemoveFromLandPassList">
204 <Key Name="inventoryID" Value="299b2102-b392-11dc-8314-0800200c9a66" /> 166 <Key Name="inventoryID" Value="299b2102-b392-11dc-8314-0800200c9a66" />
205 <Key Name="assetID" Value="299b2103-b392-11dc-8314-0800200c9a66" /> 167 <Key Name="assetID" Value="299b2103-b392-11dc-8314-0800200c9a66" />
@@ -208,11 +170,8 @@
208 <Key Name="name" Value="llRemoveFromLandPassList" /> 170 <Key Name="name" Value="llRemoveFromLandPassList" />
209 <Key Name="assetType" Value="10" /> 171 <Key Name="assetType" Value="10" />
210 <Key Name="inventoryType" Value="10" /> 172 <Key Name="inventoryType" Value="10" />
211 <Key Name="currentPermissions" Value="257487132" />
212 <Key Name="nextPermissions" Value="257487132" />
213 <Key Name="everyonePermissions" Value="257487132" />
214 <Key Name="basePermissions" Value="257487132" />
215 </Section> 173 </Section>
174
216 <Section Name="llResetLandBanList"> 175 <Section Name="llResetLandBanList">
217 <Key Name="inventoryID" Value="366ac8e6-b391-11dc-8314-0800200c9a66" /> 176 <Key Name="inventoryID" Value="366ac8e6-b391-11dc-8314-0800200c9a66" />
218 <Key Name="assetID" Value="366ac8e7-b391-11dc-8314-0800200c9a66" /> 177 <Key Name="assetID" Value="366ac8e7-b391-11dc-8314-0800200c9a66" />
@@ -221,11 +180,8 @@
221 <Key Name="name" Value="llResetLandBanList" /> 180 <Key Name="name" Value="llResetLandBanList" />
222 <Key Name="assetType" Value="10" /> 181 <Key Name="assetType" Value="10" />
223 <Key Name="inventoryType" Value="10" /> 182 <Key Name="inventoryType" Value="10" />
224 <Key Name="currentPermissions" Value="257487132" />
225 <Key Name="nextPermissions" Value="257487132" />
226 <Key Name="everyonePermissions" Value="257487132" />
227 <Key Name="basePermissions" Value="257487132" />
228 </Section> 183 </Section>
184
229 <Section Name="llResetLandPassList"> 185 <Section Name="llResetLandPassList">
230 <Key Name="inventoryID" Value="366ac8e8-b391-11dc-8314-0800200c9a66" /> 186 <Key Name="inventoryID" Value="366ac8e8-b391-11dc-8314-0800200c9a66" />
231 <Key Name="assetID" Value="366ac8e9-b391-11dc-8314-0800200c9a66" /> 187 <Key Name="assetID" Value="366ac8e9-b391-11dc-8314-0800200c9a66" />
@@ -234,11 +190,8 @@
234 <Key Name="name" Value="llResetLandPassList" /> 190 <Key Name="name" Value="llResetLandPassList" />
235 <Key Name="assetType" Value="10" /> 191 <Key Name="assetType" Value="10" />
236 <Key Name="inventoryType" Value="10" /> 192 <Key Name="inventoryType" Value="10" />
237 <Key Name="currentPermissions" Value="257487132" />
238 <Key Name="nextPermissions" Value="257487132" />
239 <Key Name="everyonePermissions" Value="257487132" />
240 <Key Name="basePermissions" Value="257487132" />
241 </Section> 193 </Section>
194
242<!-- S == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba018"/> --> 195<!-- S == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba018"/> -->
243 <Section Name="llSay"> 196 <Section Name="llSay">
244 <Key Name="inventoryID" Value="3af51d20-b38f-11dc-8314-0800200c9a66" /> 197 <Key Name="inventoryID" Value="3af51d20-b38f-11dc-8314-0800200c9a66" />
@@ -248,11 +201,8 @@
248 <Key Name="name" Value="llSay" /> 201 <Key Name="name" Value="llSay" />
249 <Key Name="assetType" Value="10" /> 202 <Key Name="assetType" Value="10" />
250 <Key Name="inventoryType" Value="10" /> 203 <Key Name="inventoryType" Value="10" />
251 <Key Name="currentPermissions" Value="257487132" />
252 <Key Name="nextPermissions" Value="257487132" />
253 <Key Name="everyonePermissions" Value="257487132" />
254 <Key Name="basePermissions" Value="257487132" />
255 </Section> 204 </Section>
205
256 <Section Name="llSetParcelMusicURL"> 206 <Section Name="llSetParcelMusicURL">
257 <Key Name="inventoryID" Value="3603a4f9-b360-11dc-8314-0800200c9a66" /> 207 <Key Name="inventoryID" Value="3603a4f9-b360-11dc-8314-0800200c9a66" />
258 <Key Name="assetID" Value="3603a4f8-b360-11dc-8314-0800200c9a66" /> 208 <Key Name="assetID" Value="3603a4f8-b360-11dc-8314-0800200c9a66" />
@@ -261,11 +211,8 @@
261 <Key Name="name" Value="llSetParcelMusicURL" /> 211 <Key Name="name" Value="llSetParcelMusicURL" />
262 <Key Name="assetType" Value="10" /> 212 <Key Name="assetType" Value="10" />
263 <Key Name="inventoryType" Value="10" /> 213 <Key Name="inventoryType" Value="10" />
264 <Key Name="currentPermissions" Value="257487132" />
265 <Key Name="nextPermissions" Value="257487132" />
266 <Key Name="everyonePermissions" Value="257487132" />
267 <Key Name="basePermissions" Value="257487132" />
268 </Section> 214 </Section>
215
269 <Section Name="llSetRot"> 216 <Section Name="llSetRot">
270 <Key Name="inventoryID" Value="220baef8-b376-11dc-8314-0800200c9a66" /> 217 <Key Name="inventoryID" Value="220baef8-b376-11dc-8314-0800200c9a66" />
271 <Key Name="assetID" Value="220baef9-b376-11dc-8314-0800200c9a66" /> 218 <Key Name="assetID" Value="220baef9-b376-11dc-8314-0800200c9a66" />
@@ -274,11 +221,8 @@
274 <Key Name="name" Value="llSetRot" /> 221 <Key Name="name" Value="llSetRot" />
275 <Key Name="assetType" Value="10" /> 222 <Key Name="assetType" Value="10" />
276 <Key Name="inventoryType" Value="10" /> 223 <Key Name="inventoryType" Value="10" />
277 <Key Name="currentPermissions" Value="257487132" />
278 <Key Name="nextPermissions" Value="257487132" />
279 <Key Name="everyonePermissions" Value="257487132" />
280 <Key Name="basePermissions" Value="257487132" />
281 </Section> 224 </Section>
225
282<!-- T == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba019"/> --> 226<!-- T == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba019"/> -->
283<!-- U == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba020"/> --> 227<!-- U == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba020"/> -->
284<!-- V == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba021"/> --> 228<!-- V == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba021"/> -->
@@ -288,213 +232,166 @@
288 <Section Name="Kan-Ed Test1"> 232 <Section Name="Kan-Ed Test1">
289 <Key Name="inventoryID" Value="42b6ac70-d21f-11dd-ad8b-0800200c9a66" /> 233 <Key Name="inventoryID" Value="42b6ac70-d21f-11dd-ad8b-0800200c9a66" />
290 <Key Name="assetID" Value="42b6ac70-d21f-11dd-ad8b-0800200c9a66" /> 234 <Key Name="assetID" Value="42b6ac70-d21f-11dd-ad8b-0800200c9a66" />
291 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 235 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
292 <Key Name="description" Value="Kan-Ed Test1" /> 236 <Key Name="description" Value="Kan-Ed Test1" />
293 <Key Name="name" Value="Kan-Ed Test1" /> 237 <Key Name="name" Value="Kan-Ed Test1" />
294 <Key Name="assetType" Value="10" /> 238 <Key Name="assetType" Value="10" />
295 <Key Name="inventoryType" Value="10" /> 239 <Key Name="inventoryType" Value="10" />
296 <Key Name="currentPermissions" Value="257487132" />
297 <Key Name="nextPermissions" Value="257487132" />
298 <Key Name="everyonePermissions" Value="257487132" />
299 <Key Name="basePermissions" Value="257487132" />
300 </Section> 240 </Section>
241
301 <Section Name="Kan-Ed Test2"> 242 <Section Name="Kan-Ed Test2">
302 <Key Name="inventoryID" Value="42b6ac71-d21f-11dd-ad8b-0800200c9a66" /> 243 <Key Name="inventoryID" Value="42b6ac71-d21f-11dd-ad8b-0800200c9a66" />
303 <Key Name="assetID" Value="42b6ac71-d21f-11dd-ad8b-0800200c9a66" /> 244 <Key Name="assetID" Value="42b6ac71-d21f-11dd-ad8b-0800200c9a66" />
304 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 245 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
305 <Key Name="description" Value="Kan-Ed Test2" /> 246 <Key Name="description" Value="Kan-Ed Test2" />
306 <Key Name="name" Value="Kan-Ed Test2" /> 247 <Key Name="name" Value="Kan-Ed Test2" />
307 <Key Name="assetType" Value="10" /> 248 <Key Name="assetType" Value="10" />
308 <Key Name="inventoryType" Value="10" /> 249 <Key Name="inventoryType" Value="10" />
309 <Key Name="currentPermissions" Value="257487132" />
310 <Key Name="nextPermissions" Value="257487132" />
311 <Key Name="everyonePermissions" Value="257487132" />
312 <Key Name="basePermissions" Value="257487132" />
313 </Section> 250 </Section>
251
314 <Section Name="Kan-Ed Test3"> 252 <Section Name="Kan-Ed Test3">
315 <Key Name="inventoryID" Value="42b6ac72-d21f-11dd-ad8b-0800200c9a66" /> 253 <Key Name="inventoryID" Value="42b6ac72-d21f-11dd-ad8b-0800200c9a66" />
316 <Key Name="assetID" Value="42b6ac72-d21f-11dd-ad8b-0800200c9a66" /> 254 <Key Name="assetID" Value="42b6ac72-d21f-11dd-ad8b-0800200c9a66" />
317 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 255 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
318 <Key Name="description" Value="Kan-Ed Test3" /> 256 <Key Name="description" Value="Kan-Ed Test3" />
319 <Key Name="name" Value="Kan-Ed Test3" /> 257 <Key Name="name" Value="Kan-Ed Test3" />
320 <Key Name="assetType" Value="10" /> 258 <Key Name="assetType" Value="10" />
321 <Key Name="inventoryType" Value="10" /> 259 <Key Name="inventoryType" Value="10" />
322 <Key Name="currentPermissions" Value="257487132" />
323 <Key Name="nextPermissions" Value="257487132" />
324 <Key Name="everyonePermissions" Value="257487132" />
325 <Key Name="basePermissions" Value="257487132" />
326 </Section> 260 </Section>
261
327 <Section Name="Kan-Ed Test4"> 262 <Section Name="Kan-Ed Test4">
328 <Key Name="inventoryID" Value="42b6ac73-d21f-11dd-ad8b-0800200c9a66" /> 263 <Key Name="inventoryID" Value="42b6ac73-d21f-11dd-ad8b-0800200c9a66" />
329 <Key Name="assetID" Value="42b6ac73-d21f-11dd-ad8b-0800200c9a66" /> 264 <Key Name="assetID" Value="42b6ac73-d21f-11dd-ad8b-0800200c9a66" />
330 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 265 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
331 <Key Name="description" Value="Kan-Ed Test4" /> 266 <Key Name="description" Value="Kan-Ed Test4" />
332 <Key Name="name" Value="Kan-Ed Test4" /> 267 <Key Name="name" Value="Kan-Ed Test4" />
333 <Key Name="assetType" Value="10" /> 268 <Key Name="assetType" Value="10" />
334 <Key Name="inventoryType" Value="10" /> 269 <Key Name="inventoryType" Value="10" />
335 <Key Name="currentPermissions" Value="257487132" />
336 <Key Name="nextPermissions" Value="257487132" />
337 <Key Name="everyonePermissions" Value="257487132" />
338 <Key Name="basePermissions" Value="257487132" />
339 </Section> 270 </Section>
271
340 <Section Name="Kan-Ed Test5"> 272 <Section Name="Kan-Ed Test5">
341 <Key Name="inventoryID" Value="42b6ac74-d21f-11dd-ad8b-0800200c9a66" /> 273 <Key Name="inventoryID" Value="42b6ac74-d21f-11dd-ad8b-0800200c9a66" />
342 <Key Name="assetID" Value="42b6ac74-d21f-11dd-ad8b-0800200c9a66" /> 274 <Key Name="assetID" Value="42b6ac74-d21f-11dd-ad8b-0800200c9a66" />
343 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 275 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
344 <Key Name="description" Value="Kan-Ed Test5" /> 276 <Key Name="description" Value="Kan-Ed Test5" />
345 <Key Name="name" Value="Kan-Ed Test5" /> 277 <Key Name="name" Value="Kan-Ed Test5" />
346 <Key Name="assetType" Value="10" /> 278 <Key Name="assetType" Value="10" />
347 <Key Name="inventoryType" Value="10" /> 279 <Key Name="inventoryType" Value="10" />
348 <Key Name="currentPermissions" Value="257487132" />
349 <Key Name="nextPermissions" Value="257487132" />
350 <Key Name="everyonePermissions" Value="257487132" />
351 <Key Name="basePermissions" Value="257487132" />
352 </Section> 280 </Section>
281
353 <Section Name="Kan-Ed Test6"> 282 <Section Name="Kan-Ed Test6">
354 <Key Name="inventoryID" Value="42b6ac75-d21f-11dd-ad8b-0800200c9a66" /> 283 <Key Name="inventoryID" Value="42b6ac75-d21f-11dd-ad8b-0800200c9a66" />
355 <Key Name="assetID" Value="42b6ac75-d21f-11dd-ad8b-0800200c9a66" /> 284 <Key Name="assetID" Value="42b6ac75-d21f-11dd-ad8b-0800200c9a66" />
356 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 285 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
357 <Key Name="description" Value="Kan-Ed Test6" /> 286 <Key Name="description" Value="Kan-Ed Test6" />
358 <Key Name="name" Value="Kan-Ed Test6" /> 287 <Key Name="name" Value="Kan-Ed Test6" />
359 <Key Name="assetType" Value="10" /> 288 <Key Name="assetType" Value="10" />
360 <Key Name="inventoryType" Value="10" /> 289 <Key Name="inventoryType" Value="10" />
361 <Key Name="currentPermissions" Value="257487132" />
362 <Key Name="nextPermissions" Value="257487132" />
363 <Key Name="everyonePermissions" Value="257487132" />
364 <Key Name="basePermissions" Value="257487132" />
365 </Section> 290 </Section>
291
366 <Section Name="Kan-Ed Test7"> 292 <Section Name="Kan-Ed Test7">
367 <Key Name="inventoryID" Value="42b6ac76-d21f-11dd-ad8b-0800200c9a66" /> 293 <Key Name="inventoryID" Value="42b6ac76-d21f-11dd-ad8b-0800200c9a66" />
368 <Key Name="assetID" Value="42b6ac76-d21f-11dd-ad8b-0800200c9a66" /> 294 <Key Name="assetID" Value="42b6ac76-d21f-11dd-ad8b-0800200c9a66" />
369 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 295 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
370 <Key Name="description" Value="Kan-Ed Test7" /> 296 <Key Name="description" Value="Kan-Ed Test7" />
371 <Key Name="name" Value="Kan-Ed Test7" /> 297 <Key Name="name" Value="Kan-Ed Test7" />
372 <Key Name="assetType" Value="10" /> 298 <Key Name="assetType" Value="10" />
373 <Key Name="inventoryType" Value="10" /> 299 <Key Name="inventoryType" Value="10" />
374 <Key Name="currentPermissions" Value="257487132" />
375 <Key Name="nextPermissions" Value="257487132" />
376 <Key Name="everyonePermissions" Value="257487132" />
377 <Key Name="basePermissions" Value="257487132" />
378 </Section> 300 </Section>
301
379 <Section Name="Kan-Ed Test8"> 302 <Section Name="Kan-Ed Test8">
380 <Key Name="inventoryID" Value="42b6ac77-d21f-11dd-ad8b-0800200c9a66" /> 303 <Key Name="inventoryID" Value="42b6ac77-d21f-11dd-ad8b-0800200c9a66" />
381 <Key Name="assetID" Value="42b6ac77-d21f-11dd-ad8b-0800200c9a66" /> 304 <Key Name="assetID" Value="42b6ac77-d21f-11dd-ad8b-0800200c9a66" />
382 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 305 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
383 <Key Name="description" Value="Kan-Ed Test8" /> 306 <Key Name="description" Value="Kan-Ed Test8" />
384 <Key Name="name" Value="Kan-Ed Test8" /> 307 <Key Name="name" Value="Kan-Ed Test8" />
385 <Key Name="assetType" Value="10" /> 308 <Key Name="assetType" Value="10" />
386 <Key Name="inventoryType" Value="10" /> 309 <Key Name="inventoryType" Value="10" />
387 <Key Name="currentPermissions" Value="257487132" />
388 <Key Name="nextPermissions" Value="257487132" />
389 <Key Name="everyonePermissions" Value="257487132" />
390 <Key Name="basePermissions" Value="257487132" />
391 </Section> 310 </Section>
311
392 <Section Name="Kan-Ed Test9"> 312 <Section Name="Kan-Ed Test9">
393 <Key Name="inventoryID" Value="42b6ac78-d21f-11dd-ad8b-0800200c9a66" /> 313 <Key Name="inventoryID" Value="42b6ac78-d21f-11dd-ad8b-0800200c9a66" />
394 <Key Name="assetID" Value="42b6ac78-d21f-11dd-ad8b-0800200c9a66" /> 314 <Key Name="assetID" Value="42b6ac78-d21f-11dd-ad8b-0800200c9a66" />
395 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 315 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
396 <Key Name="description" Value="Kan-Ed Test9" /> 316 <Key Name="description" Value="Kan-Ed Test9" />
397 <Key Name="name" Value="Kan-Ed Test9" /> 317 <Key Name="name" Value="Kan-Ed Test9" />
398 <Key Name="assetType" Value="10" /> 318 <Key Name="assetType" Value="10" />
399 <Key Name="inventoryType" Value="10" /> 319 <Key Name="inventoryType" Value="10" />
400 <Key Name="currentPermissions" Value="257487132" />
401 <Key Name="nextPermissions" Value="257487132" />
402 <Key Name="everyonePermissions" Value="257487132" />
403 <Key Name="basePermissions" Value="257487132" />
404 </Section> 320 </Section>
321
405 <Section Name="Kan-Ed Test10"> 322 <Section Name="Kan-Ed Test10">
406 <Key Name="inventoryID" Value="42b6ac79-d21f-11dd-ad8b-0800200c9a66" /> 323 <Key Name="inventoryID" Value="42b6ac79-d21f-11dd-ad8b-0800200c9a66" />
407 <Key Name="assetID" Value="42b6ac79-d21f-11dd-ad8b-0800200c9a66" /> 324 <Key Name="assetID" Value="42b6ac79-d21f-11dd-ad8b-0800200c9a66" />
408 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 325 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
409 <Key Name="description" Value="Kan-Ed Test10" /> 326 <Key Name="description" Value="Kan-Ed Test10" />
410 <Key Name="name" Value="Kan-Ed Test10" /> 327 <Key Name="name" Value="Kan-Ed Test10" />
411 <Key Name="assetType" Value="10" /> 328 <Key Name="assetType" Value="10" />
412 <Key Name="inventoryType" Value="10" /> 329 <Key Name="inventoryType" Value="10" />
413 <Key Name="currentPermissions" Value="257487132" />
414 <Key Name="nextPermissions" Value="257487132" />
415 <Key Name="everyonePermissions" Value="257487132" />
416 <Key Name="basePermissions" Value="257487132" />
417 </Section> 330 </Section>
331
418 <Section Name="Kan-Ed Test11"> 332 <Section Name="Kan-Ed Test11">
419 <Key Name="inventoryID" Value="42b6ac7a-d21f-11dd-ad8b-0800200c9a66" /> 333 <Key Name="inventoryID" Value="42b6ac7a-d21f-11dd-ad8b-0800200c9a66" />
420 <Key Name="assetID" Value="42b6ac7a-d21f-11dd-ad8b-0800200c9a66" /> 334 <Key Name="assetID" Value="42b6ac7a-d21f-11dd-ad8b-0800200c9a66" />
421 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 335 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
422 <Key Name="description" Value="Kan-Ed Test11" /> 336 <Key Name="description" Value="Kan-Ed Test11" />
423 <Key Name="name" Value="Kan-Ed Test11" /> 337 <Key Name="name" Value="Kan-Ed Test11" />
424 <Key Name="assetType" Value="10" /> 338 <Key Name="assetType" Value="10" />
425 <Key Name="inventoryType" Value="10" /> 339 <Key Name="inventoryType" Value="10" />
426 <Key Name="currentPermissions" Value="257487132" />
427 <Key Name="nextPermissions" Value="257487132" />
428 <Key Name="everyonePermissions" Value="257487132" />
429 <Key Name="basePermissions" Value="257487132" />
430 </Section> 340 </Section>
341
431 <Section Name="Kan-Ed Test12"> 342 <Section Name="Kan-Ed Test12">
432 <Key Name="inventoryID" Value="42b6ac7b-d21f-11dd-ad8b-0800200c9a66" /> 343 <Key Name="inventoryID" Value="42b6ac7b-d21f-11dd-ad8b-0800200c9a66" />
433 <Key Name="assetID" Value="42b6ac7b-d21f-11dd-ad8b-0800200c9a66" /> 344 <Key Name="assetID" Value="42b6ac7b-d21f-11dd-ad8b-0800200c9a66" />
434 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 345 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
435 <Key Name="description" Value="Kan-Ed Test12" /> 346 <Key Name="description" Value="Kan-Ed Test12" />
436 <Key Name="name" Value="Kan-Ed Test12" /> 347 <Key Name="name" Value="Kan-Ed Test12" />
437 <Key Name="assetType" Value="10" /> 348 <Key Name="assetType" Value="10" />
438 <Key Name="inventoryType" Value="10" /> 349 <Key Name="inventoryType" Value="10" />
439 <Key Name="currentPermissions" Value="257487132" />
440 <Key Name="nextPermissions" Value="257487132" />
441 <Key Name="everyonePermissions" Value="257487132" />
442 <Key Name="basePermissions" Value="257487132" />
443 </Section> 350 </Section>
351
444 <Section Name="Kan-Ed Test13"> 352 <Section Name="Kan-Ed Test13">
445 <Key Name="inventoryID" Value="42b6ac7c-d21f-11dd-ad8b-0800200c9a66" /> 353 <Key Name="inventoryID" Value="42b6ac7c-d21f-11dd-ad8b-0800200c9a66" />
446 <Key Name="assetID" Value="42b6ac7c-d21f-11dd-ad8b-0800200c9a66" /> 354 <Key Name="assetID" Value="42b6ac7c-d21f-11dd-ad8b-0800200c9a66" />
447 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 355 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
448 <Key Name="description" Value="Kan-Ed Test13" /> 356 <Key Name="description" Value="Kan-Ed Test13" />
449 <Key Name="name" Value="Kan-Ed Test13" /> 357 <Key Name="name" Value="Kan-Ed Test13" />
450 <Key Name="assetType" Value="10" /> 358 <Key Name="assetType" Value="10" />
451 <Key Name="inventoryType" Value="10" /> 359 <Key Name="inventoryType" Value="10" />
452 <Key Name="currentPermissions" Value="257487132" />
453 <Key Name="nextPermissions" Value="257487132" />
454 <Key Name="everyonePermissions" Value="257487132" />
455 <Key Name="basePermissions" Value="257487132" />
456 </Section> 360 </Section>
361
457 <Section Name="Kan-Ed Test14"> 362 <Section Name="Kan-Ed Test14">
458 <Key Name="inventoryID" Value="42b6ac7d-d21f-11dd-ad8b-0800200c9a66" /> 363 <Key Name="inventoryID" Value="42b6ac7d-d21f-11dd-ad8b-0800200c9a66" />
459 <Key Name="assetID" Value="42b6ac7d-d21f-11dd-ad8b-0800200c9a66" /> 364 <Key Name="assetID" Value="42b6ac7d-d21f-11dd-ad8b-0800200c9a66" />
460 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 365 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
461 <Key Name="description" Value="Kan-Ed Test14" /> 366 <Key Name="description" Value="Kan-Ed Test14" />
462 <Key Name="name" Value="Kan-Ed Test14" /> 367 <Key Name="name" Value="Kan-Ed Test14" />
463 <Key Name="assetType" Value="10" /> 368 <Key Name="assetType" Value="10" />
464 <Key Name="inventoryType" Value="10" /> 369 <Key Name="inventoryType" Value="10" />
465 <Key Name="currentPermissions" Value="257487132" />
466 <Key Name="nextPermissions" Value="257487132" />
467 <Key Name="everyonePermissions" Value="257487132" />
468 <Key Name="basePermissions" Value="257487132" />
469 </Section> 370 </Section>
371
470 <Section Name="Kan-Ed Test15"> 372 <Section Name="Kan-Ed Test15">
471 <Key Name="inventoryID" Value="42b6ac7e-d21f-11dd-ad8b-0800200c9a66" /> 373 <Key Name="inventoryID" Value="42b6ac7e-d21f-11dd-ad8b-0800200c9a66" />
472 <Key Name="assetID" Value="42b6ac7e-d21f-11dd-ad8b-0800200c9a66" /> 374 <Key Name="assetID" Value="42b6ac7e-d21f-11dd-ad8b-0800200c9a66" />
473 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 375 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
474 <Key Name="description" Value="Kan-Ed Test15" /> 376 <Key Name="description" Value="Kan-Ed Test15" />
475 <Key Name="name" Value="Kan-Ed Test15" /> 377 <Key Name="name" Value="Kan-Ed Test15" />
476 <Key Name="assetType" Value="10" /> 378 <Key Name="assetType" Value="10" />
477 <Key Name="inventoryType" Value="10" /> 379 <Key Name="inventoryType" Value="10" />
478 <Key Name="currentPermissions" Value="257487132" />
479 <Key Name="nextPermissions" Value="257487132" />
480 <Key Name="everyonePermissions" Value="257487132" />
481 <Key Name="basePermissions" Value="257487132" />
482 </Section> 380 </Section>
381
483 <Section Name="Kan-Ed Test16"> 382 <Section Name="Kan-Ed Test16">
484 <Key Name="inventoryID" Value="42b6ac7f-d21f-11dd-ad8b-0800200c9a66" /> 383 <Key Name="inventoryID" Value="42b6ac7f-d21f-11dd-ad8b-0800200c9a66" />
485 <Key Name="assetID" Value="42b6ac7f-d21f-11dd-ad8b-0800200c9a66" /> 384 <Key Name="assetID" Value="42b6ac7f-d21f-11dd-ad8b-0800200c9a66" />
486 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/> 385 <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba024"/>
487 <Key Name="description" Value="Kan-Ed Test16" /> 386 <Key Name="description" Value="Kan-Ed Test16" />
488 <Key Name="name" Value="Kan-Ed Test16" /> 387 <Key Name="name" Value="Kan-Ed Test16" />
489 <Key Name="assetType" Value="10" /> 388 <Key Name="assetType" Value="10" />
490 <Key Name="inventoryType" Value="10" /> 389 <Key Name="inventoryType" Value="10" />
491 <Key Name="currentPermissions" Value="257487132" />
492 <Key Name="nextPermissions" Value="257487132" />
493 <Key Name="everyonePermissions" Value="257487132" />
494 <Key Name="basePermissions" Value="257487132" />
495 </Section> 390 </Section>
391
496<!-- .Other testing scripts == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba025"/> --> 392<!-- .Other testing scripts == <Key Name="folderID" Value="30000112-000f-0000-0000-000100bba025"/> -->
497<!-- OpenSim Specific Scripts == <Key Name="folderID" Value="284858c8-9391-6bf1-ddf5-b936f73de853"/> --> 393<!-- OpenSim Specific Scripts == <Key Name="folderID" Value="284858c8-9391-6bf1-ddf5-b936f73de853"/> -->
394
498 <Section Name="osTextBoard"> 395 <Section Name="osTextBoard">
499 <Key Name="inventoryID" Value="2ddcb059-20c5-d169-4c42-673f16d3284b" /> 396 <Key Name="inventoryID" Value="2ddcb059-20c5-d169-4c42-673f16d3284b" />
500 <Key Name="assetID" Value="2ddcb059-20c5-d169-4c42-673f16d3284b" /> 397 <Key Name="assetID" Value="2ddcb059-20c5-d169-4c42-673f16d3284b" />
@@ -503,11 +400,8 @@
503 <Key Name="name" Value="osTextBoard" /> 400 <Key Name="name" Value="osTextBoard" />
504 <Key Name="assetType" Value="10" /> 401 <Key Name="assetType" Value="10" />
505 <Key Name="inventoryType" Value="10" /> 402 <Key Name="inventoryType" Value="10" />
506 <Key Name="currentPermissions" Value="257487132" />
507 <Key Name="nextPermissions" Value="257487132" />
508 <Key Name="everyonePermissions" Value="257487132" />
509 <Key Name="basePermissions" Value="257487132" />
510 </Section> 403 </Section>
404
511 <Section Name="osWeatherMap"> 405 <Section Name="osWeatherMap">
512 <Key Name="inventoryID" Value="d63ad3ec-b687-6c38-410d-31ba3e50ce4d" /> 406 <Key Name="inventoryID" Value="d63ad3ec-b687-6c38-410d-31ba3e50ce4d" />
513 <Key Name="assetID" Value="d63ad3ec-b687-6c38-410d-31ba3e50ce4d" /> 407 <Key Name="assetID" Value="d63ad3ec-b687-6c38-410d-31ba3e50ce4d" />
@@ -516,11 +410,8 @@
516 <Key Name="name" Value="osWeatherMap" /> 410 <Key Name="name" Value="osWeatherMap" />
517 <Key Name="assetType" Value="10" /> 411 <Key Name="assetType" Value="10" />
518 <Key Name="inventoryType" Value="10" /> 412 <Key Name="inventoryType" Value="10" />
519 <Key Name="currentPermissions" Value="257487132" />
520 <Key Name="nextPermissions" Value="257487132" />
521 <Key Name="everyonePermissions" Value="257487132" />
522 <Key Name="basePermissions" Value="257487132" />
523 </Section> 413 </Section>
414
524 <Section Name="GrafittiBoard"> 415 <Section Name="GrafittiBoard">
525 <Key Name="inventoryID" Value="81305ee4-8caa-9e0a-69a4-76ed57df0c8f" /> 416 <Key Name="inventoryID" Value="81305ee4-8caa-9e0a-69a4-76ed57df0c8f" />
526 <Key Name="assetID" Value="81305ee4-8caa-9e0a-69a4-76ed57df0c8f" /> 417 <Key Name="assetID" Value="81305ee4-8caa-9e0a-69a4-76ed57df0c8f" />
@@ -529,9 +420,5 @@
529 <Key Name="name" Value="GrafittiBoard" /> 420 <Key Name="name" Value="GrafittiBoard" />
530 <Key Name="assetType" Value="10" /> 421 <Key Name="assetType" Value="10" />
531 <Key Name="inventoryType" Value="10" /> 422 <Key Name="inventoryType" Value="10" />
532 <Key Name="currentPermissions" Value="257487132" />
533 <Key Name="nextPermissions" Value="257487132" />
534 <Key Name="everyonePermissions" Value="257487132" />
535 <Key Name="basePermissions" Value="257487132" />
536 </Section> 423 </Section>
537</Nini> 424</Nini>
diff --git a/bin/inventory/SoundsLibrary/SoundsLibraryItems.xml b/bin/inventory/SoundsLibrary/SoundsLibraryItems.xml
index 4047a58..44194cd 100644
--- a/bin/inventory/SoundsLibrary/SoundsLibraryItems.xml
+++ b/bin/inventory/SoundsLibrary/SoundsLibraryItems.xml
@@ -9,10 +9,6 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
16 </Section> 12 </Section>
17--> 13-->
18 14
diff --git a/bin/inventory/TexturesLibrary/TexturesLibraryItems.xml b/bin/inventory/TexturesLibrary/TexturesLibraryItems.xml
index adba99a..a018a0d 100644
--- a/bin/inventory/TexturesLibrary/TexturesLibraryItems.xml
+++ b/bin/inventory/TexturesLibrary/TexturesLibraryItems.xml
@@ -9,10 +9,6 @@
9 <Key Name="name" Value="Example Library Item" /> 9 <Key Name="name" Value="Example Library Item" />
10 <Key Name="assetType" Value="7" /> 10 <Key Name="assetType" Value="7" />
11 <Key Name="inventoryType" Value="7" /> 11 <Key Name="inventoryType" Value="7" />
12 <Key Name="currentPermissions" Value="2147483647" />
13 <Key Name="nextPermissions" Value="2147483647" />
14 <Key Name="everyonePermissions" Value="2147483647" />
15 <Key Name="basePermissions" Value="2147483647" />
16 </Section> 12 </Section>
17--> 13-->
18 14
@@ -24,11 +20,8 @@
24 <Key Name="name" Value="4-tile2" /> 20 <Key Name="name" Value="4-tile2" />
25 <Key Name="assetType" Value="0" /> 21 <Key Name="assetType" Value="0" />
26 <Key Name="inventoryType" Value="0" /> 22 <Key Name="inventoryType" Value="0" />
27 <Key Name="currentPermissions" Value="2147483647" />
28 <Key Name="nextPermissions" Value="2147483647" />
29 <Key Name="everyonePermissions" Value="2147483647" />
30 <Key Name="basePermissions" Value="2147483647" />
31 </Section> 23 </Section>
24
32 <Section Name="4-tile3 Texture"> 25 <Section Name="4-tile3 Texture">
33 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001001" /> 26 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001001" />
34 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001001" /> 27 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001001" />
@@ -37,11 +30,8 @@
37 <Key Name="name" Value="4-tile3" /> 30 <Key Name="name" Value="4-tile3" />
38 <Key Name="assetType" Value="0" /> 31 <Key Name="assetType" Value="0" />
39 <Key Name="inventoryType" Value="0" /> 32 <Key Name="inventoryType" Value="0" />
40 <Key Name="currentPermissions" Value="2147483647" />
41 <Key Name="nextPermissions" Value="2147483647" />
42 <Key Name="everyonePermissions" Value="2147483647" />
43 <Key Name="basePermissions" Value="2147483647" />
44 </Section> 33 </Section>
34
45 <Section Name="brick1_256 Texture"> 35 <Section Name="brick1_256 Texture">
46 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001002" /> 36 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001002" />
47 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001002" /> 37 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001002" />
@@ -50,11 +40,8 @@
50 <Key Name="name" Value="brick1_256" /> 40 <Key Name="name" Value="brick1_256" />
51 <Key Name="assetType" Value="0" /> 41 <Key Name="assetType" Value="0" />
52 <Key Name="inventoryType" Value="0" /> 42 <Key Name="inventoryType" Value="0" />
53 <Key Name="currentPermissions" Value="2147483647" />
54 <Key Name="nextPermissions" Value="2147483647" />
55 <Key Name="everyonePermissions" Value="2147483647" />
56 <Key Name="basePermissions" Value="2147483647" />
57 </Section> 43 </Section>
44
58 <Section Name="brick2_256 Texture"> 45 <Section Name="brick2_256 Texture">
59 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001003" /> 46 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001003" />
60 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001003" /> 47 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001003" />
@@ -63,11 +50,8 @@
63 <Key Name="name" Value="brick2_256" /> 50 <Key Name="name" Value="brick2_256" />
64 <Key Name="assetType" Value="0" /> 51 <Key Name="assetType" Value="0" />
65 <Key Name="inventoryType" Value="0" /> 52 <Key Name="inventoryType" Value="0" />
66 <Key Name="currentPermissions" Value="2147483647" />
67 <Key Name="nextPermissions" Value="2147483647" />
68 <Key Name="everyonePermissions" Value="2147483647" />
69 <Key Name="basePermissions" Value="2147483647" />
70 </Section> 53 </Section>
54
71 <Section Name="brick_mono Texture"> 55 <Section Name="brick_mono Texture">
72 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001004" /> 56 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001004" />
73 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001004" /> 57 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001004" />
@@ -76,11 +60,8 @@
76 <Key Name="name" Value="brick_mono" /> 60 <Key Name="name" Value="brick_mono" />
77 <Key Name="assetType" Value="0" /> 61 <Key Name="assetType" Value="0" />
78 <Key Name="inventoryType" Value="0" /> 62 <Key Name="inventoryType" Value="0" />
79 <Key Name="currentPermissions" Value="2147483647" />
80 <Key Name="nextPermissions" Value="2147483647" />
81 <Key Name="everyonePermissions" Value="2147483647" />
82 <Key Name="basePermissions" Value="2147483647" />
83 </Section> 63 </Section>
64
84 <Section Name="cedar Texture"> 65 <Section Name="cedar Texture">
85 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001005" /> 66 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001005" />
86 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001005" /> 67 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001005" />
@@ -89,11 +70,8 @@
89 <Key Name="name" Value="cedar" /> 70 <Key Name="name" Value="cedar" />
90 <Key Name="assetType" Value="0" /> 71 <Key Name="assetType" Value="0" />
91 <Key Name="inventoryType" Value="0" /> 72 <Key Name="inventoryType" Value="0" />
92 <Key Name="currentPermissions" Value="2147483647" />
93 <Key Name="nextPermissions" Value="2147483647" />
94 <Key Name="everyonePermissions" Value="2147483647" />
95 <Key Name="basePermissions" Value="2147483647" />
96 </Section> 73 </Section>
74
97 <Section Name="cement_block Texture"> 75 <Section Name="cement_block Texture">
98 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001006" /> 76 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001006" />
99 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001006" /> 77 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001006" />
@@ -102,11 +80,8 @@
102 <Key Name="name" Value="cement_block" /> 80 <Key Name="name" Value="cement_block" />
103 <Key Name="assetType" Value="0" /> 81 <Key Name="assetType" Value="0" />
104 <Key Name="inventoryType" Value="0" /> 82 <Key Name="inventoryType" Value="0" />
105 <Key Name="currentPermissions" Value="2147483647" />
106 <Key Name="nextPermissions" Value="2147483647" />
107 <Key Name="everyonePermissions" Value="2147483647" />
108 <Key Name="basePermissions" Value="2147483647" />
109 </Section> 83 </Section>
84
110 <Section Name="clear Texture"> 85 <Section Name="clear Texture">
111 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001007" /> 86 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001007" />
112 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001007" /> 87 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001007" />
@@ -115,11 +90,8 @@
115 <Key Name="name" Value="clear" /> 90 <Key Name="name" Value="clear" />
116 <Key Name="assetType" Value="0" /> 91 <Key Name="assetType" Value="0" />
117 <Key Name="inventoryType" Value="0" /> 92 <Key Name="inventoryType" Value="0" />
118 <Key Name="currentPermissions" Value="2147483647" />
119 <Key Name="nextPermissions" Value="2147483647" />
120 <Key Name="everyonePermissions" Value="2147483647" />
121 <Key Name="basePermissions" Value="2147483647" />
122 </Section> 93 </Section>
94
123 <Section Name="cobbles Texture"> 95 <Section Name="cobbles Texture">
124 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001008" /> 96 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001008" />
125 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001008" /> 97 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001008" />
@@ -128,11 +100,8 @@
128 <Key Name="name" Value="cobbles" /> 100 <Key Name="name" Value="cobbles" />
129 <Key Name="assetType" Value="0" /> 101 <Key Name="assetType" Value="0" />
130 <Key Name="inventoryType" Value="0" /> 102 <Key Name="inventoryType" Value="0" />
131 <Key Name="currentPermissions" Value="2147483647" />
132 <Key Name="nextPermissions" Value="2147483647" />
133 <Key Name="everyonePermissions" Value="2147483647" />
134 <Key Name="basePermissions" Value="2147483647" />
135 </Section> 103 </Section>
104
136 <Section Name="creambrick Texture"> 105 <Section Name="creambrick Texture">
137 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001009" /> 106 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001009" />
138 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001009" /> 107 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001009" />
@@ -141,11 +110,8 @@
141 <Key Name="name" Value="creambrick" /> 110 <Key Name="name" Value="creambrick" />
142 <Key Name="assetType" Value="0" /> 111 <Key Name="assetType" Value="0" />
143 <Key Name="inventoryType" Value="0" /> 112 <Key Name="inventoryType" Value="0" />
144 <Key Name="currentPermissions" Value="2147483647" />
145 <Key Name="nextPermissions" Value="2147483647" />
146 <Key Name="everyonePermissions" Value="2147483647" />
147 <Key Name="basePermissions" Value="2147483647" />
148 </Section> 113 </Section>
114
149 <Section Name="fgrass Texture"> 115 <Section Name="fgrass Texture">
150 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001010" /> 116 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001010" />
151 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001010" /> 117 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001010" />
@@ -154,11 +120,8 @@
154 <Key Name="name" Value="fgrass" /> 120 <Key Name="name" Value="fgrass" />
155 <Key Name="assetType" Value="0" /> 121 <Key Name="assetType" Value="0" />
156 <Key Name="inventoryType" Value="0" /> 122 <Key Name="inventoryType" Value="0" />
157 <Key Name="currentPermissions" Value="2147483647" />
158 <Key Name="nextPermissions" Value="2147483647" />
159 <Key Name="everyonePermissions" Value="2147483647" />
160 <Key Name="basePermissions" Value="2147483647" />
161 </Section> 123 </Section>
124
162 <Section Name="glasstile2 Texture"> 125 <Section Name="glasstile2 Texture">
163 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001011" /> 126 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001011" />
164 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001011" /> 127 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001011" />
@@ -167,11 +130,8 @@
167 <Key Name="name" Value="glasstile2" /> 130 <Key Name="name" Value="glasstile2" />
168 <Key Name="assetType" Value="0" /> 131 <Key Name="assetType" Value="0" />
169 <Key Name="inventoryType" Value="0" /> 132 <Key Name="inventoryType" Value="0" />
170 <Key Name="currentPermissions" Value="2147483647" />
171 <Key Name="nextPermissions" Value="2147483647" />
172 <Key Name="everyonePermissions" Value="2147483647" />
173 <Key Name="basePermissions" Value="2147483647" />
174 </Section> 133 </Section>
134
175 <Section Name="graniteblock Texture"> 135 <Section Name="graniteblock Texture">
176 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001012" /> 136 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001012" />
177 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001012" /> 137 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001012" />
@@ -180,11 +140,8 @@
180 <Key Name="name" Value="graniteblock" /> 140 <Key Name="name" Value="graniteblock" />
181 <Key Name="assetType" Value="0" /> 141 <Key Name="assetType" Value="0" />
182 <Key Name="inventoryType" Value="0" /> 142 <Key Name="inventoryType" Value="0" />
183 <Key Name="currentPermissions" Value="2147483647" />
184 <Key Name="nextPermissions" Value="2147483647" />
185 <Key Name="everyonePermissions" Value="2147483647" />
186 <Key Name="basePermissions" Value="2147483647" />
187 </Section> 143 </Section>
144
188 <Section Name="grass Texture"> 145 <Section Name="grass Texture">
189 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001013" /> 146 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001013" />
190 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001013" /> 147 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001013" />
@@ -193,11 +150,8 @@
193 <Key Name="name" Value="grass" /> 150 <Key Name="name" Value="grass" />
194 <Key Name="assetType" Value="0" /> 151 <Key Name="assetType" Value="0" />
195 <Key Name="inventoryType" Value="0" /> 152 <Key Name="inventoryType" Value="0" />
196 <Key Name="currentPermissions" Value="2147483647" />
197 <Key Name="nextPermissions" Value="2147483647" />
198 <Key Name="everyonePermissions" Value="2147483647" />
199 <Key Name="basePermissions" Value="2147483647" />
200 </Section> 153 </Section>
154
201 <Section Name="gravel Texture"> 155 <Section Name="gravel Texture">
202 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001014" /> 156 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001014" />
203 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001014" /> 157 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001014" />
@@ -206,11 +160,8 @@
206 <Key Name="name" Value="gravel" /> 160 <Key Name="name" Value="gravel" />
207 <Key Name="assetType" Value="0" /> 161 <Key Name="assetType" Value="0" />
208 <Key Name="inventoryType" Value="0" /> 162 <Key Name="inventoryType" Value="0" />
209 <Key Name="currentPermissions" Value="2147483647" />
210 <Key Name="nextPermissions" Value="2147483647" />
211 <Key Name="everyonePermissions" Value="2147483647" />
212 <Key Name="basePermissions" Value="2147483647" />
213 </Section> 163 </Section>
164
214 <Section Name="greybrick Texture"> 165 <Section Name="greybrick Texture">
215 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001015" /> 166 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001015" />
216 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001015" /> 167 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001015" />
@@ -219,11 +170,8 @@
219 <Key Name="name" Value="greybrick" /> 170 <Key Name="name" Value="greybrick" />
220 <Key Name="assetType" Value="0" /> 171 <Key Name="assetType" Value="0" />
221 <Key Name="inventoryType" Value="0" /> 172 <Key Name="inventoryType" Value="0" />
222 <Key Name="currentPermissions" Value="2147483647" />
223 <Key Name="nextPermissions" Value="2147483647" />
224 <Key Name="everyonePermissions" Value="2147483647" />
225 <Key Name="basePermissions" Value="2147483647" />
226 </Section> 173 </Section>
174
227 <Section Name="ivy Texture"> 175 <Section Name="ivy Texture">
228 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001016" /> 176 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001016" />
229 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001016" /> 177 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001016" />
@@ -232,11 +180,8 @@
232 <Key Name="name" Value="ivy" /> 180 <Key Name="name" Value="ivy" />
233 <Key Name="assetType" Value="0" /> 181 <Key Name="assetType" Value="0" />
234 <Key Name="inventoryType" Value="0" /> 182 <Key Name="inventoryType" Value="0" />
235 <Key Name="currentPermissions" Value="2147483647" />
236 <Key Name="nextPermissions" Value="2147483647" />
237 <Key Name="everyonePermissions" Value="2147483647" />
238 <Key Name="basePermissions" Value="2147483647" />
239 </Section> 183 </Section>
184
240 <Section Name="mahogany Texture"> 185 <Section Name="mahogany Texture">
241 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001017" /> 186 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001017" />
242 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001017" /> 187 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001017" />
@@ -245,11 +190,8 @@
245 <Key Name="name" Value="mahogany" /> 190 <Key Name="name" Value="mahogany" />
246 <Key Name="assetType" Value="0" /> 191 <Key Name="assetType" Value="0" />
247 <Key Name="inventoryType" Value="0" /> 192 <Key Name="inventoryType" Value="0" />
248 <Key Name="currentPermissions" Value="2147483647" />
249 <Key Name="nextPermissions" Value="2147483647" />
250 <Key Name="everyonePermissions" Value="2147483647" />
251 <Key Name="basePermissions" Value="2147483647" />
252 </Section> 193 </Section>
194
253 <Section Name="maple Texture"> 195 <Section Name="maple Texture">
254 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001018" /> 196 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001018" />
255 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001018" /> 197 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001018" />
@@ -258,11 +200,8 @@
258 <Key Name="name" Value="maple" /> 200 <Key Name="name" Value="maple" />
259 <Key Name="assetType" Value="0" /> 201 <Key Name="assetType" Value="0" />
260 <Key Name="inventoryType" Value="0" /> 202 <Key Name="inventoryType" Value="0" />
261 <Key Name="currentPermissions" Value="2147483647" />
262 <Key Name="nextPermissions" Value="2147483647" />
263 <Key Name="everyonePermissions" Value="2147483647" />
264 <Key Name="basePermissions" Value="2147483647" />
265 </Section> 203 </Section>
204
266 <Section Name="mosaic02 Texture"> 205 <Section Name="mosaic02 Texture">
267 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001019" /> 206 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001019" />
268 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001019" /> 207 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001019" />
@@ -271,11 +210,8 @@
271 <Key Name="name" Value="mosaic02" /> 210 <Key Name="name" Value="mosaic02" />
272 <Key Name="assetType" Value="0" /> 211 <Key Name="assetType" Value="0" />
273 <Key Name="inventoryType" Value="0" /> 212 <Key Name="inventoryType" Value="0" />
274 <Key Name="currentPermissions" Value="2147483647" />
275 <Key Name="nextPermissions" Value="2147483647" />
276 <Key Name="everyonePermissions" Value="2147483647" />
277 <Key Name="basePermissions" Value="2147483647" />
278 </Section> 213 </Section>
214
279 <Section Name="palm1 Texture"> 215 <Section Name="palm1 Texture">
280 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001020" /> 216 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001020" />
281 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001020" /> 217 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001020" />
@@ -284,11 +220,8 @@
284 <Key Name="name" Value="palm1" /> 220 <Key Name="name" Value="palm1" />
285 <Key Name="assetType" Value="0" /> 221 <Key Name="assetType" Value="0" />
286 <Key Name="inventoryType" Value="0" /> 222 <Key Name="inventoryType" Value="0" />
287 <Key Name="currentPermissions" Value="2147483647" />
288 <Key Name="nextPermissions" Value="2147483647" />
289 <Key Name="everyonePermissions" Value="2147483647" />
290 <Key Name="basePermissions" Value="2147483647" />
291 </Section> 223 </Section>
224
292 <Section Name="papaya Texture"> 225 <Section Name="papaya Texture">
293 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001021" /> 226 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001021" />
294 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001021" /> 227 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001021" />
@@ -297,11 +230,8 @@
297 <Key Name="name" Value="papaya" /> 230 <Key Name="name" Value="papaya" />
298 <Key Name="assetType" Value="0" /> 231 <Key Name="assetType" Value="0" />
299 <Key Name="inventoryType" Value="0" /> 232 <Key Name="inventoryType" Value="0" />
300 <Key Name="currentPermissions" Value="2147483647" />
301 <Key Name="nextPermissions" Value="2147483647" />
302 <Key Name="everyonePermissions" Value="2147483647" />
303 <Key Name="basePermissions" Value="2147483647" />
304 </Section> 233 </Section>
234
305 <Section Name="papaya_bark Texture"> 235 <Section Name="papaya_bark Texture">
306 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001022" /> 236 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001022" />
307 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001022" /> 237 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001022" />
@@ -310,11 +240,8 @@
310 <Key Name="name" Value="papaya_bark" /> 240 <Key Name="name" Value="papaya_bark" />
311 <Key Name="assetType" Value="0" /> 241 <Key Name="assetType" Value="0" />
312 <Key Name="inventoryType" Value="0" /> 242 <Key Name="inventoryType" Value="0" />
313 <Key Name="currentPermissions" Value="2147483647" />
314 <Key Name="nextPermissions" Value="2147483647" />
315 <Key Name="everyonePermissions" Value="2147483647" />
316 <Key Name="basePermissions" Value="2147483647" />
317 </Section> 243 </Section>
244
318 <Section Name="pastelbrick Texture"> 245 <Section Name="pastelbrick Texture">
319 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001023" /> 246 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001023" />
320 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001023" /> 247 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001023" />
@@ -323,11 +250,8 @@
323 <Key Name="name" Value="pastelbrick" /> 250 <Key Name="name" Value="pastelbrick" />
324 <Key Name="assetType" Value="0" /> 251 <Key Name="assetType" Value="0" />
325 <Key Name="inventoryType" Value="0" /> 252 <Key Name="inventoryType" Value="0" />
326 <Key Name="currentPermissions" Value="2147483647" />
327 <Key Name="nextPermissions" Value="2147483647" />
328 <Key Name="everyonePermissions" Value="2147483647" />
329 <Key Name="basePermissions" Value="2147483647" />
330 </Section> 253 </Section>
254
331 <Section Name="pine1_10m Texture"> 255 <Section Name="pine1_10m Texture">
332 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001024" /> 256 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001024" />
333 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001024" /> 257 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001024" />
@@ -336,11 +260,8 @@
336 <Key Name="name" Value="pine1_10m" /> 260 <Key Name="name" Value="pine1_10m" />
337 <Key Name="assetType" Value="0" /> 261 <Key Name="assetType" Value="0" />
338 <Key Name="inventoryType" Value="0" /> 262 <Key Name="inventoryType" Value="0" />
339 <Key Name="currentPermissions" Value="2147483647" />
340 <Key Name="nextPermissions" Value="2147483647" />
341 <Key Name="everyonePermissions" Value="2147483647" />
342 <Key Name="basePermissions" Value="2147483647" />
343 </Section> 263 </Section>
264
344 <Section Name="poplar Texture"> 265 <Section Name="poplar Texture">
345 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001025" /> 266 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001025" />
346 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001025" /> 267 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001025" />
@@ -349,11 +270,8 @@
349 <Key Name="name" Value="poplar" /> 270 <Key Name="name" Value="poplar" />
350 <Key Name="assetType" Value="0" /> 271 <Key Name="assetType" Value="0" />
351 <Key Name="inventoryType" Value="0" /> 272 <Key Name="inventoryType" Value="0" />
352 <Key Name="currentPermissions" Value="2147483647" />
353 <Key Name="nextPermissions" Value="2147483647" />
354 <Key Name="everyonePermissions" Value="2147483647" />
355 <Key Name="basePermissions" Value="2147483647" />
356 </Section> 273 </Section>
274
357 <Section Name="redtri_tile Texture"> 275 <Section Name="redtri_tile Texture">
358 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001026" /> 276 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001026" />
359 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001026" /> 277 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001026" />
@@ -362,11 +280,8 @@
362 <Key Name="name" Value="redtri_tile" /> 280 <Key Name="name" Value="redtri_tile" />
363 <Key Name="assetType" Value="0" /> 281 <Key Name="assetType" Value="0" />
364 <Key Name="inventoryType" Value="0" /> 282 <Key Name="inventoryType" Value="0" />
365 <Key Name="currentPermissions" Value="2147483647" />
366 <Key Name="nextPermissions" Value="2147483647" />
367 <Key Name="everyonePermissions" Value="2147483647" />
368 <Key Name="basePermissions" Value="2147483647" />
369 </Section> 283 </Section>
284
370 <Section Name="rockbuilding Texture"> 285 <Section Name="rockbuilding Texture">
371 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001027" /> 286 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001027" />
372 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001027" /> 287 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001027" />
@@ -375,11 +290,8 @@
375 <Key Name="name" Value="rockbuilding" /> 290 <Key Name="name" Value="rockbuilding" />
376 <Key Name="assetType" Value="0" /> 291 <Key Name="assetType" Value="0" />
377 <Key Name="inventoryType" Value="0" /> 292 <Key Name="inventoryType" Value="0" />
378 <Key Name="currentPermissions" Value="2147483647" />
379 <Key Name="nextPermissions" Value="2147483647" />
380 <Key Name="everyonePermissions" Value="2147483647" />
381 <Key Name="basePermissions" Value="2147483647" />
382 </Section> 293 </Section>
294
383 <Section Name="rockwallbig Texture"> 295 <Section Name="rockwallbig Texture">
384 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001028" /> 296 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001028" />
385 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001028" /> 297 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001028" />
@@ -388,11 +300,8 @@
388 <Key Name="name" Value="rockwallbig" /> 300 <Key Name="name" Value="rockwallbig" />
389 <Key Name="assetType" Value="0" /> 301 <Key Name="assetType" Value="0" />
390 <Key Name="inventoryType" Value="0" /> 302 <Key Name="inventoryType" Value="0" />
391 <Key Name="currentPermissions" Value="2147483647" />
392 <Key Name="nextPermissions" Value="2147483647" />
393 <Key Name="everyonePermissions" Value="2147483647" />
394 <Key Name="basePermissions" Value="2147483647" />
395 </Section> 303 </Section>
304
396 <Section Name="roof01 Texture"> 305 <Section Name="roof01 Texture">
397 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001029" /> 306 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001029" />
398 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001029" /> 307 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001029" />
@@ -401,11 +310,8 @@
401 <Key Name="name" Value="roof01" /> 310 <Key Name="name" Value="roof01" />
402 <Key Name="assetType" Value="0" /> 311 <Key Name="assetType" Value="0" />
403 <Key Name="inventoryType" Value="0" /> 312 <Key Name="inventoryType" Value="0" />
404 <Key Name="currentPermissions" Value="2147483647" />
405 <Key Name="nextPermissions" Value="2147483647" />
406 <Key Name="everyonePermissions" Value="2147483647" />
407 <Key Name="basePermissions" Value="2147483647" />
408 </Section> 313 </Section>
314
409 <Section Name="rooftiles1 Texture"> 315 <Section Name="rooftiles1 Texture">
410 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001030" /> 316 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001030" />
411 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001030" /> 317 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001030" />
@@ -414,11 +320,8 @@
414 <Key Name="name" Value="rooftiles1" /> 320 <Key Name="name" Value="rooftiles1" />
415 <Key Name="assetType" Value="0" /> 321 <Key Name="assetType" Value="0" />
416 <Key Name="inventoryType" Value="0" /> 322 <Key Name="inventoryType" Value="0" />
417 <Key Name="currentPermissions" Value="2147483647" />
418 <Key Name="nextPermissions" Value="2147483647" />
419 <Key Name="everyonePermissions" Value="2147483647" />
420 <Key Name="basePermissions" Value="2147483647" />
421 </Section> 323 </Section>
324
422 <Section Name="rooftiles2_peach Texture"> 325 <Section Name="rooftiles2_peach Texture">
423 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001031" /> 326 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001031" />
424 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001031" /> 327 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001031" />
@@ -427,11 +330,8 @@
427 <Key Name="name" Value="rooftiles2_peach" /> 330 <Key Name="name" Value="rooftiles2_peach" />
428 <Key Name="assetType" Value="0" /> 331 <Key Name="assetType" Value="0" />
429 <Key Name="inventoryType" Value="0" /> 332 <Key Name="inventoryType" Value="0" />
430 <Key Name="currentPermissions" Value="2147483647" />
431 <Key Name="nextPermissions" Value="2147483647" />
432 <Key Name="everyonePermissions" Value="2147483647" />
433 <Key Name="basePermissions" Value="2147483647" />
434 </Section> 333 </Section>
334
435 <Section Name="rooftiles2_roy Texture"> 335 <Section Name="rooftiles2_roy Texture">
436 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001032" /> 336 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001032" />
437 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001032" /> 337 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001032" />
@@ -440,11 +340,8 @@
440 <Key Name="name" Value="rooftiles2_roy" /> 340 <Key Name="name" Value="rooftiles2_roy" />
441 <Key Name="assetType" Value="0" /> 341 <Key Name="assetType" Value="0" />
442 <Key Name="inventoryType" Value="0" /> 342 <Key Name="inventoryType" Value="0" />
443 <Key Name="currentPermissions" Value="2147483647" />
444 <Key Name="nextPermissions" Value="2147483647" />
445 <Key Name="everyonePermissions" Value="2147483647" />
446 <Key Name="basePermissions" Value="2147483647" />
447 </Section> 343 </Section>
344
448 <Section Name="saguaro_8m Texture"> 345 <Section Name="saguaro_8m Texture">
449 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001033" /> 346 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001033" />
450 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001033" /> 347 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001033" />
@@ -453,11 +350,8 @@
453 <Key Name="name" Value="saguaro_8m" /> 350 <Key Name="name" Value="saguaro_8m" />
454 <Key Name="assetType" Value="0" /> 351 <Key Name="assetType" Value="0" />
455 <Key Name="inventoryType" Value="0" /> 352 <Key Name="inventoryType" Value="0" />
456 <Key Name="currentPermissions" Value="2147483647" />
457 <Key Name="nextPermissions" Value="2147483647" />
458 <Key Name="everyonePermissions" Value="2147483647" />
459 <Key Name="basePermissions" Value="2147483647" />
460 </Section> 353 </Section>
354
461 <Section Name="seawater Texture"> 355 <Section Name="seawater Texture">
462 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001034" /> 356 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001034" />
463 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001034" /> 357 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001034" />
@@ -466,11 +360,8 @@
466 <Key Name="name" Value="seawater" /> 360 <Key Name="name" Value="seawater" />
467 <Key Name="assetType" Value="0" /> 361 <Key Name="assetType" Value="0" />
468 <Key Name="inventoryType" Value="0" /> 362 <Key Name="inventoryType" Value="0" />
469 <Key Name="currentPermissions" Value="2147483647" />
470 <Key Name="nextPermissions" Value="2147483647" />
471 <Key Name="everyonePermissions" Value="2147483647" />
472 <Key Name="basePermissions" Value="2147483647" />
473 </Section> 363 </Section>
364
474 <Section Name="snow1 Texture"> 365 <Section Name="snow1 Texture">
475 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001035" /> 366 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001035" />
476 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001035" /> 367 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001035" />
@@ -479,11 +370,8 @@
479 <Key Name="name" Value="snow1" /> 370 <Key Name="name" Value="snow1" />
480 <Key Name="assetType" Value="0" /> 371 <Key Name="assetType" Value="0" />
481 <Key Name="inventoryType" Value="0" /> 372 <Key Name="inventoryType" Value="0" />
482 <Key Name="currentPermissions" Value="2147483647" />
483 <Key Name="nextPermissions" Value="2147483647" />
484 <Key Name="everyonePermissions" Value="2147483647" />
485 <Key Name="basePermissions" Value="2147483647" />
486 </Section> 373 </Section>
374
487 <Section Name="steel Texture"> 375 <Section Name="steel Texture">
488 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001036" /> 376 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001036" />
489 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001036" /> 377 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001036" />
@@ -492,11 +380,8 @@
492 <Key Name="name" Value="steel" /> 380 <Key Name="name" Value="steel" />
493 <Key Name="assetType" Value="0" /> 381 <Key Name="assetType" Value="0" />
494 <Key Name="inventoryType" Value="0" /> 382 <Key Name="inventoryType" Value="0" />
495 <Key Name="currentPermissions" Value="2147483647" />
496 <Key Name="nextPermissions" Value="2147483647" />
497 <Key Name="everyonePermissions" Value="2147483647" />
498 <Key Name="basePermissions" Value="2147483647" />
499 </Section> 383 </Section>
384
500 <Section Name="stone1wall Texture"> 385 <Section Name="stone1wall Texture">
501 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001037" /> 386 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001037" />
502 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001037" /> 387 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001037" />
@@ -505,11 +390,8 @@
505 <Key Name="name" Value="stone1wall" /> 390 <Key Name="name" Value="stone1wall" />
506 <Key Name="assetType" Value="0" /> 391 <Key Name="assetType" Value="0" />
507 <Key Name="inventoryType" Value="0" /> 392 <Key Name="inventoryType" Value="0" />
508 <Key Name="currentPermissions" Value="2147483647" />
509 <Key Name="nextPermissions" Value="2147483647" />
510 <Key Name="everyonePermissions" Value="2147483647" />
511 <Key Name="basePermissions" Value="2147483647" />
512 </Section> 393 </Section>
394
513 <Section Name="stonetile Texture"> 395 <Section Name="stonetile Texture">
514 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001038" /> 396 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001038" />
515 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001038" /> 397 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001038" />
@@ -518,11 +400,8 @@
518 <Key Name="name" Value="stonetile" /> 400 <Key Name="name" Value="stonetile" />
519 <Key Name="assetType" Value="0" /> 401 <Key Name="assetType" Value="0" />
520 <Key Name="inventoryType" Value="0" /> 402 <Key Name="inventoryType" Value="0" />
521 <Key Name="currentPermissions" Value="2147483647" />
522 <Key Name="nextPermissions" Value="2147483647" />
523 <Key Name="everyonePermissions" Value="2147483647" />
524 <Key Name="basePermissions" Value="2147483647" />
525 </Section> 403 </Section>
404
526 <Section Name="street2 Texture"> 405 <Section Name="street2 Texture">
527 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001039" /> 406 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001039" />
528 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001039" /> 407 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001039" />
@@ -531,11 +410,8 @@
531 <Key Name="name" Value="street2" /> 410 <Key Name="name" Value="street2" />
532 <Key Name="assetType" Value="0" /> 411 <Key Name="assetType" Value="0" />
533 <Key Name="inventoryType" Value="0" /> 412 <Key Name="inventoryType" Value="0" />
534 <Key Name="currentPermissions" Value="2147483647" />
535 <Key Name="nextPermissions" Value="2147483647" />
536 <Key Name="everyonePermissions" Value="2147483647" />
537 <Key Name="basePermissions" Value="2147483647" />
538 </Section> 413 </Section>
414
539 <Section Name="thatch Texture"> 415 <Section Name="thatch Texture">
540 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001040" /> 416 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001040" />
541 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001040" /> 417 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001040" />
@@ -544,11 +420,8 @@
544 <Key Name="name" Value="thatch" /> 420 <Key Name="name" Value="thatch" />
545 <Key Name="assetType" Value="0" /> 421 <Key Name="assetType" Value="0" />
546 <Key Name="inventoryType" Value="0" /> 422 <Key Name="inventoryType" Value="0" />
547 <Key Name="currentPermissions" Value="2147483647" />
548 <Key Name="nextPermissions" Value="2147483647" />
549 <Key Name="everyonePermissions" Value="2147483647" />
550 <Key Name="basePermissions" Value="2147483647" />
551 </Section> 423 </Section>
424
552 <Section Name="water1 Texture"> 425 <Section Name="water1 Texture">
553 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001041" /> 426 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001041" />
554 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001041" /> 427 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001041" />
@@ -557,11 +430,8 @@
557 <Key Name="name" Value="water1" /> 430 <Key Name="name" Value="water1" />
558 <Key Name="assetType" Value="0" /> 431 <Key Name="assetType" Value="0" />
559 <Key Name="inventoryType" Value="0" /> 432 <Key Name="inventoryType" Value="0" />
560 <Key Name="currentPermissions" Value="2147483647" />
561 <Key Name="nextPermissions" Value="2147483647" />
562 <Key Name="everyonePermissions" Value="2147483647" />
563 <Key Name="basePermissions" Value="2147483647" />
564 </Section> 433 </Section>
434
565 <Section Name="water3 Texture"> 435 <Section Name="water3 Texture">
566 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001042" /> 436 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001042" />
567 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001042" /> 437 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001042" />
@@ -570,11 +440,8 @@
570 <Key Name="name" Value="water3" /> 440 <Key Name="name" Value="water3" />
571 <Key Name="assetType" Value="0" /> 441 <Key Name="assetType" Value="0" />
572 <Key Name="inventoryType" Value="0" /> 442 <Key Name="inventoryType" Value="0" />
573 <Key Name="currentPermissions" Value="2147483647" />
574 <Key Name="nextPermissions" Value="2147483647" />
575 <Key Name="everyonePermissions" Value="2147483647" />
576 <Key Name="basePermissions" Value="2147483647" />
577 </Section> 443 </Section>
444
578 <Section Name="wood1 Texture"> 445 <Section Name="wood1 Texture">
579 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001043" /> 446 <Key Name="inventoryID" Value="00000000-0000-2222-4444-100000001043" />
580 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001043" /> 447 <Key Name="assetID" Value="00000000-0000-2222-3333-100000001043" />
@@ -583,11 +450,8 @@
583 <Key Name="name" Value="wood1" /> 450 <Key Name="name" Value="wood1" />
584 <Key Name="assetType" Value="0" /> 451 <Key Name="assetType" Value="0" />
585 <Key Name="inventoryType" Value="0" /> 452 <Key Name="inventoryType" Value="0" />
586 <Key Name="currentPermissions" Value="2147483647" />
587 <Key Name="nextPermissions" Value="2147483647" />
588 <Key Name="everyonePermissions" Value="2147483647" />
589 <Key Name="basePermissions" Value="2147483647" />
590 </Section> 453 </Section>
454
591 <Section Name="bricks Texture"> 455 <Section Name="bricks Texture">
592 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000001"/> 456 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000001"/>
593 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000001"/> 457 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000001"/>
@@ -596,11 +460,8 @@
596 <Key Name="name" Value="bricks" /> 460 <Key Name="name" Value="bricks" />
597 <Key Name="assetType" Value="0" /> 461 <Key Name="assetType" Value="0" />
598 <Key Name="inventoryType" Value="0" /> 462 <Key Name="inventoryType" Value="0" />
599 <Key Name="currentPermissions" Value="2147483647" />
600 <Key Name="nextPermissions" Value="2147483647" />
601 <Key Name="everyonePermissions" Value="2147483647" />
602 <Key Name="basePermissions" Value="2147483647" />
603 </Section> 463 </Section>
464
604 <Section Name="granite Texture"> 465 <Section Name="granite Texture">
605 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000004"/> 466 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000004"/>
606 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000004"/> 467 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000004"/>
@@ -609,11 +470,8 @@
609 <Key Name="name" Value="granite" /> 470 <Key Name="name" Value="granite" />
610 <Key Name="assetType" Value="0" /> 471 <Key Name="assetType" Value="0" />
611 <Key Name="inventoryType" Value="0" /> 472 <Key Name="inventoryType" Value="0" />
612 <Key Name="currentPermissions" Value="2147483647" />
613 <Key Name="nextPermissions" Value="2147483647" />
614 <Key Name="everyonePermissions" Value="2147483647" />
615 <Key Name="basePermissions" Value="2147483647" />
616 </Section> 473 </Section>
474
617 <Section Name="hardwood Texture"> 475 <Section Name="hardwood Texture">
618 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000005"/> 476 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000005"/>
619 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000005"/> 477 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000005"/>
@@ -622,11 +480,8 @@
622 <Key Name="name" Value="hardwood" /> 480 <Key Name="name" Value="hardwood" />
623 <Key Name="assetType" Value="0" /> 481 <Key Name="assetType" Value="0" />
624 <Key Name="inventoryType" Value="0" /> 482 <Key Name="inventoryType" Value="0" />
625 <Key Name="currentPermissions" Value="2147483647" />
626 <Key Name="nextPermissions" Value="2147483647" />
627 <Key Name="everyonePermissions" Value="2147483647" />
628 <Key Name="basePermissions" Value="2147483647" />
629 </Section> 483 </Section>
484
630 <Section Name="rocks Texture"> 485 <Section Name="rocks Texture">
631 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000003"/> 486 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000003"/>
632 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000003"/> 487 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000003"/>
@@ -635,10 +490,6 @@
635 <Key Name="name" Value="rocks" /> 490 <Key Name="name" Value="rocks" />
636 <Key Name="assetType" Value="0" /> 491 <Key Name="assetType" Value="0" />
637 <Key Name="inventoryType" Value="0" /> 492 <Key Name="inventoryType" Value="0" />
638 <Key Name="currentPermissions" Value="2147483647" />
639 <Key Name="nextPermissions" Value="2147483647" />
640 <Key Name="everyonePermissions" Value="2147483647" />
641 <Key Name="basePermissions" Value="2147483647" />
642 </Section> 493 </Section>
643 494
644 <Section Name="Terrain Dirt"> 495 <Section Name="Terrain Dirt">
@@ -649,11 +500,8 @@
649 <Key Name="name" Value="Terrain Dirt" /> 500 <Key Name="name" Value="Terrain Dirt" />
650 <Key Name="assetType" Value="0" /> 501 <Key Name="assetType" Value="0" />
651 <Key Name="inventoryType" Value="0" /> 502 <Key Name="inventoryType" Value="0" />
652 <Key Name="currentPermissions" Value="2147483647" />
653 <Key Name="nextPermissions" Value="2147483647" />
654 <Key Name="everyonePermissions" Value="2147483647" />
655 <Key Name="basePermissions" Value="2147483647" />
656 </Section> 503 </Section>
504
657 <Section Name="Terrain Grass"> 505 <Section Name="Terrain Grass">
658 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000007"/> 506 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000007"/>
659 <Key Name="assetID" Value="abb783e6-3e93-26c0-248a-247666855da3"/> 507 <Key Name="assetID" Value="abb783e6-3e93-26c0-248a-247666855da3"/>
@@ -662,11 +510,8 @@
662 <Key Name="name" Value="Terrain Grass" /> 510 <Key Name="name" Value="Terrain Grass" />
663 <Key Name="assetType" Value="0" /> 511 <Key Name="assetType" Value="0" />
664 <Key Name="inventoryType" Value="0" /> 512 <Key Name="inventoryType" Value="0" />
665 <Key Name="currentPermissions" Value="2147483647" />
666 <Key Name="nextPermissions" Value="2147483647" />
667 <Key Name="everyonePermissions" Value="2147483647" />
668 <Key Name="basePermissions" Value="2147483647" />
669 </Section> 513 </Section>
514
670 <Section Name="Terrain Mountain"> 515 <Section Name="Terrain Mountain">
671 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000008"/> 516 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000008"/>
672 <Key Name="assetID" Value="179cdabd-398a-9b6b-1391-4dc333ba321f"/> 517 <Key Name="assetID" Value="179cdabd-398a-9b6b-1391-4dc333ba321f"/>
@@ -675,11 +520,8 @@
675 <Key Name="name" Value="Terrain Mountain" /> 520 <Key Name="name" Value="Terrain Mountain" />
676 <Key Name="assetType" Value="0" /> 521 <Key Name="assetType" Value="0" />
677 <Key Name="inventoryType" Value="0" /> 522 <Key Name="inventoryType" Value="0" />
678 <Key Name="currentPermissions" Value="2147483647" />
679 <Key Name="nextPermissions" Value="2147483647" />
680 <Key Name="everyonePermissions" Value="2147483647" />
681 <Key Name="basePermissions" Value="2147483647" />
682 </Section> 523 </Section>
524
683 <Section Name="Terrain Rock"> 525 <Section Name="Terrain Rock">
684 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000009"/> 526 <Key Name="inventoryID" Value="00000000-0000-2222-9999-000000000009"/>
685 <Key Name="assetID" Value="beb169c7-11ea-fff2-efe5-0f24dc881df2"/> 527 <Key Name="assetID" Value="beb169c7-11ea-fff2-efe5-0f24dc881df2"/>
@@ -688,10 +530,6 @@
688 <Key Name="name" Value="Terrain Rock" /> 530 <Key Name="name" Value="Terrain Rock" />
689 <Key Name="assetType" Value="0" /> 531 <Key Name="assetType" Value="0" />
690 <Key Name="inventoryType" Value="0" /> 532 <Key Name="inventoryType" Value="0" />
691 <Key Name="currentPermissions" Value="2147483647" />
692 <Key Name="nextPermissions" Value="2147483647" />
693 <Key Name="everyonePermissions" Value="2147483647" />
694 <Key Name="basePermissions" Value="2147483647" />
695 </Section> 533 </Section>
696 534
697 <Section Name="Blank Texture"> 535 <Section Name="Blank Texture">
@@ -702,10 +540,6 @@
702 <Key Name="name" Value="Blank Texture" /> 540 <Key Name="name" Value="Blank Texture" />
703 <Key Name="assetType" Value="0" /> 541 <Key Name="assetType" Value="0" />
704 <Key Name="inventoryType" Value="0" /> 542 <Key Name="inventoryType" Value="0" />
705 <Key Name="currentPermissions" Value="2147483647" />
706 <Key Name="nextPermissions" Value="2147483647" />
707 <Key Name="everyonePermissions" Value="2147483647" />
708 <Key Name="basePermissions" Value="2147483647" />
709 </Section> 543 </Section>
710 544
711 <Section Name="Default Media Texture"> 545 <Section Name="Default Media Texture">
@@ -716,10 +550,6 @@
716 <Key Name="name" Value="Default Media Texture" /> 550 <Key Name="name" Value="Default Media Texture" />
717 <Key Name="assetType" Value="0" /> 551 <Key Name="assetType" Value="0" />
718 <Key Name="inventoryType" Value="0" /> 552 <Key Name="inventoryType" Value="0" />
719 <Key Name="currentPermissions" Value="2147483647" />
720 <Key Name="nextPermissions" Value="2147483647" />
721 <Key Name="everyonePermissions" Value="2147483647" />
722 <Key Name="basePermissions" Value="2147483647" />
723 </Section> 553 </Section>
724 554
725 <Section Name="Default Transparent Texture"> 555 <Section Name="Default Transparent Texture">
@@ -730,9 +560,5 @@
730 <Key Name="name" Value="Default Transparent Texture" /> 560 <Key Name="name" Value="Default Transparent Texture" />
731 <Key Name="assetType" Value="0" /> 561 <Key Name="assetType" Value="0" />
732 <Key Name="inventoryType" Value="0" /> 562 <Key Name="inventoryType" Value="0" />
733 <Key Name="currentPermissions" Value="2147483647" />
734 <Key Name="nextPermissions" Value="2147483647" />
735 <Key Name="everyonePermissions" Value="2147483647" />
736 <Key Name="basePermissions" Value="2147483647" />
737 </Section> 563 </Section>
738</Nini> 564</Nini>