diff --git a/README.md b/README.md
index cf42aa369..7e2fad53c 100644
--- a/README.md
+++ b/README.md
@@ -101,7 +101,6 @@ Flax Visual Studio extension provides better programming workflow, C# scripts de
- ***PlatformName*/** - per-platform files
- **Binaries/** - per-platform binaries
- **Game/** - Flax Game binaries
- - **Mono/** - Mono runtime files and data
- **ThirdParty/** - prebuilt 3rd Party binaries
- **Shaders/** - shaders source code
- **ThirdParty/** - 3rd Party source code
diff --git a/Source/Editor/Cooker/Platform/Android/AndroidPlatformTools.cpp b/Source/Editor/Cooker/Platform/Android/AndroidPlatformTools.cpp
index 8e3e91b51..09f0efcde 100644
--- a/Source/Editor/Cooker/Platform/Android/AndroidPlatformTools.cpp
+++ b/Source/Editor/Cooker/Platform/Android/AndroidPlatformTools.cpp
@@ -267,7 +267,7 @@ bool AndroidPlatformTools::OnPostProcess(CookingData& data)
}
}
- // Generate Mono files hash id used to skip deploying Mono files if already extracted on device (Mono cannot access files packed into .apk via unix file access)
+ // Generate Dotnet files hash id used to skip deploying Dotnet files if already extracted on device (Dotnet cannot access files packed into .apk via unix file access)
File::WriteAllText(assetsPath / TEXT("hash.txt"), Guid::New().ToString(), Encoding::ANSI);
// TODO: expose event to inject custom gradle and manifest options or custom binaries into app
diff --git a/Source/Editor/Cooker/PlatformTools.h b/Source/Editor/Cooker/PlatformTools.h
index 488519d16..bba16415b 100644
--- a/Source/Editor/Cooker/PlatformTools.h
+++ b/Source/Editor/Cooker/PlatformTools.h
@@ -160,8 +160,6 @@ public:
AotConfig(CookingData& data)
{
Platform::GetEnvironmentVariables(EnvVars);
- EnvVars[TEXT("MONO_PATH")] = data.DataOutputPath / TEXT("Mono/lib/mono/4.5");
- AssembliesSearchDirs.Add(data.DataOutputPath / TEXT("Mono/lib/mono/4.5"));
}
};
diff --git a/Source/Editor/Cooker/Steps/DeployDataStep.cpp b/Source/Editor/Cooker/Steps/DeployDataStep.cpp
index ff3aaaee8..9187ec29b 100644
--- a/Source/Editor/Cooker/Steps/DeployDataStep.cpp
+++ b/Source/Editor/Cooker/Steps/DeployDataStep.cpp
@@ -68,7 +68,7 @@ bool DeployDataStep::Perform(CookingData& data)
if (FileSystem::DirectoryExists(srcDotnet))
{
// Use prebuilt .Net installation for that platform
- if (FileSystem::CopyDirectory(dstMono, srcDotnet, true))
+ if (FileSystem::CopyDirectory(dstDotnet, srcDotnet, true))
{
data.Error(TEXT("Failed to copy .Net runtime data files."));
return true;
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/Browsers/Compat.browser b/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/Browsers/Compat.browser
deleted file mode 100644
index dcedf7f73..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/Browsers/Compat.browser
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx b/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx
deleted file mode 100644
index f4d74bff7..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx
+++ /dev/null
@@ -1,1901 +0,0 @@
-<%--
-//
-// DefaultWsdlHelpGenerator.aspx:
-//
-// Author:
-// Lluis Sanchez Gual (lluis@ximian.com)
-//
-// (C) 2003 Ximian, Inc. http://www.ximian.com
-//
---%>
-
-<%@ Import Namespace="System.Collections" %>
-<%@ Import Namespace="System.Collections.Generic" %>
-<%@ Import Namespace="System.IO" %>
-<%@ Import Namespace="System.Xml.Serialization" %>
-<%@ Import Namespace="System.Xml" %>
-<%@ Import Namespace="System.Xml.Schema" %>
-<%@ Import Namespace="System.Web.Services" %>
-<%@ Import Namespace="System.Web.Services.Description" %>
-<%@ Import Namespace="System.Web.Services.Configuration" %>
-<%@ Import Namespace="System.Web.Configuration" %>
-<%@ Import Namespace="System" %>
-<%@ Import Namespace="System.Net" %>
-<%@ Import Namespace="System.Globalization" %>
-<%@ Import Namespace="System.Resources" %>
-<%@ Import Namespace="System.Diagnostics" %>
-<%@ Import Namespace="System.CodeDom" %>
-<%@ Import Namespace="System.CodeDom.Compiler" %>
-<%@ Import Namespace="Microsoft.CSharp" %>
-<%@ Import Namespace="Microsoft.VisualBasic" %>
-<%@ Import Namespace="System.Text" %>
-<%@ Import Namespace="System.Text.RegularExpressions" %>
-<%@ Import Namespace="System.Security.Cryptography.X509Certificates" %>
-<%@ Assembly name="System.Web.Services" %>
-<%@ Page debug="true" %>
-
-
-
-
-
- <%
- Response.Write (" ");
- %>
- <%=WebServiceName%> Web Service
-
-
-
-
-
-
-
-
-Web Service
-<%=WebServiceName%>
-
-
-
-
-
-
-
-Overview
-
-Service Description
-
-Client proxy
-
-
-
- <%#FormatBindingName(DataBinder.Eval(Container.DataItem, "Name").ToString())%>
-
-
- op=<%#GetOpName(Container.DataItem)%>&bnd=<%#DataBinder.Eval(Container.DataItem, "Binding.Name")%>"><%#GetOpName(Container.DataItem)%>
-
-
-
-
-
-
-
-
-
-<% if (CurrentPage == "main") {%>
-
-
-
- Web Service Overview
- <%=WebServiceDescription%>
-
- <% if (ProfileViolations != null && ProfileViolations.Count > 0) { %>
- Basic Profile Conformance
- This web service does not conform to WS-I Basic Profile v1.1
- <%
- Response.Write ("");
- foreach (BasicProfileViolation vio in ProfileViolations) {
- Response.Write ("" + vio.NormativeStatement + " : " + vio.Details);
- Response.Write ("");
- foreach (string ele in vio.Elements)
- Response.Write ("" + ele + " ");
- Response.Write (" ");
- Response.Write (" ");
- }
- Response.Write (" ");
- }%>
-
-<%} if (DefaultBinding == null) {%>
-This service does not contain any public web method.
-<%} else if (CurrentPage == "op") {%>
-
-
-
- <%=CurrentOperationName%>
-
- <% WriteTabs (); %>
-
-
- <% if (CurrentTab == "main") { %>
- Input Parameters
-
- <% if (InParams.Count == 0) { %>
- No input parameters
- <% } else { %>
-
-
-
-
- <%#DataBinder.Eval(Container.DataItem, "Name")%>
- <%#DataBinder.Eval(Container.DataItem, "Type")%>
-
-
-
-
- <% } %>
-
-
- <% if (OutParams.Count > 0) { %>
- Output Parameters
-
-
-
-
-
- <%#DataBinder.Eval(Container.DataItem, "Name")%>
- <%#DataBinder.Eval(Container.DataItem, "Type")%>
-
-
-
-
-
- <% } %>
-
- Remarks
-
- <%=OperationDocumentation%>
-
- Technical information
-
- Format: <%=CurrentOperationFormat%>
- Supported protocols: <%=CurrentOperationProtocols%>
- <% } %>
-
-
-
- <% if (CurrentTab == "test") {
- if (CurrentOperationSupportsTest) {%>
- Enter values for the parameters and click the 'Invoke' button to test this method:
-
-
- <% } else {%>
- The test form is not available for this operation because it has parameters with a complex structure.
- <% } %>
- <% } %>
-
-
-
- <% if (CurrentTab == "msg") { %>
-
- The following are sample SOAP requests and responses for each protocol supported by this method:
-
-
- <% if (IsOperationSupported ("Soap")) { %>
- Soap
-
- <%=GenerateOperationMessages ("Soap", true)%>
-
- <%=GenerateOperationMessages ("Soap", false)%>
-
- <% } %>
- <% if (IsOperationSupported ("HttpGet")) { %>
- HTTP Get
-
- <%=GenerateOperationMessages ("HttpGet", true)%>
-
- <%=GenerateOperationMessages ("HttpGet", false)%>
-
- <% } %>
- <% if (IsOperationSupported ("HttpPost")) { %>
- HTTP Post
-
- <%=GenerateOperationMessages ("HttpPost", true)%>
-
- <%=GenerateOperationMessages ("HttpPost", false)%>
-
- <% } %>
-
- <% } %>
-<%} else if (CurrentPage == "proxy") {%>
-
-
-
- <%=CurrentProxytName%>
- ">Download
-
-
-<%} else if (CurrentPage == "wsdl") {%>
-
- <% if (descriptions.Count > 1 || schemas.Count > 1) {%>
- The description of this web service is composed by several documents. Click on the document you want to see:
-
-
-
- <%} else {%>
- <%}%>
-
- <%=CurrentDocumentName%>
- ">Download
-
-
-
<%=GenerateDocument ()%>
-
-
-<%}%>
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/machine.config b/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/machine.config
deleted file mode 100644
index 2577c81dd..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/machine.config
+++ /dev/null
@@ -1,280 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/settings.map b/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/settings.map
deleted file mode 100644
index 9a52ccc02..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/settings.map
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/web.config b/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/web.config
deleted file mode 100644
index e1428f8c3..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/2.0/web.config
+++ /dev/null
@@ -1,154 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/Browsers/Compat.browser b/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/Browsers/Compat.browser
deleted file mode 100644
index dcedf7f73..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/Browsers/Compat.browser
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx b/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx
deleted file mode 100644
index f4d74bff7..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx
+++ /dev/null
@@ -1,1901 +0,0 @@
-<%--
-//
-// DefaultWsdlHelpGenerator.aspx:
-//
-// Author:
-// Lluis Sanchez Gual (lluis@ximian.com)
-//
-// (C) 2003 Ximian, Inc. http://www.ximian.com
-//
---%>
-
-<%@ Import Namespace="System.Collections" %>
-<%@ Import Namespace="System.Collections.Generic" %>
-<%@ Import Namespace="System.IO" %>
-<%@ Import Namespace="System.Xml.Serialization" %>
-<%@ Import Namespace="System.Xml" %>
-<%@ Import Namespace="System.Xml.Schema" %>
-<%@ Import Namespace="System.Web.Services" %>
-<%@ Import Namespace="System.Web.Services.Description" %>
-<%@ Import Namespace="System.Web.Services.Configuration" %>
-<%@ Import Namespace="System.Web.Configuration" %>
-<%@ Import Namespace="System" %>
-<%@ Import Namespace="System.Net" %>
-<%@ Import Namespace="System.Globalization" %>
-<%@ Import Namespace="System.Resources" %>
-<%@ Import Namespace="System.Diagnostics" %>
-<%@ Import Namespace="System.CodeDom" %>
-<%@ Import Namespace="System.CodeDom.Compiler" %>
-<%@ Import Namespace="Microsoft.CSharp" %>
-<%@ Import Namespace="Microsoft.VisualBasic" %>
-<%@ Import Namespace="System.Text" %>
-<%@ Import Namespace="System.Text.RegularExpressions" %>
-<%@ Import Namespace="System.Security.Cryptography.X509Certificates" %>
-<%@ Assembly name="System.Web.Services" %>
-<%@ Page debug="true" %>
-
-
-
-
-
- <%
- Response.Write (" ");
- %>
- <%=WebServiceName%> Web Service
-
-
-
-
-
-
-
-
-Web Service
-<%=WebServiceName%>
-
-
-
-
-
-
-
-Overview
-
-Service Description
-
-Client proxy
-
-
-
- <%#FormatBindingName(DataBinder.Eval(Container.DataItem, "Name").ToString())%>
-
-
- op=<%#GetOpName(Container.DataItem)%>&bnd=<%#DataBinder.Eval(Container.DataItem, "Binding.Name")%>"><%#GetOpName(Container.DataItem)%>
-
-
-
-
-
-
-
-
-
-<% if (CurrentPage == "main") {%>
-
-
-
- Web Service Overview
- <%=WebServiceDescription%>
-
- <% if (ProfileViolations != null && ProfileViolations.Count > 0) { %>
- Basic Profile Conformance
- This web service does not conform to WS-I Basic Profile v1.1
- <%
- Response.Write ("");
- foreach (BasicProfileViolation vio in ProfileViolations) {
- Response.Write ("" + vio.NormativeStatement + " : " + vio.Details);
- Response.Write ("");
- foreach (string ele in vio.Elements)
- Response.Write ("" + ele + " ");
- Response.Write (" ");
- Response.Write (" ");
- }
- Response.Write (" ");
- }%>
-
-<%} if (DefaultBinding == null) {%>
-This service does not contain any public web method.
-<%} else if (CurrentPage == "op") {%>
-
-
-
- <%=CurrentOperationName%>
-
- <% WriteTabs (); %>
-
-
- <% if (CurrentTab == "main") { %>
- Input Parameters
-
- <% if (InParams.Count == 0) { %>
- No input parameters
- <% } else { %>
-
-
-
-
- <%#DataBinder.Eval(Container.DataItem, "Name")%>
- <%#DataBinder.Eval(Container.DataItem, "Type")%>
-
-
-
-
- <% } %>
-
-
- <% if (OutParams.Count > 0) { %>
- Output Parameters
-
-
-
-
-
- <%#DataBinder.Eval(Container.DataItem, "Name")%>
- <%#DataBinder.Eval(Container.DataItem, "Type")%>
-
-
-
-
-
- <% } %>
-
- Remarks
-
- <%=OperationDocumentation%>
-
- Technical information
-
- Format: <%=CurrentOperationFormat%>
- Supported protocols: <%=CurrentOperationProtocols%>
- <% } %>
-
-
-
- <% if (CurrentTab == "test") {
- if (CurrentOperationSupportsTest) {%>
- Enter values for the parameters and click the 'Invoke' button to test this method:
-
-
- <% } else {%>
- The test form is not available for this operation because it has parameters with a complex structure.
- <% } %>
- <% } %>
-
-
-
- <% if (CurrentTab == "msg") { %>
-
- The following are sample SOAP requests and responses for each protocol supported by this method:
-
-
- <% if (IsOperationSupported ("Soap")) { %>
- Soap
-
- <%=GenerateOperationMessages ("Soap", true)%>
-
- <%=GenerateOperationMessages ("Soap", false)%>
-
- <% } %>
- <% if (IsOperationSupported ("HttpGet")) { %>
- HTTP Get
-
- <%=GenerateOperationMessages ("HttpGet", true)%>
-
- <%=GenerateOperationMessages ("HttpGet", false)%>
-
- <% } %>
- <% if (IsOperationSupported ("HttpPost")) { %>
- HTTP Post
-
- <%=GenerateOperationMessages ("HttpPost", true)%>
-
- <%=GenerateOperationMessages ("HttpPost", false)%>
-
- <% } %>
-
- <% } %>
-<%} else if (CurrentPage == "proxy") {%>
-
-
-
- <%=CurrentProxytName%>
- ">Download
-
-
-<%} else if (CurrentPage == "wsdl") {%>
-
- <% if (descriptions.Count > 1 || schemas.Count > 1) {%>
- The description of this web service is composed by several documents. Click on the document you want to see:
-
-
-
- <%} else {%>
- <%}%>
-
- <%=CurrentDocumentName%>
- ">Download
-
-
-
<%=GenerateDocument ()%>
-
-
-<%}%>
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/machine.config b/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/machine.config
deleted file mode 100644
index f3b71c43c..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/machine.config
+++ /dev/null
@@ -1,307 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/settings.map b/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/settings.map
deleted file mode 100644
index 4c53aca67..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/settings.map
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/web.config b/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/web.config
deleted file mode 100644
index 2a7dfd2ed..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.0/web.config
+++ /dev/null
@@ -1,253 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/Browsers/Compat.browser b/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/Browsers/Compat.browser
deleted file mode 100644
index dcedf7f73..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/Browsers/Compat.browser
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx b/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx
deleted file mode 100644
index f4d74bff7..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx
+++ /dev/null
@@ -1,1901 +0,0 @@
-<%--
-//
-// DefaultWsdlHelpGenerator.aspx:
-//
-// Author:
-// Lluis Sanchez Gual (lluis@ximian.com)
-//
-// (C) 2003 Ximian, Inc. http://www.ximian.com
-//
---%>
-
-<%@ Import Namespace="System.Collections" %>
-<%@ Import Namespace="System.Collections.Generic" %>
-<%@ Import Namespace="System.IO" %>
-<%@ Import Namespace="System.Xml.Serialization" %>
-<%@ Import Namespace="System.Xml" %>
-<%@ Import Namespace="System.Xml.Schema" %>
-<%@ Import Namespace="System.Web.Services" %>
-<%@ Import Namespace="System.Web.Services.Description" %>
-<%@ Import Namespace="System.Web.Services.Configuration" %>
-<%@ Import Namespace="System.Web.Configuration" %>
-<%@ Import Namespace="System" %>
-<%@ Import Namespace="System.Net" %>
-<%@ Import Namespace="System.Globalization" %>
-<%@ Import Namespace="System.Resources" %>
-<%@ Import Namespace="System.Diagnostics" %>
-<%@ Import Namespace="System.CodeDom" %>
-<%@ Import Namespace="System.CodeDom.Compiler" %>
-<%@ Import Namespace="Microsoft.CSharp" %>
-<%@ Import Namespace="Microsoft.VisualBasic" %>
-<%@ Import Namespace="System.Text" %>
-<%@ Import Namespace="System.Text.RegularExpressions" %>
-<%@ Import Namespace="System.Security.Cryptography.X509Certificates" %>
-<%@ Assembly name="System.Web.Services" %>
-<%@ Page debug="true" %>
-
-
-
-
-
- <%
- Response.Write (" ");
- %>
- <%=WebServiceName%> Web Service
-
-
-
-
-
-
-
-
-Web Service
-<%=WebServiceName%>
-
-
-
-
-
-
-
-Overview
-
-Service Description
-
-Client proxy
-
-
-
- <%#FormatBindingName(DataBinder.Eval(Container.DataItem, "Name").ToString())%>
-
-
- op=<%#GetOpName(Container.DataItem)%>&bnd=<%#DataBinder.Eval(Container.DataItem, "Binding.Name")%>"><%#GetOpName(Container.DataItem)%>
-
-
-
-
-
-
-
-
-
-<% if (CurrentPage == "main") {%>
-
-
-
- Web Service Overview
- <%=WebServiceDescription%>
-
- <% if (ProfileViolations != null && ProfileViolations.Count > 0) { %>
- Basic Profile Conformance
- This web service does not conform to WS-I Basic Profile v1.1
- <%
- Response.Write ("");
- foreach (BasicProfileViolation vio in ProfileViolations) {
- Response.Write ("" + vio.NormativeStatement + " : " + vio.Details);
- Response.Write ("");
- foreach (string ele in vio.Elements)
- Response.Write ("" + ele + " ");
- Response.Write (" ");
- Response.Write (" ");
- }
- Response.Write (" ");
- }%>
-
-<%} if (DefaultBinding == null) {%>
-This service does not contain any public web method.
-<%} else if (CurrentPage == "op") {%>
-
-
-
- <%=CurrentOperationName%>
-
- <% WriteTabs (); %>
-
-
- <% if (CurrentTab == "main") { %>
- Input Parameters
-
- <% if (InParams.Count == 0) { %>
- No input parameters
- <% } else { %>
-
-
-
-
- <%#DataBinder.Eval(Container.DataItem, "Name")%>
- <%#DataBinder.Eval(Container.DataItem, "Type")%>
-
-
-
-
- <% } %>
-
-
- <% if (OutParams.Count > 0) { %>
- Output Parameters
-
-
-
-
-
- <%#DataBinder.Eval(Container.DataItem, "Name")%>
- <%#DataBinder.Eval(Container.DataItem, "Type")%>
-
-
-
-
-
- <% } %>
-
- Remarks
-
- <%=OperationDocumentation%>
-
- Technical information
-
- Format: <%=CurrentOperationFormat%>
- Supported protocols: <%=CurrentOperationProtocols%>
- <% } %>
-
-
-
- <% if (CurrentTab == "test") {
- if (CurrentOperationSupportsTest) {%>
- Enter values for the parameters and click the 'Invoke' button to test this method:
-
-
- <% } else {%>
- The test form is not available for this operation because it has parameters with a complex structure.
- <% } %>
- <% } %>
-
-
-
- <% if (CurrentTab == "msg") { %>
-
- The following are sample SOAP requests and responses for each protocol supported by this method:
-
-
- <% if (IsOperationSupported ("Soap")) { %>
- Soap
-
- <%=GenerateOperationMessages ("Soap", true)%>
-
- <%=GenerateOperationMessages ("Soap", false)%>
-
- <% } %>
- <% if (IsOperationSupported ("HttpGet")) { %>
- HTTP Get
-
- <%=GenerateOperationMessages ("HttpGet", true)%>
-
- <%=GenerateOperationMessages ("HttpGet", false)%>
-
- <% } %>
- <% if (IsOperationSupported ("HttpPost")) { %>
- HTTP Post
-
- <%=GenerateOperationMessages ("HttpPost", true)%>
-
- <%=GenerateOperationMessages ("HttpPost", false)%>
-
- <% } %>
-
- <% } %>
-<%} else if (CurrentPage == "proxy") {%>
-
-
-
- <%=CurrentProxytName%>
- ">Download
-
-
-<%} else if (CurrentPage == "wsdl") {%>
-
- <% if (descriptions.Count > 1 || schemas.Count > 1) {%>
- The description of this web service is composed by several documents. Click on the document you want to see:
-
-
-
- <%} else {%>
- <%}%>
-
- <%=CurrentDocumentName%>
- ">Download
-
-
-
<%=GenerateDocument ()%>
-
-
-<%}%>
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/machine.config b/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/machine.config
deleted file mode 100644
index 455709536..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/machine.config
+++ /dev/null
@@ -1,310 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/settings.map b/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/settings.map
deleted file mode 100644
index 4c53aca67..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/settings.map
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/web.config b/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/web.config
deleted file mode 100644
index 324c529f0..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/4.5/web.config
+++ /dev/null
@@ -1,253 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/browscap.ini b/Source/Platforms/Linux/Binaries/Mono/etc/mono/browscap.ini
deleted file mode 100644
index 1267e1deb..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/browscap.ini
+++ /dev/null
@@ -1,16979 +0,0 @@
-;;; Provided courtesy of http://browsers.garykeith.com
-;;; Created on Wednesday, June 17, 2009 at 6:30 AM GMT
-
-[GJK_Browscap_Version]
-Version=4476
-Released=Wed, 17 Jun 2009 06:30:21 -0000
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DefaultProperties
-
-[DefaultProperties]
-Browser=DefaultProperties
-Version=0
-MajorVer=0
-MinorVer=0
-Platform=unknown
-Alpha=false
-Beta=false
-Win16=false
-Win32=false
-Win64=false
-Frames=false
-IFrames=false
-Tables=false
-Cookies=false
-BackgroundSounds=false
-CDF=false
-VBScript=false
-JavaApplets=false
-JavaScript=false
-ActiveXControls=false
-isBanned=false
-isMobileDevice=false
-isSyndicationReader=false
-Crawler=false
-CssVersion=0
-supportsCSS=false
-AOL=false
-aolVersion=0
-ECMAScriptVersion=0.0
-W3CDOMVersion=0.0
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ask
-
-[Ask]
-Parent=DefaultProperties
-Browser=Ask
-Frames=true
-Tables=true
-Crawler=true
-
-[Mozilla/?.0 (compatible; Ask Jeeves/Teoma*)]
-Parent=Ask
-Browser=Teoma
-
-[Mozilla/2.0 (compatible; Ask Jeeves)]
-Parent=Ask
-Browser=AskJeeves
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Baidu
-
-[Baidu]
-Parent=DefaultProperties
-Browser=Baidu
-Frames=true
-Tables=true
-Crawler=true
-
-[BaiduImageSpider*]
-Parent=Baidu
-Browser=BaiduImageSpider
-
-[Baiduspider*]
-Parent=Baidu
-Browser=BaiDu
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google
-
-[Google]
-Parent=DefaultProperties
-Browser=Google
-Frames=true
-IFrames=true
-Tables=true
-JavaScript=true
-Crawler=true
-
-[* (compatible; Googlebot-Mobile/2.1; *http://www.google.com/bot.html)]
-Parent=Google
-Browser=Googlebot-Mobile
-Frames=false
-IFrames=false
-Tables=false
-
-[*Google Wireless Transcoder*]
-Parent=Google
-Browser=Google Wireless Transcoder
-
-[AdsBot-Google (?http://www.google.com/adsbot.html)]
-Parent=Google
-Browser=AdsBot-Google
-
-[Feedfetcher-Google-iGoogleGadgets;*]
-Parent=Google
-Browser=iGoogleGadgets
-isBanned=true
-isSyndicationReader=true
-
-[Feedfetcher-Google;*]
-Parent=Google
-Browser=Feedfetcher-Google
-isBanned=true
-isSyndicationReader=true
-
-[Google OpenSocial agent (http://www.google.com/feedfetcher.html)]
-Parent=Google
-Browser=Google OpenSocial
-
-[Google-Site-Verification/1.0]
-Parent=Google
-Browser=Google-Site-Verification
-
-[Google-Sitemaps/*]
-Parent=Google
-Browser=Google-Sitemaps
-
-[Googlebot-Image/*]
-Parent=Google
-Browser=Googlebot-Image
-CDF=true
-
-[googlebot-urlconsole]
-Parent=Google
-Browser=googlebot-urlconsole
-
-[Googlebot-Video/1.0]
-Parent=Google
-Browser=Google-Video
-
-[Googlebot/2.1 (?http://www.google.com/bot.html)]
-Parent=Google
-Browser=Googlebot
-
-[Googlebot/2.1 (?http://www.googlebot.com/bot.html)]
-Parent=Google
-Browser=Googlebot
-
-[Googlebot/Test*]
-Parent=Google
-Browser=Googlebot/Test
-
-[gsa-crawler*]
-Parent=Google
-Browser=Google Search Appliance
-isBanned=true
-
-[Mediapartners-Google*]
-Parent=Google
-Browser=Mediapartners-Google
-
-[Mozilla/4.0 (compatible; Google Desktop)]
-Parent=Google
-Browser=Google Desktop
-
-[Mozilla/4.0 (compatible; GoogleToolbar*)]
-Parent=Google
-Browser=Google Toolbar
-isBanned=true
-
-[Mozilla/5.0 (compatible; Google Keyword Tool;*)]
-Parent=Google
-Browser=Google Keyword Tool
-
-[Mozilla/5.0 (compatible; Googlebot/2.1; ?http://www.google.com/bot.html)]
-Parent=Google
-Browser=Google Webmaster Tools
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Inktomi
-
-[Inktomi]
-Parent=DefaultProperties
-Browser=Inktomi
-Frames=true
-Tables=true
-Crawler=true
-
-[* (compatible;YahooSeeker/M1A1-R2D2; *)]
-Parent=Inktomi
-Browser=YahooSeeker-Mobile
-Frames=false
-Tables=false
-
-[Mozilla/4.0]
-Parent=Inktomi
-
-[Mozilla/4.0 (compatible; MSIE 5.0; Windows NT)]
-Parent=Inktomi
-Win32=true
-
-[Mozilla/4.0 (compatible; Yahoo Japan; for robot study; kasugiya)]
-Parent=Inktomi
-Browser=Yahoo! RobotStudy
-isBanned=true
-
-[Mozilla/5.0 (compatible; BMC/1.0 (Y!J-AGENT))]
-Parent=Inktomi
-Browser=Y!J-AGENT/BMC
-
-[Mozilla/5.0 (compatible; BMF/1.0 (Y!J-AGENT))]
-Parent=Inktomi
-Browser=Y!J-AGENT/BMF
-
-[Mozilla/5.0 (compatible; BMI/1.0 (Y!J-AGENT; 1.0))]
-Parent=Inktomi
-Browser=Y!J-AGENT/BMI
-
-[Mozilla/5.0 (compatible; Yahoo! DE Slurp; http://help.yahoo.com/help/us/ysearch/slurp)]
-Parent=Inktomi
-Browser=Yahoo! Directory Engine
-
-[Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)]
-Parent=Inktomi
-Browser=Yahoo! Slurp China
-
-[Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)]
-Parent=Inktomi
-Browser=Yahoo! Slurp
-Version=3.0
-MajorVer=3
-MinorVer=0
-
-[Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)]
-Parent=Inktomi
-Browser=Yahoo! Slurp
-
-[Mozilla/5.0 (compatible; Yahoo! Verifier/1.1)]
-Parent=Inktomi
-Browser=Yahoo! Verifier
-Version=1.1
-MajorVer=1
-MinorVer=1
-
-[Mozilla/5.0 (Slurp/cat; slurp@inktomi.com; http://www.inktomi.com/slurp.html)]
-Parent=Inktomi
-Browser=Slurp/cat
-
-[Mozilla/5.0 (Slurp/si; slurp@inktomi.com; http://www.inktomi.com/slurp.html)]
-Parent=Inktomi
-
-[Mozilla/5.0 (Yahoo-MMCrawler/4.0; mailto:vertical-crawl-support@yahoo-inc.com)]
-Parent=Inktomi
-Browser=Yahoo-MMCrawler
-Version=4.0
-MajorVer=4
-MinorVer=0
-
-[Scooter/*]
-Parent=Inktomi
-Browser=Scooter
-
-[Scooter/3.3Y!CrawlX]
-Parent=Inktomi
-Browser=Scooter/3.3Y!CrawlX
-Version=3.3
-MajorVer=3
-MinorVer=3
-
-[slurp]
-Parent=Inktomi
-Browser=slurp
-
-[Y!J-BSC/1.0*]
-Parent=Inktomi
-Browser=Y!J-BSC
-Version=1.0
-MajorVer=1
-MinorVer=0
-isBanned=true
-
-[Y!J-SRD/1.0]
-Parent=Inktomi
-Browser=Y!J-SRD
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Yahoo Mindset]
-Parent=Inktomi
-Browser=Yahoo Mindset
-
-[Yahoo Pipes*]
-Parent=Inktomi
-Browser=Yahoo Pipes
-
-[Yahoo! Mindset]
-Parent=Inktomi
-Browser=Yahoo! Mindset
-
-[Yahoo! Slurp/Site Explorer]
-Parent=Inktomi
-Browser=Yahoo! Site Explorer
-
-[Yahoo-Blogs/*]
-Parent=Inktomi
-Browser=Yahoo-Blogs
-
-[Yahoo-MMAudVid*]
-Parent=Inktomi
-Browser=Yahoo-MMAudVid
-
-[Yahoo-MMCrawler*]
-Parent=Inktomi
-Browser=Yahoo-MMCrawler
-isBanned=true
-
-[YahooFeedSeeker*]
-Parent=Inktomi
-Browser=YahooFeedSeeker
-isSyndicationReader=true
-Crawler=false
-
-[YahooSeeker/*]
-Parent=Inktomi
-Browser=YahooSeeker
-isMobileDevice=true
-
-[YahooSeeker/CafeKelsa (compatible; Konqueror/3.2; FreeBSD*) (KHTML, like Gecko)]
-Parent=Inktomi
-Browser=YahooSeeker/CafeKelsa
-
-[YahooSeeker/CafeKelsa-dev (compatible; Konqueror/3.2; FreeBSD*) (KHTML, like Gecko)]
-Parent=Inktomi
-
-[YahooVideoSearch*]
-Parent=Inktomi
-Browser=YahooVideoSearch
-
-[YahooYSMcm*]
-Parent=Inktomi
-Browser=YahooYSMcm
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN
-
-[MSN]
-Parent=DefaultProperties
-Browser=MSN
-Frames=true
-Tables=true
-Crawler=true
-
-[adidxbot/1.1 (?http://search.msn.com/msnbot.htm)]
-Parent=MSN
-Browser=adidxbot
-
-[librabot/1.0 (*)]
-Parent=MSN
-Browser=librabot
-
-[llssbot/1.0]
-Parent=MSN
-Browser=llssbot
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[MSMOBOT/1.1*]
-Parent=MSN
-Browser=msnbot-mobile
-Version=1.1
-MajorVer=1
-MinorVer=1
-
-[MSNBot-Academic/1.0*]
-Parent=MSN
-Browser=MSNBot-Academic
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[msnbot-media/1.0*]
-Parent=MSN
-Browser=msnbot-media
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[msnbot-media/1.1*]
-Parent=MSN
-Browser=msnbot-media
-Version=1.1
-MajorVer=1
-MinorVer=1
-
-[MSNBot-News/1.0*]
-Parent=MSN
-Browser=MSNBot-News
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[MSNBot-NewsBlogs/1.0*]
-Parent=MSN
-Browser=MSNBot-NewsBlogs
-Version=1
-MajorVer=1
-MinorVer=0
-
-[msnbot-products]
-Parent=MSN
-Browser=msnbot-products
-
-[msnbot-webmaster/1.0 (*http://search.msn.com/msnbot.htm)]
-Parent=MSN
-Browser=msnbot-webmaster tools
-
-[msnbot/1.0*]
-Parent=MSN
-Browser=msnbot
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[msnbot/1.1*]
-Parent=MSN
-Browser=msnbot
-Version=1.1
-MajorVer=1
-MinorVer=1
-
-[msnbot/2.0b*]
-Parent=MSN
-Version=2.0
-MajorVer=2
-MinorVer=0
-Beta=true
-
-[MSR-ISRCCrawler]
-Parent=MSN
-Browser=MSR-ISRCCrawler
-
-[renlifangbot/1.0 (?http://search.msn.com/msnbot.htm)]
-Parent=MSN
-Browser=renlifangbot
-
-[T-Mobile Dash Mozilla/4.0 (*) MSNBOT-MOBILE/1.1 (*)]
-Parent=MSN
-Browser=msnbot-mobile
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo
-
-[Yahoo]
-Parent=DefaultProperties
-Browser=Yahoo
-Frames=true
-Tables=true
-Crawler=true
-
-[Mozilla/4.0 (compatible; Y!J; for robot study*)]
-Parent=Yahoo
-Browser=Y!J
-
-[Mozilla/5.0 (Yahoo-Test/4.0*)]
-Parent=Yahoo
-Browser=Yahoo-Test
-Version=4.0
-MajorVer=4
-MinorVer=0
-
-[mp3Spider cn-search-devel at yahoo-inc dot com]
-Parent=Yahoo
-Browser=Yahoo! Media
-isBanned=true
-
-[My Browser]
-Parent=Yahoo
-Browser=Yahoo! My Browser
-
-[Y!OASIS/*]
-Parent=Yahoo
-Browser=Y!OASIS
-isBanned=true
-
-[YahooYSMcm/2.0.0]
-Parent=Yahoo
-Browser=YahooYSMcm
-Version=2.0
-MajorVer=2
-MinorVer=0
-isBanned=true
-
-[YRL_ODP_CRAWLER]
-Parent=Yahoo
-Browser=YRL_ODP_CRAWLER
-isBanned=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yandex
-
-[Yandex]
-Parent=DefaultProperties
-Browser=Yandex
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-Crawler=true
-
-[Mozilla/4.0 (compatible; MSIE 5.0; YANDEX)]
-Parent=Yandex
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9) Gecko VisualParser/3.0]
-Parent=Yandex
-Browser=VisualParser
-isBanned=true
-
-[YaDirectBot/*]
-Parent=Yandex
-Browser=YaDirectBot
-
-[Yandex/*]
-Parent=Yandex
-
-[YandexBlog/*]
-Parent=Yandex
-Browser=YandexBlog
-isSyndicationReader=true
-
-[YandexSomething/*]
-Parent=Yandex
-Browser=YandexSomething
-isSyndicationReader=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Best of the Web
-
-[Best of the Web]
-Parent=DefaultProperties
-Browser=Best of the Web
-Frames=true
-Tables=true
-
-[Mozilla/4.0 (compatible; BOTW Feed Grabber; *http://botw.org)]
-Parent=Best of the Web
-Browser=BOTW Feed Grabber
-isSyndicationReader=true
-Crawler=false
-
-[Mozilla/4.0 (compatible; BOTW Spider; *http://botw.org)]
-Parent=Best of the Web
-Browser=BOTW Spider
-isBanned=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Boitho
-
-[Boitho]
-Parent=DefaultProperties
-Browser=Boitho
-Frames=true
-Tables=true
-Crawler=true
-
-[boitho.com-dc/*]
-Parent=Boitho
-Browser=boitho.com-dc
-
-[boitho.com-robot/*]
-Parent=Boitho
-Browser=boitho.com-robot
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Convera
-
-[Convera]
-Parent=DefaultProperties
-Browser=Convera
-Frames=true
-Tables=true
-Crawler=true
-
-[ConveraCrawler/*]
-Parent=Convera
-Browser=ConveraCrawler
-
-[ConveraMultiMediaCrawler/0.1*]
-Parent=Convera
-Browser=ConveraMultiMediaCrawler
-Version=0.1
-MajorVer=0
-MinorVer=1
-
-[CrawlConvera*]
-Parent=Convera
-Browser=CrawlConvera
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DotBot
-
-[DotBot]
-Parent=DefaultProperties
-Browser=DotBot
-Frames=true
-Tables=true
-isBanned=true
-Crawler=true
-
-[DotBot/* (http://www.dotnetdotcom.org/*)]
-Parent=DotBot
-
-[Mozilla/5.0 (compatible; DotBot/*; http://www.dotnetdotcom.org/*)]
-Parent=DotBot
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Entireweb
-
-[Entireweb]
-Parent=DefaultProperties
-Browser=Entireweb
-Frames=true
-IFrames=true
-Tables=true
-isBanned=true
-Crawler=true
-
-[Mozilla/4.0 (compatible; SpeedySpider; www.entireweb.com)]
-Parent=Entireweb
-
-[Speedy Spider (*Beta/*)]
-Parent=Entireweb
-
-[Speedy?Spider?(http://www.entireweb.com*)]
-Parent=Entireweb
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Envolk
-
-[Envolk]
-Parent=DefaultProperties
-Browser=Envolk
-Frames=true
-IFrames=true
-Tables=true
-isBanned=true
-Crawler=true
-
-[envolk/* (?http://www.envolk.com/envolk*)]
-Parent=Envolk
-
-[envolk?ITS?spider/* (?http://www.envolk.com/envolk*)]
-Parent=Envolk
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Exalead
-
-[Exalead]
-Parent=DefaultProperties
-Browser=Exalead
-Frames=true
-Tables=true
-isBanned=true
-Crawler=true
-
-[Exabot-Images/1.0]
-Parent=Exalead
-Browser=Exabot-Images
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Exabot-Test/*]
-Parent=Exalead
-Browser=Exabot-Test
-
-[Exabot/2.0]
-Parent=Exalead
-Browser=Exabot
-
-[Exabot/3.0]
-Parent=Exalead
-Browser=Exabot
-Version=3.0
-MajorVer=3
-MinorVer=0
-Platform=Liberate
-
-[Exalead NG/*]
-Parent=Exalead
-Browser=Exalead NG
-isBanned=true
-
-[Mozilla/5.0 (compatible; Exabot-Images/3.0;*)]
-Parent=Exalead
-Browser=Exabot-Images
-
-[Mozilla/5.0 (compatible; Exabot/3.0 (BiggerBetter/tests);*)]
-Parent=Exalead
-Browser=Exabot/BiggerBetter/tests
-
-[Mozilla/5.0 (compatible; Exabot/3.0;*)]
-Parent=Exalead
-Browser=Exabot
-isBanned=false
-
-[Mozilla/5.0 (compatible; NGBot/*)]
-Parent=Exalead
-
-[ng/*]
-Parent=Exalead
-Browser=Exalead Previewer
-Version=1.0
-MajorVer=1
-MinorVer=0
-isBanned=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fast/AllTheWeb
-
-[Fast/AllTheWeb]
-Parent=DefaultProperties
-Browser=Fast/AllTheWeb
-Alpha=true
-Beta=true
-Win16=true
-Win32=true
-Win64=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-isBanned=true
-isMobileDevice=true
-isSyndicationReader=true
-Crawler=true
-
-[*FAST Enterprise Crawler*]
-Parent=Fast/AllTheWeb
-Browser=FAST Enterprise Crawler
-
-[FAST Data Search Document Retriever/4.0*]
-Parent=Fast/AllTheWeb
-Browser=FAST Data Search Document Retriever
-
-[FAST MetaWeb Crawler (helpdesk at fastsearch dot com)]
-Parent=Fast/AllTheWeb
-Browser=FAST MetaWeb Crawler
-
-[Fast PartnerSite Crawler*]
-Parent=Fast/AllTheWeb
-Browser=FAST PartnerSite
-
-[FAST-WebCrawler/*]
-Parent=Fast/AllTheWeb
-Browser=FAST-WebCrawler
-
-[FAST-WebCrawler/*/FirstPage*]
-Parent=Fast/AllTheWeb
-Browser=FAST-WebCrawler/FirstPage
-
-[FAST-WebCrawler/*/Fresh*]
-Parent=Fast/AllTheWeb
-Browser=FAST-WebCrawler/Fresh
-
-[FAST-WebCrawler/*/PartnerSite*]
-Parent=Fast/AllTheWeb
-Browser=FAST PartnerSite
-
-[FAST-WebCrawler/*?Multimedia*]
-Parent=Fast/AllTheWeb
-Browser=FAST-WebCrawler/Multimedia
-
-[FastSearch Web Crawler for*]
-Parent=Fast/AllTheWeb
-Browser=FastSearch Web Crawler
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Gigabot
-
-[Gigabot]
-Parent=DefaultProperties
-Browser=Gigabot
-Frames=true
-IFrames=true
-Tables=true
-Crawler=true
-
-[Gigabot*]
-Parent=Gigabot
-
-[GigabotSiteSearch/*]
-Parent=Gigabot
-Browser=GigabotSiteSearch
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ilse
-
-[Ilse]
-Parent=DefaultProperties
-Browser=Ilse
-Frames=true
-Tables=true
-Crawler=true
-
-[IlseBot/*]
-Parent=Ilse
-
-[INGRID/?.0*]
-Parent=Ilse
-Browser=Ilse
-
-[Mozilla/3.0 (INGRID/*]
-Parent=Ilse
-Browser=Ilse
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iVia Project
-
-[iVia Project]
-Parent=DefaultProperties
-Browser=iVia Project
-Frames=true
-IFrames=true
-Tables=true
-Crawler=true
-
-[DataFountains/DMOZ Downloader*]
-Parent=iVia Project
-Browser=DataFountains/DMOZ Downloader
-isBanned=true
-
-[DataFountains/DMOZ Feature Vector Corpus Creator*]
-Parent=iVia Project
-Browser=DataFountains/DMOZ Feature Vector Corpus
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Jayde Online
-
-[Jayde Online]
-Parent=DefaultProperties
-Browser=Jayde Online
-Frames=true
-Tables=true
-Crawler=true
-
-[ExactSeek Crawler/*]
-Parent=Jayde Online
-Browser=ExactSeek Crawler
-
-[exactseek-pagereaper-* (crawler@exactseek.com)]
-Parent=Jayde Online
-Browser=exactseek-pagereaper
-isBanned=true
-
-[exactseek.com]
-Parent=Jayde Online
-Browser=exactseek.com
-
-[Jayde Crawler*]
-Parent=Jayde Online
-Browser=Jayde Crawler
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycos
-
-[Lycos]
-Parent=DefaultProperties
-Browser=Lycos
-Frames=true
-Tables=true
-Crawler=true
-
-[Lycos*]
-Parent=Lycos
-Browser=Lycos
-
-[Lycos-Proxy]
-Parent=Lycos
-Browser=Lycos-Proxy
-
-[Lycos-Spider_(modspider)]
-Parent=Lycos
-Browser=Lycos-Spider_(modspider)
-
-[Lycos-Spider_(T-Rex)]
-Parent=Lycos
-Browser=Lycos-Spider_(T-Rex)
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Naver
-
-[Naver]
-Parent=DefaultProperties
-Browser=Naver
-isBanned=true
-Crawler=true
-
-[Cowbot-* (NHN Corp*naver.com)]
-Parent=Naver
-Browser=Naver Cowbot
-
-[Mozilla/4.0 (compatible; NaverBot/*; *)]
-Parent=Naver
-
-[Mozilla/4.0 (compatible; NaverBot/*; nhnbot@naver.com)]
-Parent=Naver
-Browser=Naver NaverBot
-
-[NaverBot-* (NHN Corp*naver.com)]
-Parent=Naver
-Browser=Naver NHN Corp
-
-[Yeti/*]
-Parent=Naver
-Browser=Yeti
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Snap
-
-[Snap]
-Parent=DefaultProperties
-Browser=Snap
-isBanned=true
-Crawler=true
-
-[Mozilla/5.0 (SnapPreviewBot) Gecko/* Firefox/*]
-Parent=Snap
-
-[Snapbot/*]
-Parent=Snap
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sogou
-
-[Sogou]
-Parent=DefaultProperties
-Browser=Sogou
-Frames=true
-Tables=true
-isBanned=true
-Crawler=true
-
-[shaboyi spider]
-Parent=Sogou
-Browser=Sogou/Shaboyi Spider
-
-[Sogou develop spider/*]
-Parent=Sogou
-Browser=Sogou Develop Spider
-
-[Sogou head spider*]
-Parent=Sogou
-Browser=Sogou/HEAD Spider
-
-[sogou js robot(*)]
-Parent=Sogou
-
-[Sogou Orion spider/*]
-Parent=Sogou
-Browser=Sogou Orion spider
-
-[Sogou Pic Agent]
-Parent=Sogou
-Browser=Sogou/Image Crawler
-
-[Sogou Pic Spider]
-Parent=Sogou
-Browser=Sogou Pic Spider
-
-[Sogou Push Spider/*]
-Parent=Sogou
-Browser=Sogou Push Spider
-
-[sogou spider]
-Parent=Sogou
-Browser=Sogou/Spider
-
-[sogou web spider*]
-Parent=Sogou
-Browser=sogou web spider
-
-[Sogou-Test-Spider/*]
-Parent=Sogou
-Browser=Sogou-Test-Spider
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YodaoBot
-
-[YodaoBot]
-Parent=DefaultProperties
-Browser=YodaoBot
-Frames=true
-IFrames=true
-Tables=true
-isBanned=true
-Crawler=true
-
-[Mozilla/5.0 (compatible; YodaoBot/1.*)]
-Parent=YodaoBot
-
-[Mozilla/5.0 (compatible;YodaoBot-Image/1.*)]
-Parent=YodaoBot
-Browser=YodaoBot-Image
-
-[WAP_Browser/5.0 (compatible; YodaoBot/1.*)]
-Parent=YodaoBot
-
-[YodaoBot/1.* (*)]
-Parent=YodaoBot
-
-[Best Whois (http://www.bestwhois.net/)]
-Parent=DNS Tools
-Browser=Best Whois
-
-[DNSGroup/*]
-Parent=DNS Tools
-Browser=DNS Group Crawler
-
-[NG-Search/*]
-Parent=Exalead
-Browser=NG-SearchBot
-
-[TouchStone]
-Parent=Feeds Syndicators
-Browser=TouchStone
-isSyndicationReader=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; General Crawlers
-
-[General Crawlers]
-Parent=DefaultProperties
-Browser=General Crawlers
-Crawler=true
-
-[A .NET Web Crawler]
-Parent=General Crawlers
-isBanned=true
-
-[BabalooSpider/1.*]
-Parent=General Crawlers
-Browser=BabalooSpider
-
-[BilgiBot/*]
-Parent=General Crawlers
-Browser=BilgiBot
-isBanned=true
-
-[bot/* (bot; *bot@bot.bot)]
-Parent=General Crawlers
-Browser=bot
-isBanned=true
-
-[CyberPatrol*]
-Parent=General Crawlers
-Browser=CyberPatrol
-isBanned=true
-
-[Cynthia 1.0]
-Parent=General Crawlers
-Browser=Cynthia
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[ddetailsbot (http://www.displaydetails.com)]
-Parent=General Crawlers
-Browser=ddetailsbot
-
-[DomainCrawler/1.0 (info@domaincrawler.com; http://www.domaincrawler.com/domains/view/*)]
-Parent=General Crawlers
-Browser=DomainCrawler
-
-[DomainsBotBot/1.*]
-Parent=General Crawlers
-Browser=DomainsBotBot
-isBanned=true
-
-[DomainsDB.net MetaCrawler*]
-Parent=General Crawlers
-Browser=DomainsDB
-
-[Drupal (*)]
-Parent=General Crawlers
-Browser=Drupal
-
-[Dumbot (version *)*]
-Parent=General Crawlers
-Browser=Dumbfind
-
-[EuripBot/*]
-Parent=General Crawlers
-Browser=Europe Internet Portal
-
-[eventax/*]
-Parent=General Crawlers
-Browser=eventax
-
-[FANGCrawl/*]
-Parent=General Crawlers
-Browser=Safe-t.net Web Filtering Service
-isBanned=true
-
-[favorstarbot/*]
-Parent=General Crawlers
-Browser=favorstarbot
-isBanned=true
-
-[FollowSite.com (*)]
-Parent=General Crawlers
-Browser=FollowSite
-isBanned=true
-
-[Gaisbot*]
-Parent=General Crawlers
-Browser=Gaisbot
-
-[Healthbot/Health_and_Longevity_Project_(HealthHaven.com) ]
-Parent=General Crawlers
-Browser=Healthbot
-isBanned=true
-
-[hitcrawler_0.*]
-Parent=General Crawlers
-Browser=hitcrawler
-isBanned=true
-
-[htdig/*]
-Parent=General Crawlers
-Browser=ht://Dig
-
-[http://hilfe.acont.de/bot.html ACONTBOT]
-Parent=General Crawlers
-Browser=ACONTBOT
-isBanned=true
-
-[JetBrains*]
-Parent=General Crawlers
-Browser=Omea Pro
-
-[KakleBot - www.kakle.com/0.1]
-Parent=General Crawlers
-Browser=KakleBot
-
-[KBeeBot/0.*]
-Parent=General Crawlers
-Browser=KBeeBot
-isBanned=true
-
-[Keyword Density/*]
-Parent=General Crawlers
-Browser=Keyword Density
-
-[LetsCrawl.com/1.0*]
-Parent=General Crawlers
-Browser=LetsCrawl.com
-isBanned=true
-
-[Lincoln State Web Browser]
-Parent=General Crawlers
-Browser=Lincoln State Web Browser
-isBanned=true
-
-[Links4US-Crawler,*]
-Parent=General Crawlers
-Browser=Links4US-Crawler
-isBanned=true
-
-[Lorkyll *.* -- lorkyll@444.net]
-Parent=General Crawlers
-Browser=Lorkyll
-isBanned=true
-
-[Lsearch/sondeur]
-Parent=General Crawlers
-Browser=Lsearch/sondeur
-isBanned=true
-
-[LucidMedia ClickSense/4.?]
-Parent=General Crawlers
-Browser=LucidMedia-ClickSense
-isBanned=true
-
-[MapoftheInternet.com?(?http://MapoftheInternet.com)]
-Parent=General Crawlers
-Browser=MapoftheInternet
-isBanned=true
-
-[Marvin v0.3]
-Parent=General Crawlers
-Browser=MedHunt
-Version=0.3
-MajorVer=0
-MinorVer=3
-
-[masidani_bot_v0.6*]
-Parent=General Crawlers
-Browser=masidani_bot
-
-[Metaspinner/0.01 (Metaspinner; http://www.meta-spinner.de/; support@meta-spinner.de/)]
-Parent=General Crawlers
-Browser=Metaspinner/0.01
-Version=0.01
-MajorVer=0
-MinorVer=01
-
-[metatagsdir/*]
-Parent=General Crawlers
-Browser=metatagsdir
-isBanned=true
-
-[Microsoft Windows Network Diagnostics]
-Parent=General Crawlers
-Browser=Microsoft Windows Network Diagnostics
-isBanned=true
-
-[Miva (AlgoFeedback@miva.com)]
-Parent=General Crawlers
-Browser=Miva
-
-[moget/*]
-Parent=General Crawlers
-Browser=Goo
-
-[Mozdex/0.7.2*]
-Parent=General Crawlers
-Browser=Mozdex
-
-[Mozilla Compatible (MS IE 3.01 WinNT)]
-Parent=General Crawlers
-isBanned=true
-
-[Mozilla/* (compatible; WebCapture*)]
-Parent=General Crawlers
-Browser=WebCapture
-
-[Mozilla/4.0 (compatible; DepSpid/*)]
-Parent=General Crawlers
-Browser=DepSpid
-
-[Mozilla/4.0 (compatible; MSIE *; Windows NT *; SV1)]
-Parent=General Crawlers
-Browser=AVG
-
-[Mozilla/4.0 (compatible; MSIE 4.01; Vonna.com b o t)]
-Parent=General Crawlers
-Browser=Vonna.com
-isBanned=true
-
-[Mozilla/4.0 (compatible; MSIE 4.01; Windows95)]
-Parent=General Crawlers
-Win32=true
-
-[Mozilla/4.0 (compatible; MSIE 4.5; Windows 98; )]
-Parent=General Crawlers
-Win32=true
-
-[Mozilla/4.0 (compatible; MyFamilyBot/*)]
-Parent=General Crawlers
-Browser=MyFamilyBot
-
-[Mozilla/4.0 (compatible; N-Stealth)]
-Parent=General Crawlers
-Browser=N-Stealth
-
-[Mozilla/4.0 (compatible; Scumbot/*; Linux/*)]
-Parent=General Crawlers
-isBanned=true
-
-[Mozilla/4.0 (compatible; Spider; Linux)]
-Parent=General Crawlers
-isBanned=true
-
-[Mozilla/4.0 (compatible; Win32)]
-Parent=General Crawlers
-Browser=Unknown Crawler
-isBanned=true
-
-[Mozilla/4.1]
-Parent=General Crawlers
-isBanned=true
-
-[Mozilla/4.5]
-Parent=General Crawlers
-isBanned=true
-
-[Mozilla/5.0 (*http://gnomit.com/) Gecko/* Gnomit/1.0]
-Parent=General Crawlers
-Browser=Gnomit
-isBanned=true
-
-[Mozilla/5.0 (compatible; AboutUsBot/*)]
-Parent=General Crawlers
-Browser=AboutUsBot
-isBanned=true
-
-[Mozilla/5.0 (compatible; BuzzRankingBot/*)]
-Parent=General Crawlers
-Browser=BuzzRankingBot
-isBanned=true
-
-[Mozilla/5.0 (compatible; Diffbot/0.1; http://www.diffbot.com)]
-Parent=General Crawlers
-Browser=Diffbot
-
-[Mozilla/5.0 (compatible; FirstSearchBot/1.0; *)]
-Parent=General Crawlers
-Browser=FirstSearchBot
-
-[mozilla/5.0 (compatible; genevabot http://www.healthdash.com)]
-Parent=General Crawlers
-Browser=Healthdash
-
-[Mozilla/5.0 (compatible; JadynAveBot; *http://www.jadynave.com/robot*]
-Parent=General Crawlers
-Browser=JadynAveBot
-isBanned=true
-
-[Mozilla/5.0 (compatible; Kyluka crawl; http://www.kyluka.com/crawl.html; crawl@kyluka.com)]
-Parent=General Crawlers
-Browser=Kyluka
-
-[Mozilla/5.0 (compatible; MJ12bot/v1.2.*; http://www.majestic12.co.uk/bot.php*)]
-Parent=General Crawlers
-Browser=MJ12bot
-Version=1.2
-MajorVer=1
-MinorVer=2
-
-[Mozilla/5.0 (compatible; MSIE 7.0 ?http://www.europarchive.org)]
-Parent=General Crawlers
-Browser=Europe Web Archive
-
-[Mozilla/5.0 (compatible; Seznam screenshot-generator 2.0;*)]
-Parent=General Crawlers
-Browser=Seznam screenshot-generator
-isBanned=true
-
-[Mozilla/5.0 (compatible; Twingly Recon; http://www.twingly.com/)]
-Parent=General Crawlers
-Browser=Twingly Recon
-
-[Mozilla/5.0 (compatible; unwrapbot/2.*; http://www.unwrap.jp*)]
-Parent=General Crawlers
-Browser=UnWrap
-
-[Mozilla/5.0 (compatible; Vermut*)]
-Parent=General Crawlers
-Browser=Vermut
-
-[Mozilla/5.0 (compatible; Webbot/*)]
-Parent=General Crawlers
-Browser=Webbot.ru
-isBanned=true
-
-[n4p_bot*]
-Parent=General Crawlers
-Browser=n4p_bot
-
-[nabot*]
-Parent=General Crawlers
-Browser=Nabot
-
-[NetCarta_WebMapper/*]
-Parent=General Crawlers
-Browser=NetCarta_WebMapper
-isBanned=true
-
-[NetID.com Bot*]
-Parent=General Crawlers
-Browser=NetID.com Bot
-isBanned=true
-
-[neTVision AG andreas.heidoetting@thomson-webcast.net]
-Parent=General Crawlers
-Browser=neTVision
-
-[NextopiaBOT*]
-Parent=General Crawlers
-Browser=NextopiaBOT
-
-[nicebot]
-Parent=General Crawlers
-Browser=nicebot
-isBanned=true
-
-[niXXieBot?Foster*]
-Parent=General Crawlers
-Browser=niXXiebot-Foster
-
-[Nozilla/P.N (Just for IDS woring)]
-Parent=General Crawlers
-Browser=Nozilla/P.N
-isBanned=true
-
-[Nudelsalat/*]
-Parent=General Crawlers
-Browser=Nudelsalat
-isBanned=true
-
-[NV32ts]
-Parent=General Crawlers
-Browser=NV32ts
-isBanned=true
-
-[Ocelli/*]
-Parent=General Crawlers
-Browser=Ocelli
-
-[OpenTaggerBot (http://www.opentagger.com/opentaggerbot.htm)]
-Parent=General Crawlers
-Browser=OpenTaggerBot
-
-[Oracle Enterprise Search]
-Parent=General Crawlers
-Browser=Oracle Enterprise Search
-isBanned=true
-
-[Oracle Ultra Search]
-Parent=General Crawlers
-Browser=Oracle Ultra Search
-
-[Pajaczek/*]
-Parent=General Crawlers
-Browser=Pajaczek
-isBanned=true
-
-[panscient.com]
-Parent=General Crawlers
-Browser=panscient.com
-isBanned=true
-
-[Patwebbot (http://www.herz-power.de/technik.html)]
-Parent=General Crawlers
-Browser=Patwebbot
-
-[PDFBot (crawler@pdfind.com)]
-Parent=General Crawlers
-Browser=PDFBot
-
-[Pete-Spider/1.*]
-Parent=General Crawlers
-Browser=Pete-Spider
-isBanned=true
-
-[PhpDig/*]
-Parent=General Crawlers
-Browser=PhpDig
-
-[PlantyNet_WebRobot*]
-Parent=General Crawlers
-Browser=PlantyNet
-isBanned=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PluckIt
-
-[PluckItCrawler/1.0 (*)]
-Parent=General Crawlers
-isMobileDevice=true
-
-[PMAFind]
-Parent=General Crawlers
-Browser=PMAFind
-isBanned=true
-
-[Poodle_predictor_1.0]
-Parent=General Crawlers
-Browser=Poodle Predictor
-
-[QuickFinder Crawler]
-Parent=General Crawlers
-Browser=QuickFinder
-isBanned=true
-
-[Radiation Retriever*]
-Parent=General Crawlers
-Browser=Radiation Retriever
-isBanned=true
-
-[RedCarpet/*]
-Parent=General Crawlers
-Browser=RedCarpet
-isBanned=true
-
-[RixBot (http://babelserver.org/rix)]
-Parent=General Crawlers
-Browser=RixBot
-
-[Rome Client (http://tinyurl.com/64t5n) Ver: 0.*]
-Parent=General Crawlers
-Browser=TinyURL
-
-[SBIder/*]
-Parent=General Crawlers
-Browser=SiteSell
-
-[ScollSpider/2.*]
-Parent=General Crawlers
-Browser=ScollSpider
-isBanned=true
-
-[Search Fst]
-Parent=General Crawlers
-Browser=Search Fst
-
-[searchbot admin@google.com]
-Parent=General Crawlers
-Browser=searchbot
-isBanned=true
-
-[Seeker.lookseek.com]
-Parent=General Crawlers
-Browser=LookSeek
-isBanned=true
-
-[semanticdiscovery/*]
-Parent=General Crawlers
-Browser=Semantic Discovery
-
-[SeznamBot/*]
-Parent=General Crawlers
-Browser=SeznamBot
-isBanned=true
-
-[Shelob (shelob@gmx.net)]
-Parent=General Crawlers
-Browser=Shelob
-isBanned=true
-
-[shelob v1.*]
-Parent=General Crawlers
-Browser=shelob
-isBanned=true
-
-[ShopWiki/1.0*]
-Parent=General Crawlers
-Browser=ShopWiki
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[ShowXML/1.0 libwww/5.4.0]
-Parent=General Crawlers
-Browser=ShowXML
-isBanned=true
-
-[sitecheck.internetseer.com*]
-Parent=General Crawlers
-Browser=Internetseer
-
-[SMBot/*]
-Parent=General Crawlers
-Browser=SMBot
-
-[sohu*]
-Parent=General Crawlers
-Browser=sohu-search
-isBanned=true
-
-[SpankBot*]
-Parent=General Crawlers
-Browser=SpankBot
-isBanned=true
-
-[spider (tspyyp@tom.com)]
-Parent=General Crawlers
-Browser=spider (tspyyp@tom.com)
-isBanned=true
-
-[Sunrise/0.*]
-Parent=General Crawlers
-Browser=Sunrise
-isBanned=true
-
-[Superpages URL Verification Engine]
-Parent=General Crawlers
-Browser=Superpages
-
-[Surf Knight]
-Parent=General Crawlers
-Browser=Surf Knight
-isBanned=true
-
-[SurveyBot/*]
-Parent=General Crawlers
-Browser=SurveyBot
-isBanned=true
-
-[SynapticSearch/AI Crawler 1.?]
-Parent=General Crawlers
-Browser=SynapticSearch
-isBanned=true
-
-[SyncMgr]
-Parent=General Crawlers
-Browser=SyncMgr
-
-[Tagyu Agent/1.0]
-Parent=General Crawlers
-Browser=Tagyu
-
-[Talkro Web-Shot/*]
-Parent=General Crawlers
-Browser=Talkro Web-Shot
-isBanned=true
-
-[Tecomi Bot (http://www.tecomi.com/bot.htm)]
-Parent=General Crawlers
-Browser=Tecomi
-
-[TheInformant*]
-Parent=General Crawlers
-Browser=TheInformant
-isBanned=true
-
-[Toata dragostea*]
-Parent=General Crawlers
-Browser=Toata dragostea
-isBanned=true
-
-[Tutorial Crawler*]
-Parent=General Crawlers
-isBanned=true
-
-[UbiCrawler/*]
-Parent=General Crawlers
-Browser=UbiCrawler
-
-[UCmore]
-Parent=General Crawlers
-Browser=UCmore
-
-[User*Agent:*]
-Parent=General Crawlers
-isBanned=true
-
-[USER_AGENT]
-Parent=General Crawlers
-Browser=USER_AGENT
-isBanned=true
-
-[VadixBot]
-Parent=General Crawlers
-Browser=VadixBot
-
-[VengaBot/*]
-Parent=General Crawlers
-Browser=VengaBot
-isBanned=true
-
-[Visicom Toolbar]
-Parent=General Crawlers
-Browser=Visicom Toolbar
-
-[W3C-WebCon/*]
-Parent=General Crawlers
-Browser=W3C-WebCon
-
-[Webclipping.com]
-Parent=General Crawlers
-Browser=Webclipping.com
-isBanned=true
-
-[webcollage/*]
-Parent=General Crawlers
-Browser=WebCollage
-isBanned=true
-
-[WebCrawler_1.*]
-Parent=General Crawlers
-Browser=WebCrawler
-
-[WebFilter Robot*]
-Parent=General Crawlers
-Browser=WebFilter Robot
-
-[WeBoX/*]
-Parent=General Crawlers
-Browser=WeBoX
-
-[WebTrends/*]
-Parent=General Crawlers
-Browser=WebTrends
-
-[West Wind Internet Protocols*]
-Parent=General Crawlers
-Browser=Versatel
-isBanned=true
-
-[WhizBang]
-Parent=General Crawlers
-Browser=WhizBang
-
-[Willow Internet Crawler by Twotrees V*]
-Parent=General Crawlers
-Browser=Willow Internet Crawler
-
-[WIRE/* (Linux; i686; Bot,Robot,Spider,Crawler)]
-Parent=General Crawlers
-Browser=WIRE
-isBanned=true
-
-[www.fi crawler, contact crawler@www.fi]
-Parent=General Crawlers
-Browser=www.fi crawler
-
-[Xerka WebBot v1.*]
-Parent=General Crawlers
-Browser=Xerka
-isBanned=true
-
-[XML Sitemaps Generator*]
-Parent=General Crawlers
-Browser=XML Sitemaps Generator
-
-[XSpider*]
-Parent=General Crawlers
-Browser=XSpider
-isBanned=true
-
-[YooW!/* (?http://www.yoow.eu)]
-Parent=General Crawlers
-Browser=YooW!
-isBanned=true
-
-[HiddenMarket-*]
-Parent=General RSS
-Browser=HiddenMarket
-isBanned=true
-
-[FOTOCHECKER]
-Parent=Image Crawlers
-Browser=FOTOCHECKER
-isBanned=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Search Engines
-
-[Search Engines]
-Parent=DefaultProperties
-Browser=Search Engines
-Crawler=true
-
-[*FDSE robot*]
-Parent=Search Engines
-Browser=FDSE Robot
-
-[*Fluffy the spider*]
-Parent=Search Engines
-Browser=SearchHippo
-
-[Abacho*]
-Parent=Search Engines
-Browser=Abacho
-
-[ah-ha.com crawler (crawler@ah-ha.com)]
-Parent=Search Engines
-Browser=Ah-Ha
-
-[AIBOT/*]
-Parent=Search Engines
-Browser=21Seek.Com
-
-[ALeadSoftbot/*]
-Parent=Search Engines
-Browser=ALeadSoftbot
-
-[Amfibibot/*]
-Parent=Search Engines
-Browser=Amfibi
-
-[AnswerBus (http://www.answerbus.com/)]
-Parent=Search Engines
-
-[antibot-V*]
-Parent=Search Engines
-Browser=antibot
-
-[appie*(www.walhello.com)]
-Parent=Search Engines
-Browser=Walhello
-
-[ASPSeek/*]
-Parent=Search Engines
-Browser=ASPSeek
-
-[BigCliqueBOT/*]
-Parent=Search Engines
-Browser=BigClique.com/BigClic.com
-
-[Blaiz-Bee/*]
-Parent=Search Engines
-Browser=RawGrunt
-
-[btbot/*]
-Parent=Search Engines
-Browser=Bit Torrent Search Engine
-
-[Busiversebot/v1.0 (http://www.busiverse.com/bot.php)]
-Parent=Search Engines
-Browser=Busiversebot
-isBanned=true
-
-[CatchBot/*; http://www.catchbot.com]
-Parent=Search Engines
-Browser=CatchBot
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[CipinetBot (http://www.cipinet.com/bot.html)]
-Parent=Search Engines
-Browser=CipinetBot
-
-[Cogentbot/1.?*]
-Parent=Search Engines
-Browser=Cogentbot
-
-[compatible; Mozilla 4.0; MSIE 5.5; (SqwidgeBot v1.01 - http://www.sqwidge.com/bot/)]
-Parent=Search Engines
-Browser=SqwidgeBot
-
-[cosmos*]
-Parent=Search Engines
-Browser=Xyleme
-
-[Deepindex]
-Parent=Search Engines
-Browser=Deepindex
-
-[DiamondBot]
-Parent=Search Engines
-Browser=DiamondBot
-
-[Dumbot*]
-Parent=Search Engines
-Browser=Dumbot
-Version=0.2
-MajorVer=0
-MinorVer=2
-Beta=true
-
-[Eule?Robot*]
-Parent=Search Engines
-Browser=Eule-Robot
-
-[Faxobot/*]
-Parent=Search Engines
-Browser=Faxo
-
-[Filangy/*]
-Parent=Search Engines
-Browser=Filangy
-
-[flatlandbot/*]
-Parent=Search Engines
-Browser=Flatland
-
-[Fooky.com/ScorpionBot/ScoutOut;*]
-Parent=Search Engines
-Browser=ScorpionBot
-isBanned=true
-
-[FyberSpider*]
-Parent=Search Engines
-Browser=FyberSpider
-isBanned=true
-
-[Gaisbot/*]
-Parent=Search Engines
-Browser=Gaisbot
-
-[gazz/*(gazz@nttr.co.jp)]
-Parent=Search Engines
-Browser=gazz
-
-[geniebot*]
-Parent=Search Engines
-Browser=GenieKnows
-
-[GOFORITBOT (?http://www.goforit.com/about/?)]
-Parent=Search Engines
-Browser=GoForIt
-
-[GoGuidesBot/*]
-Parent=Search Engines
-Browser=GoGuidesBot
-
-[GroschoBot/*]
-Parent=Search Engines
-Browser=GroschoBot
-
-[GurujiBot/1.*]
-Parent=Search Engines
-Browser=GurujiBot
-isBanned=true
-
-[HenryTheMiragoRobot*]
-Parent=Search Engines
-Browser=Mirago
-
-[HolmesBot (http://holmes.ge)]
-Parent=Search Engines
-Browser=HolmesBot
-
-[Hotzonu/*]
-Parent=Search Engines
-Browser=Hotzonu
-
-[HyperEstraier/*]
-Parent=Search Engines
-Browser=HyperEstraier
-isBanned=true
-
-[i1searchbot/*]
-Parent=Search Engines
-Browser=i1searchbot
-
-[IIITBOT/1.*]
-Parent=Search Engines
-Browser=Indian Language Web Search Engine
-
-[Iltrovatore-?etaccio/*]
-Parent=Search Engines
-Browser=Iltrovatore-Setaccio
-
-[InfociousBot (?http://corp.infocious.com/tech_crawler.php)]
-Parent=Search Engines
-Browser=InfociousBot
-isBanned=true
-
-[Infoseek SideWinder/*]
-Parent=Search Engines
-Browser=Infoseek
-
-[iSEEKbot/*]
-Parent=Search Engines
-Browser=iSEEKbot
-
-[Knight/0.? (Zook Knight; http://knight.zook.in/; knight@zook.in)]
-Parent=Search Engines
-Browser=Knight
-
-[Kolinka Forum Search (www.kolinka.com)]
-Parent=Search Engines
-Browser=Kolinka Forum Search
-isBanned=true
-
-[KRetrieve/]
-Parent=Search Engines
-Browser=KRetrieve
-isBanned=true
-
-[LapozzBot/*]
-Parent=Search Engines
-Browser=LapozzBot
-
-[Linknzbot*]
-Parent=Search Engines
-Browser=Linknzbot
-
-[LocalcomBot/*]
-Parent=Search Engines
-Browser=LocalcomBot
-
-[Mail.Ru/1.0]
-Parent=Search Engines
-Browser=Mail.Ru
-
-[MaSagool/*]
-Parent=Search Engines
-Browser=Sagoo
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[miniRank/*]
-Parent=Search Engines
-Browser=miniRank
-
-[Mnogosearch*]
-Parent=Search Engines
-Browser=Mnogosearch
-
-[Mozilla/0.9* no dos :) (Linux)]
-Parent=Search Engines
-Browser=goliat
-isBanned=true
-
-[Mozilla/4.0 (compatible; Arachmo)]
-Parent=Search Engines
-Browser=Arachmo
-
-[Mozilla/4.0 (compatible; http://search.thunderstone.com/texis/websearch/about.html)]
-Parent=Search Engines
-Browser=ThunderStone
-isBanned=true
-
-[Mozilla/4.0 (compatible; MSIE *; Windows NT; Girafabot; girafabot at girafa dot com; http://www.girafa.com)]
-Parent=Search Engines
-Browser=Girafabot
-Win32=true
-
-[Mozilla/4.0 (compatible; Vagabondo/*; webcrawler at wise-guys dot nl; *)]
-Parent=Search Engines
-Browser=Vagabondo
-
-[Mozilla/4.0(?compatible; MSIE 6.0; Qihoo *)]
-Parent=Search Engines
-Browser=Qihoo
-
-[Mozilla/4.7 (compatible; WhizBang; http://www.whizbang.com/crawler)]
-Parent=Search Engines
-Browser=Inxight Software
-
-[Mozilla/5.0 (*) VoilaBot*]
-Parent=Search Engines
-Browser=VoilaBot
-isBanned=true
-
-[Mozilla/5.0 (compatible; ActiveTouristBot*; http://www.activetourist.com)]
-Parent=Search Engines
-Browser=ActiveTouristBot
-
-[Mozilla/5.0 (compatible; Butterfly/1.0; *)*]
-Parent=Search Engines
-Browser=Butterfly
-
-[Mozilla/5.0 (compatible; Charlotte/*; *)]
-Parent=Search Engines
-Browser=Charlotte
-Beta=true
-isBanned=true
-
-[Mozilla/5.0 (compatible; CXL-FatAssANT*)]
-Parent=Search Engines
-Browser=FatAssANT
-
-[Mozilla/5.0 (compatible; DBLBot/1.0; ?http://www.dontbuylists.com/)]
-Parent=Search Engines
-Browser=DBLBot
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Mozilla/5.0 (compatible; EARTHCOM.info/*)]
-Parent=Search Engines
-Browser=EARTHCOM
-
-[Mozilla/5.0 (compatible; Lipperhey Spider; http://www.lipperhey.com/)]
-Parent=Search Engines
-Browser=Lipperhey Spider
-
-[Mozilla/5.0 (compatible; MojeekBot/*; http://www.mojeek.com/bot.html)]
-Parent=Search Engines
-Browser=MojeekBot
-
-[Mozilla/5.0 (compatible; NLCrawler/*]
-Parent=Search Engines
-Browser=Northern Light Web Search
-
-[Mozilla/5.0 (compatible; OsO;*]
-Parent=Search Engines
-Browser=Octopodus
-isBanned=true
-
-[Mozilla/5.0 (compatible; Pogodak.*)]
-Parent=Search Engines
-Browser=Pogodak
-
-[Mozilla/5.0 (compatible; Quantcastbot/1.*)]
-Parent=Search Engines
-Browser=Quantcastbot
-
-[Mozilla/5.0 (compatible; ScoutJet; *http://www.scoutjet.com/)]
-Parent=Search Engines
-Browser=ScoutJet
-
-[Mozilla/5.0 (compatible; Scrubby/*; http://www.scrubtheweb.com/abs/meta-check.html)]
-Parent=Search Engines
-Browser=Scrubby
-isBanned=true
-
-[Mozilla/5.0 (compatible; YoudaoBot/1.*; http://www.youdao.com/help/webmaster/spider/*)]
-Parent=Search Engines
-Browser=YoudaoBot
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Mozilla/5.0 (Twiceler*)]
-Parent=Search Engines
-Browser=Twiceler
-isBanned=true
-
-[Mozilla/5.0 CostaCider Search*]
-Parent=Search Engines
-Browser=CostaCider Search
-
-[Mozilla/5.0 GurujiBot/1.0 (*)]
-Parent=Search Engines
-Browser=GurujiBot
-
-[NavissoBot]
-Parent=Search Engines
-Browser=NavissoBot
-
-[NextGenSearchBot*(for information visit *)]
-Parent=Search Engines
-Browser=ZoomInfo
-isBanned=true
-
-[Norbert the Spider(Burf.com)]
-Parent=Search Engines
-Browser=Norbert the Spider
-
-[NuSearch Spider*]
-Parent=Search Engines
-Browser=nuSearch
-
-[ObjectsSearch/*]
-Parent=Search Engines
-Browser=ObjectsSearch
-
-[OpenISearch/1.*]
-Parent=Search Engines
-Browser=OpenISearch (Amazon)
-
-[Pagebull http://www.pagebull.com/]
-Parent=Search Engines
-Browser=Pagebull
-
-[PEERbot*]
-Parent=Search Engines
-Browser=PEERbot
-
-[Pompos/*]
-Parent=Search Engines
-Browser=Pompos
-
-[Popdexter/*]
-Parent=Search Engines
-Browser=Popdex
-
-[Qweery*]
-Parent=Search Engines
-Browser=QweeryBot
-
-[RedCell/* (*)]
-Parent=Search Engines
-Browser=RedCell
-
-[Scrubby/*]
-Parent=Search Engines
-Browser=Scrub The Web
-
-[Search-10/*]
-Parent=Search Engines
-Browser=Search-10
-
-[search.ch*]
-Parent=Search Engines
-Browser=Swiss Search Engine
-
-[Searchmee! Spider*]
-Parent=Search Engines
-Browser=Searchmee!
-
-[Seekbot/*]
-Parent=Search Engines
-Browser=Seekbot
-
-[SiteSpider (http://www.SiteSpider.com/)]
-Parent=Search Engines
-Browser=SiteSpider
-
-[Spinne/*]
-Parent=Search Engines
-Browser=Spinne
-
-[sproose/*]
-Parent=Search Engines
-Browser=Sproose
-
-[Sqeobot/0.*]
-Parent=Search Engines
-Browser=Branzel
-isBanned=true
-
-[SquigglebotBot/*]
-Parent=Search Engines
-Browser=SquigglebotBot
-isBanned=true
-
-[StackRambler/*]
-Parent=Search Engines
-Browser=StackRambler
-
-[SygolBot*]
-Parent=Search Engines
-Browser=SygolBot
-
-[SynoBot]
-Parent=Search Engines
-Browser=SynoBot
-
-[Szukacz/*]
-Parent=Search Engines
-Browser=Szukacz
-
-[Tarantula/*]
-Parent=Search Engines
-Browser=Tarantula
-isBanned=true
-
-[TerrawizBot/*]
-Parent=Search Engines
-Browser=TerrawizBot
-isBanned=true
-
-[Tkensaku/*]
-Parent=Search Engines
-Browser=Tkensaku
-
-[TMCrawler]
-Parent=Search Engines
-Browser=TMCrawler
-isBanned=true
-
-[Twingly Recon]
-Parent=Search Engines
-Browser=Twingly Recon
-isBanned=true
-
-[updated/*]
-Parent=Search Engines
-Browser=Updated!
-
-[URL Spider Pro/*]
-Parent=Search Engines
-Browser=URL Spider Pro
-
-[URL Spider SQL*]
-Parent=Search Engines
-Browser=Innerprise Enterprise Search
-
-[VMBot/*]
-Parent=Search Engines
-Browser=VMBot
-
-[voyager/2.0 (http://www.kosmix.com/html/crawler.html)]
-Parent=Search Engines
-Browser=Voyager
-
-[wadaino.jp-crawler*]
-Parent=Search Engines
-Browser=wadaino.jp
-isBanned=true
-
-[WebAlta Crawler/*]
-Parent=Search Engines
-Browser=WebAlta Crawler
-isBanned=true
-
-[WebCorp/*]
-Parent=Search Engines
-Browser=WebCorp
-isBanned=true
-
-[webcrawl.net]
-Parent=Search Engines
-Browser=webcrawl.net
-
-[WISEbot/*]
-Parent=Search Engines
-Browser=WISEbot
-isBanned=true
-
-[Wotbox/*]
-Parent=Search Engines
-Browser=Wotbox
-
-[www.zatka.com]
-Parent=Search Engines
-Browser=Zatka
-
-[WWWeasel Robot v*]
-Parent=Search Engines
-Browser=World Wide Weasel
-
-[YadowsCrawler*]
-Parent=Search Engines
-Browser=YadowsCrawler
-
-[YodaoBot/*]
-Parent=Search Engines
-Browser=YodaoBot
-isBanned=true
-
-[ZeBot_www.ze.bz*]
-Parent=Search Engines
-Browser=ZE.bz
-
-[zibber-v*]
-Parent=Search Engines
-Browser=Zibb
-
-[ZipppBot/*]
-Parent=Search Engines
-Browser=ZipppBot
-
-[ATA-Translation-Service]
-Parent=Translators
-Browser=ATA-Translation-Service
-
-[GJK_Browser_Check]
-Parent=Version Checkers
-Browser=GJK_Browser_Check
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Hatena
-
-[Hatena]
-Parent=DefaultProperties
-Browser=Hatena
-isBanned=true
-Crawler=true
-
-[Feed::Find/*]
-Parent=Hatena
-Browser=Feed Find
-isSyndicationReader=true
-
-[Hatena Antenna/*]
-Parent=Hatena
-Browser=Hatena Antenna
-
-[Hatena Bookmark/*]
-Parent=Hatena
-Browser=Hatena Bookmark
-
-[Hatena RSS/*]
-Parent=Hatena
-Browser=Hatena RSS
-isSyndicationReader=true
-
-[Hatena::Crawler/*]
-Parent=Hatena
-Browser=Hatena Crawler
-
-[HatenaScreenshot*]
-Parent=Hatena
-Browser=HatenaScreenshot
-
-[URI::Fetch/*]
-Parent=Hatena
-Browser=URI::Fetch
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Internet Archive
-
-[Internet Archive]
-Parent=DefaultProperties
-Browser=Internet Archive
-Frames=true
-IFrames=true
-Tables=true
-isBanned=true
-Crawler=true
-
-[*heritrix*]
-Parent=Internet Archive
-Browser=Heritrix
-isBanned=true
-
-[ia_archiver*]
-Parent=Internet Archive
-Browser=Internet Archive
-
-[InternetArchive/*]
-Parent=Internet Archive
-Browser=InternetArchive
-
-[Mozilla/5.0 (compatible; archive.org_bot/1.*)]
-Parent=Internet Archive
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nutch
-
-[Nutch]
-Parent=DefaultProperties
-Browser=Nutch
-isBanned=true
-Crawler=true
-
-[*Nutch*]
-Parent=Nutch
-isBanned=true
-
-[CazoodleBot/*]
-Parent=Nutch
-Browser=CazoodleBot
-
-[LOOQ/0.1*]
-Parent=Nutch
-Browser=LOOQ
-
-[Nutch/0.? (OpenX Spider)]
-Parent=Nutch
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Webaroo
-
-[Webaroo]
-Parent=DefaultProperties
-Browser=Webaroo
-
-[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Webaroo/*)]
-Parent=Webaroo
-Browser=Webaroo
-
-[Mozilla/5.0 (Windows; U; Windows *; *; rv:*) Gecko/* Firefox/* webaroo/*]
-Parent=Webaroo
-Browser=Webaroo
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Word Press
-
-[Word Press]
-Parent=DefaultProperties
-Browser=Word Press
-Alpha=true
-Beta=true
-Win16=true
-Win32=true
-Win64=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-isBanned=true
-isMobileDevice=true
-isSyndicationReader=true
-Crawler=true
-
-[WordPress-B-/2.*]
-Parent=Word Press
-Browser=WordPress-B
-
-[WordPress-Do-P-/2.*]
-Parent=Word Press
-Browser=WordPress-Do-P
-
-[BlueCoat ProxySG]
-Parent=Blue Coat Systems
-Browser=BlueCoat ProxySG
-
-[CerberianDrtrs/*]
-Parent=Blue Coat Systems
-Browser=Cerberian
-
-[Inne: Mozilla/4.0 (compatible; Cerberian Drtrs*)]
-Parent=Blue Coat Systems
-Browser=Cerberian
-
-[Mozilla/4.0 (compatible; Cerberian Drtrs*)]
-Parent=Blue Coat Systems
-Browser=Cerberian
-
-[Mozilla/4.0 (compatible; MSIE 6.0; Bluecoat DRTR)]
-Parent=Blue Coat Systems
-Browser=Bluecoat
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Copyright/Plagiarism
-
-[Copyright/Plagiarism]
-Parent=DefaultProperties
-Browser=Copyright/Plagiarism
-isBanned=true
-Crawler=true
-
-[BDFetch]
-Parent=Copyright/Plagiarism
-Browser=BDFetch
-
-[copyright sheriff (*)]
-Parent=Copyright/Plagiarism
-Browser=copyright sheriff
-
-[CopyRightCheck*]
-Parent=Copyright/Plagiarism
-Browser=CopyRightCheck
-
-[FairAd Client*]
-Parent=Copyright/Plagiarism
-Browser=FairAd Client
-
-[iCopyright Conductor*]
-Parent=Copyright/Plagiarism
-Browser=iCopyright Conductor
-
-[IPiumBot laurion(dot)com]
-Parent=Copyright/Plagiarism
-Browser=IPiumBot
-
-[IWAgent/*]
-Parent=Copyright/Plagiarism
-Browser=Brand Protect
-
-[Mozilla/5.0 (compatible; DKIMRepBot/*)]
-Parent=Copyright/Plagiarism
-Browser=DKIMRepBot
-
-[oBot]
-Parent=Copyright/Plagiarism
-Browser=oBot
-
-[SlySearch/*]
-Parent=Copyright/Plagiarism
-Browser=SlySearch
-
-[TurnitinBot/*]
-Parent=Copyright/Plagiarism
-Browser=TurnitinBot
-
-[TutorGigBot/*]
-Parent=Copyright/Plagiarism
-Browser=TutorGig
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DNS Tools
-
-[DNS Tools]
-Parent=DefaultProperties
-Browser=DNS Tools
-Crawler=true
-
-[Domain Dossier utility*]
-Parent=DNS Tools
-Browser=Domain Dossier
-
-[Mozilla/5.0 (compatible; DNS-Digger/*)]
-Parent=DNS Tools
-Browser=DNS-Digger
-
-[OpenDNS Domain Crawler noc@opendns.com]
-Parent=DNS Tools
-Browser=OpenDNS Domain Crawler
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Download Managers
-
-[Download Managers]
-Parent=DefaultProperties
-Browser=Download Managers
-Frames=true
-IFrames=true
-Tables=true
-isBanned=true
-Crawler=true
-
-[AndroidDownloadManager]
-Parent=Download Managers
-Browser=Android Download Manager
-
-[AutoMate5]
-Parent=Download Managers
-Browser=AutoMate5
-
-[Beamer*]
-Parent=Download Managers
-Browser=Beamer
-
-[BitBeamer/*]
-Parent=Download Managers
-Browser=BitBeamer
-
-[BitTorrent/*]
-Parent=Download Managers
-Browser=BitTorrent
-
-[DA *]
-Parent=Download Managers
-Browser=Download Accelerator
-
-[Download Demon*]
-Parent=Download Managers
-Browser=Download Demon
-
-[Download Express*]
-Parent=Download Managers
-Browser=Download Express
-
-[Download Master*]
-Parent=Download Managers
-Browser=Download Master
-
-[Download Ninja*]
-Parent=Download Managers
-Browser=Download Ninja
-
-[Download Wonder*]
-Parent=Download Managers
-Browser=Download Wonder
-
-[DownloadSession*]
-Parent=Download Managers
-Browser=DownloadSession
-
-[EasyDL/*]
-Parent=Download Managers
-Browser=EasyDL
-
-[FDM 1.x]
-Parent=Download Managers
-Browser=Free Download Manager
-
-[FlashGet]
-Parent=Download Managers
-Browser=FlashGet
-
-[FreshDownload/*]
-Parent=Download Managers
-Browser=FreshDownload
-
-[GetRight/*]
-Parent=Download Managers
-Browser=GetRight
-
-[GetRightPro/*]
-Parent=Download Managers
-Browser=GetRightPro
-
-[GetSmart/*]
-Parent=Download Managers
-Browser=GetSmart
-
-[Go!Zilla*]
-Parent=Download Managers
-Browser=GoZilla
-
-[Gozilla/*]
-Parent=Download Managers
-Browser=Gozilla
-
-[Internet Ninja*]
-Parent=Download Managers
-Browser=Internet Ninja
-
-[Kontiki Client*]
-Parent=Download Managers
-Browser=Kontiki Client
-
-[lftp/3.2.1]
-Parent=Download Managers
-Browser=lftp
-
-[LightningDownload/*]
-Parent=Download Managers
-Browser=LightningDownload
-
-[LMQueueBot/*]
-Parent=Download Managers
-Browser=LMQueueBot
-
-[MetaProducts Download Express/*]
-Parent=Download Managers
-Browser=Download Express
-
-[Mozilla/4.0 (compatible; Getleft*)]
-Parent=Download Managers
-Browser=Getleft
-
-[Myzilla]
-Parent=Download Managers
-Browser=Myzilla
-
-[Net Vampire/*]
-Parent=Download Managers
-Browser=Net Vampire
-
-[Net_Vampire*]
-Parent=Download Managers
-Browser=Net_Vampire
-
-[NetAnts*]
-Parent=Download Managers
-Browser=NetAnts
-
-[NetPumper*]
-Parent=Download Managers
-Browser=NetPumper
-
-[NetSucker*]
-Parent=Download Managers
-Browser=NetSucker
-
-[NetZip Downloader*]
-Parent=Download Managers
-Browser=NetZip Downloader
-
-[NexTools WebAgent*]
-Parent=Download Managers
-Browser=NexTools WebAgent
-
-[Offline Downloader*]
-Parent=Download Managers
-Browser=Offline Downloader
-
-[P3P Client]
-Parent=Download Managers
-Browser=P3P Client
-
-[PageDown*]
-Parent=Download Managers
-Browser=PageDown
-
-[PicaLoader*]
-Parent=Download Managers
-Browser=PicaLoader
-
-[Prozilla*]
-Parent=Download Managers
-Browser=Prozilla
-
-[RealDownload/*]
-Parent=Download Managers
-Browser=RealDownload
-
-[sEasyDL/*]
-Parent=Download Managers
-Browser=EasyDL
-
-[shareaza*]
-Parent=Download Managers
-Browser=shareaza
-
-[SmartDownload/*]
-Parent=Download Managers
-Browser=SmartDownload
-
-[SpeedDownload/*]
-Parent=Download Managers
-Browser=Speed Download
-
-[Star*Downloader/*]
-Parent=Download Managers
-Browser=StarDownloader
-
-[STEROID Download]
-Parent=Download Managers
-Browser=STEROID Download
-
-[SuperBot/*]
-Parent=Download Managers
-Browser=SuperBot
-
-[Vegas95/*]
-Parent=Download Managers
-Browser=Vegas95
-
-[WebZIP*]
-Parent=Download Managers
-Browser=WebZIP
-
-[Wget*]
-Parent=Download Managers
-Browser=Wget
-
-[WinTools]
-Parent=Download Managers
-Browser=WinTools
-
-[Xaldon WebSpider*]
-Parent=Download Managers
-Browser=Xaldon WebSpider
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; E-Mail Harvesters
-
-[E-Mail Harvesters]
-Parent=DefaultProperties
-Browser=E-Mail Harvesters
-Frames=true
-IFrames=true
-Tables=true
-isBanned=true
-Crawler=true
-
-[*E-Mail Address Extractor*]
-Parent=E-Mail Harvesters
-Browser=E-Mail Address Extractor
-
-[*Larbin*]
-Parent=E-Mail Harvesters
-Browser=Larbin
-
-[*www4mail/*]
-Parent=E-Mail Harvesters
-Browser=www4mail
-
-[8484 Boston Project*]
-Parent=E-Mail Harvesters
-Browser=8484 Boston Project
-
-[CherryPicker*/*]
-Parent=E-Mail Harvesters
-Browser=CherryPickerElite
-
-[Chilkat/*]
-Parent=E-Mail Harvesters
-Browser=Chilkat
-
-[ContactBot/*]
-Parent=E-Mail Harvesters
-Browser=ContactBot
-
-[eCatch*]
-Parent=E-Mail Harvesters
-Browser=eCatch
-
-[EmailCollector*]
-Parent=E-Mail Harvesters
-Browser=E-Mail Collector
-
-[EMAILsearcher]
-Parent=E-Mail Harvesters
-Browser=EMAILsearcher
-
-[EmailSiphon*]
-Parent=E-Mail Harvesters
-Browser=E-Mail Siphon
-
-[EmailWolf*]
-Parent=E-Mail Harvesters
-Browser=EMailWolf
-
-[Epsilon SoftWorks' MailMunky]
-Parent=E-Mail Harvesters
-Browser=MailMunky
-
-[ExtractorPro*]
-Parent=E-Mail Harvesters
-Browser=ExtractorPro
-
-[Franklin Locator*]
-Parent=E-Mail Harvesters
-Browser=Franklin Locator
-
-[Missigua Locator*]
-Parent=E-Mail Harvesters
-Browser=Missigua Locator
-
-[Mozilla/4.0 (compatible; Advanced Email Extractor*)]
-Parent=E-Mail Harvesters
-Browser=Advanced Email Extractor
-
-[Netprospector*]
-Parent=E-Mail Harvesters
-Browser=Netprospector
-
-[ProWebWalker*]
-Parent=E-Mail Harvesters
-Browser=ProWebWalker
-
-[sna-0.0.*]
-Parent=E-Mail Harvesters
-Browser=Mike Elliott's E-Mail Harvester
-
-[WebEnhancer*]
-Parent=E-Mail Harvesters
-Browser=WebEnhancer
-
-[WebMiner*]
-Parent=E-Mail Harvesters
-Browser=WebMiner
-
-[ZIBB Crawler (email address / WWW address)]
-Parent=E-Mail Harvesters
-Browser=ZIBB Crawler
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Feeds Blogs
-
-[Feeds Blogs]
-Parent=DefaultProperties
-Browser=Feeds Blogs
-isSyndicationReader=true
-Crawler=true
-
-[Bloglines Title Fetch/*]
-Parent=Feeds Blogs
-Browser=Bloglines Title Fetch
-
-[Bloglines/* (http://www.bloglines.com*)]
-Parent=Feeds Blogs
-Browser=BlogLines Web
-
-[BlogPulseLive (support@blogpulse.com)]
-Parent=Feeds Blogs
-Browser=BlogPulseLive
-
-[blogsearchbot-pumpkin-2]
-Parent=Feeds Blogs
-Browser=blogsearchbot-pumpkin
-isSyndicationReader=false
-
-[Irish Blogs Aggregator/*1.0*]
-Parent=Feeds Blogs
-Browser=Irish Blogs Aggregator
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[kinjabot (http://www.kinja.com; *)]
-Parent=Feeds Blogs
-Browser=kinjabot
-
-[Net::Trackback/*]
-Parent=Feeds Blogs
-Browser=Net::Trackback
-
-[Reblog*]
-Parent=Feeds Blogs
-Browser=Reblog
-
-[WordPress/*]
-Parent=Feeds Blogs
-Browser=WordPress
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Feeds Syndicators
-
-[Feeds Syndicators]
-Parent=DefaultProperties
-Browser=Feeds Syndicators
-isSyndicationReader=true
-
-[*LinkLint*]
-Parent=Feeds Syndicators
-Browser=LinkLint
-
-[*NetNewsWire/*]
-Parent=Feeds Syndicators
-
-[*NetVisualize*]
-Parent=Feeds Syndicators
-Browser=NetVisualize
-
-[AideRSS 2.* (postrank.com)]
-Parent=Feeds Syndicators
-Browser=AideRSS
-
-[AideRSS/2.0 (aiderss.com)]
-Parent=Feeds Syndicators
-Browser=AideRSS
-isBanned=true
-
-[Akregator/*]
-Parent=Feeds Syndicators
-Browser=Akregator
-
-[AppleSyndication/*]
-Parent=Feeds Syndicators
-Browser=Safari RSS
-Platform=MacOSX
-
-[Cocoal.icio.us/* (*)*]
-Parent=Feeds Syndicators
-Browser=Cocoal.icio.us
-isBanned=true
-
-[Feed43 Proxy/* (*)]
-Parent=Feeds Syndicators
-Browser=Feed For Free
-
-[FeedBurner/*]
-Parent=Feeds Syndicators
-Browser=FeedBurner
-
-[FeedDemon/* (*)]
-Parent=Feeds Syndicators
-Browser=FeedDemon
-Platform=Win32
-
-[FeedDigest/* (*)]
-Parent=Feeds Syndicators
-Browser=FeedDigest
-
-[FeedGhost/1.*]
-Parent=Feeds Syndicators
-Browser=FeedGhost
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[FeedOnFeeds/0.1.* ( http://minutillo.com/steve/feedonfeeds/)]
-Parent=Feeds Syndicators
-Browser=FeedOnFeeds
-Version=0.1
-MajorVer=0
-MinorVer=1
-
-[Feedreader * (Powered by Newsbrain)]
-Parent=Feeds Syndicators
-Browser=Newsbrain
-
-[Feedshow/* (*)]
-Parent=Feeds Syndicators
-Browser=Feedshow
-
-[Feedster Crawler/?.0; Feedster, Inc.]
-Parent=Feeds Syndicators
-Browser=Feedster
-
-[GreatNews/1.0]
-Parent=Feeds Syndicators
-Browser=GreatNews
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Gregarius/*]
-Parent=Feeds Syndicators
-Browser=Gregarius
-
-[intraVnews/*]
-Parent=Feeds Syndicators
-Browser=intraVnews
-
-[JetBrains Omea Reader*]
-Parent=Feeds Syndicators
-Browser=Omea Reader
-isBanned=true
-
-[Liferea/1.5* (Linux; *; http://liferea.sf.net/)]
-Parent=Feeds Syndicators
-Browser=Liferea
-isBanned=true
-
-[livedoor FeedFetcher/0.0* (http://reader.livedoor.com/;*)]
-Parent=Feeds Syndicators
-Browser=FeedFetcher
-Version=0.0
-MajorVer=0
-MinorVer=0
-
-[MagpieRSS/* (*)]
-Parent=Feeds Syndicators
-Browser=MagpieRSS
-
-[Mobitype * (compatible; Mozilla/*; MSIE *.*; Windows *)]
-Parent=Feeds Syndicators
-Browser=Mobitype
-Platform=Win32
-
-[Mozilla/5.0 (*; Rojo *; http://www.rojo.com/corporate/help/agg; *)*]
-Parent=Feeds Syndicators
-Browser=Rojo
-
-[Mozilla/5.0 (*aggregator:TailRank; http://tailrank.com/robot)*]
-Parent=Feeds Syndicators
-Browser=TailRank
-
-[Mozilla/5.0 (compatible; MSIE 6.0; Podtech Network; crawler_admin@podtech.net)]
-Parent=Feeds Syndicators
-Browser=Podtech Network
-
-[Mozilla/5.0 (compatible; Newz Crawler *; http://www.newzcrawler.com/?)]
-Parent=Feeds Syndicators
-Browser=Newz Crawler
-
-[Mozilla/5.0 (compatible; RSSMicro.com RSS/Atom Feed Robot)]
-Parent=Feeds Syndicators
-Browser=RSSMicro
-
-[Mozilla/5.0 (compatible;*newstin.com;*)]
-Parent=Feeds Syndicators
-Browser=NewsTin
-
-[Mozilla/5.0 (RSS Reader Panel)]
-Parent=Feeds Syndicators
-Browser=RSS Reader Panel
-
-[Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:FeedParser; *) Gecko/*]
-Parent=Feeds Syndicators
-Browser=FeedParser
-
-[Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:NewsMonster; *) Gecko/*]
-Parent=Feeds Syndicators
-Browser=NewsMonster
-
-[Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:Rojo; *) Gecko/*]
-Parent=Feeds Syndicators
-Browser=Rojo
-
-[Netvibes (*)]
-Parent=Feeds Syndicators
-Browser=Netvibes
-
-[NewsAlloy/* (*)]
-Parent=Feeds Syndicators
-Browser=NewsAlloy
-
-[Omnipelagos*]
-Parent=Feeds Syndicators
-Browser=Omnipelagos
-
-[Particls]
-Parent=Feeds Syndicators
-Browser=Particls
-
-[Protopage/* (*)]
-Parent=Feeds Syndicators
-Browser=Protopage
-
-[PubSub-RSS-Reader/* (*)]
-Parent=Feeds Syndicators
-Browser=PubSub-RSS-Reader
-
-[RSS Menu/*]
-Parent=Feeds Syndicators
-Browser=RSS Menu
-
-[RssBandit/*]
-Parent=Feeds Syndicators
-Browser=RssBandit
-
-[RssBar/1.2*]
-Parent=Feeds Syndicators
-Browser=RssBar
-Version=1.2
-MajorVer=1
-MinorVer=2
-
-[SharpReader/*]
-Parent=Feeds Syndicators
-Browser=SharpReader
-
-[SimplePie/*]
-Parent=Feeds Syndicators
-Browser=SimplePie
-
-[Strategic Board Bot (?http://www.strategicboard.com)]
-Parent=Feeds Syndicators
-Browser=Strategic Board Bot
-isBanned=true
-
-[TargetYourNews.com bot]
-Parent=Feeds Syndicators
-Browser=TargetYourNews
-
-[Technoratibot/*]
-Parent=Feeds Syndicators
-Browser=Technoratibot
-
-[Tumblr/* RSS syndication ( http://www.tumblr.com/) (support@tumblr.com)]
-Parent=Feeds Syndicators
-Browser=Tumblr RSS syndication
-
-[Windows-RSS-Platform/1.0*]
-Parent=Feeds Syndicators
-Browser=Windows-RSS-Platform
-Version=1.0
-MajorVer=1
-MinorVer=0
-Win32=true
-
-[Wizz RSS News Reader]
-Parent=Feeds Syndicators
-Browser=Wizz
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; General RSS
-
-[General RSS]
-Parent=DefaultProperties
-Browser=General RSS
-isSyndicationReader=true
-
-[AideRSS/1.0 (aiderss.com); * subscribers]
-Parent=General RSS
-Browser=AideRSS
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[CC Metadata Scaper http://wiki.creativecommons.org/Metadata_Scraper]
-Parent=General RSS
-Browser=CC Metadata Scaper
-
-[Mozilla/5.0 (compatible) GM RSS Panel]
-Parent=General RSS
-Browser=RSS Panel
-
-[Mozilla/5.0 http://www.inclue.com; graeme@inclue.com]
-Parent=General RSS
-Browser=Inclue
-
-[Runnk online rss reader : http://www.runnk.com/ : RSS favorites : RSS ranking : RSS aggregator*]
-Parent=General RSS
-Browser=Ruunk
-
-[Windows-RSS-Platform/2.0 (MSIE 8.0; Windows NT 6.0)]
-Parent=General RSS
-Browser=Windows-RSS-Platform
-Platform=WinVista
-
-[Mozilla/5.0 (X11; ?; Linux; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.4]
-Parent=Google Code
-Browser=Arora
-Version=0.4
-MajorVer=0
-MinorVer=4
-Platform=Linux
-CssVersion=2
-supportsCSS=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Validation Checkers
-
-[HTML Validators]
-Parent=DefaultProperties
-Browser=HTML Validators
-Frames=true
-IFrames=true
-Tables=true
-Crawler=true
-
-[(HTML Validator http://www.searchengineworld.com/validator/)]
-Parent=HTML Validators
-Browser=Search Engine World HTML Validator
-
-[FeedValidator/1.3]
-Parent=HTML Validators
-Browser=FeedValidator
-Version=1.3
-MajorVer=1
-MinorVer=3
-
-[Jigsaw/* W3C_CSS_Validator_JFouffa/*]
-Parent=HTML Validators
-Browser=Jigsaw CSS Validator
-
-[Search Engine World Robots.txt Validator*]
-Parent=HTML Validators
-Browser=Search Engine World Robots.txt Validator
-
-[W3C_Validator/*]
-Parent=HTML Validators
-Browser=W3C Validator
-
-[W3CLineMode/*]
-Parent=HTML Validators
-Browser=W3C Line Mode
-
-[Weblide/2.? beta*]
-Parent=HTML Validators
-Browser=Weblide
-Version=2.0
-MajorVer=2
-MinorVer=0
-Beta=true
-
-[WebmasterWorld StickyMail Server Header Checker*]
-Parent=HTML Validators
-Browser=WebmasterWorld Server Header Checker
-
-[WWWC/*]
-Parent=HTML Validators
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Image Crawlers
-
-[Image Crawlers]
-Parent=DefaultProperties
-Browser=Image Crawlers
-Frames=true
-IFrames=true
-Tables=true
-isBanned=true
-Crawler=true
-
-[*CFNetwork*]
-Parent=Image Crawlers
-Browser=CFNetwork
-
-[*PhotoStickies/*]
-Parent=Image Crawlers
-Browser=PhotoStickies
-
-[Camcrawler*]
-Parent=Image Crawlers
-Browser=Camcrawler
-
-[CydralSpider/*]
-Parent=Image Crawlers
-Browser=Cydral Web Image Search
-isBanned=true
-
-[Der gro\xdfe BilderSauger*]
-Parent=Image Crawlers
-Browser=Gallery Grabber
-
-[Extreme Picture Finder]
-Parent=Image Crawlers
-Browser=Extreme Picture Finder
-
-[FLATARTS_FAVICO]
-Parent=Image Crawlers
-Browser=FlatArts Favorites Icon Tool
-
-[HTML2JPG Blackbox, http://www.html2jpg.com]
-Parent=Image Crawlers
-Browser=HTML2JPG
-
-[IconSurf/2.*]
-Parent=Image Crawlers
-Browser=IconSurf
-
-[kalooga/KaloogaBot*]
-Parent=Image Crawlers
-Browser=KaloogaBot
-
-[Mister PIX*]
-Parent=Image Crawlers
-Browser=Mister PIX
-
-[Mozilla/5.0 (Macintosh; U; *Mac OS X; *) AppleWebKit/* (*) Pandora/2.*]
-Parent=Image Crawlers
-Browser=Pandora
-
-[naoFavicon4IE*]
-Parent=Image Crawlers
-Browser=naoFavicon4IE
-
-[pixfinder/*]
-Parent=Image Crawlers
-Browser=pixfinder
-
-[rssImagesBot/0.1 (*http://herbert.groot.jebbink.nl/?app=rssImages)]
-Parent=Image Crawlers
-Browser=rssImagesBot
-
-[Web Image Collector*]
-Parent=Image Crawlers
-Browser=Web Image Collector
-
-[WebImages * (?http://herbert.groot.jebbink.nl/?app=WebImages?)]
-Parent=Image Crawlers
-Browser=WebImages
-
-[WebPix*]
-Parent=Image Crawlers
-Browser=Custo
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Link Checkers
-
-[Link Checkers]
-Parent=DefaultProperties
-Browser=Link Checkers
-Frames=true
-IFrames=true
-Tables=true
-Crawler=true
-
-[!Susie (http://www.sync2it.com/susie)]
-Parent=Link Checkers
-Browser=!Susie
-
-[*AgentName/*]
-Parent=Link Checkers
-Browser=AgentName
-
-[*Linkman*]
-Parent=Link Checkers
-Browser=Linkman
-
-[*LinksManager.com*]
-Parent=Link Checkers
-Browser=LinksManager
-
-[*Powermarks/*]
-Parent=Link Checkers
-Browser=Powermarks
-
-[*W3C-checklink/*]
-Parent=Link Checkers
-Browser=W3C Link Checker
-
-[*Web Link Validator*]
-Parent=Link Checkers
-Browser=Web Link Validator
-
-[*Zeus*]
-Parent=Link Checkers
-Browser=Zeus
-isBanned=true
-
-[ActiveBookmark *]
-Parent=Link Checkers
-Browser=ActiveBookmark
-
-[Bookdog/*]
-Parent=Link Checkers
-Browser=Bookdog
-
-[Bookmark Buddy*]
-Parent=Link Checkers
-Browser=Bookmark Buddy
-
-[Bookmark Renewal Check Agent*]
-Parent=Link Checkers
-Browser=Bookmark Renewal Check Agent
-
-[Bookmark search tool*]
-Parent=Link Checkers
-Browser=Bookmark search tool
-
-[Bookmark-Manager]
-Parent=Link Checkers
-Browser=Bookmark-Manager
-
-[Checkbot*]
-Parent=Link Checkers
-Browser=Checkbot
-
-[CheckLinks/*]
-Parent=Link Checkers
-Browser=CheckLinks
-
-[CyberSpyder Link Test/*]
-Parent=Link Checkers
-Browser=CyberSpyder Link Test
-
-[DLC/*]
-Parent=Link Checkers
-Browser=DLC
-
-[DocWeb Link Crawler (http://doc.php.net)]
-Parent=Link Checkers
-Browser=DocWeb Link Crawler
-
-[FavOrg]
-Parent=Link Checkers
-Browser=FavOrg
-
-[Favorites Sweeper v.3.*]
-Parent=Link Checkers
-Browser=Favorites Sweeper
-
-[FindLinks/*]
-Parent=Link Checkers
-Browser=FindLinks
-
-[Funnel Web Profiler*]
-Parent=Link Checkers
-Browser=Funnel Web Profiler
-
-[Html Link Validator (www.lithopssoft.com)]
-Parent=Link Checkers
-Browser=HTML Link Validator
-
-[IECheck]
-Parent=Link Checkers
-Browser=IECheck
-
-[JCheckLinks/*]
-Parent=Link Checkers
-Browser=JCheckLinks
-
-[JRTwine Software Check Favorites Utility]
-Parent=Link Checkers
-Browser=JRTwine
-
-[Link Valet Online*]
-Parent=Link Checkers
-Browser=Link Valet
-isBanned=true
-
-[LinkAlarm/*]
-Parent=Link Checkers
-Browser=LinkAlarm
-
-[Linkbot*]
-Parent=Link Checkers
-Browser=Linkbot
-
-[LinkChecker/*]
-Parent=Link Checkers
-Browser=LinkChecker
-
-[LinkextractorPro*]
-Parent=Link Checkers
-Browser=LinkextractorPro
-isBanned=true
-
-[LinkLint-checkonly/*]
-Parent=Link Checkers
-Browser=LinkLint
-
-[LinkScan/*]
-Parent=Link Checkers
-Browser=LinkScan
-
-[LinkSweeper/*]
-Parent=Link Checkers
-Browser=LinkSweeper
-
-[LinkWalker*]
-Parent=Link Checkers
-Browser=LinkWalker
-
-[MetaGer-LinkChecker]
-Parent=Link Checkers
-Browser=MetaGer-LinkChecker
-
-[Mozilla/* (compatible; linktiger/*; *http://www.linktiger.com*)]
-Parent=Link Checkers
-Browser=LinkTiger
-isBanned=true
-
-[Mozilla/4.0 (Compatible); URLBase*]
-Parent=Link Checkers
-Browser=URLBase
-
-[Mozilla/4.0 (compatible; Link Utility; http://net-promoter.com)]
-Parent=Link Checkers
-Browser=NetPromoter Link Utility
-
-[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98) Web Link Validator*]
-Parent=Link Checkers
-Browser=Web Link Validator
-Win32=true
-
-[Mozilla/4.0 (compatible; MSIE 7.0; Win32) Link Commander 3.0]
-Parent=Link Checkers
-Browser=Link Commander
-Version=3.0
-MajorVer=3
-MinorVer=0
-Platform=Win32
-
-[Mozilla/4.0 (compatible; smartBot/1.*; checking links; *)]
-Parent=Link Checkers
-Browser=smartBot
-
-[Mozilla/4.0 (compatible; SuperCleaner*;*)]
-Parent=Link Checkers
-Browser=SuperCleaner
-
-[Mozilla/5.0 gURLChecker/*]
-Parent=Link Checkers
-Browser=gURLChecker
-isBanned=true
-
-[Newsgroupreporter LinkCheck]
-Parent=Link Checkers
-Browser=Newsgroupreporter LinkCheck
-
-[onCHECK Linkchecker von www.scientec.de fuer www.onsinn.de]
-Parent=Link Checkers
-Browser=onCHECK Linkchecker
-
-[online link validator (http://www.dead-links.com/)]
-Parent=Link Checkers
-Browser=Dead-Links.com
-isBanned=true
-
-[REL Link Checker*]
-Parent=Link Checkers
-Browser=REL Link Checker
-
-[RLinkCheker*]
-Parent=Link Checkers
-Browser=RLinkCheker
-
-[Robozilla/*]
-Parent=Link Checkers
-Browser=Robozilla
-
-[RPT-HTTPClient/*]
-Parent=Link Checkers
-Browser=RPT-HTTPClient
-isBanned=true
-
-[SafariBookmarkChecker*(?http://www.coriolis.ch/)]
-Parent=Link Checkers
-Browser=SafariBookmarkChecker
-Platform=MacOSX
-CssVersion=2
-supportsCSS=true
-
-[Simpy/* (Simpy; http://www.simpy.com/?ref=bot; feedback at simpy dot com)]
-Parent=Link Checkers
-Browser=Simpy
-
-[SiteBar/*]
-Parent=Link Checkers
-Browser=SiteBar
-
-[Susie (http://www.sync2it.com/bms/susie.php]
-Parent=Link Checkers
-Browser=Susie
-
-[URLBase/6.*]
-Parent=Link Checkers
-
-[VSE/*]
-Parent=Link Checkers
-Browser=VSE Link Tester
-
-[WebTrends Link Analyzer]
-Parent=Link Checkers
-Browser=WebTrends Link Analyzer
-
-[WorQmada/*]
-Parent=Link Checkers
-Browser=WorQmada
-
-[Xenu* Link Sleuth*]
-Parent=Link Checkers
-Browser=Xenu's Link Sleuth
-isBanned=true
-
-[Z-Add Link Checker*]
-Parent=Link Checkers
-Browser=Z-Add Link Checker
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft
-
-[Microsoft]
-Parent=DefaultProperties
-Browser=Microsoft
-isBanned=true
-
-[Live (http://www.live.com/)]
-Parent=Microsoft
-Browser=Microsoft Live
-isBanned=false
-isSyndicationReader=true
-
-[MFC Foundation Class Library*]
-Parent=Microsoft
-Browser=MFC Foundation Class Library
-
-[MFHttpScan]
-Parent=Microsoft
-Browser=MFHttpScan
-
-[Microsoft BITS/*]
-Parent=Microsoft
-Browser=BITS
-
-[Microsoft Data Access Internet Publishing Provider Cache Manager]
-Parent=Microsoft
-Browser=MS IPP
-
-[Microsoft Data Access Internet Publishing Provider DAV*]
-Parent=Microsoft
-Browser=MS IPP DAV
-
-[Microsoft Data Access Internet Publishing Provider Protocol Discovery]
-Parent=Microsoft
-Browser=MS IPPPD
-
-[Microsoft Internet Explorer]
-Parent=Microsoft
-Browser=Fake IE
-
-[Microsoft Office Existence Discovery]
-Parent=Microsoft
-Browser=Microsoft Office Existence Discovery
-
-[Microsoft Office Protocol Discovery]
-Parent=Microsoft
-Browser=MS OPD
-
-[Microsoft Office/* (*Picture Manager*)]
-Parent=Microsoft
-Browser=Microsoft Office Picture Manager
-
-[Microsoft URL Control*]
-Parent=Microsoft
-Browser=Microsoft URL Control
-
-[Microsoft Visio MSIE]
-Parent=Microsoft
-Browser=Microsoft Visio
-
-[Microsoft-WebDAV-MiniRedir/*]
-Parent=Microsoft
-Browser=Microsoft-WebDAV
-
-[Mozilla/5.0 (Macintosh; Intel Mac OS X) Excel/12.*]
-Parent=Microsoft
-Browser=Microsoft Excel
-Version=12.0
-MajorVer=12
-MinorVer=0
-Platform=MacOSX
-
-[MSN Feed Manager]
-Parent=Microsoft
-Browser=MSN Feed Manager
-isBanned=false
-isSyndicationReader=true
-
-[MSProxy/*]
-Parent=Microsoft
-Browser=MS Proxy
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Miscellaneous Browsers
-
-[Miscellaneous Browsers]
-Parent=DefaultProperties
-Browser=Miscellaneous Browsers
-Frames=true
-Tables=true
-Cookies=true
-
-[*Amiga*]
-Parent=Miscellaneous Browsers
-Browser=Amiga
-Platform=Amiga
-
-[*avantbrowser*]
-Parent=Miscellaneous Browsers
-Browser=Avant Browser
-
-[12345]
-Parent=Miscellaneous Browsers
-Browser=12345
-isBanned=true
-
-[Ace Explorer]
-Parent=Miscellaneous Browsers
-Browser=Ace Explorer
-
-[Enigma Browser*]
-Parent=Miscellaneous Browsers
-Browser=Enigma Browser
-
-[EVE-minibrowser/*]
-Parent=Miscellaneous Browsers
-Browser=EVE-minibrowser
-IFrames=false
-Tables=false
-BackgroundSounds=false
-VBScript=false
-JavaApplets=false
-JavaScript=false
-ActiveXControls=false
-isBanned=false
-Crawler=false
-
-[Godzilla/* (Basic*; *; Commodore C=64; *; rv:1.*)*]
-Parent=Miscellaneous Browsers
-Browser=Godzilla
-
-[GreenBrowser]
-Parent=Miscellaneous Browsers
-Browser=GreenBrowser
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-CssVersion=2
-supportsCSS=true
-
-[Kopiczek/* (WyderOS*; *)]
-Parent=Miscellaneous Browsers
-Browser=Kopiczek
-Platform=WyderOS
-IFrames=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/* (*) - BrowseX (*)]
-Parent=Miscellaneous Browsers
-Browser=BrowseX
-
-[Mozilla/* (Win32;*Escape?*; ?)]
-Parent=Miscellaneous Browsers
-Browser=Escape
-Platform=Win32
-
-[Mozilla/4.0 (compatible; ibisBrowser)]
-Parent=Miscellaneous Browsers
-Browser=ibisBrowser
-
-[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) AppleWebKit/* (*) HistoryHound/*]
-Parent=Miscellaneous Browsers
-Browser=HistoryHound
-
-[NetRecorder*]
-Parent=Miscellaneous Browsers
-Browser=NetRecorder
-
-[NetSurfer*]
-Parent=Miscellaneous Browsers
-Browser=NetSurfer
-
-[ogeb browser , Version 1.1.0]
-Parent=Miscellaneous Browsers
-Browser=ogeb browser
-Version=1.1
-MajorVer=1
-MinorVer=1
-
-[SCEJ PSP BROWSER 0102pspNavigator]
-Parent=Miscellaneous Browsers
-Browser=Wipeout Pure
-
-[SlimBrowser]
-Parent=Miscellaneous Browsers
-Browser=SlimBrowser
-
-[WWW_Browser/*]
-Parent=Miscellaneous Browsers
-Browser=WWW Browser
-Version=1.69
-MajorVer=1
-MinorVer=69
-Platform=Win16
-CssVersion=3
-supportsCSS=true
-
-[*Netcraft Webserver Survey*]
-Parent=Netcraft
-Browser=Netcraft Webserver Survey
-isBanned=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Offline Browsers
-
-[Offline Browsers]
-Parent=DefaultProperties
-Browser=Offline Browsers
-Frames=true
-Tables=true
-Cookies=true
-isBanned=true
-Crawler=true
-
-[*Check&Get*]
-Parent=Offline Browsers
-Browser=Check&Get
-
-[*HTTrack*]
-Parent=Offline Browsers
-Browser=HTTrack
-
-[*MSIECrawler*]
-Parent=Offline Browsers
-Browser=IE Offline Browser
-
-[*TweakMASTER*]
-Parent=Offline Browsers
-Browser=TweakMASTER
-
-[BackStreet Browser *]
-Parent=Offline Browsers
-Browser=BackStreet Browser
-
-[Go-Ahead-Got-It*]
-Parent=Offline Browsers
-Browser=Go Ahead Got-It
-
-[iGetter/*]
-Parent=Offline Browsers
-Browser=iGetter
-
-[Teleport*]
-Parent=Offline Browsers
-Browser=Teleport
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Online Scanners
-
-[Online Scanners]
-Parent=DefaultProperties
-Browser=Online Scanners
-isBanned=true
-
-[JoeDog/* (X11; I; Siege *)]
-Parent=Online Scanners
-Browser=JoeDog
-isBanned=false
-
-[Morfeus Fucking Scanner]
-Parent=Online Scanners
-Browser=Morfeus Fucking Scanner
-
-[Mozilla/4.0 (compatible; Trend Micro tmdr 1.*]
-Parent=Online Scanners
-Browser=Trend Micro
-
-[Titanium 2005 (4.02.01)]
-Parent=Online Scanners
-Browser=Panda Antivirus Titanium
-
-[virus_detector*]
-Parent=Online Scanners
-Browser=Secure Computing Corporation
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Proxy Servers
-
-[Proxy Servers]
-Parent=DefaultProperties
-Browser=Proxy Servers
-isBanned=true
-
-[*squid*]
-Parent=Proxy Servers
-Browser=Squid
-
-[Anonymisiert*]
-Parent=Proxy Servers
-Browser=Anonymizied
-
-[Anonymizer/*]
-Parent=Proxy Servers
-Browser=Anonymizer
-
-[Anonymizied*]
-Parent=Proxy Servers
-Browser=Anonymizied
-
-[Anonymous*]
-Parent=Proxy Servers
-Browser=Anonymous
-
-[Anonymous/*]
-Parent=Proxy Servers
-Browser=Anonymous
-
-[CE-Preload]
-Parent=Proxy Servers
-Browser=CE-Preload
-
-[http://Anonymouse.org/*]
-Parent=Proxy Servers
-Browser=Anonymouse
-
-[IE/6.01 (CP/M; 8-bit*)]
-Parent=Proxy Servers
-Browser=Squid
-
-[Mozilla/* (TuringOS; Turing Machine; 0.0)]
-Parent=Proxy Servers
-Browser=Anonymizer
-
-[Mozilla/4.0 (compatible; MSIE ?.0; SaferSurf*)]
-Parent=Proxy Servers
-Browser=SaferSurf
-
-[Mozilla/5.0 (compatible; del.icio.us-thumbnails/*; *) KHTML/* (like Gecko)]
-Parent=Proxy Servers
-Browser=Yahoo!
-isBanned=true
-Crawler=true
-
-[Nutscrape]
-Parent=Proxy Servers
-Browser=Squid
-
-[Nutscrape/* (CP/M; 8-bit*)]
-Parent=Proxy Servers
-Browser=Squid
-
-[Privoxy/*]
-Parent=Proxy Servers
-Browser=Privoxy
-
-[ProxyTester*]
-Parent=Proxy Servers
-Browser=ProxyTester
-isBanned=true
-Crawler=true
-
-[SilentSurf*]
-Parent=Proxy Servers
-Browser=SilentSurf
-
-[SmallProxy*]
-Parent=Proxy Servers
-Browser=SmallProxy
-
-[Space*Bison/*]
-Parent=Proxy Servers
-Browser=Proxomitron
-
-[Sqworm/*]
-Parent=Proxy Servers
-Browser=Websense
-
-[SurfControl]
-Parent=Proxy Servers
-Browser=SurfControl
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Research Projects
-
-[Research Projects]
-Parent=DefaultProperties
-Browser=Research Projects
-isBanned=true
-Crawler=true
-
-[*research*]
-Parent=Research Projects
-
-[AcadiaUniversityWebCensusClient]
-Parent=Research Projects
-Browser=AcadiaUniversityWebCensusClient
-
-[Amico Alpha * (*) Gecko/* AmicoAlpha/*]
-Parent=Research Projects
-Browser=Amico Alpha
-
-[annotate_google; http://ponderer.org/*]
-Parent=Research Projects
-Browser=Annotate Google
-
-[CMS crawler (?http://buytaert.net/crawler/)]
-Parent=Research Projects
-
-[e-SocietyRobot(http://www.yama.info.waseda.ac.jp/~yamana/es/)]
-Parent=Research Projects
-Browser=e-SocietyRobot
-
-[Forschungsportal/*]
-Parent=Research Projects
-Browser=Forschungsportal
-
-[Gulper Web *]
-Parent=Research Projects
-Browser=Gulper Web Bot
-
-[HooWWWer/*]
-Parent=Research Projects
-Browser=HooWWWer
-
-[http://buytaert.net/crawler]
-Parent=Research Projects
-
-[inetbot/* (?http://www.inetbot.com/bot.html)]
-Parent=Research Projects
-Browser=inetbot
-
-[IRLbot/*]
-Parent=Research Projects
-Browser=IRLbot
-
-[Lachesis]
-Parent=Research Projects
-Browser=Lachesis
-
-[Mozilla/5.0 (compatible; nextthing.org/*)]
-Parent=Research Projects
-Browser=nextthing.org
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Mozilla/5.0 (compatible; Theophrastus/*)]
-Parent=Research Projects
-Browser=Theophrastus
-
-[Mozilla/5.0 (compatible; Webscan v0.*; http://otc.dyndns.org/webscan/)]
-Parent=Research Projects
-Browser=Webscan
-
-[MQbot*]
-Parent=Research Projects
-Browser=MQbot
-
-[OutfoxBot/*]
-Parent=Research Projects
-Browser=OutfoxBot
-
-[polybot?*]
-Parent=Research Projects
-Browser=Polybot
-
-[Shim?Crawler*]
-Parent=Research Projects
-Browser=Shim Crawler
-
-[Steeler/*]
-Parent=Research Projects
-Browser=Steeler
-
-[Taiga web spider]
-Parent=Research Projects
-Browser=Taiga
-
-[Theme Spider*]
-Parent=Research Projects
-Browser=Theme Spider
-
-[UofTDB_experiment* (leehyun@cs.toronto.edu)]
-Parent=Research Projects
-Browser=UofTDB Experiment
-
-[USyd-NLP-Spider*]
-Parent=Research Projects
-Browser=USyd-NLP-Spider
-
-[woriobot*]
-Parent=Research Projects
-Browser=woriobot
-
-[wwwster/* (Beta, mailto:gue@cis.uni-muenchen.de)]
-Parent=Research Projects
-Browser=wwwster
-Beta=true
-
-[Zao-Crawler]
-Parent=Research Projects
-Browser=Zao-Crawler
-
-[Zao/*]
-Parent=Research Projects
-Browser=Zao
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Rippers
-
-[Rippers]
-Parent=DefaultProperties
-Browser=Rippers
-Frames=true
-IFrames=true
-Tables=true
-isBanned=true
-Crawler=true
-
-[*grub*]
-Parent=Rippers
-Browser=grub
-
-[*ickHTTP*]
-Parent=Rippers
-Browser=IP*Works
-
-[*java*]
-Parent=Rippers
-
-[*libwww-perl*]
-Parent=Rippers
-Browser=libwww-perl
-
-[*WebGrabber*]
-Parent=Rippers
-
-[*WinHttpRequest*]
-Parent=Rippers
-Browser=WinHttp
-
-[3D-FTP/*]
-Parent=Rippers
-Browser=3D-FTP
-
-[3wGet/*]
-Parent=Rippers
-Browser=3wGet
-
-[ActiveRefresh*]
-Parent=Rippers
-Browser=ActiveRefresh
-
-[Artera (Version *)]
-Parent=Rippers
-Browser=Artera
-
-[AutoHotkey]
-Parent=Rippers
-Browser=AutoHotkey
-
-[b2w/*]
-Parent=Rippers
-Browser=b2w
-
-[BasicHTTP/*]
-Parent=Rippers
-Browser=BasicHTTP
-
-[BlockNote.Net]
-Parent=Rippers
-Browser=BlockNote.Net
-
-[CAST]
-Parent=Rippers
-Browser=CAST
-
-[CFNetwork/*]
-Parent=Rippers
-Browser=CFNetwork
-
-[CFSCHEDULE*]
-Parent=Rippers
-Browser=ColdFusion Task Scheduler
-
-[CobWeb/*]
-Parent=Rippers
-Browser=CobWeb
-
-[ColdFusion*]
-Parent=Rippers
-Browser=ColdFusion
-
-[Crawl_Application]
-Parent=Rippers
-Browser=Crawl_Application
-
-[curl/*]
-Parent=Rippers
-Browser=cURL
-
-[Custo*]
-Parent=Rippers
-Browser=Custo
-
-[DataCha0s/*]
-Parent=Rippers
-Browser=DataCha0s
-
-[DeepIndexer*]
-Parent=Rippers
-Browser=DeepIndexer
-
-[DISCo Pump *]
-Parent=Rippers
-Browser=DISCo Pump
-
-[eStyleSearch * (compatible; MSIE 6.0; Windows NT 5.0)]
-Parent=Rippers
-Browser=eStyleSearch
-Win32=true
-
-[ezic.com http agent *]
-Parent=Rippers
-Browser=Ezic.com
-
-[fetch libfetch/*]
-Parent=Rippers
-
-[FGet*]
-Parent=Rippers
-Browser=FGet
-
-[Flaming AttackBot*]
-Parent=Rippers
-Browser=Flaming AttackBot
-
-[Foobot*]
-Parent=Rippers
-Browser=Foobot
-
-[GameSpyHTTP/*]
-Parent=Rippers
-Browser=GameSpyHTTP
-
-[gnome-vfs/*]
-Parent=Rippers
-Browser=gnome-vfs
-
-[Harvest/*]
-Parent=Rippers
-Browser=Harvest
-
-[hcat/*]
-Parent=Rippers
-Browser=hcat
-
-[HLoader]
-Parent=Rippers
-Browser=HLoader
-
-[Holmes/*]
-Parent=Rippers
-Browser=Holmes
-
-[HTMLParser/*]
-Parent=Rippers
-Browser=HTMLParser
-
-[http generic]
-Parent=Rippers
-Browser=http generic
-
-[httpclient*]
-Parent=Rippers
-
-[httperf/*]
-Parent=Rippers
-Browser=httperf
-
-[HTTPFetch/*]
-Parent=Rippers
-Browser=HTTPFetch
-
-[HTTPGrab]
-Parent=Rippers
-Browser=HTTPGrab
-
-[HttpSession]
-Parent=Rippers
-Browser=HttpSession
-
-[httpunit/*]
-Parent=Rippers
-Browser=HttpUnit
-
-[ICE_GetFile]
-Parent=Rippers
-Browser=ICE_GetFile
-
-[iexplore.exe]
-Parent=Rippers
-
-[Inet - Eureka App]
-Parent=Rippers
-Browser=Inet - Eureka App
-
-[INetURL/*]
-Parent=Rippers
-Browser=INetURL
-
-[InetURL:/*]
-Parent=Rippers
-Browser=InetURL
-
-[Internet Exploiter/*]
-Parent=Rippers
-
-[Internet Explore *]
-Parent=Rippers
-Browser=Fake IE
-
-[Internet Explorer *]
-Parent=Rippers
-Browser=Fake IE
-
-[IP*Works!*/*]
-Parent=Rippers
-Browser=IP*Works!
-
-[IrssiUrlLog/*]
-Parent=Rippers
-Browser=IrssiUrlLog
-
-[JPluck/*]
-Parent=Rippers
-Browser=JPluck
-
-[Kapere (http://www.kapere.com)]
-Parent=Rippers
-Browser=Kapere
-
-[LeechFTP]
-Parent=Rippers
-Browser=LeechFTP
-
-[LeechGet*]
-Parent=Rippers
-Browser=LeechGet
-
-[libcurl-agent/*]
-Parent=Rippers
-Browser=libcurl
-
-[libWeb/clsHTTP*]
-Parent=Rippers
-Browser=libWeb/clsHTTP
-
-[lwp*]
-Parent=Rippers
-
-[MFC_Tear_Sample]
-Parent=Rippers
-Browser=MFC_Tear_Sample
-
-[Moozilla]
-Parent=Rippers
-Browser=Moozilla
-
-[MovableType/*]
-Parent=Rippers
-Browser=MovableType Web Log
-
-[Mozilla/2.0 (compatible; NEWT ActiveX; Win32)]
-Parent=Rippers
-Browser=NEWT ActiveX
-Platform=Win32
-
-[Mozilla/3.0 (compatible)]
-Parent=Rippers
-
-[Mozilla/3.0 (compatible; Indy Library)]
-Parent=Rippers
-Cookies=true
-
-[Mozilla/3.01 (compatible;)]
-Parent=Rippers
-
-[Mozilla/4.0 (compatible; BorderManager*)]
-Parent=Rippers
-Browser=Novell BorderManager
-
-[Mozilla/4.0 (compatible;)]
-Parent=Rippers
-
-[Mozilla/5.0 (compatible; IPCheck Server Monitor*)]
-Parent=Rippers
-Browser=IPCheck Server Monitor
-
-[OCN-SOC/*]
-Parent=Rippers
-Browser=OCN-SOC
-
-[Offline Explorer*]
-Parent=Rippers
-Browser=Offline Explorer
-
-[Open Web Analytics Bot*]
-Parent=Rippers
-Browser=Open Web Analytics Bot
-
-[OSSProxy*]
-Parent=Rippers
-Browser=OSSProxy
-
-[Pageload*]
-Parent=Rippers
-Browser=PageLoad
-
-[PageNest/*]
-Parent=Rippers
-Browser=PageNest
-
-[pavuk/*]
-Parent=Rippers
-Browser=Pavuk
-
-[PEAR HTTP_Request*]
-Parent=Rippers
-Browser=PEAR-PHP
-
-[PHP*]
-Parent=Rippers
-Browser=PHP
-
-[PigBlock (Windows NT 5.1; U)*]
-Parent=Rippers
-Browser=PigBlock
-Win32=true
-
-[Pockey*]
-Parent=Rippers
-Browser=Pockey-GetHTML
-
-[POE-Component-Client-HTTP/*]
-Parent=Rippers
-Browser=POE-Component-Client-HTTP
-
-[PycURL/*]
-Parent=Rippers
-Browser=PycURL
-
-[Python*]
-Parent=Rippers
-Browser=Python
-
-[RepoMonkey*]
-Parent=Rippers
-Browser=RepoMonkey
-
-[SBL-BOT*]
-Parent=Rippers
-Browser=BlackWidow
-
-[ScoutAbout*]
-Parent=Rippers
-Browser=ScoutAbout
-
-[sherlock/*]
-Parent=Rippers
-Browser=Sherlock
-
-[SiteParser/*]
-Parent=Rippers
-Browser=SiteParser
-
-[SiteSnagger*]
-Parent=Rippers
-Browser=SiteSnagger
-
-[SiteSucker/*]
-Parent=Rippers
-Browser=SiteSucker
-
-[SiteWinder*]
-Parent=Rippers
-Browser=SiteWinder
-
-[Snoopy*]
-Parent=Rippers
-Browser=Snoopy
-
-[SOFTWING_TEAR_AGENT*]
-Parent=Rippers
-Browser=AspTear
-
-[SuperHTTP/*]
-Parent=Rippers
-Browser=SuperHTTP
-
-[Tcl http client package*]
-Parent=Rippers
-Browser=Tcl http client package
-
-[Twisted PageGetter]
-Parent=Rippers
-Browser=Twisted PageGetter
-
-[URL2File/*]
-Parent=Rippers
-Browser=URL2File
-
-[UtilMind HTTPGet]
-Parent=Rippers
-Browser=UtilMind HTTPGet
-
-[VCI WebViewer*]
-Parent=Rippers
-Browser=VCI WebViewer
-
-[W3CRobot/*]
-Parent=Rippers
-Browser=W3CRobot
-
-[Web Downloader*]
-Parent=Rippers
-Browser=Web Downloader
-
-[Web Downloader/*]
-Parent=Rippers
-Browser=Web Downloader
-
-[Web Magnet*]
-Parent=Rippers
-Browser=Web Magnet
-
-[WebAuto/*]
-Parent=Rippers
-
-[webbandit/*]
-Parent=Rippers
-Browser=webbandit
-
-[WebCopier*]
-Parent=Rippers
-Browser=WebCopier
-
-[WebDownloader*]
-Parent=Rippers
-Browser=WebDownloader
-
-[WebFetch]
-Parent=Rippers
-Browser=WebFetch
-
-[webfetch/*]
-Parent=Rippers
-Browser=WebFetch
-
-[WebGatherer*]
-Parent=Rippers
-Browser=WebGatherer
-
-[WebGet]
-Parent=Rippers
-Browser=WebGet
-
-[WebReaper*]
-Parent=Rippers
-Browser=WebReaper
-
-[WebRipper]
-Parent=Rippers
-Browser=WebRipper
-
-[WebSauger*]
-Parent=Rippers
-Browser=WebSauger
-
-[Website Downloader*]
-Parent=Rippers
-Browser=Website Downloader
-
-[Website eXtractor*]
-Parent=Rippers
-Browser=Website eXtractor
-
-[Website Quester]
-Parent=Rippers
-Browser=Website Quester
-
-[WebsiteExtractor*]
-Parent=Rippers
-Browser=Website eXtractor
-
-[WebSnatcher*]
-Parent=Rippers
-Browser=WebSnatcher
-
-[Webster Pro*]
-Parent=Rippers
-Browser=Webster Pro
-
-[WebStripper*]
-Parent=Rippers
-Browser=WebStripper
-
-[WebWhacker*]
-Parent=Rippers
-Browser=WebWhacker
-
-[WinScripter iNet Tools]
-Parent=Rippers
-Browser=WinScripter iNet Tools
-
-[WWW-Mechanize/*]
-Parent=Rippers
-Browser=WWW-Mechanize
-
-[Zend_Http_Client]
-Parent=Rippers
-Browser=Zend_Http_Client
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Site Monitors
-
-[Site Monitors]
-Parent=DefaultProperties
-Browser=Site Monitors
-Cookies=true
-isBanned=true
-Crawler=true
-
-[*EasyRider*]
-Parent=Site Monitors
-Browser=EasyRider
-
-[*maxamine.com--robot*]
-Parent=Site Monitors
-Browser=maxamine.com--robot
-isBanned=true
-
-[*WebMon ?.*]
-Parent=Site Monitors
-Browser=WebMon
-
-[Kenjin Spider*]
-Parent=Site Monitors
-Browser=Kenjin Spider
-
-[Kevin http://*]
-Parent=Site Monitors
-Browser=Kevin
-isBanned=true
-
-[Mozilla/4.0 (compatible; ChangeDetection/*]
-Parent=Site Monitors
-Browser=ChangeDetection
-
-[Myst Monitor Service v*]
-Parent=Site Monitors
-Browser=Myst Monitor Service
-
-[Net Probe]
-Parent=Site Monitors
-Browser=Net Probe
-
-[NetMechanic*]
-Parent=Site Monitors
-Browser=NetMechanic
-
-[NetReality*]
-Parent=Site Monitors
-Browser=NetReality
-
-[Pingdom GIGRIB*]
-Parent=Site Monitors
-Browser=Pingdom
-
-[Site Valet Online*]
-Parent=Site Monitors
-Browser=Site Valet
-isBanned=true
-
-[SITECHECKER]
-Parent=Site Monitors
-Browser=SITECHECKER
-
-[sitemonitor@dnsvr.com/*]
-Parent=Site Monitors
-Browser=ZoneEdit Failover Monitor
-isBanned=false
-
-[UpTime Checker*]
-Parent=Site Monitors
-Browser=UpTime Checker
-
-[URL Control*]
-Parent=Site Monitors
-Browser=URL Control
-
-[URL_Access/*]
-Parent=Site Monitors
-
-[URLCHECK]
-Parent=Site Monitors
-Browser=URLCHECK
-
-[URLy Warning*]
-Parent=Site Monitors
-Browser=URLy Warning
-
-[Webcheck *]
-Parent=Site Monitors
-Browser=Webcheck
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[WebPatrol/*]
-Parent=Site Monitors
-Browser=WebPatrol
-
-[websitepulse checker/*]
-Parent=Site Monitors
-Browser=websitepulse checker
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Social Bookmarkers
-
-[Social Bookmarkers]
-Parent=DefaultProperties
-Browser=Social Bookmarkers
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-
-[BookmarkBase(2/;http://bookmarkbase.com)]
-Parent=Social Bookmarkers
-Browser=BookmarkBase
-
-[Cocoal.icio.us/1.0 (v43) (Mac OS X; http://www.scifihifi.com/cocoalicious)]
-Parent=Social Bookmarkers
-Browser=Cocoalicious
-
-[Mozilla/5.0 (compatible; FriendFeedBot/0.*; Http://friendfeed.com/about/bot)]
-Parent=Social Bookmarkers
-Browser=FriendFeedBot
-
-[Twitturly*]
-Parent=Social Bookmarkers
-Browser=Twitturly
-
-[WinkBot/*]
-Parent=Social Bookmarkers
-Browser=WinkBot
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Translators
-
-[Translators]
-Parent=DefaultProperties
-Browser=Translators
-Frames=true
-Tables=true
-Cookies=true
-
-[Seram Server]
-Parent=Translators
-Browser=Seram Server
-
-[TeragramWebcrawler/*]
-Parent=Translators
-Browser=TeragramWebcrawler
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[WebIndexer/* (Web Indexer; *)]
-Parent=Translators
-Browser=WorldLingo
-
-[WebTrans]
-Parent=Translators
-Browser=WebTrans
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Version Checkers
-
-[Version Checkers]
-Parent=DefaultProperties
-Browser=Version Checkers
-Crawler=true
-
-[Automated Browscap.ini Updater. To report issues contact us at http://www.skycomp.ca]
-Parent=Version Checkers
-Browser=Automated Browscap.ini Updater
-
-[BMC Link Validator (http://www.briansmodelcars.com/links/)]
-Parent=Version Checkers
-Browser=BMC Link Validator
-MajorVer=1
-MinorVer=0
-Platform=Win2000
-
-[Browscap updater]
-Parent=Version Checkers
-Browser=Browscap updater
-
-[BrowscapUpdater1.0]
-Parent=Version Checkers
-
-[Browser Capabilities Project (http://browsers.garykeith.com; http://browsers.garykeith.com/sitemail/contact-me.asp)]
-Parent=Version Checkers
-Browser=Gary Keith's Version Checker
-
-[Browser Capabilities Project AutoDownloader]
-Parent=Version Checkers
-Browser=TKC AutoDownloader
-
-[browsers.garykeith.com browscap.ini bot BETA]
-Parent=Version Checkers
-
-[Code Sample Web Client]
-Parent=Version Checkers
-Browser=Code Sample Web Client
-
-[Desktop Sidebar*]
-Parent=Version Checkers
-Browser=Desktop Sidebar
-isBanned=true
-
-[Mono Browser Capabilities Updater*]
-Parent=Version Checkers
-Browser=Mono Browser Capabilities Updater
-isBanned=true
-
-[Rewmi/*]
-Parent=Version Checkers
-isBanned=true
-
-[Subtext Version 1.9* - http://subtextproject.com/ (Microsoft Windows NT 5.2.*)]
-Parent=Version Checkers
-Browser=Subtext
-
-[TherapeuticResearch]
-Parent=Version Checkers
-Browser=TherapeuticResearch
-
-[UpdateBrowscap*]
-Parent=Version Checkers
-Browser=UpdateBrowscap
-
-[www.garykeith.com browscap.ini bot*]
-Parent=Version Checkers
-Browser=clarkson.edu
-
-[www.substancia.com AutoHTTPAgent (ver *)]
-Parent=Version Checkers
-Browser=Substância
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Become
-
-[Become]
-Parent=DefaultProperties
-Browser=Become
-Frames=true
-Tables=true
-isSyndicationReader=true
-Crawler=true
-
-[*BecomeBot/*]
-Parent=Become
-Browser=BecomeBot
-
-[*BecomeBot@exava.com*]
-Parent=Become
-Browser=BecomeBot
-
-[*Exabot@exava.com*]
-Parent=Become
-Browser=Exabot
-
-[MonkeyCrawl/*]
-Parent=Become
-Browser=MonkeyCrawl
-
-[Mozilla/5.0 (compatible; BecomeJPBot/2.3; *)]
-Parent=Become
-Browser=BecomeJPBot
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Blue Coat Systems
-
-[Blue Coat Systems]
-Parent=DefaultProperties
-Browser=Blue Coat Systems
-isBanned=true
-Crawler=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Abusers
-
-[Browscap Abusers]
-Parent=DefaultProperties
-Browser=Browscap Abusers
-isBanned=true
-
-[Apple-PubSub/*]
-Parent=Browscap Abusers
-Browser=Apple-PubSub
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FeedHub
-
-[FeedHub]
-Parent=DefaultProperties
-Browser=FeedHub
-isSyndicationReader=true
-
-[FeedHub FeedDiscovery/1.0 (http://www.feedhub.com)]
-Parent=FeedHub
-Browser=FeedHub FeedDiscovery
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[FeedHub FeedFetcher/1.0 (http://www.feedhub.com)]
-Parent=FeedHub
-Browser=FeedHub FeedFetcher
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[FeedHub MetaDataFetcher/1.0 (http://www.feedhub.com)]
-Parent=FeedHub
-Browser=FeedHub MetaDataFetcher
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Internet Content Rating Association]
-Parent=DefaultProperties
-Browser=
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-Crawler=true
-
-[ICRA_label_generator/1.?]
-Parent=Internet Content Rating Association
-Browser=ICRA_label_generator
-
-[ICRA_Semantic_spider/0.?]
-Parent=Internet Content Rating Association
-Browser=ICRA_Semantic_spider
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NameProtect
-
-[NameProtect]
-Parent=DefaultProperties
-Browser=NameProtect
-isBanned=true
-Crawler=true
-
-[abot/*]
-Parent=NameProtect
-Browser=NameProtect
-
-[NP/*]
-Parent=NameProtect
-Browser=NameProtect
-
-[NPBot*]
-Parent=NameProtect
-Browser=NameProtect
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netcraft
-
-[Netcraft]
-Parent=DefaultProperties
-Browser=Netcraft
-isBanned=true
-Crawler=true
-
-[*Netcraft Web Server Survey*]
-Parent=Netcraft
-Browser=Netcraft Webserver Survey
-isBanned=true
-
-[Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; info@netcraft.com)]
-Parent=Netcraft
-Browser=NetcraftSurveyAgent
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NewsGator
-
-[NewsGator]
-Parent=DefaultProperties
-Browser=NewsGator
-isSyndicationReader=true
-
-[MarsEdit*]
-Parent=NewsGator
-Browser=MarsEdit
-
-[NetNewsWire*/*]
-Parent=NewsGator
-Browser=NetNewsWire
-Platform=MacOSX
-
-[NewsFire/*]
-Parent=NewsGator
-Browser=NewsFire
-
-[NewsGator FetchLinks extension/*]
-Parent=NewsGator
-Browser=NewsGator FetchLinks
-
-[NewsGator/*]
-Parent=NewsGator
-Browser=NewsGator
-isBanned=true
-
-[NewsGatorOnline/*]
-Parent=NewsGator
-Browser=NewsGatorOnline
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.2
-
-[Chrome 0.2]
-Parent=DefaultProperties
-Browser=Chrome
-Version=0.2
-MinorVer=2
-Beta=true
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*]
-Parent=Chrome 0.2
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*]
-Parent=Chrome 0.2
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*]
-Parent=Chrome 0.2
-Platform=WinVista
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.3
-
-[Chrome 0.3]
-Parent=DefaultProperties
-Browser=Chrome
-Version=0.3
-MinorVer=3
-Beta=true
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
-Parent=Chrome 0.3
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
-Parent=Chrome 0.3
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
-Parent=Chrome 0.3
-Platform=WinVista
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.4
-
-[Chrome 0.4]
-Parent=DefaultProperties
-Browser=Chrome
-Version=0.4
-MinorVer=4
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
-Parent=Chrome 0.4
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
-Parent=Chrome 0.4
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
-Parent=Chrome 0.4
-Platform=WinVista
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.5
-
-[Chrome 0.5]
-Parent=DefaultProperties
-Browser=Chrome
-Version=0.5
-MinorVer=5
-Beta=true
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*]
-Parent=Chrome 0.5
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*]
-Parent=Chrome 0.5
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*]
-Parent=Chrome 0.5
-Platform=WinVista
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 1.0
-
-[Chrome 1.0]
-Parent=DefaultProperties
-Browser=Chrome
-Version=1.0
-MajorVer=1
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
-Parent=Chrome 1.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
-Parent=Chrome 1.0
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
-Parent=Chrome 1.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
-Parent=Chrome 1.0
-Platform=Win7
-
-[Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
-Parent=Chrome 1.0
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 2.0
-
-[Chrome 2.0]
-Parent=DefaultProperties
-Browser=Chrome
-Version=2.0
-MajorVer=2
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
-Parent=Chrome 2.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
-Parent=Chrome 2.0
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
-Parent=Chrome 2.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
-Parent=Chrome 2.0
-Platform=Win7
-
-[Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
-Parent=Chrome 2.0
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 3.0
-
-[Chrome 3.0]
-Parent=DefaultProperties
-Browser=Chrome
-Version=3.0
-MajorVer=3
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
-Parent=Chrome 3.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
-Parent=Chrome 3.0
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
-Parent=Chrome 3.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
-Parent=Chrome 3.0
-Platform=Win7
-
-[Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
-Parent=Chrome 3.0
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Code
-
-[Google Code]
-Parent=DefaultProperties
-Browser=Google Code
-Tables=true
-Cookies=true
-JavaApplets=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.2
-
-[Iron 0.2]
-Parent=DefaultProperties
-Browser=Iron
-Version=0.2
-MinorVer=2
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
-Parent=Iron 0.2
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
-Parent=Iron 0.2
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
-Parent=Iron 0.2
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.3
-
-[Iron 0.3]
-Parent=DefaultProperties
-Browser=Iron
-Version=0.3
-MinorVer=3
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
-Parent=Iron 0.3
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
-Parent=Iron 0.3
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
-Parent=Iron 0.3
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.4
-
-[Iron 0.4]
-Parent=DefaultProperties
-Browser=Iron
-Version=0.4
-MinorVer=4
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
-Parent=Iron 0.4
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
-Parent=Iron 0.4
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
-Parent=Iron 0.4
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iPod
-
-[iPod]
-Parent=DefaultProperties
-Browser=iPod
-Platform=iPhone OSX
-isMobileDevice=true
-
-[Mozilla/5.0 (iPod; U; *Mac OS X; *) AppleWebKit/* (*) Version/3.0 Mobile/* Safari/*]
-Parent=iPod
-Version=3.0
-MajorVer=3
-MinorVer=0
-Platform=MacOSX
-
-[Mozilla/5.0 (iPod; U; CPU iPhone OS 2_2 like Mac OS X; en-us) AppleWebKit/* (KHTML, like Gecko) Mobile/*]
-Parent=iPod
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iTunes
-
-[iTunes]
-Parent=DefaultProperties
-Browser=iTunes
-Platform=iPhone OSX
-
-[iTunes/* (Windows; ?)]
-Parent=iTunes
-Browser=iTunes
-Platform=Win32
-Win32=true
-
-[MOT-* iTunes/* MIB/* Profile/MIDP-* Configuration/CLDC-* UP.Link/*]
-Parent=iTunes
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Media Players
-
-[Media Players]
-Parent=DefaultProperties
-Browser=Media Players
-Cookies=true
-
-[Microsoft NetShow(TM) Player with RealVideo(R)]
-Parent=Media Players
-Browser=Microsoft NetShow
-
-[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; *) AppleWebKit/* RealPlayer]
-Parent=Media Players
-Browser=RealPlayer
-Platform=MacOSX
-
-[MPlayer 0.9*]
-Parent=Media Players
-Browser=MPlayer
-Version=0.9
-MajorVer=0
-MinorVer=9
-
-[MPlayer 1.*]
-Parent=Media Players
-Browser=MPlayer
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[MPlayer HEAD CVS]
-Parent=Media Players
-Browser=MPlayer
-
-[RealPlayer*]
-Parent=Media Players
-Browser=RealPlayer
-
-[RMA/*]
-Parent=Media Players
-Browser=RMA
-
-[VLC media player*]
-Parent=Media Players
-Browser=VLC
-
-[vobsub]
-Parent=Media Players
-Browser=vobsub
-isBanned=true
-
-[WinampMPEG/*]
-Parent=Media Players
-Browser=WinAmp
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nintendo
-
-[Nintendo Wii]
-Parent=DefaultProperties
-Browser=
-isMobileDevice=true
-
-[Opera/* (Nintendo DSi; Opera/*; *; *)]
-Parent=Nintendo Wii
-Browser=DSi
-
-[Opera/* (Nintendo Wii; U; *)]
-Parent=Nintendo Wii
-Browser=Wii
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows Media Player
-
-[Windows Media Player]
-Parent=DefaultProperties
-Browser=Windows Media Player
-Cookies=true
-
-[NSPlayer/10.*]
-Parent=Windows Media Player
-Version=10.0
-MajorVer=10
-MinorVer=0
-
-[NSPlayer/11.*]
-Parent=Windows Media Player
-Browser=Windows Media Player
-Version=11.0
-MajorVer=11
-MinorVer=0
-
-[NSPlayer/4.*]
-Parent=Windows Media Player
-Browser=Windows Media Player
-Version=4.0
-MajorVer=4
-MinorVer=0
-
-[NSPlayer/7.*]
-Parent=Windows Media Player
-Browser=Windows Media Player
-Version=7.0
-MajorVer=7
-MinorVer=0
-
-[NSPlayer/8.*]
-Parent=Windows Media Player
-Browser=Windows Media Player
-Version=8.0
-MajorVer=8
-MinorVer=0
-
-[NSPlayer/9.*]
-Parent=Windows Media Player
-Browser=Windows Media Player
-Version=9.0
-MajorVer=9
-MinorVer=0
-
-[Windows-Media-Player/10.*]
-Parent=Windows Media Player
-Browser=Windows-Media-Player
-Version=10.0
-MajorVer=10
-MinorVer=0
-Win32=true
-
-[Windows-Media-Player/11.*]
-Parent=Windows Media Player
-Version=11.0
-MajorVer=11
-MinorVer=0
-Win32=true
-
-[Windows-Media-Player/7.*]
-Parent=Windows Media Player
-Browser=Windows Media Player
-Version=7.0
-MajorVer=7
-MinorVer=0
-Win32=true
-
-[Windows-Media-Player/8.*]
-Parent=Windows Media Player
-Browser=Windows Media Player
-Version=8.0
-MajorVer=8
-MinorVer=0
-Win32=true
-
-[Windows-Media-Player/9.*]
-Parent=Windows Media Player
-Version=9.0
-MajorVer=9
-MinorVer=0
-Win32=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Zune
-
-[Zune]
-Parent=DefaultProperties
-Browser=Zune
-Cookies=true
-
-[Mozilla/4.0 (compatible; MSIE ?.0; *Zune 2.0*)*]
-Parent=Zune
-Version=2.0
-MajorVer=2
-MinorVer=0
-
-[Mozilla/4.0 (compatible; MSIE ?.0; *Zune 2.5*)*]
-Parent=Zune
-Version=2.5
-MajorVer=2
-MinorVer=5
-
-[Mozilla/4.0 (compatible; MSIE ?.0; *Zune 3.0*)*]
-Parent=Zune
-Version=3.0
-MajorVer=3
-MinorVer=0
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.0
-
-[QuickTime 7.0]
-Parent=DefaultProperties
-Browser=QuickTime
-Version=7.0
-MajorVer=7
-Cookies=true
-
-[QuickTime (qtver=7.0*;cpu=PPC;os=Mac 10.*)]
-Parent=QuickTime 7.0
-Platform=MacOSX
-
-[QuickTime (qtver=7.0*;cpu=PPC;os=Mac 9.*)]
-Parent=QuickTime 7.0
-Platform=MacPPC
-
-[QuickTime (qtver=7.0*;os=Windows 95*)]
-Parent=QuickTime 7.0
-Platform=Win95
-Win32=true
-
-[QuickTime (qtver=7.0*;os=Windows 98*)]
-Parent=QuickTime 7.0
-Platform=Win98
-Win32=true
-
-[QuickTime (qtver=7.0*;os=Windows Me*)]
-Parent=QuickTime 7.0
-Platform=WinME
-Win32=true
-
-[QuickTime (qtver=7.0*;os=Windows NT 4.0*)]
-Parent=QuickTime 7.0
-Platform=WinNT
-Win32=true
-
-[QuickTime (qtver=7.0*;os=Windows NT 5.0*)]
-Parent=QuickTime 7.0
-Platform=Win2000
-Win32=true
-
-[QuickTime (qtver=7.0*;os=Windows NT 5.1*)]
-Parent=QuickTime 7.0
-Platform=WinXP
-Win32=true
-
-[QuickTime (qtver=7.0*;os=Windows NT 5.2*)]
-Parent=QuickTime 7.0
-Platform=Win2003
-Win32=true
-
-[QuickTime/7.0.* (qtver=7.0.*;*;os=Mac 10.*)*]
-Parent=QuickTime 7.0
-Platform=MacOSX
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.1
-
-[QuickTime 7.1]
-Parent=DefaultProperties
-Browser=QuickTime
-Version=7.1
-MajorVer=7
-MinorVer=1
-Cookies=true
-
-[QuickTime (qtver=7.1*;cpu=PPC;os=Mac 10.*)]
-Parent=QuickTime 7.1
-Platform=MacOSX
-
-[QuickTime (qtver=7.1*;cpu=PPC;os=Mac 9.*)]
-Parent=QuickTime 7.1
-Platform=MacPPC
-
-[QuickTime (qtver=7.1*;os=Windows 98*)]
-Parent=QuickTime 7.1
-Platform=Win98
-Win32=true
-
-[QuickTime (qtver=7.1*;os=Windows NT 4.0*)]
-Parent=QuickTime 7.1
-Platform=WinNT
-Win32=true
-
-[QuickTime (qtver=7.1*;os=Windows NT 5.0*)]
-Parent=QuickTime 7.1
-Platform=Win2000
-Win32=true
-
-[QuickTime (qtver=7.1*;os=Windows NT 5.1*)]
-Parent=QuickTime 7.1
-Platform=WinXP
-Win32=true
-
-[QuickTime (qtver=7.1*;os=Windows NT 5.2*)]
-Parent=QuickTime 7.1
-Platform=Win2003
-Win32=true
-
-[QuickTime/7.1.* (qtver=7.1.*;*;os=Mac 10.*)*]
-Parent=QuickTime 7.1
-Platform=MacOSX
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.2
-
-[QuickTime 7.2]
-Parent=DefaultProperties
-Browser=QuickTime
-Version=7.2
-MajorVer=7
-MinorVer=2
-Platform=MacOSX
-Cookies=true
-
-[QuickTime (qtver=7.2*;cpu=PPC;os=Mac 10.*)]
-Parent=QuickTime 7.2
-Platform=MacOSX
-
-[QuickTime (qtver=7.2*;cpu=PPC;os=Mac 9.*)]
-Parent=QuickTime 7.2
-Platform=MacPPC
-
-[QuickTime (qtver=7.2*;os=Windows 98*)]
-Parent=QuickTime 7.2
-Platform=Win98
-Win32=true
-
-[QuickTime (qtver=7.2*;os=Windows NT 4.0*)]
-Parent=QuickTime 7.2
-Platform=WinNT
-Win32=true
-
-[QuickTime (qtver=7.2*;os=Windows NT 5.0*)]
-Parent=QuickTime 7.2
-Platform=Win2000
-Win32=true
-
-[QuickTime (qtver=7.2*;os=Windows NT 5.1*)]
-Parent=QuickTime 7.2
-Platform=WinXP
-Win32=true
-
-[QuickTime (qtver=7.2*;os=Windows NT 5.2*)]
-Parent=QuickTime 7.2
-Platform=Win2003
-Win32=true
-
-[QuickTime/7.2.* (qtver=7.2.*;*;os=Mac 10.*)*]
-Parent=QuickTime 7.2
-Platform=MacOSX
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.3
-
-[QuickTime 7.3]
-Parent=DefaultProperties
-Browser=QuickTime
-Version=7.3
-MajorVer=7
-MinorVer=3
-Platform=MacOSX
-Cookies=true
-
-[QuickTime (qtver=7.3*;cpu=PPC;os=Mac 10.*)]
-Parent=QuickTime 7.3
-Platform=MacOSX
-
-[QuickTime (qtver=7.3*;cpu=PPC;os=Mac 9.*)]
-Parent=QuickTime 7.3
-Platform=MacPPC
-
-[QuickTime (qtver=7.3*;os=Windows 98*)]
-Parent=QuickTime 7.3
-Platform=Win98
-Win32=true
-
-[QuickTime (qtver=7.3*;os=Windows NT 4.0*)]
-Parent=QuickTime 7.3
-Platform=WinNT
-Win32=true
-
-[QuickTime (qtver=7.3*;os=Windows NT 5.0*)]
-Parent=QuickTime 7.3
-Platform=Win2000
-Win32=true
-
-[QuickTime (qtver=7.3*;os=Windows NT 5.1*)]
-Parent=QuickTime 7.3
-Platform=WinXP
-Win32=true
-
-[QuickTime (qtver=7.3*;os=Windows NT 5.2*)]
-Parent=QuickTime 7.3
-Platform=Win2003
-Win32=true
-
-[QuickTime/7.3.* (qtver=7.3.*;*;os=Mac 10.*)*]
-Parent=QuickTime 7.3
-Platform=MacOSX
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.4
-
-[QuickTime 7.4]
-Parent=DefaultProperties
-Browser=QuickTime
-Version=7.4
-MajorVer=7
-MinorVer=4
-Platform=MacOSX
-Cookies=true
-
-[QuickTime (qtver=7.4*;cpu=PPC;os=Mac 10.*)]
-Parent=QuickTime 7.4
-Platform=MacOSX
-
-[QuickTime (qtver=7.4*;cpu=PPC;os=Mac 9.*)]
-Parent=QuickTime 7.4
-Platform=MacPPC
-
-[QuickTime (qtver=7.4*;os=Windows 98*)]
-Parent=QuickTime 7.4
-Platform=Win98
-Win32=true
-
-[QuickTime (qtver=7.4*;os=Windows NT 4.0*)]
-Parent=QuickTime 7.4
-Platform=WinNT
-Win32=true
-
-[QuickTime (qtver=7.4*;os=Windows NT 5.0*)]
-Parent=QuickTime 7.4
-Platform=Win2000
-Win32=true
-
-[QuickTime (qtver=7.4*;os=Windows NT 5.1*)]
-Parent=QuickTime 7.4
-Platform=WinXP
-Win32=true
-
-[QuickTime (qtver=7.4*;os=Windows NT 5.2*)]
-Parent=QuickTime 7.4
-Platform=Win2003
-Win32=true
-
-[QuickTime/7.4.* (qtver=7.4.*;*;os=Mac 10.*)*]
-Parent=QuickTime 7.4
-Platform=MacOSX
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Android
-
-[Android]
-Parent=DefaultProperties
-Browser=Android
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-isMobileDevice=true
-
-[Mozilla/5.0 (Linux; U; Android *; *) AppleWebKit/* (KHTML, like Gecko) Safari/*]
-Parent=Android
-Browser=Android
-Platform=Linux
-isMobileDevice=true
-
-[Mozilla/5.0 (Linux; U; Android *; *) AppleWebKit/* (KHTML, like Gecko) Version/3.0.* Mobile Safari/*]
-Parent=Android
-Browser=Android
-Platform=Linux
-isMobileDevice=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BlackBerry
-
-[BlackBerry]
-Parent=DefaultProperties
-Browser=BlackBerry
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-isMobileDevice=true
-
-[*BlackBerry*]
-Parent=BlackBerry
-
-[*BlackBerrySimulator/*]
-Parent=BlackBerry
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Handspring Blazer
-
-[Blazer]
-Parent=DefaultProperties
-Browser=Handspring Blazer
-Platform=Palm
-Frames=true
-Tables=true
-Cookies=true
-isMobileDevice=true
-
-[Mozilla/4.0 (compatible; MSIE 6.0; Windows 95; PalmSource; Blazer 3.0) 16;160x160]
-Parent=Blazer
-Version=3.0
-MajorVer=3
-MinorVer=0
-
-[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.0) 16;320x448]
-Parent=Blazer
-Version=4.0
-MajorVer=4
-MinorVer=0
-
-[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.1) 16;320x320]
-Parent=Blazer
-Version=4.1
-MajorVer=4
-MinorVer=1
-
-[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.2) 16;320x320]
-Parent=Blazer
-Version=4.2
-MajorVer=4
-MinorVer=2
-
-[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.4) 16;320x320]
-Parent=Blazer
-Version=4.4
-MajorVer=4
-MinorVer=4
-
-[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.5) 16;320x320]
-Parent=Blazer
-Version=4.5
-MajorVer=4
-MinorVer=5
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DoCoMo
-
-[DoCoMo]
-Parent=DefaultProperties
-Browser=DoCoMo
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-isMobileDevice=true
-
-[DoCoMo/1.0*]
-Parent=DoCoMo
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=WAP
-
-[DoCoMo/2.0*]
-Parent=DoCoMo
-Version=2.0
-MajorVer=2
-MinorVer=0
-Platform=WAP
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile
-
-[IEMobile]
-Parent=DefaultProperties
-Browser=IEMobile
-Platform=WinCE
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-VBScript=true
-JavaScript=true
-ActiveXControls=true
-isMobileDevice=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.*)*]
-Parent=IEMobile
-Version=6.0
-MajorVer=6
-MinorVer=0
-
-[Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.*)*]
-Parent=IEMobile
-Version=7.0
-MajorVer=7
-MinorVer=0
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iPhone
-
-[iPhone]
-Parent=DefaultProperties
-Browser=iPhone
-Platform=iPhone OSX
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-isMobileDevice=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/4.0 (iPhone; *)]
-Parent=iPhone
-
-[Mozilla/4.0 (iPhone; U; CPU like Mac OS X; *)]
-Parent=iPhone
-
-[Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
-Parent=iPhone
-Browser=iPhone Simulator
-Version=3.1
-MajorVer=3
-MinorVer=1
-
-[Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_0_1 like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
-Parent=iPhone
-Browser=iPhone Simulator
-Version=3.1
-MajorVer=3
-MinorVer=1
-
-[Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_1 like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
-Parent=iPhone
-Browser=iPhone Simulator
-Version=3.1
-MajorVer=3
-MinorVer=1
-
-[Mozilla/5.0 (iPhone)]
-Parent=iPhone
-
-[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)]
-Parent=iPhone
-Version=3.1
-MajorVer=3
-MinorVer=1
-
-[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
-Parent=iPhone
-Version=3.1
-MajorVer=3
-MinorVer=1
-
-[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_0* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
-Parent=iPhone
-Version=3.1
-MajorVer=3
-MinorVer=1
-
-[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_0_2 like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)]
-Parent=iPhone
-
-[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_1 like Mac OS X; *)*]
-Parent=iPhone
-
-[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_2_1 like Mac OS X; *)]
-Parent=iPhone
-
-[Mozilla/5.0 (iPhone; U; CPU like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.0 Mobile/* Safari/*]
-Parent=iPhone
-Version=3.0
-MajorVer=3
-MinorVer=0
-
-[Mozilla/5.0 (iPod; U; *Mac OS X; *) AppleWebKit/* (*) Version/* Mobile/*]
-Parent=iPhone
-Browser=iTouch
-
-[Mozilla/5.0 (iPod; U; CPU iPhone OS 2_2* like Mac OS X; *)*]
-Parent=iPhone
-Browser=iTouch
-Version=2.2
-MajorVer=2
-MinorVer=2
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; KDDI
-
-[KDDI]
-Parent=DefaultProperties
-Browser=KDDI
-Frames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-VBScript=true
-JavaScript=true
-ActiveXControls=true
-isMobileDevice=true
-CssVersion=1
-supportsCSS=true
-
-[KDDI-* UP.Browser/* (GUI) MMP/*]
-Parent=KDDI
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Miscellaneous Mobile
-
-[Miscellaneous Mobile]
-Parent=DefaultProperties
-Browser=
-IFrames=true
-Tables=true
-Cookies=true
-JavaScript=true
-isMobileDevice=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (X11; *; CentOS; *) AppleWebKit/* (KHTML, like Gecko) Bolt/0.* Version/3.0 Safari/*]
-Parent=Miscellaneous Mobile
-Browser=Bolt
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Motorola Internet Browser
-
-[Motorola Internet Browser]
-Parent=DefaultProperties
-Browser=Motorola Internet Browser
-Frames=true
-Tables=true
-Cookies=true
-isMobileDevice=true
-
-[MOT-*/*]
-Parent=Motorola Internet Browser
-
-[MOT-1*/* UP.Browser/*]
-Parent=Motorola Internet Browser
-
-[MOT-8700_/* UP.Browser/*]
-Parent=Motorola Internet Browser
-
-[MOT-A-0A/* UP.Browser/*]
-Parent=Motorola Internet Browser
-
-[MOT-A-2B/* UP.Browser/*]
-Parent=Motorola Internet Browser
-
-[MOT-A-88/* UP.Browser/*]
-Parent=Motorola Internet Browser
-
-[MOT-C???/* MIB/*]
-Parent=Motorola Internet Browser
-
-[MOT-GATW_/* UP.Browser/*]
-Parent=Motorola Internet Browser
-
-[MOT-L6/* MIB/*]
-Parent=Motorola Internet Browser
-
-[MOT-L7/* MIB/*]
-Parent=Motorola Internet Browser
-
-[MOT-M*/* UP.Browser/*]
-Parent=Motorola Internet Browser
-
-[MOT-MP*/* Mozilla/* (compatible; MSIE *; Windows CE; *)]
-Parent=Motorola Internet Browser
-Win32=true
-
-[MOT-MP*/* Mozilla/4.0 (compatible; MSIE *; Windows CE; *)]
-Parent=Motorola Internet Browser
-Win32=true
-
-[MOT-SAP4_/* UP.Browser/*]
-Parent=Motorola Internet Browser
-
-[MOT-T*/*]
-Parent=Motorola Internet Browser
-
-[MOT-T7*/* MIB/*]
-Parent=Motorola Internet Browser
-
-[MOT-T721*]
-Parent=Motorola Internet Browser
-
-[MOT-TA02/* MIB/*]
-Parent=Motorola Internet Browser
-
-[MOT-V*/*]
-Parent=Motorola Internet Browser
-
-[MOT-V*/* MIB/*]
-Parent=Motorola Internet Browser
-
-[MOT-V*/* UP.Browser/*]
-Parent=Motorola Internet Browser
-
-[MOT-V3/* MIB/*]
-Parent=Motorola Internet Browser
-
-[MOT-V4*/* MIB/*]
-Parent=Motorola Internet Browser
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN Mobile Proxy
-
-[MSN Mobile Proxy]
-Parent=DefaultProperties
-Browser=MSN Mobile Proxy
-Win32=true
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-ActiveXControls=true
-isMobileDevice=true
-
-[Mozilla/* (compatible; MSIE *; Windows*; MSN Mobile Proxy)]
-Parent=MSN Mobile Proxy
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetFront
-
-[NetFront]
-Parent=DefaultProperties
-Browser=NetFront
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-isMobileDevice=true
-
-[*NetFront/*]
-Parent=NetFront
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia
-
-[Nokia]
-Parent=DefaultProperties
-Browser=Nokia
-Tables=true
-Cookies=true
-isMobileDevice=true
-
-[*Nokia*/*]
-Parent=Nokia
-
-[Mozilla/* (SymbianOS/*; ?; *) AppleWebKit/* (KHTML, like Gecko) Safari/*]
-Parent=Nokia
-Platform=SymbianOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Openwave Mobile Browser
-
-[Openwave Mobile Browser]
-Parent=DefaultProperties
-Browser=Openwave Mobile Browser
-Alpha=true
-Win32=true
-Win64=true
-Frames=true
-Tables=true
-Cookies=true
-isMobileDevice=true
-
-[*UP.Browser/*]
-Parent=Openwave Mobile Browser
-
-[*UP.Link/*]
-Parent=Openwave Mobile Browser
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini
-
-[Opera Mini]
-Parent=DefaultProperties
-Browser=Opera Mini
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaScript=true
-isMobileDevice=true
-
-[Opera/* (J2ME/MIDP; Opera Mini/1.0*)*]
-Parent=Opera Mini
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Opera/* (J2ME/MIDP; Opera Mini/1.1*)*]
-Parent=Opera Mini
-Version=1.1
-MajorVer=1
-MinorVer=1
-
-[Opera/* (J2ME/MIDP; Opera Mini/1.2*)*]
-Parent=Opera Mini
-Version=1.2
-MajorVer=1
-MinorVer=2
-
-[Opera/* (J2ME/MIDP; Opera Mini/2.0*)*]
-Parent=Opera Mini
-Version=2.0
-MajorVer=2
-MinorVer=0
-
-[Opera/* (J2ME/MIDP; Opera Mini/3.0*)*]
-Parent=Opera Mini
-Version=3.0
-MajorVer=3
-MinorVer=0
-
-[Opera/* (J2ME/MIDP; Opera Mini/3.1*)*]
-Parent=Opera Mini
-Version=3.1
-MajorVer=3
-MinorVer=1
-
-[Opera/* (J2ME/MIDP; Opera Mini/4.0*)*]
-Parent=Opera Mini
-Version=4.0
-MajorVer=4
-MinorVer=0
-
-[Opera/* (J2ME/MIDP; Opera Mini/4.1*)*]
-Parent=Opera Mini
-Version=4.1
-MajorVer=4
-MinorVer=1
-
-[Opera/* (J2ME/MIDP; Opera Mini/4.2*)*]
-Parent=Opera Mini
-Version=4.2
-MajorVer=4
-MinorVer=2
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile
-
-[Opera Mobile]
-Parent=DefaultProperties
-Browser=Opera Mobi
-Frames=true
-Tables=true
-Cookies=true
-isMobileDevice=true
-
-[Opera/9.5 (Microsoft Windows; PPC; *Opera Mobile/*)]
-Parent=Opera Mobile
-Version=9.5
-MajorVer=9
-MinorVer=5
-
-[Opera/9.5 (Microsoft Windows; PPC; Opera Mobi/*)]
-Parent=Opera Mobile
-Version=9.5
-MajorVer=9
-MinorVer=5
-
-[Opera/9.51 Beta (Microsoft Windows; PPC; Opera Mobi/*)*]
-Parent=Opera Mobile
-Version=9.51
-MajorVer=9
-MinorVer=51
-Beta=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Playstation
-
-[Playstation]
-Parent=DefaultProperties
-Browser=Playstation
-Platform=WAP
-Frames=true
-Tables=true
-Cookies=true
-isMobileDevice=true
-
-[Mozilla/* (PLAYSTATION *; *)]
-Parent=Playstation
-Browser=PlayStation 3
-Frames=false
-
-[Mozilla/* (PSP (PlayStation Portable); *)]
-Parent=Playstation
-
-[Sony PS2 (Linux)]
-Parent=Playstation
-Browser=Sony PS2
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Pocket PC
-
-[Pocket PC]
-Parent=DefaultProperties
-Browser=Pocket PC
-Platform=WinCE
-Win32=true
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-ActiveXControls=true
-isMobileDevice=true
-CssVersion=1
-supportsCSS=true
-
-[*(compatible; MSIE *.*; Windows CE; PPC; *)]
-Parent=Pocket PC
-
-[HTC-*/* Mozilla/* (compatible; MSIE *.*; Windows CE*)*]
-Parent=Pocket PC
-Win32=true
-
-[Mozilla/* (compatible; MSPIE *.*; *Windows CE*)*]
-Parent=Pocket PC
-Win32=true
-
-[T-Mobile* Mozilla/* (compatible; MSIE *.*; Windows CE; *)]
-Parent=Pocket PC
-
-[Vodafone* Mozilla/* (compatible; MSIE *.*; Windows CE; *)*]
-Parent=Pocket PC
-
-[Windows CE (Pocket PC) - Version *.*]
-Parent=Pocket PC
-Win32=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SEMC Browser
-
-[SEMC Browser]
-Parent=DefaultProperties
-Browser=SEMC Browser
-Platform=JAVA
-Tables=true
-isMobileDevice=true
-CssVersion=1
-supportsCSS=true
-
-[*SEMC-Browser/*]
-Parent=SEMC Browser
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SonyEricsson
-
-[SonyEricsson]
-Parent=DefaultProperties
-Browser=SonyEricsson
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-isMobileDevice=true
-CssVersion=1
-supportsCSS=true
-
-[*Ericsson*]
-Parent=SonyEricsson
-
-[*SonyEricsson*]
-Parent=SonyEricsson
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netbox
-
-[Netbox]
-Parent=DefaultProperties
-Browser=Netbox
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-CssVersion=1
-supportsCSS=true
-
-[Mozilla/3.01 (compatible; Netbox/*; Linux*)]
-Parent=Netbox
-Browser=Netbox
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PowerTV
-
-[PowerTV]
-Parent=DefaultProperties
-Browser=PowerTV
-Platform=PowerTV
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-
-[Mozilla/4.0 PowerTV/1.5 (Compatible; Spyglass DM 3.2.1, EXPLORER)]
-Parent=PowerTV
-Version=1.5
-MajorVer=1
-MinorVer=5
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WebTV/MSNTV
-
-[WebTV]
-Parent=DefaultProperties
-Browser=WebTV/MSNTV
-Platform=WebTV
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-
-[Mozilla/3.0 WebTV/1.*(compatible; MSIE 2.0)]
-Parent=WebTV
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Mozilla/4.0 WebTV/2.0*(compatible; MSIE 3.0)]
-Parent=WebTV
-Version=2.0
-MajorVer=2
-MinorVer=0
-
-[Mozilla/4.0 WebTV/2.1*(compatible; MSIE 3.0)]
-Parent=WebTV
-Version=2.1
-MajorVer=2
-MinorVer=1
-
-[Mozilla/4.0 WebTV/2.2*(compatible; MSIE 3.0)]
-Parent=WebTV
-Version=2.2
-MajorVer=2
-MinorVer=2
-
-[Mozilla/4.0 WebTV/2.3*(compatible; MSIE 3.0)]
-Parent=WebTV
-Version=2.3
-MajorVer=2
-MinorVer=3
-
-[Mozilla/4.0 WebTV/2.4*(compatible; MSIE 3.0)]
-Parent=WebTV
-Version=2.4
-MajorVer=2
-MinorVer=4
-
-[Mozilla/4.0 WebTV/2.5*(compatible; MSIE 4.0)]
-Parent=WebTV
-Version=2.5
-MajorVer=2
-MinorVer=5
-CssVersion=1
-supportsCSS=true
-
-[Mozilla/4.0 WebTV/2.6*(compatible; MSIE 4.0)]
-Parent=WebTV
-Version=2.6
-MajorVer=2
-MinorVer=6
-CssVersion=1
-supportsCSS=true
-
-[Mozilla/4.0 WebTV/2.7*(compatible; MSIE 4.0)]
-Parent=WebTV
-Version=2.7
-MajorVer=2
-MinorVer=7
-CssVersion=1
-supportsCSS=true
-
-[Mozilla/4.0 WebTV/2.8*(compatible; MSIE 4.0)]
-Parent=WebTV
-Version=2.8
-MajorVer=2
-MinorVer=8
-JavaApplets=true
-CssVersion=1
-supportsCSS=true
-
-[Mozilla/4.0 WebTV/2.9*(compatible; MSIE 4.0)]
-Parent=WebTV
-Version=2.9
-MajorVer=2
-MinorVer=9
-JavaApplets=true
-CssVersion=1
-supportsCSS=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Amaya
-
-[Amaya]
-Parent=DefaultProperties
-Browser=Amaya
-Tables=true
-Cookies=true
-
-[amaya/7.*]
-Parent=Amaya
-Version=7.0
-MajorVer=7
-MinorVer=0
-
-[amaya/8.0*]
-Parent=Amaya
-Version=8.0
-MajorVer=8
-MinorVer=0
-CssVersion=2
-supportsCSS=true
-
-[amaya/8.1*]
-Parent=Amaya
-Version=8.1
-MajorVer=8
-MinorVer=1
-CssVersion=2
-supportsCSS=true
-
-[amaya/8.2*]
-Parent=Amaya
-Version=8.2
-MajorVer=8
-MinorVer=2
-CssVersion=2
-supportsCSS=true
-
-[amaya/8.3*]
-Parent=Amaya
-Version=8.3
-MajorVer=8
-MinorVer=3
-CssVersion=2
-supportsCSS=true
-
-[amaya/8.4*]
-Parent=Amaya
-Version=8.4
-MajorVer=8
-MinorVer=4
-CssVersion=2
-supportsCSS=true
-
-[amaya/8.5*]
-Parent=Amaya
-Version=8.5
-MajorVer=8
-MinorVer=5
-CssVersion=2
-supportsCSS=true
-
-[amaya/8.6*]
-Parent=Amaya
-Version=8.6
-MajorVer=8
-MinorVer=6
-CssVersion=2
-supportsCSS=true
-
-[amaya/8.7*]
-Parent=Amaya
-Version=8.7
-MajorVer=8
-MinorVer=7
-CssVersion=2
-supportsCSS=true
-
-[amaya/8.8*]
-Parent=Amaya
-Version=8.8
-MajorVer=8
-MinorVer=8
-CssVersion=2
-supportsCSS=true
-
-[amaya/8.9*]
-Parent=Amaya
-Version=8.9
-MajorVer=8
-MinorVer=9
-CssVersion=2
-supportsCSS=true
-
-[amaya/9.0*]
-Parent=Amaya
-Version=9.0
-MajorVer=8
-MinorVer=0
-CssVersion=2
-supportsCSS=true
-
-[amaya/9.1*]
-Parent=Amaya
-Version=9.1
-MajorVer=9
-MinorVer=1
-CssVersion=2
-supportsCSS=true
-
-[amaya/9.2*]
-Parent=Amaya
-Version=9.2
-MajorVer=9
-MinorVer=2
-CssVersion=2
-supportsCSS=true
-
-[amaya/9.3*]
-Parent=Amaya
-Version=9.3
-MajorVer=9
-MinorVer=3
-
-[amaya/9.4*]
-Parent=Amaya
-Version=9.4
-MajorVer=9
-MinorVer=4
-
-[amaya/9.5*]
-Parent=Amaya
-Version=9.5
-MajorVer=9
-MinorVer=5
-
-[Emacs-w3m/*]
-Parent=Emacs/W3
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Links
-
-[Links]
-Parent=DefaultProperties
-Browser=Links
-Frames=true
-Tables=true
-
-[Links (0.9*; CYGWIN_NT-5.1*)]
-Parent=Links
-Browser=Links
-Version=0.9
-MajorVer=0
-MinorVer=9
-Platform=WinXP
-
-[Links (0.9*; Darwin*)]
-Parent=Links
-Version=0.9
-MajorVer=0
-MinorVer=9
-Platform=MacPPC
-
-[Links (0.9*; FreeBSD*)]
-Parent=Links
-Browser=Links
-Version=0.9
-MajorVer=0
-MinorVer=9
-Platform=FreeBSD
-
-[Links (0.9*; Linux*)]
-Parent=Links
-Browser=Links
-Version=0.9
-MajorVer=0
-MinorVer=9
-Platform=Linux
-
-[Links (0.9*; OS/2*)]
-Parent=Links
-Browser=Links
-Version=0.9
-MajorVer=0
-MinorVer=9
-Platform=OS/2
-
-[Links (0.9*; Unix*)]
-Parent=Links
-Browser=Links
-Version=0.9
-MajorVer=0
-MinorVer=9
-Platform=Unix
-
-[Links (0.9*; Win32*)]
-Parent=Links
-Browser=Links
-Version=0.9
-MajorVer=0
-MinorVer=9
-Platform=Win32
-Win32=true
-
-[Links (1.0*; CYGWIN_NT-5.1*)]
-Parent=Links
-Browser=Links
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=WinXP
-
-[Links (1.0*; FreeBSD*)]
-Parent=Links
-Browser=Links
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=FreeBSD
-
-[Links (1.0*; Linux*)]
-Parent=Links
-Browser=Links
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Linux
-
-[Links (1.0*; OS/2*)]
-Parent=Links
-Browser=Links
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=OS/2
-
-[Links (1.0*; Unix*)]
-Parent=Links
-Browser=Links
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Unix
-
-[Links (1.0*; Win32*)]
-Parent=Links
-Browser=Links
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win32
-Win32=true
-
-[Links (2.0*; Linux*)]
-Parent=Links
-Browser=Links
-Version=2.0
-MajorVer=2
-MinorVer=0
-Platform=Linux
-
-[Links (2.1*; FreeBSD*)]
-Parent=Links
-Browser=Links
-Version=2.1
-MajorVer=2
-MinorVer=1
-Platform=FreeBSD
-
-[Links (2.1*; Linux *)]
-Parent=Links
-Browser=Links
-Version=2.1
-MajorVer=2
-MinorVer=1
-Platform=Linux
-
-[Links (2.1*; OpenBSD*)]
-Parent=Links
-Browser=Links
-Version=2.1
-MajorVer=2
-MinorVer=1
-Platform=OpenBSD
-
-[Links (2.2*; FreeBSD*)]
-Parent=Links
-Version=2.2
-MajorVer=2
-MinorVer=2
-Platform=FreeBSD
-
-[Links (2.2*; Linux *)]
-Parent=Links
-Version=2.2
-MajorVer=2
-MinorVer=2
-Platform=Linux
-
-[Links (2.2*; OpenBSD*)]
-Parent=Links
-Version=2.2
-MajorVer=2
-MinorVer=2
-Platform=OpenBSD
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lynx
-
-[Lynx]
-Parent=DefaultProperties
-Browser=Lynx
-Frames=true
-Tables=true
-
-[Lynx *]
-Parent=Lynx
-Browser=Lynx
-
-[Lynx/2.3*]
-Parent=Lynx
-Browser=Lynx
-Version=2.3
-MajorVer=2
-MinorVer=3
-
-[Lynx/2.4*]
-Parent=Lynx
-Browser=Lynx
-Version=2.4
-MajorVer=2
-MinorVer=4
-
-[Lynx/2.5*]
-Parent=Lynx
-Browser=Lynx
-Version=2.5
-MajorVer=2
-MinorVer=5
-
-[Lynx/2.6*]
-Parent=Lynx
-Browser=Lynx
-Version=2.6
-MajorVer=2
-MinorVer=6
-
-[Lynx/2.7*]
-Parent=Lynx
-Browser=Lynx
-Version=2.7
-MajorVer=2
-MinorVer=7
-
-[Lynx/2.8*]
-Parent=Lynx
-Browser=Lynx
-Version=2.8
-MajorVer=2
-MinorVer=8
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NCSA Mosaic
-
-[Mosaic]
-Parent=DefaultProperties
-Browser=Mosaic
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; w3m
-
-[w3m]
-Parent=DefaultProperties
-Browser=w3m
-Frames=true
-Tables=true
-
-[w3m/0.1*]
-Parent=w3m
-Browser=w3m
-Version=0.1
-MajorVer=0
-MinorVer=1
-
-[w3m/0.2*]
-Parent=w3m
-Browser=w3m
-Version=0.2
-MajorVer=0
-MinorVer=2
-
-[w3m/0.3*]
-Parent=w3m
-Browser=w3m
-Version=0.3
-MajorVer=0
-MinorVer=3
-
-[w3m/0.4*]
-Parent=w3m
-Browser=w3m
-Version=0.4
-MajorVer=0
-MinorVer=4
-Cookies=true
-
-[w3m/0.5*]
-Parent=w3m
-Browser=w3m
-Version=0.5
-MajorVer=0
-MinorVer=5
-Cookies=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.10
-
-[ELinks 0.10]
-Parent=DefaultProperties
-Browser=ELinks
-Version=0.10
-MinorVer=10
-Frames=true
-Tables=true
-
-[ELinks (0.10*; *AIX*)]
-Parent=ELinks 0.10
-Platform=AIX
-
-[ELinks (0.10*; *BeOS*)]
-Parent=ELinks 0.10
-Platform=BeOS
-
-[ELinks (0.10*; *CygWin*)]
-Parent=ELinks 0.10
-Platform=CygWin
-
-[ELinks (0.10*; *Darwin*)]
-Parent=ELinks 0.10
-Platform=Darwin
-
-[ELinks (0.10*; *Digital Unix*)]
-Parent=ELinks 0.10
-Platform=Digital Unix
-
-[ELinks (0.10*; *FreeBSD*)]
-Parent=ELinks 0.10
-Platform=FreeBSD
-
-[ELinks (0.10*; *HPUX*)]
-Parent=ELinks 0.10
-Platform=HP-UX
-
-[ELinks (0.10*; *IRIX*)]
-Parent=ELinks 0.10
-Platform=IRIX
-
-[ELinks (0.10*; *Linux*)]
-Parent=ELinks 0.10
-Platform=Linux
-
-[ELinks (0.10*; *NetBSD*)]
-Parent=ELinks 0.10
-Platform=NetBSD
-
-[ELinks (0.10*; *OpenBSD*)]
-Parent=ELinks 0.10
-Platform=OpenBSD
-
-[ELinks (0.10*; *OS/2*)]
-Parent=ELinks 0.10
-Platform=OS/2
-
-[ELinks (0.10*; *RISC*)]
-Parent=ELinks 0.10
-Platform=RISC OS
-
-[ELinks (0.10*; *Solaris*)]
-Parent=ELinks 0.10
-Platform=Solaris
-
-[ELinks (0.10*; *Unix*)]
-Parent=ELinks 0.10
-Platform=Unix
-
-[ELinks/0.10* (*AIX*)]
-Parent=ELinks 0.10
-Platform=AIX
-
-[ELinks/0.10* (*BeOS*)]
-Parent=ELinks 0.10
-Platform=BeOS
-
-[ELinks/0.10* (*CygWin*)]
-Parent=ELinks 0.10
-Platform=CygWin
-
-[ELinks/0.10* (*Darwin*)]
-Parent=ELinks 0.10
-Platform=Darwin
-
-[ELinks/0.10* (*Digital Unix*)]
-Parent=ELinks 0.10
-Platform=Digital Unix
-
-[ELinks/0.10* (*FreeBSD*)]
-Parent=ELinks 0.10
-Platform=FreeBSD
-
-[ELinks/0.10* (*HPUX*)]
-Parent=ELinks 0.10
-Platform=HP-UX
-
-[ELinks/0.10* (*IRIX*)]
-Parent=ELinks 0.10
-Platform=IRIX
-
-[ELinks/0.10* (*Linux*)]
-Parent=ELinks 0.10
-Platform=Linux
-
-[ELinks/0.10* (*NetBSD*)]
-Parent=ELinks 0.10
-Platform=NetBSD
-
-[ELinks/0.10* (*OpenBSD*)]
-Parent=ELinks 0.10
-Platform=OpenBSD
-
-[ELinks/0.10* (*OS/2*)]
-Parent=ELinks 0.10
-Platform=OS/2
-
-[ELinks/0.10* (*RISC*)]
-Parent=ELinks 0.10
-Platform=RISC OS
-
-[ELinks/0.10* (*Solaris*)]
-Parent=ELinks 0.10
-Platform=Solaris
-
-[ELinks/0.10* (*Unix*)]
-Parent=ELinks 0.10
-Platform=Unix
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.11
-
-[ELinks 0.11]
-Parent=DefaultProperties
-Browser=ELinks
-Version=0.11
-MinorVer=11
-Frames=true
-Tables=true
-
-[ELinks (0.11*; *AIX*)]
-Parent=ELinks 0.11
-Platform=AIX
-
-[ELinks (0.11*; *BeOS*)]
-Parent=ELinks 0.11
-Platform=BeOS
-
-[ELinks (0.11*; *CygWin*)]
-Parent=ELinks 0.11
-Platform=CygWin
-
-[ELinks (0.11*; *Darwin*)]
-Parent=ELinks 0.11
-Platform=Darwin
-
-[ELinks (0.11*; *Digital Unix*)]
-Parent=ELinks 0.11
-Platform=Digital Unix
-
-[ELinks (0.11*; *FreeBSD*)]
-Parent=ELinks 0.11
-Platform=FreeBSD
-
-[ELinks (0.11*; *HPUX*)]
-Parent=ELinks 0.11
-Platform=HP-UX
-
-[ELinks (0.11*; *IRIX*)]
-Parent=ELinks 0.11
-Platform=IRIX
-
-[ELinks (0.11*; *Linux*)]
-Parent=ELinks 0.11
-Platform=Linux
-
-[ELinks (0.11*; *NetBSD*)]
-Parent=ELinks 0.11
-Platform=NetBSD
-
-[ELinks (0.11*; *OpenBSD*)]
-Parent=ELinks 0.11
-Platform=OpenBSD
-
-[ELinks (0.11*; *OS/2*)]
-Parent=ELinks 0.11
-Platform=OS/2
-
-[ELinks (0.11*; *RISC*)]
-Parent=ELinks 0.11
-Platform=RISC OS
-
-[ELinks (0.11*; *Solaris*)]
-Parent=ELinks 0.11
-Platform=Solaris
-
-[ELinks (0.11*; *Unix*)]
-Parent=ELinks 0.11
-Platform=Unix
-
-[ELinks/0.11* (*AIX*)]
-Parent=ELinks 0.11
-Platform=AIX
-
-[ELinks/0.11* (*BeOS*)]
-Parent=ELinks 0.11
-Platform=BeOS
-
-[ELinks/0.11* (*CygWin*)]
-Parent=ELinks 0.11
-Platform=CygWin
-
-[ELinks/0.11* (*Darwin*)]
-Parent=ELinks 0.11
-Platform=Darwin
-
-[ELinks/0.11* (*Digital Unix*)]
-Parent=ELinks 0.11
-Platform=Digital Unix
-
-[ELinks/0.11* (*FreeBSD*)]
-Parent=ELinks 0.11
-Platform=FreeBSD
-
-[ELinks/0.11* (*HPUX*)]
-Parent=ELinks 0.11
-Platform=HP-UX
-
-[ELinks/0.11* (*IRIX*)]
-Parent=ELinks 0.11
-Platform=IRIX
-
-[ELinks/0.11* (*Linux*)]
-Parent=ELinks 0.11
-Platform=Linux
-
-[ELinks/0.11* (*NetBSD*)]
-Parent=ELinks 0.11
-Platform=NetBSD
-
-[ELinks/0.11* (*OpenBSD*)]
-Parent=ELinks 0.11
-Platform=OpenBSD
-
-[ELinks/0.11* (*OS/2*)]
-Parent=ELinks 0.11
-Platform=OS/2
-
-[ELinks/0.11* (*RISC*)]
-Parent=ELinks 0.11
-Platform=RISC OS
-
-[ELinks/0.11* (*Solaris*)]
-Parent=ELinks 0.11
-Platform=Solaris
-
-[ELinks/0.11* (*Unix*)]
-Parent=ELinks 0.11
-Platform=Unix
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.12
-
-[ELinks 0.12]
-Parent=DefaultProperties
-Browser=ELinks
-Version=0.12
-MinorVer=12
-Frames=true
-Tables=true
-
-[ELinks (0.12*; *AIX*)]
-Parent=ELinks 0.12
-Platform=AIX
-
-[ELinks (0.12*; *BeOS*)]
-Parent=ELinks 0.12
-Platform=BeOS
-
-[ELinks (0.12*; *CygWin*)]
-Parent=ELinks 0.12
-Platform=CygWin
-
-[ELinks (0.12*; *Darwin*)]
-Parent=ELinks 0.12
-Platform=Darwin
-
-[ELinks (0.12*; *Digital Unix*)]
-Parent=ELinks 0.12
-Platform=Digital Unix
-
-[ELinks (0.12*; *FreeBSD*)]
-Parent=ELinks 0.12
-Platform=FreeBSD
-
-[ELinks (0.12*; *HPUX*)]
-Parent=ELinks 0.12
-Platform=HP-UX
-
-[ELinks (0.12*; *IRIX*)]
-Parent=ELinks 0.12
-Platform=IRIX
-
-[ELinks (0.12*; *Linux*)]
-Parent=ELinks 0.12
-Platform=Linux
-
-[ELinks (0.12*; *NetBSD*)]
-Parent=ELinks 0.12
-Platform=NetBSD
-
-[ELinks (0.12*; *OpenBSD*)]
-Parent=ELinks 0.12
-Platform=OpenBSD
-
-[ELinks (0.12*; *OS/2*)]
-Parent=ELinks 0.12
-Platform=OS/2
-
-[ELinks (0.12*; *RISC*)]
-Parent=ELinks 0.12
-Platform=RISC OS
-
-[ELinks (0.12*; *Solaris*)]
-Parent=ELinks 0.12
-Platform=Solaris
-
-[ELinks (0.12*; *Unix*)]
-Parent=ELinks 0.12
-Platform=Unix
-
-[ELinks/0.12* (*AIX*)]
-Parent=ELinks 0.12
-Platform=AIX
-
-[ELinks/0.12* (*BeOS*)]
-Parent=ELinks 0.12
-Platform=BeOS
-
-[ELinks/0.12* (*CygWin*)]
-Parent=ELinks 0.12
-Platform=CygWin
-
-[ELinks/0.12* (*Darwin*)]
-Parent=ELinks 0.12
-Platform=Darwin
-
-[ELinks/0.12* (*Digital Unix*)]
-Parent=ELinks 0.12
-Platform=Digital Unix
-
-[ELinks/0.12* (*FreeBSD*)]
-Parent=ELinks 0.12
-Platform=FreeBSD
-
-[ELinks/0.12* (*HPUX*)]
-Parent=ELinks 0.12
-Platform=HP-UX
-
-[ELinks/0.12* (*IRIX*)]
-Parent=ELinks 0.12
-Platform=IRIX
-
-[ELinks/0.12* (*Linux*)]
-Parent=ELinks 0.12
-Platform=Linux
-
-[ELinks/0.12* (*NetBSD*)]
-Parent=ELinks 0.12
-Platform=NetBSD
-
-[ELinks/0.12* (*OpenBSD*)]
-Parent=ELinks 0.12
-Platform=OpenBSD
-
-[ELinks/0.12* (*OS/2*)]
-Parent=ELinks 0.12
-Platform=OS/2
-
-[ELinks/0.12* (*RISC*)]
-Parent=ELinks 0.12
-Platform=RISC OS
-
-[ELinks/0.12* (*Solaris*)]
-Parent=ELinks 0.12
-Platform=Solaris
-
-[ELinks/0.12* (*Unix*)]
-Parent=ELinks 0.12
-Platform=Unix
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.9
-
-[ELinks 0.9]
-Parent=DefaultProperties
-Browser=ELinks
-Version=0.9
-MinorVer=9
-Frames=true
-Tables=true
-
-[ELinks (0.9*; *AIX*)]
-Parent=ELinks 0.9
-Platform=AIX
-
-[ELinks (0.9*; *BeOS*)]
-Parent=ELinks 0.9
-Platform=BeOS
-
-[ELinks (0.9*; *CygWin*)]
-Parent=ELinks 0.9
-Platform=CygWin
-
-[ELinks (0.9*; *Darwin*)]
-Parent=ELinks 0.9
-Platform=Darwin
-
-[ELinks (0.9*; *Digital Unix*)]
-Parent=ELinks 0.9
-Platform=Digital Unix
-
-[ELinks (0.9*; *FreeBSD*)]
-Parent=ELinks 0.9
-Platform=FreeBSD
-
-[ELinks (0.9*; *HPUX*)]
-Parent=ELinks 0.9
-Platform=HP-UX
-
-[ELinks (0.9*; *IRIX*)]
-Parent=ELinks 0.9
-Platform=IRIX
-
-[ELinks (0.9*; *Linux*)]
-Parent=ELinks 0.9
-Platform=Linux
-
-[ELinks (0.9*; *NetBSD*)]
-Parent=ELinks 0.9
-Platform=NetBSD
-
-[ELinks (0.9*; *OpenBSD*)]
-Parent=ELinks 0.9
-Platform=OpenBSD
-
-[ELinks (0.9*; *OS/2*)]
-Parent=ELinks 0.9
-Platform=OS/2
-
-[ELinks (0.9*; *RISC*)]
-Parent=ELinks 0.9
-Platform=RISC OS
-
-[ELinks (0.9*; *Solaris*)]
-Parent=ELinks 0.9
-Platform=Solaris
-
-[ELinks (0.9*; *Unix*)]
-Parent=ELinks 0.9
-Platform=Unix
-
-[ELinks/0.9* (*AIX*)]
-Parent=ELinks 0.9
-Platform=AIX
-
-[ELinks/0.9* (*BeOS*)]
-Parent=ELinks 0.9
-Platform=BeOS
-
-[ELinks/0.9* (*CygWin*)]
-Parent=ELinks 0.9
-Platform=CygWin
-
-[ELinks/0.9* (*Darwin*)]
-Parent=ELinks 0.9
-Platform=Darwin
-
-[ELinks/0.9* (*Digital Unix*)]
-Parent=ELinks 0.9
-Platform=Digital Unix
-
-[ELinks/0.9* (*FreeBSD*)]
-Parent=ELinks 0.9
-Platform=FreeBSD
-
-[ELinks/0.9* (*HPUX*)]
-Parent=ELinks 0.9
-Platform=HP-UX
-
-[ELinks/0.9* (*IRIX*)]
-Parent=ELinks 0.9
-Platform=IRIX
-
-[ELinks/0.9* (*Linux*)]
-Parent=ELinks 0.9
-Platform=Linux
-
-[ELinks/0.9* (*NetBSD*)]
-Parent=ELinks 0.9
-Platform=NetBSD
-
-[ELinks/0.9* (*OpenBSD*)]
-Parent=ELinks 0.9
-Platform=OpenBSD
-
-[ELinks/0.9* (*OS/2*)]
-Parent=ELinks 0.9
-Platform=OS/2
-
-[ELinks/0.9* (*RISC*)]
-Parent=ELinks 0.9
-Platform=RISC OS
-
-[ELinks/0.9* (*Solaris*)]
-Parent=ELinks 0.9
-Platform=Solaris
-
-[ELinks/0.9* (*Unix*)]
-Parent=ELinks 0.9
-Platform=Unix
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AppleWebKit
-
-[AppleWebKit]
-Parent=DefaultProperties
-Browser=AppleWebKit
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (KHTML, like Gecko)]
-Parent=AppleWebKit
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Camino
-
-[Camino]
-Parent=DefaultProperties
-Browser=Camino
-Platform=MacOSX
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.7*]
-Parent=Camino
-Version=0.7
-MajorVer=0
-MinorVer=7
-Beta=true
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.8*]
-Parent=Camino
-Version=0.8
-MajorVer=0
-MinorVer=8
-Beta=true
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.9*]
-Parent=Camino
-Version=0.9
-MajorVer=0
-MinorVer=9
-Beta=true
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.0*]
-Parent=Camino
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.2*]
-Parent=Camino
-Version=1.2
-MajorVer=1
-MinorVer=2
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.3*]
-Parent=Camino
-Version=1.3
-MajorVer=1
-MinorVer=3
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.4*]
-Parent=Camino
-Version=1.4
-MajorVer=1
-MinorVer=4
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.5*]
-Parent=Camino
-Version=1.5
-MajorVer=1
-MinorVer=5
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.6*]
-Parent=Camino
-Version=1.6
-MajorVer=1
-MinorVer=6
-Platform=MacOSX
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chimera
-
-[Chimera]
-Parent=DefaultProperties
-Browser=Chimera
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-
-[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Chimera/*]
-Parent=Chimera
-Platform=MacOSX
-
-[Mozilla/5.0 Gecko/* Chimera/*]
-Parent=Chimera
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dillo
-
-[Dillo]
-Parent=DefaultProperties
-Browser=Dillo
-Platform=Linux
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-CssVersion=2
-supportsCSS=true
-
-[Dillo/0.6*]
-Parent=Dillo
-Version=0.6
-MajorVer=0
-MinorVer=6
-
-[Dillo/0.7*]
-Parent=Dillo
-Version=0.7
-MajorVer=0
-MinorVer=7
-
-[Dillo/0.8*]
-Parent=Dillo
-Version=0.8
-MajorVer=0
-MinorVer=8
-
-[Dillo/2.0]
-Parent=Dillo
-Version=2.0
-MajorVer=2
-MinorVer=0
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Emacs/W3
-
-[Emacs/W3]
-Parent=DefaultProperties
-Browser=Emacs/W3
-Frames=true
-Tables=true
-Cookies=true
-
-[Emacs/W3/2.* (Unix*]
-Parent=Emacs/W3
-Version=2.0
-MajorVer=2
-MinorVer=0
-Platform=Unix
-
-[Emacs/W3/2.* (X11*]
-Parent=Emacs/W3
-Version=2.0
-MajorVer=2
-MinorVer=0
-Platform=Linux
-
-[Emacs/W3/3.* (Unix*]
-Parent=Emacs/W3
-Version=3.0
-MajorVer=3
-MinorVer=0
-Platform=Unix
-
-[Emacs/W3/3.* (X11*]
-Parent=Emacs/W3
-Version=3.0
-MajorVer=3
-MinorVer=0
-Platform=Linux
-
-[Emacs/W3/4.* (Unix*]
-Parent=Emacs/W3
-Version=4.0
-MajorVer=4
-MinorVer=0
-Platform=Unix
-
-[Emacs/W3/4.* (X11*]
-Parent=Emacs/W3
-Version=4.0
-MajorVer=4
-MinorVer=0
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; fantomas
-
-[fantomas]
-Parent=DefaultProperties
-Browser=fantomas
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaScript=true
-
-[Mozilla/4.0 (cloakBrowser)]
-Parent=fantomas
-Browser=fantomas cloakBrowser
-
-[Mozilla/4.0 (fantomas shadowMaker Browser)]
-Parent=fantomas
-Browser=fantomas shadowMaker Browser
-
-[Mozilla/4.0 (fantomBrowser)]
-Parent=fantomas
-Browser=fantomas fantomBrowser
-
-[Mozilla/4.0 (fantomCrew Browser)]
-Parent=fantomas
-Browser=fantomas fantomCrew Browser
-
-[Mozilla/4.0 (stealthBrowser)]
-Parent=fantomas
-Browser=fantomas stealthBrowser
-
-[multiBlocker browser*]
-Parent=fantomas
-Browser=fantomas multiBlocker browser
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FrontPage
-
-[FrontPage]
-Parent=DefaultProperties
-Browser=FrontPage
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaScript=true
-
-[Mozilla/?* (compatible; MS FrontPage*)]
-Parent=FrontPage
-
-[MSFrontPage/*]
-Parent=FrontPage
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Galeon
-
-[Galeon]
-Parent=DefaultProperties
-Browser=Galeon
-Platform=Linux
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/1.*]
-Parent=Galeon
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/2.*]
-Parent=Galeon
-Version=2.0
-MajorVer=2
-MinorVer=0
-
-[Mozilla/5.0 Galeon/1.* (X11; Linux*)*]
-Parent=Galeon
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Mozilla/5.0 Galeon/2.* (X11; Linux*)*]
-Parent=Galeon
-Version=2.0
-MajorVer=2
-MinorVer=0
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; HP Secure Web Browser
-
-[HP Secure Web Browser]
-Parent=DefaultProperties
-Browser=HP Secure Web Browser
-Platform=OpenVMS
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.0*) Gecko/*]
-Parent=HP Secure Web Browser
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.1*) Gecko/*]
-Parent=HP Secure Web Browser
-Version=1.1
-MajorVer=1
-MinorVer=1
-
-[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.2*) Gecko/*]
-Parent=HP Secure Web Browser
-Version=1.2
-MajorVer=1
-MinorVer=2
-
-[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.3*) Gecko/*]
-Parent=HP Secure Web Browser
-Version=1.3
-MajorVer=1
-MinorVer=3
-
-[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.4*) Gecko/*]
-Parent=HP Secure Web Browser
-Version=1.4
-MajorVer=1
-MinorVer=4
-
-[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.5*) Gecko/*]
-Parent=HP Secure Web Browser
-Version=1.5
-MajorVer=1
-MinorVer=5
-
-[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.6*) Gecko/*]
-Parent=HP Secure Web Browser
-Version=1.6
-MajorVer=1
-MinorVer=6
-
-[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.7*) Gecko/*]
-Parent=HP Secure Web Browser
-Version=1.7
-MajorVer=1
-MinorVer=7
-
-[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.8*) Gecko/*]
-Parent=HP Secure Web Browser
-Version=1.8
-MajorVer=1
-MinorVer=8
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IBrowse
-
-[IBrowse]
-Parent=DefaultProperties
-Browser=IBrowse
-Platform=Amiga
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-
-[Arexx (compatible; MSIE 6.0; AmigaOS5.0) IBrowse 4.0]
-Parent=IBrowse
-Version=4.0
-MajorVer=4
-MinorVer=0
-
-[IBrowse/1.22 (AmigaOS *)]
-Parent=IBrowse
-Version=1.22
-MajorVer=1
-MinorVer=22
-
-[IBrowse/2.1 (AmigaOS *)]
-Parent=IBrowse
-Version=2.1
-MajorVer=2
-MinorVer=1
-
-[IBrowse/2.2 (AmigaOS *)]
-Parent=IBrowse
-Version=2.2
-MajorVer=2
-MinorVer=2
-
-[IBrowse/2.3 (AmigaOS *)]
-Parent=IBrowse
-Version=2.2
-MajorVer=2
-MinorVer=3
-
-[Mozilla/* (Win98; I) IBrowse/2.1 (AmigaOS 3.1)]
-Parent=IBrowse
-Version=2.1
-MajorVer=2
-MinorVer=1
-
-[Mozilla/* (Win98; I) IBrowse/2.2 (AmigaOS 3.1)]
-Parent=IBrowse
-Version=2.2
-MajorVer=2
-MinorVer=2
-
-[Mozilla/* (Win98; I) IBrowse/2.3 (AmigaOS 3.1)]
-Parent=IBrowse
-Version=2.3
-MajorVer=2
-MinorVer=3
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iCab
-
-[iCab]
-Parent=DefaultProperties
-Browser=iCab
-Frames=true
-Tables=true
-Cookies=true
-JavaScript=true
-CssVersion=1
-supportsCSS=true
-
-[iCab/2.7* (Macintosh; ?; 68K*)]
-Parent=iCab
-Version=2.7
-MajorVer=2
-MinorVer=7
-Platform=Mac68K
-
-[iCab/2.7* (Macintosh; ?; PPC*)]
-Parent=iCab
-Version=2.7
-MajorVer=2
-MinorVer=7
-Platform=MacPPC
-
-[iCab/2.8* (Macintosh; ?; *Mac OS X*)]
-Parent=iCab
-Version=2.8
-MajorVer=2
-MinorVer=8
-Platform=MacOSX
-
-[iCab/2.8* (Macintosh; ?; 68K*)]
-Parent=iCab
-Version=2.8
-MajorVer=2
-MinorVer=8
-Platform=Mac68K
-
-[iCab/2.8* (Macintosh; ?; PPC)]
-Parent=iCab
-Version=2.8
-MajorVer=2
-MinorVer=8
-Platform=MacPPC
-
-[iCab/2.9* (Macintosh; ?; *Mac OS X*)]
-Parent=iCab
-Version=2.9
-MajorVer=2
-MinorVer=9
-Platform=MacOSX
-
-[iCab/2.9* (Macintosh; ?; 68K*)]
-Parent=iCab
-Version=2.9
-MajorVer=2
-MinorVer=9
-Platform=Mac68K
-
-[iCab/2.9* (Macintosh; ?; PPC*)]
-Parent=iCab
-Version=2.9
-MajorVer=2
-MinorVer=9
-Platform=MacPPC
-
-[iCab/3.0* (Macintosh; ?; *Mac OS X*)]
-Parent=iCab
-Version=3.0
-MajorVer=3
-MinorVer=0
-Platform=MacOSX
-CssVersion=2
-supportsCSS=true
-
-[iCab/3.0* (Macintosh; ?; PPC*)]
-Parent=iCab
-Version=3.0
-MajorVer=3
-MinorVer=0
-Platform=MacPPC
-CssVersion=2
-supportsCSS=true
-
-[iCab/4.0 (Macintosh; U; *Mac OS X)]
-Parent=iCab
-Version=4.0
-MajorVer=4
-MinorVer=0
-Platform=MacOSX
-
-[Mozilla/* (compatible; iCab 3.0*; Macintosh; *Mac OS X*)]
-Parent=iCab
-Version=3.0
-MajorVer=3
-MinorVer=0
-Platform=MacOSX
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/* (compatible; iCab 3.0*; Macintosh; ?; PPC*)]
-Parent=iCab
-Version=3.0
-MajorVer=3
-MinorVer=0
-Platform=MacPPC
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/4.5 (compatible; iCab 2.7*; Macintosh; ?; 68K*)]
-Parent=iCab
-Version=2.7
-MajorVer=2
-MinorVer=7
-Platform=Mac68K
-
-[Mozilla/4.5 (compatible; iCab 2.7*; Macintosh; ?; PPC*)]
-Parent=iCab
-Version=2.7
-MajorVer=2
-MinorVer=7
-Platform=MacPPC
-
-[Mozilla/4.5 (compatible; iCab 2.8*; Macintosh; ?; *Mac OS X*)]
-Parent=iCab
-Version=2.8
-MajorVer=2
-MinorVer=8
-Platform=MacOSX
-
-[Mozilla/4.5 (compatible; iCab 2.8*; Macintosh; ?; PPC*)]
-Parent=iCab
-Version=2.8
-MajorVer=2
-MinorVer=8
-Platform=MacPPC
-
-[Mozilla/4.5 (compatible; iCab 2.9*; Macintosh; *Mac OS X*)]
-Parent=iCab
-Version=2.9
-MajorVer=2
-MinorVer=9
-Platform=MacOSX
-
-[Mozilla/4.5 (compatible; iCab 2.9*; Macintosh; ?; PPC*)]
-Parent=iCab
-Version=2.9
-MajorVer=2
-MinorVer=9
-Platform=MacPPC
-
-[Mozilla/4.5 (compatible; iCab 4.2*; Macintosh; *Mac OS X*)]
-Parent=iCab
-Version=4.2
-MajorVer=4
-MinorVer=2
-Platform=MacOSX
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iSiloX
-
-[iSiloX]
-Parent=DefaultProperties
-Browser=iSiloX
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaScript=true
-Crawler=true
-CssVersion=2
-supportsCSS=true
-
-[iSiloX/4.0* MacOS]
-Parent=iSiloX
-Version=4.0
-MajorVer=4
-MinorVer=0
-Platform=MacPPC
-
-[iSiloX/4.0* Windows/32]
-Parent=iSiloX
-Version=4.0
-MajorVer=4
-MinorVer=0
-Platform=Win32
-Win32=true
-
-[iSiloX/4.1* MacOS]
-Parent=iSiloX
-Version=4.1
-MajorVer=4
-MinorVer=1
-Platform=MacPPC
-
-[iSiloX/4.1* Windows/32]
-Parent=iSiloX
-Version=4.1
-MajorVer=4
-MinorVer=1
-Platform=Win32
-Win32=true
-
-[iSiloX/4.2* MacOS]
-Parent=iSiloX
-Version=4.2
-MajorVer=4
-MinorVer=2
-Platform=MacPPC
-
-[iSiloX/4.2* Windows/32]
-Parent=iSiloX
-Version=4.2
-MajorVer=4
-MinorVer=2
-Platform=Win32
-Win32=true
-
-[iSiloX/4.3* MacOS]
-Parent=iSiloX
-Version=4.3
-MajorVer=4
-MinorVer=4
-Platform=MacOSX
-
-[iSiloX/4.3* Windows/32]
-Parent=iSiloX
-Version=4.3
-MajorVer=4
-MinorVer=3
-Platform=Win32
-Win32=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycoris Desktop/LX
-
-[Lycoris Desktop/LX]
-Parent=DefaultProperties
-Browser=Lycoris Desktop/LX
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-Crawler=true
-
-[Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.*: Desktop/LX Amethyst) Gecko/*]
-Parent=Lycoris Desktop/LX
-Version=1.1
-MajorVer=1
-MinorVer=1
-Platform=Linux
-
-[Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.*; Desktop/LX Amethyst) Gecko/*]
-Parent=Lycoris Desktop/LX
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mosaic
-
-[Mosaic]
-Parent=DefaultProperties
-Browser=Mosaic
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-
-[Mozilla/4.0 (VMS_Mosaic)]
-Parent=Mosaic
-Platform=OpenVMS
-
-[VMS_Mosaic/3.7*]
-Parent=Mosaic
-Version=3.7
-MajorVer=3
-MinorVer=7
-Platform=OpenVMS
-
-[VMS_Mosaic/3.8*]
-Parent=Mosaic
-Version=3.8
-MajorVer=3
-MinorVer=8
-Platform=OpenVMS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetPositive
-
-[NetPositive]
-Parent=DefaultProperties
-Browser=NetPositive
-Platform=BeOS
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-
-[*NetPositive/2.2*]
-Parent=NetPositive
-Version=2.2
-MajorVer=2
-MinorVer=2
-
-[*NetPositive/2.2*BeOS*]
-Parent=NetPositive
-Version=2.2
-MajorVer=2
-MinorVer=2
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb
-
-[OmniWeb]
-Parent=DefaultProperties
-Browser=OmniWeb
-Platform=MacOSX
-Frames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-isMobileDevice=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v4*]
-Parent=OmniWeb
-Version=4.5
-MajorVer=4
-MinorVer=5
-Platform=MacOSX
-
-[Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v5*]
-Parent=OmniWeb
-Version=5.
-MajorVer=5
-MinorVer=0
-Platform=MacOSX
-
-[Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v6*]
-Parent=OmniWeb
-Version=6.0
-MajorVer=6
-MinorVer=0
-Platform=MacOSX
-
-[Mozilla/* (Macintosh; ?; PPC) OmniWeb/4*]
-Parent=OmniWeb
-Version=4.0
-MajorVer=4
-MinorVer=0
-Platform=MacPPC
-
-[Mozilla/* (Macintosh; ?; PPC) OmniWeb/5*]
-Parent=OmniWeb
-Version=5.0
-MajorVer=5
-MinorVer=0
-Platform=MacOSX
-
-[Mozilla/* (Macintosh; ?; PPC) OmniWeb/6*]
-Parent=OmniWeb
-Version=6.0
-MajorVer=6
-MinorVer=0
-Platform=MacPPC
-
-[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.34]
-Parent=OmniWeb
-Version=5.1
-MajorVer=5
-MinorVer=1
-
-[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.34]
-Parent=OmniWeb
-Version=5.1
-MajorVer=5
-MinorVer=1
-
-[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/420+ (KHTML, like Gecko, Safari/420) OmniWeb/v607]
-Parent=OmniWeb
-Version=5.5
-MajorVer=5
-MinorVer=5
-
-[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/420+ (KHTML, like Gecko, Safari/420) OmniWeb/v607]
-Parent=OmniWeb
-Version=5.5
-MajorVer=5
-MinorVer=5
-
-[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/522+ (KHTML, like Gecko, Safari/522) OmniWeb/v613]
-Parent=OmniWeb
-Version=5.6
-MajorVer=5
-MinorVer=6
-
-[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/522+ (KHTML, like Gecko, Safari/522) OmniWeb/v613]
-Parent=OmniWeb
-Version=5.6
-MajorVer=5
-MinorVer=6
-
-[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/85 (KHTML, like Gecko) OmniWeb/v496]
-Parent=OmniWeb
-Version=4.5
-MajorVer=4
-MinorVer=5
-
-[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/85 (KHTML, like Gecko) OmniWeb/v558.36 ]
-Parent=OmniWeb
-Version=5.0
-MajorVer=5
-MinorVer=0
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Shiira
-
-[Shiira]
-Parent=DefaultProperties
-Browser=Shiira
-Platform=MacOSX
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/0.9*]
-Parent=Shiira
-Version=0.9
-MajorVer=0
-MinorVer=9
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.0*]
-Parent=Shiira
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.1*]
-Parent=Shiira
-Version=1.1
-MajorVer=1
-MinorVer=1
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.2*]
-Parent=Shiira
-Version=1.2
-MajorVer=1
-MinorVer=2
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/2.1*]
-Parent=Shiira
-Version=2.1
-MajorVer=2
-MinorVer=1
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/2.2*]
-Parent=Shiira
-Version=2.2
-MajorVer=2
-MinorVer=2
-
-[Windows Maker]
-Parent=DefaultProperties
-Browser=WMaker
-Platform=Linux
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[WMaker*]
-Parent=Windows Maker
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.0
-
-[K-Meleon 1.0]
-Parent=DefaultProperties
-Browser=K-Meleon
-Version=1.0
-MajorVer=1
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.0*]
-Parent=K-Meleon 1.0
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.0*]
-Parent=K-Meleon 1.0
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.0*]
-Parent=K-Meleon 1.0
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.0*]
-Parent=K-Meleon 1.0
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.0*]
-Parent=K-Meleon 1.0
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.0*]
-Parent=K-Meleon 1.0
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=WinNT
-Win32=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.1
-
-[K-Meleon 1.1]
-Parent=DefaultProperties
-Browser=K-Meleon
-Version=1.1
-MajorVer=1
-MinorVer=1
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.1*]
-Parent=K-Meleon 1.1
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.1*]
-Parent=K-Meleon 1.1
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.1*]
-Parent=K-Meleon 1.1
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.1*]
-Parent=K-Meleon 1.1
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.1*]
-Parent=K-Meleon 1.1
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.1*]
-Parent=K-Meleon 1.1
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=WinNT
-Win32=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.5
-
-[K-Meleon 1.5]
-Parent=DefaultProperties
-Browser=K-Meleon
-Version=1.5
-MajorVer=1
-MinorVer=5
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.5*]
-Parent=K-Meleon 1.5
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.5*]
-Parent=K-Meleon 1.5
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.5*]
-Parent=K-Meleon 1.5
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.5*]
-Parent=K-Meleon 1.5
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.5*]
-Parent=K-Meleon 1.5
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* K-Meleon/1.5*]
-Parent=K-Meleon 1.5
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* K-Meleon/1.5*]
-Parent=K-Meleon 1.5
-Platform=Win7
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.5*]
-Parent=K-Meleon 1.5
-Version=1.0
-MajorVer=1
-MinorVer=0
-Platform=WinNT
-Win32=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 3.0
-
-[Konqueror 3.0]
-Parent=DefaultProperties
-Browser=Konqueror
-Platform=Linux
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[*Konqueror/3.0*]
-Parent=Konqueror 3.0
-Version=3.0
-MajorVer=3
-MinorVer=0
-IFrames=false
-
-[*Konqueror/3.0*FreeBSD*]
-Parent=Konqueror 3.0
-Version=3.0
-MajorVer=3
-MinorVer=0
-Platform=FreeBSD
-IFrames=false
-
-[*Konqueror/3.0*Linux*]
-Parent=Konqueror 3.0
-Version=3.0
-MajorVer=3
-MinorVer=0
-Platform=Linux
-IFrames=false
-
-[*Konqueror/3.1*]
-Parent=Konqueror 3.0
-Version=3.1
-MajorVer=3
-MinorVer=1
-
-[*Konqueror/3.1*FreeBSD*]
-Parent=Konqueror 3.0
-Version=3.1
-MajorVer=3
-MinorVer=1
-Platform=FreeBSD
-
-[*Konqueror/3.1*Linux*]
-Parent=Konqueror 3.0
-Version=3.1
-MajorVer=3
-MinorVer=1
-
-[*Konqueror/3.2*]
-Parent=Konqueror 3.0
-Version=3.2
-MajorVer=3
-MinorVer=2
-
-[*Konqueror/3.2*FreeBSD*]
-Parent=Konqueror 3.0
-Version=3.2
-MajorVer=3
-MinorVer=2
-Platform=FreeBSD
-
-[*Konqueror/3.2*Linux*]
-Parent=Konqueror 3.0
-Version=3.2
-MajorVer=3
-MinorVer=2
-Platform=Linux
-
-[*Konqueror/3.3*]
-Parent=Konqueror 3.0
-Version=3.3
-MajorVer=3
-MinorVer=3
-
-[*Konqueror/3.3*FreeBSD*]
-Parent=Konqueror 3.0
-Version=3.3
-MajorVer=3
-MinorVer=3
-Platform=FreeBSD
-
-[*Konqueror/3.3*Linux*]
-Parent=Konqueror 3.0
-Version=3.3
-MajorVer=3
-MinorVer=3
-Platform=Linux
-
-[*Konqueror/3.3*OpenBSD*]
-Parent=Konqueror 3.0
-Version=3.3
-MajorVer=3
-MinorVer=3
-Platform=OpenBSD
-
-[*Konqueror/3.4*]
-Parent=Konqueror 3.0
-Version=3.4
-MajorVer=3
-MinorVer=4
-
-[*Konqueror/3.4*FreeBSD*]
-Parent=Konqueror 3.0
-Version=3.4
-MajorVer=3
-MinorVer=4
-Platform=FreeBSD
-
-[*Konqueror/3.4*Linux*]
-Parent=Konqueror 3.0
-Version=3.4
-MajorVer=3
-MinorVer=4
-Platform=Linux
-
-[*Konqueror/3.4*OpenBSD*]
-Parent=Konqueror 3.0
-Version=3.4
-MajorVer=3
-MinorVer=4
-Platform=OpenBSD
-
-[*Konqueror/3.5*]
-Parent=Konqueror 3.0
-Version=3.5
-MajorVer=3
-MinorVer=5
-
-[*Konqueror/3.5*FreeBSD*]
-Parent=Konqueror 3.0
-Version=3.5
-MajorVer=3
-MinorVer=5
-Platform=FreeBSD
-
-[*Konqueror/3.5*Linux*]
-Parent=Konqueror 3.0
-Version=3.5
-MajorVer=3
-MinorVer=5
-Platform=Linux
-
-[*Konqueror/3.5*OpenBSD*]
-Parent=Konqueror 3.0
-Version=3.5
-MajorVer=3
-MinorVer=5
-Platform=OpenBSD
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.0
-
-[Konqueror 4.0]
-Parent=DefaultProperties
-Browser=Konqueror
-Version=4.0
-MajorVer=4
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (compatible; Konqueror/4.0*; Debian) KHTML/4.* (like Gecko)]
-Parent=Konqueror 4.0
-Platform=Debian
-
-[Mozilla/5.0 (compatible; Konqueror/4.0.*; *Linux) KHTML/4.* (like Gecko)]
-Parent=Konqueror 4.0
-Platform=Linux
-
-[Mozilla/5.0 (compatible; Konqueror/4.0.*; FreeBSD) KHTML/4.* (like Gecko)]
-Parent=Konqueror 4.0
-Platform=FreeBSD
-
-[Mozilla/5.0 (compatible; Konqueror/4.0.*; NetBSD) KHTML/4.* (like Gecko)]
-Parent=Konqueror 4.0
-Platform=NetBSD
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.1
-
-[Konqueror 4.1]
-Parent=DefaultProperties
-Browser=Konqueror
-Version=4.1
-MajorVer=4
-MinorVer=1
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (compatible; Konqueror/4.1*; *Linux*) KHTML/4.* (like Gecko)*]
-Parent=Konqueror 4.1
-Platform=Linux
-
-[Mozilla/5.0 (compatible; Konqueror/4.1*; Debian) KHTML/4.* (like Gecko)*]
-Parent=Konqueror 4.1
-Platform=Debian
-
-[Mozilla/5.0 (compatible; Konqueror/4.1*; FreeBSD) KHTML/4.* (like Gecko)*]
-Parent=Konqueror 4.1
-Platform=FreeBSD
-
-[Mozilla/5.0 (compatible; Konqueror/4.1*; NetBSD) KHTML/4.* (like Gecko)*]
-Parent=Konqueror 4.1
-Platform=NetBSD
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.2
-
-[Konqueror 4.2]
-Parent=DefaultProperties
-Browser=Konqueror
-Version=4.2
-MajorVer=4
-MinorVer=2
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (compatible; Konqueror/4.2*; *Linux*) KHTML/4.* (like Gecko)*]
-Parent=Konqueror 4.2
-Platform=Linux
-
-[Mozilla/5.0 (compatible; Konqueror/4.2*; Debian) KHTML/4.* (like Gecko)*]
-Parent=Konqueror 4.2
-Platform=Debian
-
-[Mozilla/5.0 (compatible; Konqueror/4.2*; FreeBSD) KHTML/4.* (like Gecko)*]
-Parent=Konqueror 4.2
-Platform=FreeBSD
-
-[Mozilla/5.0 (compatible; Konqueror/4.2*; NetBSD) KHTML/4.* (like Gecko)*]
-Parent=Konqueror 4.2
-Platform=NetBSD
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari
-
-[Safari]
-Parent=DefaultProperties
-Browser=Safari
-Platform=MacOSX
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.3
-w3cdomversion=1.0
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/100*]
-Parent=Safari
-Version=1.1
-MajorVer=1
-MinorVer=1
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/125*]
-Parent=Safari
-Version=1.2
-MajorVer=1
-MinorVer=2
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/312*]
-Parent=Safari
-Version=1.3
-MajorVer=1
-MinorVer=3
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/412*]
-Parent=Safari
-Version=2.0
-MajorVer=2
-MinorVer=0
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/416*]
-Parent=Safari
-Version=2.0
-MajorVer=2
-MinorVer=0
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/417*]
-Parent=Safari
-Version=2.0
-MajorVer=2
-MinorVer=0
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/418*]
-Parent=Safari
-Version=2.0
-MajorVer=2
-MinorVer=0
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/419*]
-Parent=Safari
-Version=2.0
-MajorVer=2
-MinorVer=0
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/52*]
-Parent=Safari
-Beta=true
-
-[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/85*]
-Parent=Safari
-Version=1.0
-MajorVer=1
-MinorVer=0
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.0
-
-[Safari 3.0]
-Parent=DefaultProperties
-Browser=Safari
-Version=3.0
-MajorVer=3
-Platform=MacOSX
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.0* Safari/*]
-Parent=Safari 3.0
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.0* Safari/*]
-Parent=Safari 3.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.0* Safari/*]
-Parent=Safari 3.0
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.0* Safari/*]
-Parent=Safari 3.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.0* Safari/*]
-Parent=Safari 3.0
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.1
-
-[Safari 3.1]
-Parent=DefaultProperties
-Browser=Safari
-Version=3.1
-MajorVer=3
-MinorVer=1
-Platform=MacOSX
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.1* Safari/*]
-Parent=Safari 3.1
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.1* Safari/*]
-Parent=Safari 3.1
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.1* Safari/*]
-Parent=Safari 3.1
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.1* Safari/*]
-Parent=Safari 3.1
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.1* Safari/*]
-Parent=Safari 3.1
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.2
-
-[Safari 3.2]
-Parent=DefaultProperties
-Browser=Safari
-Version=3.2
-MajorVer=3
-MinorVer=2
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.2* Safari/*]
-Parent=Safari 3.2
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.2* Safari/*]
-Parent=Safari 3.2
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.2* Safari/*]
-Parent=Safari 3.2
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.2* Safari/*]
-Parent=Safari 3.2
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.2* Safari/*]
-Parent=Safari 3.2
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 4.0
-
-[Safari 4.0]
-Parent=DefaultProperties
-Browser=Safari
-Version=4.0
-MajorVer=4
-Beta=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Version/4.0* Safari/*]
-Parent=Safari 4.0
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Version/4 Public Beta Safari/*]
-Parent=Safari 4.0
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
-Parent=Safari 4.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/4.0* Safari/*]
-Parent=Safari 4.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
-Parent=Safari 4.0
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/4.0* Safari/*]
-Parent=Safari 4.0
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
-Parent=Safari 4.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/4.0* Safari/*]
-Parent=Safari 4.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
-Parent=Safari 4.0
-Platform=Win7
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/4.0* Safari/*]
-Parent=Safari 4.0
-Platform=Win7
-
-[Mozilla/5.0 (Windows; ?; Windows NT 7.0; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
-Parent=Safari 4.0
-Platform=Win7
-
-[Mozilla/5.0 (Windows; ?; Windows NT 7.0; *) AppleWebKit/* (*) Version/4.0* Safari/*]
-Parent=Safari 4.0
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.0
-
-[Opera 10.0]
-Parent=DefaultProperties
-Browser=Opera
-Version=10.0
-MajorVer=10
-Alpha=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/* (compatible; MSIE*; Linux*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=MacOSX
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 10.0*]
-Parent=Opera 10.0
-Platform=MacPPC
-
-[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Win95
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Win98
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=WinCE
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=WinME
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=WinVista
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Win7
-
-[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=FreeBSD
-
-[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=SunOS
-
-[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 10.0*]
-Parent=Opera 10.0
-Platform=MacOSX
-
-[Mozilla/* (Windows 2000;*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows 95;*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Win95
-Win32=true
-
-[Mozilla/* (Windows 98;*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Win98
-Win32=true
-
-[Mozilla/* (Windows ME;*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=WinME
-Win32=true
-
-[Mozilla/* (Windows NT 4.0;*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (Windows NT 5.0;*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows NT 5.1;*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (Windows NT 5.2;*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (Windows NT 6.0;*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=WinVista
-
-[Mozilla/* (Windows NT 6.1;*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Win7
-
-[Mozilla/* (X11; Linux*) Opera 10.0*]
-Parent=Opera 10.0
-Platform=Linux
-
-[Opera/10.0* (Linux*)*]
-Parent=Opera 10.0
-Platform=Linux
-
-[Opera/10.0* (Macintosh; *Mac OS X;*)*]
-Parent=Opera 10.0
-Platform=MacOSX
-
-[Opera/10.0* (Windows 95*)*]
-Parent=Opera 10.0
-Platform=Win95
-Win32=true
-
-[Opera/10.0* (Windows 98*)*]
-Parent=Opera 10.0
-Platform=Win98
-Win32=true
-
-[Opera/10.0* (Windows CE*)*]
-Parent=Opera 10.0
-Platform=WinCE
-Win32=true
-
-[Opera/10.0* (Windows ME*)*]
-Parent=Opera 10.0
-Platform=WinME
-Win32=true
-
-[Opera/10.0* (Windows NT 4.0*)*]
-Parent=Opera 10.0
-Platform=WinNT
-Win32=true
-
-[Opera/10.0* (Windows NT 5.0*)*]
-Parent=Opera 10.0
-Platform=Win2000
-Win32=true
-
-[Opera/10.0* (Windows NT 5.1*)*]
-Parent=Opera 10.0
-Platform=WinXP
-Win32=true
-
-[Opera/10.0* (Windows NT 5.2*)*]
-Parent=Opera 10.0
-Platform=Win2003
-Win32=true
-
-[Opera/10.0* (Windows NT 6.0*)*]
-Parent=Opera 10.0
-Platform=WinVista
-Win32=true
-
-[Opera/10.0* (Windows NT 6.1*)*]
-Parent=Opera 10.0
-Platform=Win7
-
-[Opera/10.0* (Windows XP*)*]
-Parent=Opera 10.0
-Platform=WinXP
-Win32=true
-
-[Opera/10.0* (X11; FreeBSD*)*]
-Parent=Opera 10.0
-Platform=FreeBSD
-
-[Opera/10.0* (X11; Linux*)*]
-Parent=Opera 10.0
-Platform=Linux
-
-[Opera/10.0* (X11; SunOS*)*]
-Parent=Opera 10.0
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.0
-
-[Opera 7.0]
-Parent=DefaultProperties
-Browser=Opera
-Version=7.0
-MajorVer=7
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/3.0 (Windows 2000; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/3.0 (Windows 95; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win95
-Win32=true
-
-[Mozilla/3.0 (Windows 98; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win98
-Win32=true
-
-[Mozilla/3.0 (Windows ME; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinME
-Win32=true
-
-[Mozilla/3.0 (Windows NT 4.0; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/3.0 (Windows XP; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 2000) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 95) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win95
-Win32=true
-
-[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 98) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win98
-Win32=true
-
-[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows ME) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinME
-Win32=true
-
-[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 4.0) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.0) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.1) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows XP) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.78 (Windows 2000; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.78 (Windows 95; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win95
-Win32=true
-
-[Mozilla/4.78 (Windows 98; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win98
-Win32=true
-
-[Mozilla/4.78 (Windows ME; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinME
-Win32=true
-
-[Mozilla/4.78 (Windows NT 4.0; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.78 (Windows NT 5.1; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.78 (Windows Windows NT 5.0; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.78 (Windows XP; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows 2000; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows 95; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows 98; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows ME; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows NT 4.0; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows NT 5.1; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows XP; ?) Opera 7.0*]
-Parent=Opera 7.0
-Platform=WinXP
-Win32=true
-
-[Opera/7.0* (Windows 2000; ?)*]
-Parent=Opera 7.0
-Platform=Win2000
-Win32=true
-
-[Opera/7.0* (Windows 95; ?)*]
-Parent=Opera 7.0
-Platform=Win95
-Win32=true
-
-[Opera/7.0* (Windows 98; ?)*]
-Parent=Opera 7.0
-Platform=Win98
-Win32=true
-
-[Opera/7.0* (Windows ME; ?)*]
-Parent=Opera 7.0
-Platform=WinME
-Win32=true
-
-[Opera/7.0* (Windows NT 4.0; ?)*]
-Parent=Opera 7.0
-Platform=WinNT
-Win32=true
-
-[Opera/7.0* (Windows NT 5.0; ?)*]
-Parent=Opera 7.0
-Platform=Win2000
-Win32=true
-
-[Opera/7.0* (Windows NT 5.1; ?)*]
-Parent=Opera 7.0
-Platform=WinXP
-Win32=true
-
-[Opera/7.0* (Windows XP; ?)*]
-Parent=Opera 7.0
-Platform=WinXP
-Win32=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.1
-
-[Opera 7.1]
-Parent=DefaultProperties
-Browser=Opera
-Version=7.1
-MajorVer=7
-MinorVer=1
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.1*]
-Parent=Opera 7.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.1*]
-Parent=Opera 7.1
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.1*]
-Parent=Opera 7.1
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.1*]
-Parent=Opera 7.1
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.1*]
-Parent=Opera 7.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.1*]
-Parent=Opera 7.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.1*]
-Parent=Opera 7.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.1*]
-Parent=Opera 7.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (Windows 2000; ?) Opera 7.1*]
-Parent=Opera 7.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows 95; ?) Opera 7.1*]
-Parent=Opera 7.1
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (Windows 98; ?) Opera 7.1*]
-Parent=Opera 7.1
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (Windows ME; ?) Opera 7.1*]
-Parent=Opera 7.1
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (Windows NT 4.0; U) Opera 7.1*]
-Parent=Opera 7.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.0; U) Opera 7.1*]
-Parent=Opera 7.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.1; ?) Opera 7.1*]
-Parent=Opera 7.1
-Platform=WinXP
-Win32=true
-
-[Opera/7.1* (Linux*; ?)*]
-Parent=Opera 7.1
-Platform=Linux
-
-[Opera/7.1* (Windows 95; ?)*]
-Parent=Opera 7.1
-Platform=Win95
-Win32=true
-
-[Opera/7.1* (Windows 98; ?)*]
-Parent=Opera 7.1
-Platform=Win98
-Win32=true
-
-[Opera/7.1* (Windows ME; ?)*]
-Parent=Opera 7.1
-Platform=WinME
-Win32=true
-
-[Opera/7.1* (Windows NT 4.0; ?)*]
-Parent=Opera 7.1
-Platform=WinNT
-Win32=true
-
-[Opera/7.1* (Windows NT 5.0; ?)*]
-Parent=Opera 7.1
-Platform=Win2000
-Win32=true
-
-[Opera/7.1* (Windows NT 5.1; ?)*]
-Parent=Opera 7.1
-Platform=WinXP
-Win32=true
-
-[Opera/7.1* (Windows XP; ?)*]
-Parent=Opera 7.1
-Platform=WinXP
-Win32=true
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.2
-
-[Opera 7.2]
-Parent=DefaultProperties
-Browser=Opera
-Version=7.2
-MajorVer=7
-MinorVer=2
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.2*]
-Parent=Opera 7.2
-Platform=Linux
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.2*]
-Parent=Opera 7.2
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.2*]
-Parent=Opera 7.2
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.2*]
-Parent=Opera 7.2
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.2*]
-Parent=Opera 7.2
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.2*]
-Parent=Opera 7.2
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.2*]
-Parent=Opera 7.2
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.2*]
-Parent=Opera 7.2
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.2*]
-Parent=Opera 7.2
-Platform=Win2003
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.2*]
-Parent=Opera 7.2
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (Windows 2000; ?) Opera 7.2*]
-Parent=Opera 7.2
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows 95; ?) Opera 7.2*]
-Parent=Opera 7.2
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (Windows 98; ?) Opera 7.2*]
-Parent=Opera 7.2
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (Windows ME; ?) Opera 7.2*]
-Parent=Opera 7.2
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (Windows NT 4.0; U) Opera 7.2*]
-Parent=Opera 7.2
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.0; U) Opera 7.2*]
-Parent=Opera 7.2
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.1; ?) Opera 7.2*]
-Parent=Opera 7.2
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.2; ?) Opera 7.2*]
-Parent=Opera 7.2
-Platform=Win2003
-Win32=true
-
-[Opera/7.2* (Linux*; ?)*]
-Parent=Opera 7.2
-Platform=Linux
-
-[Opera/7.2* (Windows 95; ?)*]
-Parent=Opera 7.2
-Platform=Win95
-Win32=true
-
-[Opera/7.2* (Windows 98; ?)*]
-Parent=Opera 7.2
-Platform=Win98
-Win32=true
-
-[Opera/7.2* (Windows ME; ?)*]
-Parent=Opera 7.2
-Platform=WinME
-Win32=true
-
-[Opera/7.2* (Windows NT 4.0; ?)*]
-Parent=Opera 7.2
-Platform=WinNT
-Win32=true
-
-[Opera/7.2* (Windows NT 5.0; ?)*]
-Parent=Opera 7.2
-Platform=Win2000
-Win32=true
-
-[Opera/7.2* (Windows NT 5.1; ?)*]
-Parent=Opera 7.2
-Platform=WinXP
-Win32=true
-
-[Opera/7.2* (Windows NT 5.2; ?)*]
-Parent=Opera 7.2
-Platform=Win2003
-Win32=true
-
-[Opera/7.2* (Windows XP; ?)*]
-Parent=Opera 7.2
-Platform=WinXP
-Win32=true
-
-[Opera/7.2* (X11; FreeBSD*; ?)*]
-Parent=Opera 7.2
-Platform=FreeBSD
-
-[Opera/7.2* (X11; Linux*; ?)*]
-Parent=Opera 7.2
-Platform=Linux
-
-[Opera/7.2* (X11; SunOS*)*]
-Parent=Opera 7.2
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.5
-
-[Opera 7.5]
-Parent=DefaultProperties
-Browser=Opera
-Version=7.5
-MajorVer=7
-MinorVer=5
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Linux
-
-[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 7.5*]
-Parent=Opera 7.5
-Platform=MacPPC
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.5*]
-Parent=Opera 7.5
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.5*]
-Parent=Opera 7.5
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.5*]
-Parent=Opera 7.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Win2003
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.5*]
-Parent=Opera 7.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Linux
-
-[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 7.5*]
-Parent=Opera 7.5
-Platform=MacOSX
-
-[Mozilla/?.* (Windows 2000; ?) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows 95; ?) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (Windows 98; ?) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (Windows ME; ?) Opera 7.5*]
-Parent=Opera 7.5
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (Windows NT 4.0; U) Opera 7.5*]
-Parent=Opera 7.5
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.0; U) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.1; ?) Opera 7.5*]
-Parent=Opera 7.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.2; ?) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Win2003
-Win32=true
-
-[Mozilla/?.* (X11; Linux*; ?) Opera 7.5*]
-Parent=Opera 7.5
-Platform=Linux
-
-[Opera/7.5* (Linux*; ?)*]
-Parent=Opera 7.5
-Platform=Linux
-
-[Opera/7.5* (Macintosh; *Mac OS X; ?)*]
-Parent=Opera 7.5
-Platform=MacOSX
-
-[Opera/7.5* (Windows 95; ?)*]
-Parent=Opera 7.5
-Platform=Win95
-Win32=true
-
-[Opera/7.5* (Windows 98; ?)*]
-Parent=Opera 7.5
-Platform=Win98
-Win32=true
-
-[Opera/7.5* (Windows ME; ?)*]
-Parent=Opera 7.5
-Platform=WinME
-Win32=true
-
-[Opera/7.5* (Windows NT 4.0; ?)*]
-Parent=Opera 7.5
-Platform=WinNT
-Win32=true
-
-[Opera/7.5* (Windows NT 5.0; ?)*]
-Parent=Opera 7.5
-Platform=Win2000
-Win32=true
-
-[Opera/7.5* (Windows NT 5.1; ?)*]
-Parent=Opera 7.5
-Platform=WinXP
-Win32=true
-
-[Opera/7.5* (Windows NT 5.2; ?)*]
-Parent=Opera 7.5
-Platform=Win2003
-Win32=true
-
-[Opera/7.5* (Windows XP; ?)*]
-Parent=Opera 7.5
-Platform=WinXP
-Win32=true
-
-[Opera/7.5* (X11; FreeBSD*; ?)*]
-Parent=Opera 7.5
-Platform=FreeBSD
-
-[Opera/7.5* (X11; Linux*; ?)*]
-Parent=Opera 7.5
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.6
-
-[Opera 7.6]
-Parent=DefaultProperties
-Browser=Opera
-Version=7.6
-MajorVer=7
-MinorVer=6
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Linux
-
-[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 7.6*]
-Parent=Opera 7.6
-Platform=MacPPC
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.6*]
-Parent=Opera 7.6
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.6*]
-Parent=Opera 7.6
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.6*]
-Parent=Opera 7.6
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Win2003
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.6*]
-Parent=Opera 7.6
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Linux
-
-[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 7.6*]
-Parent=Opera 7.6
-Platform=MacOSX
-
-[Mozilla/?.* (Windows 2000; ?) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows 95; ?) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (Windows 98; ?) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (Windows ME; ?) Opera 7.6*]
-Parent=Opera 7.6
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (Windows NT 4.0; U) Opera 7.6*]
-Parent=Opera 7.6
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.0; U) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.1; ?) Opera 7.6*]
-Parent=Opera 7.6
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.2; ?) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Win2003
-Win32=true
-
-[Mozilla/?.* (X11; Linux*; ?) Opera 7.6*]
-Parent=Opera 7.6
-Platform=Linux
-
-[Opera/7.6* (Linux*)*]
-Parent=Opera 7.6
-Platform=Linux
-
-[Opera/7.6* (Macintosh; *Mac OS X; ?)*]
-Parent=Opera 7.6
-Platform=MacOSX
-
-[Opera/7.6* (Windows 95*)*]
-Parent=Opera 7.6
-Platform=Win95
-Win32=true
-
-[Opera/7.6* (Windows 98*)*]
-Parent=Opera 7.6
-Platform=Win98
-Win32=true
-
-[Opera/7.6* (Windows ME*)*]
-Parent=Opera 7.6
-Platform=WinME
-Win32=true
-
-[Opera/7.6* (Windows NT 4.0*)*]
-Parent=Opera 7.6
-Platform=WinNT
-Win32=true
-
-[Opera/7.6* (Windows NT 5.0*)*]
-Parent=Opera 7.6
-Platform=Win2000
-Win32=true
-
-[Opera/7.6* (Windows NT 5.1*)*]
-Parent=Opera 7.6
-Platform=WinXP
-Win32=true
-
-[Opera/7.6* (Windows NT 5.2*)*]
-Parent=Opera 7.6
-Platform=Win2003
-Win32=true
-
-[Opera/7.6* (Windows XP*)*]
-Parent=Opera 7.6
-Platform=WinXP
-Win32=true
-
-[Opera/7.6* (X11; FreeBSD*)*]
-Parent=Opera 7.6
-Platform=FreeBSD
-
-[Opera/7.6* (X11; Linux*)*]
-Parent=Opera 7.6
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.0
-
-[Opera 8.0]
-Parent=DefaultProperties
-Browser=Opera
-Version=8.0
-MajorVer=8
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Linux
-
-[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC Mac OS X; *) Opera 8.0*]
-Parent=Opera 8.0
-Platform=MacOSX
-
-[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.0*]
-Parent=Opera 8.0
-Platform=MacPPC
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.0*]
-Parent=Opera 8.0
-Platform=WinCE
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.0*]
-Parent=Opera 8.0
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.0*]
-Parent=Opera 8.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.0*]
-Parent=Opera 8.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.0*]
-Parent=Opera 8.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.0*]
-Parent=Opera 8.0
-Platform=FreeBSD
-
-[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Linux
-
-[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.0*]
-Parent=Opera 8.0
-Platform=MacOSX
-
-[Mozilla/?.* (Windows 2000; *) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows 95; *) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (Windows 98; *) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (Windows ME; *) Opera 8.0*]
-Parent=Opera 8.0
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (Windows NT 4.0; *) Opera 8.0*]
-Parent=Opera 8.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.0; *) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.1; *) Opera 8.0*]
-Parent=Opera 8.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.2; *) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/?.* (X11; Linux*; *) Opera 8.0*]
-Parent=Opera 8.0
-Platform=Linux
-
-[Opera/8.0* (Linux*)*]
-Parent=Opera 8.0
-Platform=Linux
-
-[Opera/8.0* (Macintosh; *Mac OS X; *)*]
-Parent=Opera 8.0
-Platform=MacOSX
-
-[Opera/8.0* (Windows 95*)*]
-Parent=Opera 8.0
-Platform=Win95
-Win32=true
-
-[Opera/8.0* (Windows 98*)*]
-Parent=Opera 8.0
-Platform=Win98
-Win32=true
-
-[Opera/8.0* (Windows CE*)*]
-Parent=Opera 8.0
-Platform=WinCE
-Win32=true
-
-[Opera/8.0* (Windows ME*)*]
-Parent=Opera 8.0
-Platform=WinME
-Win32=true
-
-[Opera/8.0* (Windows NT 4.0*)*]
-Parent=Opera 8.0
-Platform=WinNT
-Win32=true
-
-[Opera/8.0* (Windows NT 5.0*)*]
-Parent=Opera 8.0
-Platform=Win2000
-Win32=true
-
-[Opera/8.0* (Windows NT 5.1*)*]
-Parent=Opera 8.0
-Platform=WinXP
-Win32=true
-
-[Opera/8.0* (Windows NT 5.2*)*]
-Parent=Opera 8.0
-Platform=Win2003
-Win32=true
-
-[Opera/8.0* (Windows XP*)*]
-Parent=Opera 8.0
-Platform=WinXP
-Win32=true
-
-[Opera/8.0* (X11; FreeBSD*)*]
-Parent=Opera 8.0
-Platform=FreeBSD
-
-[Opera/8.0* (X11; Linux*)*]
-Parent=Opera 8.0
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.1
-
-[Opera 8.1]
-Parent=DefaultProperties
-Browser=Opera
-Version=8.1
-MajorVer=8
-MinorVer=1
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Linux
-
-[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.1*]
-Parent=Opera 8.1
-Platform=MacPPC
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.1*]
-Parent=Opera 8.1
-Platform=WinCE
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.1*]
-Parent=Opera 8.1
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.1*]
-Parent=Opera 8.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.1*]
-Parent=Opera 8.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Win2003
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.1*]
-Parent=Opera 8.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.1*]
-Parent=Opera 8.1
-Platform=FreeBSD
-
-[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Linux
-
-[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.1*]
-Parent=Opera 8.1
-Platform=MacOSX
-
-[Mozilla/?.* (Windows 2000; *) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows 95; *) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (Windows 98; *) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (Windows ME; *) Opera 8.1*]
-Parent=Opera 8.1
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (Windows NT 4.0; *) Opera 8.1*]
-Parent=Opera 8.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.0; *) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.1; *) Opera 8.1*]
-Parent=Opera 8.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.2; *) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Win2003
-Win32=true
-
-[Mozilla/?.* (X11; Linux*; *) Opera 8.1*]
-Parent=Opera 8.1
-Platform=Linux
-
-[Opera/8.1* (Linux*)*]
-Parent=Opera 8.1
-Platform=Linux
-
-[Opera/8.1* (Macintosh; *Mac OS X; *)*]
-Parent=Opera 8.1
-Platform=MacOSX
-
-[Opera/8.1* (Windows 95*)*]
-Parent=Opera 8.1
-Platform=Win95
-Win32=true
-
-[Opera/8.1* (Windows 98*)*]
-Parent=Opera 8.1
-Platform=Win98
-Win32=true
-
-[Opera/8.1* (Windows CE*)*]
-Parent=Opera 8.1
-Platform=WinCE
-Win32=true
-
-[Opera/8.1* (Windows ME*)*]
-Parent=Opera 8.1
-Platform=WinME
-Win32=true
-
-[Opera/8.1* (Windows NT 4.0*)*]
-Parent=Opera 8.1
-Platform=WinNT
-Win32=true
-
-[Opera/8.1* (Windows NT 5.0*)*]
-Parent=Opera 8.1
-Platform=Win2000
-Win32=true
-
-[Opera/8.1* (Windows NT 5.1*)*]
-Parent=Opera 8.1
-Platform=WinXP
-Win32=true
-
-[Opera/8.1* (Windows NT 5.2*)*]
-Parent=Opera 8.1
-Platform=Win2003
-Win32=true
-
-[Opera/8.1* (Windows XP*)*]
-Parent=Opera 8.1
-Platform=WinXP
-Win32=true
-
-[Opera/8.1* (X11; FreeBSD*)*]
-Parent=Opera 8.1
-Platform=FreeBSD
-
-[Opera/8.1* (X11; Linux*)*]
-Parent=Opera 8.1
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.5
-
-[Opera 8.5]
-Parent=DefaultProperties
-Browser=Opera
-Version=8.5
-MajorVer=8
-MinorVer=5
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.3
-w3cdomversion=1.0
-
-[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Linux
-
-[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC Mac OS X;*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=MacOSX
-
-[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.5*]
-Parent=Opera 8.5
-Platform=MacPPC
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.5*]
-Parent=Opera 8.5
-Platform=WinCE
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Win2003
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=FreeBSD
-
-[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Linux
-
-[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.5*]
-Parent=Opera 8.5
-Platform=MacOSX
-
-[Mozilla/?.* (Macintosh; PPC Mac OS X;*) Opera 8.5*]
-Parent=Opera 8.5
-Platform=MacOSX
-
-[Mozilla/?.* (Windows 2000; *) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows 95; *) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Win95
-Win32=true
-
-[Mozilla/?.* (Windows 98; *) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Win98
-Win32=true
-
-[Mozilla/?.* (Windows ME; *) Opera 8.5*]
-Parent=Opera 8.5
-Platform=WinME
-Win32=true
-
-[Mozilla/?.* (Windows NT 4.0; *) Opera 8.5*]
-Parent=Opera 8.5
-Platform=WinNT
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.0; *) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.1; *) Opera 8.5*]
-Parent=Opera 8.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/?.* (Windows NT 5.2; *) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Win2003
-Win32=true
-
-[Mozilla/?.* (X11; Linux*; *) Opera 8.5*]
-Parent=Opera 8.5
-Platform=Linux
-
-[Opera/8.5* (Linux*)*]
-Parent=Opera 8.5
-Platform=Linux
-
-[Opera/8.5* (Macintosh; *Mac OS X; *)*]
-Parent=Opera 8.5
-Platform=MacOSX
-
-[Opera/8.5* (Windows 95*)*]
-Parent=Opera 8.5
-Platform=Win95
-Win32=true
-
-[Opera/8.5* (Windows 98*)*]
-Parent=Opera 8.5
-Platform=Win98
-Win32=true
-
-[Opera/8.5* (Windows CE*)*]
-Parent=Opera 8.5
-Platform=WinCE
-Win32=true
-
-[Opera/8.5* (Windows ME*)*]
-Parent=Opera 8.5
-Platform=WinME
-Win32=true
-
-[Opera/8.5* (Windows NT 4.0*)*]
-Parent=Opera 8.5
-Platform=WinNT
-Win32=true
-
-[Opera/8.5* (Windows NT 5.0*)*]
-Parent=Opera 8.5
-Platform=Win2000
-Win32=true
-
-[Opera/8.5* (Windows NT 5.1*)*]
-Parent=Opera 8.5
-Platform=WinXP
-Win32=true
-
-[Opera/8.5* (Windows NT 5.2*)*]
-Parent=Opera 8.5
-Platform=Win2003
-Win32=true
-
-[Opera/8.5* (Windows XP*)*]
-Parent=Opera 8.5
-Platform=WinXP
-Win32=true
-
-[Opera/8.5* (X11; FreeBSD*)*]
-Parent=Opera 8.5
-Platform=FreeBSD
-
-[Opera/8.5* (X11; Linux*)*]
-Parent=Opera 8.5
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.0
-
-[Opera 9.0]
-Parent=DefaultProperties
-Browser=Opera
-Version=9.0
-MajorVer=9
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.5
-w3cdomversion=1.0
-
-[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=MacOSX
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.0*]
-Parent=Opera 9.0
-Platform=MacPPC
-
-[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Win95
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Win98
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=WinCE
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=WinME
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=WinVista
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=FreeBSD
-
-[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=SunOS
-
-[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.0*]
-Parent=Opera 9.0
-Platform=MacOSX
-
-[Mozilla/* (Windows 2000;*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows 95;*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Win95
-Win32=true
-
-[Mozilla/* (Windows 98;*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Win98
-Win32=true
-
-[Mozilla/* (Windows ME;*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=WinME
-Win32=true
-
-[Mozilla/* (Windows NT 4.0;*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (Windows NT 5.0;*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows NT 5.1;*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (Windows NT 5.2;*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (X11; Linux*) Opera 9.0*]
-Parent=Opera 9.0
-Platform=Linux
-
-[Opera/9.0* (Linux*)*]
-Parent=Opera 9.0
-Platform=Linux
-
-[Opera/9.0* (Macintosh; *Mac OS X;*)*]
-Parent=Opera 9.0
-Platform=MacOSX
-
-[Opera/9.0* (Windows 95*)*]
-Parent=Opera 9.0
-Platform=Win95
-Win32=true
-
-[Opera/9.0* (Windows 98*)*]
-Parent=Opera 9.0
-Platform=Win98
-Win32=true
-
-[Opera/9.0* (Windows CE*)*]
-Parent=Opera 9.0
-Platform=WinCE
-Win32=true
-
-[Opera/9.0* (Windows ME*)*]
-Parent=Opera 9.0
-Platform=WinME
-Win32=true
-
-[Opera/9.0* (Windows NT 4.0*)*]
-Parent=Opera 9.0
-Platform=WinNT
-Win32=true
-
-[Opera/9.0* (Windows NT 5.0*)*]
-Parent=Opera 9.0
-Platform=Win2000
-Win32=true
-
-[Opera/9.0* (Windows NT 5.1*)*]
-Parent=Opera 9.0
-Platform=WinXP
-Win32=true
-
-[Opera/9.0* (Windows NT 5.2*)*]
-Parent=Opera 9.0
-Platform=Win2003
-Win32=true
-
-[Opera/9.0* (Windows NT 6.0*)*]
-Parent=Opera 9.0
-Platform=WinVista
-Win32=true
-
-[Opera/9.0* (Windows XP*)*]
-Parent=Opera 9.0
-Platform=WinXP
-Win32=true
-
-[Opera/9.0* (X11; FreeBSD*)*]
-Parent=Opera 9.0
-Platform=FreeBSD
-
-[Opera/9.0* (X11; Linux*)*]
-Parent=Opera 9.0
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.1
-
-[Opera 9.1]
-Parent=DefaultProperties
-Browser=Opera
-Version=9.1
-MajorVer=9
-MinorVer=1
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=MacOSX
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC;*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=MacPPC
-
-[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Win95
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Win98
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=WinCE
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=WinME
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=WinVista
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=FreeBSD
-
-[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=SunOS
-
-[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.1*]
-Parent=Opera 9.1
-Platform=MacOSX
-
-[Mozilla/* (Windows 2000;*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows 95;*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Win95
-Win32=true
-
-[Mozilla/* (Windows 98;*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Win98
-Win32=true
-
-[Mozilla/* (Windows ME;*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=WinME
-Win32=true
-
-[Mozilla/* (Windows NT 4.0;*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (Windows NT 5.0;*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows NT 5.1;*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (Windows NT 5.2;*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (X11; Linux*) Opera 9.1*]
-Parent=Opera 9.1
-Platform=Linux
-
-[Opera/9.1* (Linux*)*]
-Parent=Opera 9.1
-Platform=Linux
-
-[Opera/9.1* (Macintosh; *Mac OS X;*)*]
-Parent=Opera 9.1
-Platform=MacOSX
-
-[Opera/9.1* (Windows 95*)*]
-Parent=Opera 9.1
-Platform=Win95
-Win32=true
-
-[Opera/9.1* (Windows 98*)*]
-Parent=Opera 9.1
-Platform=Win98
-Win32=true
-
-[Opera/9.1* (Windows CE*)*]
-Parent=Opera 9.1
-Platform=WinCE
-Win32=true
-
-[Opera/9.1* (Windows ME*)*]
-Parent=Opera 9.1
-Platform=WinME
-Win32=true
-
-[Opera/9.1* (Windows NT 4.0*)*]
-Parent=Opera 9.1
-Platform=WinNT
-Win32=true
-
-[Opera/9.1* (Windows NT 5.0*)*]
-Parent=Opera 9.1
-Platform=Win2000
-Win32=true
-
-[Opera/9.1* (Windows NT 5.1*)*]
-Parent=Opera 9.1
-Platform=WinXP
-Win32=true
-
-[Opera/9.1* (Windows NT 5.2*)*]
-Parent=Opera 9.1
-Platform=Win2003
-Win32=true
-
-[Opera/9.1* (Windows NT 6.0*)*]
-Parent=Opera 9.1
-Platform=WinVista
-Win32=true
-
-[Opera/9.1* (Windows XP*)*]
-Parent=Opera 9.1
-Platform=WinXP
-Win32=true
-
-[Opera/9.1* (X11; FreeBSD*)*]
-Parent=Opera 9.1
-Platform=FreeBSD
-
-[Opera/9.1* (X11; Linux*)*]
-Parent=Opera 9.1
-Platform=Linux
-
-[Opera/9.1* (X11; SunOS*)*]
-Parent=Opera 9.1
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.2
-
-[Opera 9.2]
-Parent=DefaultProperties
-Browser=Opera
-Version=9.2
-MajorVer=9
-MinorVer=2
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=MacOSX
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.2*]
-Parent=Opera 9.2
-Platform=MacPPC
-
-[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Win95
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Win98
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=WinCE
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=WinME
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=WinVista
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Win7
-
-[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=FreeBSD
-
-[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=SunOS
-
-[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.2*]
-Parent=Opera 9.2
-Platform=MacOSX
-
-[Mozilla/* (Windows 2000;*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows 95;*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Win95
-Win32=true
-
-[Mozilla/* (Windows 98;*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Win98
-Win32=true
-
-[Mozilla/* (Windows ME;*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=WinME
-Win32=true
-
-[Mozilla/* (Windows NT 4.0;*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (Windows NT 5.0;*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows NT 5.1;*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (Windows NT 5.2;*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (Windows NT 6.0;*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=WinVista
-
-[Mozilla/* (Windows NT 6.1;*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Win7
-
-[Mozilla/* (X11; Linux*) Opera 9.2*]
-Parent=Opera 9.2
-Platform=Linux
-
-[Opera/9.2* (Linux*)*]
-Parent=Opera 9.2
-Platform=Linux
-
-[Opera/9.2* (Macintosh; *Mac OS X;*)*]
-Parent=Opera 9.2
-Platform=MacOSX
-
-[Opera/9.2* (Windows 95*)*]
-Parent=Opera 9.2
-Platform=Win95
-Win32=true
-
-[Opera/9.2* (Windows 98*)*]
-Parent=Opera 9.2
-Platform=Win98
-Win32=true
-
-[Opera/9.2* (Windows CE*)*]
-Parent=Opera 9.2
-Platform=WinCE
-Win32=true
-
-[Opera/9.2* (Windows ME*)*]
-Parent=Opera 9.2
-Platform=WinME
-Win32=true
-
-[Opera/9.2* (Windows NT 4.0*)*]
-Parent=Opera 9.2
-Platform=WinNT
-Win32=true
-
-[Opera/9.2* (Windows NT 5.0*)*]
-Parent=Opera 9.2
-Platform=Win2000
-Win32=true
-
-[Opera/9.2* (Windows NT 5.1*)*]
-Parent=Opera 9.2
-Platform=WinXP
-Win32=true
-
-[Opera/9.2* (Windows NT 5.2*)*]
-Parent=Opera 9.2
-Platform=Win2003
-Win32=true
-
-[Opera/9.2* (Windows NT 6.0*)*]
-Parent=Opera 9.2
-Platform=WinVista
-Win32=true
-
-[Opera/9.2* (Windows NT 6.1*)*]
-Parent=Opera 9.2
-Platform=Win7
-
-[Opera/9.2* (Windows XP*)*]
-Parent=Opera 9.2
-Platform=WinXP
-Win32=true
-
-[Opera/9.2* (X11; FreeBSD*)*]
-Parent=Opera 9.2
-Platform=FreeBSD
-
-[Opera/9.2* (X11; Linux*)*]
-Parent=Opera 9.2
-Platform=Linux
-
-[Opera/9.2* (X11; SunOS*)*]
-Parent=Opera 9.2
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.3
-
-[Opera 9.3]
-Parent=DefaultProperties
-Browser=Opera
-Version=9.3
-MajorVer=9
-MinorVer=3
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=MacOSX
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.3*]
-Parent=Opera 9.3
-Platform=MacPPC
-
-[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Win95
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Win98
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=WinCE
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=WinME
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=WinVista
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Win7
-
-[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=FreeBSD
-
-[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=SunOS
-
-[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.3*]
-Parent=Opera 9.3
-Platform=MacOSX
-
-[Mozilla/* (Windows 2000;*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows 95;*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Win95
-Win32=true
-
-[Mozilla/* (Windows 98;*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Win98
-Win32=true
-
-[Mozilla/* (Windows ME;*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=WinME
-Win32=true
-
-[Mozilla/* (Windows NT 4.0;*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (Windows NT 5.0;*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows NT 5.1;*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (Windows NT 5.2;*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (Windows NT 6.0;*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=WinVista
-
-[Mozilla/* (Windows NT 6.1;*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Win7
-
-[Mozilla/* (X11; Linux*) Opera 9.3*]
-Parent=Opera 9.3
-Platform=Linux
-
-[Opera/9.3* (Linux*)*]
-Parent=Opera 9.3
-Platform=Linux
-
-[Opera/9.3* (Macintosh; *Mac OS X;*)*]
-Parent=Opera 9.3
-Platform=MacOSX
-
-[Opera/9.3* (Windows 95*)*]
-Parent=Opera 9.3
-Platform=Win95
-Win32=true
-
-[Opera/9.3* (Windows 98*)*]
-Parent=Opera 9.3
-Platform=Win98
-Win32=true
-
-[Opera/9.3* (Windows CE*)*]
-Parent=Opera 9.3
-Platform=WinCE
-Win32=true
-
-[Opera/9.3* (Windows ME*)*]
-Parent=Opera 9.3
-Platform=WinME
-Win32=true
-
-[Opera/9.3* (Windows NT 4.0*)*]
-Parent=Opera 9.3
-Platform=WinNT
-Win32=true
-
-[Opera/9.3* (Windows NT 5.0*)*]
-Parent=Opera 9.3
-Platform=Win2000
-Win32=true
-
-[Opera/9.3* (Windows NT 5.1*)*]
-Parent=Opera 9.3
-Platform=WinXP
-Win32=true
-
-[Opera/9.3* (Windows NT 5.2*)*]
-Parent=Opera 9.3
-Platform=Win2003
-Win32=true
-
-[Opera/9.3* (Windows NT 6.0*)*]
-Parent=Opera 9.3
-Platform=WinVista
-Win32=true
-
-[Opera/9.3* (Windows NT 6.1*)*]
-Parent=Opera 9.3
-Platform=Win7
-
-[Opera/9.3* (Windows XP*)*]
-Parent=Opera 9.3
-Platform=WinXP
-Win32=true
-
-[Opera/9.3* (X11; FreeBSD*)*]
-Parent=Opera 9.3
-Platform=FreeBSD
-
-[Opera/9.3* (X11; Linux*)*]
-Parent=Opera 9.3
-Platform=Linux
-
-[Opera/9.3* (X11; SunOS*)*]
-Parent=Opera 9.3
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.4
-
-[Opera 9.4]
-Parent=DefaultProperties
-Browser=Opera
-Version=9.4
-MajorVer=9
-MinorVer=4
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=MacOSX
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.4*]
-Parent=Opera 9.4
-Platform=MacPPC
-
-[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Win95
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Win98
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=WinCE
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=WinME
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=WinVista
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Win7
-
-[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=FreeBSD
-
-[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=SunOS
-
-[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.4*]
-Parent=Opera 9.4
-Platform=MacOSX
-
-[Mozilla/* (Windows 2000;*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows 95;*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Win95
-Win32=true
-
-[Mozilla/* (Windows 98;*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Win98
-Win32=true
-
-[Mozilla/* (Windows ME;*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=WinME
-Win32=true
-
-[Mozilla/* (Windows NT 4.0;*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (Windows NT 5.0;*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows NT 5.1;*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (Windows NT 5.2;*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (Windows NT 6.0;*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=WinVista
-
-[Mozilla/* (Windows NT 6.1;*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Win7
-
-[Mozilla/* (X11; Linux*) Opera 9.4*]
-Parent=Opera 9.4
-Platform=Linux
-
-[Opera/9.4* (Linux*)*]
-Parent=Opera 9.4
-Platform=Linux
-
-[Opera/9.4* (Macintosh; *Mac OS X;*)*]
-Parent=Opera 9.4
-Platform=MacOSX
-
-[Opera/9.4* (Windows 95*)*]
-Parent=Opera 9.4
-Platform=Win95
-Win32=true
-
-[Opera/9.4* (Windows 98*)*]
-Parent=Opera 9.4
-Platform=Win98
-Win32=true
-
-[Opera/9.4* (Windows CE*)*]
-Parent=Opera 9.4
-Platform=WinCE
-Win32=true
-
-[Opera/9.4* (Windows ME*)*]
-Parent=Opera 9.4
-Platform=WinME
-Win32=true
-
-[Opera/9.4* (Windows NT 4.0*)*]
-Parent=Opera 9.4
-Platform=WinNT
-Win32=true
-
-[Opera/9.4* (Windows NT 5.0*)*]
-Parent=Opera 9.4
-Platform=Win2000
-Win32=true
-
-[Opera/9.4* (Windows NT 5.1*)*]
-Parent=Opera 9.4
-Platform=WinXP
-Win32=true
-
-[Opera/9.4* (Windows NT 5.2*)*]
-Parent=Opera 9.4
-Platform=Win2003
-Win32=true
-
-[Opera/9.4* (Windows NT 6.0*)*]
-Parent=Opera 9.4
-Platform=WinVista
-Win32=true
-
-[Opera/9.4* (Windows NT 6.1*)*]
-Parent=Opera 9.4
-Platform=Win7
-
-[Opera/9.4* (Windows XP*)*]
-Parent=Opera 9.4
-Platform=WinXP
-Win32=true
-
-[Opera/9.4* (X11; FreeBSD*)*]
-Parent=Opera 9.4
-Platform=FreeBSD
-
-[Opera/9.4* (X11; Linux*)*]
-Parent=Opera 9.4
-Platform=Linux
-
-[Opera/9.4* (X11; SunOS*)*]
-Parent=Opera 9.4
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.5
-
-[Opera 9.5]
-Parent=DefaultProperties
-Browser=Opera
-Version=9.5
-MajorVer=9
-MinorVer=5
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=MacOSX
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.5*]
-Parent=Opera 9.5
-Platform=MacPPC
-
-[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Win95
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Win98
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=WinCE
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=WinME
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=WinVista
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Win7
-
-[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=FreeBSD
-
-[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=SunOS
-
-[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.5*]
-Parent=Opera 9.5
-Platform=MacOSX
-
-[Mozilla/* (Windows 2000;*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows 95;*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Win95
-Win32=true
-
-[Mozilla/* (Windows 98;*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Win98
-Win32=true
-
-[Mozilla/* (Windows ME;*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=WinME
-Win32=true
-
-[Mozilla/* (Windows NT 4.0;*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (Windows NT 5.0;*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows NT 5.1;*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (Windows NT 5.2;*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (Windows NT 6.0;*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=WinVista
-
-[Mozilla/* (Windows NT 6.1;*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Win7
-
-[Mozilla/* (X11; Linux*) Opera 9.5*]
-Parent=Opera 9.5
-Platform=Linux
-
-[Opera/9.5* (Linux*)*]
-Parent=Opera 9.5
-Platform=Linux
-
-[Opera/9.5* (Macintosh; *Mac OS X;*)*]
-Parent=Opera 9.5
-Platform=MacOSX
-
-[Opera/9.5* (Windows 95*)*]
-Parent=Opera 9.5
-Platform=Win95
-Win32=true
-
-[Opera/9.5* (Windows 98*)*]
-Parent=Opera 9.5
-Platform=Win98
-Win32=true
-
-[Opera/9.5* (Windows CE*)*]
-Parent=Opera 9.5
-Platform=WinCE
-Win32=true
-
-[Opera/9.5* (Windows ME*)*]
-Parent=Opera 9.5
-Platform=WinME
-Win32=true
-
-[Opera/9.5* (Windows NT 4.0*)*]
-Parent=Opera 9.5
-Platform=WinNT
-Win32=true
-
-[Opera/9.5* (Windows NT 5.0*)*]
-Parent=Opera 9.5
-Platform=Win2000
-Win32=true
-
-[Opera/9.5* (Windows NT 5.1*)*]
-Parent=Opera 9.5
-Platform=WinXP
-Win32=true
-
-[Opera/9.5* (Windows NT 5.2*)*]
-Parent=Opera 9.5
-Platform=Win2003
-Win32=true
-
-[Opera/9.5* (Windows NT 6.0*)*]
-Parent=Opera 9.5
-Platform=WinVista
-Win32=true
-
-[Opera/9.5* (Windows NT 6.1*)*]
-Parent=Opera 9.5
-Platform=Win7
-
-[Opera/9.5* (Windows XP*)*]
-Parent=Opera 9.5
-Platform=WinXP
-Win32=true
-
-[Opera/9.5* (X11; FreeBSD*)*]
-Parent=Opera 9.5
-Platform=FreeBSD
-
-[Opera/9.5* (X11; Linux*)*]
-Parent=Opera 9.5
-Platform=Linux
-
-[Opera/9.5* (X11; SunOS*)*]
-Parent=Opera 9.5
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.6
-
-[Opera 9.6]
-Parent=DefaultProperties
-Browser=Opera
-Version=9.6
-MajorVer=9
-MinorVer=6
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=MacOSX
-
-[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.6*]
-Parent=Opera 9.6
-Platform=MacPPC
-
-[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Win95
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Win98
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=WinCE
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=WinME
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=WinVista
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Win7
-
-[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=FreeBSD
-
-[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Linux
-
-[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=SunOS
-
-[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.6*]
-Parent=Opera 9.6
-Platform=MacOSX
-
-[Mozilla/* (Windows 2000;*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows 95;*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Win95
-Win32=true
-
-[Mozilla/* (Windows 98;*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Win98
-Win32=true
-
-[Mozilla/* (Windows ME;*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=WinME
-Win32=true
-
-[Mozilla/* (Windows NT 4.0;*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=WinNT
-Win32=true
-
-[Mozilla/* (Windows NT 5.0;*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Win2000
-Win32=true
-
-[Mozilla/* (Windows NT 5.1;*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=WinXP
-Win32=true
-
-[Mozilla/* (Windows NT 5.2;*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Win2003
-Win32=true
-
-[Mozilla/* (Windows NT 6.0;*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=WinVista
-
-[Mozilla/* (Windows NT 6.1;*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Win7
-
-[Mozilla/* (X11; Linux*) Opera 9.6*]
-Parent=Opera 9.6
-Platform=Linux
-
-[Opera/9.6* (Linux*)*]
-Parent=Opera 9.6
-Platform=Linux
-
-[Opera/9.6* (Macintosh; *Mac OS X;*)*]
-Parent=Opera 9.6
-Platform=MacOSX
-
-[Opera/9.6* (Windows 95*)*]
-Parent=Opera 9.6
-Platform=Win95
-Win32=true
-
-[Opera/9.6* (Windows 98*)*]
-Parent=Opera 9.6
-Platform=Win98
-Win32=true
-
-[Opera/9.6* (Windows CE*)*]
-Parent=Opera 9.6
-Platform=WinCE
-Win32=true
-
-[Opera/9.6* (Windows ME*)*]
-Parent=Opera 9.6
-Platform=WinME
-Win32=true
-
-[Opera/9.6* (Windows NT 4.0*)*]
-Parent=Opera 9.6
-Platform=WinNT
-Win32=true
-
-[Opera/9.6* (Windows NT 5.0*)*]
-Parent=Opera 9.6
-Platform=Win2000
-Win32=true
-
-[Opera/9.6* (Windows NT 5.1*)*]
-Parent=Opera 9.6
-Platform=WinXP
-Win32=true
-
-[Opera/9.6* (Windows NT 5.2*)*]
-Parent=Opera 9.6
-Platform=Win2003
-Win32=true
-
-[Opera/9.6* (Windows NT 6.0*)*]
-Parent=Opera 9.6
-Platform=WinVista
-Win32=true
-
-[Opera/9.6* (Windows NT 6.1*)*]
-Parent=Opera 9.6
-Platform=Win7
-
-[Opera/9.6* (Windows XP*)*]
-Parent=Opera 9.6
-Platform=WinXP
-Win32=true
-
-[Opera/9.6* (X11; FreeBSD*)*]
-Parent=Opera 9.6
-Platform=FreeBSD
-
-[Opera/9.6* (X11; Linux*)*]
-Parent=Opera 9.6
-Platform=Linux
-
-[Opera/9.6* (X11; SunOS*)*]
-Parent=Opera 9.6
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.0
-
-[Netscape 4.0]
-Parent=DefaultProperties
-Browser=Netscape
-Version=4.0
-MajorVer=4
-Frames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=1
-supportsCSS=true
-
-[Mozilla/4.0*(Macintosh*]
-Parent=Netscape 4.0
-Version=4.03
-MinorVer=03
-Platform=MacPPC
-
-[Mozilla/4.0*(Win95;*]
-Parent=Netscape 4.0
-Platform=Win95
-
-[Mozilla/4.0*(Win98;*]
-Parent=Netscape 4.0
-Version=4.03
-MinorVer=03
-Platform=Win98
-
-[Mozilla/4.0*(WinNT*]
-Parent=Netscape 4.0
-Version=4.03
-MinorVer=03
-Platform=WinNT
-
-[Mozilla/4.0*(X11;*)]
-Parent=Netscape 4.0
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.5
-
-[Netscape 4.5]
-Parent=DefaultProperties
-Browser=Netscape
-Version=4.5
-MajorVer=4
-MinorVer=5
-Frames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=1
-supportsCSS=true
-
-[Mozilla/4.5*(Macintosh; ?; PPC)]
-Parent=Netscape 4.5
-Platform=MacPPC
-
-[Mozilla/4.5*(Win2000; ?)]
-Parent=Netscape 4.5
-Platform=Win2000
-
-[Mozilla/4.5*(Win95; ?)]
-Parent=Netscape 4.5
-Platform=Win95
-
-[Mozilla/4.5*(Win98; ?)]
-Parent=Netscape 4.5
-Platform=Win98
-
-[Mozilla/4.5*(WinME; ?)]
-Parent=Netscape 4.5
-Platform=WinME
-
-[Mozilla/4.5*(WinNT; ?)]
-Parent=Netscape 4.5
-Platform=WinNT
-
-[Mozilla/4.5*(WinXP; ?)]
-Parent=Netscape 4.5
-Platform=WinXP
-
-[Mozilla/4.5*(X11*)]
-Parent=Netscape 4.5
-Platform=Linux
-
-[Mozilla/4.51*(Macintosh; ?; PPC)]
-Parent=Netscape 4.5
-Version=4.51
-MinorVer=51
-
-[Mozilla/4.51*(Win2000; ?)]
-Parent=Netscape 4.5
-Version=4.51
-MinorVer=51
-Platform=Win2000
-
-[Mozilla/4.51*(Win95; ?)]
-Parent=Netscape 4.5
-Version=4.51
-MinorVer=51
-Platform=Win95
-
-[Mozilla/4.51*(Win98; ?)]
-Parent=Netscape 4.5
-Version=4.51
-MinorVer=51
-Platform=Win98
-
-[Mozilla/4.51*(WinME; ?)]
-Parent=Netscape 4.5
-Version=4.51
-MinorVer=51
-Platform=WinME
-
-[Mozilla/4.51*(WinNT; ?)]
-Parent=Netscape 4.5
-Version=4.51
-MinorVer=51
-Platform=WinNT
-
-[Mozilla/4.51*(WinXP; ?)]
-Parent=Netscape 4.5
-Version=4.51
-MinorVer=51
-Platform=WinXP
-
-[Mozilla/4.51*(X11*)]
-Parent=Netscape 4.5
-Version=4.51
-MinorVer=51
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.6
-
-[Netscape 4.6]
-Parent=DefaultProperties
-Browser=Netscape
-Version=4.6
-MajorVer=4
-MinorVer=6
-Frames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=1
-supportsCSS=true
-
-[Mozilla/4.6 * (OS/2; ?)]
-Parent=Netscape 4.6
-Platform=OS/2
-
-[Mozilla/4.6*(Macintosh; ?; PPC)]
-Parent=Netscape 4.6
-Platform=MacPPC
-
-[Mozilla/4.6*(Win95; ?)]
-Parent=Netscape 4.6
-Platform=Win95
-
-[Mozilla/4.6*(Win98; ?)]
-Parent=Netscape 4.6
-Platform=Win98
-
-[Mozilla/4.6*(WinNT; ?)]
-Parent=Netscape 4.6
-Platform=WinNT
-
-[Mozilla/4.61*(Macintosh; ?; PPC)]
-Parent=Netscape 4.6
-Version=4.61
-MajorVer=4
-MinorVer=61
-Platform=MacPPC
-
-[Mozilla/4.61*(OS/2; ?)]
-Parent=Netscape 4.6
-Version=4.61
-MajorVer=4
-MinorVer=61
-Platform=OS/2
-
-[Mozilla/4.61*(Win95; ?)]
-Parent=Netscape 4.6
-Version=4.61
-MajorVer=4
-MinorVer=61
-Platform=Win95
-
-[Mozilla/4.61*(Win98; ?)]
-Parent=Netscape 4.6
-Version=4.61
-Platform=Win98
-
-[Mozilla/4.61*(WinNT; ?)]
-Parent=Netscape 4.6
-Version=4.61
-MajorVer=4
-MinorVer=61
-Platform=WinNT
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.7
-
-[Netscape 4.7]
-Parent=DefaultProperties
-Browser=Netscape
-Version=4.7
-MajorVer=4
-MinorVer=7
-Frames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=1
-supportsCSS=true
-
-[Mozilla/4.7 * (Win2000; ?)]
-Parent=Netscape 4.7
-Platform=Win2000
-
-[Mozilla/4.7*(Macintosh; ?; PPC)*]
-Parent=Netscape 4.7
-MinorVer=7
-Platform=MacPPC
-
-[Mozilla/4.7*(Win95; ?)*]
-Parent=Netscape 4.7
-MinorVer=7
-Platform=Win95
-
-[Mozilla/4.7*(Win98; ?)*]
-Parent=Netscape 4.7
-MinorVer=7
-Platform=Win98
-
-[Mozilla/4.7*(Windows NT 4.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=7
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.7*(Windows NT 5.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=7
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.7*(Windows NT 5.1; ?)*]
-Parent=Netscape 4.7
-MinorVer=7
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.7*(WinNT; ?)*]
-Parent=Netscape 4.7
-Platform=WinNT
-
-[Mozilla/4.7*(X11*)*]
-Parent=Netscape 4.7
-Platform=Linux
-
-[Mozilla/4.7*(X11; ?; SunOS*)*]
-Parent=Netscape 4.7
-Platform=SunOS
-
-[Mozilla/4.71*(Macintosh; ?; PPC)*]
-Parent=Netscape 4.7
-Version=4.71
-MinorVer=71
-Platform=MacPPC
-
-[Mozilla/4.71*(Win95; ?)*]
-Parent=Netscape 4.7
-Version=4.71
-MinorVer=71
-Platform=Win95
-
-[Mozilla/4.71*(Win98; ?)*]
-Parent=Netscape 4.7
-Version=4.71
-MinorVer=71
-Platform=Win98
-
-[Mozilla/4.71*(Windows NT 4.0; ?)*]
-Parent=Netscape 4.7
-Version=4.71
-MinorVer=71
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.71*(Windows NT 5.0; ?)*]
-Parent=Netscape 4.7
-Version=4.71
-MinorVer=71
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.71*(Windows NT 5.1; ?)*]
-Parent=Netscape 4.7
-Version=4.71
-MinorVer=71
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.71*(WinNT; ?)*]
-Parent=Netscape 4.7
-Version=4.71
-MinorVer=71
-Platform=WinNT
-
-[Mozilla/4.71*(X11*)*]
-Parent=Netscape 4.7
-Version=4.71
-MinorVer=71
-Platform=Linux
-
-[Mozilla/4.71*(X11; ?; SunOS*)*]
-Parent=Netscape 4.7
-Version=4.71
-MinorVer=71
-Platform=SunOS
-
-[Mozilla/4.72*(Macintosh; ?; PPC)*]
-Parent=Netscape 4.7
-MinorVer=72
-Platform=MacPPC
-
-[Mozilla/4.72*(Win95; ?)*]
-Parent=Netscape 4.7
-MinorVer=72
-Platform=Win95
-
-[Mozilla/4.72*(Win98; ?)*]
-Parent=Netscape 4.7
-MinorVer=72
-Platform=Win98
-
-[Mozilla/4.72*(Windows NT 4.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=72
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.72*(Windows NT 5.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=72
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.72*(Windows NT 5.1; ?)*]
-Parent=Netscape 4.7
-MinorVer=72
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.72*(WinNT; ?)*]
-Parent=Netscape 4.7
-MinorVer=72
-Platform=WinNT
-
-[Mozilla/4.72*(X11*)*]
-Parent=Netscape 4.7
-MinorVer=72
-Platform=Linux
-
-[Mozilla/4.72*(X11; ?; SunOS*)*]
-Parent=Netscape 4.7
-MinorVer=72
-Platform=SunOS
-
-[Mozilla/4.73*(Macintosh; ?; PPC)*]
-Parent=Netscape 4.7
-MinorVer=73
-Platform=MacPPC
-
-[Mozilla/4.73*(Win95; ?)*]
-Parent=Netscape 4.7
-MinorVer=73
-Platform=Win95
-
-[Mozilla/4.73*(Win98; ?)*]
-Parent=Netscape 4.7
-MinorVer=73
-Platform=Win98
-
-[Mozilla/4.73*(Windows NT 4.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=73
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.73*(Windows NT 5.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=73
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.73*(Windows NT 5.1; ?)*]
-Parent=Netscape 4.7
-MinorVer=73
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.73*(WinNT; ?)*]
-Parent=Netscape 4.7
-MinorVer=73
-Platform=WinNT
-
-[Mozilla/4.73*(X11*)*]
-Parent=Netscape 4.7
-MinorVer=73
-Platform=Linux
-
-[Mozilla/4.73*(X11; ?; SunOS*)*]
-Parent=Netscape 4.7
-MinorVer=73
-Platform=SunOS
-
-[Mozilla/4.74*(Macintosh; ?; PPC)*]
-Parent=Netscape 4.7
-MinorVer=74
-Platform=MacPPC
-
-[Mozilla/4.74*(Win95; ?)*]
-Parent=Netscape 4.7
-MinorVer=74
-Platform=Win95
-
-[Mozilla/4.74*(Win98; ?)*]
-Parent=Netscape 4.7
-MinorVer=74
-Platform=Win98
-
-[Mozilla/4.74*(Windows NT 4.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=74
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.74*(Windows NT 5.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=74
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.74*(Windows NT 5.1; ?)*]
-Parent=Netscape 4.7
-MinorVer=74
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.74*(WinNT; ?)*]
-Parent=Netscape 4.7
-MinorVer=74
-Platform=WinNT
-
-[Mozilla/4.74*(X11*)*]
-Parent=Netscape 4.7
-MinorVer=74
-Platform=Linux
-
-[Mozilla/4.74*(X11; ?; SunOS*)*]
-Parent=Netscape 4.7
-MinorVer=74
-Platform=SunOS
-
-[Mozilla/4.75*(Macintosh; ?; PPC)*]
-Parent=Netscape 4.7
-MinorVer=75
-Platform=MacPPC
-
-[Mozilla/4.75*(Win95; ?)*]
-Parent=Netscape 4.7
-MinorVer=75
-Platform=Win95
-
-[Mozilla/4.75*(Win98; ?)*]
-Parent=Netscape 4.7
-MinorVer=75
-Platform=Win98
-
-[Mozilla/4.75*(Windows NT 4.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=75
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.75*(Windows NT 5.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=75
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.75*(Windows NT 5.1; ?)*]
-Parent=Netscape 4.7
-MinorVer=75
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.75*(WinNT; ?)*]
-Parent=Netscape 4.7
-MinorVer=75
-Platform=WinNT
-
-[Mozilla/4.75*(X11*)*]
-Parent=Netscape 4.7
-MinorVer=75
-Platform=Linux
-
-[Mozilla/4.75*(X11; ?; SunOS*)*]
-Parent=Netscape 4.7
-MinorVer=75
-Platform=SunOS
-
-[Mozilla/4.76*(Macintosh; ?; PPC)*]
-Parent=Netscape 4.7
-MinorVer=76
-Platform=MacPPC
-
-[Mozilla/4.76*(Win95; ?)*]
-Parent=Netscape 4.7
-MinorVer=76
-Platform=Win95
-
-[Mozilla/4.76*(Win98; ?)*]
-Parent=Netscape 4.7
-MinorVer=76
-Platform=Win98
-
-[Mozilla/4.76*(Windows NT 4.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=76
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.76*(Windows NT 5.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=76
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.76*(Windows NT 5.1; ?)*]
-Parent=Netscape 4.7
-MinorVer=76
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.76*(WinNT; ?)*]
-Parent=Netscape 4.7
-MinorVer=76
-Platform=WinNT
-
-[Mozilla/4.76*(X11*)*]
-Parent=Netscape 4.7
-MinorVer=76
-Platform=Linux
-
-[Mozilla/4.76*(X11; ?; SunOS*)*]
-Parent=Netscape 4.7
-MinorVer=76
-Platform=SunOS
-
-[Mozilla/4.77*(Macintosh; ?; PPC)*]
-Parent=Netscape 4.7
-MinorVer=77
-Platform=MacPPC
-
-[Mozilla/4.77*(Win95; ?)*]
-Parent=Netscape 4.7
-MinorVer=77
-Platform=Win95
-
-[Mozilla/4.77*(Win98; ?)*]
-Parent=Netscape 4.7
-MinorVer=77
-Platform=Win98
-
-[Mozilla/4.77*(Windows NT 4.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=77
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.77*(Windows NT 5.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=77
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.77*(Windows NT 5.1; ?)*]
-Parent=Netscape 4.7
-MinorVer=77
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.77*(WinNT; ?)*]
-Parent=Netscape 4.7
-MinorVer=77
-Platform=WinNT
-
-[Mozilla/4.77*(X11*)*]
-Parent=Netscape 4.7
-MinorVer=77
-Platform=Linux
-
-[Mozilla/4.77*(X11; ?; SunOS*)*]
-Parent=Netscape 4.7
-MinorVer=77
-Platform=SunOS
-
-[Mozilla/4.78*(Macintosh; ?; PPC)*]
-Parent=Netscape 4.7
-MinorVer=78
-Platform=MacPPC
-
-[Mozilla/4.78*(Win95; ?)*]
-Parent=Netscape 4.7
-MinorVer=78
-Platform=Win95
-
-[Mozilla/4.78*(Win98; ?)*]
-Parent=Netscape 4.7
-MinorVer=78
-Platform=Win98
-
-[Mozilla/4.78*(Windows NT 4.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=78
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.78*(Windows NT 5.0; ?)*]
-Parent=Netscape 4.7
-MinorVer=78
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.78*(Windows NT 5.1; ?)*]
-Parent=Netscape 4.7
-MinorVer=78
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.78*(WinNT; ?)*]
-Parent=Netscape 4.7
-MinorVer=78
-Platform=WinNT
-
-[Mozilla/4.78*(X11*)*]
-Parent=Netscape 4.7
-MinorVer=78
-Platform=Linux
-
-[Mozilla/4.78*(X11; ?; SunOS*)*]
-Parent=Netscape 4.7
-MinorVer=78
-Platform=SunOS
-
-[Mozilla/4.79*(Macintosh; ?; PPC)*]
-Parent=Netscape 4.7
-Version=4.79
-MinorVer=79
-Platform=MacPPC
-
-[Mozilla/4.79*(Win95; ?)*]
-Parent=Netscape 4.7
-Version=4.79
-MinorVer=79
-Platform=Win95
-
-[Mozilla/4.79*(Win98; ?)*]
-Parent=Netscape 4.7
-Version=4.79
-MinorVer=79
-Platform=Win98
-
-[Mozilla/4.79*(Windows NT 4.0; ?)*]
-Parent=Netscape 4.7
-Version=4.79
-MinorVer=79
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.79*(Windows NT 5.0; ?)*]
-Parent=Netscape 4.7
-Version=4.79
-MinorVer=79
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.79*(Windows NT 5.1; ?)*]
-Parent=Netscape 4.7
-Version=4.79
-MinorVer=79
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.79*(WinNT; ?)*]
-Parent=Netscape 4.7
-Version=4.79
-MinorVer=79
-Platform=WinNT
-
-[Mozilla/4.79*(X11*)*]
-Parent=Netscape 4.7
-Version=4.79
-MinorVer=79
-Platform=Linux
-
-[Mozilla/4.79*(X11; ?; SunOS*)*]
-Parent=Netscape 4.7
-Version=4.79
-MinorVer=79
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.8
-
-[Netscape 4.8]
-Parent=DefaultProperties
-Browser=Netscape
-Version=4.8
-MajorVer=4
-MinorVer=8
-Frames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=1
-supportsCSS=true
-
-[Mozilla/4.8*(Macintosh; ?; MacPPC)*]
-Parent=Netscape 4.8
-Platform=MacPPC
-
-[Mozilla/4.8*(Macintosh; ?; PPC Mac OS X*]
-Parent=Netscape 4.8
-Platform=MacOSX
-
-[Mozilla/4.8*(Macintosh; ?; PPC)*]
-Parent=Netscape 4.8
-Platform=MacPPC
-
-[Mozilla/4.8*(Win95; *)*]
-Parent=Netscape 4.8
-
-[Mozilla/4.8*(Win98; *)*]
-Parent=Netscape 4.8
-Platform=Win98
-
-[Mozilla/4.8*(Windows NT 4.0; *)*]
-Parent=Netscape 4.8
-Platform=WinNT
-Win32=true
-
-[Mozilla/4.8*(Windows NT 5.0; *)*]
-Parent=Netscape 4.8
-Platform=Win2000
-Win32=true
-
-[Mozilla/4.8*(Windows NT 5.1; *)*]
-Parent=Netscape 4.8
-Platform=WinXP
-Win32=true
-
-[Mozilla/4.8*(WinNT; *)*]
-Parent=Netscape 4.8
-Platform=WinNT
-
-[Mozilla/4.8*(X11; *)*]
-Parent=Netscape 4.8
-Platform=Linux
-
-[Mozilla/4.8*(X11; *SunOS*)*]
-Parent=Netscape 4.8
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.0
-
-[Netscape 6.0]
-Parent=DefaultProperties
-Browser=Netscape
-Version=6.0
-MajorVer=6
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=MacPPC
-
-[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=Win7
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=Win7
-
-[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.0*]
-Parent=Netscape 6.0
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.1
-
-[Netscape 6.1]
-Parent=DefaultProperties
-Browser=Netscape
-Version=6.1
-MajorVer=6
-MinorVer=1
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=MacPPC
-
-[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=Win7
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=Win7
-
-[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.1*]
-Parent=Netscape 6.1
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.2
-
-[Netscape 6.2]
-Parent=DefaultProperties
-Browser=Netscape
-Version=6.2
-MajorVer=6
-MinorVer=2
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X*) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=MacPPC
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=Win7
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=Win7
-
-[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.2*]
-Parent=Netscape 6.2
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.0
-
-[Netscape 7.0]
-Parent=DefaultProperties
-Browser=Netscape
-Version=7.0
-MajorVer=7
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=MacPPC
-
-[Mozilla/5.0 (Windows; ?; Win*9x 4.90; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=Win7
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=Win7
-
-[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=Linux
-
-[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.0*]
-Parent=Netscape 7.0
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.1
-
-[Netscape 7.1]
-Parent=DefaultProperties
-Browser=Netscape
-Version=7.1
-MajorVer=7
-MinorVer=1
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/7.1]
-Parent=Netscape 7.1
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=MacPPC
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=Win7
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=Win7
-
-[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=Linux
-
-[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.1*]
-Parent=Netscape 7.1
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.2
-
-[Netscape 7.2]
-Parent=DefaultProperties
-Browser=Netscape
-Version=7.2
-MajorVer=7
-MinorVer=2
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=MacPPC
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=Win7
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=Win7
-
-[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=Linux
-
-[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.2*]
-Parent=Netscape 7.2
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 8.0
-
-[Netscape 8.0]
-Parent=DefaultProperties
-Browser=Netscape
-Version=8.0
-MajorVer=8
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=MacPPC
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=Win7
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=Win7
-
-[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=Linux
-
-[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/8.0*]
-Parent=Netscape 8.0
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 8.1
-
-[Netscape 8.1]
-Parent=DefaultProperties
-Browser=Netscape
-Version=8.1
-MajorVer=8
-MinorVer=1
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=MacPPC
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=WinVista
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=Win7
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=WinVista
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=Win7
-
-[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=Linux
-
-[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/8.1*]
-Parent=Netscape 8.1
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.0
-
-[SeaMonkey 1.0]
-Parent=DefaultProperties
-Browser=SeaMonkey
-Version=1.0
-MajorVer=1
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
-Parent=SeaMonkey 1.0
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
-Parent=SeaMonkey 1.0
-Platform=WinME
-
-[Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
-Parent=SeaMonkey 1.0
-Platform=Win98
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
-Parent=SeaMonkey 1.0
-Platform=Win2000
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
-Parent=SeaMonkey 1.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
-Parent=SeaMonkey 1.0
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
-Parent=SeaMonkey 1.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
-Parent=SeaMonkey 1.0
-Platform=Win7
-
-[Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
-Parent=SeaMonkey 1.0
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/20060221 SeaMonkey/1.0*]
-Parent=SeaMonkey 1.0
-Platform=Linux
-
-[Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
-Parent=SeaMonkey 1.0
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.1
-
-[SeaMonkey 1.1]
-Parent=DefaultProperties
-Browser=SeaMonkey
-Version=1.1
-MajorVer=1
-MinorVer=1
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
-Parent=SeaMonkey 1.1
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
-Parent=SeaMonkey 1.1
-Platform=WinME
-
-[Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
-Parent=SeaMonkey 1.1
-Platform=Win98
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
-Parent=SeaMonkey 1.1
-Platform=Win2000
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
-Parent=SeaMonkey 1.1
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
-Parent=SeaMonkey 1.1
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
-Parent=SeaMonkey 1.1
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
-Parent=SeaMonkey 1.1
-Platform=Win7
-
-[Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
-Parent=SeaMonkey 1.1
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/20060221 SeaMonkey/1.1*]
-Parent=SeaMonkey 1.1
-Platform=Linux
-
-[Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
-Parent=SeaMonkey 1.1
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 2.0
-
-[SeaMonkey 2.0]
-Parent=DefaultProperties
-Browser=SeaMonkey
-Version=2.0
-MajorVer=2
-Alpha=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
-Parent=SeaMonkey 2.0
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
-Parent=SeaMonkey 2.0
-Platform=WinME
-
-[Mozilla/5.0 (Windows; ?; Win98; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
-Parent=SeaMonkey 2.0
-Platform=Win98
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
-Parent=SeaMonkey 2.0
-Platform=Win2000
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
-Parent=SeaMonkey 2.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
-Parent=SeaMonkey 2.0
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
-Parent=SeaMonkey 2.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
-Parent=SeaMonkey 2.0
-Platform=Win7
-
-[Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
-Parent=SeaMonkey 2.0
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; ?; Linux*; *; rv:1.9*) Gecko/20060221 SeaMonkey/2.0*]
-Parent=SeaMonkey 2.0
-Platform=Linux
-
-[Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
-Parent=SeaMonkey 2.0
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 1.0
-
-[Flock 1.0]
-Parent=DefaultProperties
-Browser=Flock
-Version=1.0
-MajorVer=1
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
-Parent=Flock 1.0
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
-Parent=Flock 1.0
-Platform=WinME
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
-Parent=Flock 1.0
-Platform=Win2000
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
-Parent=Flock 1.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
-Parent=Flock 1.0
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
-Parent=Flock 1.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
-Parent=Flock 1.0
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 2.0
-
-[Flock 2.0]
-Parent=DefaultProperties
-Browser=Flock
-Version=2.0
-MajorVer=2
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
-Parent=Flock 2.0
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
-Parent=Flock 2.0
-Platform=WinME
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
-Parent=Flock 2.0
-Platform=Win2000
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
-Parent=Flock 2.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
-Parent=Flock 2.0
-Platform=Win2003
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
-Parent=Flock 2.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
-Parent=Flock 2.0
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sleipnir 2.0
-
-[Sleipnir]
-Parent=DefaultProperties
-Browser=Sleipnir
-Version=2.0
-MajorVer=2
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.0*) Sleipnir/2.*]
-Parent=Sleipnir
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.1*) Sleipnir/2.*]
-Parent=Sleipnir
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.2*) Sleipnir/2.*]
-Parent=Sleipnir
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.0*) Sleipnir/2.*]
-Parent=Sleipnir
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.1*) Sleipnir/2.*]
-Parent=Sleipnir
-Platform=Win7
-
-[Sleipnir*]
-Parent=Sleipnir
-
-[Sleipnir/2.*]
-Parent=Sleipnir
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 1.0
-
-[Fennec 1.0]
-Parent=DefaultProperties
-Browser=Firefox Mobile
-Version=1.0
-MajorVer=1
-Alpha=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9*) Gecko/* Fennec/1.0*]
-Parent=Fennec 1.0
-Platform=WinXP
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9*) Gecko/* Fennec/1.0*]
-Parent=Fennec 1.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9*) Gecko/* Fennec/1.0*]
-Parent=Fennec 1.0
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firebird
-
-[Firebird]
-Parent=DefaultProperties
-Browser=Firebird
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Linux; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
-Parent=Firebird
-
-[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firebird/0.*]
-Parent=Firebird
-
-[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
-Parent=Firebird
-
-[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firebird/0.*]
-Parent=Firebird
-
-[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firebird/0.*]
-Parent=Firebird
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
-Parent=Firebird
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firebird/0.*]
-Parent=Firebird
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firebird/0.*]
-Parent=Firebird
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
-Parent=Firebird
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Firebird Browser/0.*]
-Parent=Firebird
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Firebird/0.*]
-Parent=Firebird
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
-Parent=Firebird
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.?; rv:1.*) Gecko/* Firebird/0.*]
-Parent=Firebird
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.*; *; rv:1.*) Gecko/* Firebird/0.*]
-Parent=Firebird
-Win32=true
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firebird/0.*]
-Parent=Firebird
-Win32=true
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
-Parent=Firebird
-Win32=true
-
-[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firebird/0.*]
-Parent=Firebird
-
-[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
-Parent=Firebird
-
-[Mozilla/5.0 (X11; *; IRIX*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
-Parent=Firebird
-
-[Mozilla/5.0 (X11; *; Linux*; *; rv:1.*) Gecko/* Firebird/0.*]
-Parent=Firebird
-
-[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
-Parent=Firebird
-
-[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firebird/0.*]
-Parent=Firebird
-
-[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
-Parent=Firebird
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox
-
-[Firefox]
-Parent=DefaultProperties
-Browser=Firefox
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.3
-w3cdomversion=1.0
-
-[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Platform=MacOSX
-
-[Mozilla/5.0 (Macintosh; *; *Mac OS X*; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-
-[Mozilla/5.0 (OS/2; *; Warp*; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-
-[Mozilla/5.0 (Windows NT 5.?; ?; rv:1.*) Gecko/* Firefox]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win 9x 4.90; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win95; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win98; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.*; *; rv:1.*) Gecko/* Deer Park/Alpha*]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Firefox/10.5]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.0; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Platform=WinVista
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.0*; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Win32=true
-
-[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *; FreeBSD*; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-
-[Mozilla/5.0 (X11; *; HP-UX*; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Platform=HP-UX
-
-[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Platform=IRIX64
-
-[Mozilla/5.0 (X11; *; Linux*; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-
-[Mozilla/5.0 (X11; *; Linux*; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-
-[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/0.*]
-Parent=Firefox
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.0
-
-[Firefox 1.0]
-Parent=DefaultProperties
-Browser=Firefox
-Version=1.0
-MajorVer=1
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.3
-w3cdomversion=1.0
-
-[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=MacPPC
-
-[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=MacOSX
-
-[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=OS/2
-
-[Mozilla/5.0 (Windows; *; Win 9x 4.90*; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=WinVista
-Win32=true
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=Linux
-
-[Mozilla/5.0 (X11; *; *Linux*; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=Linux
-
-[Mozilla/5.0 (X11; *; DragonFly*; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-
-[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=HP-UX
-
-[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=IRIX64
-
-[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.0*]
-Parent=Firefox 1.0
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.4
-
-[Firefox 1.4]
-Parent=DefaultProperties
-Browser=Firefox
-Version=1.4
-MajorVer=1
-MinorVer=4
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.3
-w3cdomversion=1.0
-
-[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=Linux
-
-[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=MacOSX
-
-[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=OS/2
-
-[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win95*; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=WinVista
-Win32=true
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=Linux
-
-[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=HP-UX
-
-[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=IRIX64
-
-[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.4*]
-Parent=Firefox 1.4
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.5
-
-[Firefox 1.5]
-Parent=DefaultProperties
-Browser=Firefox
-Version=1.5
-MajorVer=1
-MinorVer=5
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.5
-w3cdomversion=1.0
-
-[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=Linux
-
-[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=MacOSX
-
-[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=OS/2
-
-[Mozilla/5.0 (rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-
-[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2 x64; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=WinVista
-Win32=true
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=Linux
-
-[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=HP-UX
-
-[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=IRIX64
-
-[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.5*]
-Parent=Firefox 1.5
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.0
-
-[Firefox 2.0]
-Parent=DefaultProperties
-Browser=Firefox
-Version=2.0
-MajorVer=2
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.5
-w3cdomversion=1.0
-
-[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=Linux
-
-[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=MacOSX
-
-[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=OS/2
-
-[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win95; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win98; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=WinVista
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=Win7
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=Linux
-
-[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=HP-UX
-
-[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=IRIX64
-
-[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.8*) Gecko/* Firefox/2.0*]
-Parent=Firefox 2.0
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.0
-
-[Firefox 3.0]
-Parent=DefaultProperties
-Browser=Firefox
-Version=3.0
-MajorVer=3
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-ecmascriptversion=1.5
-w3cdomversion=1.0
-
-[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=Win2000
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=WinVista
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=Win7
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=WinXP
-Win32=false
-Win64=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=Win2003
-Win32=false
-Win64=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=Win7
-
-[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=Linux
-
-[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=HP-UX
-
-[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=IRIX64
-
-[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.0*]
-Parent=Firefox 3.0
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.1
-
-[Firefox 3.1]
-Parent=DefaultProperties
-Browser=Firefox
-Version=3.1
-MajorVer=3
-MinorVer=1
-Beta=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=WinVista
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=Win7
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=WinXP
-Win32=false
-Win64=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=Win2003
-Win32=false
-Win64=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=Win7
-
-[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=Linux
-
-[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=HP-UX
-
-[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=IRIX64
-
-[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.1*]
-Parent=Firefox 3.1
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.5
-
-[Firefox 3.5]
-Parent=DefaultProperties
-Browser=Firefox
-Version=3.5
-MajorVer=3
-MinorVer=5
-Beta=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=3
-supportsCSS=true
-
-[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=WinVista
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=Win7
-
-[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=WinXP
-Win32=false
-Win64=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=Win2003
-Win32=false
-Win64=true
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=WinVista
-
-[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=Win7
-
-[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=Linux
-
-[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=HP-UX
-
-[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=IRIX64
-
-[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
-Parent=Firefox 3.5
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Phoenix
-
-[Phoenix]
-Parent=DefaultProperties
-Browser=Phoenix
-Version=0.5
-MinorVer=5
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.4*) Gecko/* Phoenix/0.5*]
-Parent=Phoenix
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Win98; *; rv:1.4*) Gecko/* Phoenix/0.5*]
-Parent=Phoenix
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.0*; *; rv:1.4*) Gecko/* Phoenix/0.5*]
-Parent=Phoenix
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.4*) Gecko/* Phoenix/0.5*]
-Parent=Phoenix
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; *; Windows NT 5.2*; *; rv:1.4*) Gecko/* Phoenix/0.5*]
-Parent=Phoenix
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (X11; *; Linux*; *; rv:1.4*) Gecko/* Phoenix/0.5*]
-Parent=Phoenix
-Platform=Linux
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iceweasel
-
-[Iceweasel]
-Parent=DefaultProperties
-Browser=Iceweasel
-Platform=Linux
-Beta=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (X11; U; Linux*; *; rv:1.8*) Gecko/* Iceweasel/2.0* (Debian-*)]
-Parent=Iceweasel
-Version=2.0
-MajorVer=2
-MinorVer=0
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.0
-
-[Mozilla 1.0]
-Parent=DefaultProperties
-Browser=Mozilla
-Version=1.0
-MajorVer=1
-Beta=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (*rv:1.0.*) Gecko/*]
-Parent=Mozilla 1.0
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.1
-
-[Mozilla 1.1]
-Parent=DefaultProperties
-Browser=Mozilla
-Version=1.1
-MajorVer=1
-MinorVer=1
-Beta=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (*rv:1.1.*) Gecko/*]
-Parent=Mozilla 1.1
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.2
-
-[Mozilla 1.2]
-Parent=DefaultProperties
-Browser=Mozilla
-Version=1.2
-MajorVer=1
-MinorVer=2
-Beta=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (*rv:1.2.*) Gecko/*]
-Parent=Mozilla 1.2
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.3
-
-[Mozilla 1.3]
-Parent=DefaultProperties
-Browser=Mozilla
-Version=1.3
-MajorVer=1
-MinorVer=3
-Beta=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (*rv:1.3.*) Gecko/*]
-Parent=Mozilla 1.3
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.4
-
-[Mozilla 1.4]
-Parent=DefaultProperties
-Browser=Mozilla
-Version=1.4
-MajorVer=1
-MinorVer=4
-Beta=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (*rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=Win31
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=Win31
-Win16=true
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win95; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *Linux*; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=Linux
-
-[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *SunOS*; *rv:1.4*) Gecko/*]
-Parent=Mozilla 1.4
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.5
-
-[Mozilla 1.5]
-Parent=DefaultProperties
-Browser=Mozilla
-Version=1.5
-MajorVer=1
-MinorVer=5
-Beta=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (*rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=Win31
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=Win31
-Win16=true
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win95; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *Linux*; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=Linux
-
-[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *SunOS*; *rv:1.5*) Gecko/*]
-Parent=Mozilla 1.5
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.6
-
-[Mozilla 1.6]
-Parent=DefaultProperties
-Browser=Mozilla
-Version=1.6
-MajorVer=1
-MinorVer=6
-Beta=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (*rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=Win31
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=Win31
-Win16=true
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win95; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *Linux*; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=Linux
-
-[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *SunOS*; *rv:1.6*) Gecko/*]
-Parent=Mozilla 1.6
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.7
-
-[Mozilla 1.7]
-Parent=DefaultProperties
-Browser=Mozilla
-Version=1.7
-MajorVer=1
-MinorVer=7
-Beta=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.5
-w3cdomversion=1.0
-
-[Mozilla/5.0 (*rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=Win31
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=Win31
-Win16=true
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win95; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *Linux*; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=Linux
-
-[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *SunOS*; *rv:1.7*) Gecko/*]
-Parent=Mozilla 1.7
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.8
-
-[Mozilla 1.8]
-Parent=DefaultProperties
-Browser=Mozilla
-Version=1.8
-MajorVer=1
-MinorVer=8
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.5
-w3cdomversion=1.0
-
-[Mozilla/5.0 (*rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=Win31
-Win16=true
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win95; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *Linux*; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=Linux
-
-[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *SunOS*; *rv:1.8*) Gecko/*]
-Parent=Mozilla 1.8
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.9
-
-[Mozilla 1.9]
-Parent=DefaultProperties
-Browser=Mozilla
-Version=1.9
-MajorVer=1
-MinorVer=9
-Alpha=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-JavaApplets=true
-JavaScript=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/5.0 (*rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-
-[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=MacOSX
-
-[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=WinME
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=Win31
-Win16=true
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win95; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=Win95
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Win98; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=Win98
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=Win2000
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=WinXP
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=Win2003
-Win32=true
-
-[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=WinNT
-Win32=true
-
-[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=FreeBSD
-
-[Mozilla/5.0 (X11; *Linux*; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=Linux
-
-[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=OpenBSD
-
-[Mozilla/5.0 (X11; *SunOS*; *rv:1.9*) Gecko/*]
-Parent=Mozilla 1.9
-Platform=SunOS
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE Mac
-
-[IE Mac]
-Parent=DefaultProperties
-Browser=IE
-Platform=MacPPC
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-JavaApplets=true
-JavaScript=true
-CssVersion=1
-supportsCSS=true
-
-[Mozilla/?.? (compatible; MSIE 4.0*; *Mac_PowerPC*]
-Parent=IE Mac
-Version=4.0
-MajorVer=4
-MinorVer=0
-
-[Mozilla/?.? (compatible; MSIE 4.5*; *Mac_PowerPC*]
-Parent=IE Mac
-Version=4.5
-MajorVer=4
-MinorVer=5
-
-[Mozilla/?.? (compatible; MSIE 5.0*; *Mac_PowerPC*]
-Parent=IE Mac
-Version=5.0
-MajorVer=5
-MinorVer=0
-
-[Mozilla/?.? (compatible; MSIE 5.1*; *Mac_PowerPC*]
-Parent=IE Mac
-Version=5.1
-MajorVer=5
-MinorVer=1
-
-[Mozilla/?.? (compatible; MSIE 5.2*; *Mac_PowerPC*]
-Parent=IE Mac
-Version=5.2
-MajorVer=5
-MinorVer=2
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 5.5
-
-[AOL 9.0/IE 5.5]
-Parent=DefaultProperties
-Browser=AOL
-Version=5.5
-MajorVer=5
-MinorVer=5
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-CssVersion=2
-supportsCSS=true
-AOL=true
-aolVersion=9.0
-ecmascriptversion=1.3
-w3cdomversion=1.0
-
-[Mozilla/?.* (?compatible; *MSIE 5.5; *AOL 9.0*)*]
-Parent=AOL 9.0/IE 5.5
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Win 9x 4.90*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 95*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win95
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win98
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 4.0*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinNT
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 5.5
-Platform=WinVista
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 6.0
-
-[AOL 9.0/IE 6.0]
-Parent=DefaultProperties
-Browser=AOL
-Version=6.0
-MajorVer=6
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-CssVersion=2
-supportsCSS=true
-AOL=true
-aolVersion=9.0
-ecmascriptversion=1.3
-w3cdomversion=1.0
-
-[Mozilla/?.* (?compatible; *MSIE 6.0; *AOL 9.0*)*]
-Parent=AOL 9.0/IE 6.0
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Win 9x 4.90*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 95*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win95
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win98
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 4.0*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinNT
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 6.0
-Platform=WinVista
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 7.0
-
-[AOL 9.0/IE 7.0]
-Parent=DefaultProperties
-Browser=AOL
-Version=7.0
-MajorVer=7
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-CssVersion=2
-supportsCSS=true
-AOL=true
-aolVersion=9.0
-
-[Mozilla/?.* (?compatible; *MSIE 7.0; *AOL 9.0*)*]
-Parent=AOL 9.0/IE 7.0
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Win 9x 4.90*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 95*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win95
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win98
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 4.0*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinNT
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*]
-Parent=AOL 9.0/IE 7.0
-Platform=WinVista
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant Browser
-
-[Avant Browser]
-Parent=DefaultProperties
-Browser=Avant Browser
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-CssVersion=2
-supportsCSS=true
-
-[Advanced Browser (http://www.avantbrowser.com)]
-Parent=Avant Browser
-
-[Avant Browser*]
-Parent=Avant Browser
-
-[Avant Browser/*]
-Parent=Avant Browser
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 4.01
-
-[IE 4.01]
-Parent=DefaultProperties
-Browser=IE
-Version=4.01
-MajorVer=4
-MinorVer=01
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/?.* (?compatible; *MSIE 4.01*)*]
-Parent=IE 4.01
-
-[Mozilla/4.0 (compatible; MSIE 4.01; *Windows 95*)*]
-Parent=IE 4.01
-Platform=Win95
-
-[Mozilla/4.0 (compatible; MSIE 4.01; *Windows 98*)*]
-Parent=IE 4.01
-Platform=Win98
-
-[Mozilla/4.0 (compatible; MSIE 4.01; *Windows 98; Win 9x 4.90;*)*]
-Parent=IE 4.01
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 4.0*)*]
-Parent=IE 4.01
-Platform=WinNT
-
-[Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 5.0*)*]
-Parent=IE 4.01
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 5.01*)*]
-Parent=IE 4.01
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 4.01; Windows NT)]
-Parent=IE 4.01
-Platform=WinNT
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.0
-
-[IE 5.0]
-Parent=DefaultProperties
-Browser=IE
-Version=5.0
-MajorVer=5
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/?.* (?compatible; *MSIE 5.0*)*]
-Parent=IE 5.0
-
-[Mozilla/4.0 (compatible; MSIE 5.0; *Windows 95*)*]
-Parent=IE 5.0
-Platform=Win95
-
-[Mozilla/4.0 (compatible; MSIE 5.0; *Windows 98*)*]
-Parent=IE 5.0
-Platform=Win98
-
-[Mozilla/4.0 (compatible; MSIE 5.0; *Windows 98; Win 9x 4.90;*)*]
-Parent=IE 5.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 4.0*)*]
-Parent=IE 5.0
-Platform=WinNT
-
-[Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 5.0*)*]
-Parent=IE 5.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 5.01*)*]
-Parent=IE 5.0
-Platform=Win2000
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.01
-
-[IE 5.01]
-Parent=DefaultProperties
-Browser=IE
-Version=5.01
-MajorVer=5
-MinorVer=01
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-CssVersion=2
-supportsCSS=true
-
-[Mozilla/?.* (?compatible; *MSIE 5.01*)*]
-Parent=IE 5.01
-
-[Mozilla/4.0 (compatible; MSIE 5.01; *Windows 95*)*]
-Parent=IE 5.01
-Platform=Win95
-
-[Mozilla/4.0 (compatible; MSIE 5.01; *Windows 98*)*]
-Parent=IE 5.01
-Platform=Win98
-
-[Mozilla/4.0 (compatible; MSIE 5.01; *Windows 98; Win 9x 4.90;*)*]
-Parent=IE 5.01
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 4.0*)*]
-Parent=IE 5.01
-Platform=WinNT
-
-[Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 5.0*)*]
-Parent=IE 5.01
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 5.01*)*]
-Parent=IE 5.01
-Platform=Win2000
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.5
-
-[IE 5.5]
-Parent=DefaultProperties
-Browser=IE
-Version=5.5
-MajorVer=5
-MinorVer=5
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.2
-w3cdomversion=1.0
-
-[Mozilla/?.* (?compatible; *MSIE 5.5*)*]
-Parent=IE 5.5
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *Windows 95*)*]
-Parent=IE 5.5
-Platform=Win95
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *Windows 98*)*]
-Parent=IE 5.5
-Platform=Win98
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *Windows 98; Win 9x 4.90*)*]
-Parent=IE 5.5
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 4.0*)*]
-Parent=IE 5.5
-Platform=WinNT
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.0*)*]
-Parent=IE 5.5
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.01*)*]
-Parent=IE 5.5
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.1*)*]
-Parent=IE 5.5
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.2*)*]
-Parent=IE 5.5
-Platform=Win2003
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 6.0
-
-[IE 6.0]
-Parent=DefaultProperties
-Browser=IE
-Version=6.0
-MajorVer=6
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.2
-w3cdomversion=1.0
-msdomversion=6.0
-
-[Mozilla/?.* (?compatible; *MSIE 6.0*)*]
-Parent=IE 6.0
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *Windows 95*)*]
-Parent=IE 6.0
-Platform=Win95
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *Windows 98*)*]
-Parent=IE 6.0
-Platform=Win98
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *Windows 98; Win 9x 4.90*)*]
-Parent=IE 6.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 4.0*)*]
-Parent=IE 6.0
-Platform=WinNT
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.0*)*]
-Parent=IE 6.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.01*)*]
-Parent=IE 6.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.1*)*]
-Parent=IE 6.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2*)*]
-Parent=IE 6.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2;*Win64;*)*]
-Parent=IE 6.0
-Platform=WinXP
-Win32=false
-Win64=true
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2;*WOW64;*)*]
-Parent=IE 6.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.0*)*]
-Parent=IE 6.0
-Platform=WinVista
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 7.0
-
-[IE 7.0]
-Parent=DefaultProperties
-Browser=IE
-Version=7.0
-MajorVer=7
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-CssVersion=2
-supportsCSS=true
-ecmascriptversion=1.2
-msdomversion=7.0
-w3cdomversion=1.0
-
-[Mozilla/?.* (?compatible; *MSIE 7.0*)*]
-Parent=IE 7.0
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *Windows 98*)*]
-Parent=IE 7.0
-Platform=Win98
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *Windows 98; Win 9x 4.90;*)*]
-Parent=IE 7.0
-Platform=WinME
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 4.0*)*]
-Parent=IE 7.0
-Platform=WinNT
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0*)*]
-Parent=IE 7.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.01*)*]
-Parent=IE 7.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*)*]
-Parent=IE 7.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*)*]
-Parent=IE 7.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64;*)*]
-Parent=IE 7.0
-Platform=WinXP
-Win32=false
-Win64=true
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*WOW64;*)*]
-Parent=IE 7.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*)*]
-Parent=IE 7.0
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*)*]
-Parent=IE 7.0
-Platform=Win7
-
-[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; *)*]
-Parent=IE 7.0
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 8.0
-
-[IE 8.0]
-Parent=DefaultProperties
-Browser=IE
-Version=8.0
-MajorVer=8
-Win32=true
-Frames=true
-IFrames=true
-Tables=true
-Cookies=true
-BackgroundSounds=true
-CDF=true
-VBScript=true
-JavaApplets=true
-JavaScript=true
-ActiveXControls=true
-CssVersion=3
-supportsCSS=true
-ecmascriptversion=1.2
-msdomversion=8.0
-w3cdomversion=1.0
-
-[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0*)*]
-Parent=IE 8.0
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Win32*)*]
-Parent=IE 8.0
-Platform=Win32
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.0*)*]
-Parent=IE 8.0
-Platform=Win2000
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1*)*]
-Parent=IE 8.0
-Platform=WinXP
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2*)*]
-Parent=IE 8.0
-Platform=Win2003
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0*)*]
-Parent=IE 8.0
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0*)*]
-Parent=IE 8.0
-Platform=WinVista
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0*)*]
-Parent=IE 8.0
-Platform=WinVista
-Win32=false
-Win64=true
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0*)*]
-Parent=IE 8.0
-Platform=WinVista
-Win64=false
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1*)*]
-Parent=IE 8.0
-Platform=Win7
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0*)*]
-Parent=IE 8.0
-Platform=Win7
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0*)*]
-Parent=IE 8.0
-Platform=Win7
-Win32=false
-Win64=true
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0*)*]
-Parent=IE 8.0
-Platform=Win7
-Win64=false
-
-[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 7.0; Trident/4.0*)*]
-Parent=IE 8.0
-Platform=Win7
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Default Browser
-
-[*]
-Browser=Default Browser
-Version=0
-MajorVer=0
-MinorVer=0
-Platform=unknown
-Alpha=false
-Beta=false
-Win16=false
-Win32=false
-Win64=false
-Frames=true
-IFrames=false
-Tables=true
-Cookies=false
-BackgroundSounds=false
-CDF=false
-VBScript=false
-JavaApplets=false
-JavaScript=false
-ActiveXControls=false
-Stripper=false
-isBanned=false
-isMobileDevice=false
-isSyndicationReader=false
-Crawler=false
-CssVersion=0
-supportsCSS=false
-AOL=false
-aolVersion=0
-AuthenticodeUpdate=0
-CSS=0
-WAP=false
-netCLR=false
-ClrVersion=0
-ECMAScriptVersion=0.0
-W3CDOMVersion=0.0
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/config b/Source/Platforms/Linux/Binaries/Mono/etc/mono/config
deleted file mode 100644
index 385128f74..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/config
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/etc/mono/mconfig/config.xml b/Source/Platforms/Linux/Binaries/Mono/etc/mono/mconfig/config.xml
deleted file mode 100644
index a3df3b5e9..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/etc/mono/mconfig/config.xml
+++ /dev/null
@@ -1,616 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
- ]]>
-
-
-
-
-
- ]]>
-
-
-
-
-
- ]]>
-
-
-
-
-
-]]>
-
-
-
-
-
-]]>
-
-
-
-
-
-]]>
-
-
-
-
-
-]]>
-
-
-
-
-
-]]>
-
-
-
-
-
-]]>
-
-
-
-
-
-]]>
-
-
-
-
-
-]]>
-
-
-
-
-]]>
-
-
-
-
-
-]]>
-
-
-
-
-
-]]>
-
-
-
-
-
-]]>
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/libMonoPosixHelper.so b/Source/Platforms/Linux/Binaries/Mono/lib/libMonoPosixHelper.so
deleted file mode 100755
index 09ccce98c..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/libMonoPosixHelper.so
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:2f7e3cc08554aeec9cd731493c685e054fdc369fdcb99671b3fc791ddb449754
-size 953416
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/libmono-native.so b/Source/Platforms/Linux/Binaries/Mono/lib/libmono-native.so
deleted file mode 100644
index b2f93e404..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/libmono-native.so
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:7c398b22f122c52e8554af5560e9788648941f0f9598df5c430fdda676413db2
-size 181240
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/libmono-native.so.0.0.0 b/Source/Platforms/Linux/Binaries/Mono/lib/libmono-native.so.0.0.0
deleted file mode 100755
index 888a82c8c..000000000
Binary files a/Source/Platforms/Linux/Binaries/Mono/lib/libmono-native.so.0.0.0 and /dev/null differ
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/Accessibility.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/Accessibility.dll
deleted file mode 100644
index ec03d154b..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/Accessibility.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:ad0831c5a0384a5f0d1e1034568de54dacf581b5f6f54eaaa53b4ba76d4a0ecb
-size 12288
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/Mono.Posix.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/Mono.Posix.dll
deleted file mode 100644
index 1e70186be..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/Mono.Posix.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:be99bf1ad3d7903078e16721bff9de6e424b603b35207a36701030e2e008eb5e
-size 212480
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/Mono.Security.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/Mono.Security.dll
deleted file mode 100644
index f07d7590f..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/Mono.Security.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:3c885141881da78fb1fef25e86dc26c15bb9259ca646efaab59adf51bf19326e
-size 314368
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ComponentModel.Composition.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ComponentModel.Composition.dll
deleted file mode 100644
index ed978d2af..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ComponentModel.Composition.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:aaa3265a5541345cbb0a6f0f072c290411ffd07bb07fedef945a4818caeb681b
-size 259072
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ComponentModel.DataAnnotations.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ComponentModel.DataAnnotations.dll
deleted file mode 100644
index 2ff74f81a..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ComponentModel.DataAnnotations.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:f8980666889449bbb1e0c2de21f400a9423f29367a0028aa5797b483e8d3ddb8
-size 84992
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Configuration.Install.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Configuration.Install.dll
deleted file mode 100644
index 43770a8f1..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Configuration.Install.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:47063a3aa980cd976d83305daca6fc8e56460f72021b44c56c87728b45733ee0
-size 24064
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Configuration.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Configuration.dll
deleted file mode 100644
index c88213e05..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Configuration.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:bcd2d64ad1f45b174158004790f7c64f6fba5d159f4f95b56b91fa746cc40369
-size 122880
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Core.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Core.dll
deleted file mode 100644
index e32c07403..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Core.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:d6c8c6c3806730a2929e93982038e1d974288c01a968f226926c0446a04355fa
-size 1065472
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.DataSetExtensions.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.DataSetExtensions.dll
deleted file mode 100644
index 7e4028919..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.DataSetExtensions.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:0d8070ba80ebb439fb9e0814c80444cde62e404cbf99137dbbbc77b27ebac5f9
-size 29696
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.Entity.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.Entity.dll
deleted file mode 100644
index a4766e882..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.Entity.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:59ce7a6e2e2c76861367189d9f9414750ad3f6453afd17583b1457c5ef22e4a0
-size 3339264
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.Linq.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.Linq.dll
deleted file mode 100644
index 19372a634..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.Linq.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:bbb8e4fd87f93b9f664e30bd0b4f8d607d27808b229d4168252e6d184b466dff
-size 493568
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.OracleClient.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.OracleClient.dll
deleted file mode 100644
index a9fe8d448..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.OracleClient.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:1108ccabf3473a31bb5a9cc00330636eae518fe11d92d2699a5e8744570127a8
-size 173056
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.Services.Client.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.Services.Client.dll
deleted file mode 100644
index 45cdc98d8..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.Services.Client.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:eecdfed100c9b12f3f4517673898583f8d5954e69c92070d195dff97239522c9
-size 418816
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.Services.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.Services.dll
deleted file mode 100644
index 6cc7be948..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.Services.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:bfc477a2ddad68546c9f848954bad584791acf8bac015682f27cd4cc780637a6
-size 56320
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.dll
deleted file mode 100644
index f6dc4f6cc..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Data.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:7fc75a2c6dba89a00b6e7d92ddf8e877456263582b8eb36c7efce9393e63ed3d
-size 2119680
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Deployment.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Deployment.dll
deleted file mode 100644
index 14f9ef74d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Deployment.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:7939e391e7aaf1998d34326075d321a7a3728e07f095ce34d3cfe900017aa90a
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.DirectoryServices.Protocols.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.DirectoryServices.Protocols.dll
deleted file mode 100644
index 57cf03400..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.DirectoryServices.Protocols.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:6fbee48c805fd754ead8cec06766258c1a1f3dd9be0a8ee9e408c1ccdbaa7af6
-size 61952
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.DirectoryServices.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.DirectoryServices.dll
deleted file mode 100644
index efbedbbc0..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.DirectoryServices.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:18627f929f6ce1b9f9a20faaed5fc68fd13706013b3ea0aa3c0f24ba6fa63585
-size 94208
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Drawing.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Drawing.dll
deleted file mode 100644
index cad09c7f6..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Drawing.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:165cee5d60a2af6754803e9c57084957bb9787a513f431953d96c802df9df57a
-size 482816
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Dynamic.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Dynamic.dll
deleted file mode 100644
index 0a035a81a..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Dynamic.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9c1f2c1412802cb9ecfe3abd3b2936d687289bdfa96af98be730726cd8e0e5da
-size 87040
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.EnterpriseServices.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.EnterpriseServices.dll
deleted file mode 100644
index 4e6aba4af..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.EnterpriseServices.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:f15fadd2236839ac016f59fa019450f1032c1058802590b6bd7c0d0b69293599
-size 46592
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.IO.Compression.FileSystem.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.IO.Compression.FileSystem.dll
deleted file mode 100644
index 58f6399eb..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.IO.Compression.FileSystem.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:4aaf8f27188828ef81422afba2870cc5d02e435a458a24bf77bfa9813e0200ec
-size 18432
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.IO.Compression.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.IO.Compression.dll
deleted file mode 100644
index 5ea09fb1b..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.IO.Compression.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:fe4056a11db7cba8d19869dbf93cd53e0c783057edcbe32c72d28f8fa0e9e785
-size 99840
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.IdentityModel.Selectors.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.IdentityModel.Selectors.dll
deleted file mode 100644
index c1c710901..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.IdentityModel.Selectors.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:b2bfaa4db71a2fabcf1d77f263096ec085882b761b21d6259b90f9d538022a4e
-size 17408
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.IdentityModel.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.IdentityModel.dll
deleted file mode 100644
index 49d1cd051..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.IdentityModel.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:64f0b1fad23f6afc8f5068cf9605293555fddd92c5a2f6cdf6dffcf8eba737f6
-size 139776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Json.Microsoft.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Json.Microsoft.dll
deleted file mode 100644
index a57ecefc2..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Json.Microsoft.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:8ccc44d40f001796f41b2099c51b6784683a82d7381e5f8989ae4a9ccfbea2b8
-size 54784
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Json.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Json.dll
deleted file mode 100644
index 99b07041a..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Json.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:7cfc9b1e8c8ea9d607bd453f25cf6391eef8f8910b2e2773113f33b04a8e53fd
-size 32768
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Management.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Management.dll
deleted file mode 100644
index 793dadc34..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Management.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:ec66b1441d7310f0e3b53ace2f79e4818acec382e88a30b842c4a62fc7a1ce8c
-size 49152
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Messaging.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Messaging.dll
deleted file mode 100644
index b3c79dd93..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Messaging.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:6ad58270f68a9fb1e605b1622a71994bef9fcfc17bbc499dc06da5c9f13843c6
-size 75776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Net.Http.Formatting.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Net.Http.Formatting.dll
deleted file mode 100644
index 4f1e6b6f2..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Net.Http.Formatting.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:e77e902ca5738dd40d971e1b1cd15eb249553e505e3f3d87cdae45b9e0853083
-size 519168
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Net.Http.WebRequest.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Net.Http.WebRequest.dll
deleted file mode 100644
index ff948af08..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Net.Http.WebRequest.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:2bd78be0ad1da7978d770d5a83b36724ab7a4de5e1267c3b889b82ead959fb7f
-size 8704
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Net.Http.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Net.Http.dll
deleted file mode 100644
index f4cba1a7f..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Net.Http.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:8d0a132ad58a0824ac4fe2b8aa92006801a8b3919fdaac85982bad44ce62f0a3
-size 115712
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Net.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Net.dll
deleted file mode 100644
index 79053c279..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Net.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:cd91fe86c3b9dfe133798dcefdfea6783e49b51bb06cb8fed7ebc4d8f396d2ae
-size 13312
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Numerics.Vectors.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Numerics.Vectors.dll
deleted file mode 100644
index f953fbe02..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Numerics.Vectors.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:327bb7192029181411207531c2a3df61713e3d1d876fde4a5d18daf9be7bec9f
-size 12288
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Numerics.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Numerics.dll
deleted file mode 100644
index ab83bebb5..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Numerics.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:d17db0e4643049bbf7b6da9e585b90f89b1d53ab376659832cf914788ac1d81b
-size 119296
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Core.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Core.dll
deleted file mode 100644
index e65755ad7..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Core.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:73c1e029955066e3b0f29a742d4cdceffc244776a54104df4d5f19478b151038
-size 96256
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Debugger.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Debugger.dll
deleted file mode 100644
index 077ee0eda..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Debugger.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:3bb7f5472cdc389dcae0bde2256e99a522cead1fea83b58ae9380aa3990e17f9
-size 5120
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Experimental.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Experimental.dll
deleted file mode 100644
index 4e596b4a3..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Experimental.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:dd6f5f9acc1fa8bf35ea7d9ba14bf94c75b24baa402b24b55afb961a3e6eb589
-size 28672
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Interfaces.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Interfaces.dll
deleted file mode 100644
index 1ee2df114..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Interfaces.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:e7816749b43433fe537ab5c72e19250bc760c94e873da93f0251553ae7a3da32
-size 7680
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Linq.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Linq.dll
deleted file mode 100644
index 128031ced..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Linq.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:e701260b1f47b0fbfce2814ebcef425c75b3843c26a18976baa4b97eb6d7ab18
-size 683008
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Observable.Aliases.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Observable.Aliases.dll
deleted file mode 100644
index 381037347..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Observable.Aliases.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:3d824ce684921823958b34e6c1ac81c1a457c740c8009d130150b17b7439d300
-size 9728
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.PlatformServices.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.PlatformServices.dll
deleted file mode 100644
index 25bf82fa0..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.PlatformServices.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:5d754b1f51da7ec7c47a0e25fbcd075c30c922d986349bd942ec22dcbb8a0e56
-size 22528
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Providers.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Providers.dll
deleted file mode 100644
index fa09cefd2..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Providers.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:11290fa51fac7db92cb346adefc5747bb8aa072e98cee9a6eef1f55fc43256e0
-size 243200
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Runtime.Remoting.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Runtime.Remoting.dll
deleted file mode 100644
index bc06e7261..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Runtime.Remoting.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:3d06d3f065efc3944c488652ff6bce3cfc7e6afc9fb1cd599fd08fbb963721ea
-size 9216
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Windows.Forms.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Windows.Forms.dll
deleted file mode 100644
index 05a28b343..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Windows.Forms.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:c695404aafade412ae59c4b3b3b27c7cbf545aa5b28bb54e8fc5d1b1936edced
-size 9728
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Windows.Threading.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Windows.Threading.dll
deleted file mode 100644
index c02f6c29c..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reactive.Windows.Threading.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:fd8c31bd739c1e52c40fccc367366a6cec5345c816752b9a7aad873d1ddbf9ba
-size 12800
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reflection.Context.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reflection.Context.dll
deleted file mode 100644
index 21dd8389c..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Reflection.Context.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:7bb97432fd16b14c6624dc00786272f2a99755c397035a87c420f589a576a535
-size 13312
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.Caching.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.Caching.dll
deleted file mode 100644
index 863e19aa4..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.Caching.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:f61e57e195594f5bbfc64b0feeb09282919e1398c52e31b8e1194af1e571a294
-size 72192
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.DurableInstancing.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.DurableInstancing.dll
deleted file mode 100644
index 58bf84075..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.DurableInstancing.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:d8279842618b28d8057d63eb7fed6047b04bb4bedf7c1f08749328618562104d
-size 107008
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.Remoting.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.Remoting.dll
deleted file mode 100644
index 62c4a0141..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.Remoting.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:ce33a874ad0ac5241313871cebe9338bf736552b8c9c8711a4671e4d6109224f
-size 119808
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.Serialization.Formatters.Soap.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.Serialization.Formatters.Soap.dll
deleted file mode 100644
index 6abe07886..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.Serialization.Formatters.Soap.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:00f496bba35e509f6685742533663e651edb6863d296945c64e1568c16cf8b0d
-size 38912
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.Serialization.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.Serialization.dll
deleted file mode 100644
index 9ddb4d77d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Runtime.Serialization.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:67a67cac418b28640ca0bb0332ab4759f4d959f5e79579b94d2cf52593a56131
-size 933888
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Security.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Security.dll
deleted file mode 100644
index d9d9112a6..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Security.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9a278e67dea886ed972b54d906a1ce8ee08637544be31e1eef29d827b635d653
-size 276992
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Activation.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Activation.dll
deleted file mode 100644
index 6cfed22aa..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Activation.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:be1969c2714f1f2b4515ab59813d8ebe80fa1a8e446fa8255989ef36416cf264
-size 13312
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Discovery.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Discovery.dll
deleted file mode 100644
index 37ccab98e..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Discovery.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:4f9b16e4412543c29e1bb1f43f5f948b9d3584292b51256b756a41cb7e9177ff
-size 141312
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Internals.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Internals.dll
deleted file mode 100644
index 6a3b20539..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Internals.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:191f6bd4e6bef05f8341a8ec5ebc9fe32dfd9af93faac3870492c0548d5cc432
-size 214528
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Routing.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Routing.dll
deleted file mode 100644
index 92c6af8fa..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Routing.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:4373b6cec4335f6eeedda163481de26c0b605fc4be7df34b67adbd9e3d5d3088
-size 37376
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Web.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Web.dll
deleted file mode 100644
index 9d0d016a0..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.Web.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:ce70b06b13bbee55f8cf8f4a042c5d06b98af03e338995ced18266fb2067fa98
-size 79360
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.dll
deleted file mode 100644
index ad0ccc3a3..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceModel.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9b5dc2076bd4bad19c75ed4aac57ca001a9a8ead911e9a9f1cdb2ca8b11cf841
-size 1426944
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceProcess.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceProcess.dll
deleted file mode 100644
index 2654ab094..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.ServiceProcess.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:f26af126176f7cf3e5192113bd52ba37519d55dabd997e95d05284350d30105b
-size 47616
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Threading.Tasks.Dataflow.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Threading.Tasks.Dataflow.dll
deleted file mode 100644
index 36df064c4..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Threading.Tasks.Dataflow.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:1587a5886355c2f52d3285ac6771314825ee1750ccff7d402cb774ec0ee0f6db
-size 168960
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Transactions.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Transactions.dll
deleted file mode 100644
index d5d35b11b..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Transactions.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:dbfe036ebfe14548a14a2e35590d6be0b234e75905a3634287ab11be7fa3a724
-size 34304
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Abstractions.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Abstractions.dll
deleted file mode 100644
index 9dbf84fb9..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Abstractions.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:79af7b24f4dfa913e8cc62b0e8ab783d70e80e14f92c4f4b1dd8f676cabd5bd6
-size 12800
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.ApplicationServices.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.ApplicationServices.dll
deleted file mode 100644
index 698d01f48..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.ApplicationServices.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:60aa2cc4a3844cfcc7e97d79d7503bf92ada14e4903e938a9a7fa38edc74f1d4
-size 33792
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.DynamicData.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.DynamicData.dll
deleted file mode 100644
index 1f1ca5dbe..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.DynamicData.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:f2a8f70e2d53d85c4788d0b2c1b51d2c81740a5e2705623e4dd78628bd9136d0
-size 69120
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Extensions.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Extensions.dll
deleted file mode 100644
index efb92cfb3..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Extensions.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:d63706586e4a3891dc6ec8cb0ddd2cc28bb1c7ded93bbd9e5d521db84862b80d
-size 745984
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Http.SelfHost.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Http.SelfHost.dll
deleted file mode 100644
index 336188f9b..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Http.SelfHost.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:b0e83ec65e855b620331a69fd8ab98b6a3c69eb0954bb54d92875c0cdf02349b
-size 88064
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Http.WebHost.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Http.WebHost.dll
deleted file mode 100644
index 872cc5e3d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Http.WebHost.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:aa9e924cf38f248eacb2e07d1a2300f190aae8bdb607e076670963ee7cfbaecd
-size 56320
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Http.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Http.dll
deleted file mode 100644
index 260063642..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Http.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:d3a2fb46704a5cbafc5586792d07dd9bbbf9ffb2c454f5e24ba80cca1742aed8
-size 326144
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Mobile.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Mobile.dll
deleted file mode 100644
index 7e3198616..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Mobile.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:ac45a498b0da25cdd3e0ab4f42544df9d9ebcf1809ceba628338cd81fa83b77f
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Mvc.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Mvc.dll
deleted file mode 100644
index 86e7fa24b..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Mvc.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:0969b6e8b7287456d662c1d344cc7c8a255fa732d85a3b64d27f76163dcc324a
-size 420352
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Razor.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Razor.dll
deleted file mode 100644
index bd2249fc4..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Razor.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:cb045ea1943f02caabc6c41866a8d177594824544428297b3b6b657e521aba50
-size 254976
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.RegularExpressions.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.RegularExpressions.dll
deleted file mode 100644
index 90978b66d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.RegularExpressions.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:0cc7c72c13f3e577e879a604163175899febea04928fa3a29a050a3972a253ae
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Routing.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Routing.dll
deleted file mode 100644
index 158951a44..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Routing.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:7c1100acec1edaa3a3928ecdbf8750a9c5734f2fa4bd7f738060f9ff9e0f1b75
-size 12288
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Services.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Services.dll
deleted file mode 100644
index 4fee3677c..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.Services.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:91f41a7e7c511c7c4da948fe133c16f45aadd9cfdb0d88eb4765b938a6e56ef0
-size 732160
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.WebPages.Deployment.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.WebPages.Deployment.dll
deleted file mode 100644
index 476913830..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.WebPages.Deployment.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:76ae55cab184ff725100cfdc606914a7b12c70adc6a31c715bce4fb32c44aeb8
-size 39424
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.WebPages.Razor.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.WebPages.Razor.dll
deleted file mode 100644
index 03e61396e..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.WebPages.Razor.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:f6adcc0ed2a3f111bef78eac5ffff4cf779930f611adf618e2da08085607397a
-size 38400
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.WebPages.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.WebPages.dll
deleted file mode 100644
index 952b7772b..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.WebPages.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:06bf34f5dbf43e912c0a2a3a44670668b93a143eb32a491fe4a5a1a5891c2cad
-size 196608
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.dll
deleted file mode 100644
index dafac2621..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Web.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9d637c3696bbed5c18fddd22181bd4bee9d6a371df66f1ea3e6af8c24267c887
-size 3026944
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Windows.Forms.DataVisualization.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Windows.Forms.DataVisualization.dll
deleted file mode 100644
index 04e0ff316..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Windows.Forms.DataVisualization.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:1b069c55850d60b364db3e03062da85878a393e3c673531672f3fa75e146cf58
-size 145920
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Windows.Forms.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Windows.Forms.dll
deleted file mode 100644
index 767803f77..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Windows.Forms.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:733bfcb7a997f5beade2fba8d36f45440d4bcf6c2f13aa5208d2ed361c7023d3
-size 2898432
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Windows.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Windows.dll
deleted file mode 100644
index a0d16168d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Windows.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:ec90da3e05d35fa76a1d576a9c14e0fb95e9c5016305352607029ff080a4bc1a
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Workflow.Activities.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Workflow.Activities.dll
deleted file mode 100644
index 504a7a91e..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Workflow.Activities.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:d7b9eca28b05230c95d521b08649a668cbc14f7ae4cfadf0543566d219f35b40
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Workflow.ComponentModel.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Workflow.ComponentModel.dll
deleted file mode 100644
index b393d0f8c..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Workflow.ComponentModel.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9714061a4c64ae21395db81320b63cd3e4b44f148513e6beee07cba63d73e174
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Workflow.Runtime.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Workflow.Runtime.dll
deleted file mode 100644
index 096912c49..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Workflow.Runtime.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:be9d80852b082e960164614ac77814669abefe253ea410f35af9881361bcac1b
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Xaml.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Xaml.dll
deleted file mode 100644
index a61935ea2..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Xaml.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:6a7deb84bba590d7f734fe699878970fd92758954f65d418594eb345d8b27ba4
-size 188928
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Xml.Linq.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Xml.Linq.dll
deleted file mode 100644
index 23d02da6d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Xml.Linq.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:502b289eba6bb10dd66a3c3f33256c8396ac6b1a37bf90924c8508d7f75a311f
-size 137216
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Xml.Serialization.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Xml.Serialization.dll
deleted file mode 100644
index 71501bb82..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Xml.Serialization.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:2d51a04521acc7d37047913b82a2973edcaf6db96ce74f2e3fe3fa506d1b0b70
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Xml.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Xml.dll
deleted file mode 100644
index 1a3f9f3c4..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.Xml.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:49cebbc89e6c46080c9741c3b0917e51cf9de81d6c8a064d48d57febc0d4d907
-size 3174912
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.dll
deleted file mode 100644
index e3ff6916d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/System.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:25c957f4535cb2f72865fee3de0637439b7db947cfcf6b71bcbdb35b2a6f3802
-size 2566144
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/WindowsBase.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/WindowsBase.dll
deleted file mode 100644
index 8c9fabf5f..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/WindowsBase.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9e334cb9cb54d69fdce5a39269ec1860581e01d78a9fcbc492b7a8a9bcf444f2
-size 161792
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/mscorlib.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/mscorlib.dll
deleted file mode 100755
index fb24014e2..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/4.5/mscorlib.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:b583f9412db1b688f0320e709eee1d77b428c0d66408a9d4a69f4bb1f0d75202
-size 4494848
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/Accessibility/4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/Accessibility/4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
deleted file mode 100644
index 01200aeea..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/Accessibility/4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:7908292f952dfb43c613d382804d471099dc214e967d5b9c576d20f1426b670d
-size 12288
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/Mono.Posix/4.0.0.0__0738eb9f132ed756/Mono.Posix.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/Mono.Posix/4.0.0.0__0738eb9f132ed756/Mono.Posix.dll
deleted file mode 100644
index 71fcc330d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/Mono.Posix/4.0.0.0__0738eb9f132ed756/Mono.Posix.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:58636d961acd7124632e47dbe76c31e266b941c74a1af6ef614812a40cfb0631
-size 212480
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll
deleted file mode 100644
index 72d96b0f4..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:d9eeafad9481db1050c13e1fb323517a8fa38f8e7d92e736dfbbdb81d07efe14
-size 314368
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ComponentModel.Composition/4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ComponentModel.Composition/4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll
deleted file mode 100644
index 160555926..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ComponentModel.Composition/4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:d9892265e9020fe89907ab812c5a5bbac5d552f13e3131296be59f1101343602
-size 258560
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ComponentModel.DataAnnotations/4.0.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ComponentModel.DataAnnotations/4.0.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll
deleted file mode 100644
index fff03e9ff..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ComponentModel.DataAnnotations/4.0.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:3ca1a6ef39cc2784f35191b9ad56055dbe7d782bc91080f53006af4bda7551d0
-size 84992
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Configuration.Install/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Configuration.Install/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll
deleted file mode 100644
index d6227ac98..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Configuration.Install/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:f6dede71ccef0bf01ae0bd9c81c9643dda1a1c82291841722184f3c9d999dc8c
-size 24064
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Configuration/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Configuration/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
deleted file mode 100644
index db365d4fc..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Configuration/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:00f5f5c6fd07dcf673d068420d8769593f44b9ec1dae911bea094cc4bdb682d3
-size 122880
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll
deleted file mode 100644
index ff7b07a2b..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:d5ac6330d485d61567bde7e8c938c898abd8bf39886f91c2035e5f19dfb3b778
-size 1086464
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.DataSetExtensions/4.0.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.DataSetExtensions/4.0.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll
deleted file mode 100644
index 6391b0240..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.DataSetExtensions/4.0.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:4fa1f2bddce63019b30b2502ff5560bcf831327a3536d5529d033217194fb350
-size 29696
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.Entity/4.0.0.0__b77a5c561934e089/System.Data.Entity.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.Entity/4.0.0.0__b77a5c561934e089/System.Data.Entity.dll
deleted file mode 100644
index 5974f6518..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.Entity/4.0.0.0__b77a5c561934e089/System.Data.Entity.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:1520112348648a0a739e6cb8c33b4830b805971c28a28f0f98a527b1588d6519
-size 3338240
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.Linq/4.0.0.0__b77a5c561934e089/System.Data.Linq.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.Linq/4.0.0.0__b77a5c561934e089/System.Data.Linq.dll
deleted file mode 100644
index a60532ab8..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.Linq/4.0.0.0__b77a5c561934e089/System.Data.Linq.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:6b47c88f097deb13c222a41c2d8f28e5043469b2a929dd5f8f4643fd4139f503
-size 652800
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.OracleClient/4.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.OracleClient/4.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll
deleted file mode 100644
index f2accdd2a..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.OracleClient/4.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:e5210222768ba1527ac1969b3ce3315f216a8642876ce82f640f83ce71a9ae4b
-size 173056
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.Services.Client/4.0.0.0__b77a5c561934e089/System.Data.Services.Client.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.Services.Client/4.0.0.0__b77a5c561934e089/System.Data.Services.Client.dll
deleted file mode 100644
index e811ed567..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.Services.Client/4.0.0.0__b77a5c561934e089/System.Data.Services.Client.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:40607bf6200b75a815989aa2efbeb2565f4a1f13bc2d698b26563f0b6e2460ce
-size 418816
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.Services/4.0.0.0__b77a5c561934e089/System.Data.Services.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.Services/4.0.0.0__b77a5c561934e089/System.Data.Services.dll
deleted file mode 100644
index a2da8a705..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data.Services/4.0.0.0__b77a5c561934e089/System.Data.Services.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:db29aa8d934516bf72cdbc872b6d109cc01a205b7724e27dbe4ee1b2210734af
-size 56320
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data/4.0.0.0__b77a5c561934e089/System.Data.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data/4.0.0.0__b77a5c561934e089/System.Data.dll
deleted file mode 100644
index ebd63046f..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data/4.0.0.0__b77a5c561934e089/System.Data.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:2c7cc52d2fe5c020852ec0595635dd5a30341d98d2b7f66fac694a6d77044c6f
-size 2102272
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data/4.0.0.0__b77a5c561934e089/System.Data.dll.config b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data/4.0.0.0__b77a5c561934e089/System.Data.dll.config
deleted file mode 100644
index c33c1db25..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Data/4.0.0.0__b77a5c561934e089/System.Data.dll.config
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Deployment/4.0.0.0__b03f5f7f11d50a3a/System.Deployment.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Deployment/4.0.0.0__b03f5f7f11d50a3a/System.Deployment.dll
deleted file mode 100644
index e0ef53bdf..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Deployment/4.0.0.0__b03f5f7f11d50a3a/System.Deployment.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:008f2b1b8ebc389a4a59e2f11c4a21b84649c7f47e2a9bdc856c5662ddcf80c1
-size 11264
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.DirectoryServices.Protocols/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.DirectoryServices.Protocols/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll
deleted file mode 100644
index 984942ada..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.DirectoryServices.Protocols/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:303b6205b1d759b7f5c0503a7e401da3fd59c38aac7a93084aa9d379c85bc920
-size 61952
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.DirectoryServices/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.DirectoryServices/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll
deleted file mode 100644
index 3f294ae19..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.DirectoryServices/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:5a42c80c4473800bd4faa7a86a20f5f5cac5aa4f9abb1f38375c2947c693f0ca
-size 94208
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
deleted file mode 100644
index e5d792384..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:c74e44a0455c266fc4a641f6cb7fe13731cac7ef984a8ca90ac54faff759b44b
-size 491008
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.config b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.config
deleted file mode 100644
index fbd1d8941..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.config
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Dynamic/4.0.0.0__b03f5f7f11d50a3a/System.Dynamic.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Dynamic/4.0.0.0__b03f5f7f11d50a3a/System.Dynamic.dll
deleted file mode 100644
index a10dcb17d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Dynamic/4.0.0.0__b03f5f7f11d50a3a/System.Dynamic.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:caaaf916eeee6eaf20c3f8d706444a928c94d4e2b71fd48eb421242f91255475
-size 87040
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.EnterpriseServices/4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.EnterpriseServices/4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
deleted file mode 100644
index 635a2f78b..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.EnterpriseServices/4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:53724ebb898911c6da4233704514c2604afdbec11a9c807e31bf82b7558313a1
-size 46592
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.IO.Compression.FileSystem/4.0.0.0__b77a5c561934e089/System.IO.Compression.FileSystem.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.IO.Compression.FileSystem/4.0.0.0__b77a5c561934e089/System.IO.Compression.FileSystem.dll
deleted file mode 100644
index d22bdd7af..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.IO.Compression.FileSystem/4.0.0.0__b77a5c561934e089/System.IO.Compression.FileSystem.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:180a3e041a0261030fa7ca05ba06823000cf455c1367f6a4004b59be3e406767
-size 18432
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.IO.Compression/4.0.0.0__b77a5c561934e089/System.IO.Compression.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.IO.Compression/4.0.0.0__b77a5c561934e089/System.IO.Compression.dll
deleted file mode 100644
index e1ea2b78d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.IO.Compression/4.0.0.0__b77a5c561934e089/System.IO.Compression.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:b279eea9c15eb42a82f3ae4f0d73b1de46512912638e8f22c943d929692d773f
-size 115200
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.IdentityModel.Selectors/4.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.IdentityModel.Selectors/4.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll
deleted file mode 100644
index 56424367c..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.IdentityModel.Selectors/4.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:4f72d56255bd489b759dd21ab39fce38a05a74e17c1b812eeda11296e992ab3d
-size 17408
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.IdentityModel/4.0.0.0__b77a5c561934e089/System.IdentityModel.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.IdentityModel/4.0.0.0__b77a5c561934e089/System.IdentityModel.dll
deleted file mode 100644
index 550b8add5..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.IdentityModel/4.0.0.0__b77a5c561934e089/System.IdentityModel.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:91ffe031a24bc0ea3329687fcfaac106f84ab9175abb5b1fc6e0fe610560e85b
-size 139776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Json.Microsoft/4.0.0.0__31bf3856ad364e35/System.Json.Microsoft.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Json.Microsoft/4.0.0.0__31bf3856ad364e35/System.Json.Microsoft.dll
deleted file mode 100644
index 330f89327..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Json.Microsoft/4.0.0.0__31bf3856ad364e35/System.Json.Microsoft.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:568235cb7ad12d348aaeceaa096b994bdf91a0f0fe82922e81756d00267b781a
-size 54784
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Json/4.0.0.0__31bf3856ad364e35/System.Json.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Json/4.0.0.0__31bf3856ad364e35/System.Json.dll
deleted file mode 100644
index 41b314d50..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Json/4.0.0.0__31bf3856ad364e35/System.Json.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:5571a40b9f4491e910fe1e8920b22dd06ae1eecc8751339ad29c259282426383
-size 32768
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Management/4.0.0.0__b03f5f7f11d50a3a/System.Management.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Management/4.0.0.0__b03f5f7f11d50a3a/System.Management.dll
deleted file mode 100644
index d7c43d154..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Management/4.0.0.0__b03f5f7f11d50a3a/System.Management.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:085868e4b698e55881c8fdcaf6579cccfa24894f3eeb4fc353539d485bcecb9f
-size 49152
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Messaging/4.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Messaging/4.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll
deleted file mode 100644
index c39bf9fe9..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Messaging/4.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:2f0fc119551feefe672a3a3bf2c6011e7789c026f1fd00f7d68f2b02982be88e
-size 75776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Net.Http.Formatting/4.0.0.0__31bf3856ad364e35/System.Net.Http.Formatting.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Net.Http.Formatting/4.0.0.0__31bf3856ad364e35/System.Net.Http.Formatting.dll
deleted file mode 100644
index 370af3a67..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Net.Http.Formatting/4.0.0.0__31bf3856ad364e35/System.Net.Http.Formatting.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:301f258b1ad7ec5c7fb77626d54584c9ee97f61f5e32e18e91df8157d25a35f6
-size 518656
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Net.Http.WebRequest/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.WebRequest.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Net.Http.WebRequest/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.WebRequest.dll
deleted file mode 100644
index f14fe244c..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Net.Http.WebRequest/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.WebRequest.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:ae92b4f84ed4ce8c1063be896c3ed5b47c264014b64fa03a12e1cb0db8f104ad
-size 27136
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Net.Http/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Net.Http/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll
deleted file mode 100644
index 530c0c8c0..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Net.Http/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:d77438cf927f8aef02dff89c233fa1507461660518417647d77547676a9ded04
-size 281088
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Net/4.0.0.0__b03f5f7f11d50a3a/System.Net.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Net/4.0.0.0__b03f5f7f11d50a3a/System.Net.dll
deleted file mode 100644
index 7b675a90b..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Net/4.0.0.0__b03f5f7f11d50a3a/System.Net.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:75c950bdc72d4cdd5e792ad79714264d0418b47de3c69b578b5c072898992427
-size 13312
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Numerics.Vectors/4.0.0.0__b03f5f7f11d50a3a/System.Numerics.Vectors.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Numerics.Vectors/4.0.0.0__b03f5f7f11d50a3a/System.Numerics.Vectors.dll
deleted file mode 100644
index dc333045d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Numerics.Vectors/4.0.0.0__b03f5f7f11d50a3a/System.Numerics.Vectors.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:996ffb6885ee0d5a2ccba34439df1a67bf8016fc05603adf08e42c691bc8eed0
-size 12288
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Numerics/4.0.0.0__b77a5c561934e089/System.Numerics.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Numerics/4.0.0.0__b77a5c561934e089/System.Numerics.dll
deleted file mode 100644
index f4b0cb9fa..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Numerics/4.0.0.0__b77a5c561934e089/System.Numerics.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:c9679f30c684c16ec6c88a078cd10ad7d5814b72d2a7ce8a144507e2fedae746
-size 119808
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Core/2.2.0.0__31bf3856ad364e35/System.Reactive.Core.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Core/2.2.0.0__31bf3856ad364e35/System.Reactive.Core.dll
deleted file mode 100644
index 6f017dd6a..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Core/2.2.0.0__31bf3856ad364e35/System.Reactive.Core.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9fc263d0b2a584b19237c024ef6c7f0b7ebbf5c9b788faf1beae5b9d13100b06
-size 95744
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Debugger/2.2.0.0__31bf3856ad364e35/System.Reactive.Debugger.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Debugger/2.2.0.0__31bf3856ad364e35/System.Reactive.Debugger.dll
deleted file mode 100644
index 0ec7ce0c4..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Debugger/2.2.0.0__31bf3856ad364e35/System.Reactive.Debugger.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:73848bb977fa46e1bc518c3ef397b8364094dfa84fe4adbbdaba3f324842e8ba
-size 5120
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Experimental/2.2.0.0__31bf3856ad364e35/System.Reactive.Experimental.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Experimental/2.2.0.0__31bf3856ad364e35/System.Reactive.Experimental.dll
deleted file mode 100644
index 03a75dd66..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Experimental/2.2.0.0__31bf3856ad364e35/System.Reactive.Experimental.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:8e75f52a62e044c40e2cc73daa0d6bf635a3568e091a3288eab1a759506c46d3
-size 28672
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Interfaces/2.2.0.0__31bf3856ad364e35/System.Reactive.Interfaces.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Interfaces/2.2.0.0__31bf3856ad364e35/System.Reactive.Interfaces.dll
deleted file mode 100644
index ff9931d26..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Interfaces/2.2.0.0__31bf3856ad364e35/System.Reactive.Interfaces.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:80f4b79f0ac6cb348dc3bc8d1e1c7ff947620719bc8a3700c8c24f8a869bbee7
-size 7680
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Linq/2.2.0.0__31bf3856ad364e35/System.Reactive.Linq.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Linq/2.2.0.0__31bf3856ad364e35/System.Reactive.Linq.dll
deleted file mode 100644
index 6d3c458a9..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Linq/2.2.0.0__31bf3856ad364e35/System.Reactive.Linq.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:b30f026869aa2be2c0a350c0458f39a81dce9aa1f5af172a7205b97f945c1bc4
-size 683008
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Observable.Aliases/0.0.0.0__31bf3856ad364e35/System.Reactive.Observable.Aliases.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Observable.Aliases/0.0.0.0__31bf3856ad364e35/System.Reactive.Observable.Aliases.dll
deleted file mode 100644
index b9b2f253a..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Observable.Aliases/0.0.0.0__31bf3856ad364e35/System.Reactive.Observable.Aliases.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:318371120960ce15500798fe61a71c9bd96fa490d9746e942fd6b82eb4fd08a1
-size 9728
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.PlatformServices/2.2.0.0__31bf3856ad364e35/System.Reactive.PlatformServices.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.PlatformServices/2.2.0.0__31bf3856ad364e35/System.Reactive.PlatformServices.dll
deleted file mode 100644
index cca6cdffc..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.PlatformServices/2.2.0.0__31bf3856ad364e35/System.Reactive.PlatformServices.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:816347965b0825548cfddef3b7da75f4e6c6fe268965554cadc0ee1456cd87ae
-size 22528
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Providers/2.2.0.0__31bf3856ad364e35/System.Reactive.Providers.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Providers/2.2.0.0__31bf3856ad364e35/System.Reactive.Providers.dll
deleted file mode 100644
index 48188c63d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Providers/2.2.0.0__31bf3856ad364e35/System.Reactive.Providers.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:145ac53ae98c80ef2a71711877f440c87112b545fd3bbee10508056f6c251c92
-size 243200
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Runtime.Remoting/2.2.0.0__31bf3856ad364e35/System.Reactive.Runtime.Remoting.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Runtime.Remoting/2.2.0.0__31bf3856ad364e35/System.Reactive.Runtime.Remoting.dll
deleted file mode 100644
index 58a658ee2..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Runtime.Remoting/2.2.0.0__31bf3856ad364e35/System.Reactive.Runtime.Remoting.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:64eaa2ed52011844537552a3681337081bfd2779e32029ade82c389873289bc7
-size 9216
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Windows.Forms/2.2.0.0__31bf3856ad364e35/System.Reactive.Windows.Forms.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Windows.Forms/2.2.0.0__31bf3856ad364e35/System.Reactive.Windows.Forms.dll
deleted file mode 100644
index b30d7c6cd..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Windows.Forms/2.2.0.0__31bf3856ad364e35/System.Reactive.Windows.Forms.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:a5199e3009306940807d88912ffda5c72359ade4aac5134a5bca29573b162101
-size 9728
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Windows.Threading/2.2.0.0__31bf3856ad364e35/System.Reactive.Windows.Threading.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Windows.Threading/2.2.0.0__31bf3856ad364e35/System.Reactive.Windows.Threading.dll
deleted file mode 100644
index d3c27798d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reactive.Windows.Threading/2.2.0.0__31bf3856ad364e35/System.Reactive.Windows.Threading.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:0f55a6654f734c5c4a9099a62c12b6138e9f4aca4f7717ab3ed2e67e21a292e9
-size 12800
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reflection.Context/4.0.0.0__b77a5c561934e089/System.Reflection.Context.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reflection.Context/4.0.0.0__b77a5c561934e089/System.Reflection.Context.dll
deleted file mode 100644
index 3d087600f..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Reflection.Context/4.0.0.0__b77a5c561934e089/System.Reflection.Context.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:f2ed7f7b821c9c09b3c51d9ea9fa5962961c8d022d61d4f283d3373071d43305
-size 13312
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.Caching/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Caching.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.Caching/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Caching.dll
deleted file mode 100644
index b8a99178b..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.Caching/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Caching.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:8d48e180e328d20ee492f5059f646d6d7d42bc64ff3e24d612fd0bd8295fbfaa
-size 72192
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.DurableInstancing/4.0.0.0__31bf3856ad364e35/System.Runtime.DurableInstancing.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.DurableInstancing/4.0.0.0__31bf3856ad364e35/System.Runtime.DurableInstancing.dll
deleted file mode 100644
index b8ce6d6d2..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.DurableInstancing/4.0.0.0__31bf3856ad364e35/System.Runtime.DurableInstancing.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:b5c58a203c458c7439e91b15289ebf9670f0da0ff17381f4199958cbed88e4b6
-size 107008
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.Remoting/4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.Remoting/4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
deleted file mode 100644
index 37c6f3a83..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.Remoting/4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:928ffdef7e659f2500f2b8c1da5d6923f0adf1edc46240572c7495a5954df5cf
-size 119808
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll
deleted file mode 100644
index 3e88e2c86..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:b47eb8ef8bd4dc99ad4c6965bcdc07719315e3851801cf7c2e50a7e1a9e1d5b8
-size 38912
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.Serialization/4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.Serialization/4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll
deleted file mode 100644
index d8fe912e9..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Runtime.Serialization/4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:d0fd7051973a7a53c21fd6f4222dcee9c5abd701aeba9cfadc1d57302d4afa98
-size 933888
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Security/4.0.0.0__b03f5f7f11d50a3a/System.Security.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Security/4.0.0.0__b03f5f7f11d50a3a/System.Security.dll
deleted file mode 100644
index 1e703b621..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Security/4.0.0.0__b03f5f7f11d50a3a/System.Security.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:dddc7dc788c2d91583cd5a59cb33cbc9e3dcd15a44654ec97a4e5312057e1fab
-size 308224
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Activation/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Activation.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Activation/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Activation.dll
deleted file mode 100644
index d033390a3..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Activation/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Activation.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:3d10a5850c9a676b691ac248b07235dbe33b49984fb2bc0b0142fb27584a684f
-size 13312
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Discovery/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Discovery.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Discovery/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Discovery.dll
deleted file mode 100644
index 861414124..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Discovery/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Discovery.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:a21a6986d03cbf7b13e58f8d7a078df7ee03fe8b253c28dee8eb04a41eaed1e7
-size 141312
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Internals/0.0.0.0__b77a5c561934e089/System.ServiceModel.Internals.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Internals/0.0.0.0__b77a5c561934e089/System.ServiceModel.Internals.dll
deleted file mode 100644
index a431a82bb..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Internals/0.0.0.0__b77a5c561934e089/System.ServiceModel.Internals.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:60dace8025fa37d1a8112ada8f3e860857530298db56c2bbf427a3a39b812890
-size 214528
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Routing/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Routing.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Routing/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Routing.dll
deleted file mode 100644
index 58217d8ee..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Routing/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Routing.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:240a392b274b1001f236062c008db650976742d3b021bc9fc509131ba72bedbd
-size 37376
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Web/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Web/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll
deleted file mode 100644
index 205e012d9..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel.Web/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:367141e8a7b0683218a43cb7007af0c53178b3b64728a378b76bbfb5c70d8668
-size 79360
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel/4.0.0.0__b77a5c561934e089/System.ServiceModel.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel/4.0.0.0__b77a5c561934e089/System.ServiceModel.dll
deleted file mode 100644
index 6aed36c4e..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceModel/4.0.0.0__b77a5c561934e089/System.ServiceModel.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:dbbef0cb9e0d57e38d096027879f3d0c0e18877f207ead9fe8bc937661ce6fe4
-size 1427456
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceProcess/4.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceProcess/4.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll
deleted file mode 100644
index 4162bffe8..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.ServiceProcess/4.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:3684d576acd24b707080585b4f1e75f565dbadbb9a37147a6682f028ad10550b
-size 47104
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Threading.Tasks.Dataflow/4.0.0.0__b77a5c561934e089/System.Threading.Tasks.Dataflow.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Threading.Tasks.Dataflow/4.0.0.0__b77a5c561934e089/System.Threading.Tasks.Dataflow.dll
deleted file mode 100644
index 248a05d01..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Threading.Tasks.Dataflow/4.0.0.0__b77a5c561934e089/System.Threading.Tasks.Dataflow.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:b115157bc8139e47eb5b2e0d24c0c25c9971ab61b56b6ef0d839d36ff91f9984
-size 169472
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Transactions/4.0.0.0__b77a5c561934e089/System.Transactions.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Transactions/4.0.0.0__b77a5c561934e089/System.Transactions.dll
deleted file mode 100644
index 31a179d05..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Transactions/4.0.0.0__b77a5c561934e089/System.Transactions.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:c4cf806987a94916a21e67cfbaf7f43801e3934f3e86302bbecdbba7bb4bda00
-size 34304
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Abstractions/4.0.0.0__31bf3856ad364e35/System.Web.Abstractions.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Abstractions/4.0.0.0__31bf3856ad364e35/System.Web.Abstractions.dll
deleted file mode 100644
index d9a1f59c5..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Abstractions/4.0.0.0__31bf3856ad364e35/System.Web.Abstractions.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:255a1ac548667aad9095d1c62b95177ac3337cd9d6b2e45698c3440eeb09829d
-size 12800
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.ApplicationServices/4.0.0.0__31bf3856ad364e35/System.Web.ApplicationServices.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.ApplicationServices/4.0.0.0__31bf3856ad364e35/System.Web.ApplicationServices.dll
deleted file mode 100644
index 100e11662..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.ApplicationServices/4.0.0.0__31bf3856ad364e35/System.Web.ApplicationServices.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:c343612d28c4789b729646b8c2423822cbf0fd62ed9ac17ceb1a31ffd811ccc8
-size 33792
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.DynamicData/4.0.0.0__31bf3856ad364e35/System.Web.DynamicData.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.DynamicData/4.0.0.0__31bf3856ad364e35/System.Web.DynamicData.dll
deleted file mode 100644
index 7bffde2c4..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.DynamicData/4.0.0.0__31bf3856ad364e35/System.Web.DynamicData.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:41950b097714196611281ba6f5022700ee48521507f87730dea245a5fad0e41d
-size 69120
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Extensions/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Extensions/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.dll
deleted file mode 100644
index ce66e27bc..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Extensions/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:f2595deafb28ebe010bcdf7afe98d3d0778764d69cf4e8216da61f3b50496cfb
-size 745984
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Http.SelfHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.SelfHost.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Http.SelfHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.SelfHost.dll
deleted file mode 100644
index bdc096f36..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Http.SelfHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.SelfHost.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:792457aee4c76de5736342970ff888109d8ad93a0d6714d2e655cd6664069c61
-size 88064
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Http.WebHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.WebHost.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Http.WebHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.WebHost.dll
deleted file mode 100644
index ef7baf251..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Http.WebHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.WebHost.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9e2b1e327990f16601370539cd9dfec106f60f4d253b538a7c667cd962f4b384
-size 56320
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Http/4.0.0.0__31bf3856ad364e35/System.Web.Http.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Http/4.0.0.0__31bf3856ad364e35/System.Web.Http.dll
deleted file mode 100644
index b52e15ac1..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Http/4.0.0.0__31bf3856ad364e35/System.Web.Http.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:ed47fe2c89507588c581c541b15cc29898ccd2c91acd3ddd3ad4890a9fdbd78e
-size 326144
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Mobile/4.0.0.0__b03f5f7f11d50a3a/System.Web.Mobile.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Mobile/4.0.0.0__b03f5f7f11d50a3a/System.Web.Mobile.dll
deleted file mode 100644
index 1717e4028..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Mobile/4.0.0.0__b03f5f7f11d50a3a/System.Web.Mobile.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:137ce52a4a40d473fc5a6399cfe3f7a3246564883e9e6632e9fd3ea1864e8336
-size 11264
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Mvc/3.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Mvc/3.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll
deleted file mode 100644
index 3dddb1d7c..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Mvc/3.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:ab0d5fe0f3fdc32bc9e8845525c961f0760e11f355082d07e2fe71b63cf1eb30
-size 419840
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Razor/2.0.0.0__31bf3856ad364e35/System.Web.Razor.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Razor/2.0.0.0__31bf3856ad364e35/System.Web.Razor.dll
deleted file mode 100644
index 45cf57928..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Razor/2.0.0.0__31bf3856ad364e35/System.Web.Razor.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:826430dada228195ebf1f89ae62bb436559a467cd42ed439ac128a8f19f7eae9
-size 254976
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.RegularExpressions/4.0.0.0__b03f5f7f11d50a3a/System.Web.RegularExpressions.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.RegularExpressions/4.0.0.0__b03f5f7f11d50a3a/System.Web.RegularExpressions.dll
deleted file mode 100644
index ec9e91bed..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.RegularExpressions/4.0.0.0__b03f5f7f11d50a3a/System.Web.RegularExpressions.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:110c17aaeec51e39c46404d407ddc2676cb177e613ac308f3a19376a2c401afc
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Routing/4.0.0.0__31bf3856ad364e35/System.Web.Routing.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Routing/4.0.0.0__31bf3856ad364e35/System.Web.Routing.dll
deleted file mode 100644
index fa12bcf31..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Routing/4.0.0.0__31bf3856ad364e35/System.Web.Routing.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:dc348e583396e2233e0852e294fd447c586704645e33ad8f07a282dc83d13854
-size 12288
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Services/4.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Services/4.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll
deleted file mode 100644
index a0e407ccd..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.Services/4.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:294c0bc5d8332e59f1868a2caf7b0efa89f73a9531622362effa29806622f272
-size 787456
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.WebPages.Deployment/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Deployment.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.WebPages.Deployment/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Deployment.dll
deleted file mode 100644
index b8b7f9156..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.WebPages.Deployment/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Deployment.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:73241534c0c3cdd58518e8f44c6242560991da8f512ce6b8153fc998970e9079
-size 39424
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.WebPages.Razor/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Razor.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.WebPages.Razor/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Razor.dll
deleted file mode 100644
index c89c8bfc6..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.WebPages.Razor/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Razor.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:7dec6b96e26d2e9a4a1fb04d538b767ae52e7e6af4f97d2702158b861315e0a9
-size 38400
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.WebPages/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.WebPages/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.dll
deleted file mode 100644
index 22a21998d..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web.WebPages/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:87f90aaf716a0ceef7c984b277338998be1fc5b900dbe832df535b3c154dc251
-size 196608
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web/4.0.0.0__b03f5f7f11d50a3a/System.Web.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web/4.0.0.0__b03f5f7f11d50a3a/System.Web.dll
deleted file mode 100644
index 61922d08f..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Web/4.0.0.0__b03f5f7f11d50a3a/System.Web.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:5b79ce024e9efdd1cd7d37f76a9c6bb817a28f631b8d9ca81d4ddda15812fbe0
-size 3028992
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Windows.Forms.DataVisualization/4.0.0.0__31bf3856ad364e35/System.Windows.Forms.DataVisualization.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Windows.Forms.DataVisualization/4.0.0.0__31bf3856ad364e35/System.Windows.Forms.DataVisualization.dll
deleted file mode 100644
index 2a070e257..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Windows.Forms.DataVisualization/4.0.0.0__31bf3856ad364e35/System.Windows.Forms.DataVisualization.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:4ba9ddba411040b752a84c2ce491797b2b19034299eaf95fd111f8414232e06d
-size 145920
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Windows.Forms/4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Windows.Forms/4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
deleted file mode 100644
index 315200899..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Windows.Forms/4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:916cd054c0636fd0807ec0382a1560e01db44f066fd8ca2ad4c4d3ece255f93e
-size 2899968
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Windows.Forms/4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.config b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Windows.Forms/4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.config
deleted file mode 100644
index 54c6fd39c..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Windows.Forms/4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.config
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Windows/4.0.0.0__b03f5f7f11d50a3a/System.Windows.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Windows/4.0.0.0__b03f5f7f11d50a3a/System.Windows.dll
deleted file mode 100644
index b50adfabf..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Windows/4.0.0.0__b03f5f7f11d50a3a/System.Windows.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:9dd8b000c13af004af3a053874d5c6841c30191285cb12169666de5e2af83096
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Workflow.Activities/4.0.0.0__31bf3856ad364e35/System.Workflow.Activities.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Workflow.Activities/4.0.0.0__31bf3856ad364e35/System.Workflow.Activities.dll
deleted file mode 100644
index fca6386e2..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Workflow.Activities/4.0.0.0__31bf3856ad364e35/System.Workflow.Activities.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:70380dbe9bb2f7f5579f53c46b18b1c8ac85b6a0b36113933e26bfaf1aeeb444
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Workflow.ComponentModel/4.0.0.0__31bf3856ad364e35/System.Workflow.ComponentModel.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Workflow.ComponentModel/4.0.0.0__31bf3856ad364e35/System.Workflow.ComponentModel.dll
deleted file mode 100644
index 990b915ba..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Workflow.ComponentModel/4.0.0.0__31bf3856ad364e35/System.Workflow.ComponentModel.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:5fb47a521d6edbd862a36f20e30c6ed7275a3179bb02a94f79c23c5244e8448f
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Workflow.Runtime/4.0.0.0__31bf3856ad364e35/System.Workflow.Runtime.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Workflow.Runtime/4.0.0.0__31bf3856ad364e35/System.Workflow.Runtime.dll
deleted file mode 100644
index 08ea70034..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Workflow.Runtime/4.0.0.0__31bf3856ad364e35/System.Workflow.Runtime.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:dcbf098fc2d8b45fcea56a8201ff87eef64d89619d93eca75f7b861636ddec8b
-size 11264
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Xaml/4.0.0.0__b77a5c561934e089/System.Xaml.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Xaml/4.0.0.0__b77a5c561934e089/System.Xaml.dll
deleted file mode 100644
index 2783d9369..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Xaml/4.0.0.0__b77a5c561934e089/System.Xaml.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:424fc16dc7a4fad5c73212806b6fe43d49e20c76773e0dca1e076fc7a292e516
-size 188928
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll
deleted file mode 100644
index 527d2a1d9..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:3f77fa2719801869c15b10054d69aa548138483e154bc9f09e3d97083729f1e5
-size 137216
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Xml.Serialization/4.0.0.0__b77a5c561934e089/System.Xml.Serialization.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Xml.Serialization/4.0.0.0__b77a5c561934e089/System.Xml.Serialization.dll
deleted file mode 100644
index 45d70b5ae..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Xml.Serialization/4.0.0.0__b77a5c561934e089/System.Xml.Serialization.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:7f56b44f5f88ed426881eed8694e9d9cca2fc9fe26fd976bcaf39eb78b66faa7
-size 11776
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll
deleted file mode 100644
index f760b3b24..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:93d2f7ea513070bb935c3bfe3ed4dbab4ba076d200b96d24da4d2ebc40132254
-size 3174400
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll
deleted file mode 100644
index eaea89586..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:1a26701ea88189483c5c55726ba3569c095fed4dfa4695d4e1eb83f0cf51c881
-size 2566144
diff --git a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/WindowsBase/4.0.0.0__31bf3856ad364e35/WindowsBase.dll b/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/WindowsBase/4.0.0.0__31bf3856ad364e35/WindowsBase.dll
deleted file mode 100644
index 3b16b367e..000000000
--- a/Source/Platforms/Linux/Binaries/Mono/lib/mono/gac/WindowsBase/4.0.0.0__31bf3856ad364e35/WindowsBase.dll
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:6868231ce3d2f2ab831ced917274c1053d9da8002245b05c8e9353b1d72dd9db
-size 161792
diff --git a/Source/Tools/Flax.Build/Build/EngineTarget.cs b/Source/Tools/Flax.Build/Build/EngineTarget.cs
index 4b691cf51..e2fd54ae6 100644
--- a/Source/Tools/Flax.Build/Build/EngineTarget.cs
+++ b/Source/Tools/Flax.Build/Build/EngineTarget.cs
@@ -104,25 +104,6 @@ namespace Flax.Build
// Restore state from PreBuild
Modules.Add("Main");
}
-
-#if !USE_NETCORE
- // Mono on Linux is using dynamic linking and needs additional link files
- if (buildOptions.Platform.Target == TargetPlatform.Linux && Platform.BuildTargetPlatform == TargetPlatform.Linux && !IsPreBuilt)
- {
- var task = graph.Add();
- task.PrerequisiteFiles.Add(Path.Combine(buildOptions.OutputFolder, "libmonosgen-2.0.so"));
- task.ProducedFiles.Add(Path.Combine(buildOptions.OutputFolder, "libmonosgen-2.0.so.1"));
- task.WorkingDirectory = buildOptions.OutputFolder;
- task.CommandPath = "ln";
- task.CommandArguments = "-s -f libmonosgen-2.0.so libmonosgen-2.0.so.1";
- task = graph.Add();
- task.PrerequisiteFiles.Add(Path.Combine(buildOptions.OutputFolder, "libmonosgen-2.0.so"));
- task.ProducedFiles.Add(Path.Combine(buildOptions.OutputFolder, "libmonosgen-2.0.so.1.0.0"));
- task.WorkingDirectory = buildOptions.OutputFolder;
- task.CommandPath = "ln";
- task.CommandArguments = "-s -f libmonosgen-2.0.so libmonosgen-2.0.so.1.0.0";
- }
-#endif
}
///
diff --git a/Source/Tools/Flax.Build/Deploy/Deployment.Editor.cs b/Source/Tools/Flax.Build/Deploy/Deployment.Editor.cs
index a7249ab41..46c1eccd5 100644
--- a/Source/Tools/Flax.Build/Deploy/Deployment.Editor.cs
+++ b/Source/Tools/Flax.Build/Deploy/Deployment.Editor.cs
@@ -248,9 +248,6 @@ namespace Flax.Deploy
// Optimize package size
Utilities.Run("strip", "FlaxEditor", null, dst, Utilities.RunOptions.None);
Utilities.Run("strip", "libFlaxEditor.so", null, dst, Utilities.RunOptions.None);
- Utilities.Run("strip", "libmonosgen-2.0.so", null, dst, Utilities.RunOptions.None);
- Utilities.Run("ln", "-s libmonosgen-2.0.so libmonosgen-2.0.so.1", null, dst, Utilities.RunOptions.None);
- Utilities.Run("ln", "-s libmonosgen-2.0.so libmonosgen-2.0.so.1.0.0", null, dst, Utilities.RunOptions.None);
}
else if (Platform.BuildTargetPlatform == TargetPlatform.Mac)
{
@@ -267,7 +264,6 @@ namespace Flax.Deploy
// Optimize package size
Utilities.Run("strip", "FlaxEditor", null, dst, Utilities.RunOptions.None);
Utilities.Run("strip", "FlaxEditor.dylib", null, dst, Utilities.RunOptions.None);
- Utilities.Run("strip", "libmonosgen-2.0.1.dylib", null, dst, Utilities.RunOptions.None);
Utilities.Run("strip", "libMoltenVK.dylib", null, dst, Utilities.RunOptions.None);
}
}