diff --git a/MonoTest/MonoTest.csproj b/MonoTest/MonoTest.csproj new file mode 100644 index 0000000..66ffc75 --- /dev/null +++ b/MonoTest/MonoTest.csproj @@ -0,0 +1,57 @@ + + + + + Debug + AnyCPU + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F} + Library + Properties + MonoTest + MonoTest + v4.5 + 512 + + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + false + + + pdbonly + true + ..\mono-test\bin\ + TRACE + prompt + 4 + false + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MonoTest/Properties/AssemblyInfo.cs b/MonoTest/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..42d2cc6 --- /dev/null +++ b/MonoTest/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Управление общими сведениями о сборке осуществляется с помощью +// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения, +// связанные со сборкой. +[assembly: AssemblyTitle("MonoTest")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MonoTest")] +[assembly: AssemblyCopyright("Copyright © 2014")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Параметр ComVisible со значением FALSE делает типы в сборке невидимыми +// для COM-компонентов. Если требуется обратиться к типу в этой сборке через +// COM, задайте атрибуту ComVisible значение TRUE для этого типа. +[assembly: ComVisible(false)] + +// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM +[assembly: Guid("21a504ac-5015-45db-a1c7-1e90d3215fa1")] + +// Сведения о версии сборки состоят из следующих четырех значений: +// +// Основной номер версии +// Дополнительный номер версии +// Номер сборки +// Редакция +// +// Можно задать все значения или принять номера сборки и редакции по умолчанию +// используя "*", как показано ниже: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/MonoTest/Resource.cs b/MonoTest/Resource.cs new file mode 100644 index 0000000..6f9fb19 --- /dev/null +++ b/MonoTest/Resource.cs @@ -0,0 +1,68 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Runtime.CompilerServices; +using System.Diagnostics; + +namespace MonoTest +{ + public class Resource + { + public Resource() + { + Vector3 vector = new Vector3( 192f, 168f, 0f ); + + Console.WriteLine( vector ); + + vector.Test(); + } + } + + public class Vector3 + { + public float X + { + get; + set; + } + public float Y + { + get; + set; + } + public float Z + { + get; + set; + } + public string TestProperty + { + get; + set; + } + + public Vector3( float X, float Y, float Z ) + { + this.X = X; + this.Y = Y; + this.Z = Z; + + this.TestProperty = "Tested!"; + } + + public override string ToString() + { + return String.Format( "({0},{1},{2})", this.X, this.Y, this.Z ); + } + + public void Test() + { + Vector3.Test( this ); + } + + [MethodImpl( MethodImplOptions.InternalCall )] + public static extern void Test( Vector3 vector ); + } +} diff --git a/Test/Properties/AssemblyInfo.cs b/Test/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..d0bd96c --- /dev/null +++ b/Test/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Управление общими сведениями о сборке осуществляется с помощью +// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения, +// связанные со сборкой. +[assembly: AssemblyTitle("Test")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Test")] +[assembly: AssemblyCopyright("Copyright © 2014")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Параметр ComVisible со значением FALSE делает типы в сборке невидимыми +// для COM-компонентов. Если требуется обратиться к типу в этой сборке через +// COM, задайте атрибуту ComVisible значение TRUE для этого типа. +[assembly: ComVisible(false)] + +// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM +[assembly: Guid("1485402b-34aa-4b63-8e51-a5054a4ceca6")] + +// Сведения о версии сборки состоят из следующих четырех значений: +// +// Основной номер версии +// Дополнительный номер версии +// Номер построения +// Редакция +// +// Можно задать все значения или принять номер построения и номер редакции по умолчанию, +// используя "*", как показано ниже: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Test/Resource.cs b/Test/Resource.cs new file mode 100644 index 0000000..c1293b5 --- /dev/null +++ b/Test/Resource.cs @@ -0,0 +1,18 @@ +using System; +using MultiTheftAuto; +using MultiTheftAuto.Native; + +namespace Test +{ + public class Resource + { + public Resource() + { + Debug.Error( "{0}", new Color( 255, 128, 0 ).ToARGB().ToString( "X" ) ); + + Vehicle vehicle = Vehicle.Create( 562, new Vector3( 192.0f, 168.0f, 0.0f ), new Vector3( 0.0f, 0.0f, 0.0f ) ); + + //Debug.Log( "{0}", Element.GetPosition( vehicle ) ); + } + } +} diff --git a/Test/Test.csproj b/Test/Test.csproj new file mode 100644 index 0000000..be6aee5 --- /dev/null +++ b/Test/Test.csproj @@ -0,0 +1,63 @@ + + + + + Debug + AnyCPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD} + Library + Properties + Test + Test + v4.5 + 512 + + + + + true + full + false + bin\Debug\ + TRACE;DEBUG + prompt + 4 + false + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + false + + + + + + + + + + + + + + + + + {2e5d4b1e-405e-453f-beed-25735e25acd8} + MultiTheftAuto + + + + + \ No newline at end of file diff --git a/mono-test/CMono.cpp b/mono-test/CMono.cpp new file mode 100644 index 0000000..a0ae327 --- /dev/null +++ b/mono-test/CMono.cpp @@ -0,0 +1,107 @@ +#include "stdafx.h" +#include "CMono.h" + +CMono::CMono( ) : m_pMonoDomain( NULL ) +{ +} + + +CMono::~CMono() +{ + if( this->m_pMonoDomain ) + { + mono_jit_cleanup( this->m_pMonoDomain ); + } +} + +bool CMono::Init( const char* szVersion ) +{ +// #ifdef _WIN32 + mono_set_dirs( "./lib", "./etc" ); +// #endif + +// mono_config_parse( NULL ); + + mono_debug_init( MONO_DEBUG_FORMAT_MONO ); + + this->m_pMonoDomain = mono_jit_init_version( "Mono Root", szVersion ); + + this->AddInternals(); + + return true; +} + +void CMono::AddInternals() +{ + mono_add_internal_call( "MonoTest.Vector3::Test", CMono::Test ); +} + +bool CMono::Load( const char * szFilePath ) +{ + struct stat buf; + + if( stat( szFilePath, &buf ) == -1 ) + { + printf( "%s - file not found\n", szFilePath ); + + return false; + } + + CMonoAssembly pAssembly( this->m_pMonoDomain, szFilePath ); + + if( !pAssembly.IsValid() ) + { + return false; + } + + CMonoClass* pClass = pAssembly.GetClass( pAssembly.GetImageName(), "Resource" ); + + if( !pClass ) + { + printf( "%s::Resource - not found\n", pAssembly.GetImageName() ); + + return false; + } + + CMonoObject* pMonoObject = pClass->New(); + + if( !pMonoObject ) + { + printf( "failed to create new object of class '%s::Resource'\n", pAssembly.GetImageName() ); + + return false; + } + + return true; +} + +void CMono::Test( MonoObject* vector ) +{ + MonoClass* pClass = mono_object_get_class( vector ); + + printf( "%s->", mono_class_get_name( pClass ) ); + + MonoProperty* pX = mono_class_get_property_from_name( pClass, "X" ); + + if( !pX ) + { + printf( "ERROR\n" ); + + return; + } + + printf( "%s = ", mono_property_get_name( pX ) ); + + MonoObject* value = mono_property_get_value( pX, vector, NULL, NULL ); + + if( !value ) + { + printf( "ERROR\n" ); + + return; + } + + float fX = *(float*)mono_object_unbox( value ); + + printf( "%f\n", fX ); +} \ No newline at end of file diff --git a/mono-test/CMono.h b/mono-test/CMono.h new file mode 100644 index 0000000..2c37e91 --- /dev/null +++ b/mono-test/CMono.h @@ -0,0 +1,26 @@ +class CMono; + +#ifndef _CMONO +#define _CMONO + +#include "CMonoClass.h" +#include "CMonoObject.h" +#include "CMonoAssembly.h" + +class CMono +{ +private: + MonoDomain *m_pMonoDomain; + +public: + CMono(); + ~CMono(); + + bool Init( const char* szVersion ); + void AddInternals(); + bool Load( const char * szFilePath ); + + static void Test( MonoObject* vector ); +}; + +#endif \ No newline at end of file diff --git a/mono-test/CMonoAssembly.cpp b/mono-test/CMonoAssembly.cpp new file mode 100644 index 0000000..59f05b9 --- /dev/null +++ b/mono-test/CMonoAssembly.cpp @@ -0,0 +1,90 @@ +#include "stdafx.h" +#include "CMonoAssembly.h" + +CMonoAssembly::CMonoAssembly( MonoDomain* pDomain, const char* szPath ) +{ + this->m_szPath = szPath; + this->m_pDomain = pDomain; + + this->m_pAssembly = mono_domain_assembly_open( this->m_pDomain, szPath ); + + if( !this->m_pAssembly ) + { + printf( "Failed to create assembly from %s\n", szPath ); + + return; + } + + this->m_pImage = mono_assembly_get_image( this->m_pAssembly ); + + if( !this->m_pImage ) + { + printf( "Failed to get image from assembly %s\n", szPath ); + + return; + } +} + +CMonoAssembly::~CMonoAssembly() +{ +} + +const char* CMonoAssembly::GetImageName() +{ + return mono_image_get_name( this->m_pImage ); +} + +const char* CMonoAssembly::GetImageFileName() +{ + return mono_image_get_filename( this->m_pImage ); +} + +CMonoClass* CMonoAssembly::GetClass( const char* szNameSpace, const char* szClassName ) +{ + return this->GetClass( mono_class_from_name( this->m_pImage, szNameSpace, szClassName ) ); +} + +CMonoClass* CMonoAssembly::GetClass( MonoClass* pMonoClass ) +{ + if( pMonoClass ) + { + CMonoClass* pClass = this->GetFromList( pMonoClass ); + + if( !pClass ) + { + pClass = new CMonoClass( this, pMonoClass ); + } + + return pClass; + } + + return NULL; +} + +void CMonoAssembly::AddToList( CMonoClass* pClass ) +{ + this->m_List.push_back( pClass ); +} + +CMonoClass* CMonoAssembly::GetFromList( MonoClass* pMonoClass ) +{ + std::list< CMonoClass* >::const_iterator iter = this->m_List.begin(); + + for( ; iter != this->m_List.end(); iter++ ) + { + if( ( *iter )->GetMonoClass() == pMonoClass ) + { + return *iter; + } + } + + return NULL; +} + +void CMonoAssembly::RemoveFromList( CMonoClass* pClass ) +{ + if( !this->m_List.empty() ) + { + this->m_List.remove( pClass ); + } +} \ No newline at end of file diff --git a/mono-test/CMonoAssembly.h b/mono-test/CMonoAssembly.h new file mode 100644 index 0000000..ac9683e --- /dev/null +++ b/mono-test/CMonoAssembly.h @@ -0,0 +1,37 @@ +class CMonoAssembly; + +#ifndef _CMONOASSEMBLY +#define _CMONOASSEMBLY + +#include "CMonoClass.h" + +class CMonoAssembly +{ +private: + const char* m_szPath; + MonoAssembly* m_pAssembly; + MonoImage* m_pImage; + MonoDomain* m_pDomain; + + list< CMonoClass* > m_List; + +public: + CMonoAssembly( MonoDomain* pDomain, const char* szPath ); + ~CMonoAssembly(); + + bool IsValid() { return this->m_pImage != NULL; } + + const char* GetImageName(); + const char* GetImageFileName(); + + CMonoClass* GetClass( const char* szNameSpace, const char* szClassName ); + CMonoClass* GetClass( MonoClass* pMonoClass ); + + void AddToList ( CMonoClass* pClass ); + CMonoClass* GetFromList ( MonoClass* pMonoClass ); + void RemoveFromList ( CMonoClass* pClass ); + + MonoDomain* GetMonoDomain() { return this->m_pDomain; } +}; + +#endif \ No newline at end of file diff --git a/mono-test/CMonoClass.cpp b/mono-test/CMonoClass.cpp new file mode 100644 index 0000000..fe0c391 --- /dev/null +++ b/mono-test/CMonoClass.cpp @@ -0,0 +1,62 @@ +#include "stdafx.h" +#include "CMonoClass.h" + +CMonoClass::CMonoClass( CMonoAssembly* pAssembly, MonoClass* pMonoClass ) +{ + this->m_pAssembly = pAssembly; + this->m_pMonoClass = pMonoClass; + + this->m_pAssembly->AddToList( this ); +} + +CMonoClass::~CMonoClass() +{ + this->m_pAssembly->RemoveFromList( this ); +} + +CMonoObject* CMonoClass::New() +{ + MonoObject* pObject = mono_object_new( this->m_pAssembly->GetMonoDomain(), this->m_pMonoClass ); + + if( !pObject ) + { + printf( "Failed to create mono object for %s::%s\n", this->GetNameSpace(), this->GetName() ); + + return NULL; + } + + mono_runtime_object_init( pObject ); + + return new CMonoObject( this, pObject ); +} + +const char* CMonoClass::GetName() +{ + return mono_class_get_name( this->m_pMonoClass ); +} + +const char* CMonoClass::GetNameSpace() +{ + return mono_class_get_namespace( this->m_pMonoClass ); +} + +MonoMethod* CMonoClass::GetMethod( const char* szMethodName, int iParamCount ) +{ + return mono_class_get_method_from_name( this->m_pMonoClass, szMethodName, iParamCount ); +} + +MonoMethod* CMonoClass::GetMethod( const char* szMethodName ) +{ + MonoMethodDesc* pMonoMethodDesc = mono_method_desc_new( szMethodName, false ); + + if( pMonoMethodDesc ) + { + MonoMethod* pMethod = mono_method_desc_search_in_class( pMonoMethodDesc, this->m_pMonoClass ); + + mono_method_desc_free( pMonoMethodDesc ); + + return pMethod; + } + + return NULL; +} \ No newline at end of file diff --git a/mono-test/CMonoClass.h b/mono-test/CMonoClass.h new file mode 100644 index 0000000..e8c93cb --- /dev/null +++ b/mono-test/CMonoClass.h @@ -0,0 +1,31 @@ +class CMonoClass; + +#ifndef _CMONOCLASS +#define _CMONOCLASS + +#include "CMonoAssembly.h" +#include "CMonoObject.h" + +class CMonoClass +{ +private: + MonoClass* m_pMonoClass; + CMonoAssembly* m_pAssembly; + +public: + CMonoClass( CMonoAssembly* pAssembly, MonoClass* pMonoClass ); + + ~CMonoClass(); + + CMonoObject* New(); + + const char* GetName(); + const char* GetNameSpace(); + + MonoMethod* GetMethod( const char* szMethodName, int iParamCount ); + MonoMethod* GetMethod( const char* szMethodName ); + + MonoClass* GetMonoClass() { return this->m_pMonoClass; }; +}; + +#endif \ No newline at end of file diff --git a/mono-test/CMonoObject.cpp b/mono-test/CMonoObject.cpp new file mode 100644 index 0000000..58116d0 --- /dev/null +++ b/mono-test/CMonoObject.cpp @@ -0,0 +1,35 @@ +#include "stdafx.h" +#include "CMonoObject.h" + +CMonoObject::CMonoObject( CMonoClass* pClass, MonoObject* pMonoObect ) +{ + this->m_pClass = pClass; + this->m_pMonoObect = pMonoObect; +} + +CMonoObject::~CMonoObject() +{ +} + +CMonoClass* CMonoObject::GetClass() +{ + return this->m_pClass; + //return this->m_pAssembly->GetClass( mono_object_get_class( this->m_pMonoObect ) ); +} + +MonoObject* CMonoObject::CallMethod( const char* szMethodName ) +{ + CMonoClass* pClass = this->GetClass(); + + if( pClass ) + { + MonoMethod* pMonoMethod = pClass->GetMethod( szMethodName ); + + if( pMonoMethod ) + { + return mono_runtime_invoke( pMonoMethod, this->m_pMonoObect, NULL, NULL ); + } + } + + return NULL; +} \ No newline at end of file diff --git a/mono-test/CMonoObject.h b/mono-test/CMonoObject.h new file mode 100644 index 0000000..b1ab11f --- /dev/null +++ b/mono-test/CMonoObject.h @@ -0,0 +1,23 @@ +class CMonoObject; + +#ifndef _CMONOOBJECT +#define _CMONOOBJECT + +#include "CMonoAssembly.h" +#include "CMonoClass.h" + +class CMonoObject +{ +private: + MonoObject* m_pMonoObect; + CMonoClass* m_pClass; + +public: + CMonoObject( CMonoClass* pClass, MonoObject* pMonoObect ); + ~CMonoObject(); + + CMonoClass* GetClass(); + MonoObject* CallMethod( const char* methodName ); +}; + +#endif \ No newline at end of file diff --git a/mono-test/bin/etc/mono/2.0/Browsers/Compat.browser b/mono-test/bin/etc/mono/2.0/Browsers/Compat.browser new file mode 100644 index 0000000..9950c71 --- /dev/null +++ b/mono-test/bin/etc/mono/2.0/Browsers/Compat.browser @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/mono-test/bin/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx b/mono-test/bin/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx new file mode 100644 index 0000000..f4d74bf --- /dev/null +++ b/mono-test/bin/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx @@ -0,0 +1,1901 @@ +<%-- +// +// 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:

+
+ + + + + + + + + + + + + + + +
<%#DataBinder.Eval(Container.DataItem, "Name")%>: ">
 
+
+
"> + The web service returned the following result:

+
+
+ +
+ <% } 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") {%> + +
+ Select the language for which you want to generate a proxy +   + +    +
+
+ <%=CurrentProxytName%>    + Download +

+
+
<%=GetProxyCode ()%>
+
+<%} 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/mono-test/bin/etc/mono/2.0/machine.config b/mono-test/bin/etc/mono/2.0/machine.config new file mode 100644 index 0000000..c6d1b2c --- /dev/null +++ b/mono-test/bin/etc/mono/2.0/machine.config @@ -0,0 +1,283 @@ + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+ + +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/etc/mono/2.0/settings.map b/mono-test/bin/etc/mono/2.0/settings.map new file mode 100644 index 0000000..0685d74 --- /dev/null +++ b/mono-test/bin/etc/mono/2.0/settings.map @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/etc/mono/2.0/web.config b/mono-test/bin/etc/mono/2.0/web.config new file mode 100644 index 0000000..e1428f8 --- /dev/null +++ b/mono-test/bin/etc/mono/2.0/web.config @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx b/mono-test/bin/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx new file mode 100644 index 0000000..f4d74bf --- /dev/null +++ b/mono-test/bin/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx @@ -0,0 +1,1901 @@ +<%-- +// +// 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:

+
+ + + + + + + + + + + + + + + +
<%#DataBinder.Eval(Container.DataItem, "Name")%>: ">
 
+
+
"> + The web service returned the following result:

+
+
+ +
+ <% } 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") {%> + +
+ Select the language for which you want to generate a proxy +   + +    +
+
+ <%=CurrentProxytName%>    + Download +

+
+
<%=GetProxyCode ()%>
+
+<%} 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/mono-test/bin/etc/mono/4.0/machine.config b/mono-test/bin/etc/mono/4.0/machine.config new file mode 100644 index 0000000..b98a4d3 --- /dev/null +++ b/mono-test/bin/etc/mono/4.0/machine.config @@ -0,0 +1,310 @@ + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ + + +
+ +
+
+
+
+ + + + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/etc/mono/4.0/settings.map b/mono-test/bin/etc/mono/4.0/settings.map new file mode 100644 index 0000000..3880fc2 --- /dev/null +++ b/mono-test/bin/etc/mono/4.0/settings.map @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/etc/mono/4.0/web.config b/mono-test/bin/etc/mono/4.0/web.config new file mode 100644 index 0000000..2a7dfd2 --- /dev/null +++ b/mono-test/bin/etc/mono/4.0/web.config @@ -0,0 +1,253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx b/mono-test/bin/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx new file mode 100644 index 0000000..f4d74bf --- /dev/null +++ b/mono-test/bin/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx @@ -0,0 +1,1901 @@ +<%-- +// +// 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:

+
+ + + + + + + + + + + + + + + +
<%#DataBinder.Eval(Container.DataItem, "Name")%>: ">
 
+
+
"> + The web service returned the following result:

+
+
+ +
+ <% } 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") {%> + +
+ Select the language for which you want to generate a proxy +   + +    +
+
+ <%=CurrentProxytName%>    + Download +

+
+
<%=GetProxyCode ()%>
+
+<%} 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/mono-test/bin/etc/mono/4.5/machine.config b/mono-test/bin/etc/mono/4.5/machine.config new file mode 100644 index 0000000..b98a4d3 --- /dev/null +++ b/mono-test/bin/etc/mono/4.5/machine.config @@ -0,0 +1,310 @@ + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ + + +
+ +
+
+
+
+ + + + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/etc/mono/4.5/settings.map b/mono-test/bin/etc/mono/4.5/settings.map new file mode 100644 index 0000000..3880fc2 --- /dev/null +++ b/mono-test/bin/etc/mono/4.5/settings.map @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/etc/mono/4.5/web.config b/mono-test/bin/etc/mono/4.5/web.config new file mode 100644 index 0000000..324c529 --- /dev/null +++ b/mono-test/bin/etc/mono/4.5/web.config @@ -0,0 +1,253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/etc/mono/browscap.ini b/mono-test/bin/etc/mono/browscap.ini new file mode 100644 index 0000000..1267e1d --- /dev/null +++ b/mono-test/bin/etc/mono/browscap.ini @@ -0,0 +1,16979 @@ +;;; 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=Substncia + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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/mono-test/bin/etc/mono/config b/mono-test/bin/etc/mono/config new file mode 100644 index 0000000..398c42c --- /dev/null +++ b/mono-test/bin/etc/mono/config @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/etc/mono/mconfig/config.xml b/mono-test/bin/etc/mono/mconfig/config.xml new file mode 100644 index 0000000..a3df3b5 --- /dev/null +++ b/mono-test/bin/etc/mono/mconfig/config.xml @@ -0,0 +1,616 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + + +]]> + + + + + + +
+
+
+ + + + + +
+ +
+
+
+
+ + + +]]> + + + + + +
+
+
+
+
+
+
+ + + + + +]]> + + + + + +
+
+
+
+
+
+
+ + + + + + + + +]]> + + + + + +
+
+
+
+
+ + + + + + + +]]> + + + + + +
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+
+
+ + + + + + + + + + + + +]]> + + + + + +
+
+
+ + + + + + + + + + + + + +]]> + + + + + +
+
+
+ + + + + + + + + + + + + + + + + +]]> + + + + + + + +
+
+
+ + + + + +
+ +
+
+
+ + + + ]]> + + + + + +
+
+
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+
+
+ + + + + + + +]]> + + + + + +
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+ + + + + + + + + + + + + + + +]]> + + + + + +
+
+
+ + + + + + + + + + + + + +]]> + + + + + + +
+
+
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+
+
+
+
+ + + + + + + + + + + +]]> + + + + + +
+
+
+
+
+ + + + +]]> + + + + + + + + ]]> + + + + + + ]]> + + + + + + ]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + +
+
+
+
+
+
+ + diff --git a/mono-test/bin/lib/GNU.Gettext.dll b/mono-test/bin/lib/GNU.Gettext.dll new file mode 100644 index 0000000..ef1f7ed Binary files /dev/null and b/mono-test/bin/lib/GNU.Gettext.dll differ diff --git a/mono-test/bin/lib/boo/Boo.NAnt.Tasks.dll b/mono-test/bin/lib/boo/Boo.NAnt.Tasks.dll new file mode 100644 index 0000000..4d413bd Binary files /dev/null and b/mono-test/bin/lib/boo/Boo.NAnt.Tasks.dll differ diff --git a/mono-test/bin/lib/boo/booc.exe b/mono-test/bin/lib/boo/booc.exe new file mode 100644 index 0000000..ca7badf Binary files /dev/null and b/mono-test/bin/lib/boo/booc.exe differ diff --git a/mono-test/bin/lib/boo/booc.exe.config b/mono-test/bin/lib/boo/booc.exe.config new file mode 100644 index 0000000..cadbc4e --- /dev/null +++ b/mono-test/bin/lib/boo/booc.exe.config @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/mono-test/bin/lib/boo/booc.rsp b/mono-test/bin/lib/boo/booc.rsp new file mode 100644 index 0000000..20f1460 --- /dev/null +++ b/mono-test/bin/lib/boo/booc.rsp @@ -0,0 +1,20 @@ +# This file contains command-line options that the Boo +# command-line compiler (booc) will process as part +# of every compilation, unless the "-noconfig" option +# is specified. + +# Reference the common Framework libraries +#-r:System (already included by boo) +#-r:System.Data +-r:System.Drawing +#-r:System.Management +#-r:System.Messaging +#-r:System.Runtime.Remoting +#-r:System.Runtime.Serialization.Formatters.Soap +# does not work nicely on mono +-r:System.Security +#-r:System.ServiceProcess +#-r:System.Web +#-r:System.Web.Services +#-r:System.Windows.Forms +-r:System.Xml diff --git a/mono-test/bin/lib/boo/booi.exe b/mono-test/bin/lib/boo/booi.exe new file mode 100644 index 0000000..5cc5f79 Binary files /dev/null and b/mono-test/bin/lib/boo/booi.exe differ diff --git a/mono-test/bin/lib/boo/booi.exe.config b/mono-test/bin/lib/boo/booi.exe.config new file mode 100644 index 0000000..cadbc4e --- /dev/null +++ b/mono-test/bin/lib/boo/booi.exe.config @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/mono-test/bin/lib/boo/booish.exe b/mono-test/bin/lib/boo/booish.exe new file mode 100644 index 0000000..bd1236f Binary files /dev/null and b/mono-test/bin/lib/boo/booish.exe differ diff --git a/mono-test/bin/lib/boo/booish.exe.config b/mono-test/bin/lib/boo/booish.exe.config new file mode 100644 index 0000000..cadbc4e --- /dev/null +++ b/mono-test/bin/lib/boo/booish.exe.config @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/mono-test/bin/lib/charset.lib b/mono-test/bin/lib/charset.lib new file mode 100644 index 0000000..9f8e1f8 Binary files /dev/null and b/mono-test/bin/lib/charset.lib differ diff --git a/mono-test/bin/lib/iconv.lib b/mono-test/bin/lib/iconv.lib new file mode 100644 index 0000000..1ad0cbe Binary files /dev/null and b/mono-test/bin/lib/iconv.lib differ diff --git a/mono-test/bin/lib/ikvm/ICSharpCode.SharpZipLib.dll b/mono-test/bin/lib/ikvm/ICSharpCode.SharpZipLib.dll new file mode 100644 index 0000000..77bafe8 Binary files /dev/null and b/mono-test/bin/lib/ikvm/ICSharpCode.SharpZipLib.dll differ diff --git a/mono-test/bin/lib/ikvm/IKVM.Reflection.dll b/mono-test/bin/lib/ikvm/IKVM.Reflection.dll new file mode 100644 index 0000000..0cfacb0 Binary files /dev/null and b/mono-test/bin/lib/ikvm/IKVM.Reflection.dll differ diff --git a/mono-test/bin/lib/ikvm/IKVM.Runtime.JNI.dll b/mono-test/bin/lib/ikvm/IKVM.Runtime.JNI.dll new file mode 100644 index 0000000..cf6e312 Binary files /dev/null and b/mono-test/bin/lib/ikvm/IKVM.Runtime.JNI.dll differ diff --git a/mono-test/bin/lib/ikvm/ikvm.exe b/mono-test/bin/lib/ikvm/ikvm.exe new file mode 100644 index 0000000..9cd5c9b Binary files /dev/null and b/mono-test/bin/lib/ikvm/ikvm.exe differ diff --git a/mono-test/bin/lib/ikvm/ikvmc.exe b/mono-test/bin/lib/ikvm/ikvmc.exe new file mode 100644 index 0000000..5c6e9f1 Binary files /dev/null and b/mono-test/bin/lib/ikvm/ikvmc.exe differ diff --git a/mono-test/bin/lib/ikvm/ikvmstub.exe b/mono-test/bin/lib/ikvm/ikvmstub.exe new file mode 100644 index 0000000..91cba8f Binary files /dev/null and b/mono-test/bin/lib/ikvm/ikvmstub.exe differ diff --git a/mono-test/bin/lib/intl.lib b/mono-test/bin/lib/intl.lib new file mode 100644 index 0000000..ba25330 Binary files /dev/null and b/mono-test/bin/lib/intl.lib differ diff --git a/mono-test/bin/lib/libMonoPosixHelper.a b/mono-test/bin/lib/libMonoPosixHelper.a new file mode 100644 index 0000000..6e826ba Binary files /dev/null and b/mono-test/bin/lib/libMonoPosixHelper.a differ diff --git a/mono-test/bin/lib/libMonoPosixHelper.dll.a b/mono-test/bin/lib/libMonoPosixHelper.dll.a new file mode 100644 index 0000000..a43a02a Binary files /dev/null and b/mono-test/bin/lib/libMonoPosixHelper.dll.a differ diff --git a/mono-test/bin/lib/libMonoPosixHelper.la b/mono-test/bin/lib/libMonoPosixHelper.la new file mode 100644 index 0000000..c9daa03 --- /dev/null +++ b/mono-test/bin/lib/libMonoPosixHelper.la @@ -0,0 +1,41 @@ +# libMonoPosixHelper.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='../bin/libMonoPosixHelper.dll' + +# Names of this library. +library_names='libMonoPosixHelper.dll.a' + +# The name of the static archive. +old_library='libMonoPosixHelper.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' -lmswsock -lkernel32 -L../eglib/src -lws2_32 -lpsapi -lole32 -lwinmm -loleaut32 -ladvapi32 -lversion' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libMonoPosixHelper. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/tmp/install/lib' diff --git a/mono-test/bin/lib/libasprintf.dll.a b/mono-test/bin/lib/libasprintf.dll.a new file mode 100644 index 0000000..b6a8e2a Binary files /dev/null and b/mono-test/bin/lib/libasprintf.dll.a differ diff --git a/mono-test/bin/lib/libiconv.a b/mono-test/bin/lib/libiconv.a new file mode 100644 index 0000000..d400e34 Binary files /dev/null and b/mono-test/bin/lib/libiconv.a differ diff --git a/mono-test/bin/lib/libintl.def b/mono-test/bin/lib/libintl.def new file mode 100644 index 0000000..630ed39 --- /dev/null +++ b/mono-test/bin/lib/libintl.def @@ -0,0 +1,31 @@ +EXPORTS +_nl_expand_alias +_nl_msg_cat_cntr DATA +bind_textdomain_codeset +bindtextdomain +dcgettext +dcngettext +dgettext +dngettext +gettext +libintl_bind_textdomain_codeset +libintl_bindtextdomain +libintl_dcgettext +libintl_dcngettext +libintl_dgettext +libintl_dngettext +libintl_fprintf +libintl_gettext +libintl_ngettext +libintl_printf +libintl_set_relocation_prefix +libintl_setlocale +libintl_snprintf +libintl_sprintf +libintl_textdomain +libintl_vfprintf +libintl_vprintf +libintl_vsnprintf +libintl_vsprintf +ngettext +textdomain diff --git a/mono-test/bin/lib/libintl.dll.a b/mono-test/bin/lib/libintl.dll.a new file mode 100644 index 0000000..c04ad10 Binary files /dev/null and b/mono-test/bin/lib/libintl.dll.a differ diff --git a/mono-test/bin/lib/libmono-2.0.a b/mono-test/bin/lib/libmono-2.0.a new file mode 100644 index 0000000..20d3d55 Binary files /dev/null and b/mono-test/bin/lib/libmono-2.0.a differ diff --git a/mono-test/bin/lib/libmono-2.0.dll.a b/mono-test/bin/lib/libmono-2.0.dll.a new file mode 100644 index 0000000..9816288 Binary files /dev/null and b/mono-test/bin/lib/libmono-2.0.dll.a differ diff --git a/mono-test/bin/lib/libmono-2.0.la b/mono-test/bin/lib/libmono-2.0.la new file mode 100644 index 0000000..48c8a3d --- /dev/null +++ b/mono-test/bin/lib/libmono-2.0.la @@ -0,0 +1,41 @@ +# libmonoboehm-2.0.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='../bin/libmonoboehm-2.0.dll' + +# Names of this library. +library_names='libmonoboehm-2.0.dll.a' + +# The name of the static archive. +old_library='libmonoboehm-2.0.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' /usr/lib/gcc/i686-pc-mingw32/4.5.2/libstdc++.la -lmswsock -lkernel32 -L../../eglib/src -lws2_32 -lpsapi -lole32 -lwinmm -loleaut32 -ladvapi32 -lversion' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libmonoboehm-2.0. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/tmp/install/lib' diff --git a/mono-test/bin/lib/libmono-profiler-aot.a b/mono-test/bin/lib/libmono-profiler-aot.a new file mode 100644 index 0000000..18db8fc Binary files /dev/null and b/mono-test/bin/lib/libmono-profiler-aot.a differ diff --git a/mono-test/bin/lib/libmono-profiler-aot.la b/mono-test/bin/lib/libmono-profiler-aot.la new file mode 100644 index 0000000..8eada3c --- /dev/null +++ b/mono-test/bin/lib/libmono-profiler-aot.la @@ -0,0 +1,41 @@ +# libmono-profiler-aot.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libmono-profiler-aot.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' /tmp/install/lib/libmonosgen-2.0.la -L../../eglib/src /usr/lib/gcc/i686-pc-mingw32/4.5.2/libstdc++.la -lmswsock -lkernel32 -lws2_32 -lpsapi -lole32 -lwinmm -loleaut32 -ladvapi32 -lversion' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libmono-profiler-aot. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/tmp/install/lib' diff --git a/mono-test/bin/lib/libmono-profiler-cov.a b/mono-test/bin/lib/libmono-profiler-cov.a new file mode 100644 index 0000000..9289eb4 Binary files /dev/null and b/mono-test/bin/lib/libmono-profiler-cov.a differ diff --git a/mono-test/bin/lib/libmono-profiler-cov.la b/mono-test/bin/lib/libmono-profiler-cov.la new file mode 100644 index 0000000..1cc9b06 --- /dev/null +++ b/mono-test/bin/lib/libmono-profiler-cov.la @@ -0,0 +1,41 @@ +# libmono-profiler-cov.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libmono-profiler-cov.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' /tmp/install/lib/libmonosgen-2.0.la -L../../eglib/src /usr/lib/gcc/i686-pc-mingw32/4.5.2/libstdc++.la -lmswsock -lkernel32 -lws2_32 -lpsapi -lole32 -lwinmm -loleaut32 -ladvapi32 -lversion' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libmono-profiler-cov. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/tmp/install/lib' diff --git a/mono-test/bin/lib/libmono-profiler-iomap.a b/mono-test/bin/lib/libmono-profiler-iomap.a new file mode 100644 index 0000000..4d002fb Binary files /dev/null and b/mono-test/bin/lib/libmono-profiler-iomap.a differ diff --git a/mono-test/bin/lib/libmono-profiler-iomap.la b/mono-test/bin/lib/libmono-profiler-iomap.la new file mode 100644 index 0000000..44922eb --- /dev/null +++ b/mono-test/bin/lib/libmono-profiler-iomap.la @@ -0,0 +1,41 @@ +# libmono-profiler-iomap.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libmono-profiler-iomap.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' /tmp/install/lib/libmonosgen-2.0.la -L../../eglib/src /usr/lib/gcc/i686-pc-mingw32/4.5.2/libstdc++.la -lmswsock -lkernel32 -lws2_32 -lpsapi -lole32 -lwinmm -loleaut32 -ladvapi32 -lversion' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libmono-profiler-iomap. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/tmp/install/lib' diff --git a/mono-test/bin/lib/libmono-profiler-log.a b/mono-test/bin/lib/libmono-profiler-log.a new file mode 100644 index 0000000..0d5fdcf Binary files /dev/null and b/mono-test/bin/lib/libmono-profiler-log.a differ diff --git a/mono-test/bin/lib/libmono-profiler-log.la b/mono-test/bin/lib/libmono-profiler-log.la new file mode 100644 index 0000000..7e59939 --- /dev/null +++ b/mono-test/bin/lib/libmono-profiler-log.la @@ -0,0 +1,41 @@ +# libmono-profiler-log.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libmono-profiler-log.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' /tmp/install/lib/libmonosgen-2.0.la -L../../eglib/src /usr/lib/gcc/i686-pc-mingw32/4.5.2/libstdc++.la -lmswsock -lkernel32 -lws2_32 -lpsapi -lole32 -lwinmm -loleaut32 -ladvapi32 -lversion' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libmono-profiler-log. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/tmp/install/lib' diff --git a/mono-test/bin/lib/libmonoboehm-2.0.a b/mono-test/bin/lib/libmonoboehm-2.0.a new file mode 100644 index 0000000..e38b893 Binary files /dev/null and b/mono-test/bin/lib/libmonoboehm-2.0.a differ diff --git a/mono-test/bin/lib/libmonoboehm-2.0.dll.a b/mono-test/bin/lib/libmonoboehm-2.0.dll.a new file mode 100644 index 0000000..7f10d50 Binary files /dev/null and b/mono-test/bin/lib/libmonoboehm-2.0.dll.a differ diff --git a/mono-test/bin/lib/libmonoboehm-2.0.la b/mono-test/bin/lib/libmonoboehm-2.0.la new file mode 100644 index 0000000..48c8a3d --- /dev/null +++ b/mono-test/bin/lib/libmonoboehm-2.0.la @@ -0,0 +1,41 @@ +# libmonoboehm-2.0.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='../bin/libmonoboehm-2.0.dll' + +# Names of this library. +library_names='libmonoboehm-2.0.dll.a' + +# The name of the static archive. +old_library='libmonoboehm-2.0.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' /usr/lib/gcc/i686-pc-mingw32/4.5.2/libstdc++.la -lmswsock -lkernel32 -L../../eglib/src -lws2_32 -lpsapi -lole32 -lwinmm -loleaut32 -ladvapi32 -lversion' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libmonoboehm-2.0. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/tmp/install/lib' diff --git a/mono-test/bin/lib/libmonosgen-2.0.a b/mono-test/bin/lib/libmonosgen-2.0.a new file mode 100644 index 0000000..2feea4a Binary files /dev/null and b/mono-test/bin/lib/libmonosgen-2.0.a differ diff --git a/mono-test/bin/lib/libmonosgen-2.0.dll.a b/mono-test/bin/lib/libmonosgen-2.0.dll.a new file mode 100644 index 0000000..d8e0012 Binary files /dev/null and b/mono-test/bin/lib/libmonosgen-2.0.dll.a differ diff --git a/mono-test/bin/lib/libmonosgen-2.0.la b/mono-test/bin/lib/libmonosgen-2.0.la new file mode 100644 index 0000000..6bd2202 --- /dev/null +++ b/mono-test/bin/lib/libmonosgen-2.0.la @@ -0,0 +1,41 @@ +# libmonosgen-2.0.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='../bin/libmonosgen-2.0.dll' + +# Names of this library. +library_names='libmonosgen-2.0.dll.a' + +# The name of the static archive. +old_library='libmonosgen-2.0.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' /usr/lib/gcc/i686-pc-mingw32/4.5.2/libstdc++.la -lmswsock -lkernel32 -L../../eglib/src -lws2_32 -lpsapi -lole32 -lwinmm -loleaut32 -ladvapi32 -lversion' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libmonosgen-2.0. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/tmp/install/lib' diff --git a/mono-test/bin/lib/libz.dll.a b/mono-test/bin/lib/libz.dll.a new file mode 100644 index 0000000..3ee8f7b Binary files /dev/null and b/mono-test/bin/lib/libz.dll.a differ diff --git a/mono-test/bin/lib/mono-source-libs/Options.cs b/mono-test/bin/lib/mono-source-libs/Options.cs new file mode 100644 index 0000000..5af7fe0 --- /dev/null +++ b/mono-test/bin/lib/mono-source-libs/Options.cs @@ -0,0 +1,1366 @@ +// +// Options.cs +// +// Authors: +// Jonathan Pryor +// Federico Di Gregorio +// Rolf Bjarne Kvinge +// +// Copyright (C) 2008 Novell (http://www.novell.com) +// Copyright (C) 2009 Federico Di Gregorio. +// Copyright (C) 2012 Xamarin Inc (http://www.xamarin.com) +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// + +// Compile With: +// gmcs -debug+ -r:System.Core Options.cs -o:NDesk.Options.dll +// gmcs -debug+ -d:LINQ -r:System.Core Options.cs -o:NDesk.Options.dll +// +// The LINQ version just changes the implementation of +// OptionSet.Parse(IEnumerable), and confers no semantic changes. + +// +// A Getopt::Long-inspired option parsing library for C#. +// +// NDesk.Options.OptionSet is built upon a key/value table, where the +// key is a option format string and the value is a delegate that is +// invoked when the format string is matched. +// +// Option format strings: +// Regex-like BNF Grammar: +// name: .+ +// type: [=:] +// sep: ( [^{}]+ | '{' .+ '}' )? +// aliases: ( name type sep ) ( '|' name type sep )* +// +// Each '|'-delimited name is an alias for the associated action. If the +// format string ends in a '=', it has a required value. If the format +// string ends in a ':', it has an optional value. If neither '=' or ':' +// is present, no value is supported. `=' or `:' need only be defined on one +// alias, but if they are provided on more than one they must be consistent. +// +// Each alias portion may also end with a "key/value separator", which is used +// to split option values if the option accepts > 1 value. If not specified, +// it defaults to '=' and ':'. If specified, it can be any character except +// '{' and '}' OR the *string* between '{' and '}'. If no separator should be +// used (i.e. the separate values should be distinct arguments), then "{}" +// should be used as the separator. +// +// Options are extracted either from the current option by looking for +// the option name followed by an '=' or ':', or is taken from the +// following option IFF: +// - The current option does not contain a '=' or a ':' +// - The current option requires a value (i.e. not a Option type of ':') +// +// The `name' used in the option format string does NOT include any leading +// option indicator, such as '-', '--', or '/'. All three of these are +// permitted/required on any named option. +// +// Option bundling is permitted so long as: +// - '-' is used to start the option group +// - all of the bundled options are a single character +// - at most one of the bundled options accepts a value, and the value +// provided starts from the next character to the end of the string. +// +// This allows specifying '-a -b -c' as '-abc', and specifying '-D name=value' +// as '-Dname=value'. +// +// Option processing is disabled by specifying "--". All options after "--" +// are returned by OptionSet.Parse() unchanged and unprocessed. +// +// Unprocessed options are returned from OptionSet.Parse(). +// +// Examples: +// int verbose = 0; +// OptionSet p = new OptionSet () +// .Add ("v", v => ++verbose) +// .Add ("name=|value=", v => Console.WriteLine (v)); +// p.Parse (new string[]{"-v", "--v", "/v", "-name=A", "/name", "B", "extra"}); +// +// The above would parse the argument string array, and would invoke the +// lambda expression three times, setting `verbose' to 3 when complete. +// It would also print out "A" and "B" to standard output. +// The returned array would contain the string "extra". +// +// C# 3.0 collection initializers are supported and encouraged: +// var p = new OptionSet () { +// { "h|?|help", v => ShowHelp () }, +// }; +// +// System.ComponentModel.TypeConverter is also supported, allowing the use of +// custom data types in the callback type; TypeConverter.ConvertFromString() +// is used to convert the value option to an instance of the specified +// type: +// +// var p = new OptionSet () { +// { "foo=", (Foo f) => Console.WriteLine (f.ToString ()) }, +// }; +// +// Random other tidbits: +// - Boolean options (those w/o '=' or ':' in the option format string) +// are explicitly enabled if they are followed with '+', and explicitly +// disabled if they are followed with '-': +// string a = null; +// var p = new OptionSet () { +// { "a", s => a = s }, +// }; +// p.Parse (new string[]{"-a"}); // sets v != null +// p.Parse (new string[]{"-a+"}); // sets v != null +// p.Parse (new string[]{"-a-"}); // sets v == null +// + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.ComponentModel; +using System.Globalization; +using System.IO; +using System.Runtime.Serialization; +using System.Security.Permissions; +using System.Text; +using System.Text.RegularExpressions; + +#if LINQ +using System.Linq; +#endif + +#if TEST +using NDesk.Options; +#endif + +#if NDESK_OPTIONS +namespace NDesk.Options +#else +namespace Mono.Options +#endif +{ + static class StringCoda { + + public static IEnumerable WrappedLines (string self, params int[] widths) + { + IEnumerable w = widths; + return WrappedLines (self, w); + } + + public static IEnumerable WrappedLines (string self, IEnumerable widths) + { + if (widths == null) + throw new ArgumentNullException ("widths"); + return CreateWrappedLinesIterator (self, widths); + } + + private static IEnumerable CreateWrappedLinesIterator (string self, IEnumerable widths) + { + if (string.IsNullOrEmpty (self)) { + yield return string.Empty; + yield break; + } + using (IEnumerator ewidths = widths.GetEnumerator ()) { + bool? hw = null; + int width = GetNextWidth (ewidths, int.MaxValue, ref hw); + int start = 0, end; + do { + end = GetLineEnd (start, width, self); + char c = self [end-1]; + if (char.IsWhiteSpace (c)) + --end; + bool needContinuation = end != self.Length && !IsEolChar (c); + string continuation = ""; + if (needContinuation) { + --end; + continuation = "-"; + } + string line = self.Substring (start, end - start) + continuation; + yield return line; + start = end; + if (char.IsWhiteSpace (c)) + ++start; + width = GetNextWidth (ewidths, width, ref hw); + } while (start < self.Length); + } + } + + private static int GetNextWidth (IEnumerator ewidths, int curWidth, ref bool? eValid) + { + if (!eValid.HasValue || (eValid.HasValue && eValid.Value)) { + curWidth = (eValid = ewidths.MoveNext ()).Value ? ewidths.Current : curWidth; + // '.' is any character, - is for a continuation + const string minWidth = ".-"; + if (curWidth < minWidth.Length) + throw new ArgumentOutOfRangeException ("widths", + string.Format ("Element must be >= {0}, was {1}.", minWidth.Length, curWidth)); + return curWidth; + } + // no more elements, use the last element. + return curWidth; + } + + private static bool IsEolChar (char c) + { + return !char.IsLetterOrDigit (c); + } + + private static int GetLineEnd (int start, int length, string description) + { + int end = System.Math.Min (start + length, description.Length); + int sep = -1; + for (int i = start; i < end; ++i) { + if (description [i] == '\n') + return i+1; + if (IsEolChar (description [i])) + sep = i+1; + } + if (sep == -1 || end == description.Length) + return end; + return sep; + } + } + + public class OptionValueCollection : IList, IList { + + List values = new List (); + OptionContext c; + + internal OptionValueCollection (OptionContext c) + { + this.c = c; + } + + #region ICollection + void ICollection.CopyTo (Array array, int index) {(values as ICollection).CopyTo (array, index);} + bool ICollection.IsSynchronized {get {return (values as ICollection).IsSynchronized;}} + object ICollection.SyncRoot {get {return (values as ICollection).SyncRoot;}} + #endregion + + #region ICollection + public void Add (string item) {values.Add (item);} + public void Clear () {values.Clear ();} + public bool Contains (string item) {return values.Contains (item);} + public void CopyTo (string[] array, int arrayIndex) {values.CopyTo (array, arrayIndex);} + public bool Remove (string item) {return values.Remove (item);} + public int Count {get {return values.Count;}} + public bool IsReadOnly {get {return false;}} + #endregion + + #region IEnumerable + IEnumerator IEnumerable.GetEnumerator () {return values.GetEnumerator ();} + #endregion + + #region IEnumerable + public IEnumerator GetEnumerator () {return values.GetEnumerator ();} + #endregion + + #region IList + int IList.Add (object value) {return (values as IList).Add (value);} + bool IList.Contains (object value) {return (values as IList).Contains (value);} + int IList.IndexOf (object value) {return (values as IList).IndexOf (value);} + void IList.Insert (int index, object value) {(values as IList).Insert (index, value);} + void IList.Remove (object value) {(values as IList).Remove (value);} + void IList.RemoveAt (int index) {(values as IList).RemoveAt (index);} + bool IList.IsFixedSize {get {return false;}} + object IList.this [int index] {get {return this [index];} set {(values as IList)[index] = value;}} + #endregion + + #region IList + public int IndexOf (string item) {return values.IndexOf (item);} + public void Insert (int index, string item) {values.Insert (index, item);} + public void RemoveAt (int index) {values.RemoveAt (index);} + + private void AssertValid (int index) + { + if (c.Option == null) + throw new InvalidOperationException ("OptionContext.Option is null."); + if (index >= c.Option.MaxValueCount) + throw new ArgumentOutOfRangeException ("index"); + if (c.Option.OptionValueType == OptionValueType.Required && + index >= values.Count) + throw new OptionException (string.Format ( + c.OptionSet.MessageLocalizer ("Missing required value for option '{0}'."), c.OptionName), + c.OptionName); + } + + public string this [int index] { + get { + AssertValid (index); + return index >= values.Count ? null : values [index]; + } + set { + values [index] = value; + } + } + #endregion + + public List ToList () + { + return new List (values); + } + + public string[] ToArray () + { + return values.ToArray (); + } + + public override string ToString () + { + return string.Join (", ", values.ToArray ()); + } + } + + public class OptionContext { + private Option option; + private string name; + private int index; + private OptionSet set; + private OptionValueCollection c; + + public OptionContext (OptionSet set) + { + this.set = set; + this.c = new OptionValueCollection (this); + } + + public Option Option { + get {return option;} + set {option = value;} + } + + public string OptionName { + get {return name;} + set {name = value;} + } + + public int OptionIndex { + get {return index;} + set {index = value;} + } + + public OptionSet OptionSet { + get {return set;} + } + + public OptionValueCollection OptionValues { + get {return c;} + } + } + + public enum OptionValueType { + None, + Optional, + Required, + } + + public abstract class Option { + string prototype, description; + string[] names; + OptionValueType type; + int count; + string[] separators; + bool hidden; + + protected Option (string prototype, string description) + : this (prototype, description, 1, false) + { + } + + protected Option (string prototype, string description, int maxValueCount) + : this (prototype, description, maxValueCount, false) + { + } + + protected Option (string prototype, string description, int maxValueCount, bool hidden) + { + if (prototype == null) + throw new ArgumentNullException ("prototype"); + if (prototype.Length == 0) + throw new ArgumentException ("Cannot be the empty string.", "prototype"); + if (maxValueCount < 0) + throw new ArgumentOutOfRangeException ("maxValueCount"); + + this.prototype = prototype; + this.description = description; + this.count = maxValueCount; + this.names = (this is OptionSet.Category) + // append GetHashCode() so that "duplicate" categories have distinct + // names, e.g. adding multiple "" categories should be valid. + ? new[]{prototype + this.GetHashCode ()} + : prototype.Split ('|'); + + if (this is OptionSet.Category) + return; + + this.type = ParsePrototype (); + this.hidden = hidden; + + if (this.count == 0 && type != OptionValueType.None) + throw new ArgumentException ( + "Cannot provide maxValueCount of 0 for OptionValueType.Required or " + + "OptionValueType.Optional.", + "maxValueCount"); + if (this.type == OptionValueType.None && maxValueCount > 1) + throw new ArgumentException ( + string.Format ("Cannot provide maxValueCount of {0} for OptionValueType.None.", maxValueCount), + "maxValueCount"); + if (Array.IndexOf (names, "<>") >= 0 && + ((names.Length == 1 && this.type != OptionValueType.None) || + (names.Length > 1 && this.MaxValueCount > 1))) + throw new ArgumentException ( + "The default option handler '<>' cannot require values.", + "prototype"); + } + + public string Prototype {get {return prototype;}} + public string Description {get {return description;}} + public OptionValueType OptionValueType {get {return type;}} + public int MaxValueCount {get {return count;}} + public bool Hidden {get {return hidden;}} + + public string[] GetNames () + { + return (string[]) names.Clone (); + } + + public string[] GetValueSeparators () + { + if (separators == null) + return new string [0]; + return (string[]) separators.Clone (); + } + + protected static T Parse (string value, OptionContext c) + { + Type tt = typeof (T); + bool nullable = tt.IsValueType && tt.IsGenericType && + !tt.IsGenericTypeDefinition && + tt.GetGenericTypeDefinition () == typeof (Nullable<>); + Type targetType = nullable ? tt.GetGenericArguments () [0] : typeof (T); + TypeConverter conv = TypeDescriptor.GetConverter (targetType); + T t = default (T); + try { + if (value != null) + t = (T) conv.ConvertFromString (value); + } + catch (Exception e) { + throw new OptionException ( + string.Format ( + c.OptionSet.MessageLocalizer ("Could not convert string `{0}' to type {1} for option `{2}'."), + value, targetType.Name, c.OptionName), + c.OptionName, e); + } + return t; + } + + internal string[] Names {get {return names;}} + internal string[] ValueSeparators {get {return separators;}} + + static readonly char[] NameTerminator = new char[]{'=', ':'}; + + private OptionValueType ParsePrototype () + { + char type = '\0'; + List seps = new List (); + for (int i = 0; i < names.Length; ++i) { + string name = names [i]; + if (name.Length == 0) + throw new ArgumentException ("Empty option names are not supported.", "prototype"); + + int end = name.IndexOfAny (NameTerminator); + if (end == -1) + continue; + names [i] = name.Substring (0, end); + if (type == '\0' || type == name [end]) + type = name [end]; + else + throw new ArgumentException ( + string.Format ("Conflicting option types: '{0}' vs. '{1}'.", type, name [end]), + "prototype"); + AddSeparators (name, end, seps); + } + + if (type == '\0') + return OptionValueType.None; + + if (count <= 1 && seps.Count != 0) + throw new ArgumentException ( + string.Format ("Cannot provide key/value separators for Options taking {0} value(s).", count), + "prototype"); + if (count > 1) { + if (seps.Count == 0) + this.separators = new string[]{":", "="}; + else if (seps.Count == 1 && seps [0].Length == 0) + this.separators = null; + else + this.separators = seps.ToArray (); + } + + return type == '=' ? OptionValueType.Required : OptionValueType.Optional; + } + + private static void AddSeparators (string name, int end, ICollection seps) + { + int start = -1; + for (int i = end+1; i < name.Length; ++i) { + switch (name [i]) { + case '{': + if (start != -1) + throw new ArgumentException ( + string.Format ("Ill-formed name/value separator found in \"{0}\".", name), + "prototype"); + start = i+1; + break; + case '}': + if (start == -1) + throw new ArgumentException ( + string.Format ("Ill-formed name/value separator found in \"{0}\".", name), + "prototype"); + seps.Add (name.Substring (start, i-start)); + start = -1; + break; + default: + if (start == -1) + seps.Add (name [i].ToString ()); + break; + } + } + if (start != -1) + throw new ArgumentException ( + string.Format ("Ill-formed name/value separator found in \"{0}\".", name), + "prototype"); + } + + public void Invoke (OptionContext c) + { + OnParseComplete (c); + c.OptionName = null; + c.Option = null; + c.OptionValues.Clear (); + } + + protected abstract void OnParseComplete (OptionContext c); + + public override string ToString () + { + return Prototype; + } + } + + public abstract class ArgumentSource { + + protected ArgumentSource () + { + } + + public abstract string[] GetNames (); + public abstract string Description { get; } + public abstract bool GetArguments (string value, out IEnumerable replacement); + + public static IEnumerable GetArgumentsFromFile (string file) + { + return GetArguments (File.OpenText (file), true); + } + + public static IEnumerable GetArguments (TextReader reader) + { + return GetArguments (reader, false); + } + + // Cribbed from mcs/driver.cs:LoadArgs(string) + static IEnumerable GetArguments (TextReader reader, bool close) + { + try { + StringBuilder arg = new StringBuilder (); + + string line; + while ((line = reader.ReadLine ()) != null) { + int t = line.Length; + + for (int i = 0; i < t; i++) { + char c = line [i]; + + if (c == '"' || c == '\'') { + char end = c; + + for (i++; i < t; i++){ + c = line [i]; + + if (c == end) + break; + arg.Append (c); + } + } else if (c == ' ') { + if (arg.Length > 0) { + yield return arg.ToString (); + arg.Length = 0; + } + } else + arg.Append (c); + } + if (arg.Length > 0) { + yield return arg.ToString (); + arg.Length = 0; + } + } + } + finally { + if (close) + reader.Close (); + } + } + } + + public class ResponseFileSource : ArgumentSource { + + public override string[] GetNames () + { + return new string[]{"@file"}; + } + + public override string Description { + get {return "Read response file for more options.";} + } + + public override bool GetArguments (string value, out IEnumerable replacement) + { + if (string.IsNullOrEmpty (value) || !value.StartsWith ("@")) { + replacement = null; + return false; + } + replacement = ArgumentSource.GetArgumentsFromFile (value.Substring (1)); + return true; + } + } + + [Serializable] + public class OptionException : Exception { + private string option; + + public OptionException () + { + } + + public OptionException (string message, string optionName) + : base (message) + { + this.option = optionName; + } + + public OptionException (string message, string optionName, Exception innerException) + : base (message, innerException) + { + this.option = optionName; + } + + protected OptionException (SerializationInfo info, StreamingContext context) + : base (info, context) + { + this.option = info.GetString ("OptionName"); + } + + public string OptionName { + get {return this.option;} + } + + [SecurityPermission (SecurityAction.LinkDemand, SerializationFormatter = true)] + public override void GetObjectData (SerializationInfo info, StreamingContext context) + { + base.GetObjectData (info, context); + info.AddValue ("OptionName", option); + } + } + + public delegate void OptionAction (TKey key, TValue value); + + public class OptionSet : KeyedCollection + { + public OptionSet () + : this (delegate (string f) {return f;}) + { + } + + public OptionSet (Converter localizer) + { + this.localizer = localizer; + this.roSources = new ReadOnlyCollection(sources); + } + + Converter localizer; + + public Converter MessageLocalizer { + get {return localizer;} + } + + List sources = new List (); + ReadOnlyCollection roSources; + + public ReadOnlyCollection ArgumentSources { + get {return roSources;} + } + + + protected override string GetKeyForItem (Option item) + { + if (item == null) + throw new ArgumentNullException ("option"); + if (item.Names != null && item.Names.Length > 0) + return item.Names [0]; + // This should never happen, as it's invalid for Option to be + // constructed w/o any names. + throw new InvalidOperationException ("Option has no names!"); + } + + [Obsolete ("Use KeyedCollection.this[string]")] + protected Option GetOptionForName (string option) + { + if (option == null) + throw new ArgumentNullException ("option"); + try { + return base [option]; + } + catch (KeyNotFoundException) { + return null; + } + } + + protected override void InsertItem (int index, Option item) + { + base.InsertItem (index, item); + AddImpl (item); + } + + protected override void RemoveItem (int index) + { + Option p = Items [index]; + base.RemoveItem (index); + // KeyedCollection.RemoveItem() handles the 0th item + for (int i = 1; i < p.Names.Length; ++i) { + Dictionary.Remove (p.Names [i]); + } + } + + protected override void SetItem (int index, Option item) + { + base.SetItem (index, item); + AddImpl (item); + } + + private void AddImpl (Option option) + { + if (option == null) + throw new ArgumentNullException ("option"); + List added = new List (option.Names.Length); + try { + // KeyedCollection.InsertItem/SetItem handle the 0th name. + for (int i = 1; i < option.Names.Length; ++i) { + Dictionary.Add (option.Names [i], option); + added.Add (option.Names [i]); + } + } + catch (Exception) { + foreach (string name in added) + Dictionary.Remove (name); + throw; + } + } + + public OptionSet Add (string header) + { + if (header == null) + throw new ArgumentNullException ("header"); + Add (new Category (header)); + return this; + } + + internal sealed class Category : Option { + + // Prototype starts with '=' because this is an invalid prototype + // (see Option.ParsePrototype(), and thus it'll prevent Category + // instances from being accidentally used as normal options. + public Category (string description) + : base ("=:Category:= " + description, description) + { + } + + protected override void OnParseComplete (OptionContext c) + { + throw new NotSupportedException ("Category.OnParseComplete should not be invoked."); + } + } + + + public new OptionSet Add (Option option) + { + base.Add (option); + return this; + } + + sealed class ActionOption : Option { + Action action; + + public ActionOption (string prototype, string description, int count, Action action) + : this (prototype, description, count, action, false) + { + } + + public ActionOption (string prototype, string description, int count, Action action, bool hidden) + : base (prototype, description, count, hidden) + { + if (action == null) + throw new ArgumentNullException ("action"); + this.action = action; + } + + protected override void OnParseComplete (OptionContext c) + { + action (c.OptionValues); + } + } + + public OptionSet Add (string prototype, Action action) + { + return Add (prototype, null, action); + } + + public OptionSet Add (string prototype, string description, Action action) + { + return Add (prototype, description, action, false); + } + + public OptionSet Add (string prototype, string description, Action action, bool hidden) + { + if (action == null) + throw new ArgumentNullException ("action"); + Option p = new ActionOption (prototype, description, 1, + delegate (OptionValueCollection v) { action (v [0]); }, hidden); + base.Add (p); + return this; + } + + public OptionSet Add (string prototype, OptionAction action) + { + return Add (prototype, null, action); + } + + public OptionSet Add (string prototype, string description, OptionAction action) + { + return Add (prototype, description, action, false); + } + + public OptionSet Add (string prototype, string description, OptionAction action, bool hidden) { + if (action == null) + throw new ArgumentNullException ("action"); + Option p = new ActionOption (prototype, description, 2, + delegate (OptionValueCollection v) {action (v [0], v [1]);}, hidden); + base.Add (p); + return this; + } + + sealed class ActionOption : Option { + Action action; + + public ActionOption (string prototype, string description, Action action) + : base (prototype, description, 1) + { + if (action == null) + throw new ArgumentNullException ("action"); + this.action = action; + } + + protected override void OnParseComplete (OptionContext c) + { + action (Parse (c.OptionValues [0], c)); + } + } + + sealed class ActionOption : Option { + OptionAction action; + + public ActionOption (string prototype, string description, OptionAction action) + : base (prototype, description, 2) + { + if (action == null) + throw new ArgumentNullException ("action"); + this.action = action; + } + + protected override void OnParseComplete (OptionContext c) + { + action ( + Parse (c.OptionValues [0], c), + Parse (c.OptionValues [1], c)); + } + } + + public OptionSet Add (string prototype, Action action) + { + return Add (prototype, null, action); + } + + public OptionSet Add (string prototype, string description, Action action) + { + return Add (new ActionOption (prototype, description, action)); + } + + public OptionSet Add (string prototype, OptionAction action) + { + return Add (prototype, null, action); + } + + public OptionSet Add (string prototype, string description, OptionAction action) + { + return Add (new ActionOption (prototype, description, action)); + } + + public OptionSet Add (ArgumentSource source) + { + if (source == null) + throw new ArgumentNullException ("source"); + sources.Add (source); + return this; + } + + protected virtual OptionContext CreateOptionContext () + { + return new OptionContext (this); + } + + public List Parse (IEnumerable arguments) + { + if (arguments == null) + throw new ArgumentNullException ("arguments"); + OptionContext c = CreateOptionContext (); + c.OptionIndex = -1; + bool process = true; + List unprocessed = new List (); + Option def = Contains ("<>") ? this ["<>"] : null; + ArgumentEnumerator ae = new ArgumentEnumerator (arguments); + foreach (string argument in ae) { + ++c.OptionIndex; + if (argument == "--") { + process = false; + continue; + } + if (!process) { + Unprocessed (unprocessed, def, c, argument); + continue; + } + if (AddSource (ae, argument)) + continue; + if (!Parse (argument, c)) + Unprocessed (unprocessed, def, c, argument); + } + if (c.Option != null) + c.Option.Invoke (c); + return unprocessed; + } + + class ArgumentEnumerator : IEnumerable { + List> sources = new List> (); + + public ArgumentEnumerator (IEnumerable arguments) + { + sources.Add (arguments.GetEnumerator ()); + } + + public void Add (IEnumerable arguments) + { + sources.Add (arguments.GetEnumerator ()); + } + + public IEnumerator GetEnumerator () + { + do { + IEnumerator c = sources [sources.Count-1]; + if (c.MoveNext ()) + yield return c.Current; + else { + c.Dispose (); + sources.RemoveAt (sources.Count-1); + } + } while (sources.Count > 0); + } + + IEnumerator IEnumerable.GetEnumerator () + { + return GetEnumerator (); + } + } + + bool AddSource (ArgumentEnumerator ae, string argument) + { + foreach (ArgumentSource source in sources) { + IEnumerable replacement; + if (!source.GetArguments (argument, out replacement)) + continue; + ae.Add (replacement); + return true; + } + return false; + } + + private static bool Unprocessed (ICollection extra, Option def, OptionContext c, string argument) + { + if (def == null) { + extra.Add (argument); + return false; + } + c.OptionValues.Add (argument); + c.Option = def; + c.Option.Invoke (c); + return false; + } + + private readonly Regex ValueOption = new Regex ( + @"^(?--|-|/)(?[^:=]+)((?[:=])(?.*))?$"); + + protected bool GetOptionParts (string argument, out string flag, out string name, out string sep, out string value) + { + if (argument == null) + throw new ArgumentNullException ("argument"); + + flag = name = sep = value = null; + Match m = ValueOption.Match (argument); + if (!m.Success) { + return false; + } + flag = m.Groups ["flag"].Value; + name = m.Groups ["name"].Value; + if (m.Groups ["sep"].Success && m.Groups ["value"].Success) { + sep = m.Groups ["sep"].Value; + value = m.Groups ["value"].Value; + } + return true; + } + + protected virtual bool Parse (string argument, OptionContext c) + { + if (c.Option != null) { + ParseValue (argument, c); + return true; + } + + string f, n, s, v; + if (!GetOptionParts (argument, out f, out n, out s, out v)) + return false; + + Option p; + if (Contains (n)) { + p = this [n]; + c.OptionName = f + n; + c.Option = p; + switch (p.OptionValueType) { + case OptionValueType.None: + c.OptionValues.Add (n); + c.Option.Invoke (c); + break; + case OptionValueType.Optional: + case OptionValueType.Required: + ParseValue (v, c); + break; + } + return true; + } + // no match; is it a bool option? + if (ParseBool (argument, n, c)) + return true; + // is it a bundled option? + if (ParseBundledValue (f, string.Concat (n + s + v), c)) + return true; + + return false; + } + + private void ParseValue (string option, OptionContext c) + { + if (option != null) + foreach (string o in c.Option.ValueSeparators != null + ? option.Split (c.Option.ValueSeparators, c.Option.MaxValueCount - c.OptionValues.Count, StringSplitOptions.None) + : new string[]{option}) { + c.OptionValues.Add (o); + } + if (c.OptionValues.Count == c.Option.MaxValueCount || + c.Option.OptionValueType == OptionValueType.Optional) + c.Option.Invoke (c); + else if (c.OptionValues.Count > c.Option.MaxValueCount) { + throw new OptionException (localizer (string.Format ( + "Error: Found {0} option values when expecting {1}.", + c.OptionValues.Count, c.Option.MaxValueCount)), + c.OptionName); + } + } + + private bool ParseBool (string option, string n, OptionContext c) + { + Option p; + string rn; + if (n.Length >= 1 && (n [n.Length-1] == '+' || n [n.Length-1] == '-') && + Contains ((rn = n.Substring (0, n.Length-1)))) { + p = this [rn]; + string v = n [n.Length-1] == '+' ? option : null; + c.OptionName = option; + c.Option = p; + c.OptionValues.Add (v); + p.Invoke (c); + return true; + } + return false; + } + + private bool ParseBundledValue (string f, string n, OptionContext c) + { + if (f != "-") + return false; + for (int i = 0; i < n.Length; ++i) { + Option p; + string opt = f + n [i].ToString (); + string rn = n [i].ToString (); + if (!Contains (rn)) { + if (i == 0) + return false; + throw new OptionException (string.Format (localizer ( + "Cannot bundle unregistered option '{0}'."), opt), opt); + } + p = this [rn]; + switch (p.OptionValueType) { + case OptionValueType.None: + Invoke (c, opt, n, p); + break; + case OptionValueType.Optional: + case OptionValueType.Required: { + string v = n.Substring (i+1); + c.Option = p; + c.OptionName = opt; + ParseValue (v.Length != 0 ? v : null, c); + return true; + } + default: + throw new InvalidOperationException ("Unknown OptionValueType: " + p.OptionValueType); + } + } + return true; + } + + private static void Invoke (OptionContext c, string name, string value, Option option) + { + c.OptionName = name; + c.Option = option; + c.OptionValues.Add (value); + option.Invoke (c); + } + + private const int OptionWidth = 29; + private const int Description_FirstWidth = 80 - OptionWidth; + private const int Description_RemWidth = 80 - OptionWidth - 2; + + public void WriteOptionDescriptions (TextWriter o) + { + foreach (Option p in this) { + int written = 0; + + if (p.Hidden) + continue; + + Category c = p as Category; + if (c != null) { + WriteDescription (o, p.Description, "", 80, 80); + continue; + } + + if (!WriteOptionPrototype (o, p, ref written)) + continue; + + if (written < OptionWidth) + o.Write (new string (' ', OptionWidth - written)); + else { + o.WriteLine (); + o.Write (new string (' ', OptionWidth)); + } + + WriteDescription (o, p.Description, new string (' ', OptionWidth+2), + Description_FirstWidth, Description_RemWidth); + } + + foreach (ArgumentSource s in sources) { + string[] names = s.GetNames (); + if (names == null || names.Length == 0) + continue; + + int written = 0; + + Write (o, ref written, " "); + Write (o, ref written, names [0]); + for (int i = 1; i < names.Length; ++i) { + Write (o, ref written, ", "); + Write (o, ref written, names [i]); + } + + if (written < OptionWidth) + o.Write (new string (' ', OptionWidth - written)); + else { + o.WriteLine (); + o.Write (new string (' ', OptionWidth)); + } + + WriteDescription (o, s.Description, new string (' ', OptionWidth+2), + Description_FirstWidth, Description_RemWidth); + } + } + + void WriteDescription (TextWriter o, string value, string prefix, int firstWidth, int remWidth) + { + bool indent = false; + foreach (string line in GetLines (localizer (GetDescription (value)), firstWidth, remWidth)) { + if (indent) + o.Write (prefix); + o.WriteLine (line); + indent = true; + } + } + + bool WriteOptionPrototype (TextWriter o, Option p, ref int written) + { + string[] names = p.Names; + + int i = GetNextOptionIndex (names, 0); + if (i == names.Length) + return false; + + if (names [i].Length == 1) { + Write (o, ref written, " -"); + Write (o, ref written, names [0]); + } + else { + Write (o, ref written, " --"); + Write (o, ref written, names [0]); + } + + for ( i = GetNextOptionIndex (names, i+1); + i < names.Length; i = GetNextOptionIndex (names, i+1)) { + Write (o, ref written, ", "); + Write (o, ref written, names [i].Length == 1 ? "-" : "--"); + Write (o, ref written, names [i]); + } + + if (p.OptionValueType == OptionValueType.Optional || + p.OptionValueType == OptionValueType.Required) { + if (p.OptionValueType == OptionValueType.Optional) { + Write (o, ref written, localizer ("[")); + } + Write (o, ref written, localizer ("=" + GetArgumentName (0, p.MaxValueCount, p.Description))); + string sep = p.ValueSeparators != null && p.ValueSeparators.Length > 0 + ? p.ValueSeparators [0] + : " "; + for (int c = 1; c < p.MaxValueCount; ++c) { + Write (o, ref written, localizer (sep + GetArgumentName (c, p.MaxValueCount, p.Description))); + } + if (p.OptionValueType == OptionValueType.Optional) { + Write (o, ref written, localizer ("]")); + } + } + return true; + } + + static int GetNextOptionIndex (string[] names, int i) + { + while (i < names.Length && names [i] == "<>") { + ++i; + } + return i; + } + + static void Write (TextWriter o, ref int n, string s) + { + n += s.Length; + o.Write (s); + } + + private static string GetArgumentName (int index, int maxIndex, string description) + { + if (description == null) + return maxIndex == 1 ? "VALUE" : "VALUE" + (index + 1); + string[] nameStart; + if (maxIndex == 1) + nameStart = new string[]{"{0:", "{"}; + else + nameStart = new string[]{"{" + index + ":"}; + for (int i = 0; i < nameStart.Length; ++i) { + int start, j = 0; + do { + start = description.IndexOf (nameStart [i], j); + } while (start >= 0 && j != 0 ? description [j++ - 1] == '{' : false); + if (start == -1) + continue; + int end = description.IndexOf ("}", start); + if (end == -1) + continue; + return description.Substring (start + nameStart [i].Length, end - start - nameStart [i].Length); + } + return maxIndex == 1 ? "VALUE" : "VALUE" + (index + 1); + } + + private static string GetDescription (string description) + { + if (description == null) + return string.Empty; + StringBuilder sb = new StringBuilder (description.Length); + int start = -1; + for (int i = 0; i < description.Length; ++i) { + switch (description [i]) { + case '{': + if (i == start) { + sb.Append ('{'); + start = -1; + } + else if (start < 0) + start = i + 1; + break; + case '}': + if (start < 0) { + if ((i+1) == description.Length || description [i+1] != '}') + throw new InvalidOperationException ("Invalid option description: " + description); + ++i; + sb.Append ("}"); + } + else { + sb.Append (description.Substring (start, i - start)); + start = -1; + } + break; + case ':': + if (start < 0) + goto default; + start = i + 1; + break; + default: + if (start < 0) + sb.Append (description [i]); + break; + } + } + return sb.ToString (); + } + + private static IEnumerable GetLines (string description, int firstWidth, int remWidth) + { + return StringCoda.WrappedLines (description, firstWidth, remWidth); + } + } +} + diff --git a/mono-test/bin/lib/mono-source-libs/getline.cs b/mono-test/bin/lib/mono-source-libs/getline.cs new file mode 100644 index 0000000..b6dcf07 --- /dev/null +++ b/mono-test/bin/lib/mono-source-libs/getline.cs @@ -0,0 +1,1086 @@ +// +// getline.cs: A command line editor +// +// Authors: +// Miguel de Icaza (miguel@novell.com) +// +// Copyright 2008 Novell, Inc. +// +// Dual-licensed under the terms of the MIT X11 license or the +// Apache License 2.0 +// +// USE -define:DEMO to build this as a standalone file and test it +// +// TODO: +// Enter an error (a = 1); Notice how the prompt is in the wrong line +// This is caused by Stderr not being tracked by System.Console. +// Completion support +// Why is Thread.Interrupt not working? Currently I resort to Abort which is too much. +// +// Limitations in System.Console: +// Console needs SIGWINCH support of some sort +// Console needs a way of updating its position after things have been written +// behind its back (P/Invoke puts for example). +// System.Console needs to get the DELETE character, and report accordingly. +// + +using System; +using System.Text; +using System.IO; +using System.Threading; +using System.Reflection; + +namespace Mono.Terminal { + + public class LineEditor { + + public class Completion { + public string [] Result; + public string Prefix; + + public Completion (string prefix, string [] result) + { + Prefix = prefix; + Result = result; + } + } + + public delegate Completion AutoCompleteHandler (string text, int pos); + + //static StreamWriter log; + + // The text being edited. + StringBuilder text; + + // The text as it is rendered (replaces (char)1 with ^A on display for example). + StringBuilder rendered_text; + + // The prompt specified, and the prompt shown to the user. + string prompt; + string shown_prompt; + + // The current cursor position, indexes into "text", for an index + // into rendered_text, use TextToRenderPos + int cursor; + + // The row where we started displaying data. + int home_row; + + // The maximum length that has been displayed on the screen + int max_rendered; + + // If we are done editing, this breaks the interactive loop + bool done = false; + + // The thread where the Editing started taking place + Thread edit_thread; + + // Our object that tracks history + History history; + + // The contents of the kill buffer (cut/paste in Emacs parlance) + string kill_buffer = ""; + + // The string being searched for + string search; + string last_search; + + // whether we are searching (-1= reverse; 0 = no; 1 = forward) + int searching; + + // The position where we found the match. + int match_at; + + // Used to implement the Kill semantics (multiple Alt-Ds accumulate) + KeyHandler last_handler; + + delegate void KeyHandler (); + + struct Handler { + public ConsoleKeyInfo CKI; + public KeyHandler KeyHandler; + + public Handler (ConsoleKey key, KeyHandler h) + { + CKI = new ConsoleKeyInfo ((char) 0, key, false, false, false); + KeyHandler = h; + } + + public Handler (char c, KeyHandler h) + { + KeyHandler = h; + // Use the "Zoom" as a flag that we only have a character. + CKI = new ConsoleKeyInfo (c, ConsoleKey.Zoom, false, false, false); + } + + public Handler (ConsoleKeyInfo cki, KeyHandler h) + { + CKI = cki; + KeyHandler = h; + } + + public static Handler Control (char c, KeyHandler h) + { + return new Handler ((char) (c - 'A' + 1), h); + } + + public static Handler Alt (char c, ConsoleKey k, KeyHandler h) + { + ConsoleKeyInfo cki = new ConsoleKeyInfo ((char) c, k, false, true, false); + return new Handler (cki, h); + } + } + + /// + /// Invoked when the user requests auto-completion using the tab character + /// + /// + /// The result is null for no values found, an array with a single + /// string, in that case the string should be the text to be inserted + /// for example if the word at pos is "T", the result for a completion + /// of "ToString" should be "oString", not "ToString". + /// + /// When there are multiple results, the result should be the full + /// text + /// + public AutoCompleteHandler AutoCompleteEvent; + + static Handler [] handlers; + + public LineEditor (string name) : this (name, 10) { } + + public LineEditor (string name, int histsize) + { + handlers = new Handler [] { + new Handler (ConsoleKey.Home, CmdHome), + new Handler (ConsoleKey.End, CmdEnd), + new Handler (ConsoleKey.LeftArrow, CmdLeft), + new Handler (ConsoleKey.RightArrow, CmdRight), + new Handler (ConsoleKey.UpArrow, CmdHistoryPrev), + new Handler (ConsoleKey.DownArrow, CmdHistoryNext), + new Handler (ConsoleKey.Enter, CmdDone), + new Handler (ConsoleKey.Backspace, CmdBackspace), + new Handler (ConsoleKey.Delete, CmdDeleteChar), + new Handler (ConsoleKey.Tab, CmdTabOrComplete), + + // Emacs keys + Handler.Control ('A', CmdHome), + Handler.Control ('E', CmdEnd), + Handler.Control ('B', CmdLeft), + Handler.Control ('F', CmdRight), + Handler.Control ('P', CmdHistoryPrev), + Handler.Control ('N', CmdHistoryNext), + Handler.Control ('K', CmdKillToEOF), + Handler.Control ('Y', CmdYank), + Handler.Control ('D', CmdDeleteChar), + Handler.Control ('L', CmdRefresh), + Handler.Control ('R', CmdReverseSearch), + Handler.Control ('G', delegate {} ), + Handler.Alt ('B', ConsoleKey.B, CmdBackwardWord), + Handler.Alt ('F', ConsoleKey.F, CmdForwardWord), + + Handler.Alt ('D', ConsoleKey.D, CmdDeleteWord), + Handler.Alt ((char) 8, ConsoleKey.Backspace, CmdDeleteBackword), + + // DEBUG + //Handler.Control ('T', CmdDebug), + + // quote + Handler.Control ('Q', delegate { HandleChar (Console.ReadKey (true).KeyChar); }) + }; + + rendered_text = new StringBuilder (); + text = new StringBuilder (); + + history = new History (name, histsize); + + //if (File.Exists ("log"))File.Delete ("log"); + //log = File.CreateText ("log"); + } + + void CmdDebug () + { + history.Dump (); + Console.WriteLine (); + Render (); + } + + void Render () + { + Console.Write (shown_prompt); + Console.Write (rendered_text); + + int max = System.Math.Max (rendered_text.Length + shown_prompt.Length, max_rendered); + + for (int i = rendered_text.Length + shown_prompt.Length; i < max_rendered; i++) + Console.Write (' '); + max_rendered = shown_prompt.Length + rendered_text.Length; + + // Write one more to ensure that we always wrap around properly if we are at the + // end of a line. + Console.Write (' '); + + UpdateHomeRow (max); + } + + void UpdateHomeRow (int screenpos) + { + int lines = 1 + (screenpos / Console.WindowWidth); + + home_row = Console.CursorTop - (lines - 1); + if (home_row < 0) + home_row = 0; + } + + + void RenderFrom (int pos) + { + int rpos = TextToRenderPos (pos); + int i; + + for (i = rpos; i < rendered_text.Length; i++) + Console.Write (rendered_text [i]); + + if ((shown_prompt.Length + rendered_text.Length) > max_rendered) + max_rendered = shown_prompt.Length + rendered_text.Length; + else { + int max_extra = max_rendered - shown_prompt.Length; + for (; i < max_extra; i++) + Console.Write (' '); + } + } + + void ComputeRendered () + { + rendered_text.Length = 0; + + for (int i = 0; i < text.Length; i++){ + int c = (int) text [i]; + if (c < 26){ + if (c == '\t') + rendered_text.Append (" "); + else { + rendered_text.Append ('^'); + rendered_text.Append ((char) (c + (int) 'A' - 1)); + } + } else + rendered_text.Append ((char)c); + } + } + + int TextToRenderPos (int pos) + { + int p = 0; + + for (int i = 0; i < pos; i++){ + int c; + + c = (int) text [i]; + + if (c < 26){ + if (c == 9) + p += 4; + else + p += 2; + } else + p++; + } + + return p; + } + + int TextToScreenPos (int pos) + { + return shown_prompt.Length + TextToRenderPos (pos); + } + + string Prompt { + get { return prompt; } + set { prompt = value; } + } + + int LineCount { + get { + return (shown_prompt.Length + rendered_text.Length)/Console.WindowWidth; + } + } + + void ForceCursor (int newpos) + { + cursor = newpos; + + int actual_pos = shown_prompt.Length + TextToRenderPos (cursor); + int row = home_row + (actual_pos/Console.WindowWidth); + int col = actual_pos % Console.WindowWidth; + + if (row >= Console.BufferHeight) + row = Console.BufferHeight-1; + Console.SetCursorPosition (col, row); + + //log.WriteLine ("Going to cursor={0} row={1} col={2} actual={3} prompt={4} ttr={5} old={6}", newpos, row, col, actual_pos, prompt.Length, TextToRenderPos (cursor), cursor); + //log.Flush (); + } + + void UpdateCursor (int newpos) + { + if (cursor == newpos) + return; + + ForceCursor (newpos); + } + + void InsertChar (char c) + { + int prev_lines = LineCount; + text = text.Insert (cursor, c); + ComputeRendered (); + if (prev_lines != LineCount){ + + Console.SetCursorPosition (0, home_row); + Render (); + ForceCursor (++cursor); + } else { + RenderFrom (cursor); + ForceCursor (++cursor); + UpdateHomeRow (TextToScreenPos (cursor)); + } + } + + // + // Commands + // + void CmdDone () + { + done = true; + } + + void CmdTabOrComplete () + { + bool complete = false; + + if (AutoCompleteEvent != null){ + if (TabAtStartCompletes) + complete = true; + else { + for (int i = 0; i < cursor; i++){ + if (!Char.IsWhiteSpace (text [i])){ + complete = true; + break; + } + } + } + + if (complete){ + Completion completion = AutoCompleteEvent (text.ToString (), cursor); + string [] completions = completion.Result; + if (completions == null) + return; + + int ncompletions = completions.Length; + if (ncompletions == 0) + return; + + if (completions.Length == 1){ + InsertTextAtCursor (completions [0]); + } else { + int last = -1; + + for (int p = 0; p < completions [0].Length; p++){ + char c = completions [0][p]; + + + for (int i = 1; i < ncompletions; i++){ + if (completions [i].Length < p) + goto mismatch; + + if (completions [i][p] != c){ + goto mismatch; + } + } + last = p; + } + mismatch: + if (last != -1){ + InsertTextAtCursor (completions [0].Substring (0, last+1)); + } + Console.WriteLine (); + foreach (string s in completions){ + Console.Write (completion.Prefix); + Console.Write (s); + Console.Write (' '); + } + Console.WriteLine (); + Render (); + ForceCursor (cursor); + } + } else + HandleChar ('\t'); + } else + HandleChar ('t'); + } + + void CmdHome () + { + UpdateCursor (0); + } + + void CmdEnd () + { + UpdateCursor (text.Length); + } + + void CmdLeft () + { + if (cursor == 0) + return; + + UpdateCursor (cursor-1); + } + + void CmdBackwardWord () + { + int p = WordBackward (cursor); + if (p == -1) + return; + UpdateCursor (p); + } + + void CmdForwardWord () + { + int p = WordForward (cursor); + if (p == -1) + return; + UpdateCursor (p); + } + + void CmdRight () + { + if (cursor == text.Length) + return; + + UpdateCursor (cursor+1); + } + + void RenderAfter (int p) + { + ForceCursor (p); + RenderFrom (p); + ForceCursor (cursor); + } + + void CmdBackspace () + { + if (cursor == 0) + return; + + text.Remove (--cursor, 1); + ComputeRendered (); + RenderAfter (cursor); + } + + void CmdDeleteChar () + { + // If there is no input, this behaves like EOF + if (text.Length == 0){ + done = true; + text = null; + Console.WriteLine (); + return; + } + + if (cursor == text.Length) + return; + text.Remove (cursor, 1); + ComputeRendered (); + RenderAfter (cursor); + } + + int WordForward (int p) + { + if (p >= text.Length) + return -1; + + int i = p; + if (Char.IsPunctuation (text [p]) || Char.IsSymbol (text [p]) || Char.IsWhiteSpace (text[p])){ + for (; i < text.Length; i++){ + if (Char.IsLetterOrDigit (text [i])) + break; + } + for (; i < text.Length; i++){ + if (!Char.IsLetterOrDigit (text [i])) + break; + } + } else { + for (; i < text.Length; i++){ + if (!Char.IsLetterOrDigit (text [i])) + break; + } + } + if (i != p) + return i; + return -1; + } + + int WordBackward (int p) + { + if (p == 0) + return -1; + + int i = p-1; + if (i == 0) + return 0; + + if (Char.IsPunctuation (text [i]) || Char.IsSymbol (text [i]) || Char.IsWhiteSpace (text[i])){ + for (; i >= 0; i--){ + if (Char.IsLetterOrDigit (text [i])) + break; + } + for (; i >= 0; i--){ + if (!Char.IsLetterOrDigit (text[i])) + break; + } + } else { + for (; i >= 0; i--){ + if (!Char.IsLetterOrDigit (text [i])) + break; + } + } + i++; + + if (i != p) + return i; + + return -1; + } + + void CmdDeleteWord () + { + int pos = WordForward (cursor); + + if (pos == -1) + return; + + string k = text.ToString (cursor, pos-cursor); + + if (last_handler == CmdDeleteWord) + kill_buffer = kill_buffer + k; + else + kill_buffer = k; + + text.Remove (cursor, pos-cursor); + ComputeRendered (); + RenderAfter (cursor); + } + + void CmdDeleteBackword () + { + int pos = WordBackward (cursor); + if (pos == -1) + return; + + string k = text.ToString (pos, cursor-pos); + + if (last_handler == CmdDeleteBackword) + kill_buffer = k + kill_buffer; + else + kill_buffer = k; + + text.Remove (pos, cursor-pos); + ComputeRendered (); + RenderAfter (pos); + } + + // + // Adds the current line to the history if needed + // + void HistoryUpdateLine () + { + history.Update (text.ToString ()); + } + + void CmdHistoryPrev () + { + if (!history.PreviousAvailable ()) + return; + + HistoryUpdateLine (); + + SetText (history.Previous ()); + } + + void CmdHistoryNext () + { + if (!history.NextAvailable()) + return; + + history.Update (text.ToString ()); + SetText (history.Next ()); + + } + + void CmdKillToEOF () + { + kill_buffer = text.ToString (cursor, text.Length-cursor); + text.Length = cursor; + ComputeRendered (); + RenderAfter (cursor); + } + + void CmdYank () + { + InsertTextAtCursor (kill_buffer); + } + + void InsertTextAtCursor (string str) + { + int prev_lines = LineCount; + text.Insert (cursor, str); + ComputeRendered (); + if (prev_lines != LineCount){ + Console.SetCursorPosition (0, home_row); + Render (); + cursor += str.Length; + ForceCursor (cursor); + } else { + RenderFrom (cursor); + cursor += str.Length; + ForceCursor (cursor); + UpdateHomeRow (TextToScreenPos (cursor)); + } + } + + void SetSearchPrompt (string s) + { + SetPrompt ("(reverse-i-search)`" + s + "': "); + } + + void ReverseSearch () + { + int p; + + if (cursor == text.Length){ + // The cursor is at the end of the string + + p = text.ToString ().LastIndexOf (search); + if (p != -1){ + match_at = p; + cursor = p; + ForceCursor (cursor); + return; + } + } else { + // The cursor is somewhere in the middle of the string + int start = (cursor == match_at) ? cursor - 1 : cursor; + if (start != -1){ + p = text.ToString ().LastIndexOf (search, start); + if (p != -1){ + match_at = p; + cursor = p; + ForceCursor (cursor); + return; + } + } + } + + // Need to search backwards in history + HistoryUpdateLine (); + string s = history.SearchBackward (search); + if (s != null){ + match_at = -1; + SetText (s); + ReverseSearch (); + } + } + + void CmdReverseSearch () + { + if (searching == 0){ + match_at = -1; + last_search = search; + searching = -1; + search = ""; + SetSearchPrompt (""); + } else { + if (search == ""){ + if (last_search != "" && last_search != null){ + search = last_search; + SetSearchPrompt (search); + + ReverseSearch (); + } + return; + } + ReverseSearch (); + } + } + + void SearchAppend (char c) + { + search = search + c; + SetSearchPrompt (search); + + // + // If the new typed data still matches the current text, stay here + // + if (cursor < text.Length){ + string r = text.ToString (cursor, text.Length - cursor); + if (r.StartsWith (search)) + return; + } + + ReverseSearch (); + } + + void CmdRefresh () + { + Console.Clear (); + max_rendered = 0; + Render (); + ForceCursor (cursor); + } + + void InterruptEdit (object sender, ConsoleCancelEventArgs a) + { + // Do not abort our program: + a.Cancel = true; + + // Interrupt the editor + edit_thread.Abort(); + } + + void HandleChar (char c) + { + if (searching != 0) + SearchAppend (c); + else + InsertChar (c); + } + + void EditLoop () + { + ConsoleKeyInfo cki; + + while (!done){ + ConsoleModifiers mod; + + cki = Console.ReadKey (true); + if (cki.Key == ConsoleKey.Escape){ + cki = Console.ReadKey (true); + + mod = ConsoleModifiers.Alt; + } else + mod = cki.Modifiers; + + bool handled = false; + + foreach (Handler handler in handlers){ + ConsoleKeyInfo t = handler.CKI; + + if (t.Key == cki.Key && t.Modifiers == mod){ + handled = true; + handler.KeyHandler (); + last_handler = handler.KeyHandler; + break; + } else if (t.KeyChar == cki.KeyChar && t.Key == ConsoleKey.Zoom){ + handled = true; + handler.KeyHandler (); + last_handler = handler.KeyHandler; + break; + } + } + if (handled){ + if (searching != 0){ + if (last_handler != CmdReverseSearch){ + searching = 0; + SetPrompt (prompt); + } + } + continue; + } + + if (cki.KeyChar != (char) 0) + HandleChar (cki.KeyChar); + } + } + + void InitText (string initial) + { + text = new StringBuilder (initial); + ComputeRendered (); + cursor = text.Length; + Render (); + ForceCursor (cursor); + } + + void SetText (string newtext) + { + Console.SetCursorPosition (0, home_row); + InitText (newtext); + } + + void SetPrompt (string newprompt) + { + shown_prompt = newprompt; + Console.SetCursorPosition (0, home_row); + Render (); + ForceCursor (cursor); + } + + public string Edit (string prompt, string initial) + { + edit_thread = Thread.CurrentThread; + searching = 0; + Console.CancelKeyPress += InterruptEdit; + + done = false; + history.CursorToEnd (); + max_rendered = 0; + + Prompt = prompt; + shown_prompt = prompt; + InitText (initial); + history.Append (initial); + + do { + try { + EditLoop (); + } catch (ThreadAbortException){ + searching = 0; + Thread.ResetAbort (); + Console.WriteLine (); + SetPrompt (prompt); + SetText (""); + } + } while (!done); + Console.WriteLine (); + + Console.CancelKeyPress -= InterruptEdit; + + if (text == null){ + history.Close (); + return null; + } + + string result = text.ToString (); + if (result != "") + history.Accept (result); + else + history.RemoveLast (); + + return result; + } + + public void SaveHistory () + { + if (history != null) { + history.Close (); + } + } + + public bool TabAtStartCompletes { get; set; } + + // + // Emulates the bash-like behavior, where edits done to the + // history are recorded + // + class History { + string [] history; + int head, tail; + int cursor, count; + string histfile; + + public History (string app, int size) + { + if (size < 1) + throw new ArgumentException ("size"); + + if (app != null){ + string dir = Environment.GetFolderPath (Environment.SpecialFolder.ApplicationData); + //Console.WriteLine (dir); + if (!Directory.Exists (dir)){ + try { + Directory.CreateDirectory (dir); + } catch { + app = null; + } + } + if (app != null) + histfile = Path.Combine (dir, app) + ".history"; + } + + history = new string [size]; + head = tail = cursor = 0; + + if (File.Exists (histfile)){ + using (StreamReader sr = File.OpenText (histfile)){ + string line; + + while ((line = sr.ReadLine ()) != null){ + if (line != "") + Append (line); + } + } + } + } + + public void Close () + { + if (histfile == null) + return; + + try { + using (StreamWriter sw = File.CreateText (histfile)){ + int start = (count == history.Length) ? head : tail; + for (int i = start; i < start+count; i++){ + int p = i % history.Length; + sw.WriteLine (history [p]); + } + } + } catch { + // ignore + } + } + + // + // Appends a value to the history + // + public void Append (string s) + { + //Console.WriteLine ("APPENDING {0} head={1} tail={2}", s, head, tail); + history [head] = s; + head = (head+1) % history.Length; + if (head == tail) + tail = (tail+1 % history.Length); + if (count != history.Length) + count++; + //Console.WriteLine ("DONE: head={1} tail={2}", s, head, tail); + } + + // + // Updates the current cursor location with the string, + // to support editing of history items. For the current + // line to participate, an Append must be done before. + // + public void Update (string s) + { + history [cursor] = s; + } + + public void RemoveLast () + { + head = head-1; + if (head < 0) + head = history.Length-1; + } + + public void Accept (string s) + { + int t = head-1; + if (t < 0) + t = history.Length-1; + + history [t] = s; + } + + public bool PreviousAvailable () + { + //Console.WriteLine ("h={0} t={1} cursor={2}", head, tail, cursor); + if (count == 0) + return false; + int next = cursor-1; + if (next < 0) + next = count-1; + + if (next == head) + return false; + + return true; + } + + public bool NextAvailable () + { + if (count == 0) + return false; + int next = (cursor + 1) % history.Length; + if (next == head) + return false; + return true; + } + + + // + // Returns: a string with the previous line contents, or + // nul if there is no data in the history to move to. + // + public string Previous () + { + if (!PreviousAvailable ()) + return null; + + cursor--; + if (cursor < 0) + cursor = history.Length - 1; + + return history [cursor]; + } + + public string Next () + { + if (!NextAvailable ()) + return null; + + cursor = (cursor + 1) % history.Length; + return history [cursor]; + } + + public void CursorToEnd () + { + if (head == tail) + return; + + cursor = head; + } + + public void Dump () + { + Console.WriteLine ("Head={0} Tail={1} Cursor={2} count={3}", head, tail, cursor, count); + for (int i = 0; i < history.Length;i++){ + Console.WriteLine (" {0} {1}: {2}", i == cursor ? "==>" : " ", i, history[i]); + } + //log.Flush (); + } + + public string SearchBackward (string term) + { + for (int i = 0; i < count; i++){ + int slot = cursor-i-1; + if (slot < 0) + slot = history.Length+slot; + if (slot >= history.Length) + slot = 0; + if (history [slot] != null && history [slot].IndexOf (term) != -1){ + cursor = slot; + return history [slot]; + } + } + + return null; + } + + } + } + +#if DEMO + class Demo { + static void Main () + { + LineEditor le = new LineEditor ("foo"); + string s; + + while ((s = le.Edit ("shell> ", "")) != null){ + Console.WriteLine ("----> [{0}]", s); + } + } + } +#endif +} diff --git a/mono-test/bin/lib/mono/2.0/Accessibility.dll b/mono-test/bin/lib/mono/2.0/Accessibility.dll new file mode 100644 index 0000000..5e40d08 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Accessibility.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Commons.Xml.Relaxng.dll b/mono-test/bin/lib/mono/2.0/Commons.Xml.Relaxng.dll new file mode 100644 index 0000000..df2290e Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Commons.Xml.Relaxng.dll differ diff --git a/mono-test/bin/lib/mono/2.0/CustomMarshalers.dll b/mono-test/bin/lib/mono/2.0/CustomMarshalers.dll new file mode 100644 index 0000000..c0cc176 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/CustomMarshalers.dll differ diff --git a/mono-test/bin/lib/mono/2.0/I18N.CJK.dll b/mono-test/bin/lib/mono/2.0/I18N.CJK.dll new file mode 100644 index 0000000..48a600a Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/I18N.CJK.dll differ diff --git a/mono-test/bin/lib/mono/2.0/I18N.MidEast.dll b/mono-test/bin/lib/mono/2.0/I18N.MidEast.dll new file mode 100644 index 0000000..3cfacd8 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/I18N.MidEast.dll differ diff --git a/mono-test/bin/lib/mono/2.0/I18N.Other.dll b/mono-test/bin/lib/mono/2.0/I18N.Other.dll new file mode 100644 index 0000000..6e30831 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/I18N.Other.dll differ diff --git a/mono-test/bin/lib/mono/2.0/I18N.Rare.dll b/mono-test/bin/lib/mono/2.0/I18N.Rare.dll new file mode 100644 index 0000000..68e01ea Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/I18N.Rare.dll differ diff --git a/mono-test/bin/lib/mono/2.0/I18N.West.dll b/mono-test/bin/lib/mono/2.0/I18N.West.dll new file mode 100644 index 0000000..bf7a5d6 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/I18N.West.dll differ diff --git a/mono-test/bin/lib/mono/2.0/I18N.dll b/mono-test/bin/lib/mono/2.0/I18N.dll new file mode 100644 index 0000000..21afd5d Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/I18N.dll differ diff --git a/mono-test/bin/lib/mono/2.0/IBM.Data.DB2.dll b/mono-test/bin/lib/mono/2.0/IBM.Data.DB2.dll new file mode 100644 index 0000000..56e852c Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/IBM.Data.DB2.dll differ diff --git a/mono-test/bin/lib/mono/2.0/ICSharpCode.SharpZipLib.dll b/mono-test/bin/lib/mono/2.0/ICSharpCode.SharpZipLib.dll new file mode 100644 index 0000000..77f7990 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/ICSharpCode.SharpZipLib.dll differ diff --git a/mono-test/bin/lib/mono/2.0/MSBuild/Microsoft.Build.CommonTypes.xsd b/mono-test/bin/lib/mono/2.0/MSBuild/Microsoft.Build.CommonTypes.xsd new file mode 100644 index 0000000..390189b --- /dev/null +++ b/mono-test/bin/lib/mono/2.0/MSBuild/Microsoft.Build.CommonTypes.xsd @@ -0,0 +1,1581 @@ + + + + + + + + + + + Reference to an assembly + + + + + + + + + Relative or absolute path to the assembly (optional) + + + + + Friendly display name (optional) + + + + + Fusion name of the assembly (optional) + + + + + Whether only the version in the fusion name should be referenced (optional, boolean) + + + + + Aliases for the reference (optional) + + + + + Whether the reference should be copied to the output folder (optional, boolean) + + + + + + + + Assembly name or filename + + + + + + + + + Reference to a COM component + + + + + + + + + Friendly display name (optional) + + + + + GUID in the form {00000000-0000-0000-0000-000000000000} + + + + + Major part of the version number + + + + + Minor part of the version number + + + + + Locale ID + + + + + Wrapper tool, such as tlbimp + + + + + Is it isolated (boolean) + + + + + + + + COM component name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Path to native reference + + + + + + + + + Reference to another project + + + + + + + + + Friendly display name (optional) + + + + + Project GUID, in the form {00000000-0000-0000-0000-000000000000} + + + + + + + + + Path to project file + + + + + + + + + Source files for compiler + + + + + + + + + + + Whether file was generated from another file (boolean) + + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + + Display in user interface (optional, boolean) + + + + + + + + Semi-colon separated list of source files (wildcards are allowed) + + + + + + + + + Resources to be embedded in the generated assembly + + + + + + + + + + Name of any file generator that is run on this item + + + + + File that was created by any file generator that was run on this item + + + + + Namespace into which any file generator that is run on this item should create code + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + Display in user interface (optional, boolean) + + + + + + + + + Semi-colon separated list of resource files (wildcards are allowed) + + + + + + + + + Files that are not compiled, but may be embedded or published + + + + + + + + + + Name of any file generator that is run on this item + + + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + + Default, Included, Excluded, DataFile, or Prerequisite + + + + + + Display in user interface (optional, boolean) + + + + + + Copy file to output directory (optional, boolean, default false) + + + + + + + + Semi-colon separated list of content files (wildcards are allowed) + + + + + + + + + Files that should have no role in the build process + + + + + + + + + + + Name of any file generator that is run on this item + + + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + Display in user interface (optional, boolean) + + + + + + + + + + + Folder on disk + + + + + Assemblies whose namespaces should be imported by the Visual Basic compiler + + + + + + Name of Web References folder to display in user interface + + + + + Represents a reference to a web service + + + + + + + + + + + + + + + + + + + URL to web service + + + + + + + + + + + + + + + Display in user interface (optional, boolean) + + + + + + + + + + + + + + + + + + + Display in user interface (optional, boolean) + + + + + + (boolean) + + + + + Default, Included, Excluded, DataFile, or Prerequisite + + + + + + + + + + + + + + + integer + + + + + Matches the expression "\d\.\d\.\d\.(\d|\*)" + + + + + Name of folder for Application Designer + + + + + + + Name of output assembly + + + + + + + + + boolean + + + + + + HomeSite, Relative, or Absolute + + + + + + boolean + + + + + + + + + boolean + + + + + + Whether to emit symbols (boolean) + + + + + none, pdbonly, or full + + + + + + + + + Whether DEBUG is defined (boolean) + + + + + Whether TRACE is defined (boolean) + + + + + + + boolean + + + + + + + + + + + + + + + + + + + + + + + + Web, Unc, or Disk + + + + + + + + + + + boolean + + + + + Matches the expression "\d\.\d\.\d\.\d" + + + + + + + + Whether standard libraries (such as mscorlib) should be referenced automatically (boolean) + + + + + Comma separated list of disabled warnings + + + + + boolean + + + + + Should compiler optimize output (boolean) + + + + + Option Compare setting (Text or Binary) + + + + + Should Option Explicit be set (On or Off) + + + + + Should Option Strict be set (On or Off) + + + + + + Path to output folder, with trailing slash + + + + + Type of output to generate (WinExe, Exe, or Library) + + + + + + + + + Command line to be run at the end of build + + + + + Command line to be run at the start of build + + + + + + + + + + + + + Semi-colon separated list of folders to search during reference resolution + + + + + + + + + + + + + + + + + + + + + + + + Type that contains the main entry point + + + + + + + + + boolean + + + + + + boolean + + + + + + Hours, Days, or Weeks + + + + + Foreground or Background + + + + + boolean + + + + + boolean + + + + + + + + + integer between 0 and 4 inclusive + + + + + Comma separated list of warning numbers to treat as errors + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/2.0/MSBuild/Microsoft.Build.Core.xsd b/mono-test/bin/lib/mono/2.0/MSBuild/Microsoft.Build.Core.xsd new file mode 100644 index 0000000..9ab9bda --- /dev/null +++ b/mono-test/bin/lib/mono/2.0/MSBuild/Microsoft.Build.Core.xsd @@ -0,0 +1,390 @@ + + + + + + + + + + + + + + Optional semi-colon separated list of one or more targets that will be built if no targets are otherwise specified + + + + + + + + + + + + + Logs an Error event + + + + + Logs a Warning event + + + + + + + + + + + + + + + + Logs an Error event + + + + + Logs a Warning event + + + + + + + + + + + + + + + + + + + + Groups tasks into a section of the build process + + + + + + + + + + + Name of the target + + + + + Optional semi-colon separated list of targets that should be run before this target + + + + + Optional semi-colon separated list of files that form inputs into this target. Their timestamps will be compared with the timestamps of files in Outputs to determine whether the Target is up to date + + + + + Optional semi-colon separated list of files that form outputs into this target. Their timestamps will be compared with the timestamps of files in Inputs to determine whether the Target is up to date + + + + + Optional expression evaluated to determine whether the Target and the targets it depends on should be run + + + + + + + Groups property definitions + + + + + + + Optional expression evaluated to determine whether the PropertyGroup should be used + + + + + + + Groups item list definitions + + + + + + + Optional expression evaluated to determine whether the ItemGroup should be used + + + + + + + Groups When and Otherwise elements + + + + + + + + + + Groups PropertyGroup and/or ItemGroup elements + + + + + + + + + + + Optional expression evaluated to determine whether the child PropertyGroups and/or ItemGroups should be used + + + + + + + Groups PropertyGroup and/or ItemGroup elements that are used if no Conditions on sibling When elements evaluate to true + + + + + + + + + + + + + Specifies targets to execute in the event of a recoverable error + + + + Optional expression evaluated to determine whether the targets should be executed + + + + + Semi-colon separated list of targets to execute + + + + + + + Logs an informational Message event, with an optional Importance + + + + Optional expression evaluated to determine whether the Message should be logged + + + + + Optional priority level. Allowed values are Low, Normal (default), and High + + + + + Text to log + + + + + + + + Optional expression evaluated to determine whether the text should be logged + + + + + Text to log + + + + + + + Declares where to load a task that will be used in the project + + + + Optional expression evaluated to determine whether the declaration should be evaluated + + + + + Optional name of assembly containing the task. Either AssemblyName or AssemblyFile must be used + + + + + Optional path to assembly containing the task. Either AssemblyName or AssemblyFile must be used + + + + + Name of task class in the assembly + + + + + + + Declares that the contents of another project file should be inserted at this location + + + + Optional expression evaluated to determine whether the import should occur + + + + + Project file to import + + + + + + + Optional section used by MSBuild hosts, that may contain arbitrary XML content that is ignored by MSBuild itself + + + + + + + + + + + + + Optional expression evaluated to determine whether the items should be evaluated + + + + + Semi-colon separated list of files (wildcards are allowed) or other item names to include in this item list + + + + + Semi-colon separated list of files (wildcards are allowed) or other item names to exclude from the Include list + + + + + + + + + + + + + + + + + + + + + + + + + Optional expression evaluated to determine whether the property should be evaluated + + + + + + + + + + + + + + Optional expression evaluated to determine whether the property should be evaluated + + + + + + + + + + + Optional element specifying a specific task output to be gathered + + + + + Task parameter to gather. Matches the name of a .NET Property on the task class that has an [Output] attribute + + + + + Optional name of an item list to put the gathered outputs into. Either ItemName or PropertyName must be specified + + + + + Optional name of a property to put the gathered output into. Either PropertyName or ItemName must be specified + + + + + Optional expression evaluated to determine whether the output should be gathered + + + + + + + + Optional expression evaluated to determine whether the task should be executed + + + + + Optional boolean indicating whether a recoverable task error should be ignored. Default false + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/2.0/Microsoft.Build.Engine.dll b/mono-test/bin/lib/mono/2.0/Microsoft.Build.Engine.dll new file mode 100644 index 0000000..daa6561 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Microsoft.Build.Engine.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Microsoft.Build.Framework.dll b/mono-test/bin/lib/mono/2.0/Microsoft.Build.Framework.dll new file mode 100644 index 0000000..20a0880 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Microsoft.Build.Framework.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Microsoft.Build.Tasks.dll b/mono-test/bin/lib/mono/2.0/Microsoft.Build.Tasks.dll new file mode 100644 index 0000000..ea0d6a2 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Microsoft.Build.Tasks.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Microsoft.Build.Utilities.dll b/mono-test/bin/lib/mono/2.0/Microsoft.Build.Utilities.dll new file mode 100644 index 0000000..ab24e6c Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Microsoft.Build.Utilities.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Microsoft.Build.xsd b/mono-test/bin/lib/mono/2.0/Microsoft.Build.xsd new file mode 100644 index 0000000..1cd971c --- /dev/null +++ b/mono-test/bin/lib/mono/2.0/Microsoft.Build.xsd @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/2.0/Microsoft.CSharp.targets b/mono-test/bin/lib/mono/2.0/Microsoft.CSharp.targets new file mode 100644 index 0000000..3c37825 --- /dev/null +++ b/mono-test/bin/lib/mono/2.0/Microsoft.CSharp.targets @@ -0,0 +1,118 @@ + + + .cs + C# + + + + false + + + + + + + + $(MSBuildAllProjects);$(MSBuildToolsPath)\Microsoft.CSharp.targets + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gmcs + gmcs.bat + + mcs + mcs.bat + + dmcs + dmcs.bat + + + + +// <autogenerated /> +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute("$(TargetFrameworkMoniker)", FrameworkDisplayName = "$(TargetFrameworkMonikerDisplayName)")] + + + + diff --git a/mono-test/bin/lib/mono/2.0/Microsoft.Common.targets b/mono-test/bin/lib/mono/2.0/Microsoft.Common.targets new file mode 100644 index 0000000..2463225 --- /dev/null +++ b/mono-test/bin/lib/mono/2.0/Microsoft.Common.targets @@ -0,0 +1,768 @@ + + + + + + .exe + .exe + .dll + .netmodule + + + + $(MSBuildProjectDirectory)\ + + + + $(RootNamespace) + $(OutputPath)\ + bin\Debug\ + 2 + v2.0 + + + + $(OutputPath) + $(OutDir)\ + + <_OriginalConfiguration>$(Configuration) + Debug + $(Configuration) + + <_OriginalPlatform>$(Platform) + AnyCPU + $(Platform) + + + + true + + + + obj\ + $(BaseIntermediateOutputPath)\ + $(MSBuildProjectFile).FilesWrittenAbsolute.txt + + + + $(BaseIntermediateOutputPath)$(Configuration)\ + $(BaseIntermediateOutputPath)$(PlatformName)\$(Configuration)\ + + + + $(IntermediateOutputPath)\ + + + + + + + <_OutDirItem Include="$(OutDir)"/> + + + + $(AssemblyName) + $(TargetName)$(TargetExt) + @(_OutDirItem->'%(FullPath)') + @(_OutDirItem->'%(FullPath)\$(TargetFileName)') + $(MSBuildAllProjects);$(MSBuildProjectFullPath);$(MSBuildToolsPath)\Microsoft.Common.targets + + $(AssemblyOriginatorKeyFile) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .exe; + .dll + + + + .mdb + + + + {CandidateAssemblyFiles}; + $(ReferencePath); + @(AdditionalReferencePath); + {HintPathFromItem}; + {TargetFrameworkDirectory}; + {PkgConfig}; + {GAC}; + {RawFileName}; + $(OutDir) + + + + BeforeResolveReferences; + ResolveProjectReferences; + ResolveAssemblyReferences; + AfterResolveReferences + + + + GetFrameworkPaths; + PrepareForBuild + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BeforeBuild; + CoreBuild; + AfterBuild + + + + + + + + + + + PrepareForBuild; + GetFrameworkPaths; + PreBuildEvent; + ResolveReferences; + CopyFilesMarkedCopyLocal; + PrepareResources; + Compile; + PrepareForRun; + DeployOutputFiles; + _RecordCleanFile; + PostBuildEvent + + + + + + + + + + + + + ResolveReferences; + BeforeCompile; + _TimestampBeforeCompile; + CoreCompile; + _TimestampAfterCompile; + AfterCompile + + + + + + + + + + + DeployOutputFiles + + + + + + + AssignTargetPaths; + SplitResourcesByCulture; + CreateManifestResourceNames; + CopyNonResxEmbeddedResources; + GenerateResources; + GenerateSatelliteAssemblies; + CompileLicxFiles + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BeforeRebuild; + Clean; + $(MSBuildProjectDefaultTargets); + AfterRebuild; + + + + BeforeRebuild; + Clean; + Build; + AfterRebuild; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BeforeClean; + CleanReferencedProjects; + CoreClean; + AfterClean + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/2.0/Microsoft.Common.tasks b/mono-test/bin/lib/mono/2.0/Microsoft.Common.tasks new file mode 100644 index 0000000..d1677c9 --- /dev/null +++ b/mono-test/bin/lib/mono/2.0/Microsoft.Common.tasks @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/2.0/Microsoft.VisualBasic.dll b/mono-test/bin/lib/mono/2.0/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..fdbfe37 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Microsoft.VisualBasic.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Microsoft.VisualBasic.targets b/mono-test/bin/lib/mono/2.0/Microsoft.VisualBasic.targets new file mode 100644 index 0000000..4b89dfa --- /dev/null +++ b/mono-test/bin/lib/mono/2.0/Microsoft.VisualBasic.targets @@ -0,0 +1,123 @@ + + + + .vb + VB + + + + + + + + CONFIG="$(Configuration)" + $(FinalDefineConstants),DEBUG=-1 + $(FinalDefineConstants),TRACE=-1 + $(FinalDefineConstants),_MyType="$(MyType)" + $(FinalDefineConstants),PLATFORM="$(Platform)" + $(FinalDefineConstants),PLATFORM="AnyCPU" + $(FinalDefineConstants),$(DefineConstants) + + <_NoWarnings Condition=" '$(WarningLevel)' == '0' ">true + <_NoWarnings Condition=" '$(WarningLevel)' == '1' ">false + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vbnc2 + vbnc2.bat + + vbnc + vbnc.bat + + + diff --git a/mono-test/bin/lib/mono/2.0/Microsoft.VisualC.dll b/mono-test/bin/lib/mono/2.0/Microsoft.VisualC.dll new file mode 100644 index 0000000..09b6577 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Microsoft.VisualC.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.C5.dll b/mono-test/bin/lib/mono/2.0/Mono.C5.dll new file mode 100644 index 0000000..68e6892 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.C5.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.CSharp.dll b/mono-test/bin/lib/mono/2.0/Mono.CSharp.dll new file mode 100644 index 0000000..b31a5da Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.CSharp.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Cairo.dll b/mono-test/bin/lib/mono/2.0/Mono.Cairo.dll new file mode 100644 index 0000000..7d24001 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Cairo.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.CompilerServices.SymbolWriter.dll b/mono-test/bin/lib/mono/2.0/Mono.CompilerServices.SymbolWriter.dll new file mode 100644 index 0000000..e8b6cab Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.CompilerServices.SymbolWriter.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Data.Sqlite.dll b/mono-test/bin/lib/mono/2.0/Mono.Data.Sqlite.dll new file mode 100644 index 0000000..75bdf81 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Data.Sqlite.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Data.Tds.dll b/mono-test/bin/lib/mono/2.0/Mono.Data.Tds.dll new file mode 100644 index 0000000..c46fa95 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Data.Tds.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Debugger.Soft.dll b/mono-test/bin/lib/mono/2.0/Mono.Debugger.Soft.dll new file mode 100644 index 0000000..85cab64 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Debugger.Soft.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Http.dll b/mono-test/bin/lib/mono/2.0/Mono.Http.dll new file mode 100644 index 0000000..7bcdfc0 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Http.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Management.dll b/mono-test/bin/lib/mono/2.0/Mono.Management.dll new file mode 100644 index 0000000..fc8846f Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Management.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Messaging.RabbitMQ.dll b/mono-test/bin/lib/mono/2.0/Mono.Messaging.RabbitMQ.dll new file mode 100644 index 0000000..24fbaaf Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Messaging.RabbitMQ.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Messaging.dll b/mono-test/bin/lib/mono/2.0/Mono.Messaging.dll new file mode 100644 index 0000000..dcf79da Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Messaging.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Posix.dll b/mono-test/bin/lib/mono/2.0/Mono.Posix.dll new file mode 100644 index 0000000..75d94b3 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Posix.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Security.Win32.dll b/mono-test/bin/lib/mono/2.0/Mono.Security.Win32.dll new file mode 100644 index 0000000..858cbbc Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Security.Win32.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Security.dll b/mono-test/bin/lib/mono/2.0/Mono.Security.dll new file mode 100644 index 0000000..6d2a58c Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Security.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Simd.dll b/mono-test/bin/lib/mono/2.0/Mono.Simd.dll new file mode 100644 index 0000000..d18b16a Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Simd.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Tasklets.dll b/mono-test/bin/lib/mono/2.0/Mono.Tasklets.dll new file mode 100644 index 0000000..89a0a23 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Tasklets.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.Web.dll b/mono-test/bin/lib/mono/2.0/Mono.Web.dll new file mode 100644 index 0000000..6861b33 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.Web.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Mono.WebBrowser.dll b/mono-test/bin/lib/mono/2.0/Mono.WebBrowser.dll new file mode 100644 index 0000000..b2af017 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Mono.WebBrowser.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Novell.Directory.Ldap.dll b/mono-test/bin/lib/mono/2.0/Novell.Directory.Ldap.dll new file mode 100644 index 0000000..fff7696 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Novell.Directory.Ldap.dll differ diff --git a/mono-test/bin/lib/mono/2.0/Npgsql.dll b/mono-test/bin/lib/mono/2.0/Npgsql.dll new file mode 100644 index 0000000..70ea4c3 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/Npgsql.dll differ diff --git a/mono-test/bin/lib/mono/2.0/OpenSystem.C.dll b/mono-test/bin/lib/mono/2.0/OpenSystem.C.dll new file mode 100644 index 0000000..ae40312 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/OpenSystem.C.dll differ diff --git a/mono-test/bin/lib/mono/2.0/PEAPI.dll b/mono-test/bin/lib/mono/2.0/PEAPI.dll new file mode 100644 index 0000000..92a340e Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/PEAPI.dll differ diff --git a/mono-test/bin/lib/mono/2.0/RabbitMQ.Client.Apigen.exe b/mono-test/bin/lib/mono/2.0/RabbitMQ.Client.Apigen.exe new file mode 100644 index 0000000..bfeab5a Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/RabbitMQ.Client.Apigen.exe differ diff --git a/mono-test/bin/lib/mono/2.0/RabbitMQ.Client.Apigen.exe.mdb b/mono-test/bin/lib/mono/2.0/RabbitMQ.Client.Apigen.exe.mdb new file mode 100644 index 0000000..3f3dd4c Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/RabbitMQ.Client.Apigen.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/RabbitMQ.Client.dll b/mono-test/bin/lib/mono/2.0/RabbitMQ.Client.dll new file mode 100644 index 0000000..62ebd79 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/RabbitMQ.Client.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.ComponentModel.DataAnnotations.dll b/mono-test/bin/lib/mono/2.0/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..accf1e9 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.ComponentModel.DataAnnotations.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Configuration.Install.dll b/mono-test/bin/lib/mono/2.0/System.Configuration.Install.dll new file mode 100644 index 0000000..7a263b5 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Configuration.Install.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Configuration.dll b/mono-test/bin/lib/mono/2.0/System.Configuration.dll new file mode 100644 index 0000000..30c641f Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Configuration.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Core.dll b/mono-test/bin/lib/mono/2.0/System.Core.dll new file mode 100644 index 0000000..4d32305 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Core.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Data.DataSetExtensions.dll b/mono-test/bin/lib/mono/2.0/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..38b9332 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Data.DataSetExtensions.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Data.Linq.dll b/mono-test/bin/lib/mono/2.0/System.Data.Linq.dll new file mode 100644 index 0000000..c3cbac0 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Data.Linq.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Data.OracleClient.dll b/mono-test/bin/lib/mono/2.0/System.Data.OracleClient.dll new file mode 100644 index 0000000..e2f75a7 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Data.OracleClient.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Data.Services.Client.dll b/mono-test/bin/lib/mono/2.0/System.Data.Services.Client.dll new file mode 100644 index 0000000..bbe71c0 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Data.Services.Client.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Data.Services.dll b/mono-test/bin/lib/mono/2.0/System.Data.Services.dll new file mode 100644 index 0000000..49edbee Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Data.Services.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Data.dll b/mono-test/bin/lib/mono/2.0/System.Data.dll new file mode 100644 index 0000000..f051b61 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Data.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Design.dll b/mono-test/bin/lib/mono/2.0/System.Design.dll new file mode 100644 index 0000000..ad15f8d Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Design.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.DirectoryServices.Protocols.dll b/mono-test/bin/lib/mono/2.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..6737b66 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.DirectoryServices.Protocols.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.DirectoryServices.dll b/mono-test/bin/lib/mono/2.0/System.DirectoryServices.dll new file mode 100644 index 0000000..0d45b3b Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.DirectoryServices.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Drawing.Design.dll b/mono-test/bin/lib/mono/2.0/System.Drawing.Design.dll new file mode 100644 index 0000000..6a77f99 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Drawing.Design.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Drawing.dll b/mono-test/bin/lib/mono/2.0/System.Drawing.dll new file mode 100644 index 0000000..8d23fcc Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Drawing.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.EnterpriseServices.dll b/mono-test/bin/lib/mono/2.0/System.EnterpriseServices.dll new file mode 100644 index 0000000..0bb52aa Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.EnterpriseServices.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.IdentityModel.Selectors.dll b/mono-test/bin/lib/mono/2.0/System.IdentityModel.Selectors.dll new file mode 100644 index 0000000..9d225c1 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.IdentityModel.Selectors.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.IdentityModel.dll b/mono-test/bin/lib/mono/2.0/System.IdentityModel.dll new file mode 100644 index 0000000..c64f1ed Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.IdentityModel.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Json.dll b/mono-test/bin/lib/mono/2.0/System.Json.dll new file mode 100644 index 0000000..d7a187e Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Json.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Management.dll b/mono-test/bin/lib/mono/2.0/System.Management.dll new file mode 100644 index 0000000..0c04a72 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Management.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Messaging.dll b/mono-test/bin/lib/mono/2.0/System.Messaging.dll new file mode 100644 index 0000000..336d1e4 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Messaging.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Net.dll b/mono-test/bin/lib/mono/2.0/System.Net.dll new file mode 100644 index 0000000..fa7b878 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Net.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Runtime.Remoting.dll b/mono-test/bin/lib/mono/2.0/System.Runtime.Remoting.dll new file mode 100644 index 0000000..e0b6bcb Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Runtime.Remoting.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Runtime.Serialization.Formatters.Soap.dll b/mono-test/bin/lib/mono/2.0/System.Runtime.Serialization.Formatters.Soap.dll new file mode 100644 index 0000000..921bf38 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Runtime.Serialization.Formatters.Soap.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Runtime.Serialization.dll b/mono-test/bin/lib/mono/2.0/System.Runtime.Serialization.dll new file mode 100644 index 0000000..fa23292 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Runtime.Serialization.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Security.dll b/mono-test/bin/lib/mono/2.0/System.Security.dll new file mode 100644 index 0000000..b20eaea Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Security.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.ServiceModel.Web.dll b/mono-test/bin/lib/mono/2.0/System.ServiceModel.Web.dll new file mode 100644 index 0000000..869861c Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.ServiceModel.Web.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.ServiceModel.dll b/mono-test/bin/lib/mono/2.0/System.ServiceModel.dll new file mode 100644 index 0000000..8b09fbb Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.ServiceModel.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.ServiceProcess.dll b/mono-test/bin/lib/mono/2.0/System.ServiceProcess.dll new file mode 100644 index 0000000..2372e0a Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.ServiceProcess.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Transactions.dll b/mono-test/bin/lib/mono/2.0/System.Transactions.dll new file mode 100644 index 0000000..0191347 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Transactions.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Web.Abstractions.dll b/mono-test/bin/lib/mono/2.0/System.Web.Abstractions.dll new file mode 100644 index 0000000..2fb87f4 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Web.Abstractions.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Web.DynamicData.dll b/mono-test/bin/lib/mono/2.0/System.Web.DynamicData.dll new file mode 100644 index 0000000..d148c05 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Web.DynamicData.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Web.Extensions.Design.dll b/mono-test/bin/lib/mono/2.0/System.Web.Extensions.Design.dll new file mode 100644 index 0000000..1b85269 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Web.Extensions.Design.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Web.Extensions.dll b/mono-test/bin/lib/mono/2.0/System.Web.Extensions.dll new file mode 100644 index 0000000..2c41470 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Web.Extensions.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Web.Mvc.dll b/mono-test/bin/lib/mono/2.0/System.Web.Mvc.dll new file mode 100644 index 0000000..d32242b Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Web.Mvc.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Web.Routing.dll b/mono-test/bin/lib/mono/2.0/System.Web.Routing.dll new file mode 100644 index 0000000..59984e9 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Web.Routing.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Web.Services.dll b/mono-test/bin/lib/mono/2.0/System.Web.Services.dll new file mode 100644 index 0000000..dab2715 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Web.Services.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Web.dll b/mono-test/bin/lib/mono/2.0/System.Web.dll new file mode 100644 index 0000000..80d60e4 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Web.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Windows.Forms.dll b/mono-test/bin/lib/mono/2.0/System.Windows.Forms.dll new file mode 100644 index 0000000..e6c8852 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Windows.Forms.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Xml.Linq.dll b/mono-test/bin/lib/mono/2.0/System.Xml.Linq.dll new file mode 100644 index 0000000..cc40175 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Xml.Linq.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.Xml.dll b/mono-test/bin/lib/mono/2.0/System.Xml.dll new file mode 100644 index 0000000..7cee7e8 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.Xml.dll differ diff --git a/mono-test/bin/lib/mono/2.0/System.dll b/mono-test/bin/lib/mono/2.0/System.dll new file mode 100644 index 0000000..e8564b4 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/System.dll differ diff --git a/mono-test/bin/lib/mono/2.0/WindowsBase.dll b/mono-test/bin/lib/mono/2.0/WindowsBase.dll new file mode 100644 index 0000000..039ef7e Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/WindowsBase.dll differ diff --git a/mono-test/bin/lib/mono/2.0/al.exe b/mono-test/bin/lib/mono/2.0/al.exe new file mode 100644 index 0000000..504b849 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/al.exe differ diff --git a/mono-test/bin/lib/mono/2.0/al.exe.mdb b/mono-test/bin/lib/mono/2.0/al.exe.mdb new file mode 100644 index 0000000..44fb865 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/al.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/cscompmgd.dll b/mono-test/bin/lib/mono/2.0/cscompmgd.dll new file mode 100644 index 0000000..3f32ca1 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/cscompmgd.dll differ diff --git a/mono-test/bin/lib/mono/2.0/culevel.exe b/mono-test/bin/lib/mono/2.0/culevel.exe new file mode 100644 index 0000000..bc52a85 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/culevel.exe differ diff --git a/mono-test/bin/lib/mono/2.0/culevel.exe.mdb b/mono-test/bin/lib/mono/2.0/culevel.exe.mdb new file mode 100644 index 0000000..9b69c10 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/culevel.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/gacutil.exe b/mono-test/bin/lib/mono/2.0/gacutil.exe new file mode 100644 index 0000000..302a083 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/gacutil.exe differ diff --git a/mono-test/bin/lib/mono/2.0/gacutil.exe.mdb b/mono-test/bin/lib/mono/2.0/gacutil.exe.mdb new file mode 100644 index 0000000..98ebc27 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/gacutil.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/genxs.exe b/mono-test/bin/lib/mono/2.0/genxs.exe new file mode 100644 index 0000000..3bdf08a Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/genxs.exe differ diff --git a/mono-test/bin/lib/mono/2.0/genxs.exe.mdb b/mono-test/bin/lib/mono/2.0/genxs.exe.mdb new file mode 100644 index 0000000..c19c18e Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/genxs.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/ilasm.exe b/mono-test/bin/lib/mono/2.0/ilasm.exe new file mode 100644 index 0000000..9859109 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/ilasm.exe differ diff --git a/mono-test/bin/lib/mono/2.0/ilasm.exe.mdb b/mono-test/bin/lib/mono/2.0/ilasm.exe.mdb new file mode 100644 index 0000000..fe5944c Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/ilasm.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/mkbundle.exe b/mono-test/bin/lib/mono/2.0/mkbundle.exe new file mode 100644 index 0000000..a944aad Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/mkbundle.exe differ diff --git a/mono-test/bin/lib/mono/2.0/mkbundle.exe.mdb b/mono-test/bin/lib/mono/2.0/mkbundle.exe.mdb new file mode 100644 index 0000000..cf792f3 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/mkbundle.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/mono-service.exe b/mono-test/bin/lib/mono/2.0/mono-service.exe new file mode 100644 index 0000000..47fe5aa Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/mono-service.exe differ diff --git a/mono-test/bin/lib/mono/2.0/mono-service.exe.mdb b/mono-test/bin/lib/mono/2.0/mono-service.exe.mdb new file mode 100644 index 0000000..c5828e4 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/mono-service.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/monolinker.exe b/mono-test/bin/lib/mono/2.0/monolinker.exe new file mode 100644 index 0000000..43d676b Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/monolinker.exe differ diff --git a/mono-test/bin/lib/mono/2.0/monolinker.exe.mdb b/mono-test/bin/lib/mono/2.0/monolinker.exe.mdb new file mode 100644 index 0000000..a0ab990 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/monolinker.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/monop.exe b/mono-test/bin/lib/mono/2.0/monop.exe new file mode 100644 index 0000000..01848de Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/monop.exe differ diff --git a/mono-test/bin/lib/mono/2.0/monop.exe.mdb b/mono-test/bin/lib/mono/2.0/monop.exe.mdb new file mode 100644 index 0000000..81e4bf0 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/monop.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/mscorlib.dll b/mono-test/bin/lib/mono/2.0/mscorlib.dll new file mode 100644 index 0000000..ba7de06 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/mscorlib.dll differ diff --git a/mono-test/bin/lib/mono/2.0/mscorlib.dll.mdb b/mono-test/bin/lib/mono/2.0/mscorlib.dll.mdb new file mode 100644 index 0000000..559a901 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/mscorlib.dll.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/nunit-console-runner.dll b/mono-test/bin/lib/mono/2.0/nunit-console-runner.dll new file mode 100644 index 0000000..820c2fe Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/nunit-console-runner.dll differ diff --git a/mono-test/bin/lib/mono/2.0/nunit-console.exe b/mono-test/bin/lib/mono/2.0/nunit-console.exe new file mode 100644 index 0000000..61c145a Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/nunit-console.exe differ diff --git a/mono-test/bin/lib/mono/2.0/nunit-console.exe.config b/mono-test/bin/lib/mono/2.0/nunit-console.exe.config new file mode 100644 index 0000000..577cc20 --- /dev/null +++ b/mono-test/bin/lib/mono/2.0/nunit-console.exe.config @@ -0,0 +1,111 @@ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/2.0/nunit-console.exe.mdb b/mono-test/bin/lib/mono/2.0/nunit-console.exe.mdb new file mode 100644 index 0000000..10e9da1 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/nunit-console.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/nunit.core.dll b/mono-test/bin/lib/mono/2.0/nunit.core.dll new file mode 100644 index 0000000..a821884 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/nunit.core.dll differ diff --git a/mono-test/bin/lib/mono/2.0/nunit.core.extensions.dll b/mono-test/bin/lib/mono/2.0/nunit.core.extensions.dll new file mode 100644 index 0000000..88110b6 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/nunit.core.extensions.dll differ diff --git a/mono-test/bin/lib/mono/2.0/nunit.core.interfaces.dll b/mono-test/bin/lib/mono/2.0/nunit.core.interfaces.dll new file mode 100644 index 0000000..2cf2be7 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/nunit.core.interfaces.dll differ diff --git a/mono-test/bin/lib/mono/2.0/nunit.framework.dll b/mono-test/bin/lib/mono/2.0/nunit.framework.dll new file mode 100644 index 0000000..ff47fd4 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/nunit.framework.dll differ diff --git a/mono-test/bin/lib/mono/2.0/nunit.framework.extensions.dll b/mono-test/bin/lib/mono/2.0/nunit.framework.extensions.dll new file mode 100644 index 0000000..ad391a1 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/nunit.framework.extensions.dll differ diff --git a/mono-test/bin/lib/mono/2.0/nunit.mocks.dll b/mono-test/bin/lib/mono/2.0/nunit.mocks.dll new file mode 100644 index 0000000..8adfb6c Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/nunit.mocks.dll differ diff --git a/mono-test/bin/lib/mono/2.0/nunit.util.dll b/mono-test/bin/lib/mono/2.0/nunit.util.dll new file mode 100644 index 0000000..83ffa2e Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/nunit.util.dll differ diff --git a/mono-test/bin/lib/mono/2.0/resgen.exe b/mono-test/bin/lib/mono/2.0/resgen.exe new file mode 100644 index 0000000..3f8e581 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/resgen.exe differ diff --git a/mono-test/bin/lib/mono/2.0/resgen.exe.mdb b/mono-test/bin/lib/mono/2.0/resgen.exe.mdb new file mode 100644 index 0000000..9736a6a Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/resgen.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/wsdl.exe b/mono-test/bin/lib/mono/2.0/wsdl.exe new file mode 100644 index 0000000..a185d87 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/wsdl.exe differ diff --git a/mono-test/bin/lib/mono/2.0/wsdl.exe.mdb b/mono-test/bin/lib/mono/2.0/wsdl.exe.mdb new file mode 100644 index 0000000..5e4df59 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/wsdl.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/xbuild.exe b/mono-test/bin/lib/mono/2.0/xbuild.exe new file mode 100644 index 0000000..87bef09 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/xbuild.exe differ diff --git a/mono-test/bin/lib/mono/2.0/xbuild.exe.mdb b/mono-test/bin/lib/mono/2.0/xbuild.exe.mdb new file mode 100644 index 0000000..f2529a2 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/xbuild.exe.mdb differ diff --git a/mono-test/bin/lib/mono/2.0/xbuild.rsp b/mono-test/bin/lib/mono/2.0/xbuild.rsp new file mode 100644 index 0000000..9b9ce70 --- /dev/null +++ b/mono-test/bin/lib/mono/2.0/xbuild.rsp @@ -0,0 +1,3 @@ +# xbuild command line options specified here will be used +# by xbuild on every build, unless /noautoresponse is passed +# on the command line. diff --git a/mono-test/bin/lib/mono/2.0/xsd.exe b/mono-test/bin/lib/mono/2.0/xsd.exe new file mode 100644 index 0000000..be2fb1b Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/xsd.exe differ diff --git a/mono-test/bin/lib/mono/2.0/xsd.exe.mdb b/mono-test/bin/lib/mono/2.0/xsd.exe.mdb new file mode 100644 index 0000000..b0c99c6 Binary files /dev/null and b/mono-test/bin/lib/mono/2.0/xsd.exe.mdb differ diff --git a/mono-test/bin/lib/mono/3.5/MSBuild/Microsoft.Build.CommonTypes.xsd b/mono-test/bin/lib/mono/3.5/MSBuild/Microsoft.Build.CommonTypes.xsd new file mode 100644 index 0000000..390189b --- /dev/null +++ b/mono-test/bin/lib/mono/3.5/MSBuild/Microsoft.Build.CommonTypes.xsd @@ -0,0 +1,1581 @@ + + + + + + + + + + + Reference to an assembly + + + + + + + + + Relative or absolute path to the assembly (optional) + + + + + Friendly display name (optional) + + + + + Fusion name of the assembly (optional) + + + + + Whether only the version in the fusion name should be referenced (optional, boolean) + + + + + Aliases for the reference (optional) + + + + + Whether the reference should be copied to the output folder (optional, boolean) + + + + + + + + Assembly name or filename + + + + + + + + + Reference to a COM component + + + + + + + + + Friendly display name (optional) + + + + + GUID in the form {00000000-0000-0000-0000-000000000000} + + + + + Major part of the version number + + + + + Minor part of the version number + + + + + Locale ID + + + + + Wrapper tool, such as tlbimp + + + + + Is it isolated (boolean) + + + + + + + + COM component name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Path to native reference + + + + + + + + + Reference to another project + + + + + + + + + Friendly display name (optional) + + + + + Project GUID, in the form {00000000-0000-0000-0000-000000000000} + + + + + + + + + Path to project file + + + + + + + + + Source files for compiler + + + + + + + + + + + Whether file was generated from another file (boolean) + + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + + Display in user interface (optional, boolean) + + + + + + + + Semi-colon separated list of source files (wildcards are allowed) + + + + + + + + + Resources to be embedded in the generated assembly + + + + + + + + + + Name of any file generator that is run on this item + + + + + File that was created by any file generator that was run on this item + + + + + Namespace into which any file generator that is run on this item should create code + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + Display in user interface (optional, boolean) + + + + + + + + + Semi-colon separated list of resource files (wildcards are allowed) + + + + + + + + + Files that are not compiled, but may be embedded or published + + + + + + + + + + Name of any file generator that is run on this item + + + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + + Default, Included, Excluded, DataFile, or Prerequisite + + + + + + Display in user interface (optional, boolean) + + + + + + Copy file to output directory (optional, boolean, default false) + + + + + + + + Semi-colon separated list of content files (wildcards are allowed) + + + + + + + + + Files that should have no role in the build process + + + + + + + + + + + Name of any file generator that is run on this item + + + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + Display in user interface (optional, boolean) + + + + + + + + + + + Folder on disk + + + + + Assemblies whose namespaces should be imported by the Visual Basic compiler + + + + + + Name of Web References folder to display in user interface + + + + + Represents a reference to a web service + + + + + + + + + + + + + + + + + + + URL to web service + + + + + + + + + + + + + + + Display in user interface (optional, boolean) + + + + + + + + + + + + + + + + + + + Display in user interface (optional, boolean) + + + + + + (boolean) + + + + + Default, Included, Excluded, DataFile, or Prerequisite + + + + + + + + + + + + + + + integer + + + + + Matches the expression "\d\.\d\.\d\.(\d|\*)" + + + + + Name of folder for Application Designer + + + + + + + Name of output assembly + + + + + + + + + boolean + + + + + + HomeSite, Relative, or Absolute + + + + + + boolean + + + + + + + + + boolean + + + + + + Whether to emit symbols (boolean) + + + + + none, pdbonly, or full + + + + + + + + + Whether DEBUG is defined (boolean) + + + + + Whether TRACE is defined (boolean) + + + + + + + boolean + + + + + + + + + + + + + + + + + + + + + + + + Web, Unc, or Disk + + + + + + + + + + + boolean + + + + + Matches the expression "\d\.\d\.\d\.\d" + + + + + + + + Whether standard libraries (such as mscorlib) should be referenced automatically (boolean) + + + + + Comma separated list of disabled warnings + + + + + boolean + + + + + Should compiler optimize output (boolean) + + + + + Option Compare setting (Text or Binary) + + + + + Should Option Explicit be set (On or Off) + + + + + Should Option Strict be set (On or Off) + + + + + + Path to output folder, with trailing slash + + + + + Type of output to generate (WinExe, Exe, or Library) + + + + + + + + + Command line to be run at the end of build + + + + + Command line to be run at the start of build + + + + + + + + + + + + + Semi-colon separated list of folders to search during reference resolution + + + + + + + + + + + + + + + + + + + + + + + + Type that contains the main entry point + + + + + + + + + boolean + + + + + + boolean + + + + + + Hours, Days, or Weeks + + + + + Foreground or Background + + + + + boolean + + + + + boolean + + + + + + + + + integer between 0 and 4 inclusive + + + + + Comma separated list of warning numbers to treat as errors + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/3.5/MSBuild/Microsoft.Build.Core.xsd b/mono-test/bin/lib/mono/3.5/MSBuild/Microsoft.Build.Core.xsd new file mode 100644 index 0000000..9ab9bda --- /dev/null +++ b/mono-test/bin/lib/mono/3.5/MSBuild/Microsoft.Build.Core.xsd @@ -0,0 +1,390 @@ + + + + + + + + + + + + + + Optional semi-colon separated list of one or more targets that will be built if no targets are otherwise specified + + + + + + + + + + + + + Logs an Error event + + + + + Logs a Warning event + + + + + + + + + + + + + + + + Logs an Error event + + + + + Logs a Warning event + + + + + + + + + + + + + + + + + + + + Groups tasks into a section of the build process + + + + + + + + + + + Name of the target + + + + + Optional semi-colon separated list of targets that should be run before this target + + + + + Optional semi-colon separated list of files that form inputs into this target. Their timestamps will be compared with the timestamps of files in Outputs to determine whether the Target is up to date + + + + + Optional semi-colon separated list of files that form outputs into this target. Their timestamps will be compared with the timestamps of files in Inputs to determine whether the Target is up to date + + + + + Optional expression evaluated to determine whether the Target and the targets it depends on should be run + + + + + + + Groups property definitions + + + + + + + Optional expression evaluated to determine whether the PropertyGroup should be used + + + + + + + Groups item list definitions + + + + + + + Optional expression evaluated to determine whether the ItemGroup should be used + + + + + + + Groups When and Otherwise elements + + + + + + + + + + Groups PropertyGroup and/or ItemGroup elements + + + + + + + + + + + Optional expression evaluated to determine whether the child PropertyGroups and/or ItemGroups should be used + + + + + + + Groups PropertyGroup and/or ItemGroup elements that are used if no Conditions on sibling When elements evaluate to true + + + + + + + + + + + + + Specifies targets to execute in the event of a recoverable error + + + + Optional expression evaluated to determine whether the targets should be executed + + + + + Semi-colon separated list of targets to execute + + + + + + + Logs an informational Message event, with an optional Importance + + + + Optional expression evaluated to determine whether the Message should be logged + + + + + Optional priority level. Allowed values are Low, Normal (default), and High + + + + + Text to log + + + + + + + + Optional expression evaluated to determine whether the text should be logged + + + + + Text to log + + + + + + + Declares where to load a task that will be used in the project + + + + Optional expression evaluated to determine whether the declaration should be evaluated + + + + + Optional name of assembly containing the task. Either AssemblyName or AssemblyFile must be used + + + + + Optional path to assembly containing the task. Either AssemblyName or AssemblyFile must be used + + + + + Name of task class in the assembly + + + + + + + Declares that the contents of another project file should be inserted at this location + + + + Optional expression evaluated to determine whether the import should occur + + + + + Project file to import + + + + + + + Optional section used by MSBuild hosts, that may contain arbitrary XML content that is ignored by MSBuild itself + + + + + + + + + + + + + Optional expression evaluated to determine whether the items should be evaluated + + + + + Semi-colon separated list of files (wildcards are allowed) or other item names to include in this item list + + + + + Semi-colon separated list of files (wildcards are allowed) or other item names to exclude from the Include list + + + + + + + + + + + + + + + + + + + + + + + + + Optional expression evaluated to determine whether the property should be evaluated + + + + + + + + + + + + + + Optional expression evaluated to determine whether the property should be evaluated + + + + + + + + + + + Optional element specifying a specific task output to be gathered + + + + + Task parameter to gather. Matches the name of a .NET Property on the task class that has an [Output] attribute + + + + + Optional name of an item list to put the gathered outputs into. Either ItemName or PropertyName must be specified + + + + + Optional name of a property to put the gathered output into. Either PropertyName or ItemName must be specified + + + + + Optional expression evaluated to determine whether the output should be gathered + + + + + + + + Optional expression evaluated to determine whether the task should be executed + + + + + Optional boolean indicating whether a recoverable task error should be ignored. Default false + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/3.5/Microsoft.Build.Engine.dll b/mono-test/bin/lib/mono/3.5/Microsoft.Build.Engine.dll new file mode 100644 index 0000000..becf4a2 Binary files /dev/null and b/mono-test/bin/lib/mono/3.5/Microsoft.Build.Engine.dll differ diff --git a/mono-test/bin/lib/mono/3.5/Microsoft.Build.Framework.dll b/mono-test/bin/lib/mono/3.5/Microsoft.Build.Framework.dll new file mode 100644 index 0000000..a23d214 Binary files /dev/null and b/mono-test/bin/lib/mono/3.5/Microsoft.Build.Framework.dll differ diff --git a/mono-test/bin/lib/mono/3.5/Microsoft.Build.Tasks.v3.5.dll b/mono-test/bin/lib/mono/3.5/Microsoft.Build.Tasks.v3.5.dll new file mode 100644 index 0000000..318b1e4 Binary files /dev/null and b/mono-test/bin/lib/mono/3.5/Microsoft.Build.Tasks.v3.5.dll differ diff --git a/mono-test/bin/lib/mono/3.5/Microsoft.Build.Utilities.v3.5.dll b/mono-test/bin/lib/mono/3.5/Microsoft.Build.Utilities.v3.5.dll new file mode 100644 index 0000000..0dca32f Binary files /dev/null and b/mono-test/bin/lib/mono/3.5/Microsoft.Build.Utilities.v3.5.dll differ diff --git a/mono-test/bin/lib/mono/3.5/Microsoft.Build.xsd b/mono-test/bin/lib/mono/3.5/Microsoft.Build.xsd new file mode 100644 index 0000000..1cd971c --- /dev/null +++ b/mono-test/bin/lib/mono/3.5/Microsoft.Build.xsd @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/3.5/Microsoft.CSharp.targets b/mono-test/bin/lib/mono/3.5/Microsoft.CSharp.targets new file mode 100644 index 0000000..3c37825 --- /dev/null +++ b/mono-test/bin/lib/mono/3.5/Microsoft.CSharp.targets @@ -0,0 +1,118 @@ + + + .cs + C# + + + + false + + + + + + + + $(MSBuildAllProjects);$(MSBuildToolsPath)\Microsoft.CSharp.targets + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gmcs + gmcs.bat + + mcs + mcs.bat + + dmcs + dmcs.bat + + + + +// <autogenerated /> +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute("$(TargetFrameworkMoniker)", FrameworkDisplayName = "$(TargetFrameworkMonikerDisplayName)")] + + + + diff --git a/mono-test/bin/lib/mono/3.5/Microsoft.Common.targets b/mono-test/bin/lib/mono/3.5/Microsoft.Common.targets new file mode 100644 index 0000000..787af85 --- /dev/null +++ b/mono-test/bin/lib/mono/3.5/Microsoft.Common.targets @@ -0,0 +1,775 @@ + + + + + + .exe + .exe + .dll + .netmodule + + + + $(MSBuildProjectDirectory)\ + + + + $(RootNamespace) + $(OutputPath)\ + bin\Debug\ + 2 + v2.0 + + + + $(OutputPath) + $(OutDir)\ + + <_OriginalConfiguration>$(Configuration) + Debug + $(Configuration) + + <_OriginalPlatform>$(Platform) + AnyCPU + $(Platform) + + + + true + + + + obj\ + $(BaseIntermediateOutputPath)\ + $(MSBuildProjectFile).FilesWrittenAbsolute.txt + + + + $(BaseIntermediateOutputPath)$(Configuration)\ + $(BaseIntermediateOutputPath)$(PlatformName)\$(Configuration)\ + + + + $(IntermediateOutputPath)\ + + + + + + + <_OutDirItem Include="$(OutDir)"/> + + + + $(AssemblyName) + $(TargetName)$(TargetExt) + @(_OutDirItem->'%(FullPath)') + @(_OutDirItem->'%(FullPath)\$(TargetFileName)') + $(MSBuildAllProjects);$(MSBuildProjectFullPath);$(MSBuildToolsPath)\Microsoft.Common.targets + + $(AssemblyOriginatorKeyFile) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .exe; + .dll + + + + .mdb + + + + {CandidateAssemblyFiles}; + $(ReferencePath); + @(AdditionalReferencePath); + {HintPathFromItem}; + {TargetFrameworkDirectory}; + {PkgConfig}; + {GAC}; + {RawFileName}; + $(OutDir) + + + + BeforeResolveReferences; + ResolveProjectReferences; + ResolveAssemblyReferences; + AfterResolveReferences + + + + GetFrameworkPaths; + GetReferenceAssemblyPaths; + PrepareForBuild + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BeforeBuild; + CoreBuild; + AfterBuild + + + + + + + + + + + PrepareForBuild; + GetFrameworkPaths; + GetReferenceAssemblyPaths; + PreBuildEvent; + ResolveReferences; + CopyFilesMarkedCopyLocal; + PrepareResources; + Compile; + PrepareForRun; + DeployOutputFiles; + _RecordCleanFile; + PostBuildEvent + + + + + + + + + + + + + ResolveReferences; + BeforeCompile; + _TimestampBeforeCompile; + CoreCompile; + _TimestampAfterCompile; + AfterCompile + + + + + + + + + + + DeployOutputFiles + + + + + + + AssignTargetPaths; + SplitResourcesByCulture; + CreateManifestResourceNames; + CopyNonResxEmbeddedResources; + GenerateResources; + GenerateSatelliteAssemblies; + CompileLicxFiles + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BeforeRebuild; + Clean; + $(MSBuildProjectDefaultTargets); + AfterRebuild; + + + + BeforeRebuild; + Clean; + Build; + AfterRebuild; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BeforeClean; + CleanReferencedProjects; + CoreClean; + AfterClean + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/3.5/Microsoft.Common.tasks b/mono-test/bin/lib/mono/3.5/Microsoft.Common.tasks new file mode 100644 index 0000000..397d68c --- /dev/null +++ b/mono-test/bin/lib/mono/3.5/Microsoft.Common.tasks @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/3.5/Microsoft.VisualBasic.targets b/mono-test/bin/lib/mono/3.5/Microsoft.VisualBasic.targets new file mode 100644 index 0000000..4b89dfa --- /dev/null +++ b/mono-test/bin/lib/mono/3.5/Microsoft.VisualBasic.targets @@ -0,0 +1,123 @@ + + + + .vb + VB + + + + + + + + CONFIG="$(Configuration)" + $(FinalDefineConstants),DEBUG=-1 + $(FinalDefineConstants),TRACE=-1 + $(FinalDefineConstants),_MyType="$(MyType)" + $(FinalDefineConstants),PLATFORM="$(Platform)" + $(FinalDefineConstants),PLATFORM="AnyCPU" + $(FinalDefineConstants),$(DefineConstants) + + <_NoWarnings Condition=" '$(WarningLevel)' == '0' ">true + <_NoWarnings Condition=" '$(WarningLevel)' == '1' ">false + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vbnc2 + vbnc2.bat + + vbnc + vbnc.bat + + + diff --git a/mono-test/bin/lib/mono/3.5/xbuild.exe b/mono-test/bin/lib/mono/3.5/xbuild.exe new file mode 100644 index 0000000..976e698 Binary files /dev/null and b/mono-test/bin/lib/mono/3.5/xbuild.exe differ diff --git a/mono-test/bin/lib/mono/3.5/xbuild.exe.mdb b/mono-test/bin/lib/mono/3.5/xbuild.exe.mdb new file mode 100644 index 0000000..cde4a06 Binary files /dev/null and b/mono-test/bin/lib/mono/3.5/xbuild.exe.mdb differ diff --git a/mono-test/bin/lib/mono/3.5/xbuild.rsp b/mono-test/bin/lib/mono/3.5/xbuild.rsp new file mode 100644 index 0000000..9b9ce70 --- /dev/null +++ b/mono-test/bin/lib/mono/3.5/xbuild.rsp @@ -0,0 +1,3 @@ +# xbuild command line options specified here will be used +# by xbuild on every build, unless /noautoresponse is passed +# on the command line. diff --git a/mono-test/bin/lib/mono/4.0/Accessibility.dll b/mono-test/bin/lib/mono/4.0/Accessibility.dll new file mode 100644 index 0000000..4738695 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Accessibility.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Commons.Xml.Relaxng.dll b/mono-test/bin/lib/mono/4.0/Commons.Xml.Relaxng.dll new file mode 100644 index 0000000..5f7e6d0 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Commons.Xml.Relaxng.dll differ diff --git a/mono-test/bin/lib/mono/4.0/CustomMarshalers.dll b/mono-test/bin/lib/mono/4.0/CustomMarshalers.dll new file mode 100644 index 0000000..1de67d2 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/CustomMarshalers.dll differ diff --git a/mono-test/bin/lib/mono/4.0/I18N.CJK.dll b/mono-test/bin/lib/mono/4.0/I18N.CJK.dll new file mode 100644 index 0000000..7700ad4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/I18N.CJK.dll differ diff --git a/mono-test/bin/lib/mono/4.0/I18N.MidEast.dll b/mono-test/bin/lib/mono/4.0/I18N.MidEast.dll new file mode 100644 index 0000000..58becc5 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/I18N.MidEast.dll differ diff --git a/mono-test/bin/lib/mono/4.0/I18N.Other.dll b/mono-test/bin/lib/mono/4.0/I18N.Other.dll new file mode 100644 index 0000000..d81ceeb Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/I18N.Other.dll differ diff --git a/mono-test/bin/lib/mono/4.0/I18N.Rare.dll b/mono-test/bin/lib/mono/4.0/I18N.Rare.dll new file mode 100644 index 0000000..d0163d1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/I18N.Rare.dll differ diff --git a/mono-test/bin/lib/mono/4.0/I18N.West.dll b/mono-test/bin/lib/mono/4.0/I18N.West.dll new file mode 100644 index 0000000..dcc84b3 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/I18N.West.dll differ diff --git a/mono-test/bin/lib/mono/4.0/I18N.dll b/mono-test/bin/lib/mono/4.0/I18N.dll new file mode 100644 index 0000000..8be38eb Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/I18N.dll differ diff --git a/mono-test/bin/lib/mono/4.0/IBM.Data.DB2.dll b/mono-test/bin/lib/mono/4.0/IBM.Data.DB2.dll new file mode 100644 index 0000000..d2f2ca7 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/IBM.Data.DB2.dll differ diff --git a/mono-test/bin/lib/mono/4.0/ICSharpCode.SharpZipLib.dll b/mono-test/bin/lib/mono/4.0/ICSharpCode.SharpZipLib.dll new file mode 100644 index 0000000..77e1024 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/ICSharpCode.SharpZipLib.dll differ diff --git a/mono-test/bin/lib/mono/4.0/MSBuild/Microsoft.Build.CommonTypes.xsd b/mono-test/bin/lib/mono/4.0/MSBuild/Microsoft.Build.CommonTypes.xsd new file mode 100644 index 0000000..390189b --- /dev/null +++ b/mono-test/bin/lib/mono/4.0/MSBuild/Microsoft.Build.CommonTypes.xsd @@ -0,0 +1,1581 @@ + + + + + + + + + + + Reference to an assembly + + + + + + + + + Relative or absolute path to the assembly (optional) + + + + + Friendly display name (optional) + + + + + Fusion name of the assembly (optional) + + + + + Whether only the version in the fusion name should be referenced (optional, boolean) + + + + + Aliases for the reference (optional) + + + + + Whether the reference should be copied to the output folder (optional, boolean) + + + + + + + + Assembly name or filename + + + + + + + + + Reference to a COM component + + + + + + + + + Friendly display name (optional) + + + + + GUID in the form {00000000-0000-0000-0000-000000000000} + + + + + Major part of the version number + + + + + Minor part of the version number + + + + + Locale ID + + + + + Wrapper tool, such as tlbimp + + + + + Is it isolated (boolean) + + + + + + + + COM component name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Path to native reference + + + + + + + + + Reference to another project + + + + + + + + + Friendly display name (optional) + + + + + Project GUID, in the form {00000000-0000-0000-0000-000000000000} + + + + + + + + + Path to project file + + + + + + + + + Source files for compiler + + + + + + + + + + + Whether file was generated from another file (boolean) + + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + + Display in user interface (optional, boolean) + + + + + + + + Semi-colon separated list of source files (wildcards are allowed) + + + + + + + + + Resources to be embedded in the generated assembly + + + + + + + + + + Name of any file generator that is run on this item + + + + + File that was created by any file generator that was run on this item + + + + + Namespace into which any file generator that is run on this item should create code + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + Display in user interface (optional, boolean) + + + + + + + + + Semi-colon separated list of resource files (wildcards are allowed) + + + + + + + + + Files that are not compiled, but may be embedded or published + + + + + + + + + + Name of any file generator that is run on this item + + + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + + Default, Included, Excluded, DataFile, or Prerequisite + + + + + + Display in user interface (optional, boolean) + + + + + + Copy file to output directory (optional, boolean, default false) + + + + + + + + Semi-colon separated list of content files (wildcards are allowed) + + + + + + + + + Files that should have no role in the build process + + + + + + + + + + + Name of any file generator that is run on this item + + + + + + + Notional path within project to display if the file is physically located outside of the project file's cone (optional) + + + + + Display in user interface (optional, boolean) + + + + + + + + + + + Folder on disk + + + + + Assemblies whose namespaces should be imported by the Visual Basic compiler + + + + + + Name of Web References folder to display in user interface + + + + + Represents a reference to a web service + + + + + + + + + + + + + + + + + + + URL to web service + + + + + + + + + + + + + + + Display in user interface (optional, boolean) + + + + + + + + + + + + + + + + + + + Display in user interface (optional, boolean) + + + + + + (boolean) + + + + + Default, Included, Excluded, DataFile, or Prerequisite + + + + + + + + + + + + + + + integer + + + + + Matches the expression "\d\.\d\.\d\.(\d|\*)" + + + + + Name of folder for Application Designer + + + + + + + Name of output assembly + + + + + + + + + boolean + + + + + + HomeSite, Relative, or Absolute + + + + + + boolean + + + + + + + + + boolean + + + + + + Whether to emit symbols (boolean) + + + + + none, pdbonly, or full + + + + + + + + + Whether DEBUG is defined (boolean) + + + + + Whether TRACE is defined (boolean) + + + + + + + boolean + + + + + + + + + + + + + + + + + + + + + + + + Web, Unc, or Disk + + + + + + + + + + + boolean + + + + + Matches the expression "\d\.\d\.\d\.\d" + + + + + + + + Whether standard libraries (such as mscorlib) should be referenced automatically (boolean) + + + + + Comma separated list of disabled warnings + + + + + boolean + + + + + Should compiler optimize output (boolean) + + + + + Option Compare setting (Text or Binary) + + + + + Should Option Explicit be set (On or Off) + + + + + Should Option Strict be set (On or Off) + + + + + + Path to output folder, with trailing slash + + + + + Type of output to generate (WinExe, Exe, or Library) + + + + + + + + + Command line to be run at the end of build + + + + + Command line to be run at the start of build + + + + + + + + + + + + + Semi-colon separated list of folders to search during reference resolution + + + + + + + + + + + + + + + + + + + + + + + + Type that contains the main entry point + + + + + + + + + boolean + + + + + + boolean + + + + + + Hours, Days, or Weeks + + + + + Foreground or Background + + + + + boolean + + + + + boolean + + + + + + + + + integer between 0 and 4 inclusive + + + + + Comma separated list of warning numbers to treat as errors + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/4.0/MSBuild/Microsoft.Build.Core.xsd b/mono-test/bin/lib/mono/4.0/MSBuild/Microsoft.Build.Core.xsd new file mode 100644 index 0000000..9ab9bda --- /dev/null +++ b/mono-test/bin/lib/mono/4.0/MSBuild/Microsoft.Build.Core.xsd @@ -0,0 +1,390 @@ + + + + + + + + + + + + + + Optional semi-colon separated list of one or more targets that will be built if no targets are otherwise specified + + + + + + + + + + + + + Logs an Error event + + + + + Logs a Warning event + + + + + + + + + + + + + + + + Logs an Error event + + + + + Logs a Warning event + + + + + + + + + + + + + + + + + + + + Groups tasks into a section of the build process + + + + + + + + + + + Name of the target + + + + + Optional semi-colon separated list of targets that should be run before this target + + + + + Optional semi-colon separated list of files that form inputs into this target. Their timestamps will be compared with the timestamps of files in Outputs to determine whether the Target is up to date + + + + + Optional semi-colon separated list of files that form outputs into this target. Their timestamps will be compared with the timestamps of files in Inputs to determine whether the Target is up to date + + + + + Optional expression evaluated to determine whether the Target and the targets it depends on should be run + + + + + + + Groups property definitions + + + + + + + Optional expression evaluated to determine whether the PropertyGroup should be used + + + + + + + Groups item list definitions + + + + + + + Optional expression evaluated to determine whether the ItemGroup should be used + + + + + + + Groups When and Otherwise elements + + + + + + + + + + Groups PropertyGroup and/or ItemGroup elements + + + + + + + + + + + Optional expression evaluated to determine whether the child PropertyGroups and/or ItemGroups should be used + + + + + + + Groups PropertyGroup and/or ItemGroup elements that are used if no Conditions on sibling When elements evaluate to true + + + + + + + + + + + + + Specifies targets to execute in the event of a recoverable error + + + + Optional expression evaluated to determine whether the targets should be executed + + + + + Semi-colon separated list of targets to execute + + + + + + + Logs an informational Message event, with an optional Importance + + + + Optional expression evaluated to determine whether the Message should be logged + + + + + Optional priority level. Allowed values are Low, Normal (default), and High + + + + + Text to log + + + + + + + + Optional expression evaluated to determine whether the text should be logged + + + + + Text to log + + + + + + + Declares where to load a task that will be used in the project + + + + Optional expression evaluated to determine whether the declaration should be evaluated + + + + + Optional name of assembly containing the task. Either AssemblyName or AssemblyFile must be used + + + + + Optional path to assembly containing the task. Either AssemblyName or AssemblyFile must be used + + + + + Name of task class in the assembly + + + + + + + Declares that the contents of another project file should be inserted at this location + + + + Optional expression evaluated to determine whether the import should occur + + + + + Project file to import + + + + + + + Optional section used by MSBuild hosts, that may contain arbitrary XML content that is ignored by MSBuild itself + + + + + + + + + + + + + Optional expression evaluated to determine whether the items should be evaluated + + + + + Semi-colon separated list of files (wildcards are allowed) or other item names to include in this item list + + + + + Semi-colon separated list of files (wildcards are allowed) or other item names to exclude from the Include list + + + + + + + + + + + + + + + + + + + + + + + + + Optional expression evaluated to determine whether the property should be evaluated + + + + + + + + + + + + + + Optional expression evaluated to determine whether the property should be evaluated + + + + + + + + + + + Optional element specifying a specific task output to be gathered + + + + + Task parameter to gather. Matches the name of a .NET Property on the task class that has an [Output] attribute + + + + + Optional name of an item list to put the gathered outputs into. Either ItemName or PropertyName must be specified + + + + + Optional name of a property to put the gathered output into. Either PropertyName or ItemName must be specified + + + + + Optional expression evaluated to determine whether the output should be gathered + + + + + + + + Optional expression evaluated to determine whether the task should be executed + + + + + Optional boolean indicating whether a recoverable task error should be ignored. Default false + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.Build.Engine.dll b/mono-test/bin/lib/mono/4.0/Microsoft.Build.Engine.dll new file mode 100644 index 0000000..f302718 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Microsoft.Build.Engine.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.Build.Framework.dll b/mono-test/bin/lib/mono/4.0/Microsoft.Build.Framework.dll new file mode 100644 index 0000000..48b882c Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Microsoft.Build.Framework.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.Build.Tasks.v4.0.dll b/mono-test/bin/lib/mono/4.0/Microsoft.Build.Tasks.v4.0.dll new file mode 100644 index 0000000..42f430a Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Microsoft.Build.Tasks.v4.0.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.Build.Utilities.v4.0.dll b/mono-test/bin/lib/mono/4.0/Microsoft.Build.Utilities.v4.0.dll new file mode 100644 index 0000000..2d0cdf3 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Microsoft.Build.Utilities.v4.0.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.Build.dll b/mono-test/bin/lib/mono/4.0/Microsoft.Build.dll new file mode 100644 index 0000000..a165b9c Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Microsoft.Build.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.Build.xsd b/mono-test/bin/lib/mono/4.0/Microsoft.Build.xsd new file mode 100644 index 0000000..1cd971c --- /dev/null +++ b/mono-test/bin/lib/mono/4.0/Microsoft.Build.xsd @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.CSharp.dll b/mono-test/bin/lib/mono/4.0/Microsoft.CSharp.dll new file mode 100644 index 0000000..5798fa4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Microsoft.CSharp.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.CSharp.targets b/mono-test/bin/lib/mono/4.0/Microsoft.CSharp.targets new file mode 100644 index 0000000..3c37825 --- /dev/null +++ b/mono-test/bin/lib/mono/4.0/Microsoft.CSharp.targets @@ -0,0 +1,118 @@ + + + .cs + C# + + + + false + + + + + + + + $(MSBuildAllProjects);$(MSBuildToolsPath)\Microsoft.CSharp.targets + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gmcs + gmcs.bat + + mcs + mcs.bat + + dmcs + dmcs.bat + + + + +// <autogenerated /> +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute("$(TargetFrameworkMoniker)", FrameworkDisplayName = "$(TargetFrameworkMonikerDisplayName)")] + + + + diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.Common.targets b/mono-test/bin/lib/mono/4.0/Microsoft.Common.targets new file mode 100644 index 0000000..d4ba50e --- /dev/null +++ b/mono-test/bin/lib/mono/4.0/Microsoft.Common.targets @@ -0,0 +1,910 @@ + + + true + true + + + + + + + + .exe + .exe + .dll + .netmodule + + + + $(MSBuildProjectDirectory)\ + + + + $(RootNamespace) + $(OutputPath)\ + bin\Debug\ + 2 + + .NETFramework + v4.0 + + $(TargetFrameworkIdentifier),Version=$(TargetFrameworkVersion),Profile=$(TargetFrameworkProfile) + $(TargetFrameworkIdentifier),Version=$(TargetFrameworkVersion) + + + + $(OutputPath) + $(OutDir)\ + + <_OriginalConfiguration>$(Configuration) + Debug + $(Configuration) + + <_OriginalPlatform>$(Platform) + AnyCPU + $(Platform) + + true + System.Core;$(AdditionalExplicitAssemblyReferences) + + + + true + + + + obj\ + $(BaseIntermediateOutputPath)\ + $(MSBuildProjectFile).FilesWrittenAbsolute.txt + + + + $(BaseIntermediateOutputPath)$(Configuration)\ + $(BaseIntermediateOutputPath)$(PlatformName)\$(Configuration)\ + + + + $(IntermediateOutputPath)\ + + + + + + + <_OutDirItem Include="$(OutDir)"/> + + + + $(AssemblyName) + $(TargetName)$(TargetExt) + @(_OutDirItem->'%(FullPath)') + @(_OutDirItem->'%(FullPath)\$(TargetFileName)') + $(MSBuildAllProjects);$(MSBuildProjectFullPath);$(MSBuildToolsPath)\Microsoft.Common.targets + $(AssemblyOriginatorKeyFile) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <_TargetFrameworkDirectories Include="$(_TargetFrameworkDirectories);$(TargetFrameworkDirectory)" KeepDuplicates="false" /> + + + @(_TargetFrameworkDirectories) + + + + + + <_DesignTimeFacadeAssemblies Include="%(DesignTimeFacadeDirectories.Identity)\*.dll"/> + + + + $(TargetFrameworkDirectory);@(DesignTimeFacadeDirectories) + + + + + + + .exe; + .dll + + + + .mdb + + + + {CandidateAssemblyFiles}; + $(ReferencePath); + @(AdditionalReferencePath); + {HintPathFromItem}; + {TargetFrameworkDirectory}; + {PkgConfig}; + {GAC}; + {RawFileName}; + $(OutDir) + + + + BeforeResolveReferences; + ResolveProjectReferences; + ResolveAssemblyReferences; + AfterResolveReferences + + + + GetFrameworkPaths; + GetReferenceAssemblyPaths; + PrepareForBuild + + + + + $(IntermediateOutputPath)$(TargetFrameworkMoniker).AssemblyAttribute$(DefaultLanguageSourceExtension) + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BuildOnlySettings; + BeforeBuild; + CoreBuild; + AfterBuild + + + + + + + + + + + + PrepareForBuild; + GetFrameworkPaths; + GetReferenceAssemblyPaths; + PreBuildEvent; + ResolveReferences; + CopyFilesMarkedCopyLocal; + PrepareResources; + Compile; + PrepareForRun; + DeployOutputFiles; + _RecordCleanFile; + PostBuildEvent + + + + + + + + + + + + + ResolveReferences; + GenerateTargetFrameworkMonikerAttribute; + BeforeCompile; + _TimestampBeforeCompile; + CoreCompile; + _TimestampAfterCompile; + AfterCompile + + + + + + + + + + + DeployOutputFiles + + + + + + + AssignTargetPaths; + SplitResourcesByCulture; + CreateManifestResourceNames; + CopyNonResxEmbeddedResources; + GenerateResources; + GenerateSatelliteAssemblies; + CompileLicxFiles + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BeforeRebuild; + Clean; + $(MSBuildProjectDefaultTargets); + AfterRebuild; + + + + BeforeRebuild; + Clean; + Build; + AfterRebuild; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BeforeClean; + CleanReferencedProjects; + CoreClean; + AfterClean + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + $(ResolveReferencesDependsOn); + ImplicitlyExpandDesignTimeFacades + + + + $(ImplicitlyExpandDesignTimeFacadesDependsOn); + GetReferenceAssemblyPaths + + + + + + + <_HasReferenceToSystemRuntime Condition="'%(_ResolvedDependencyFiles.Filename)' == 'System.Runtime'">true + + + + + + + false + false + ImplicitlyExpandDesignTimeFacades + + <_ResolveAssemblyReferenceResolvedFiles Include="@(ReferencePath)" Condition="'%(ReferencePath.ResolvedFrom)' == 'ImplicitlyExpandDesignTimeFacades'" /> + + + + + + + + diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.Common.tasks b/mono-test/bin/lib/mono/4.0/Microsoft.Common.tasks new file mode 100644 index 0000000..d326aad --- /dev/null +++ b/mono-test/bin/lib/mono/4.0/Microsoft.Common.tasks @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.Portable.CSharp.targets b/mono-test/bin/lib/mono/4.0/Microsoft.Portable.CSharp.targets new file mode 100644 index 0000000..72c20ef --- /dev/null +++ b/mono-test/bin/lib/mono/4.0/Microsoft.Portable.CSharp.targets @@ -0,0 +1,43 @@ + + + + Any CPU + + Portable + .NETPortable + .NET Portable Subset + + false + true + + true + + + + + + + $(ResolveReferencesDependsOn); + ImplicitlyExpandTargetFramework; + + + + $(ImplicitlyExpandTargetFrameworkDependsOn); + GetReferenceAssemblyPaths + + + + + + + + + false + ImplicitlyExpandTargetFramework + True + + + + + diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.VisualBasic.dll b/mono-test/bin/lib/mono/4.0/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..017191d Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Microsoft.VisualBasic.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.VisualBasic.targets b/mono-test/bin/lib/mono/4.0/Microsoft.VisualBasic.targets new file mode 100644 index 0000000..4b89dfa --- /dev/null +++ b/mono-test/bin/lib/mono/4.0/Microsoft.VisualBasic.targets @@ -0,0 +1,123 @@ + + + + .vb + VB + + + + + + + + CONFIG="$(Configuration)" + $(FinalDefineConstants),DEBUG=-1 + $(FinalDefineConstants),TRACE=-1 + $(FinalDefineConstants),_MyType="$(MyType)" + $(FinalDefineConstants),PLATFORM="$(Platform)" + $(FinalDefineConstants),PLATFORM="AnyCPU" + $(FinalDefineConstants),$(DefineConstants) + + <_NoWarnings Condition=" '$(WarningLevel)' == '0' ">true + <_NoWarnings Condition=" '$(WarningLevel)' == '1' ">false + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vbnc2 + vbnc2.bat + + vbnc + vbnc.bat + + + diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.VisualC.dll b/mono-test/bin/lib/mono/4.0/Microsoft.VisualC.dll new file mode 100644 index 0000000..db77219 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Microsoft.VisualC.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Microsoft.Web.Infrastructure.dll b/mono-test/bin/lib/mono/4.0/Microsoft.Web.Infrastructure.dll new file mode 100644 index 0000000..a03fc7a Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Microsoft.Web.Infrastructure.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.C5.dll b/mono-test/bin/lib/mono/4.0/Mono.C5.dll new file mode 100644 index 0000000..a5c5168 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.C5.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.CSharp.dll b/mono-test/bin/lib/mono/4.0/Mono.CSharp.dll new file mode 100644 index 0000000..b1a89c0 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.CSharp.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Cairo.dll b/mono-test/bin/lib/mono/4.0/Mono.Cairo.dll new file mode 100644 index 0000000..fb4b1fa Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Cairo.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Cecil.VB.Mdb.dll b/mono-test/bin/lib/mono/4.0/Mono.Cecil.VB.Mdb.dll new file mode 100644 index 0000000..54cd86e Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Cecil.VB.Mdb.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Cecil.VB.Pdb.dll b/mono-test/bin/lib/mono/4.0/Mono.Cecil.VB.Pdb.dll new file mode 100644 index 0000000..789943b Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Cecil.VB.Pdb.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Cecil.VB.dll b/mono-test/bin/lib/mono/4.0/Mono.Cecil.VB.dll new file mode 100644 index 0000000..8a9cccc Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Cecil.VB.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.CompilerServices.SymbolWriter.dll b/mono-test/bin/lib/mono/4.0/Mono.CompilerServices.SymbolWriter.dll new file mode 100644 index 0000000..7c6b6ec Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.CompilerServices.SymbolWriter.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Data.Sqlite.dll b/mono-test/bin/lib/mono/4.0/Mono.Data.Sqlite.dll new file mode 100644 index 0000000..8e1aabb Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Data.Sqlite.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Data.Tds.dll b/mono-test/bin/lib/mono/4.0/Mono.Data.Tds.dll new file mode 100644 index 0000000..a9413d6 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Data.Tds.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Debugger.Soft.dll b/mono-test/bin/lib/mono/4.0/Mono.Debugger.Soft.dll new file mode 100644 index 0000000..fb58709 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Debugger.Soft.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Http.dll b/mono-test/bin/lib/mono/4.0/Mono.Http.dll new file mode 100644 index 0000000..48ebee5 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Http.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Management.dll b/mono-test/bin/lib/mono/4.0/Mono.Management.dll new file mode 100644 index 0000000..9ad659c Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Management.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Messaging.RabbitMQ.dll b/mono-test/bin/lib/mono/4.0/Mono.Messaging.RabbitMQ.dll new file mode 100644 index 0000000..86ff56f Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Messaging.RabbitMQ.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Messaging.dll b/mono-test/bin/lib/mono/4.0/Mono.Messaging.dll new file mode 100644 index 0000000..1204d1b Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Messaging.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Parallel.dll b/mono-test/bin/lib/mono/4.0/Mono.Parallel.dll new file mode 100644 index 0000000..fc47e9d Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Parallel.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Posix.dll b/mono-test/bin/lib/mono/4.0/Mono.Posix.dll new file mode 100644 index 0000000..8e21944 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Posix.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Security.Win32.dll b/mono-test/bin/lib/mono/4.0/Mono.Security.Win32.dll new file mode 100644 index 0000000..bd88e4d Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Security.Win32.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Security.dll b/mono-test/bin/lib/mono/4.0/Mono.Security.dll new file mode 100644 index 0000000..3413f62 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Security.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Simd.dll b/mono-test/bin/lib/mono/4.0/Mono.Simd.dll new file mode 100644 index 0000000..ae9279a Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Simd.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Tasklets.dll b/mono-test/bin/lib/mono/4.0/Mono.Tasklets.dll new file mode 100644 index 0000000..126f7a6 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Tasklets.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.Web.dll b/mono-test/bin/lib/mono/4.0/Mono.Web.dll new file mode 100644 index 0000000..0942563 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.Web.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Mono.WebBrowser.dll b/mono-test/bin/lib/mono/4.0/Mono.WebBrowser.dll new file mode 100644 index 0000000..3610f3f Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Mono.WebBrowser.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Novell.Directory.Ldap.dll b/mono-test/bin/lib/mono/4.0/Novell.Directory.Ldap.dll new file mode 100644 index 0000000..003781b Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Novell.Directory.Ldap.dll differ diff --git a/mono-test/bin/lib/mono/4.0/Npgsql.dll b/mono-test/bin/lib/mono/4.0/Npgsql.dll new file mode 100644 index 0000000..e3704fe Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/Npgsql.dll differ diff --git a/mono-test/bin/lib/mono/4.0/OpenSystem.C.dll b/mono-test/bin/lib/mono/4.0/OpenSystem.C.dll new file mode 100644 index 0000000..81f4b61 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/OpenSystem.C.dll differ diff --git a/mono-test/bin/lib/mono/4.0/PEAPI.dll b/mono-test/bin/lib/mono/4.0/PEAPI.dll new file mode 100644 index 0000000..87da44a Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/PEAPI.dll differ diff --git a/mono-test/bin/lib/mono/4.0/RabbitMQ.Client.Apigen.exe b/mono-test/bin/lib/mono/4.0/RabbitMQ.Client.Apigen.exe new file mode 100644 index 0000000..34a30d1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/RabbitMQ.Client.Apigen.exe differ diff --git a/mono-test/bin/lib/mono/4.0/RabbitMQ.Client.dll b/mono-test/bin/lib/mono/4.0/RabbitMQ.Client.dll new file mode 100644 index 0000000..871160e Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/RabbitMQ.Client.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.ComponentModel.Composition.dll b/mono-test/bin/lib/mono/4.0/System.ComponentModel.Composition.dll new file mode 100644 index 0000000..c471e21 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.ComponentModel.Composition.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.ComponentModel.DataAnnotations.dll b/mono-test/bin/lib/mono/4.0/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..620ef10 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.ComponentModel.DataAnnotations.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Configuration.Install.dll b/mono-test/bin/lib/mono/4.0/System.Configuration.Install.dll new file mode 100644 index 0000000..37dad7e Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Configuration.Install.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Configuration.dll b/mono-test/bin/lib/mono/4.0/System.Configuration.dll new file mode 100644 index 0000000..1f4a79d Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Configuration.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Core.dll b/mono-test/bin/lib/mono/4.0/System.Core.dll new file mode 100644 index 0000000..484bffc Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Core.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Data.DataSetExtensions.dll b/mono-test/bin/lib/mono/4.0/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..270f32c Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Data.DataSetExtensions.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Data.Linq.dll b/mono-test/bin/lib/mono/4.0/System.Data.Linq.dll new file mode 100644 index 0000000..62692f1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Data.Linq.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Data.OracleClient.dll b/mono-test/bin/lib/mono/4.0/System.Data.OracleClient.dll new file mode 100644 index 0000000..6ecf801 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Data.OracleClient.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Data.Services.Client.dll b/mono-test/bin/lib/mono/4.0/System.Data.Services.Client.dll new file mode 100644 index 0000000..c2f7088 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Data.Services.Client.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Data.Services.dll b/mono-test/bin/lib/mono/4.0/System.Data.Services.dll new file mode 100644 index 0000000..a692697 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Data.Services.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Data.dll b/mono-test/bin/lib/mono/4.0/System.Data.dll new file mode 100644 index 0000000..419159f Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Data.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Design.dll b/mono-test/bin/lib/mono/4.0/System.Design.dll new file mode 100644 index 0000000..4772818 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Design.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.DirectoryServices.Protocols.dll b/mono-test/bin/lib/mono/4.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..5e64310 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.DirectoryServices.Protocols.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.DirectoryServices.dll b/mono-test/bin/lib/mono/4.0/System.DirectoryServices.dll new file mode 100644 index 0000000..2ab22ce Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.DirectoryServices.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Drawing.Design.dll b/mono-test/bin/lib/mono/4.0/System.Drawing.Design.dll new file mode 100644 index 0000000..47ba8d3 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Drawing.Design.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Drawing.dll b/mono-test/bin/lib/mono/4.0/System.Drawing.dll new file mode 100644 index 0000000..1097fec Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Drawing.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Dynamic.dll b/mono-test/bin/lib/mono/4.0/System.Dynamic.dll new file mode 100644 index 0000000..8d9c85f Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Dynamic.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.EnterpriseServices.dll b/mono-test/bin/lib/mono/4.0/System.EnterpriseServices.dll new file mode 100644 index 0000000..e1df599 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.EnterpriseServices.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.IdentityModel.Selectors.dll b/mono-test/bin/lib/mono/4.0/System.IdentityModel.Selectors.dll new file mode 100644 index 0000000..7b518ab Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.IdentityModel.Selectors.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.IdentityModel.dll b/mono-test/bin/lib/mono/4.0/System.IdentityModel.dll new file mode 100644 index 0000000..d12bd1c Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.IdentityModel.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Json.Microsoft.dll b/mono-test/bin/lib/mono/4.0/System.Json.Microsoft.dll new file mode 100644 index 0000000..898ddc8 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Json.Microsoft.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Json.dll b/mono-test/bin/lib/mono/4.0/System.Json.dll new file mode 100644 index 0000000..520685a Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Json.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Management.dll b/mono-test/bin/lib/mono/4.0/System.Management.dll new file mode 100644 index 0000000..107c83e Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Management.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Messaging.dll b/mono-test/bin/lib/mono/4.0/System.Messaging.dll new file mode 100644 index 0000000..2716aac Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Messaging.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Net.dll b/mono-test/bin/lib/mono/4.0/System.Net.dll new file mode 100644 index 0000000..75b31f5 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Net.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Numerics.dll b/mono-test/bin/lib/mono/4.0/System.Numerics.dll new file mode 100644 index 0000000..74f985a Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Numerics.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Runtime.Caching.dll b/mono-test/bin/lib/mono/4.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..00f1f35 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Runtime.Caching.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Runtime.DurableInstancing.dll b/mono-test/bin/lib/mono/4.0/System.Runtime.DurableInstancing.dll new file mode 100644 index 0000000..ebdc546 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Runtime.DurableInstancing.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Runtime.Remoting.dll b/mono-test/bin/lib/mono/4.0/System.Runtime.Remoting.dll new file mode 100644 index 0000000..b3262f3 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Runtime.Remoting.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Runtime.Serialization.Formatters.Soap.dll b/mono-test/bin/lib/mono/4.0/System.Runtime.Serialization.Formatters.Soap.dll new file mode 100644 index 0000000..6653484 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Runtime.Serialization.Formatters.Soap.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Runtime.Serialization.dll b/mono-test/bin/lib/mono/4.0/System.Runtime.Serialization.dll new file mode 100644 index 0000000..b57cdf9 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Runtime.Serialization.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Security.dll b/mono-test/bin/lib/mono/4.0/System.Security.dll new file mode 100644 index 0000000..2ea78d4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Security.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.ServiceModel.Discovery.dll b/mono-test/bin/lib/mono/4.0/System.ServiceModel.Discovery.dll new file mode 100644 index 0000000..9aa2dab Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.ServiceModel.Discovery.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.ServiceModel.Routing.dll b/mono-test/bin/lib/mono/4.0/System.ServiceModel.Routing.dll new file mode 100644 index 0000000..627abc7 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.ServiceModel.Routing.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.ServiceModel.Web.dll b/mono-test/bin/lib/mono/4.0/System.ServiceModel.Web.dll new file mode 100644 index 0000000..f023ec6 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.ServiceModel.Web.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.ServiceModel.dll b/mono-test/bin/lib/mono/4.0/System.ServiceModel.dll new file mode 100644 index 0000000..b905a67 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.ServiceModel.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.ServiceProcess.dll b/mono-test/bin/lib/mono/4.0/System.ServiceProcess.dll new file mode 100644 index 0000000..1485582 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.ServiceProcess.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Transactions.dll b/mono-test/bin/lib/mono/4.0/System.Transactions.dll new file mode 100644 index 0000000..dcce138 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Transactions.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Web.Abstractions.dll b/mono-test/bin/lib/mono/4.0/System.Web.Abstractions.dll new file mode 100644 index 0000000..7826fc5 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Web.Abstractions.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Web.ApplicationServices.dll b/mono-test/bin/lib/mono/4.0/System.Web.ApplicationServices.dll new file mode 100644 index 0000000..9621742 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Web.ApplicationServices.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Web.DynamicData.dll b/mono-test/bin/lib/mono/4.0/System.Web.DynamicData.dll new file mode 100644 index 0000000..b0ffbc4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Web.DynamicData.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Web.Extensions.Design.dll b/mono-test/bin/lib/mono/4.0/System.Web.Extensions.Design.dll new file mode 100644 index 0000000..f3c390d Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Web.Extensions.Design.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Web.Extensions.dll b/mono-test/bin/lib/mono/4.0/System.Web.Extensions.dll new file mode 100644 index 0000000..d4b0230 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Web.Extensions.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Web.Routing.dll b/mono-test/bin/lib/mono/4.0/System.Web.Routing.dll new file mode 100644 index 0000000..c67277c Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Web.Routing.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Web.Services.dll b/mono-test/bin/lib/mono/4.0/System.Web.Services.dll new file mode 100644 index 0000000..18d366f Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Web.Services.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Web.dll b/mono-test/bin/lib/mono/4.0/System.Web.dll new file mode 100644 index 0000000..e23d27a Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Web.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Windows.Forms.DataVisualization.dll b/mono-test/bin/lib/mono/4.0/System.Windows.Forms.DataVisualization.dll new file mode 100644 index 0000000..ef77bcf Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Windows.Forms.DataVisualization.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Windows.Forms.dll b/mono-test/bin/lib/mono/4.0/System.Windows.Forms.dll new file mode 100644 index 0000000..041d7d9 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Windows.Forms.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Xaml.dll b/mono-test/bin/lib/mono/4.0/System.Xaml.dll new file mode 100644 index 0000000..15bbab1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Xaml.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Xml.Linq.dll b/mono-test/bin/lib/mono/4.0/System.Xml.Linq.dll new file mode 100644 index 0000000..8c56eb3 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Xml.Linq.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.Xml.dll b/mono-test/bin/lib/mono/4.0/System.Xml.dll new file mode 100644 index 0000000..72dda78 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.Xml.dll differ diff --git a/mono-test/bin/lib/mono/4.0/System.dll b/mono-test/bin/lib/mono/4.0/System.dll new file mode 100644 index 0000000..cb2b559 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/System.dll differ diff --git a/mono-test/bin/lib/mono/4.0/WebMatrix.Data.dll b/mono-test/bin/lib/mono/4.0/WebMatrix.Data.dll new file mode 100644 index 0000000..f31bfbd Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/WebMatrix.Data.dll differ diff --git a/mono-test/bin/lib/mono/4.0/WindowsBase.dll b/mono-test/bin/lib/mono/4.0/WindowsBase.dll new file mode 100644 index 0000000..1000f6a Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/WindowsBase.dll differ diff --git a/mono-test/bin/lib/mono/4.0/cscompmgd.dll b/mono-test/bin/lib/mono/4.0/cscompmgd.dll new file mode 100644 index 0000000..6c3c986 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/cscompmgd.dll differ diff --git a/mono-test/bin/lib/mono/4.0/monodoc.dll b/mono-test/bin/lib/mono/4.0/monodoc.dll new file mode 100644 index 0000000..b4befbd Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/monodoc.dll differ diff --git a/mono-test/bin/lib/mono/4.0/mscorlib.dll b/mono-test/bin/lib/mono/4.0/mscorlib.dll new file mode 100644 index 0000000..ab9f5b9 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/mscorlib.dll differ diff --git a/mono-test/bin/lib/mono/4.0/vbnc.exe b/mono-test/bin/lib/mono/4.0/vbnc.exe new file mode 100644 index 0000000..44f8dc2 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/vbnc.exe differ diff --git a/mono-test/bin/lib/mono/4.0/vbnc.exe.mdb b/mono-test/bin/lib/mono/4.0/vbnc.exe.mdb new file mode 100644 index 0000000..13dd0a7 Binary files /dev/null and b/mono-test/bin/lib/mono/4.0/vbnc.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.0/vbnc.rsp b/mono-test/bin/lib/mono/4.0/vbnc.rsp new file mode 100644 index 0000000..ff63dee --- /dev/null +++ b/mono-test/bin/lib/mono/4.0/vbnc.rsp @@ -0,0 +1,14 @@ +-r:Accessibility.dll +-r:System.Configuration.dll +-r:System.Data.dll +-r:System.Design.dll +-r:System.dll +-r:System.Drawing.Design.dll +-r:System.Drawing.dll +-r:System.Web.dll +-r:System.Web.Services.dll +-r:System.Windows.Forms.dll +-r:System.Xml.dll + +-imports:System +-imports:Microsoft.VisualBasic diff --git a/mono-test/bin/lib/mono/4.5/Accessibility.dll b/mono-test/bin/lib/mono/4.5/Accessibility.dll new file mode 100644 index 0000000..57366bc Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Accessibility.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Commons.Xml.Relaxng.dll b/mono-test/bin/lib/mono/4.5/Commons.Xml.Relaxng.dll new file mode 100644 index 0000000..65f374c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Commons.Xml.Relaxng.dll differ diff --git a/mono-test/bin/lib/mono/4.5/CustomMarshalers.dll b/mono-test/bin/lib/mono/4.5/CustomMarshalers.dll new file mode 100644 index 0000000..6fd5633 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/CustomMarshalers.dll differ diff --git a/mono-test/bin/lib/mono/4.5/EntityFramework.SqlServer.dll b/mono-test/bin/lib/mono/4.5/EntityFramework.SqlServer.dll new file mode 100644 index 0000000..05bc2f3 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/EntityFramework.SqlServer.dll differ diff --git a/mono-test/bin/lib/mono/4.5/EntityFramework.dll b/mono-test/bin/lib/mono/4.5/EntityFramework.dll new file mode 100644 index 0000000..7dea282 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/EntityFramework.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Collections.Concurrent.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Collections.Concurrent.dll new file mode 100644 index 0000000..ee89f85 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Collections.Concurrent.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Collections.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Collections.dll new file mode 100644 index 0000000..0600710 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Collections.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.ComponentModel.Annotations.dll b/mono-test/bin/lib/mono/4.5/Facades/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..9aa2b22 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.ComponentModel.Annotations.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.ComponentModel.EventBasedAsync.dll b/mono-test/bin/lib/mono/4.5/Facades/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..3130756 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.ComponentModel.EventBasedAsync.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.ComponentModel.dll b/mono-test/bin/lib/mono/4.5/Facades/System.ComponentModel.dll new file mode 100644 index 0000000..8adb7c1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.ComponentModel.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Diagnostics.Contracts.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..17133e1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Diagnostics.Contracts.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Diagnostics.Debug.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..af160c0 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Diagnostics.Debug.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Diagnostics.Tools.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..227fd74 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Diagnostics.Tools.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Dynamic.Runtime.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..19d2a85 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Dynamic.Runtime.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Globalization.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Globalization.dll new file mode 100644 index 0000000..d678ed2 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Globalization.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.IO.dll b/mono-test/bin/lib/mono/4.5/Facades/System.IO.dll new file mode 100644 index 0000000..d1f7a68 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.IO.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Linq.Expressions.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Linq.Expressions.dll new file mode 100644 index 0000000..08a41d2 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Linq.Expressions.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Linq.Parallel.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Linq.Parallel.dll new file mode 100644 index 0000000..e3fe756 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Linq.Parallel.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Linq.Queryable.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Linq.Queryable.dll new file mode 100644 index 0000000..f1b7db0 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Linq.Queryable.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Linq.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Linq.dll new file mode 100644 index 0000000..7918c4a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Linq.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Net.NetworkInformation.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..45b6555 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Net.NetworkInformation.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Net.Primitives.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Net.Primitives.dll new file mode 100644 index 0000000..700aaa7 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Net.Primitives.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Net.Requests.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Net.Requests.dll new file mode 100644 index 0000000..0da9e29 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Net.Requests.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.ObjectModel.dll b/mono-test/bin/lib/mono/4.5/Facades/System.ObjectModel.dll new file mode 100644 index 0000000..c49f14d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.ObjectModel.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Reflection.Extensions.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Reflection.Extensions.dll new file mode 100644 index 0000000..5e94f1a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Reflection.Extensions.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Reflection.Primitives.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Reflection.Primitives.dll new file mode 100644 index 0000000..706c88b Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Reflection.Primitives.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Reflection.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Reflection.dll new file mode 100644 index 0000000..2380ae4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Reflection.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Resources.ResourceManager.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..98086a5 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Resources.ResourceManager.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Extensions.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Extensions.dll new file mode 100644 index 0000000..f8ccd8c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Extensions.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.InteropServices.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..27b2e79 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.InteropServices.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Numerics.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Numerics.dll new file mode 100644 index 0000000..7985c0d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Numerics.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Serialization.Json.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..41c6f7e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Serialization.Json.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Serialization.Primitives.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..b54aa74 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Serialization.Primitives.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Serialization.Xml.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..5b94536 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.Serialization.Xml.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.dll new file mode 100644 index 0000000..6846cd2 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Runtime.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Security.Principal.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Security.Principal.dll new file mode 100644 index 0000000..ae9a411 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Security.Principal.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.ServiceModel.Http.dll b/mono-test/bin/lib/mono/4.5/Facades/System.ServiceModel.Http.dll new file mode 100644 index 0000000..4cba324 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.ServiceModel.Http.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.ServiceModel.Primitives.dll b/mono-test/bin/lib/mono/4.5/Facades/System.ServiceModel.Primitives.dll new file mode 100644 index 0000000..81a6ec5 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.ServiceModel.Primitives.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Text.Encoding.Extensions.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..9891bb4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Text.Encoding.Extensions.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Text.Encoding.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Text.Encoding.dll new file mode 100644 index 0000000..0d9a4ca Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Text.Encoding.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Text.RegularExpressions.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..3aba12d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Text.RegularExpressions.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Threading.Tasks.Parallel.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..c31835c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Threading.Tasks.Parallel.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Threading.Tasks.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Threading.Tasks.dll new file mode 100644 index 0000000..5766e46 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Threading.Tasks.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Threading.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Threading.dll new file mode 100644 index 0000000..9f2f669 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Threading.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Xml.ReaderWriter.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..6687767 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Xml.ReaderWriter.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Xml.XDocument.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Xml.XDocument.dll new file mode 100644 index 0000000..efd0458 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Xml.XDocument.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Facades/System.Xml.XmlSerializer.dll b/mono-test/bin/lib/mono/4.5/Facades/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..62e9596 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Facades/System.Xml.XmlSerializer.dll differ diff --git a/mono-test/bin/lib/mono/4.5/I18N.CJK.dll b/mono-test/bin/lib/mono/4.5/I18N.CJK.dll new file mode 100644 index 0000000..4b8cbba Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/I18N.CJK.dll differ diff --git a/mono-test/bin/lib/mono/4.5/I18N.MidEast.dll b/mono-test/bin/lib/mono/4.5/I18N.MidEast.dll new file mode 100644 index 0000000..81ec2a4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/I18N.MidEast.dll differ diff --git a/mono-test/bin/lib/mono/4.5/I18N.Other.dll b/mono-test/bin/lib/mono/4.5/I18N.Other.dll new file mode 100644 index 0000000..c88ab39 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/I18N.Other.dll differ diff --git a/mono-test/bin/lib/mono/4.5/I18N.Rare.dll b/mono-test/bin/lib/mono/4.5/I18N.Rare.dll new file mode 100644 index 0000000..e188c58 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/I18N.Rare.dll differ diff --git a/mono-test/bin/lib/mono/4.5/I18N.West.dll b/mono-test/bin/lib/mono/4.5/I18N.West.dll new file mode 100644 index 0000000..1ff54f7 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/I18N.West.dll differ diff --git a/mono-test/bin/lib/mono/4.5/I18N.dll b/mono-test/bin/lib/mono/4.5/I18N.dll new file mode 100644 index 0000000..6f29357 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/I18N.dll differ diff --git a/mono-test/bin/lib/mono/4.5/IBM.Data.DB2.dll b/mono-test/bin/lib/mono/4.5/IBM.Data.DB2.dll new file mode 100644 index 0000000..32d7138 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/IBM.Data.DB2.dll differ diff --git a/mono-test/bin/lib/mono/4.5/ICSharpCode.SharpZipLib.dll b/mono-test/bin/lib/mono/4.5/ICSharpCode.SharpZipLib.dll new file mode 100644 index 0000000..e4ffb68 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/ICSharpCode.SharpZipLib.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Microsoft.Build.Engine.dll b/mono-test/bin/lib/mono/4.5/Microsoft.Build.Engine.dll new file mode 100644 index 0000000..749c372 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Microsoft.Build.Engine.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Microsoft.Build.Framework.dll b/mono-test/bin/lib/mono/4.5/Microsoft.Build.Framework.dll new file mode 100644 index 0000000..5af15f6 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Microsoft.Build.Framework.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Microsoft.Build.Tasks.v4.0.dll b/mono-test/bin/lib/mono/4.5/Microsoft.Build.Tasks.v4.0.dll new file mode 100644 index 0000000..839c17b Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Microsoft.Build.Tasks.v4.0.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Microsoft.Build.Utilities.v4.0.dll b/mono-test/bin/lib/mono/4.5/Microsoft.Build.Utilities.v4.0.dll new file mode 100644 index 0000000..fe1685c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Microsoft.Build.Utilities.v4.0.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Microsoft.Build.dll b/mono-test/bin/lib/mono/4.5/Microsoft.Build.dll new file mode 100644 index 0000000..78c2e86 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Microsoft.Build.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Microsoft.CSharp.dll b/mono-test/bin/lib/mono/4.5/Microsoft.CSharp.dll new file mode 100644 index 0000000..c162d6f Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Microsoft.CSharp.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Microsoft.VisualC.dll b/mono-test/bin/lib/mono/4.5/Microsoft.VisualC.dll new file mode 100644 index 0000000..19e0a8f Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Microsoft.VisualC.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Microsoft.Web.Infrastructure.dll b/mono-test/bin/lib/mono/4.5/Microsoft.Web.Infrastructure.dll new file mode 100644 index 0000000..c9a3ed4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Microsoft.Web.Infrastructure.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.C5.dll b/mono-test/bin/lib/mono/4.5/Mono.C5.dll new file mode 100644 index 0000000..a05cf90 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.C5.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.CSharp.dll b/mono-test/bin/lib/mono/4.5/Mono.CSharp.dll new file mode 100644 index 0000000..ced1850 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.CSharp.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Cairo.dll b/mono-test/bin/lib/mono/4.5/Mono.Cairo.dll new file mode 100644 index 0000000..6a5bc9d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Cairo.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.CodeContracts.dll b/mono-test/bin/lib/mono/4.5/Mono.CodeContracts.dll new file mode 100644 index 0000000..e0c1311 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.CodeContracts.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.CompilerServices.SymbolWriter.dll b/mono-test/bin/lib/mono/4.5/Mono.CompilerServices.SymbolWriter.dll new file mode 100644 index 0000000..199924d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.CompilerServices.SymbolWriter.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Data.Sqlite.dll b/mono-test/bin/lib/mono/4.5/Mono.Data.Sqlite.dll new file mode 100644 index 0000000..1bfd151 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Data.Sqlite.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Data.Tds.dll b/mono-test/bin/lib/mono/4.5/Mono.Data.Tds.dll new file mode 100644 index 0000000..1321116 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Data.Tds.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Debugger.Soft.dll b/mono-test/bin/lib/mono/4.5/Mono.Debugger.Soft.dll new file mode 100644 index 0000000..8d1f846 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Debugger.Soft.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Http.dll b/mono-test/bin/lib/mono/4.5/Mono.Http.dll new file mode 100644 index 0000000..5e679d5 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Http.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Management.dll b/mono-test/bin/lib/mono/4.5/Mono.Management.dll new file mode 100644 index 0000000..9429cc1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Management.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Messaging.RabbitMQ.dll b/mono-test/bin/lib/mono/4.5/Mono.Messaging.RabbitMQ.dll new file mode 100644 index 0000000..d4ab44e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Messaging.RabbitMQ.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Messaging.dll b/mono-test/bin/lib/mono/4.5/Mono.Messaging.dll new file mode 100644 index 0000000..470dfa7 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Messaging.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Parallel.dll b/mono-test/bin/lib/mono/4.5/Mono.Parallel.dll new file mode 100644 index 0000000..2639ffc Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Parallel.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Posix.dll b/mono-test/bin/lib/mono/4.5/Mono.Posix.dll new file mode 100644 index 0000000..5226de9 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Posix.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Security.Win32.dll b/mono-test/bin/lib/mono/4.5/Mono.Security.Win32.dll new file mode 100644 index 0000000..661842c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Security.Win32.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Security.dll b/mono-test/bin/lib/mono/4.5/Mono.Security.dll new file mode 100644 index 0000000..921aa48 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Security.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Simd.dll b/mono-test/bin/lib/mono/4.5/Mono.Simd.dll new file mode 100644 index 0000000..1026758 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Simd.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Tasklets.dll b/mono-test/bin/lib/mono/4.5/Mono.Tasklets.dll new file mode 100644 index 0000000..4f9b86e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Tasklets.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.Web.dll b/mono-test/bin/lib/mono/4.5/Mono.Web.dll new file mode 100644 index 0000000..37c201c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.Web.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Mono.WebBrowser.dll b/mono-test/bin/lib/mono/4.5/Mono.WebBrowser.dll new file mode 100644 index 0000000..cfe238a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Mono.WebBrowser.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Novell.Directory.Ldap.dll b/mono-test/bin/lib/mono/4.5/Novell.Directory.Ldap.dll new file mode 100644 index 0000000..436a1f3 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Novell.Directory.Ldap.dll differ diff --git a/mono-test/bin/lib/mono/4.5/Npgsql.dll b/mono-test/bin/lib/mono/4.5/Npgsql.dll new file mode 100644 index 0000000..5e868e0 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/Npgsql.dll differ diff --git a/mono-test/bin/lib/mono/4.5/OpenSystem.C.dll b/mono-test/bin/lib/mono/4.5/OpenSystem.C.dll new file mode 100644 index 0000000..2415084 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/OpenSystem.C.dll differ diff --git a/mono-test/bin/lib/mono/4.5/PEAPI.dll b/mono-test/bin/lib/mono/4.5/PEAPI.dll new file mode 100644 index 0000000..34e3530 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/PEAPI.dll differ diff --git a/mono-test/bin/lib/mono/4.5/RabbitMQ.Client.Apigen.exe b/mono-test/bin/lib/mono/4.5/RabbitMQ.Client.Apigen.exe new file mode 100644 index 0000000..6d44c3d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/RabbitMQ.Client.Apigen.exe differ diff --git a/mono-test/bin/lib/mono/4.5/RabbitMQ.Client.Apigen.exe.mdb b/mono-test/bin/lib/mono/4.5/RabbitMQ.Client.Apigen.exe.mdb new file mode 100644 index 0000000..ea4fa39 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/RabbitMQ.Client.Apigen.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/RabbitMQ.Client.dll b/mono-test/bin/lib/mono/4.5/RabbitMQ.Client.dll new file mode 100644 index 0000000..99da6b8 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/RabbitMQ.Client.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.ComponentModel.Composition.dll b/mono-test/bin/lib/mono/4.5/System.ComponentModel.Composition.dll new file mode 100644 index 0000000..12fbf50 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.ComponentModel.Composition.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.ComponentModel.DataAnnotations.dll b/mono-test/bin/lib/mono/4.5/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..2c3f001 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.ComponentModel.DataAnnotations.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Configuration.Install.dll b/mono-test/bin/lib/mono/4.5/System.Configuration.Install.dll new file mode 100644 index 0000000..b16bdc8 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Configuration.Install.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Configuration.dll b/mono-test/bin/lib/mono/4.5/System.Configuration.dll new file mode 100644 index 0000000..d062f76 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Configuration.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Core.dll b/mono-test/bin/lib/mono/4.5/System.Core.dll new file mode 100644 index 0000000..d53e5fa Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Core.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Data.DataSetExtensions.dll b/mono-test/bin/lib/mono/4.5/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..4fc5c2d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Data.DataSetExtensions.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Data.Linq.dll b/mono-test/bin/lib/mono/4.5/System.Data.Linq.dll new file mode 100644 index 0000000..8760fbd Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Data.Linq.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Data.OracleClient.dll b/mono-test/bin/lib/mono/4.5/System.Data.OracleClient.dll new file mode 100644 index 0000000..6f17f5d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Data.OracleClient.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Data.Services.Client.dll b/mono-test/bin/lib/mono/4.5/System.Data.Services.Client.dll new file mode 100644 index 0000000..8c1e7fa Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Data.Services.Client.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Data.Services.dll b/mono-test/bin/lib/mono/4.5/System.Data.Services.dll new file mode 100644 index 0000000..fadfaec Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Data.Services.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Data.dll b/mono-test/bin/lib/mono/4.5/System.Data.dll new file mode 100644 index 0000000..734ef86 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Data.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Design.dll b/mono-test/bin/lib/mono/4.5/System.Design.dll new file mode 100644 index 0000000..deebe1e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Design.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.DirectoryServices.Protocols.dll b/mono-test/bin/lib/mono/4.5/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..1b35f52 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.DirectoryServices.Protocols.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.DirectoryServices.dll b/mono-test/bin/lib/mono/4.5/System.DirectoryServices.dll new file mode 100644 index 0000000..c76405e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.DirectoryServices.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Drawing.Design.dll b/mono-test/bin/lib/mono/4.5/System.Drawing.Design.dll new file mode 100644 index 0000000..854ccff Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Drawing.Design.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Drawing.dll b/mono-test/bin/lib/mono/4.5/System.Drawing.dll new file mode 100644 index 0000000..3aa939e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Drawing.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Dynamic.dll b/mono-test/bin/lib/mono/4.5/System.Dynamic.dll new file mode 100644 index 0000000..d822ece Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Dynamic.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.EnterpriseServices.dll b/mono-test/bin/lib/mono/4.5/System.EnterpriseServices.dll new file mode 100644 index 0000000..953ae7b Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.EnterpriseServices.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.IO.Compression.FileSystem.dll b/mono-test/bin/lib/mono/4.5/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..3333b3c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.IO.Compression.FileSystem.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.IO.Compression.dll b/mono-test/bin/lib/mono/4.5/System.IO.Compression.dll new file mode 100644 index 0000000..328dd5a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.IO.Compression.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.IdentityModel.Selectors.dll b/mono-test/bin/lib/mono/4.5/System.IdentityModel.Selectors.dll new file mode 100644 index 0000000..bc4eaee Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.IdentityModel.Selectors.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.IdentityModel.dll b/mono-test/bin/lib/mono/4.5/System.IdentityModel.dll new file mode 100644 index 0000000..06973e7 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.IdentityModel.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Json.Microsoft.dll b/mono-test/bin/lib/mono/4.5/System.Json.Microsoft.dll new file mode 100644 index 0000000..0e584a4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Json.Microsoft.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Json.dll b/mono-test/bin/lib/mono/4.5/System.Json.dll new file mode 100644 index 0000000..2b3dda6 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Json.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Management.dll b/mono-test/bin/lib/mono/4.5/System.Management.dll new file mode 100644 index 0000000..1b07821 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Management.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Messaging.dll b/mono-test/bin/lib/mono/4.5/System.Messaging.dll new file mode 100644 index 0000000..bfef872 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Messaging.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Net.Http.Formatting.dll b/mono-test/bin/lib/mono/4.5/System.Net.Http.Formatting.dll new file mode 100644 index 0000000..ca97fd8 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Net.Http.Formatting.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Net.Http.WebRequest.dll b/mono-test/bin/lib/mono/4.5/System.Net.Http.WebRequest.dll new file mode 100644 index 0000000..ed0aeaa Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Net.Http.WebRequest.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Net.Http.dll b/mono-test/bin/lib/mono/4.5/System.Net.Http.dll new file mode 100644 index 0000000..83f37c1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Net.Http.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Net.dll b/mono-test/bin/lib/mono/4.5/System.Net.dll new file mode 100644 index 0000000..da6aa24 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Net.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Numerics.dll b/mono-test/bin/lib/mono/4.5/System.Numerics.dll new file mode 100644 index 0000000..8b36373 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Numerics.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Reactive.Core.dll b/mono-test/bin/lib/mono/4.5/System.Reactive.Core.dll new file mode 100644 index 0000000..a43bfb4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Reactive.Core.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Reactive.Debugger.dll b/mono-test/bin/lib/mono/4.5/System.Reactive.Debugger.dll new file mode 100644 index 0000000..13d497c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Reactive.Debugger.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Reactive.Experimental.dll b/mono-test/bin/lib/mono/4.5/System.Reactive.Experimental.dll new file mode 100644 index 0000000..0772577 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Reactive.Experimental.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Reactive.Interfaces.dll b/mono-test/bin/lib/mono/4.5/System.Reactive.Interfaces.dll new file mode 100644 index 0000000..ef0d7b7 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Reactive.Interfaces.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Reactive.Linq.dll b/mono-test/bin/lib/mono/4.5/System.Reactive.Linq.dll new file mode 100644 index 0000000..e036579 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Reactive.Linq.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Reactive.PlatformServices.dll b/mono-test/bin/lib/mono/4.5/System.Reactive.PlatformServices.dll new file mode 100644 index 0000000..98f9292 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Reactive.PlatformServices.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Reactive.Providers.dll b/mono-test/bin/lib/mono/4.5/System.Reactive.Providers.dll new file mode 100644 index 0000000..e54df3f Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Reactive.Providers.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Reactive.Runtime.Remoting.dll b/mono-test/bin/lib/mono/4.5/System.Reactive.Runtime.Remoting.dll new file mode 100644 index 0000000..379e5cb Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Reactive.Runtime.Remoting.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Reactive.Windows.Forms.dll b/mono-test/bin/lib/mono/4.5/System.Reactive.Windows.Forms.dll new file mode 100644 index 0000000..341fe26 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Reactive.Windows.Forms.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Reactive.Windows.Threading.dll b/mono-test/bin/lib/mono/4.5/System.Reactive.Windows.Threading.dll new file mode 100644 index 0000000..d5bb69c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Reactive.Windows.Threading.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Runtime.Caching.dll b/mono-test/bin/lib/mono/4.5/System.Runtime.Caching.dll new file mode 100644 index 0000000..52e7ea5 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Runtime.Caching.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Runtime.DurableInstancing.dll b/mono-test/bin/lib/mono/4.5/System.Runtime.DurableInstancing.dll new file mode 100644 index 0000000..99bb5fb Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Runtime.DurableInstancing.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Runtime.Remoting.dll b/mono-test/bin/lib/mono/4.5/System.Runtime.Remoting.dll new file mode 100644 index 0000000..52be233 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Runtime.Remoting.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Runtime.Serialization.Formatters.Soap.dll b/mono-test/bin/lib/mono/4.5/System.Runtime.Serialization.Formatters.Soap.dll new file mode 100644 index 0000000..a041e19 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Runtime.Serialization.Formatters.Soap.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Runtime.Serialization.dll b/mono-test/bin/lib/mono/4.5/System.Runtime.Serialization.dll new file mode 100644 index 0000000..a1d2052 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Runtime.Serialization.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Security.dll b/mono-test/bin/lib/mono/4.5/System.Security.dll new file mode 100644 index 0000000..b35bdce Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Security.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.ServiceModel.Discovery.dll b/mono-test/bin/lib/mono/4.5/System.ServiceModel.Discovery.dll new file mode 100644 index 0000000..2eba4da Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.ServiceModel.Discovery.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.ServiceModel.Routing.dll b/mono-test/bin/lib/mono/4.5/System.ServiceModel.Routing.dll new file mode 100644 index 0000000..cc44f42 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.ServiceModel.Routing.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.ServiceModel.Web.dll b/mono-test/bin/lib/mono/4.5/System.ServiceModel.Web.dll new file mode 100644 index 0000000..435f6bc Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.ServiceModel.Web.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.ServiceModel.dll b/mono-test/bin/lib/mono/4.5/System.ServiceModel.dll new file mode 100644 index 0000000..0277124 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.ServiceModel.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.ServiceProcess.dll b/mono-test/bin/lib/mono/4.5/System.ServiceProcess.dll new file mode 100644 index 0000000..92c7aa4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.ServiceProcess.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Threading.Tasks.Dataflow.dll b/mono-test/bin/lib/mono/4.5/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..eb4cd0f Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Threading.Tasks.Dataflow.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Transactions.dll b/mono-test/bin/lib/mono/4.5/System.Transactions.dll new file mode 100644 index 0000000..77852b3 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Transactions.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.Abstractions.dll b/mono-test/bin/lib/mono/4.5/System.Web.Abstractions.dll new file mode 100644 index 0000000..e168182 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.Abstractions.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.ApplicationServices.dll b/mono-test/bin/lib/mono/4.5/System.Web.ApplicationServices.dll new file mode 100644 index 0000000..2c49432 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.ApplicationServices.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.DynamicData.dll b/mono-test/bin/lib/mono/4.5/System.Web.DynamicData.dll new file mode 100644 index 0000000..8e20846 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.DynamicData.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.Extensions.Design.dll b/mono-test/bin/lib/mono/4.5/System.Web.Extensions.Design.dll new file mode 100644 index 0000000..79fcd86 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.Extensions.Design.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.Extensions.dll b/mono-test/bin/lib/mono/4.5/System.Web.Extensions.dll new file mode 100644 index 0000000..5c855ee Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.Extensions.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.Http.SelfHost.dll b/mono-test/bin/lib/mono/4.5/System.Web.Http.SelfHost.dll new file mode 100644 index 0000000..66761a7 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.Http.SelfHost.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.Http.WebHost.dll b/mono-test/bin/lib/mono/4.5/System.Web.Http.WebHost.dll new file mode 100644 index 0000000..54fed7b Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.Http.WebHost.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.Http.dll b/mono-test/bin/lib/mono/4.5/System.Web.Http.dll new file mode 100644 index 0000000..9bc0c75 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.Http.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.Mvc.dll b/mono-test/bin/lib/mono/4.5/System.Web.Mvc.dll new file mode 100644 index 0000000..e777e7f Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.Mvc.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.Razor.dll b/mono-test/bin/lib/mono/4.5/System.Web.Razor.dll new file mode 100644 index 0000000..3a35399 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.Razor.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.Routing.dll b/mono-test/bin/lib/mono/4.5/System.Web.Routing.dll new file mode 100644 index 0000000..d7fbd9a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.Routing.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.Services.dll b/mono-test/bin/lib/mono/4.5/System.Web.Services.dll new file mode 100644 index 0000000..b8f6649 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.Services.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.WebPages.Deployment.dll b/mono-test/bin/lib/mono/4.5/System.Web.WebPages.Deployment.dll new file mode 100644 index 0000000..f099270 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.WebPages.Deployment.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.WebPages.Razor.dll b/mono-test/bin/lib/mono/4.5/System.Web.WebPages.Razor.dll new file mode 100644 index 0000000..5edc04e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.WebPages.Razor.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.WebPages.dll b/mono-test/bin/lib/mono/4.5/System.Web.WebPages.dll new file mode 100644 index 0000000..ae9455d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.WebPages.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Web.dll b/mono-test/bin/lib/mono/4.5/System.Web.dll new file mode 100644 index 0000000..5d41173 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Web.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Windows.Forms.DataVisualization.dll b/mono-test/bin/lib/mono/4.5/System.Windows.Forms.DataVisualization.dll new file mode 100644 index 0000000..4f05a6a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Windows.Forms.DataVisualization.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Windows.Forms.dll b/mono-test/bin/lib/mono/4.5/System.Windows.Forms.dll new file mode 100644 index 0000000..2d1f828 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Windows.Forms.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Windows.dll b/mono-test/bin/lib/mono/4.5/System.Windows.dll new file mode 100644 index 0000000..187d219 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Windows.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Xaml.dll b/mono-test/bin/lib/mono/4.5/System.Xaml.dll new file mode 100644 index 0000000..06f977f Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Xaml.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Xml.Linq.dll b/mono-test/bin/lib/mono/4.5/System.Xml.Linq.dll new file mode 100644 index 0000000..2447620 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Xml.Linq.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Xml.Serialization.dll b/mono-test/bin/lib/mono/4.5/System.Xml.Serialization.dll new file mode 100644 index 0000000..01aa95c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Xml.Serialization.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.Xml.dll b/mono-test/bin/lib/mono/4.5/System.Xml.dll new file mode 100644 index 0000000..4d4fcde Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.Xml.dll differ diff --git a/mono-test/bin/lib/mono/4.5/System.dll b/mono-test/bin/lib/mono/4.5/System.dll new file mode 100644 index 0000000..395682d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/System.dll differ diff --git a/mono-test/bin/lib/mono/4.5/WebMatrix.Data.dll b/mono-test/bin/lib/mono/4.5/WebMatrix.Data.dll new file mode 100644 index 0000000..76058c2 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/WebMatrix.Data.dll differ diff --git a/mono-test/bin/lib/mono/4.5/WindowsBase.dll b/mono-test/bin/lib/mono/4.5/WindowsBase.dll new file mode 100644 index 0000000..a3be05e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/WindowsBase.dll differ diff --git a/mono-test/bin/lib/mono/4.5/al.exe b/mono-test/bin/lib/mono/4.5/al.exe new file mode 100644 index 0000000..2f4c7fe Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/al.exe differ diff --git a/mono-test/bin/lib/mono/4.5/al.exe.mdb b/mono-test/bin/lib/mono/4.5/al.exe.mdb new file mode 100644 index 0000000..0962617 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/al.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/browsercaps-updater.exe b/mono-test/bin/lib/mono/4.5/browsercaps-updater.exe new file mode 100644 index 0000000..f8af38e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/browsercaps-updater.exe differ diff --git a/mono-test/bin/lib/mono/4.5/browsercaps-updater.exe.mdb b/mono-test/bin/lib/mono/4.5/browsercaps-updater.exe.mdb new file mode 100644 index 0000000..c88c77f Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/browsercaps-updater.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/caspol.exe b/mono-test/bin/lib/mono/4.5/caspol.exe new file mode 100644 index 0000000..6b980fc Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/caspol.exe differ diff --git a/mono-test/bin/lib/mono/4.5/caspol.exe.mdb b/mono-test/bin/lib/mono/4.5/caspol.exe.mdb new file mode 100644 index 0000000..659c10a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/caspol.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/cccheck.exe b/mono-test/bin/lib/mono/4.5/cccheck.exe new file mode 100644 index 0000000..33f9119 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/cccheck.exe differ diff --git a/mono-test/bin/lib/mono/4.5/cccheck.exe.mdb b/mono-test/bin/lib/mono/4.5/cccheck.exe.mdb new file mode 100644 index 0000000..cee3787 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/cccheck.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/ccrewrite.exe b/mono-test/bin/lib/mono/4.5/ccrewrite.exe new file mode 100644 index 0000000..fc59aa1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/ccrewrite.exe differ diff --git a/mono-test/bin/lib/mono/4.5/ccrewrite.exe.mdb b/mono-test/bin/lib/mono/4.5/ccrewrite.exe.mdb new file mode 100644 index 0000000..83e0764 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/ccrewrite.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/cert2spc.exe b/mono-test/bin/lib/mono/4.5/cert2spc.exe new file mode 100644 index 0000000..df92f9d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/cert2spc.exe differ diff --git a/mono-test/bin/lib/mono/4.5/cert2spc.exe.mdb b/mono-test/bin/lib/mono/4.5/cert2spc.exe.mdb new file mode 100644 index 0000000..e9ee422 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/cert2spc.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/certmgr.exe b/mono-test/bin/lib/mono/4.5/certmgr.exe new file mode 100644 index 0000000..f129f35 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/certmgr.exe differ diff --git a/mono-test/bin/lib/mono/4.5/certmgr.exe.mdb b/mono-test/bin/lib/mono/4.5/certmgr.exe.mdb new file mode 100644 index 0000000..d66246a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/certmgr.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/chktrust.exe b/mono-test/bin/lib/mono/4.5/chktrust.exe new file mode 100644 index 0000000..0083cb3 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/chktrust.exe differ diff --git a/mono-test/bin/lib/mono/4.5/chktrust.exe.mdb b/mono-test/bin/lib/mono/4.5/chktrust.exe.mdb new file mode 100644 index 0000000..b37f3f1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/chktrust.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/crlupdate.exe b/mono-test/bin/lib/mono/4.5/crlupdate.exe new file mode 100644 index 0000000..71b3476 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/crlupdate.exe differ diff --git a/mono-test/bin/lib/mono/4.5/crlupdate.exe.mdb b/mono-test/bin/lib/mono/4.5/crlupdate.exe.mdb new file mode 100644 index 0000000..d974c45 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/crlupdate.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/cscompmgd.dll b/mono-test/bin/lib/mono/4.5/cscompmgd.dll new file mode 100644 index 0000000..b33d4f6 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/cscompmgd.dll differ diff --git a/mono-test/bin/lib/mono/4.5/csharp.exe b/mono-test/bin/lib/mono/4.5/csharp.exe new file mode 100644 index 0000000..b51c346 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/csharp.exe differ diff --git a/mono-test/bin/lib/mono/4.5/csharp.exe.mdb b/mono-test/bin/lib/mono/4.5/csharp.exe.mdb new file mode 100644 index 0000000..481c8ac Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/csharp.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/culevel.exe b/mono-test/bin/lib/mono/4.5/culevel.exe new file mode 100644 index 0000000..e956e7b Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/culevel.exe differ diff --git a/mono-test/bin/lib/mono/4.5/culevel.exe.mdb b/mono-test/bin/lib/mono/4.5/culevel.exe.mdb new file mode 100644 index 0000000..923eda2 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/culevel.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/disco.exe b/mono-test/bin/lib/mono/4.5/disco.exe new file mode 100644 index 0000000..510719d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/disco.exe differ diff --git a/mono-test/bin/lib/mono/4.5/disco.exe.mdb b/mono-test/bin/lib/mono/4.5/disco.exe.mdb new file mode 100644 index 0000000..fe85f17 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/disco.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/dtd2rng.exe b/mono-test/bin/lib/mono/4.5/dtd2rng.exe new file mode 100644 index 0000000..0196c39 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/dtd2rng.exe differ diff --git a/mono-test/bin/lib/mono/4.5/dtd2rng.exe.mdb b/mono-test/bin/lib/mono/4.5/dtd2rng.exe.mdb new file mode 100644 index 0000000..a3f21e1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/dtd2rng.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/dtd2xsd.exe b/mono-test/bin/lib/mono/4.5/dtd2xsd.exe new file mode 100644 index 0000000..e809e5a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/dtd2xsd.exe differ diff --git a/mono-test/bin/lib/mono/4.5/dtd2xsd.exe.mdb b/mono-test/bin/lib/mono/4.5/dtd2xsd.exe.mdb new file mode 100644 index 0000000..c1b2dd1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/dtd2xsd.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/gacutil.exe b/mono-test/bin/lib/mono/4.5/gacutil.exe new file mode 100644 index 0000000..72c63bc Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/gacutil.exe differ diff --git a/mono-test/bin/lib/mono/4.5/gacutil.exe.mdb b/mono-test/bin/lib/mono/4.5/gacutil.exe.mdb new file mode 100644 index 0000000..385ad56 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/gacutil.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/genxs.exe b/mono-test/bin/lib/mono/4.5/genxs.exe new file mode 100644 index 0000000..fddacec Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/genxs.exe differ diff --git a/mono-test/bin/lib/mono/4.5/genxs.exe.mdb b/mono-test/bin/lib/mono/4.5/genxs.exe.mdb new file mode 100644 index 0000000..4105d0a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/genxs.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/httpcfg.exe b/mono-test/bin/lib/mono/4.5/httpcfg.exe new file mode 100644 index 0000000..a7b9add Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/httpcfg.exe differ diff --git a/mono-test/bin/lib/mono/4.5/httpcfg.exe.mdb b/mono-test/bin/lib/mono/4.5/httpcfg.exe.mdb new file mode 100644 index 0000000..3afd37a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/httpcfg.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/ictool.exe b/mono-test/bin/lib/mono/4.5/ictool.exe new file mode 100644 index 0000000..3043bf0 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/ictool.exe differ diff --git a/mono-test/bin/lib/mono/4.5/ictool.exe.mdb b/mono-test/bin/lib/mono/4.5/ictool.exe.mdb new file mode 100644 index 0000000..3fbcc1a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/ictool.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/ilasm.exe b/mono-test/bin/lib/mono/4.5/ilasm.exe new file mode 100644 index 0000000..006e35a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/ilasm.exe differ diff --git a/mono-test/bin/lib/mono/4.5/ilasm.exe.mdb b/mono-test/bin/lib/mono/4.5/ilasm.exe.mdb new file mode 100644 index 0000000..6ef7f55 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/ilasm.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/installutil.exe b/mono-test/bin/lib/mono/4.5/installutil.exe new file mode 100644 index 0000000..593d73d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/installutil.exe differ diff --git a/mono-test/bin/lib/mono/4.5/installutil.exe.mdb b/mono-test/bin/lib/mono/4.5/installutil.exe.mdb new file mode 100644 index 0000000..b3c946c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/installutil.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/installvst.exe b/mono-test/bin/lib/mono/4.5/installvst.exe new file mode 100644 index 0000000..d2d0d2e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/installvst.exe differ diff --git a/mono-test/bin/lib/mono/4.5/installvst.exe.mdb b/mono-test/bin/lib/mono/4.5/installvst.exe.mdb new file mode 100644 index 0000000..2873f95 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/installvst.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/lc.exe b/mono-test/bin/lib/mono/4.5/lc.exe new file mode 100644 index 0000000..0ae35ef Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/lc.exe differ diff --git a/mono-test/bin/lib/mono/4.5/lc.exe.mdb b/mono-test/bin/lib/mono/4.5/lc.exe.mdb new file mode 100644 index 0000000..f75bf9d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/lc.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/macpack.exe b/mono-test/bin/lib/mono/4.5/macpack.exe new file mode 100644 index 0000000..856a4b2 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/macpack.exe differ diff --git a/mono-test/bin/lib/mono/4.5/macpack.exe.mdb b/mono-test/bin/lib/mono/4.5/macpack.exe.mdb new file mode 100644 index 0000000..5f0fa42 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/macpack.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/makecert.exe b/mono-test/bin/lib/mono/4.5/makecert.exe new file mode 100644 index 0000000..fe633ce Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/makecert.exe differ diff --git a/mono-test/bin/lib/mono/4.5/makecert.exe.mdb b/mono-test/bin/lib/mono/4.5/makecert.exe.mdb new file mode 100644 index 0000000..3ba41f2 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/makecert.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/mconfig.exe b/mono-test/bin/lib/mono/4.5/mconfig.exe new file mode 100644 index 0000000..0a17450 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mconfig.exe differ diff --git a/mono-test/bin/lib/mono/4.5/mconfig.exe.mdb b/mono-test/bin/lib/mono/4.5/mconfig.exe.mdb new file mode 100644 index 0000000..57e4b19 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mconfig.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/mcs.exe b/mono-test/bin/lib/mono/4.5/mcs.exe new file mode 100644 index 0000000..1d6624c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mcs.exe differ diff --git a/mono-test/bin/lib/mono/4.5/mcs.exe.mdb b/mono-test/bin/lib/mono/4.5/mcs.exe.mdb new file mode 100644 index 0000000..33720ff Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mcs.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/mdbrebase.exe b/mono-test/bin/lib/mono/4.5/mdbrebase.exe new file mode 100644 index 0000000..c75b5a2 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mdbrebase.exe differ diff --git a/mono-test/bin/lib/mono/4.5/mdbrebase.exe.mdb b/mono-test/bin/lib/mono/4.5/mdbrebase.exe.mdb new file mode 100644 index 0000000..b203873 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mdbrebase.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/mdoc.exe b/mono-test/bin/lib/mono/4.5/mdoc.exe new file mode 100644 index 0000000..6325282 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mdoc.exe differ diff --git a/mono-test/bin/lib/mono/4.5/mdoc.exe.mdb b/mono-test/bin/lib/mono/4.5/mdoc.exe.mdb new file mode 100644 index 0000000..ba6df80 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mdoc.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/mkbundle.exe b/mono-test/bin/lib/mono/4.5/mkbundle.exe new file mode 100644 index 0000000..94f70a6 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mkbundle.exe differ diff --git a/mono-test/bin/lib/mono/4.5/mkbundle.exe.mdb b/mono-test/bin/lib/mono/4.5/mkbundle.exe.mdb new file mode 100644 index 0000000..e35289b Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mkbundle.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/mod.exe b/mono-test/bin/lib/mono/4.5/mod.exe new file mode 100644 index 0000000..04cd4cd Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mod.exe differ diff --git a/mono-test/bin/lib/mono/4.5/mod.exe.mdb b/mono-test/bin/lib/mono/4.5/mod.exe.mdb new file mode 100644 index 0000000..8b6ea8d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mod.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/mono-api-info.exe b/mono-test/bin/lib/mono/4.5/mono-api-info.exe new file mode 100644 index 0000000..c8a0d44 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mono-api-info.exe differ diff --git a/mono-test/bin/lib/mono/4.5/mono-cil-strip.exe b/mono-test/bin/lib/mono/4.5/mono-cil-strip.exe new file mode 100644 index 0000000..9409644 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mono-cil-strip.exe differ diff --git a/mono-test/bin/lib/mono/4.5/mono-cil-strip.exe.mdb b/mono-test/bin/lib/mono/4.5/mono-cil-strip.exe.mdb new file mode 100644 index 0000000..8b60b18 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mono-cil-strip.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/mono-service.exe b/mono-test/bin/lib/mono/4.5/mono-service.exe new file mode 100644 index 0000000..1e65ceb Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mono-service.exe differ diff --git a/mono-test/bin/lib/mono/4.5/mono-service.exe.mdb b/mono-test/bin/lib/mono/4.5/mono-service.exe.mdb new file mode 100644 index 0000000..2809c02 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mono-service.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/mono-shlib-cop.exe b/mono-test/bin/lib/mono/4.5/mono-shlib-cop.exe new file mode 100644 index 0000000..96bed48 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mono-shlib-cop.exe differ diff --git a/mono-test/bin/lib/mono/4.5/mono-shlib-cop.exe.config b/mono-test/bin/lib/mono/4.5/mono-shlib-cop.exe.config new file mode 100644 index 0000000..0e06d21 --- /dev/null +++ b/mono-test/bin/lib/mono/4.5/mono-shlib-cop.exe.config @@ -0,0 +1,4 @@ + + + + diff --git a/mono-test/bin/lib/mono/4.5/mono-shlib-cop.exe.mdb b/mono-test/bin/lib/mono/4.5/mono-shlib-cop.exe.mdb new file mode 100644 index 0000000..395347c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mono-shlib-cop.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/mono-xmltool.exe b/mono-test/bin/lib/mono/4.5/mono-xmltool.exe new file mode 100644 index 0000000..ff5cb3e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mono-xmltool.exe differ diff --git a/mono-test/bin/lib/mono/4.5/mono-xmltool.exe.mdb b/mono-test/bin/lib/mono/4.5/mono-xmltool.exe.mdb new file mode 100644 index 0000000..32e3fa0 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mono-xmltool.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/monolinker.exe b/mono-test/bin/lib/mono/4.5/monolinker.exe new file mode 100644 index 0000000..336f408 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/monolinker.exe differ diff --git a/mono-test/bin/lib/mono/4.5/monolinker.exe.mdb b/mono-test/bin/lib/mono/4.5/monolinker.exe.mdb new file mode 100644 index 0000000..a2e3b29 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/monolinker.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/monop.exe b/mono-test/bin/lib/mono/4.5/monop.exe new file mode 100644 index 0000000..5e05f6e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/monop.exe differ diff --git a/mono-test/bin/lib/mono/4.5/monop.exe.mdb b/mono-test/bin/lib/mono/4.5/monop.exe.mdb new file mode 100644 index 0000000..a0572c4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/monop.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/mozroots.exe b/mono-test/bin/lib/mono/4.5/mozroots.exe new file mode 100644 index 0000000..69782f6 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mozroots.exe differ diff --git a/mono-test/bin/lib/mono/4.5/mozroots.exe.mdb b/mono-test/bin/lib/mono/4.5/mozroots.exe.mdb new file mode 100644 index 0000000..ccdd611 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mozroots.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/mscorlib.dll b/mono-test/bin/lib/mono/4.5/mscorlib.dll new file mode 100644 index 0000000..af209c6 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mscorlib.dll differ diff --git a/mono-test/bin/lib/mono/4.5/mscorlib.dll.mdb_ b/mono-test/bin/lib/mono/4.5/mscorlib.dll.mdb_ new file mode 100644 index 0000000..3edb152 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mscorlib.dll.mdb_ differ diff --git a/mono-test/bin/lib/mono/4.5/mscorlib.dll_ b/mono-test/bin/lib/mono/4.5/mscorlib.dll_ new file mode 100644 index 0000000..9719bf2 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mscorlib.dll_ differ diff --git a/mono-test/bin/lib/mono/4.5/mscorlib.pdb b/mono-test/bin/lib/mono/4.5/mscorlib.pdb new file mode 100644 index 0000000..65cd7fc Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/mscorlib.pdb differ diff --git a/mono-test/bin/lib/mono/4.5/nunit-console-runner.dll b/mono-test/bin/lib/mono/4.5/nunit-console-runner.dll new file mode 100644 index 0000000..820c2fe Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/nunit-console-runner.dll differ diff --git a/mono-test/bin/lib/mono/4.5/nunit-console.exe b/mono-test/bin/lib/mono/4.5/nunit-console.exe new file mode 100644 index 0000000..b1038ff Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/nunit-console.exe differ diff --git a/mono-test/bin/lib/mono/4.5/nunit-console.exe.config b/mono-test/bin/lib/mono/4.5/nunit-console.exe.config new file mode 100644 index 0000000..0f3e3a0 --- /dev/null +++ b/mono-test/bin/lib/mono/4.5/nunit-console.exe.config @@ -0,0 +1,119 @@ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/4.5/nunit-console.exe.mdb b/mono-test/bin/lib/mono/4.5/nunit-console.exe.mdb new file mode 100644 index 0000000..8c31b7f Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/nunit-console.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/nunit.core.dll b/mono-test/bin/lib/mono/4.5/nunit.core.dll new file mode 100644 index 0000000..a821884 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/nunit.core.dll differ diff --git a/mono-test/bin/lib/mono/4.5/nunit.core.extensions.dll b/mono-test/bin/lib/mono/4.5/nunit.core.extensions.dll new file mode 100644 index 0000000..88110b6 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/nunit.core.extensions.dll differ diff --git a/mono-test/bin/lib/mono/4.5/nunit.core.interfaces.dll b/mono-test/bin/lib/mono/4.5/nunit.core.interfaces.dll new file mode 100644 index 0000000..2cf2be7 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/nunit.core.interfaces.dll differ diff --git a/mono-test/bin/lib/mono/4.5/nunit.framework.dll b/mono-test/bin/lib/mono/4.5/nunit.framework.dll new file mode 100644 index 0000000..ff47fd4 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/nunit.framework.dll differ diff --git a/mono-test/bin/lib/mono/4.5/nunit.framework.extensions.dll b/mono-test/bin/lib/mono/4.5/nunit.framework.extensions.dll new file mode 100644 index 0000000..ad391a1 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/nunit.framework.extensions.dll differ diff --git a/mono-test/bin/lib/mono/4.5/nunit.mocks.dll b/mono-test/bin/lib/mono/4.5/nunit.mocks.dll new file mode 100644 index 0000000..8adfb6c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/nunit.mocks.dll differ diff --git a/mono-test/bin/lib/mono/4.5/nunit.util.dll b/mono-test/bin/lib/mono/4.5/nunit.util.dll new file mode 100644 index 0000000..83ffa2e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/nunit.util.dll differ diff --git a/mono-test/bin/lib/mono/4.5/pdb2mdb.exe b/mono-test/bin/lib/mono/4.5/pdb2mdb.exe new file mode 100644 index 0000000..5f13120 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/pdb2mdb.exe differ diff --git a/mono-test/bin/lib/mono/4.5/pdb2mdb.exe.mdb b/mono-test/bin/lib/mono/4.5/pdb2mdb.exe.mdb new file mode 100644 index 0000000..c7b575a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/pdb2mdb.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/permview.exe b/mono-test/bin/lib/mono/4.5/permview.exe new file mode 100644 index 0000000..3d8dc29 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/permview.exe differ diff --git a/mono-test/bin/lib/mono/4.5/permview.exe.mdb b/mono-test/bin/lib/mono/4.5/permview.exe.mdb new file mode 100644 index 0000000..185cb23 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/permview.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/resgen.exe b/mono-test/bin/lib/mono/4.5/resgen.exe new file mode 100644 index 0000000..ba23b99 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/resgen.exe differ diff --git a/mono-test/bin/lib/mono/4.5/resgen.exe.mdb b/mono-test/bin/lib/mono/4.5/resgen.exe.mdb new file mode 100644 index 0000000..1be01ed Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/resgen.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/secutil.exe b/mono-test/bin/lib/mono/4.5/secutil.exe new file mode 100644 index 0000000..af8a12c Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/secutil.exe differ diff --git a/mono-test/bin/lib/mono/4.5/secutil.exe.mdb b/mono-test/bin/lib/mono/4.5/secutil.exe.mdb new file mode 100644 index 0000000..f76300f Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/secutil.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/setreg.exe b/mono-test/bin/lib/mono/4.5/setreg.exe new file mode 100644 index 0000000..d0edf53 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/setreg.exe differ diff --git a/mono-test/bin/lib/mono/4.5/setreg.exe.mdb b/mono-test/bin/lib/mono/4.5/setreg.exe.mdb new file mode 100644 index 0000000..25a5a56 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/setreg.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/sgen.exe b/mono-test/bin/lib/mono/4.5/sgen.exe new file mode 100644 index 0000000..80a66f5 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/sgen.exe differ diff --git a/mono-test/bin/lib/mono/4.5/sgen.exe.mdb b/mono-test/bin/lib/mono/4.5/sgen.exe.mdb new file mode 100644 index 0000000..937814f Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/sgen.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/signcode.exe b/mono-test/bin/lib/mono/4.5/signcode.exe new file mode 100644 index 0000000..0300399 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/signcode.exe differ diff --git a/mono-test/bin/lib/mono/4.5/signcode.exe.mdb b/mono-test/bin/lib/mono/4.5/signcode.exe.mdb new file mode 100644 index 0000000..4e0bc14 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/signcode.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/sn.exe b/mono-test/bin/lib/mono/4.5/sn.exe new file mode 100644 index 0000000..1834e01 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/sn.exe differ diff --git a/mono-test/bin/lib/mono/4.5/sn.exe.mdb b/mono-test/bin/lib/mono/4.5/sn.exe.mdb new file mode 100644 index 0000000..747d4c8 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/sn.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/soapsuds.exe b/mono-test/bin/lib/mono/4.5/soapsuds.exe new file mode 100644 index 0000000..106f370 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/soapsuds.exe differ diff --git a/mono-test/bin/lib/mono/4.5/soapsuds.exe.mdb b/mono-test/bin/lib/mono/4.5/soapsuds.exe.mdb new file mode 100644 index 0000000..b7a838a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/soapsuds.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/sqlmetal.exe b/mono-test/bin/lib/mono/4.5/sqlmetal.exe new file mode 100644 index 0000000..6371551 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/sqlmetal.exe differ diff --git a/mono-test/bin/lib/mono/4.5/sqlmetal.exe.config b/mono-test/bin/lib/mono/4.5/sqlmetal.exe.config new file mode 100644 index 0000000..08ba209 --- /dev/null +++ b/mono-test/bin/lib/mono/4.5/sqlmetal.exe.config @@ -0,0 +1,38 @@ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/4.5/sqlmetal.exe.mdb b/mono-test/bin/lib/mono/4.5/sqlmetal.exe.mdb new file mode 100644 index 0000000..9daac0d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/sqlmetal.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/sqlsharp.exe b/mono-test/bin/lib/mono/4.5/sqlsharp.exe new file mode 100644 index 0000000..1abec68 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/sqlsharp.exe differ diff --git a/mono-test/bin/lib/mono/4.5/sqlsharp.exe.mdb b/mono-test/bin/lib/mono/4.5/sqlsharp.exe.mdb new file mode 100644 index 0000000..fe1a815 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/sqlsharp.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/svcutil.exe b/mono-test/bin/lib/mono/4.5/svcutil.exe new file mode 100644 index 0000000..44762b8 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/svcutil.exe differ diff --git a/mono-test/bin/lib/mono/4.5/svcutil.exe.mdb b/mono-test/bin/lib/mono/4.5/svcutil.exe.mdb new file mode 100644 index 0000000..652498e Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/svcutil.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/wsdl.exe b/mono-test/bin/lib/mono/4.5/wsdl.exe new file mode 100644 index 0000000..2538c7a Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/wsdl.exe differ diff --git a/mono-test/bin/lib/mono/4.5/wsdl.exe.mdb b/mono-test/bin/lib/mono/4.5/wsdl.exe.mdb new file mode 100644 index 0000000..721e269 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/wsdl.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/xbuild.exe b/mono-test/bin/lib/mono/4.5/xbuild.exe new file mode 100644 index 0000000..1871b31 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/xbuild.exe differ diff --git a/mono-test/bin/lib/mono/4.5/xbuild.exe.mdb b/mono-test/bin/lib/mono/4.5/xbuild.exe.mdb new file mode 100644 index 0000000..0609b69 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/xbuild.exe.mdb differ diff --git a/mono-test/bin/lib/mono/4.5/xbuild.rsp b/mono-test/bin/lib/mono/4.5/xbuild.rsp new file mode 100644 index 0000000..9b9ce70 --- /dev/null +++ b/mono-test/bin/lib/mono/4.5/xbuild.rsp @@ -0,0 +1,3 @@ +# xbuild command line options specified here will be used +# by xbuild on every build, unless /noautoresponse is passed +# on the command line. diff --git a/mono-test/bin/lib/mono/4.5/xsd.exe b/mono-test/bin/lib/mono/4.5/xsd.exe new file mode 100644 index 0000000..eeac5f3 Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/xsd.exe differ diff --git a/mono-test/bin/lib/mono/4.5/xsd.exe.mdb b/mono-test/bin/lib/mono/4.5/xsd.exe.mdb new file mode 100644 index 0000000..b7d6c6d Binary files /dev/null and b/mono-test/bin/lib/mono/4.5/xsd.exe.mdb differ diff --git a/mono-test/bin/lib/mono/boo/Boo.Lang.CodeDom.dll b/mono-test/bin/lib/mono/boo/Boo.Lang.CodeDom.dll new file mode 100644 index 0000000..5d866a3 Binary files /dev/null and b/mono-test/bin/lib/mono/boo/Boo.Lang.CodeDom.dll differ diff --git a/mono-test/bin/lib/mono/boo/Boo.Lang.Compiler.dll b/mono-test/bin/lib/mono/boo/Boo.Lang.Compiler.dll new file mode 100644 index 0000000..fb51a9f Binary files /dev/null and b/mono-test/bin/lib/mono/boo/Boo.Lang.Compiler.dll differ diff --git a/mono-test/bin/lib/mono/boo/Boo.Lang.Extensions.dll b/mono-test/bin/lib/mono/boo/Boo.Lang.Extensions.dll new file mode 100644 index 0000000..6b1605e Binary files /dev/null and b/mono-test/bin/lib/mono/boo/Boo.Lang.Extensions.dll differ diff --git a/mono-test/bin/lib/mono/boo/Boo.Lang.Interpreter.dll b/mono-test/bin/lib/mono/boo/Boo.Lang.Interpreter.dll new file mode 100644 index 0000000..4e6500f Binary files /dev/null and b/mono-test/bin/lib/mono/boo/Boo.Lang.Interpreter.dll differ diff --git a/mono-test/bin/lib/mono/boo/Boo.Lang.Parser.dll b/mono-test/bin/lib/mono/boo/Boo.Lang.Parser.dll new file mode 100644 index 0000000..309755c Binary files /dev/null and b/mono-test/bin/lib/mono/boo/Boo.Lang.Parser.dll differ diff --git a/mono-test/bin/lib/mono/boo/Boo.Lang.PatternMatching.dll b/mono-test/bin/lib/mono/boo/Boo.Lang.PatternMatching.dll new file mode 100644 index 0000000..d66d62c Binary files /dev/null and b/mono-test/bin/lib/mono/boo/Boo.Lang.PatternMatching.dll differ diff --git a/mono-test/bin/lib/mono/boo/Boo.Lang.Useful.dll b/mono-test/bin/lib/mono/boo/Boo.Lang.Useful.dll new file mode 100644 index 0000000..f7f865d Binary files /dev/null and b/mono-test/bin/lib/mono/boo/Boo.Lang.Useful.dll differ diff --git a/mono-test/bin/lib/mono/boo/Boo.Lang.dll b/mono-test/bin/lib/mono/boo/Boo.Lang.dll new file mode 100644 index 0000000..48a5578 Binary files /dev/null and b/mono-test/bin/lib/mono/boo/Boo.Lang.dll differ diff --git a/mono-test/bin/lib/mono/compat-2.0/ICSharpCode.SharpZipLib.dll b/mono-test/bin/lib/mono/compat-2.0/ICSharpCode.SharpZipLib.dll new file mode 100644 index 0000000..4d712e5 Binary files /dev/null and b/mono-test/bin/lib/mono/compat-2.0/ICSharpCode.SharpZipLib.dll differ diff --git a/mono-test/bin/lib/mono/compat-2.0/System.Web.Extensions.Design.dll b/mono-test/bin/lib/mono/compat-2.0/System.Web.Extensions.Design.dll new file mode 100644 index 0000000..27de504 Binary files /dev/null and b/mono-test/bin/lib/mono/compat-2.0/System.Web.Extensions.Design.dll differ diff --git a/mono-test/bin/lib/mono/compat-2.0/System.Web.Extensions.dll b/mono-test/bin/lib/mono/compat-2.0/System.Web.Extensions.dll new file mode 100644 index 0000000..11e3f4a Binary files /dev/null and b/mono-test/bin/lib/mono/compat-2.0/System.Web.Extensions.dll differ diff --git a/mono-test/bin/lib/mono/compat-2.0/System.Web.Mvc.dll b/mono-test/bin/lib/mono/compat-2.0/System.Web.Mvc.dll new file mode 100644 index 0000000..ef2d1b1 Binary files /dev/null and b/mono-test/bin/lib/mono/compat-2.0/System.Web.Mvc.dll differ diff --git a/mono-test/bin/lib/mono/gac/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll b/mono-test/bin/lib/mono/gac/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll new file mode 100644 index 0000000..5e40d08 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll differ diff --git a/mono-test/bin/lib/mono/gac/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll.mdb b/mono-test/bin/lib/mono/gac/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll.mdb new file mode 100644 index 0000000..e88c876 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Accessibility/4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll b/mono-test/bin/lib/mono/gac/Accessibility/4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll new file mode 100644 index 0000000..57366bc Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Accessibility/4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll differ diff --git a/mono-test/bin/lib/mono/gac/Accessibility/4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll.mdb b/mono-test/bin/lib/mono/gac/Accessibility/4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll.mdb new file mode 100644 index 0000000..b63abe9 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Accessibility/4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Boo.Lang.CodeDom/2.0.9.4__32c39770e9a21a67/Boo.Lang.CodeDom.dll b/mono-test/bin/lib/mono/gac/Boo.Lang.CodeDom/2.0.9.4__32c39770e9a21a67/Boo.Lang.CodeDom.dll new file mode 100644 index 0000000..5d866a3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Boo.Lang.CodeDom/2.0.9.4__32c39770e9a21a67/Boo.Lang.CodeDom.dll differ diff --git a/mono-test/bin/lib/mono/gac/Boo.Lang.Compiler/2.0.9.4__32c39770e9a21a67/Boo.Lang.Compiler.dll b/mono-test/bin/lib/mono/gac/Boo.Lang.Compiler/2.0.9.4__32c39770e9a21a67/Boo.Lang.Compiler.dll new file mode 100644 index 0000000..fb51a9f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Boo.Lang.Compiler/2.0.9.4__32c39770e9a21a67/Boo.Lang.Compiler.dll differ diff --git a/mono-test/bin/lib/mono/gac/Boo.Lang.Extensions/2.0.9.4__32c39770e9a21a67/Boo.Lang.Extensions.dll b/mono-test/bin/lib/mono/gac/Boo.Lang.Extensions/2.0.9.4__32c39770e9a21a67/Boo.Lang.Extensions.dll new file mode 100644 index 0000000..6b1605e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Boo.Lang.Extensions/2.0.9.4__32c39770e9a21a67/Boo.Lang.Extensions.dll differ diff --git a/mono-test/bin/lib/mono/gac/Boo.Lang.Interpreter/2.0.9.4__32c39770e9a21a67/Boo.Lang.Interpreter.dll b/mono-test/bin/lib/mono/gac/Boo.Lang.Interpreter/2.0.9.4__32c39770e9a21a67/Boo.Lang.Interpreter.dll new file mode 100644 index 0000000..4e6500f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Boo.Lang.Interpreter/2.0.9.4__32c39770e9a21a67/Boo.Lang.Interpreter.dll differ diff --git a/mono-test/bin/lib/mono/gac/Boo.Lang.Parser/2.0.9.4__32c39770e9a21a67/Boo.Lang.Parser.dll b/mono-test/bin/lib/mono/gac/Boo.Lang.Parser/2.0.9.4__32c39770e9a21a67/Boo.Lang.Parser.dll new file mode 100644 index 0000000..309755c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Boo.Lang.Parser/2.0.9.4__32c39770e9a21a67/Boo.Lang.Parser.dll differ diff --git a/mono-test/bin/lib/mono/gac/Boo.Lang.PatternMatching/2.0.9.4__32c39770e9a21a67/Boo.Lang.PatternMatching.dll b/mono-test/bin/lib/mono/gac/Boo.Lang.PatternMatching/2.0.9.4__32c39770e9a21a67/Boo.Lang.PatternMatching.dll new file mode 100644 index 0000000..d66d62c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Boo.Lang.PatternMatching/2.0.9.4__32c39770e9a21a67/Boo.Lang.PatternMatching.dll differ diff --git a/mono-test/bin/lib/mono/gac/Boo.Lang.Useful/2.0.9.4__32c39770e9a21a67/Boo.Lang.Useful.dll b/mono-test/bin/lib/mono/gac/Boo.Lang.Useful/2.0.9.4__32c39770e9a21a67/Boo.Lang.Useful.dll new file mode 100644 index 0000000..f7f865d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Boo.Lang.Useful/2.0.9.4__32c39770e9a21a67/Boo.Lang.Useful.dll differ diff --git a/mono-test/bin/lib/mono/gac/Boo.Lang/2.0.9.4__32c39770e9a21a67/Boo.Lang.dll b/mono-test/bin/lib/mono/gac/Boo.Lang/2.0.9.4__32c39770e9a21a67/Boo.Lang.dll new file mode 100644 index 0000000..48a5578 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Boo.Lang/2.0.9.4__32c39770e9a21a67/Boo.Lang.dll differ diff --git a/mono-test/bin/lib/mono/gac/Commons.Xml.Relaxng/2.0.0.0__0738eb9f132ed756/Commons.Xml.Relaxng.dll b/mono-test/bin/lib/mono/gac/Commons.Xml.Relaxng/2.0.0.0__0738eb9f132ed756/Commons.Xml.Relaxng.dll new file mode 100644 index 0000000..df2290e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Commons.Xml.Relaxng/2.0.0.0__0738eb9f132ed756/Commons.Xml.Relaxng.dll differ diff --git a/mono-test/bin/lib/mono/gac/Commons.Xml.Relaxng/2.0.0.0__0738eb9f132ed756/Commons.Xml.Relaxng.dll.mdb b/mono-test/bin/lib/mono/gac/Commons.Xml.Relaxng/2.0.0.0__0738eb9f132ed756/Commons.Xml.Relaxng.dll.mdb new file mode 100644 index 0000000..9915396 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Commons.Xml.Relaxng/2.0.0.0__0738eb9f132ed756/Commons.Xml.Relaxng.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Commons.Xml.Relaxng/4.0.0.0__0738eb9f132ed756/Commons.Xml.Relaxng.dll b/mono-test/bin/lib/mono/gac/Commons.Xml.Relaxng/4.0.0.0__0738eb9f132ed756/Commons.Xml.Relaxng.dll new file mode 100644 index 0000000..65f374c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Commons.Xml.Relaxng/4.0.0.0__0738eb9f132ed756/Commons.Xml.Relaxng.dll differ diff --git a/mono-test/bin/lib/mono/gac/Commons.Xml.Relaxng/4.0.0.0__0738eb9f132ed756/Commons.Xml.Relaxng.dll.mdb b/mono-test/bin/lib/mono/gac/Commons.Xml.Relaxng/4.0.0.0__0738eb9f132ed756/Commons.Xml.Relaxng.dll.mdb new file mode 100644 index 0000000..49d061e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Commons.Xml.Relaxng/4.0.0.0__0738eb9f132ed756/Commons.Xml.Relaxng.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/CustomMarshalers/2.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll b/mono-test/bin/lib/mono/gac/CustomMarshalers/2.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll new file mode 100644 index 0000000..c0cc176 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/CustomMarshalers/2.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll differ diff --git a/mono-test/bin/lib/mono/gac/CustomMarshalers/2.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll.mdb b/mono-test/bin/lib/mono/gac/CustomMarshalers/2.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll.mdb new file mode 100644 index 0000000..04e31e8 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/CustomMarshalers/2.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/CustomMarshalers/4.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll b/mono-test/bin/lib/mono/gac/CustomMarshalers/4.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll new file mode 100644 index 0000000..6fd5633 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/CustomMarshalers/4.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll differ diff --git a/mono-test/bin/lib/mono/gac/CustomMarshalers/4.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll.mdb b/mono-test/bin/lib/mono/gac/CustomMarshalers/4.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll.mdb new file mode 100644 index 0000000..33d3592 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/CustomMarshalers/4.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/EntityFramework.SqlServer/6.0.0.0__b77a5c561934e089/EntityFramework.SqlServer.dll b/mono-test/bin/lib/mono/gac/EntityFramework.SqlServer/6.0.0.0__b77a5c561934e089/EntityFramework.SqlServer.dll new file mode 100644 index 0000000..05bc2f3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/EntityFramework.SqlServer/6.0.0.0__b77a5c561934e089/EntityFramework.SqlServer.dll differ diff --git a/mono-test/bin/lib/mono/gac/EntityFramework.SqlServer/6.0.0.0__b77a5c561934e089/EntityFramework.SqlServer.dll.mdb b/mono-test/bin/lib/mono/gac/EntityFramework.SqlServer/6.0.0.0__b77a5c561934e089/EntityFramework.SqlServer.dll.mdb new file mode 100644 index 0000000..c67d4ae Binary files /dev/null and b/mono-test/bin/lib/mono/gac/EntityFramework.SqlServer/6.0.0.0__b77a5c561934e089/EntityFramework.SqlServer.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/EntityFramework/6.0.0.0__b77a5c561934e089/EntityFramework.dll b/mono-test/bin/lib/mono/gac/EntityFramework/6.0.0.0__b77a5c561934e089/EntityFramework.dll new file mode 100644 index 0000000..7dea282 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/EntityFramework/6.0.0.0__b77a5c561934e089/EntityFramework.dll differ diff --git a/mono-test/bin/lib/mono/gac/EntityFramework/6.0.0.0__b77a5c561934e089/EntityFramework.dll.mdb b/mono-test/bin/lib/mono/gac/EntityFramework/6.0.0.0__b77a5c561934e089/EntityFramework.dll.mdb new file mode 100644 index 0000000..f257c94 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/EntityFramework/6.0.0.0__b77a5c561934e089/EntityFramework.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/I18N.CJK/2.0.0.0__0738eb9f132ed756/I18N.CJK.dll b/mono-test/bin/lib/mono/gac/I18N.CJK/2.0.0.0__0738eb9f132ed756/I18N.CJK.dll new file mode 100644 index 0000000..48a600a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.CJK/2.0.0.0__0738eb9f132ed756/I18N.CJK.dll differ diff --git a/mono-test/bin/lib/mono/gac/I18N.CJK/2.0.0.0__0738eb9f132ed756/I18N.CJK.dll.mdb b/mono-test/bin/lib/mono/gac/I18N.CJK/2.0.0.0__0738eb9f132ed756/I18N.CJK.dll.mdb new file mode 100644 index 0000000..1b4ad25 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.CJK/2.0.0.0__0738eb9f132ed756/I18N.CJK.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/I18N.CJK/4.0.0.0__0738eb9f132ed756/I18N.CJK.dll b/mono-test/bin/lib/mono/gac/I18N.CJK/4.0.0.0__0738eb9f132ed756/I18N.CJK.dll new file mode 100644 index 0000000..4b8cbba Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.CJK/4.0.0.0__0738eb9f132ed756/I18N.CJK.dll differ diff --git a/mono-test/bin/lib/mono/gac/I18N.CJK/4.0.0.0__0738eb9f132ed756/I18N.CJK.dll.mdb b/mono-test/bin/lib/mono/gac/I18N.CJK/4.0.0.0__0738eb9f132ed756/I18N.CJK.dll.mdb new file mode 100644 index 0000000..c9ef349 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.CJK/4.0.0.0__0738eb9f132ed756/I18N.CJK.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/I18N.MidEast/2.0.0.0__0738eb9f132ed756/I18N.MidEast.dll b/mono-test/bin/lib/mono/gac/I18N.MidEast/2.0.0.0__0738eb9f132ed756/I18N.MidEast.dll new file mode 100644 index 0000000..3cfacd8 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.MidEast/2.0.0.0__0738eb9f132ed756/I18N.MidEast.dll differ diff --git a/mono-test/bin/lib/mono/gac/I18N.MidEast/2.0.0.0__0738eb9f132ed756/I18N.MidEast.dll.mdb b/mono-test/bin/lib/mono/gac/I18N.MidEast/2.0.0.0__0738eb9f132ed756/I18N.MidEast.dll.mdb new file mode 100644 index 0000000..0dea9ae Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.MidEast/2.0.0.0__0738eb9f132ed756/I18N.MidEast.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/I18N.MidEast/4.0.0.0__0738eb9f132ed756/I18N.MidEast.dll b/mono-test/bin/lib/mono/gac/I18N.MidEast/4.0.0.0__0738eb9f132ed756/I18N.MidEast.dll new file mode 100644 index 0000000..81ec2a4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.MidEast/4.0.0.0__0738eb9f132ed756/I18N.MidEast.dll differ diff --git a/mono-test/bin/lib/mono/gac/I18N.MidEast/4.0.0.0__0738eb9f132ed756/I18N.MidEast.dll.mdb b/mono-test/bin/lib/mono/gac/I18N.MidEast/4.0.0.0__0738eb9f132ed756/I18N.MidEast.dll.mdb new file mode 100644 index 0000000..736acb7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.MidEast/4.0.0.0__0738eb9f132ed756/I18N.MidEast.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/I18N.Other/2.0.0.0__0738eb9f132ed756/I18N.Other.dll b/mono-test/bin/lib/mono/gac/I18N.Other/2.0.0.0__0738eb9f132ed756/I18N.Other.dll new file mode 100644 index 0000000..6e30831 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.Other/2.0.0.0__0738eb9f132ed756/I18N.Other.dll differ diff --git a/mono-test/bin/lib/mono/gac/I18N.Other/2.0.0.0__0738eb9f132ed756/I18N.Other.dll.mdb b/mono-test/bin/lib/mono/gac/I18N.Other/2.0.0.0__0738eb9f132ed756/I18N.Other.dll.mdb new file mode 100644 index 0000000..6fd0b22 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.Other/2.0.0.0__0738eb9f132ed756/I18N.Other.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/I18N.Other/4.0.0.0__0738eb9f132ed756/I18N.Other.dll b/mono-test/bin/lib/mono/gac/I18N.Other/4.0.0.0__0738eb9f132ed756/I18N.Other.dll new file mode 100644 index 0000000..c88ab39 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.Other/4.0.0.0__0738eb9f132ed756/I18N.Other.dll differ diff --git a/mono-test/bin/lib/mono/gac/I18N.Other/4.0.0.0__0738eb9f132ed756/I18N.Other.dll.mdb b/mono-test/bin/lib/mono/gac/I18N.Other/4.0.0.0__0738eb9f132ed756/I18N.Other.dll.mdb new file mode 100644 index 0000000..a278bef Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.Other/4.0.0.0__0738eb9f132ed756/I18N.Other.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/I18N.Rare/2.0.0.0__0738eb9f132ed756/I18N.Rare.dll b/mono-test/bin/lib/mono/gac/I18N.Rare/2.0.0.0__0738eb9f132ed756/I18N.Rare.dll new file mode 100644 index 0000000..68e01ea Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.Rare/2.0.0.0__0738eb9f132ed756/I18N.Rare.dll differ diff --git a/mono-test/bin/lib/mono/gac/I18N.Rare/2.0.0.0__0738eb9f132ed756/I18N.Rare.dll.mdb b/mono-test/bin/lib/mono/gac/I18N.Rare/2.0.0.0__0738eb9f132ed756/I18N.Rare.dll.mdb new file mode 100644 index 0000000..75838a2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.Rare/2.0.0.0__0738eb9f132ed756/I18N.Rare.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/I18N.Rare/4.0.0.0__0738eb9f132ed756/I18N.Rare.dll b/mono-test/bin/lib/mono/gac/I18N.Rare/4.0.0.0__0738eb9f132ed756/I18N.Rare.dll new file mode 100644 index 0000000..e188c58 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.Rare/4.0.0.0__0738eb9f132ed756/I18N.Rare.dll differ diff --git a/mono-test/bin/lib/mono/gac/I18N.Rare/4.0.0.0__0738eb9f132ed756/I18N.Rare.dll.mdb b/mono-test/bin/lib/mono/gac/I18N.Rare/4.0.0.0__0738eb9f132ed756/I18N.Rare.dll.mdb new file mode 100644 index 0000000..ea2ba8c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.Rare/4.0.0.0__0738eb9f132ed756/I18N.Rare.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/I18N.West/2.0.0.0__0738eb9f132ed756/I18N.West.dll b/mono-test/bin/lib/mono/gac/I18N.West/2.0.0.0__0738eb9f132ed756/I18N.West.dll new file mode 100644 index 0000000..bf7a5d6 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.West/2.0.0.0__0738eb9f132ed756/I18N.West.dll differ diff --git a/mono-test/bin/lib/mono/gac/I18N.West/2.0.0.0__0738eb9f132ed756/I18N.West.dll.mdb b/mono-test/bin/lib/mono/gac/I18N.West/2.0.0.0__0738eb9f132ed756/I18N.West.dll.mdb new file mode 100644 index 0000000..de84c75 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.West/2.0.0.0__0738eb9f132ed756/I18N.West.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/I18N.West/4.0.0.0__0738eb9f132ed756/I18N.West.dll b/mono-test/bin/lib/mono/gac/I18N.West/4.0.0.0__0738eb9f132ed756/I18N.West.dll new file mode 100644 index 0000000..1ff54f7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.West/4.0.0.0__0738eb9f132ed756/I18N.West.dll differ diff --git a/mono-test/bin/lib/mono/gac/I18N.West/4.0.0.0__0738eb9f132ed756/I18N.West.dll.mdb b/mono-test/bin/lib/mono/gac/I18N.West/4.0.0.0__0738eb9f132ed756/I18N.West.dll.mdb new file mode 100644 index 0000000..4c4733c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N.West/4.0.0.0__0738eb9f132ed756/I18N.West.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/I18N/2.0.0.0__0738eb9f132ed756/I18N.dll b/mono-test/bin/lib/mono/gac/I18N/2.0.0.0__0738eb9f132ed756/I18N.dll new file mode 100644 index 0000000..21afd5d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N/2.0.0.0__0738eb9f132ed756/I18N.dll differ diff --git a/mono-test/bin/lib/mono/gac/I18N/2.0.0.0__0738eb9f132ed756/I18N.dll.mdb b/mono-test/bin/lib/mono/gac/I18N/2.0.0.0__0738eb9f132ed756/I18N.dll.mdb new file mode 100644 index 0000000..e7dd46d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N/2.0.0.0__0738eb9f132ed756/I18N.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/I18N/4.0.0.0__0738eb9f132ed756/I18N.dll b/mono-test/bin/lib/mono/gac/I18N/4.0.0.0__0738eb9f132ed756/I18N.dll new file mode 100644 index 0000000..6f29357 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N/4.0.0.0__0738eb9f132ed756/I18N.dll differ diff --git a/mono-test/bin/lib/mono/gac/I18N/4.0.0.0__0738eb9f132ed756/I18N.dll.mdb b/mono-test/bin/lib/mono/gac/I18N/4.0.0.0__0738eb9f132ed756/I18N.dll.mdb new file mode 100644 index 0000000..ade32d3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/I18N/4.0.0.0__0738eb9f132ed756/I18N.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/IBM.Data.DB2/1.0.0.0__7c307b91aa13d208/IBM.Data.DB2.dll b/mono-test/bin/lib/mono/gac/IBM.Data.DB2/1.0.0.0__7c307b91aa13d208/IBM.Data.DB2.dll new file mode 100644 index 0000000..32d7138 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IBM.Data.DB2/1.0.0.0__7c307b91aa13d208/IBM.Data.DB2.dll differ diff --git a/mono-test/bin/lib/mono/gac/IBM.Data.DB2/1.0.0.0__7c307b91aa13d208/IBM.Data.DB2.dll.mdb b/mono-test/bin/lib/mono/gac/IBM.Data.DB2/1.0.0.0__7c307b91aa13d208/IBM.Data.DB2.dll.mdb new file mode 100644 index 0000000..13623f2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IBM.Data.DB2/1.0.0.0__7c307b91aa13d208/IBM.Data.DB2.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/2.6.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll b/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/2.6.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll new file mode 100644 index 0000000..4d712e5 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/2.6.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll differ diff --git a/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/2.6.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll.mdb b/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/2.6.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll.mdb new file mode 100644 index 0000000..d9788ed Binary files /dev/null and b/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/2.6.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/2.84.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll b/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/2.84.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll new file mode 100644 index 0000000..77f7990 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/2.84.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll differ diff --git a/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/2.84.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll.mdb b/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/2.84.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll.mdb new file mode 100644 index 0000000..250697e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/2.84.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/4.84.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll b/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/4.84.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll new file mode 100644 index 0000000..e4ffb68 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/4.84.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll differ diff --git a/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/4.84.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll.mdb b/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/4.84.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll.mdb new file mode 100644 index 0000000..58a7090 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/ICSharpCode.SharpZipLib/4.84.0.0__1b03e6acf1164f73/ICSharpCode.SharpZipLib.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.AWT.WinForms/0.46.0.1__13235d27fcbfff58/IKVM.AWT.WinForms.dll b/mono-test/bin/lib/mono/gac/IKVM.AWT.WinForms/0.46.0.1__13235d27fcbfff58/IKVM.AWT.WinForms.dll new file mode 100644 index 0000000..f0ca763 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.AWT.WinForms/0.46.0.1__13235d27fcbfff58/IKVM.AWT.WinForms.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Beans/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Beans.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Beans/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Beans.dll new file mode 100644 index 0000000..4c4b169 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Beans/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Beans.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Charsets/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Charsets.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Charsets/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Charsets.dll new file mode 100644 index 0000000..917fa14 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Charsets/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Charsets.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Corba/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Corba.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Corba/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Corba.dll new file mode 100644 index 0000000..8b24d69 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Corba/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Corba.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Core/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Core.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Core/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Core.dll new file mode 100644 index 0000000..a3da2dd Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Core/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Core.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Jdbc/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Jdbc.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Jdbc/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Jdbc.dll new file mode 100644 index 0000000..59355d7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Jdbc/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Jdbc.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Management/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Management.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Management/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Management.dll new file mode 100644 index 0000000..e2e2145 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Management/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Management.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Media/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Media.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Media/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Media.dll new file mode 100644 index 0000000..0d857de Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Media/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Media.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Misc/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Misc.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Misc/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Misc.dll new file mode 100644 index 0000000..735d25a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Misc/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Misc.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Naming/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Naming.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Naming/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Naming.dll new file mode 100644 index 0000000..84d7ac7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Naming/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Naming.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Remoting/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Remoting.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Remoting/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Remoting.dll new file mode 100644 index 0000000..34fdb7d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Remoting/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Remoting.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Security/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Security.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Security/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Security.dll new file mode 100644 index 0000000..829c418 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Security/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Security.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.SwingAWT/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.SwingAWT.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.SwingAWT/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.SwingAWT.dll new file mode 100644 index 0000000..3ba4380 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.SwingAWT/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.SwingAWT.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Text/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Text.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Text/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Text.dll new file mode 100644 index 0000000..23b9f3c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Text/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Text.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Tools/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Tools.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Tools/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Tools.dll new file mode 100644 index 0000000..f639fd0 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Tools/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Tools.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Util/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Util.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Util/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Util.dll new file mode 100644 index 0000000..cc73135 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.Util/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.Util.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.API/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.API.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.API/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.API.dll new file mode 100644 index 0000000..13cbc1b Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.API/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.API.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.Bind/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.Bind.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.Bind/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.Bind.dll new file mode 100644 index 0000000..c67d9f9 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.Bind/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.Bind.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.Crypto/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.Crypto.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.Crypto/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.Crypto.dll new file mode 100644 index 0000000..1ea0edf Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.Crypto/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.Crypto.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.Parse/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.Parse.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.Parse/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.Parse.dll new file mode 100644 index 0000000..909bbdf Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.Parse/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.Parse.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.Transform/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.Transform.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.Transform/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.Transform.dll new file mode 100644 index 0000000..25126bb Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.Transform/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.Transform.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.WebServices/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.WebServices.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.WebServices/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.WebServices.dll new file mode 100644 index 0000000..de469d7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.WebServices/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.WebServices.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.XPath/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.XPath.dll b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.XPath/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.XPath.dll new file mode 100644 index 0000000..03ad37c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.OpenJDK.XML.XPath/0.46.0.1__13235d27fcbfff58/IKVM.OpenJDK.XML.XPath.dll differ diff --git a/mono-test/bin/lib/mono/gac/IKVM.Runtime/0.46.0.1__13235d27fcbfff58/IKVM.Runtime.dll b/mono-test/bin/lib/mono/gac/IKVM.Runtime/0.46.0.1__13235d27fcbfff58/IKVM.Runtime.dll new file mode 100644 index 0000000..7c34489 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/IKVM.Runtime/0.46.0.1__13235d27fcbfff58/IKVM.Runtime.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll new file mode 100644 index 0000000..daa6561 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll.mdb new file mode 100644 index 0000000..370dfde Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll new file mode 100644 index 0000000..becf4a2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll.mdb new file mode 100644 index 0000000..1dff42f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll new file mode 100644 index 0000000..749c372 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll.mdb new file mode 100644 index 0000000..c504afd Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Engine/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Engine.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll new file mode 100644 index 0000000..20a0880 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll.mdb new file mode 100644 index 0000000..1f3d78a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll new file mode 100644 index 0000000..a23d214 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll.mdb new file mode 100644 index 0000000..5b7dc7e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll new file mode 100644 index 0000000..5af15f6 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll.mdb new file mode 100644 index 0000000..9c2be81 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Framework/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Framework.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks.v3.5/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.v3.5.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks.v3.5/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.v3.5.dll new file mode 100644 index 0000000..318b1e4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks.v3.5/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.v3.5.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks.v3.5/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.v3.5.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks.v3.5/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.v3.5.dll.mdb new file mode 100644 index 0000000..ea859c5 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks.v3.5/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.v3.5.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks.v4.0/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.v4.0.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks.v4.0/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.v4.0.dll new file mode 100644 index 0000000..839c17b Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks.v4.0/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.v4.0.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks.v4.0/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.v4.0.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks.v4.0/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.v4.0.dll.mdb new file mode 100644 index 0000000..857c2c3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks.v4.0/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.v4.0.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.dll new file mode 100644 index 0000000..ea0d6a2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.dll.mdb new file mode 100644 index 0000000..e49d7ac Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Tasks/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Tasks.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities.v3.5/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.v3.5.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities.v3.5/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.v3.5.dll new file mode 100644 index 0000000..0dca32f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities.v3.5/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.v3.5.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities.v3.5/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.v3.5.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities.v3.5/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.v3.5.dll.mdb new file mode 100644 index 0000000..fcec322 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities.v3.5/3.5.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.v3.5.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities.v4.0/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.v4.0.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities.v4.0/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.v4.0.dll new file mode 100644 index 0000000..fe1685c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities.v4.0/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.v4.0.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities.v4.0/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.v4.0.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities.v4.0/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.v4.0.dll.mdb new file mode 100644 index 0000000..04de15b Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities.v4.0/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.v4.0.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.dll new file mode 100644 index 0000000..ab24e6c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.dll.mdb new file mode 100644 index 0000000..ed160b6 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build.Utilities/2.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.Utilities.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.dll b/mono-test/bin/lib/mono/gac/Microsoft.Build/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.dll new file mode 100644 index 0000000..78c2e86 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Build/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Build/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.dll.mdb new file mode 100644 index 0000000..b51d0fd Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Build/4.0.0.0__b03f5f7f11d50a3a/Microsoft.Build.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.CSharp/4.0.0.0__b03f5f7f11d50a3a/Microsoft.CSharp.dll b/mono-test/bin/lib/mono/gac/Microsoft.CSharp/4.0.0.0__b03f5f7f11d50a3a/Microsoft.CSharp.dll new file mode 100644 index 0000000..c162d6f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.CSharp/4.0.0.0__b03f5f7f11d50a3a/Microsoft.CSharp.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.CSharp/4.0.0.0__b03f5f7f11d50a3a/Microsoft.CSharp.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.CSharp/4.0.0.0__b03f5f7f11d50a3a/Microsoft.CSharp.dll.mdb new file mode 100644 index 0000000..d1e2de3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.CSharp/4.0.0.0__b03f5f7f11d50a3a/Microsoft.CSharp.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.VisualBasic/10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll b/mono-test/bin/lib/mono/gac/Microsoft.VisualBasic/10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..017191d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.VisualBasic/10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.VisualBasic/10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.VisualBasic/10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll.mdb new file mode 100644 index 0000000..5cd56c0 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.VisualBasic/10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll b/mono-test/bin/lib/mono/gac/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..fdbfe37 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll.mdb new file mode 100644 index 0000000..87634a0 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.VisualC/0.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualC.dll b/mono-test/bin/lib/mono/gac/Microsoft.VisualC/0.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualC.dll new file mode 100644 index 0000000..19e0a8f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.VisualC/0.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualC.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.VisualC/0.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualC.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.VisualC/0.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualC.dll.mdb new file mode 100644 index 0000000..ac22186 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.VisualC/0.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualC.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.VisualC/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualC.dll b/mono-test/bin/lib/mono/gac/Microsoft.VisualC/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualC.dll new file mode 100644 index 0000000..09b6577 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.VisualC/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualC.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.VisualC/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualC.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.VisualC/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualC.dll.mdb new file mode 100644 index 0000000..750a068 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.VisualC/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualC.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Web.Infrastructure/1.0.0.0__31bf3856ad364e35/Microsoft.Web.Infrastructure.dll b/mono-test/bin/lib/mono/gac/Microsoft.Web.Infrastructure/1.0.0.0__31bf3856ad364e35/Microsoft.Web.Infrastructure.dll new file mode 100644 index 0000000..c9a3ed4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Web.Infrastructure/1.0.0.0__31bf3856ad364e35/Microsoft.Web.Infrastructure.dll differ diff --git a/mono-test/bin/lib/mono/gac/Microsoft.Web.Infrastructure/1.0.0.0__31bf3856ad364e35/Microsoft.Web.Infrastructure.dll.mdb b/mono-test/bin/lib/mono/gac/Microsoft.Web.Infrastructure/1.0.0.0__31bf3856ad364e35/Microsoft.Web.Infrastructure.dll.mdb new file mode 100644 index 0000000..631d5b0 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Microsoft.Web.Infrastructure/1.0.0.0__31bf3856ad364e35/Microsoft.Web.Infrastructure.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.C5/1.1.1.0__ba07f434b1c35cbd/Mono.C5.dll b/mono-test/bin/lib/mono/gac/Mono.C5/1.1.1.0__ba07f434b1c35cbd/Mono.C5.dll new file mode 100644 index 0000000..a05cf90 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.C5/1.1.1.0__ba07f434b1c35cbd/Mono.C5.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.C5/1.1.1.0__ba07f434b1c35cbd/Mono.C5.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.C5/1.1.1.0__ba07f434b1c35cbd/Mono.C5.dll.mdb new file mode 100644 index 0000000..ffb3db7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.C5/1.1.1.0__ba07f434b1c35cbd/Mono.C5.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.CSharp/2.0.0.0__0738eb9f132ed756/Mono.CSharp.dll b/mono-test/bin/lib/mono/gac/Mono.CSharp/2.0.0.0__0738eb9f132ed756/Mono.CSharp.dll new file mode 100644 index 0000000..b31a5da Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.CSharp/2.0.0.0__0738eb9f132ed756/Mono.CSharp.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.CSharp/2.0.0.0__0738eb9f132ed756/Mono.CSharp.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.CSharp/2.0.0.0__0738eb9f132ed756/Mono.CSharp.dll.mdb new file mode 100644 index 0000000..1b92b21 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.CSharp/2.0.0.0__0738eb9f132ed756/Mono.CSharp.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.CSharp/4.0.0.0__0738eb9f132ed756/Mono.CSharp.dll b/mono-test/bin/lib/mono/gac/Mono.CSharp/4.0.0.0__0738eb9f132ed756/Mono.CSharp.dll new file mode 100644 index 0000000..ced1850 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.CSharp/4.0.0.0__0738eb9f132ed756/Mono.CSharp.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.CSharp/4.0.0.0__0738eb9f132ed756/Mono.CSharp.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.CSharp/4.0.0.0__0738eb9f132ed756/Mono.CSharp.dll.mdb new file mode 100644 index 0000000..9716441 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.CSharp/4.0.0.0__0738eb9f132ed756/Mono.CSharp.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cairo/2.0.0.0__0738eb9f132ed756/Mono.Cairo.dll b/mono-test/bin/lib/mono/gac/Mono.Cairo/2.0.0.0__0738eb9f132ed756/Mono.Cairo.dll new file mode 100644 index 0000000..7d24001 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cairo/2.0.0.0__0738eb9f132ed756/Mono.Cairo.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cairo/2.0.0.0__0738eb9f132ed756/Mono.Cairo.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Cairo/2.0.0.0__0738eb9f132ed756/Mono.Cairo.dll.mdb new file mode 100644 index 0000000..b089847 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cairo/2.0.0.0__0738eb9f132ed756/Mono.Cairo.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cairo/4.0.0.0__0738eb9f132ed756/Mono.Cairo.dll b/mono-test/bin/lib/mono/gac/Mono.Cairo/4.0.0.0__0738eb9f132ed756/Mono.Cairo.dll new file mode 100644 index 0000000..6a5bc9d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cairo/4.0.0.0__0738eb9f132ed756/Mono.Cairo.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cairo/4.0.0.0__0738eb9f132ed756/Mono.Cairo.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Cairo/4.0.0.0__0738eb9f132ed756/Mono.Cairo.dll.mdb new file mode 100644 index 0000000..8114577 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cairo/4.0.0.0__0738eb9f132ed756/Mono.Cairo.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cecil.Mdb/0.9.5.0__0738eb9f132ed756/Mono.Cecil.Mdb.dll b/mono-test/bin/lib/mono/gac/Mono.Cecil.Mdb/0.9.5.0__0738eb9f132ed756/Mono.Cecil.Mdb.dll new file mode 100644 index 0000000..0568a7e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cecil.Mdb/0.9.5.0__0738eb9f132ed756/Mono.Cecil.Mdb.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cecil.Mdb/0.9.5.0__0738eb9f132ed756/Mono.Cecil.Mdb.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Cecil.Mdb/0.9.5.0__0738eb9f132ed756/Mono.Cecil.Mdb.dll.mdb new file mode 100644 index 0000000..329591c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cecil.Mdb/0.9.5.0__0738eb9f132ed756/Mono.Cecil.Mdb.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cecil.VB.Mdb/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.Mdb.dll b/mono-test/bin/lib/mono/gac/Mono.Cecil.VB.Mdb/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.Mdb.dll new file mode 100644 index 0000000..54cd86e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cecil.VB.Mdb/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.Mdb.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cecil.VB.Mdb/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.Mdb.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Cecil.VB.Mdb/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.Mdb.dll.mdb new file mode 100644 index 0000000..a14804a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cecil.VB.Mdb/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.Mdb.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cecil.VB.Pdb/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.Pdb.dll b/mono-test/bin/lib/mono/gac/Mono.Cecil.VB.Pdb/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.Pdb.dll new file mode 100644 index 0000000..789943b Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cecil.VB.Pdb/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.Pdb.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cecil.VB.Pdb/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.Pdb.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Cecil.VB.Pdb/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.Pdb.dll.mdb new file mode 100644 index 0000000..68351ca Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cecil.VB.Pdb/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.Pdb.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cecil.VB/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.dll b/mono-test/bin/lib/mono/gac/Mono.Cecil.VB/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.dll new file mode 100644 index 0000000..8a9cccc Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cecil.VB/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cecil.VB/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Cecil.VB/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.dll.mdb new file mode 100644 index 0000000..622952a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cecil.VB/0.9.3.0__0738eb9f132ed756/Mono.Cecil.VB.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cecil/0.9.5.0__0738eb9f132ed756/Mono.Cecil.dll b/mono-test/bin/lib/mono/gac/Mono.Cecil/0.9.5.0__0738eb9f132ed756/Mono.Cecil.dll new file mode 100644 index 0000000..046754e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cecil/0.9.5.0__0738eb9f132ed756/Mono.Cecil.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Cecil/0.9.5.0__0738eb9f132ed756/Mono.Cecil.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Cecil/0.9.5.0__0738eb9f132ed756/Mono.Cecil.dll.mdb new file mode 100644 index 0000000..d4b71b2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Cecil/0.9.5.0__0738eb9f132ed756/Mono.Cecil.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.CodeContracts/4.0.0.0__0738eb9f132ed756/Mono.CodeContracts.dll b/mono-test/bin/lib/mono/gac/Mono.CodeContracts/4.0.0.0__0738eb9f132ed756/Mono.CodeContracts.dll new file mode 100644 index 0000000..e0c1311 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.CodeContracts/4.0.0.0__0738eb9f132ed756/Mono.CodeContracts.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.CodeContracts/4.0.0.0__0738eb9f132ed756/Mono.CodeContracts.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.CodeContracts/4.0.0.0__0738eb9f132ed756/Mono.CodeContracts.dll.mdb new file mode 100644 index 0000000..9e14ea4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.CodeContracts/4.0.0.0__0738eb9f132ed756/Mono.CodeContracts.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.CompilerServices.SymbolWriter/2.0.0.0__0738eb9f132ed756/Mono.CompilerServices.SymbolWriter.dll b/mono-test/bin/lib/mono/gac/Mono.CompilerServices.SymbolWriter/2.0.0.0__0738eb9f132ed756/Mono.CompilerServices.SymbolWriter.dll new file mode 100644 index 0000000..e8b6cab Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.CompilerServices.SymbolWriter/2.0.0.0__0738eb9f132ed756/Mono.CompilerServices.SymbolWriter.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.CompilerServices.SymbolWriter/2.0.0.0__0738eb9f132ed756/Mono.CompilerServices.SymbolWriter.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.CompilerServices.SymbolWriter/2.0.0.0__0738eb9f132ed756/Mono.CompilerServices.SymbolWriter.dll.mdb new file mode 100644 index 0000000..1155da7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.CompilerServices.SymbolWriter/2.0.0.0__0738eb9f132ed756/Mono.CompilerServices.SymbolWriter.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.CompilerServices.SymbolWriter/4.0.0.0__0738eb9f132ed756/Mono.CompilerServices.SymbolWriter.dll b/mono-test/bin/lib/mono/gac/Mono.CompilerServices.SymbolWriter/4.0.0.0__0738eb9f132ed756/Mono.CompilerServices.SymbolWriter.dll new file mode 100644 index 0000000..199924d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.CompilerServices.SymbolWriter/4.0.0.0__0738eb9f132ed756/Mono.CompilerServices.SymbolWriter.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.CompilerServices.SymbolWriter/4.0.0.0__0738eb9f132ed756/Mono.CompilerServices.SymbolWriter.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.CompilerServices.SymbolWriter/4.0.0.0__0738eb9f132ed756/Mono.CompilerServices.SymbolWriter.dll.mdb new file mode 100644 index 0000000..b613cf4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.CompilerServices.SymbolWriter/4.0.0.0__0738eb9f132ed756/Mono.CompilerServices.SymbolWriter.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Data.Sqlite/2.0.0.0__0738eb9f132ed756/Mono.Data.Sqlite.dll b/mono-test/bin/lib/mono/gac/Mono.Data.Sqlite/2.0.0.0__0738eb9f132ed756/Mono.Data.Sqlite.dll new file mode 100644 index 0000000..75bdf81 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Data.Sqlite/2.0.0.0__0738eb9f132ed756/Mono.Data.Sqlite.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Data.Sqlite/2.0.0.0__0738eb9f132ed756/Mono.Data.Sqlite.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Data.Sqlite/2.0.0.0__0738eb9f132ed756/Mono.Data.Sqlite.dll.mdb new file mode 100644 index 0000000..68bcb06 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Data.Sqlite/2.0.0.0__0738eb9f132ed756/Mono.Data.Sqlite.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Data.Sqlite/4.0.0.0__0738eb9f132ed756/Mono.Data.Sqlite.dll b/mono-test/bin/lib/mono/gac/Mono.Data.Sqlite/4.0.0.0__0738eb9f132ed756/Mono.Data.Sqlite.dll new file mode 100644 index 0000000..1bfd151 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Data.Sqlite/4.0.0.0__0738eb9f132ed756/Mono.Data.Sqlite.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Data.Sqlite/4.0.0.0__0738eb9f132ed756/Mono.Data.Sqlite.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Data.Sqlite/4.0.0.0__0738eb9f132ed756/Mono.Data.Sqlite.dll.mdb new file mode 100644 index 0000000..813a052 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Data.Sqlite/4.0.0.0__0738eb9f132ed756/Mono.Data.Sqlite.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Data.Tds/2.0.0.0__0738eb9f132ed756/Mono.Data.Tds.dll b/mono-test/bin/lib/mono/gac/Mono.Data.Tds/2.0.0.0__0738eb9f132ed756/Mono.Data.Tds.dll new file mode 100644 index 0000000..c46fa95 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Data.Tds/2.0.0.0__0738eb9f132ed756/Mono.Data.Tds.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Data.Tds/2.0.0.0__0738eb9f132ed756/Mono.Data.Tds.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Data.Tds/2.0.0.0__0738eb9f132ed756/Mono.Data.Tds.dll.mdb new file mode 100644 index 0000000..ad39ab3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Data.Tds/2.0.0.0__0738eb9f132ed756/Mono.Data.Tds.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Data.Tds/4.0.0.0__0738eb9f132ed756/Mono.Data.Tds.dll b/mono-test/bin/lib/mono/gac/Mono.Data.Tds/4.0.0.0__0738eb9f132ed756/Mono.Data.Tds.dll new file mode 100644 index 0000000..1321116 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Data.Tds/4.0.0.0__0738eb9f132ed756/Mono.Data.Tds.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Data.Tds/4.0.0.0__0738eb9f132ed756/Mono.Data.Tds.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Data.Tds/4.0.0.0__0738eb9f132ed756/Mono.Data.Tds.dll.mdb new file mode 100644 index 0000000..e8c3003 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Data.Tds/4.0.0.0__0738eb9f132ed756/Mono.Data.Tds.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Debugger.Soft/2.0.0.0__0738eb9f132ed756/Mono.Debugger.Soft.dll b/mono-test/bin/lib/mono/gac/Mono.Debugger.Soft/2.0.0.0__0738eb9f132ed756/Mono.Debugger.Soft.dll new file mode 100644 index 0000000..85cab64 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Debugger.Soft/2.0.0.0__0738eb9f132ed756/Mono.Debugger.Soft.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Debugger.Soft/2.0.0.0__0738eb9f132ed756/Mono.Debugger.Soft.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Debugger.Soft/2.0.0.0__0738eb9f132ed756/Mono.Debugger.Soft.dll.mdb new file mode 100644 index 0000000..49396a1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Debugger.Soft/2.0.0.0__0738eb9f132ed756/Mono.Debugger.Soft.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Debugger.Soft/4.0.0.0__0738eb9f132ed756/Mono.Debugger.Soft.dll b/mono-test/bin/lib/mono/gac/Mono.Debugger.Soft/4.0.0.0__0738eb9f132ed756/Mono.Debugger.Soft.dll new file mode 100644 index 0000000..8d1f846 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Debugger.Soft/4.0.0.0__0738eb9f132ed756/Mono.Debugger.Soft.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Debugger.Soft/4.0.0.0__0738eb9f132ed756/Mono.Debugger.Soft.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Debugger.Soft/4.0.0.0__0738eb9f132ed756/Mono.Debugger.Soft.dll.mdb new file mode 100644 index 0000000..90d2f80 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Debugger.Soft/4.0.0.0__0738eb9f132ed756/Mono.Debugger.Soft.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Http/2.0.0.0__0738eb9f132ed756/Mono.Http.dll b/mono-test/bin/lib/mono/gac/Mono.Http/2.0.0.0__0738eb9f132ed756/Mono.Http.dll new file mode 100644 index 0000000..7bcdfc0 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Http/2.0.0.0__0738eb9f132ed756/Mono.Http.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Http/2.0.0.0__0738eb9f132ed756/Mono.Http.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Http/2.0.0.0__0738eb9f132ed756/Mono.Http.dll.mdb new file mode 100644 index 0000000..a210e9c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Http/2.0.0.0__0738eb9f132ed756/Mono.Http.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Http/4.0.0.0__0738eb9f132ed756/Mono.Http.dll b/mono-test/bin/lib/mono/gac/Mono.Http/4.0.0.0__0738eb9f132ed756/Mono.Http.dll new file mode 100644 index 0000000..5e679d5 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Http/4.0.0.0__0738eb9f132ed756/Mono.Http.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Http/4.0.0.0__0738eb9f132ed756/Mono.Http.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Http/4.0.0.0__0738eb9f132ed756/Mono.Http.dll.mdb new file mode 100644 index 0000000..53a4efc Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Http/4.0.0.0__0738eb9f132ed756/Mono.Http.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Management/2.0.0.0__0738eb9f132ed756/Mono.Management.dll b/mono-test/bin/lib/mono/gac/Mono.Management/2.0.0.0__0738eb9f132ed756/Mono.Management.dll new file mode 100644 index 0000000..fc8846f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Management/2.0.0.0__0738eb9f132ed756/Mono.Management.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Management/2.0.0.0__0738eb9f132ed756/Mono.Management.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Management/2.0.0.0__0738eb9f132ed756/Mono.Management.dll.mdb new file mode 100644 index 0000000..9004f1f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Management/2.0.0.0__0738eb9f132ed756/Mono.Management.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Management/4.0.0.0__0738eb9f132ed756/Mono.Management.dll b/mono-test/bin/lib/mono/gac/Mono.Management/4.0.0.0__0738eb9f132ed756/Mono.Management.dll new file mode 100644 index 0000000..9429cc1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Management/4.0.0.0__0738eb9f132ed756/Mono.Management.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Management/4.0.0.0__0738eb9f132ed756/Mono.Management.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Management/4.0.0.0__0738eb9f132ed756/Mono.Management.dll.mdb new file mode 100644 index 0000000..8e70c6c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Management/4.0.0.0__0738eb9f132ed756/Mono.Management.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Messaging.RabbitMQ/2.0.0.0__0738eb9f132ed756/Mono.Messaging.RabbitMQ.dll b/mono-test/bin/lib/mono/gac/Mono.Messaging.RabbitMQ/2.0.0.0__0738eb9f132ed756/Mono.Messaging.RabbitMQ.dll new file mode 100644 index 0000000..24fbaaf Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Messaging.RabbitMQ/2.0.0.0__0738eb9f132ed756/Mono.Messaging.RabbitMQ.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Messaging.RabbitMQ/2.0.0.0__0738eb9f132ed756/Mono.Messaging.RabbitMQ.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Messaging.RabbitMQ/2.0.0.0__0738eb9f132ed756/Mono.Messaging.RabbitMQ.dll.mdb new file mode 100644 index 0000000..49a8d61 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Messaging.RabbitMQ/2.0.0.0__0738eb9f132ed756/Mono.Messaging.RabbitMQ.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Messaging.RabbitMQ/4.0.0.0__0738eb9f132ed756/Mono.Messaging.RabbitMQ.dll b/mono-test/bin/lib/mono/gac/Mono.Messaging.RabbitMQ/4.0.0.0__0738eb9f132ed756/Mono.Messaging.RabbitMQ.dll new file mode 100644 index 0000000..d4ab44e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Messaging.RabbitMQ/4.0.0.0__0738eb9f132ed756/Mono.Messaging.RabbitMQ.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Messaging.RabbitMQ/4.0.0.0__0738eb9f132ed756/Mono.Messaging.RabbitMQ.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Messaging.RabbitMQ/4.0.0.0__0738eb9f132ed756/Mono.Messaging.RabbitMQ.dll.mdb new file mode 100644 index 0000000..6b60612 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Messaging.RabbitMQ/4.0.0.0__0738eb9f132ed756/Mono.Messaging.RabbitMQ.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Messaging/2.0.0.0__0738eb9f132ed756/Mono.Messaging.dll b/mono-test/bin/lib/mono/gac/Mono.Messaging/2.0.0.0__0738eb9f132ed756/Mono.Messaging.dll new file mode 100644 index 0000000..dcf79da Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Messaging/2.0.0.0__0738eb9f132ed756/Mono.Messaging.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Messaging/2.0.0.0__0738eb9f132ed756/Mono.Messaging.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Messaging/2.0.0.0__0738eb9f132ed756/Mono.Messaging.dll.mdb new file mode 100644 index 0000000..b5a13f2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Messaging/2.0.0.0__0738eb9f132ed756/Mono.Messaging.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Messaging/4.0.0.0__0738eb9f132ed756/Mono.Messaging.dll b/mono-test/bin/lib/mono/gac/Mono.Messaging/4.0.0.0__0738eb9f132ed756/Mono.Messaging.dll new file mode 100644 index 0000000..470dfa7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Messaging/4.0.0.0__0738eb9f132ed756/Mono.Messaging.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Messaging/4.0.0.0__0738eb9f132ed756/Mono.Messaging.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Messaging/4.0.0.0__0738eb9f132ed756/Mono.Messaging.dll.mdb new file mode 100644 index 0000000..67149de Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Messaging/4.0.0.0__0738eb9f132ed756/Mono.Messaging.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Parallel/4.0.0.0__0738eb9f132ed756/Mono.Parallel.dll b/mono-test/bin/lib/mono/gac/Mono.Parallel/4.0.0.0__0738eb9f132ed756/Mono.Parallel.dll new file mode 100644 index 0000000..2639ffc Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Parallel/4.0.0.0__0738eb9f132ed756/Mono.Parallel.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Parallel/4.0.0.0__0738eb9f132ed756/Mono.Parallel.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Parallel/4.0.0.0__0738eb9f132ed756/Mono.Parallel.dll.mdb new file mode 100644 index 0000000..12321eb Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Parallel/4.0.0.0__0738eb9f132ed756/Mono.Parallel.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Posix/2.0.0.0__0738eb9f132ed756/Mono.Posix.dll b/mono-test/bin/lib/mono/gac/Mono.Posix/2.0.0.0__0738eb9f132ed756/Mono.Posix.dll new file mode 100644 index 0000000..75d94b3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Posix/2.0.0.0__0738eb9f132ed756/Mono.Posix.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Posix/2.0.0.0__0738eb9f132ed756/Mono.Posix.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Posix/2.0.0.0__0738eb9f132ed756/Mono.Posix.dll.mdb new file mode 100644 index 0000000..6d5e863 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Posix/2.0.0.0__0738eb9f132ed756/Mono.Posix.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Posix/4.0.0.0__0738eb9f132ed756/Mono.Posix.dll b/mono-test/bin/lib/mono/gac/Mono.Posix/4.0.0.0__0738eb9f132ed756/Mono.Posix.dll new file mode 100644 index 0000000..5226de9 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Posix/4.0.0.0__0738eb9f132ed756/Mono.Posix.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Posix/4.0.0.0__0738eb9f132ed756/Mono.Posix.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Posix/4.0.0.0__0738eb9f132ed756/Mono.Posix.dll.mdb new file mode 100644 index 0000000..a6df357 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Posix/4.0.0.0__0738eb9f132ed756/Mono.Posix.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Security.Win32/2.0.0.0__0738eb9f132ed756/Mono.Security.Win32.dll b/mono-test/bin/lib/mono/gac/Mono.Security.Win32/2.0.0.0__0738eb9f132ed756/Mono.Security.Win32.dll new file mode 100644 index 0000000..858cbbc Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Security.Win32/2.0.0.0__0738eb9f132ed756/Mono.Security.Win32.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Security.Win32/2.0.0.0__0738eb9f132ed756/Mono.Security.Win32.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Security.Win32/2.0.0.0__0738eb9f132ed756/Mono.Security.Win32.dll.mdb new file mode 100644 index 0000000..e208ace Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Security.Win32/2.0.0.0__0738eb9f132ed756/Mono.Security.Win32.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Security.Win32/4.0.0.0__0738eb9f132ed756/Mono.Security.Win32.dll b/mono-test/bin/lib/mono/gac/Mono.Security.Win32/4.0.0.0__0738eb9f132ed756/Mono.Security.Win32.dll new file mode 100644 index 0000000..661842c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Security.Win32/4.0.0.0__0738eb9f132ed756/Mono.Security.Win32.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Security.Win32/4.0.0.0__0738eb9f132ed756/Mono.Security.Win32.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Security.Win32/4.0.0.0__0738eb9f132ed756/Mono.Security.Win32.dll.mdb new file mode 100644 index 0000000..76dbcfb Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Security.Win32/4.0.0.0__0738eb9f132ed756/Mono.Security.Win32.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Security/2.0.0.0__0738eb9f132ed756/Mono.Security.dll b/mono-test/bin/lib/mono/gac/Mono.Security/2.0.0.0__0738eb9f132ed756/Mono.Security.dll new file mode 100644 index 0000000..6d2a58c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Security/2.0.0.0__0738eb9f132ed756/Mono.Security.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Security/2.0.0.0__0738eb9f132ed756/Mono.Security.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Security/2.0.0.0__0738eb9f132ed756/Mono.Security.dll.mdb new file mode 100644 index 0000000..f9f7185 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Security/2.0.0.0__0738eb9f132ed756/Mono.Security.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll b/mono-test/bin/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll new file mode 100644 index 0000000..921aa48 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll.mdb new file mode 100644 index 0000000..cf9ca70 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Security/4.0.0.0__0738eb9f132ed756/Mono.Security.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Simd/2.0.0.0__0738eb9f132ed756/Mono.Simd.dll b/mono-test/bin/lib/mono/gac/Mono.Simd/2.0.0.0__0738eb9f132ed756/Mono.Simd.dll new file mode 100644 index 0000000..d18b16a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Simd/2.0.0.0__0738eb9f132ed756/Mono.Simd.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Simd/2.0.0.0__0738eb9f132ed756/Mono.Simd.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Simd/2.0.0.0__0738eb9f132ed756/Mono.Simd.dll.mdb new file mode 100644 index 0000000..a678cbd Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Simd/2.0.0.0__0738eb9f132ed756/Mono.Simd.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Simd/4.0.0.0__0738eb9f132ed756/Mono.Simd.dll b/mono-test/bin/lib/mono/gac/Mono.Simd/4.0.0.0__0738eb9f132ed756/Mono.Simd.dll new file mode 100644 index 0000000..1026758 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Simd/4.0.0.0__0738eb9f132ed756/Mono.Simd.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Simd/4.0.0.0__0738eb9f132ed756/Mono.Simd.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Simd/4.0.0.0__0738eb9f132ed756/Mono.Simd.dll.mdb new file mode 100644 index 0000000..174cdb4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Simd/4.0.0.0__0738eb9f132ed756/Mono.Simd.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Tasklets/2.0.0.0__0738eb9f132ed756/Mono.Tasklets.dll b/mono-test/bin/lib/mono/gac/Mono.Tasklets/2.0.0.0__0738eb9f132ed756/Mono.Tasklets.dll new file mode 100644 index 0000000..89a0a23 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Tasklets/2.0.0.0__0738eb9f132ed756/Mono.Tasklets.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Tasklets/2.0.0.0__0738eb9f132ed756/Mono.Tasklets.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Tasklets/2.0.0.0__0738eb9f132ed756/Mono.Tasklets.dll.mdb new file mode 100644 index 0000000..4dd9179 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Tasklets/2.0.0.0__0738eb9f132ed756/Mono.Tasklets.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Tasklets/4.0.0.0__0738eb9f132ed756/Mono.Tasklets.dll b/mono-test/bin/lib/mono/gac/Mono.Tasklets/4.0.0.0__0738eb9f132ed756/Mono.Tasklets.dll new file mode 100644 index 0000000..4f9b86e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Tasklets/4.0.0.0__0738eb9f132ed756/Mono.Tasklets.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Tasklets/4.0.0.0__0738eb9f132ed756/Mono.Tasklets.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Tasklets/4.0.0.0__0738eb9f132ed756/Mono.Tasklets.dll.mdb new file mode 100644 index 0000000..f839985 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Tasklets/4.0.0.0__0738eb9f132ed756/Mono.Tasklets.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Web/2.0.0.0__0738eb9f132ed756/Mono.Web.dll b/mono-test/bin/lib/mono/gac/Mono.Web/2.0.0.0__0738eb9f132ed756/Mono.Web.dll new file mode 100644 index 0000000..6861b33 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Web/2.0.0.0__0738eb9f132ed756/Mono.Web.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Web/2.0.0.0__0738eb9f132ed756/Mono.Web.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Web/2.0.0.0__0738eb9f132ed756/Mono.Web.dll.mdb new file mode 100644 index 0000000..f4b5fa1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Web/2.0.0.0__0738eb9f132ed756/Mono.Web.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Web/4.0.0.0__0738eb9f132ed756/Mono.Web.dll b/mono-test/bin/lib/mono/gac/Mono.Web/4.0.0.0__0738eb9f132ed756/Mono.Web.dll new file mode 100644 index 0000000..37c201c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Web/4.0.0.0__0738eb9f132ed756/Mono.Web.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.Web/4.0.0.0__0738eb9f132ed756/Mono.Web.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.Web/4.0.0.0__0738eb9f132ed756/Mono.Web.dll.mdb new file mode 100644 index 0000000..19c846d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.Web/4.0.0.0__0738eb9f132ed756/Mono.Web.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.WebBrowser/2.0.0.0__0738eb9f132ed756/Mono.WebBrowser.dll b/mono-test/bin/lib/mono/gac/Mono.WebBrowser/2.0.0.0__0738eb9f132ed756/Mono.WebBrowser.dll new file mode 100644 index 0000000..b2af017 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.WebBrowser/2.0.0.0__0738eb9f132ed756/Mono.WebBrowser.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.WebBrowser/2.0.0.0__0738eb9f132ed756/Mono.WebBrowser.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.WebBrowser/2.0.0.0__0738eb9f132ed756/Mono.WebBrowser.dll.mdb new file mode 100644 index 0000000..ba27769 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.WebBrowser/2.0.0.0__0738eb9f132ed756/Mono.WebBrowser.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Mono.WebBrowser/4.0.0.0__0738eb9f132ed756/Mono.WebBrowser.dll b/mono-test/bin/lib/mono/gac/Mono.WebBrowser/4.0.0.0__0738eb9f132ed756/Mono.WebBrowser.dll new file mode 100644 index 0000000..cfe238a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.WebBrowser/4.0.0.0__0738eb9f132ed756/Mono.WebBrowser.dll differ diff --git a/mono-test/bin/lib/mono/gac/Mono.WebBrowser/4.0.0.0__0738eb9f132ed756/Mono.WebBrowser.dll.mdb b/mono-test/bin/lib/mono/gac/Mono.WebBrowser/4.0.0.0__0738eb9f132ed756/Mono.WebBrowser.dll.mdb new file mode 100644 index 0000000..c0b0f18 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Mono.WebBrowser/4.0.0.0__0738eb9f132ed756/Mono.WebBrowser.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Novell.Directory.Ldap/2.0.0.0__0738eb9f132ed756/Novell.Directory.Ldap.dll b/mono-test/bin/lib/mono/gac/Novell.Directory.Ldap/2.0.0.0__0738eb9f132ed756/Novell.Directory.Ldap.dll new file mode 100644 index 0000000..fff7696 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Novell.Directory.Ldap/2.0.0.0__0738eb9f132ed756/Novell.Directory.Ldap.dll differ diff --git a/mono-test/bin/lib/mono/gac/Novell.Directory.Ldap/2.0.0.0__0738eb9f132ed756/Novell.Directory.Ldap.dll.mdb b/mono-test/bin/lib/mono/gac/Novell.Directory.Ldap/2.0.0.0__0738eb9f132ed756/Novell.Directory.Ldap.dll.mdb new file mode 100644 index 0000000..eacf2de Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Novell.Directory.Ldap/2.0.0.0__0738eb9f132ed756/Novell.Directory.Ldap.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Novell.Directory.Ldap/4.0.0.0__0738eb9f132ed756/Novell.Directory.Ldap.dll b/mono-test/bin/lib/mono/gac/Novell.Directory.Ldap/4.0.0.0__0738eb9f132ed756/Novell.Directory.Ldap.dll new file mode 100644 index 0000000..436a1f3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Novell.Directory.Ldap/4.0.0.0__0738eb9f132ed756/Novell.Directory.Ldap.dll differ diff --git a/mono-test/bin/lib/mono/gac/Novell.Directory.Ldap/4.0.0.0__0738eb9f132ed756/Novell.Directory.Ldap.dll.mdb b/mono-test/bin/lib/mono/gac/Novell.Directory.Ldap/4.0.0.0__0738eb9f132ed756/Novell.Directory.Ldap.dll.mdb new file mode 100644 index 0000000..f2677d3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Novell.Directory.Ldap/4.0.0.0__0738eb9f132ed756/Novell.Directory.Ldap.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Npgsql/2.0.0.0__5d8b90d52f46fda7/Npgsql.dll b/mono-test/bin/lib/mono/gac/Npgsql/2.0.0.0__5d8b90d52f46fda7/Npgsql.dll new file mode 100644 index 0000000..70ea4c3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Npgsql/2.0.0.0__5d8b90d52f46fda7/Npgsql.dll differ diff --git a/mono-test/bin/lib/mono/gac/Npgsql/2.0.0.0__5d8b90d52f46fda7/Npgsql.dll.mdb b/mono-test/bin/lib/mono/gac/Npgsql/2.0.0.0__5d8b90d52f46fda7/Npgsql.dll.mdb new file mode 100644 index 0000000..a074084 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Npgsql/2.0.0.0__5d8b90d52f46fda7/Npgsql.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/Npgsql/4.0.0.0__5d8b90d52f46fda7/Npgsql.dll b/mono-test/bin/lib/mono/gac/Npgsql/4.0.0.0__5d8b90d52f46fda7/Npgsql.dll new file mode 100644 index 0000000..5e868e0 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Npgsql/4.0.0.0__5d8b90d52f46fda7/Npgsql.dll differ diff --git a/mono-test/bin/lib/mono/gac/Npgsql/4.0.0.0__5d8b90d52f46fda7/Npgsql.dll.mdb b/mono-test/bin/lib/mono/gac/Npgsql/4.0.0.0__5d8b90d52f46fda7/Npgsql.dll.mdb new file mode 100644 index 0000000..6d8b825 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/Npgsql/4.0.0.0__5d8b90d52f46fda7/Npgsql.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/OpenSystem.C/2.0.0.0__b77a5c561934e089/OpenSystem.C.dll b/mono-test/bin/lib/mono/gac/OpenSystem.C/2.0.0.0__b77a5c561934e089/OpenSystem.C.dll new file mode 100644 index 0000000..ae40312 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/OpenSystem.C/2.0.0.0__b77a5c561934e089/OpenSystem.C.dll differ diff --git a/mono-test/bin/lib/mono/gac/OpenSystem.C/2.0.0.0__b77a5c561934e089/OpenSystem.C.dll.mdb b/mono-test/bin/lib/mono/gac/OpenSystem.C/2.0.0.0__b77a5c561934e089/OpenSystem.C.dll.mdb new file mode 100644 index 0000000..cdbeb20 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/OpenSystem.C/2.0.0.0__b77a5c561934e089/OpenSystem.C.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/OpenSystem.C/4.0.0.0__b77a5c561934e089/OpenSystem.C.dll b/mono-test/bin/lib/mono/gac/OpenSystem.C/4.0.0.0__b77a5c561934e089/OpenSystem.C.dll new file mode 100644 index 0000000..2415084 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/OpenSystem.C/4.0.0.0__b77a5c561934e089/OpenSystem.C.dll differ diff --git a/mono-test/bin/lib/mono/gac/OpenSystem.C/4.0.0.0__b77a5c561934e089/OpenSystem.C.dll.mdb b/mono-test/bin/lib/mono/gac/OpenSystem.C/4.0.0.0__b77a5c561934e089/OpenSystem.C.dll.mdb new file mode 100644 index 0000000..dfbbd33 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/OpenSystem.C/4.0.0.0__b77a5c561934e089/OpenSystem.C.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/PEAPI/2.0.0.0__0738eb9f132ed756/PEAPI.dll b/mono-test/bin/lib/mono/gac/PEAPI/2.0.0.0__0738eb9f132ed756/PEAPI.dll new file mode 100644 index 0000000..92a340e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/PEAPI/2.0.0.0__0738eb9f132ed756/PEAPI.dll differ diff --git a/mono-test/bin/lib/mono/gac/PEAPI/2.0.0.0__0738eb9f132ed756/PEAPI.dll.mdb b/mono-test/bin/lib/mono/gac/PEAPI/2.0.0.0__0738eb9f132ed756/PEAPI.dll.mdb new file mode 100644 index 0000000..261cea7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/PEAPI/2.0.0.0__0738eb9f132ed756/PEAPI.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/PEAPI/4.0.0.0__0738eb9f132ed756/PEAPI.dll b/mono-test/bin/lib/mono/gac/PEAPI/4.0.0.0__0738eb9f132ed756/PEAPI.dll new file mode 100644 index 0000000..34e3530 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/PEAPI/4.0.0.0__0738eb9f132ed756/PEAPI.dll differ diff --git a/mono-test/bin/lib/mono/gac/PEAPI/4.0.0.0__0738eb9f132ed756/PEAPI.dll.mdb b/mono-test/bin/lib/mono/gac/PEAPI/4.0.0.0__0738eb9f132ed756/PEAPI.dll.mdb new file mode 100644 index 0000000..fbecac6 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/PEAPI/4.0.0.0__0738eb9f132ed756/PEAPI.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/RabbitMQ.Client/2.0.0.0__b03f5f7f11d50a3a/RabbitMQ.Client.dll b/mono-test/bin/lib/mono/gac/RabbitMQ.Client/2.0.0.0__b03f5f7f11d50a3a/RabbitMQ.Client.dll new file mode 100644 index 0000000..62ebd79 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/RabbitMQ.Client/2.0.0.0__b03f5f7f11d50a3a/RabbitMQ.Client.dll differ diff --git a/mono-test/bin/lib/mono/gac/RabbitMQ.Client/2.0.0.0__b03f5f7f11d50a3a/RabbitMQ.Client.dll.mdb b/mono-test/bin/lib/mono/gac/RabbitMQ.Client/2.0.0.0__b03f5f7f11d50a3a/RabbitMQ.Client.dll.mdb new file mode 100644 index 0000000..94d864a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/RabbitMQ.Client/2.0.0.0__b03f5f7f11d50a3a/RabbitMQ.Client.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/RabbitMQ.Client/4.0.0.0__b03f5f7f11d50a3a/RabbitMQ.Client.dll b/mono-test/bin/lib/mono/gac/RabbitMQ.Client/4.0.0.0__b03f5f7f11d50a3a/RabbitMQ.Client.dll new file mode 100644 index 0000000..99da6b8 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/RabbitMQ.Client/4.0.0.0__b03f5f7f11d50a3a/RabbitMQ.Client.dll differ diff --git a/mono-test/bin/lib/mono/gac/RabbitMQ.Client/4.0.0.0__b03f5f7f11d50a3a/RabbitMQ.Client.dll.mdb b/mono-test/bin/lib/mono/gac/RabbitMQ.Client/4.0.0.0__b03f5f7f11d50a3a/RabbitMQ.Client.dll.mdb new file mode 100644 index 0000000..ef8a62a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/RabbitMQ.Client/4.0.0.0__b03f5f7f11d50a3a/RabbitMQ.Client.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.ComponentModel.Composition/4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll b/mono-test/bin/lib/mono/gac/System.ComponentModel.Composition/4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll new file mode 100644 index 0000000..12fbf50 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ComponentModel.Composition/4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.ComponentModel.Composition/4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll.mdb b/mono-test/bin/lib/mono/gac/System.ComponentModel.Composition/4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll.mdb new file mode 100644 index 0000000..c42b9d9 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ComponentModel.Composition/4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.ComponentModel.DataAnnotations/3.5.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll b/mono-test/bin/lib/mono/gac/System.ComponentModel.DataAnnotations/3.5.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..accf1e9 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ComponentModel.DataAnnotations/3.5.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.ComponentModel.DataAnnotations/3.5.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll.mdb b/mono-test/bin/lib/mono/gac/System.ComponentModel.DataAnnotations/3.5.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll.mdb new file mode 100644 index 0000000..6fe2024 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ComponentModel.DataAnnotations/3.5.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.ComponentModel.DataAnnotations/4.0.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll b/mono-test/bin/lib/mono/gac/System.ComponentModel.DataAnnotations/4.0.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..2c3f001 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ComponentModel.DataAnnotations/4.0.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.ComponentModel.DataAnnotations/4.0.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll.mdb b/mono-test/bin/lib/mono/gac/System.ComponentModel.DataAnnotations/4.0.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll.mdb new file mode 100644 index 0000000..b456b95 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ComponentModel.DataAnnotations/4.0.0.0__31bf3856ad364e35/System.ComponentModel.DataAnnotations.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Configuration.Install/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll b/mono-test/bin/lib/mono/gac/System.Configuration.Install/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll new file mode 100644 index 0000000..7a263b5 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Configuration.Install/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Configuration.Install/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll.mdb b/mono-test/bin/lib/mono/gac/System.Configuration.Install/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll.mdb new file mode 100644 index 0000000..5f67138 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Configuration.Install/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Configuration.Install/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll b/mono-test/bin/lib/mono/gac/System.Configuration.Install/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll new file mode 100644 index 0000000..b16bdc8 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Configuration.Install/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Configuration.Install/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll.mdb b/mono-test/bin/lib/mono/gac/System.Configuration.Install/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll.mdb new file mode 100644 index 0000000..d61a78a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Configuration.Install/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.Install.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll b/mono-test/bin/lib/mono/gac/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll new file mode 100644 index 0000000..30c641f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll.mdb b/mono-test/bin/lib/mono/gac/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll.mdb new file mode 100644 index 0000000..a18f947 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Configuration/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll b/mono-test/bin/lib/mono/gac/System.Configuration/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll new file mode 100644 index 0000000..d062f76 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Configuration/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Configuration/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll.mdb b/mono-test/bin/lib/mono/gac/System.Configuration/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll.mdb new file mode 100644 index 0000000..95ca125 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Configuration/4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Core/3.5.0.0__b77a5c561934e089/System.Core.dll b/mono-test/bin/lib/mono/gac/System.Core/3.5.0.0__b77a5c561934e089/System.Core.dll new file mode 100644 index 0000000..4d32305 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Core/3.5.0.0__b77a5c561934e089/System.Core.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Core/3.5.0.0__b77a5c561934e089/System.Core.dll.mdb b/mono-test/bin/lib/mono/gac/System.Core/3.5.0.0__b77a5c561934e089/System.Core.dll.mdb new file mode 100644 index 0000000..cbe4bc4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Core/3.5.0.0__b77a5c561934e089/System.Core.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll b/mono-test/bin/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll new file mode 100644 index 0000000..d53e5fa Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll.mdb b/mono-test/bin/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll.mdb new file mode 100644 index 0000000..43503ac Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Core/4.0.0.0__b77a5c561934e089/System.Core.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.DataSetExtensions/3.5.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll b/mono-test/bin/lib/mono/gac/System.Data.DataSetExtensions/3.5.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..38b9332 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.DataSetExtensions/3.5.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.DataSetExtensions/3.5.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll.mdb b/mono-test/bin/lib/mono/gac/System.Data.DataSetExtensions/3.5.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll.mdb new file mode 100644 index 0000000..2219648 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.DataSetExtensions/3.5.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.DataSetExtensions/4.0.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll b/mono-test/bin/lib/mono/gac/System.Data.DataSetExtensions/4.0.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..4fc5c2d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.DataSetExtensions/4.0.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.DataSetExtensions/4.0.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll.mdb b/mono-test/bin/lib/mono/gac/System.Data.DataSetExtensions/4.0.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll.mdb new file mode 100644 index 0000000..fb6a89f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.DataSetExtensions/4.0.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.Linq/3.5.0.0__b77a5c561934e089/System.Data.Linq.dll b/mono-test/bin/lib/mono/gac/System.Data.Linq/3.5.0.0__b77a5c561934e089/System.Data.Linq.dll new file mode 100644 index 0000000..c3cbac0 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.Linq/3.5.0.0__b77a5c561934e089/System.Data.Linq.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.Linq/3.5.0.0__b77a5c561934e089/System.Data.Linq.dll.mdb b/mono-test/bin/lib/mono/gac/System.Data.Linq/3.5.0.0__b77a5c561934e089/System.Data.Linq.dll.mdb new file mode 100644 index 0000000..d648e54 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.Linq/3.5.0.0__b77a5c561934e089/System.Data.Linq.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.Linq/4.0.0.0__b77a5c561934e089/System.Data.Linq.dll b/mono-test/bin/lib/mono/gac/System.Data.Linq/4.0.0.0__b77a5c561934e089/System.Data.Linq.dll new file mode 100644 index 0000000..8760fbd Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.Linq/4.0.0.0__b77a5c561934e089/System.Data.Linq.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.Linq/4.0.0.0__b77a5c561934e089/System.Data.Linq.dll.mdb b/mono-test/bin/lib/mono/gac/System.Data.Linq/4.0.0.0__b77a5c561934e089/System.Data.Linq.dll.mdb new file mode 100644 index 0000000..f8f1909 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.Linq/4.0.0.0__b77a5c561934e089/System.Data.Linq.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.OracleClient/2.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll b/mono-test/bin/lib/mono/gac/System.Data.OracleClient/2.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll new file mode 100644 index 0000000..e2f75a7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.OracleClient/2.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.OracleClient/2.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll.mdb b/mono-test/bin/lib/mono/gac/System.Data.OracleClient/2.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll.mdb new file mode 100644 index 0000000..5c0ae29 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.OracleClient/2.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.OracleClient/4.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll b/mono-test/bin/lib/mono/gac/System.Data.OracleClient/4.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll new file mode 100644 index 0000000..6f17f5d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.OracleClient/4.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.OracleClient/4.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll.mdb b/mono-test/bin/lib/mono/gac/System.Data.OracleClient/4.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll.mdb new file mode 100644 index 0000000..9ecfced Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.OracleClient/4.0.0.0__b77a5c561934e089/System.Data.OracleClient.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.Services.Client/3.5.0.0__b77a5c561934e089/System.Data.Services.Client.dll b/mono-test/bin/lib/mono/gac/System.Data.Services.Client/3.5.0.0__b77a5c561934e089/System.Data.Services.Client.dll new file mode 100644 index 0000000..bbe71c0 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.Services.Client/3.5.0.0__b77a5c561934e089/System.Data.Services.Client.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.Services.Client/3.5.0.0__b77a5c561934e089/System.Data.Services.Client.dll.mdb b/mono-test/bin/lib/mono/gac/System.Data.Services.Client/3.5.0.0__b77a5c561934e089/System.Data.Services.Client.dll.mdb new file mode 100644 index 0000000..396acf3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.Services.Client/3.5.0.0__b77a5c561934e089/System.Data.Services.Client.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.Services.Client/4.0.0.0__b77a5c561934e089/System.Data.Services.Client.dll b/mono-test/bin/lib/mono/gac/System.Data.Services.Client/4.0.0.0__b77a5c561934e089/System.Data.Services.Client.dll new file mode 100644 index 0000000..8c1e7fa Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.Services.Client/4.0.0.0__b77a5c561934e089/System.Data.Services.Client.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.Services.Client/4.0.0.0__b77a5c561934e089/System.Data.Services.Client.dll.mdb b/mono-test/bin/lib/mono/gac/System.Data.Services.Client/4.0.0.0__b77a5c561934e089/System.Data.Services.Client.dll.mdb new file mode 100644 index 0000000..9796bd2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.Services.Client/4.0.0.0__b77a5c561934e089/System.Data.Services.Client.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.Services/3.5.0.0__b77a5c561934e089/System.Data.Services.dll b/mono-test/bin/lib/mono/gac/System.Data.Services/3.5.0.0__b77a5c561934e089/System.Data.Services.dll new file mode 100644 index 0000000..49edbee Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.Services/3.5.0.0__b77a5c561934e089/System.Data.Services.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.Services/3.5.0.0__b77a5c561934e089/System.Data.Services.dll.mdb b/mono-test/bin/lib/mono/gac/System.Data.Services/3.5.0.0__b77a5c561934e089/System.Data.Services.dll.mdb new file mode 100644 index 0000000..cd93acc Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.Services/3.5.0.0__b77a5c561934e089/System.Data.Services.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.Services/4.0.0.0__b77a5c561934e089/System.Data.Services.dll b/mono-test/bin/lib/mono/gac/System.Data.Services/4.0.0.0__b77a5c561934e089/System.Data.Services.dll new file mode 100644 index 0000000..fadfaec Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.Services/4.0.0.0__b77a5c561934e089/System.Data.Services.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Data.Services/4.0.0.0__b77a5c561934e089/System.Data.Services.dll.mdb b/mono-test/bin/lib/mono/gac/System.Data.Services/4.0.0.0__b77a5c561934e089/System.Data.Services.dll.mdb new file mode 100644 index 0000000..f3fc9d2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data.Services/4.0.0.0__b77a5c561934e089/System.Data.Services.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll b/mono-test/bin/lib/mono/gac/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll new file mode 100644 index 0000000..f051b61 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll.mdb b/mono-test/bin/lib/mono/gac/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll.mdb new file mode 100644 index 0000000..f6ad8df Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Data/4.0.0.0__b77a5c561934e089/System.Data.dll b/mono-test/bin/lib/mono/gac/System.Data/4.0.0.0__b77a5c561934e089/System.Data.dll new file mode 100644 index 0000000..734ef86 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data/4.0.0.0__b77a5c561934e089/System.Data.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Data/4.0.0.0__b77a5c561934e089/System.Data.dll.mdb b/mono-test/bin/lib/mono/gac/System.Data/4.0.0.0__b77a5c561934e089/System.Data.dll.mdb new file mode 100644 index 0000000..90696f2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Data/4.0.0.0__b77a5c561934e089/System.Data.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Design/2.0.0.0__b03f5f7f11d50a3a/System.Design.dll b/mono-test/bin/lib/mono/gac/System.Design/2.0.0.0__b03f5f7f11d50a3a/System.Design.dll new file mode 100644 index 0000000..ad15f8d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Design/2.0.0.0__b03f5f7f11d50a3a/System.Design.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Design/2.0.0.0__b03f5f7f11d50a3a/System.Design.dll.mdb b/mono-test/bin/lib/mono/gac/System.Design/2.0.0.0__b03f5f7f11d50a3a/System.Design.dll.mdb new file mode 100644 index 0000000..8a1d8f5 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Design/2.0.0.0__b03f5f7f11d50a3a/System.Design.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Design/4.0.0.0__b03f5f7f11d50a3a/System.Design.dll b/mono-test/bin/lib/mono/gac/System.Design/4.0.0.0__b03f5f7f11d50a3a/System.Design.dll new file mode 100644 index 0000000..deebe1e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Design/4.0.0.0__b03f5f7f11d50a3a/System.Design.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Design/4.0.0.0__b03f5f7f11d50a3a/System.Design.dll.mdb b/mono-test/bin/lib/mono/gac/System.Design/4.0.0.0__b03f5f7f11d50a3a/System.Design.dll.mdb new file mode 100644 index 0000000..4fb399e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Design/4.0.0.0__b03f5f7f11d50a3a/System.Design.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.DirectoryServices.Protocols/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll b/mono-test/bin/lib/mono/gac/System.DirectoryServices.Protocols/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..6737b66 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.DirectoryServices.Protocols/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.DirectoryServices.Protocols/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll.mdb b/mono-test/bin/lib/mono/gac/System.DirectoryServices.Protocols/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll.mdb new file mode 100644 index 0000000..7b88559 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.DirectoryServices.Protocols/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.DirectoryServices.Protocols/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll b/mono-test/bin/lib/mono/gac/System.DirectoryServices.Protocols/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..1b35f52 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.DirectoryServices.Protocols/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.DirectoryServices.Protocols/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll.mdb b/mono-test/bin/lib/mono/gac/System.DirectoryServices.Protocols/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll.mdb new file mode 100644 index 0000000..95c3653 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.DirectoryServices.Protocols/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.Protocols.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.DirectoryServices/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll b/mono-test/bin/lib/mono/gac/System.DirectoryServices/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll new file mode 100644 index 0000000..0d45b3b Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.DirectoryServices/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.DirectoryServices/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll.mdb b/mono-test/bin/lib/mono/gac/System.DirectoryServices/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll.mdb new file mode 100644 index 0000000..d4ef217 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.DirectoryServices/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.DirectoryServices/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll b/mono-test/bin/lib/mono/gac/System.DirectoryServices/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll new file mode 100644 index 0000000..c76405e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.DirectoryServices/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.DirectoryServices/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll.mdb b/mono-test/bin/lib/mono/gac/System.DirectoryServices/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll.mdb new file mode 100644 index 0000000..2435816 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.DirectoryServices/4.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Drawing.Design/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll b/mono-test/bin/lib/mono/gac/System.Drawing.Design/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll new file mode 100644 index 0000000..6a77f99 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Drawing.Design/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Drawing.Design/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll.mdb b/mono-test/bin/lib/mono/gac/System.Drawing.Design/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll.mdb new file mode 100644 index 0000000..e1b610f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Drawing.Design/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Drawing.Design/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll b/mono-test/bin/lib/mono/gac/System.Drawing.Design/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll new file mode 100644 index 0000000..854ccff Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Drawing.Design/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Drawing.Design/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll.mdb b/mono-test/bin/lib/mono/gac/System.Drawing.Design/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll.mdb new file mode 100644 index 0000000..22a15df Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Drawing.Design/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.Design.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll b/mono-test/bin/lib/mono/gac/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll new file mode 100644 index 0000000..8d23fcc Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.mdb b/mono-test/bin/lib/mono/gac/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.mdb new file mode 100644 index 0000000..2c0fa8b Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll b/mono-test/bin/lib/mono/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll new file mode 100644 index 0000000..3aa939e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.mdb b/mono-test/bin/lib/mono/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.mdb new file mode 100644 index 0000000..dc109bb Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Dynamic/4.0.0.0__b77a5c561934e089/System.Dynamic.dll b/mono-test/bin/lib/mono/gac/System.Dynamic/4.0.0.0__b77a5c561934e089/System.Dynamic.dll new file mode 100644 index 0000000..d822ece Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Dynamic/4.0.0.0__b77a5c561934e089/System.Dynamic.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Dynamic/4.0.0.0__b77a5c561934e089/System.Dynamic.dll.mdb b/mono-test/bin/lib/mono/gac/System.Dynamic/4.0.0.0__b77a5c561934e089/System.Dynamic.dll.mdb new file mode 100644 index 0000000..5167801 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Dynamic/4.0.0.0__b77a5c561934e089/System.Dynamic.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll b/mono-test/bin/lib/mono/gac/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll new file mode 100644 index 0000000..0bb52aa Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll.mdb b/mono-test/bin/lib/mono/gac/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll.mdb new file mode 100644 index 0000000..85e9fc1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.EnterpriseServices/4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll b/mono-test/bin/lib/mono/gac/System.EnterpriseServices/4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll new file mode 100644 index 0000000..953ae7b Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.EnterpriseServices/4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.EnterpriseServices/4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll.mdb b/mono-test/bin/lib/mono/gac/System.EnterpriseServices/4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll.mdb new file mode 100644 index 0000000..d4a4212 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.EnterpriseServices/4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.IO.Compression.FileSystem/4.0.0.0__b77a5c561934e089/System.IO.Compression.FileSystem.dll b/mono-test/bin/lib/mono/gac/System.IO.Compression.FileSystem/4.0.0.0__b77a5c561934e089/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..3333b3c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.IO.Compression.FileSystem/4.0.0.0__b77a5c561934e089/System.IO.Compression.FileSystem.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.IO.Compression.FileSystem/4.0.0.0__b77a5c561934e089/System.IO.Compression.FileSystem.dll.mdb b/mono-test/bin/lib/mono/gac/System.IO.Compression.FileSystem/4.0.0.0__b77a5c561934e089/System.IO.Compression.FileSystem.dll.mdb new file mode 100644 index 0000000..45a1878 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.IO.Compression.FileSystem/4.0.0.0__b77a5c561934e089/System.IO.Compression.FileSystem.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.IO.Compression/4.0.0.0__b77a5c561934e089/System.IO.Compression.dll b/mono-test/bin/lib/mono/gac/System.IO.Compression/4.0.0.0__b77a5c561934e089/System.IO.Compression.dll new file mode 100644 index 0000000..328dd5a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.IO.Compression/4.0.0.0__b77a5c561934e089/System.IO.Compression.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.IO.Compression/4.0.0.0__b77a5c561934e089/System.IO.Compression.dll.mdb b/mono-test/bin/lib/mono/gac/System.IO.Compression/4.0.0.0__b77a5c561934e089/System.IO.Compression.dll.mdb new file mode 100644 index 0000000..2552fa4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.IO.Compression/4.0.0.0__b77a5c561934e089/System.IO.Compression.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.IdentityModel.Selectors/3.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll b/mono-test/bin/lib/mono/gac/System.IdentityModel.Selectors/3.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll new file mode 100644 index 0000000..9d225c1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.IdentityModel.Selectors/3.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.IdentityModel.Selectors/3.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll.mdb b/mono-test/bin/lib/mono/gac/System.IdentityModel.Selectors/3.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll.mdb new file mode 100644 index 0000000..02984f1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.IdentityModel.Selectors/3.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.IdentityModel.Selectors/4.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll b/mono-test/bin/lib/mono/gac/System.IdentityModel.Selectors/4.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll new file mode 100644 index 0000000..bc4eaee Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.IdentityModel.Selectors/4.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.IdentityModel.Selectors/4.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll.mdb b/mono-test/bin/lib/mono/gac/System.IdentityModel.Selectors/4.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll.mdb new file mode 100644 index 0000000..d886f31 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.IdentityModel.Selectors/4.0.0.0__b77a5c561934e089/System.IdentityModel.Selectors.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.IdentityModel/3.0.0.0__b77a5c561934e089/System.IdentityModel.dll b/mono-test/bin/lib/mono/gac/System.IdentityModel/3.0.0.0__b77a5c561934e089/System.IdentityModel.dll new file mode 100644 index 0000000..c64f1ed Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.IdentityModel/3.0.0.0__b77a5c561934e089/System.IdentityModel.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.IdentityModel/3.0.0.0__b77a5c561934e089/System.IdentityModel.dll.mdb b/mono-test/bin/lib/mono/gac/System.IdentityModel/3.0.0.0__b77a5c561934e089/System.IdentityModel.dll.mdb new file mode 100644 index 0000000..9d12620 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.IdentityModel/3.0.0.0__b77a5c561934e089/System.IdentityModel.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.IdentityModel/4.0.0.0__b77a5c561934e089/System.IdentityModel.dll b/mono-test/bin/lib/mono/gac/System.IdentityModel/4.0.0.0__b77a5c561934e089/System.IdentityModel.dll new file mode 100644 index 0000000..06973e7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.IdentityModel/4.0.0.0__b77a5c561934e089/System.IdentityModel.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.IdentityModel/4.0.0.0__b77a5c561934e089/System.IdentityModel.dll.mdb b/mono-test/bin/lib/mono/gac/System.IdentityModel/4.0.0.0__b77a5c561934e089/System.IdentityModel.dll.mdb new file mode 100644 index 0000000..46c776f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.IdentityModel/4.0.0.0__b77a5c561934e089/System.IdentityModel.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Json.Microsoft/4.0.0.0__31bf3856ad364e35/System.Json.Microsoft.dll b/mono-test/bin/lib/mono/gac/System.Json.Microsoft/4.0.0.0__31bf3856ad364e35/System.Json.Microsoft.dll new file mode 100644 index 0000000..0e584a4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Json.Microsoft/4.0.0.0__31bf3856ad364e35/System.Json.Microsoft.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Json.Microsoft/4.0.0.0__31bf3856ad364e35/System.Json.Microsoft.dll.mdb b/mono-test/bin/lib/mono/gac/System.Json.Microsoft/4.0.0.0__31bf3856ad364e35/System.Json.Microsoft.dll.mdb new file mode 100644 index 0000000..baa2158 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Json.Microsoft/4.0.0.0__31bf3856ad364e35/System.Json.Microsoft.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Json/2.0.0.0__31bf3856ad364e35/System.Json.dll b/mono-test/bin/lib/mono/gac/System.Json/2.0.0.0__31bf3856ad364e35/System.Json.dll new file mode 100644 index 0000000..d7a187e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Json/2.0.0.0__31bf3856ad364e35/System.Json.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Json/2.0.0.0__31bf3856ad364e35/System.Json.dll.mdb b/mono-test/bin/lib/mono/gac/System.Json/2.0.0.0__31bf3856ad364e35/System.Json.dll.mdb new file mode 100644 index 0000000..95b7b63 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Json/2.0.0.0__31bf3856ad364e35/System.Json.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Json/4.0.0.0__31bf3856ad364e35/System.Json.dll b/mono-test/bin/lib/mono/gac/System.Json/4.0.0.0__31bf3856ad364e35/System.Json.dll new file mode 100644 index 0000000..2b3dda6 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Json/4.0.0.0__31bf3856ad364e35/System.Json.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Json/4.0.0.0__31bf3856ad364e35/System.Json.dll.mdb b/mono-test/bin/lib/mono/gac/System.Json/4.0.0.0__31bf3856ad364e35/System.Json.dll.mdb new file mode 100644 index 0000000..ab8ac2f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Json/4.0.0.0__31bf3856ad364e35/System.Json.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Management/2.0.0.0__b03f5f7f11d50a3a/System.Management.dll b/mono-test/bin/lib/mono/gac/System.Management/2.0.0.0__b03f5f7f11d50a3a/System.Management.dll new file mode 100644 index 0000000..0c04a72 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Management/2.0.0.0__b03f5f7f11d50a3a/System.Management.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Management/2.0.0.0__b03f5f7f11d50a3a/System.Management.dll.mdb b/mono-test/bin/lib/mono/gac/System.Management/2.0.0.0__b03f5f7f11d50a3a/System.Management.dll.mdb new file mode 100644 index 0000000..284ee9e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Management/2.0.0.0__b03f5f7f11d50a3a/System.Management.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Management/4.0.0.0__b03f5f7f11d50a3a/System.Management.dll b/mono-test/bin/lib/mono/gac/System.Management/4.0.0.0__b03f5f7f11d50a3a/System.Management.dll new file mode 100644 index 0000000..1b07821 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Management/4.0.0.0__b03f5f7f11d50a3a/System.Management.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Management/4.0.0.0__b03f5f7f11d50a3a/System.Management.dll.mdb b/mono-test/bin/lib/mono/gac/System.Management/4.0.0.0__b03f5f7f11d50a3a/System.Management.dll.mdb new file mode 100644 index 0000000..2ac4c55 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Management/4.0.0.0__b03f5f7f11d50a3a/System.Management.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Messaging/2.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll b/mono-test/bin/lib/mono/gac/System.Messaging/2.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll new file mode 100644 index 0000000..336d1e4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Messaging/2.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Messaging/2.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll.mdb b/mono-test/bin/lib/mono/gac/System.Messaging/2.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll.mdb new file mode 100644 index 0000000..616514e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Messaging/2.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Messaging/4.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll b/mono-test/bin/lib/mono/gac/System.Messaging/4.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll new file mode 100644 index 0000000..bfef872 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Messaging/4.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Messaging/4.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll.mdb b/mono-test/bin/lib/mono/gac/System.Messaging/4.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll.mdb new file mode 100644 index 0000000..41786e1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Messaging/4.0.0.0__b03f5f7f11d50a3a/System.Messaging.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Net.Http.Formatting/4.0.0.0__31bf3856ad364e35/System.Net.Http.Formatting.dll b/mono-test/bin/lib/mono/gac/System.Net.Http.Formatting/4.0.0.0__31bf3856ad364e35/System.Net.Http.Formatting.dll new file mode 100644 index 0000000..ca97fd8 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Net.Http.Formatting/4.0.0.0__31bf3856ad364e35/System.Net.Http.Formatting.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Net.Http.Formatting/4.0.0.0__31bf3856ad364e35/System.Net.Http.Formatting.dll.mdb b/mono-test/bin/lib/mono/gac/System.Net.Http.Formatting/4.0.0.0__31bf3856ad364e35/System.Net.Http.Formatting.dll.mdb new file mode 100644 index 0000000..d51530c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Net.Http.Formatting/4.0.0.0__31bf3856ad364e35/System.Net.Http.Formatting.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Net.Http.WebRequest/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.WebRequest.dll b/mono-test/bin/lib/mono/gac/System.Net.Http.WebRequest/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.WebRequest.dll new file mode 100644 index 0000000..ed0aeaa Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Net.Http.WebRequest/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.WebRequest.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Net.Http.WebRequest/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.WebRequest.dll.mdb b/mono-test/bin/lib/mono/gac/System.Net.Http.WebRequest/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.WebRequest.dll.mdb new file mode 100644 index 0000000..a62fc76 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Net.Http.WebRequest/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.WebRequest.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Net.Http/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll b/mono-test/bin/lib/mono/gac/System.Net.Http/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll new file mode 100644 index 0000000..83f37c1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Net.Http/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Net.Http/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll.mdb b/mono-test/bin/lib/mono/gac/System.Net.Http/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll.mdb new file mode 100644 index 0000000..f5bc536 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Net.Http/4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Net/3.5.0.0__b77a5c561934e089/System.Net.dll b/mono-test/bin/lib/mono/gac/System.Net/3.5.0.0__b77a5c561934e089/System.Net.dll new file mode 100644 index 0000000..fa7b878 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Net/3.5.0.0__b77a5c561934e089/System.Net.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Net/3.5.0.0__b77a5c561934e089/System.Net.dll.mdb b/mono-test/bin/lib/mono/gac/System.Net/3.5.0.0__b77a5c561934e089/System.Net.dll.mdb new file mode 100644 index 0000000..89a495c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Net/3.5.0.0__b77a5c561934e089/System.Net.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Net/4.0.0.0__b77a5c561934e089/System.Net.dll b/mono-test/bin/lib/mono/gac/System.Net/4.0.0.0__b77a5c561934e089/System.Net.dll new file mode 100644 index 0000000..da6aa24 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Net/4.0.0.0__b77a5c561934e089/System.Net.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Net/4.0.0.0__b77a5c561934e089/System.Net.dll.mdb b/mono-test/bin/lib/mono/gac/System.Net/4.0.0.0__b77a5c561934e089/System.Net.dll.mdb new file mode 100644 index 0000000..a77e73c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Net/4.0.0.0__b77a5c561934e089/System.Net.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Numerics/4.0.0.0__b77a5c561934e089/System.Numerics.dll b/mono-test/bin/lib/mono/gac/System.Numerics/4.0.0.0__b77a5c561934e089/System.Numerics.dll new file mode 100644 index 0000000..8b36373 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Numerics/4.0.0.0__b77a5c561934e089/System.Numerics.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Numerics/4.0.0.0__b77a5c561934e089/System.Numerics.dll.mdb b/mono-test/bin/lib/mono/gac/System.Numerics/4.0.0.0__b77a5c561934e089/System.Numerics.dll.mdb new file mode 100644 index 0000000..abd2a59 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Numerics/4.0.0.0__b77a5c561934e089/System.Numerics.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Core/2.1.30214.0__31bf3856ad364e35/System.Reactive.Core.dll b/mono-test/bin/lib/mono/gac/System.Reactive.Core/2.1.30214.0__31bf3856ad364e35/System.Reactive.Core.dll new file mode 100644 index 0000000..a43bfb4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Core/2.1.30214.0__31bf3856ad364e35/System.Reactive.Core.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Core/2.1.30214.0__31bf3856ad364e35/System.Reactive.Core.dll.mdb b/mono-test/bin/lib/mono/gac/System.Reactive.Core/2.1.30214.0__31bf3856ad364e35/System.Reactive.Core.dll.mdb new file mode 100644 index 0000000..41accd2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Core/2.1.30214.0__31bf3856ad364e35/System.Reactive.Core.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Debugger/2.1.30214.0__31bf3856ad364e35/System.Reactive.Debugger.dll b/mono-test/bin/lib/mono/gac/System.Reactive.Debugger/2.1.30214.0__31bf3856ad364e35/System.Reactive.Debugger.dll new file mode 100644 index 0000000..13d497c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Debugger/2.1.30214.0__31bf3856ad364e35/System.Reactive.Debugger.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Debugger/2.1.30214.0__31bf3856ad364e35/System.Reactive.Debugger.dll.mdb b/mono-test/bin/lib/mono/gac/System.Reactive.Debugger/2.1.30214.0__31bf3856ad364e35/System.Reactive.Debugger.dll.mdb new file mode 100644 index 0000000..75d4985 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Debugger/2.1.30214.0__31bf3856ad364e35/System.Reactive.Debugger.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Experimental/2.1.30214.0__31bf3856ad364e35/System.Reactive.Experimental.dll b/mono-test/bin/lib/mono/gac/System.Reactive.Experimental/2.1.30214.0__31bf3856ad364e35/System.Reactive.Experimental.dll new file mode 100644 index 0000000..0772577 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Experimental/2.1.30214.0__31bf3856ad364e35/System.Reactive.Experimental.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Experimental/2.1.30214.0__31bf3856ad364e35/System.Reactive.Experimental.dll.mdb b/mono-test/bin/lib/mono/gac/System.Reactive.Experimental/2.1.30214.0__31bf3856ad364e35/System.Reactive.Experimental.dll.mdb new file mode 100644 index 0000000..c68bf18 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Experimental/2.1.30214.0__31bf3856ad364e35/System.Reactive.Experimental.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Interfaces/2.1.30214.0__31bf3856ad364e35/System.Reactive.Interfaces.dll b/mono-test/bin/lib/mono/gac/System.Reactive.Interfaces/2.1.30214.0__31bf3856ad364e35/System.Reactive.Interfaces.dll new file mode 100644 index 0000000..ef0d7b7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Interfaces/2.1.30214.0__31bf3856ad364e35/System.Reactive.Interfaces.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Interfaces/2.1.30214.0__31bf3856ad364e35/System.Reactive.Interfaces.dll.mdb b/mono-test/bin/lib/mono/gac/System.Reactive.Interfaces/2.1.30214.0__31bf3856ad364e35/System.Reactive.Interfaces.dll.mdb new file mode 100644 index 0000000..d37cab4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Interfaces/2.1.30214.0__31bf3856ad364e35/System.Reactive.Interfaces.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Linq/2.1.30214.0__31bf3856ad364e35/System.Reactive.Linq.dll b/mono-test/bin/lib/mono/gac/System.Reactive.Linq/2.1.30214.0__31bf3856ad364e35/System.Reactive.Linq.dll new file mode 100644 index 0000000..e036579 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Linq/2.1.30214.0__31bf3856ad364e35/System.Reactive.Linq.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Linq/2.1.30214.0__31bf3856ad364e35/System.Reactive.Linq.dll.mdb b/mono-test/bin/lib/mono/gac/System.Reactive.Linq/2.1.30214.0__31bf3856ad364e35/System.Reactive.Linq.dll.mdb new file mode 100644 index 0000000..5ca896a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Linq/2.1.30214.0__31bf3856ad364e35/System.Reactive.Linq.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.PlatformServices/2.1.30214.0__31bf3856ad364e35/System.Reactive.PlatformServices.dll b/mono-test/bin/lib/mono/gac/System.Reactive.PlatformServices/2.1.30214.0__31bf3856ad364e35/System.Reactive.PlatformServices.dll new file mode 100644 index 0000000..98f9292 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.PlatformServices/2.1.30214.0__31bf3856ad364e35/System.Reactive.PlatformServices.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.PlatformServices/2.1.30214.0__31bf3856ad364e35/System.Reactive.PlatformServices.dll.mdb b/mono-test/bin/lib/mono/gac/System.Reactive.PlatformServices/2.1.30214.0__31bf3856ad364e35/System.Reactive.PlatformServices.dll.mdb new file mode 100644 index 0000000..9d04273 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.PlatformServices/2.1.30214.0__31bf3856ad364e35/System.Reactive.PlatformServices.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Providers/2.1.30214.0__31bf3856ad364e35/System.Reactive.Providers.dll b/mono-test/bin/lib/mono/gac/System.Reactive.Providers/2.1.30214.0__31bf3856ad364e35/System.Reactive.Providers.dll new file mode 100644 index 0000000..e54df3f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Providers/2.1.30214.0__31bf3856ad364e35/System.Reactive.Providers.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Providers/2.1.30214.0__31bf3856ad364e35/System.Reactive.Providers.dll.mdb b/mono-test/bin/lib/mono/gac/System.Reactive.Providers/2.1.30214.0__31bf3856ad364e35/System.Reactive.Providers.dll.mdb new file mode 100644 index 0000000..0311975 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Providers/2.1.30214.0__31bf3856ad364e35/System.Reactive.Providers.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Runtime.Remoting/2.1.30214.0__31bf3856ad364e35/System.Reactive.Runtime.Remoting.dll b/mono-test/bin/lib/mono/gac/System.Reactive.Runtime.Remoting/2.1.30214.0__31bf3856ad364e35/System.Reactive.Runtime.Remoting.dll new file mode 100644 index 0000000..379e5cb Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Runtime.Remoting/2.1.30214.0__31bf3856ad364e35/System.Reactive.Runtime.Remoting.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Runtime.Remoting/2.1.30214.0__31bf3856ad364e35/System.Reactive.Runtime.Remoting.dll.mdb b/mono-test/bin/lib/mono/gac/System.Reactive.Runtime.Remoting/2.1.30214.0__31bf3856ad364e35/System.Reactive.Runtime.Remoting.dll.mdb new file mode 100644 index 0000000..f50d3dc Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Runtime.Remoting/2.1.30214.0__31bf3856ad364e35/System.Reactive.Runtime.Remoting.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Windows.Forms/2.1.30214.0__31bf3856ad364e35/System.Reactive.Windows.Forms.dll b/mono-test/bin/lib/mono/gac/System.Reactive.Windows.Forms/2.1.30214.0__31bf3856ad364e35/System.Reactive.Windows.Forms.dll new file mode 100644 index 0000000..341fe26 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Windows.Forms/2.1.30214.0__31bf3856ad364e35/System.Reactive.Windows.Forms.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Windows.Forms/2.1.30214.0__31bf3856ad364e35/System.Reactive.Windows.Forms.dll.mdb b/mono-test/bin/lib/mono/gac/System.Reactive.Windows.Forms/2.1.30214.0__31bf3856ad364e35/System.Reactive.Windows.Forms.dll.mdb new file mode 100644 index 0000000..6506b66 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Windows.Forms/2.1.30214.0__31bf3856ad364e35/System.Reactive.Windows.Forms.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Windows.Threading/2.1.30214.0__31bf3856ad364e35/System.Reactive.Windows.Threading.dll b/mono-test/bin/lib/mono/gac/System.Reactive.Windows.Threading/2.1.30214.0__31bf3856ad364e35/System.Reactive.Windows.Threading.dll new file mode 100644 index 0000000..d5bb69c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Windows.Threading/2.1.30214.0__31bf3856ad364e35/System.Reactive.Windows.Threading.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Reactive.Windows.Threading/2.1.30214.0__31bf3856ad364e35/System.Reactive.Windows.Threading.dll.mdb b/mono-test/bin/lib/mono/gac/System.Reactive.Windows.Threading/2.1.30214.0__31bf3856ad364e35/System.Reactive.Windows.Threading.dll.mdb new file mode 100644 index 0000000..43fd3ae Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Reactive.Windows.Threading/2.1.30214.0__31bf3856ad364e35/System.Reactive.Windows.Threading.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Caching/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Caching.dll b/mono-test/bin/lib/mono/gac/System.Runtime.Caching/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Caching.dll new file mode 100644 index 0000000..52e7ea5 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Caching/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Caching.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Caching/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Caching.dll.mdb b/mono-test/bin/lib/mono/gac/System.Runtime.Caching/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Caching.dll.mdb new file mode 100644 index 0000000..9bc27cc Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Caching/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Caching.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.DurableInstancing/4.0.0.0__31bf3856ad364e35/System.Runtime.DurableInstancing.dll b/mono-test/bin/lib/mono/gac/System.Runtime.DurableInstancing/4.0.0.0__31bf3856ad364e35/System.Runtime.DurableInstancing.dll new file mode 100644 index 0000000..99bb5fb Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.DurableInstancing/4.0.0.0__31bf3856ad364e35/System.Runtime.DurableInstancing.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.DurableInstancing/4.0.0.0__31bf3856ad364e35/System.Runtime.DurableInstancing.dll.mdb b/mono-test/bin/lib/mono/gac/System.Runtime.DurableInstancing/4.0.0.0__31bf3856ad364e35/System.Runtime.DurableInstancing.dll.mdb new file mode 100644 index 0000000..b7eed91 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.DurableInstancing/4.0.0.0__31bf3856ad364e35/System.Runtime.DurableInstancing.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Remoting/2.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll b/mono-test/bin/lib/mono/gac/System.Runtime.Remoting/2.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll new file mode 100644 index 0000000..e0b6bcb Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Remoting/2.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Remoting/2.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll.mdb b/mono-test/bin/lib/mono/gac/System.Runtime.Remoting/2.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll.mdb new file mode 100644 index 0000000..02ff00e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Remoting/2.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Remoting/4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll b/mono-test/bin/lib/mono/gac/System.Runtime.Remoting/4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll new file mode 100644 index 0000000..52be233 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Remoting/4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Remoting/4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll.mdb b/mono-test/bin/lib/mono/gac/System.Runtime.Remoting/4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll.mdb new file mode 100644 index 0000000..7f5c82c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Remoting/4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/2.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/2.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll new file mode 100644 index 0000000..921bf38 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/2.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/2.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll.mdb b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/2.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll.mdb new file mode 100644 index 0000000..093a1fa Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/2.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll new file mode 100644 index 0000000..a041e19 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll.mdb b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll.mdb new file mode 100644 index 0000000..19feba2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap/4.0.0.0__b03f5f7f11d50a3a/System.Runtime.Serialization.Formatters.Soap.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Serialization/3.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization/3.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll new file mode 100644 index 0000000..fa23292 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization/3.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Serialization/3.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll.mdb b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization/3.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll.mdb new file mode 100644 index 0000000..86b7e6c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization/3.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Serialization/4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization/4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll new file mode 100644 index 0000000..a1d2052 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization/4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Runtime.Serialization/4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll.mdb b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization/4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll.mdb new file mode 100644 index 0000000..08b1966 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Runtime.Serialization/4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Security/2.0.0.0__b03f5f7f11d50a3a/System.Security.dll b/mono-test/bin/lib/mono/gac/System.Security/2.0.0.0__b03f5f7f11d50a3a/System.Security.dll new file mode 100644 index 0000000..b20eaea Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Security/2.0.0.0__b03f5f7f11d50a3a/System.Security.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Security/2.0.0.0__b03f5f7f11d50a3a/System.Security.dll.mdb b/mono-test/bin/lib/mono/gac/System.Security/2.0.0.0__b03f5f7f11d50a3a/System.Security.dll.mdb new file mode 100644 index 0000000..502d157 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Security/2.0.0.0__b03f5f7f11d50a3a/System.Security.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Security/4.0.0.0__b03f5f7f11d50a3a/System.Security.dll b/mono-test/bin/lib/mono/gac/System.Security/4.0.0.0__b03f5f7f11d50a3a/System.Security.dll new file mode 100644 index 0000000..b35bdce Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Security/4.0.0.0__b03f5f7f11d50a3a/System.Security.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Security/4.0.0.0__b03f5f7f11d50a3a/System.Security.dll.mdb b/mono-test/bin/lib/mono/gac/System.Security/4.0.0.0__b03f5f7f11d50a3a/System.Security.dll.mdb new file mode 100644 index 0000000..811c993 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Security/4.0.0.0__b03f5f7f11d50a3a/System.Security.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceModel.Discovery/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Discovery.dll b/mono-test/bin/lib/mono/gac/System.ServiceModel.Discovery/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Discovery.dll new file mode 100644 index 0000000..2eba4da Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceModel.Discovery/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Discovery.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceModel.Discovery/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Discovery.dll.mdb b/mono-test/bin/lib/mono/gac/System.ServiceModel.Discovery/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Discovery.dll.mdb new file mode 100644 index 0000000..34061fb Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceModel.Discovery/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Discovery.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceModel.Routing/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Routing.dll b/mono-test/bin/lib/mono/gac/System.ServiceModel.Routing/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Routing.dll new file mode 100644 index 0000000..cc44f42 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceModel.Routing/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Routing.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceModel.Routing/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Routing.dll.mdb b/mono-test/bin/lib/mono/gac/System.ServiceModel.Routing/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Routing.dll.mdb new file mode 100644 index 0000000..fc2260d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceModel.Routing/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Routing.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceModel.Web/3.5.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll b/mono-test/bin/lib/mono/gac/System.ServiceModel.Web/3.5.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll new file mode 100644 index 0000000..869861c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceModel.Web/3.5.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceModel.Web/3.5.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll.mdb b/mono-test/bin/lib/mono/gac/System.ServiceModel.Web/3.5.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll.mdb new file mode 100644 index 0000000..1d37200 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceModel.Web/3.5.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceModel.Web/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll b/mono-test/bin/lib/mono/gac/System.ServiceModel.Web/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll new file mode 100644 index 0000000..435f6bc Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceModel.Web/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceModel.Web/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll.mdb b/mono-test/bin/lib/mono/gac/System.ServiceModel.Web/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll.mdb new file mode 100644 index 0000000..b95c92e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceModel.Web/4.0.0.0__31bf3856ad364e35/System.ServiceModel.Web.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceModel/3.0.0.0__b77a5c561934e089/System.ServiceModel.dll b/mono-test/bin/lib/mono/gac/System.ServiceModel/3.0.0.0__b77a5c561934e089/System.ServiceModel.dll new file mode 100644 index 0000000..8b09fbb Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceModel/3.0.0.0__b77a5c561934e089/System.ServiceModel.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceModel/3.0.0.0__b77a5c561934e089/System.ServiceModel.dll.mdb b/mono-test/bin/lib/mono/gac/System.ServiceModel/3.0.0.0__b77a5c561934e089/System.ServiceModel.dll.mdb new file mode 100644 index 0000000..a4f9d26 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceModel/3.0.0.0__b77a5c561934e089/System.ServiceModel.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceModel/4.0.0.0__b77a5c561934e089/System.ServiceModel.dll b/mono-test/bin/lib/mono/gac/System.ServiceModel/4.0.0.0__b77a5c561934e089/System.ServiceModel.dll new file mode 100644 index 0000000..0277124 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceModel/4.0.0.0__b77a5c561934e089/System.ServiceModel.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceModel/4.0.0.0__b77a5c561934e089/System.ServiceModel.dll.mdb b/mono-test/bin/lib/mono/gac/System.ServiceModel/4.0.0.0__b77a5c561934e089/System.ServiceModel.dll.mdb new file mode 100644 index 0000000..ac5fdc9 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceModel/4.0.0.0__b77a5c561934e089/System.ServiceModel.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceProcess/2.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll b/mono-test/bin/lib/mono/gac/System.ServiceProcess/2.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll new file mode 100644 index 0000000..2372e0a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceProcess/2.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceProcess/2.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll.mdb b/mono-test/bin/lib/mono/gac/System.ServiceProcess/2.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll.mdb new file mode 100644 index 0000000..536c2b0 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceProcess/2.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceProcess/4.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll b/mono-test/bin/lib/mono/gac/System.ServiceProcess/4.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll new file mode 100644 index 0000000..92c7aa4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceProcess/4.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.ServiceProcess/4.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll.mdb b/mono-test/bin/lib/mono/gac/System.ServiceProcess/4.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll.mdb new file mode 100644 index 0000000..beec6a2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.ServiceProcess/4.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Threading.Tasks.Dataflow/4.0.0.0__b77a5c561934e089/System.Threading.Tasks.Dataflow.dll b/mono-test/bin/lib/mono/gac/System.Threading.Tasks.Dataflow/4.0.0.0__b77a5c561934e089/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..eb4cd0f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Threading.Tasks.Dataflow/4.0.0.0__b77a5c561934e089/System.Threading.Tasks.Dataflow.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Threading.Tasks.Dataflow/4.0.0.0__b77a5c561934e089/System.Threading.Tasks.Dataflow.dll.mdb b/mono-test/bin/lib/mono/gac/System.Threading.Tasks.Dataflow/4.0.0.0__b77a5c561934e089/System.Threading.Tasks.Dataflow.dll.mdb new file mode 100644 index 0000000..c646cdd Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Threading.Tasks.Dataflow/4.0.0.0__b77a5c561934e089/System.Threading.Tasks.Dataflow.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll b/mono-test/bin/lib/mono/gac/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll new file mode 100644 index 0000000..0191347 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll.mdb b/mono-test/bin/lib/mono/gac/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll.mdb new file mode 100644 index 0000000..7485879 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Transactions/4.0.0.0__b77a5c561934e089/System.Transactions.dll b/mono-test/bin/lib/mono/gac/System.Transactions/4.0.0.0__b77a5c561934e089/System.Transactions.dll new file mode 100644 index 0000000..77852b3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Transactions/4.0.0.0__b77a5c561934e089/System.Transactions.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Transactions/4.0.0.0__b77a5c561934e089/System.Transactions.dll.mdb b/mono-test/bin/lib/mono/gac/System.Transactions/4.0.0.0__b77a5c561934e089/System.Transactions.dll.mdb new file mode 100644 index 0000000..d0c4cce Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Transactions/4.0.0.0__b77a5c561934e089/System.Transactions.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Abstractions/3.5.0.0__31bf3856ad364e35/System.Web.Abstractions.dll b/mono-test/bin/lib/mono/gac/System.Web.Abstractions/3.5.0.0__31bf3856ad364e35/System.Web.Abstractions.dll new file mode 100644 index 0000000..2fb87f4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Abstractions/3.5.0.0__31bf3856ad364e35/System.Web.Abstractions.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Abstractions/3.5.0.0__31bf3856ad364e35/System.Web.Abstractions.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Abstractions/3.5.0.0__31bf3856ad364e35/System.Web.Abstractions.dll.mdb new file mode 100644 index 0000000..1e81f5a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Abstractions/3.5.0.0__31bf3856ad364e35/System.Web.Abstractions.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Abstractions/4.0.0.0__31bf3856ad364e35/System.Web.Abstractions.dll b/mono-test/bin/lib/mono/gac/System.Web.Abstractions/4.0.0.0__31bf3856ad364e35/System.Web.Abstractions.dll new file mode 100644 index 0000000..e168182 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Abstractions/4.0.0.0__31bf3856ad364e35/System.Web.Abstractions.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Abstractions/4.0.0.0__31bf3856ad364e35/System.Web.Abstractions.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Abstractions/4.0.0.0__31bf3856ad364e35/System.Web.Abstractions.dll.mdb new file mode 100644 index 0000000..17ee412 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Abstractions/4.0.0.0__31bf3856ad364e35/System.Web.Abstractions.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.ApplicationServices/4.0.0.0__31bf3856ad364e35/System.Web.ApplicationServices.dll b/mono-test/bin/lib/mono/gac/System.Web.ApplicationServices/4.0.0.0__31bf3856ad364e35/System.Web.ApplicationServices.dll new file mode 100644 index 0000000..2c49432 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.ApplicationServices/4.0.0.0__31bf3856ad364e35/System.Web.ApplicationServices.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.ApplicationServices/4.0.0.0__31bf3856ad364e35/System.Web.ApplicationServices.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.ApplicationServices/4.0.0.0__31bf3856ad364e35/System.Web.ApplicationServices.dll.mdb new file mode 100644 index 0000000..094bb31 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.ApplicationServices/4.0.0.0__31bf3856ad364e35/System.Web.ApplicationServices.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.DynamicData/3.5.0.0__31bf3856ad364e35/System.Web.DynamicData.dll b/mono-test/bin/lib/mono/gac/System.Web.DynamicData/3.5.0.0__31bf3856ad364e35/System.Web.DynamicData.dll new file mode 100644 index 0000000..d148c05 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.DynamicData/3.5.0.0__31bf3856ad364e35/System.Web.DynamicData.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.DynamicData/3.5.0.0__31bf3856ad364e35/System.Web.DynamicData.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.DynamicData/3.5.0.0__31bf3856ad364e35/System.Web.DynamicData.dll.mdb new file mode 100644 index 0000000..db6acdf Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.DynamicData/3.5.0.0__31bf3856ad364e35/System.Web.DynamicData.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.DynamicData/4.0.0.0__31bf3856ad364e35/System.Web.DynamicData.dll b/mono-test/bin/lib/mono/gac/System.Web.DynamicData/4.0.0.0__31bf3856ad364e35/System.Web.DynamicData.dll new file mode 100644 index 0000000..8e20846 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.DynamicData/4.0.0.0__31bf3856ad364e35/System.Web.DynamicData.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.DynamicData/4.0.0.0__31bf3856ad364e35/System.Web.DynamicData.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.DynamicData/4.0.0.0__31bf3856ad364e35/System.Web.DynamicData.dll.mdb new file mode 100644 index 0000000..e5750ca Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.DynamicData/4.0.0.0__31bf3856ad364e35/System.Web.DynamicData.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.Design.dll b/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.Design.dll new file mode 100644 index 0000000..27de504 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.Design.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.Design.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.Design.dll.mdb new file mode 100644 index 0000000..e7b51b3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.Design.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.Design.dll b/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.Design.dll new file mode 100644 index 0000000..1b85269 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.Design.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.Design.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.Design.dll.mdb new file mode 100644 index 0000000..31e11a3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.Design.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.Design.dll b/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.Design.dll new file mode 100644 index 0000000..79fcd86 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.Design.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.Design.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.Design.dll.mdb new file mode 100644 index 0000000..3e3662d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Extensions.Design/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.Design.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Extensions/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.dll b/mono-test/bin/lib/mono/gac/System.Web.Extensions/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.dll new file mode 100644 index 0000000..11e3f4a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Extensions/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Extensions/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Extensions/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.dll.mdb new file mode 100644 index 0000000..5bdb258 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Extensions/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Extensions/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.dll b/mono-test/bin/lib/mono/gac/System.Web.Extensions/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.dll new file mode 100644 index 0000000..2c41470 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Extensions/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Extensions/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Extensions/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.dll.mdb new file mode 100644 index 0000000..6406ad7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Extensions/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Extensions/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.dll b/mono-test/bin/lib/mono/gac/System.Web.Extensions/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.dll new file mode 100644 index 0000000..5c855ee Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Extensions/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Extensions/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Extensions/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.dll.mdb new file mode 100644 index 0000000..9003fe7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Extensions/4.0.0.0__31bf3856ad364e35/System.Web.Extensions.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Http.SelfHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.SelfHost.dll b/mono-test/bin/lib/mono/gac/System.Web.Http.SelfHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.SelfHost.dll new file mode 100644 index 0000000..66761a7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Http.SelfHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.SelfHost.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Http.SelfHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.SelfHost.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Http.SelfHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.SelfHost.dll.mdb new file mode 100644 index 0000000..b66d627 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Http.SelfHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.SelfHost.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Http.WebHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.WebHost.dll b/mono-test/bin/lib/mono/gac/System.Web.Http.WebHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.WebHost.dll new file mode 100644 index 0000000..54fed7b Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Http.WebHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.WebHost.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Http.WebHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.WebHost.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Http.WebHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.WebHost.dll.mdb new file mode 100644 index 0000000..ab8ea31 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Http.WebHost/4.0.0.0__31bf3856ad364e35/System.Web.Http.WebHost.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Http/4.0.0.0__31bf3856ad364e35/System.Web.Http.dll b/mono-test/bin/lib/mono/gac/System.Web.Http/4.0.0.0__31bf3856ad364e35/System.Web.Http.dll new file mode 100644 index 0000000..9bc0c75 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Http/4.0.0.0__31bf3856ad364e35/System.Web.Http.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Http/4.0.0.0__31bf3856ad364e35/System.Web.Http.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Http/4.0.0.0__31bf3856ad364e35/System.Web.Http.dll.mdb new file mode 100644 index 0000000..86d067f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Http/4.0.0.0__31bf3856ad364e35/System.Web.Http.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Mvc/1.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll b/mono-test/bin/lib/mono/gac/System.Web.Mvc/1.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll new file mode 100644 index 0000000..ef2d1b1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Mvc/1.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Mvc/1.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Mvc/1.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll.mdb new file mode 100644 index 0000000..8a4d0c1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Mvc/1.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Mvc/2.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll b/mono-test/bin/lib/mono/gac/System.Web.Mvc/2.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll new file mode 100644 index 0000000..d32242b Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Mvc/2.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Mvc/2.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Mvc/2.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll.mdb new file mode 100644 index 0000000..bc930bd Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Mvc/2.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Mvc/3.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll b/mono-test/bin/lib/mono/gac/System.Web.Mvc/3.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll new file mode 100644 index 0000000..e777e7f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Mvc/3.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Mvc/3.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Mvc/3.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll.mdb new file mode 100644 index 0000000..00a583e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Mvc/3.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Razor/2.0.0.0__31bf3856ad364e35/System.Web.Razor.dll b/mono-test/bin/lib/mono/gac/System.Web.Razor/2.0.0.0__31bf3856ad364e35/System.Web.Razor.dll new file mode 100644 index 0000000..3a35399 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Razor/2.0.0.0__31bf3856ad364e35/System.Web.Razor.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Razor/2.0.0.0__31bf3856ad364e35/System.Web.Razor.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Razor/2.0.0.0__31bf3856ad364e35/System.Web.Razor.dll.mdb new file mode 100644 index 0000000..6b7f86f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Razor/2.0.0.0__31bf3856ad364e35/System.Web.Razor.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Routing/3.5.0.0__31bf3856ad364e35/System.Web.Routing.dll b/mono-test/bin/lib/mono/gac/System.Web.Routing/3.5.0.0__31bf3856ad364e35/System.Web.Routing.dll new file mode 100644 index 0000000..59984e9 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Routing/3.5.0.0__31bf3856ad364e35/System.Web.Routing.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Routing/3.5.0.0__31bf3856ad364e35/System.Web.Routing.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Routing/3.5.0.0__31bf3856ad364e35/System.Web.Routing.dll.mdb new file mode 100644 index 0000000..7390c30 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Routing/3.5.0.0__31bf3856ad364e35/System.Web.Routing.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Routing/4.0.0.0__31bf3856ad364e35/System.Web.Routing.dll b/mono-test/bin/lib/mono/gac/System.Web.Routing/4.0.0.0__31bf3856ad364e35/System.Web.Routing.dll new file mode 100644 index 0000000..d7fbd9a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Routing/4.0.0.0__31bf3856ad364e35/System.Web.Routing.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Routing/4.0.0.0__31bf3856ad364e35/System.Web.Routing.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Routing/4.0.0.0__31bf3856ad364e35/System.Web.Routing.dll.mdb new file mode 100644 index 0000000..f36c4f1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Routing/4.0.0.0__31bf3856ad364e35/System.Web.Routing.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll b/mono-test/bin/lib/mono/gac/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll new file mode 100644 index 0000000..dab2715 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll.mdb new file mode 100644 index 0000000..db6bdd3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Services/4.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll b/mono-test/bin/lib/mono/gac/System.Web.Services/4.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll new file mode 100644 index 0000000..b8f6649 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Services/4.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.Services/4.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.Services/4.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll.mdb new file mode 100644 index 0000000..6b1500e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.Services/4.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.WebPages.Deployment/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Deployment.dll b/mono-test/bin/lib/mono/gac/System.Web.WebPages.Deployment/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Deployment.dll new file mode 100644 index 0000000..f099270 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.WebPages.Deployment/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Deployment.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.WebPages.Deployment/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Deployment.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.WebPages.Deployment/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Deployment.dll.mdb new file mode 100644 index 0000000..05f8df0 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.WebPages.Deployment/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Deployment.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.WebPages.Razor/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Razor.dll b/mono-test/bin/lib/mono/gac/System.Web.WebPages.Razor/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Razor.dll new file mode 100644 index 0000000..5edc04e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.WebPages.Razor/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Razor.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.WebPages.Razor/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Razor.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.WebPages.Razor/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Razor.dll.mdb new file mode 100644 index 0000000..3c32d67 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.WebPages.Razor/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.Razor.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.WebPages/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.dll b/mono-test/bin/lib/mono/gac/System.Web.WebPages/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.dll new file mode 100644 index 0000000..ae9455d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.WebPages/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web.WebPages/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web.WebPages/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.dll.mdb new file mode 100644 index 0000000..2d2733f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web.WebPages/2.0.0.0__31bf3856ad364e35/System.Web.WebPages.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll b/mono-test/bin/lib/mono/gac/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll new file mode 100644 index 0000000..80d60e4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll.mdb new file mode 100644 index 0000000..e01799a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Web/4.0.0.0__b03f5f7f11d50a3a/System.Web.dll b/mono-test/bin/lib/mono/gac/System.Web/4.0.0.0__b03f5f7f11d50a3a/System.Web.dll new file mode 100644 index 0000000..5d41173 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web/4.0.0.0__b03f5f7f11d50a3a/System.Web.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Web/4.0.0.0__b03f5f7f11d50a3a/System.Web.dll.mdb b/mono-test/bin/lib/mono/gac/System.Web/4.0.0.0__b03f5f7f11d50a3a/System.Web.dll.mdb new file mode 100644 index 0000000..f91acd6 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Web/4.0.0.0__b03f5f7f11d50a3a/System.Web.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Windows.Forms.DataVisualization/4.0.0.0__b77a5c561934e089/System.Windows.Forms.DataVisualization.dll b/mono-test/bin/lib/mono/gac/System.Windows.Forms.DataVisualization/4.0.0.0__b77a5c561934e089/System.Windows.Forms.DataVisualization.dll new file mode 100644 index 0000000..4f05a6a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Windows.Forms.DataVisualization/4.0.0.0__b77a5c561934e089/System.Windows.Forms.DataVisualization.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Windows.Forms.DataVisualization/4.0.0.0__b77a5c561934e089/System.Windows.Forms.DataVisualization.dll.mdb b/mono-test/bin/lib/mono/gac/System.Windows.Forms.DataVisualization/4.0.0.0__b77a5c561934e089/System.Windows.Forms.DataVisualization.dll.mdb new file mode 100644 index 0000000..b196751 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Windows.Forms.DataVisualization/4.0.0.0__b77a5c561934e089/System.Windows.Forms.DataVisualization.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll b/mono-test/bin/lib/mono/gac/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll new file mode 100644 index 0000000..e6c8852 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.mdb b/mono-test/bin/lib/mono/gac/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.mdb new file mode 100644 index 0000000..16e8b00 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Windows.Forms/4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll b/mono-test/bin/lib/mono/gac/System.Windows.Forms/4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll new file mode 100644 index 0000000..2d1f828 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Windows.Forms/4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Windows.Forms/4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.mdb b/mono-test/bin/lib/mono/gac/System.Windows.Forms/4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.mdb new file mode 100644 index 0000000..57c415a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Windows.Forms/4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Windows/4.0.0.0__b03f5f7f11d50a3a/System.Windows.dll b/mono-test/bin/lib/mono/gac/System.Windows/4.0.0.0__b03f5f7f11d50a3a/System.Windows.dll new file mode 100644 index 0000000..187d219 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Windows/4.0.0.0__b03f5f7f11d50a3a/System.Windows.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Xaml/4.0.0.0__b77a5c561934e089/System.Xaml.dll b/mono-test/bin/lib/mono/gac/System.Xaml/4.0.0.0__b77a5c561934e089/System.Xaml.dll new file mode 100644 index 0000000..06f977f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Xaml/4.0.0.0__b77a5c561934e089/System.Xaml.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Xaml/4.0.0.0__b77a5c561934e089/System.Xaml.dll.mdb b/mono-test/bin/lib/mono/gac/System.Xaml/4.0.0.0__b77a5c561934e089/System.Xaml.dll.mdb new file mode 100644 index 0000000..860195e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Xaml/4.0.0.0__b77a5c561934e089/System.Xaml.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Xml.Linq/3.5.0.0__b77a5c561934e089/System.Xml.Linq.dll b/mono-test/bin/lib/mono/gac/System.Xml.Linq/3.5.0.0__b77a5c561934e089/System.Xml.Linq.dll new file mode 100644 index 0000000..cc40175 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Xml.Linq/3.5.0.0__b77a5c561934e089/System.Xml.Linq.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Xml.Linq/3.5.0.0__b77a5c561934e089/System.Xml.Linq.dll.mdb b/mono-test/bin/lib/mono/gac/System.Xml.Linq/3.5.0.0__b77a5c561934e089/System.Xml.Linq.dll.mdb new file mode 100644 index 0000000..2b826c3 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Xml.Linq/3.5.0.0__b77a5c561934e089/System.Xml.Linq.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll b/mono-test/bin/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll new file mode 100644 index 0000000..2447620 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll.mdb b/mono-test/bin/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll.mdb new file mode 100644 index 0000000..609555b Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Xml.Linq/4.0.0.0__b77a5c561934e089/System.Xml.Linq.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Xml.Serialization/4.0.0.0__b03f5f7f11d50a3a/System.Xml.Serialization.dll b/mono-test/bin/lib/mono/gac/System.Xml.Serialization/4.0.0.0__b03f5f7f11d50a3a/System.Xml.Serialization.dll new file mode 100644 index 0000000..01aa95c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Xml.Serialization/4.0.0.0__b03f5f7f11d50a3a/System.Xml.Serialization.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll b/mono-test/bin/lib/mono/gac/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll new file mode 100644 index 0000000..7cee7e8 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll.mdb b/mono-test/bin/lib/mono/gac/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll.mdb new file mode 100644 index 0000000..8ea8160 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll b/mono-test/bin/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll new file mode 100644 index 0000000..4d4fcde Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll differ diff --git a/mono-test/bin/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll.mdb b/mono-test/bin/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll.mdb new file mode 100644 index 0000000..5ebbb60 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System.Xml/4.0.0.0__b77a5c561934e089/System.Xml.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System/2.0.0.0__b77a5c561934e089/System.dll b/mono-test/bin/lib/mono/gac/System/2.0.0.0__b77a5c561934e089/System.dll new file mode 100644 index 0000000..e8564b4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System/2.0.0.0__b77a5c561934e089/System.dll differ diff --git a/mono-test/bin/lib/mono/gac/System/2.0.0.0__b77a5c561934e089/System.dll.mdb b/mono-test/bin/lib/mono/gac/System/2.0.0.0__b77a5c561934e089/System.dll.mdb new file mode 100644 index 0000000..fda62b1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System/2.0.0.0__b77a5c561934e089/System.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll b/mono-test/bin/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll new file mode 100644 index 0000000..395682d Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll differ diff --git a/mono-test/bin/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll.mdb b/mono-test/bin/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll.mdb new file mode 100644 index 0000000..34a0f5a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/System/4.0.0.0__b77a5c561934e089/System.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/WebMatrix.Data/4.0.0.0__0738eb9f132ed756/WebMatrix.Data.dll b/mono-test/bin/lib/mono/gac/WebMatrix.Data/4.0.0.0__0738eb9f132ed756/WebMatrix.Data.dll new file mode 100644 index 0000000..76058c2 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/WebMatrix.Data/4.0.0.0__0738eb9f132ed756/WebMatrix.Data.dll differ diff --git a/mono-test/bin/lib/mono/gac/WebMatrix.Data/4.0.0.0__0738eb9f132ed756/WebMatrix.Data.dll.mdb b/mono-test/bin/lib/mono/gac/WebMatrix.Data/4.0.0.0__0738eb9f132ed756/WebMatrix.Data.dll.mdb new file mode 100644 index 0000000..72b6acc Binary files /dev/null and b/mono-test/bin/lib/mono/gac/WebMatrix.Data/4.0.0.0__0738eb9f132ed756/WebMatrix.Data.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/WindowsBase/3.0.0.0__31bf3856ad364e35/WindowsBase.dll b/mono-test/bin/lib/mono/gac/WindowsBase/3.0.0.0__31bf3856ad364e35/WindowsBase.dll new file mode 100644 index 0000000..039ef7e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/WindowsBase/3.0.0.0__31bf3856ad364e35/WindowsBase.dll differ diff --git a/mono-test/bin/lib/mono/gac/WindowsBase/3.0.0.0__31bf3856ad364e35/WindowsBase.dll.mdb b/mono-test/bin/lib/mono/gac/WindowsBase/3.0.0.0__31bf3856ad364e35/WindowsBase.dll.mdb new file mode 100644 index 0000000..8320692 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/WindowsBase/3.0.0.0__31bf3856ad364e35/WindowsBase.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/WindowsBase/4.0.0.0__31bf3856ad364e35/WindowsBase.dll b/mono-test/bin/lib/mono/gac/WindowsBase/4.0.0.0__31bf3856ad364e35/WindowsBase.dll new file mode 100644 index 0000000..a3be05e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/WindowsBase/4.0.0.0__31bf3856ad364e35/WindowsBase.dll differ diff --git a/mono-test/bin/lib/mono/gac/WindowsBase/4.0.0.0__31bf3856ad364e35/WindowsBase.dll.mdb b/mono-test/bin/lib/mono/gac/WindowsBase/4.0.0.0__31bf3856ad364e35/WindowsBase.dll.mdb new file mode 100644 index 0000000..8d9d045 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/WindowsBase/4.0.0.0__31bf3856ad364e35/WindowsBase.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/cscompmgd/0.0.0.0__b03f5f7f11d50a3a/cscompmgd.dll b/mono-test/bin/lib/mono/gac/cscompmgd/0.0.0.0__b03f5f7f11d50a3a/cscompmgd.dll new file mode 100644 index 0000000..b33d4f6 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/cscompmgd/0.0.0.0__b03f5f7f11d50a3a/cscompmgd.dll differ diff --git a/mono-test/bin/lib/mono/gac/cscompmgd/0.0.0.0__b03f5f7f11d50a3a/cscompmgd.dll.mdb b/mono-test/bin/lib/mono/gac/cscompmgd/0.0.0.0__b03f5f7f11d50a3a/cscompmgd.dll.mdb new file mode 100644 index 0000000..4a4ff50 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/cscompmgd/0.0.0.0__b03f5f7f11d50a3a/cscompmgd.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/cscompmgd/8.0.0.0__b03f5f7f11d50a3a/cscompmgd.dll b/mono-test/bin/lib/mono/gac/cscompmgd/8.0.0.0__b03f5f7f11d50a3a/cscompmgd.dll new file mode 100644 index 0000000..3f32ca1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/cscompmgd/8.0.0.0__b03f5f7f11d50a3a/cscompmgd.dll differ diff --git a/mono-test/bin/lib/mono/gac/cscompmgd/8.0.0.0__b03f5f7f11d50a3a/cscompmgd.dll.mdb b/mono-test/bin/lib/mono/gac/cscompmgd/8.0.0.0__b03f5f7f11d50a3a/cscompmgd.dll.mdb new file mode 100644 index 0000000..6ab4a4f Binary files /dev/null and b/mono-test/bin/lib/mono/gac/cscompmgd/8.0.0.0__b03f5f7f11d50a3a/cscompmgd.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/mono-service/2.0.0.0__0738eb9f132ed756/mono-service.exe b/mono-test/bin/lib/mono/gac/mono-service/2.0.0.0__0738eb9f132ed756/mono-service.exe new file mode 100644 index 0000000..47fe5aa Binary files /dev/null and b/mono-test/bin/lib/mono/gac/mono-service/2.0.0.0__0738eb9f132ed756/mono-service.exe differ diff --git a/mono-test/bin/lib/mono/gac/mono-service/2.0.0.0__0738eb9f132ed756/mono-service.exe.mdb b/mono-test/bin/lib/mono/gac/mono-service/2.0.0.0__0738eb9f132ed756/mono-service.exe.mdb new file mode 100644 index 0000000..c5828e4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/mono-service/2.0.0.0__0738eb9f132ed756/mono-service.exe.mdb differ diff --git a/mono-test/bin/lib/mono/gac/mono-service/4.0.0.0__0738eb9f132ed756/mono-service.exe b/mono-test/bin/lib/mono/gac/mono-service/4.0.0.0__0738eb9f132ed756/mono-service.exe new file mode 100644 index 0000000..1e65ceb Binary files /dev/null and b/mono-test/bin/lib/mono/gac/mono-service/4.0.0.0__0738eb9f132ed756/mono-service.exe differ diff --git a/mono-test/bin/lib/mono/gac/mono-service/4.0.0.0__0738eb9f132ed756/mono-service.exe.mdb b/mono-test/bin/lib/mono/gac/mono-service/4.0.0.0__0738eb9f132ed756/mono-service.exe.mdb new file mode 100644 index 0000000..2809c02 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/mono-service/4.0.0.0__0738eb9f132ed756/mono-service.exe.mdb differ diff --git a/mono-test/bin/lib/mono/gac/monodoc/1.0.0.0__0738eb9f132ed756/monodoc.dll b/mono-test/bin/lib/mono/gac/monodoc/1.0.0.0__0738eb9f132ed756/monodoc.dll new file mode 100644 index 0000000..cdb1efe Binary files /dev/null and b/mono-test/bin/lib/mono/gac/monodoc/1.0.0.0__0738eb9f132ed756/monodoc.dll differ diff --git a/mono-test/bin/lib/mono/gac/monodoc/1.0.0.0__0738eb9f132ed756/monodoc.dll.config b/mono-test/bin/lib/mono/gac/monodoc/1.0.0.0__0738eb9f132ed756/monodoc.dll.config new file mode 100644 index 0000000..e3fa8f3 --- /dev/null +++ b/mono-test/bin/lib/mono/gac/monodoc/1.0.0.0__0738eb9f132ed756/monodoc.dll.config @@ -0,0 +1,7 @@ + + + + + + + diff --git a/mono-test/bin/lib/mono/gac/monodoc/1.0.0.0__0738eb9f132ed756/monodoc.dll.mdb b/mono-test/bin/lib/mono/gac/monodoc/1.0.0.0__0738eb9f132ed756/monodoc.dll.mdb new file mode 100644 index 0000000..a9b9d0b Binary files /dev/null and b/mono-test/bin/lib/mono/gac/monodoc/1.0.0.0__0738eb9f132ed756/monodoc.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/nunit-console-runner/2.4.8.0__96d09a1eb7f44a77/nunit-console-runner.dll b/mono-test/bin/lib/mono/gac/nunit-console-runner/2.4.8.0__96d09a1eb7f44a77/nunit-console-runner.dll new file mode 100644 index 0000000..820c2fe Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit-console-runner/2.4.8.0__96d09a1eb7f44a77/nunit-console-runner.dll differ diff --git a/mono-test/bin/lib/mono/gac/nunit-console-runner/2.4.8.0__96d09a1eb7f44a77/nunit-console-runner.dll.mdb b/mono-test/bin/lib/mono/gac/nunit-console-runner/2.4.8.0__96d09a1eb7f44a77/nunit-console-runner.dll.mdb new file mode 100644 index 0000000..00e4549 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit-console-runner/2.4.8.0__96d09a1eb7f44a77/nunit-console-runner.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/nunit.core.extensions/2.4.8.0__96d09a1eb7f44a77/nunit.core.extensions.dll b/mono-test/bin/lib/mono/gac/nunit.core.extensions/2.4.8.0__96d09a1eb7f44a77/nunit.core.extensions.dll new file mode 100644 index 0000000..88110b6 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.core.extensions/2.4.8.0__96d09a1eb7f44a77/nunit.core.extensions.dll differ diff --git a/mono-test/bin/lib/mono/gac/nunit.core.extensions/2.4.8.0__96d09a1eb7f44a77/nunit.core.extensions.dll.mdb b/mono-test/bin/lib/mono/gac/nunit.core.extensions/2.4.8.0__96d09a1eb7f44a77/nunit.core.extensions.dll.mdb new file mode 100644 index 0000000..e8a0bff Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.core.extensions/2.4.8.0__96d09a1eb7f44a77/nunit.core.extensions.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/nunit.core.interfaces/2.4.8.0__96d09a1eb7f44a77/nunit.core.interfaces.dll b/mono-test/bin/lib/mono/gac/nunit.core.interfaces/2.4.8.0__96d09a1eb7f44a77/nunit.core.interfaces.dll new file mode 100644 index 0000000..2cf2be7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.core.interfaces/2.4.8.0__96d09a1eb7f44a77/nunit.core.interfaces.dll differ diff --git a/mono-test/bin/lib/mono/gac/nunit.core.interfaces/2.4.8.0__96d09a1eb7f44a77/nunit.core.interfaces.dll.mdb b/mono-test/bin/lib/mono/gac/nunit.core.interfaces/2.4.8.0__96d09a1eb7f44a77/nunit.core.interfaces.dll.mdb new file mode 100644 index 0000000..f783483 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.core.interfaces/2.4.8.0__96d09a1eb7f44a77/nunit.core.interfaces.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/nunit.core/2.4.8.0__96d09a1eb7f44a77/nunit.core.dll b/mono-test/bin/lib/mono/gac/nunit.core/2.4.8.0__96d09a1eb7f44a77/nunit.core.dll new file mode 100644 index 0000000..a821884 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.core/2.4.8.0__96d09a1eb7f44a77/nunit.core.dll differ diff --git a/mono-test/bin/lib/mono/gac/nunit.core/2.4.8.0__96d09a1eb7f44a77/nunit.core.dll.mdb b/mono-test/bin/lib/mono/gac/nunit.core/2.4.8.0__96d09a1eb7f44a77/nunit.core.dll.mdb new file mode 100644 index 0000000..75caa0a Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.core/2.4.8.0__96d09a1eb7f44a77/nunit.core.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/nunit.framework.extensions/2.4.8.0__96d09a1eb7f44a77/nunit.framework.extensions.dll b/mono-test/bin/lib/mono/gac/nunit.framework.extensions/2.4.8.0__96d09a1eb7f44a77/nunit.framework.extensions.dll new file mode 100644 index 0000000..ad391a1 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.framework.extensions/2.4.8.0__96d09a1eb7f44a77/nunit.framework.extensions.dll differ diff --git a/mono-test/bin/lib/mono/gac/nunit.framework.extensions/2.4.8.0__96d09a1eb7f44a77/nunit.framework.extensions.dll.mdb b/mono-test/bin/lib/mono/gac/nunit.framework.extensions/2.4.8.0__96d09a1eb7f44a77/nunit.framework.extensions.dll.mdb new file mode 100644 index 0000000..2d10759 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.framework.extensions/2.4.8.0__96d09a1eb7f44a77/nunit.framework.extensions.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/nunit.framework/2.4.8.0__96d09a1eb7f44a77/nunit.framework.dll b/mono-test/bin/lib/mono/gac/nunit.framework/2.4.8.0__96d09a1eb7f44a77/nunit.framework.dll new file mode 100644 index 0000000..ff47fd4 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.framework/2.4.8.0__96d09a1eb7f44a77/nunit.framework.dll differ diff --git a/mono-test/bin/lib/mono/gac/nunit.framework/2.4.8.0__96d09a1eb7f44a77/nunit.framework.dll.mdb b/mono-test/bin/lib/mono/gac/nunit.framework/2.4.8.0__96d09a1eb7f44a77/nunit.framework.dll.mdb new file mode 100644 index 0000000..6800323 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.framework/2.4.8.0__96d09a1eb7f44a77/nunit.framework.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/nunit.mocks/2.4.8.0__96d09a1eb7f44a77/nunit.mocks.dll b/mono-test/bin/lib/mono/gac/nunit.mocks/2.4.8.0__96d09a1eb7f44a77/nunit.mocks.dll new file mode 100644 index 0000000..8adfb6c Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.mocks/2.4.8.0__96d09a1eb7f44a77/nunit.mocks.dll differ diff --git a/mono-test/bin/lib/mono/gac/nunit.mocks/2.4.8.0__96d09a1eb7f44a77/nunit.mocks.dll.mdb b/mono-test/bin/lib/mono/gac/nunit.mocks/2.4.8.0__96d09a1eb7f44a77/nunit.mocks.dll.mdb new file mode 100644 index 0000000..dd9fbb7 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.mocks/2.4.8.0__96d09a1eb7f44a77/nunit.mocks.dll.mdb differ diff --git a/mono-test/bin/lib/mono/gac/nunit.util/2.4.8.0__96d09a1eb7f44a77/nunit.util.dll b/mono-test/bin/lib/mono/gac/nunit.util/2.4.8.0__96d09a1eb7f44a77/nunit.util.dll new file mode 100644 index 0000000..83ffa2e Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.util/2.4.8.0__96d09a1eb7f44a77/nunit.util.dll differ diff --git a/mono-test/bin/lib/mono/gac/nunit.util/2.4.8.0__96d09a1eb7f44a77/nunit.util.dll.mdb b/mono-test/bin/lib/mono/gac/nunit.util/2.4.8.0__96d09a1eb7f44a77/nunit.util.dll.mdb new file mode 100644 index 0000000..862c7a9 Binary files /dev/null and b/mono-test/bin/lib/mono/gac/nunit.util/2.4.8.0__96d09a1eb7f44a77/nunit.util.dll.mdb differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.AWT.WinForms.dll b/mono-test/bin/lib/mono/ikvm/IKVM.AWT.WinForms.dll new file mode 100644 index 0000000..f0ca763 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.AWT.WinForms.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Beans.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Beans.dll new file mode 100644 index 0000000..4c4b169 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Beans.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Charsets.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Charsets.dll new file mode 100644 index 0000000..917fa14 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Charsets.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Corba.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Corba.dll new file mode 100644 index 0000000..8b24d69 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Corba.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Core.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Core.dll new file mode 100644 index 0000000..a3da2dd Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Core.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Jdbc.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Jdbc.dll new file mode 100644 index 0000000..59355d7 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Jdbc.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Management.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Management.dll new file mode 100644 index 0000000..e2e2145 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Management.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Media.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Media.dll new file mode 100644 index 0000000..0d857de Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Media.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Misc.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Misc.dll new file mode 100644 index 0000000..735d25a Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Misc.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Naming.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Naming.dll new file mode 100644 index 0000000..84d7ac7 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Naming.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Remoting.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Remoting.dll new file mode 100644 index 0000000..34fdb7d Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Remoting.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Security.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Security.dll new file mode 100644 index 0000000..829c418 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Security.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.SwingAWT.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.SwingAWT.dll new file mode 100644 index 0000000..3ba4380 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.SwingAWT.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Text.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Text.dll new file mode 100644 index 0000000..23b9f3c Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Text.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Tools.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Tools.dll new file mode 100644 index 0000000..f639fd0 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Tools.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Util.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Util.dll new file mode 100644 index 0000000..cc73135 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.Util.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.API.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.API.dll new file mode 100644 index 0000000..13cbc1b Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.API.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.Bind.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.Bind.dll new file mode 100644 index 0000000..c67d9f9 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.Bind.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.Crypto.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.Crypto.dll new file mode 100644 index 0000000..1ea0edf Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.Crypto.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.Parse.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.Parse.dll new file mode 100644 index 0000000..909bbdf Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.Parse.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.Transform.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.Transform.dll new file mode 100644 index 0000000..25126bb Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.Transform.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.WebServices.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.WebServices.dll new file mode 100644 index 0000000..de469d7 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.WebServices.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.XPath.dll b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.XPath.dll new file mode 100644 index 0000000..03ad37c Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.OpenJDK.XML.XPath.dll differ diff --git a/mono-test/bin/lib/mono/ikvm/IKVM.Runtime.dll b/mono-test/bin/lib/mono/ikvm/IKVM.Runtime.dll new file mode 100644 index 0000000..7c34489 Binary files /dev/null and b/mono-test/bin/lib/mono/ikvm/IKVM.Runtime.dll differ diff --git a/mono-test/bin/lib/mono/mono-configuration-crypto/4.5/Mono.Configuration.Crypto.dll b/mono-test/bin/lib/mono/mono-configuration-crypto/4.5/Mono.Configuration.Crypto.dll new file mode 100644 index 0000000..ba568f4 Binary files /dev/null and b/mono-test/bin/lib/mono/mono-configuration-crypto/4.5/Mono.Configuration.Crypto.dll differ diff --git a/mono-test/bin/lib/mono/mono-configuration-crypto/4.5/Mono.Configuration.Crypto.dll.mdb b/mono-test/bin/lib/mono/mono-configuration-crypto/4.5/Mono.Configuration.Crypto.dll.mdb new file mode 100644 index 0000000..a207c4c Binary files /dev/null and b/mono-test/bin/lib/mono/mono-configuration-crypto/4.5/Mono.Configuration.Crypto.dll.mdb differ diff --git a/mono-test/bin/lib/mono/mono-configuration-crypto/4.5/mono-configuration-crypto.exe b/mono-test/bin/lib/mono/mono-configuration-crypto/4.5/mono-configuration-crypto.exe new file mode 100644 index 0000000..5124194 Binary files /dev/null and b/mono-test/bin/lib/mono/mono-configuration-crypto/4.5/mono-configuration-crypto.exe differ diff --git a/mono-test/bin/lib/mono/mono-configuration-crypto/4.5/mono-configuration-crypto.exe.mdb b/mono-test/bin/lib/mono/mono-configuration-crypto/4.5/mono-configuration-crypto.exe.mdb new file mode 100644 index 0000000..3494ca6 Binary files /dev/null and b/mono-test/bin/lib/mono/mono-configuration-crypto/4.5/mono-configuration-crypto.exe.mdb differ diff --git a/mono-test/bin/lib/mono/monodoc/monodoc.dll b/mono-test/bin/lib/mono/monodoc/monodoc.dll new file mode 100644 index 0000000..cdb1efe Binary files /dev/null and b/mono-test/bin/lib/mono/monodoc/monodoc.dll differ diff --git a/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v2.0/RedistList/FrameworkList.xml b/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v2.0/RedistList/FrameworkList.xml new file mode 100644 index 0000000..2b8bd9b --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v2.0/RedistList/FrameworkList.xml @@ -0,0 +1,3 @@ + + + diff --git a/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v3.0/RedistList/FrameworkList.xml b/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v3.0/RedistList/FrameworkList.xml new file mode 100644 index 0000000..ae06c88 --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v3.0/RedistList/FrameworkList.xml @@ -0,0 +1,3 @@ + + + diff --git a/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v3.5/RedistList/FrameworkList.xml b/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v3.5/RedistList/FrameworkList.xml new file mode 100644 index 0000000..1225842 --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v3.5/RedistList/FrameworkList.xml @@ -0,0 +1,3 @@ + + + diff --git a/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v4.0/RedistList/FrameworkList.xml b/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v4.0/RedistList/FrameworkList.xml new file mode 100644 index 0000000..7012794 --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v4.0/RedistList/FrameworkList.xml @@ -0,0 +1,3 @@ + + + diff --git a/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v4.5/RedistList/FrameworkList.xml b/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v4.5/RedistList/FrameworkList.xml new file mode 100644 index 0000000..2fa28c4 --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild-frameworks/.NETFramework/v4.5/RedistList/FrameworkList.xml @@ -0,0 +1,3 @@ + + + diff --git a/mono-test/bin/lib/mono/xbuild/Microsoft/Portable/v4.0/Microsoft.Portable.CSharp.targets b/mono-test/bin/lib/mono/xbuild/Microsoft/Portable/v4.0/Microsoft.Portable.CSharp.targets new file mode 100644 index 0000000..d80a9f5 --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild/Microsoft/Portable/v4.0/Microsoft.Portable.CSharp.targets @@ -0,0 +1,3 @@ + + + diff --git a/mono-test/bin/lib/mono/xbuild/Microsoft/Portable/v4.5/Microsoft.Portable.CSharp.targets b/mono-test/bin/lib/mono/xbuild/Microsoft/Portable/v4.5/Microsoft.Portable.CSharp.targets new file mode 100644 index 0000000..d80a9f5 --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild/Microsoft/Portable/v4.5/Microsoft.Portable.CSharp.targets @@ -0,0 +1,3 @@ + + + diff --git a/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v2.0/Microsoft.Silverlight.CSharp.targets b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v2.0/Microsoft.Silverlight.CSharp.targets new file mode 100644 index 0000000..7aff37d --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v2.0/Microsoft.Silverlight.CSharp.targets @@ -0,0 +1,4 @@ + + + + diff --git a/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v2.0/Microsoft.Silverlight.Common.targets b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v2.0/Microsoft.Silverlight.Common.targets new file mode 100644 index 0000000..36cbaee --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v2.0/Microsoft.Silverlight.Common.targets @@ -0,0 +1,159 @@ + + + + + + + + + + + GenerateXamlG; + Respack; + $(PrepareResourcesDependsOn) + + + + GenerateMoonlightManifest; + GenerateXap; + CreateTestPage; + $(PrepareForRunDependsOn) + + + smcs.bat + smcs + + $(AssemblyName).xap + TestPage.html + 2.0 + 2.0.31005.0 + 3.0.40624.0 + + + {CandidateAssemblyFiles}; + $(ReferencePath); + {HintPathFromItem}; + {TargetFrameworkDirectory}; + {RawFileName}; + $(OutDir) + + + + + + AppManifest.xaml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GenerateXamlG; + GenerateMoonlightManifest; + GetXapInputFiles + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v2.0/Microsoft.Silverlight.VisualBasic.targets b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v2.0/Microsoft.Silverlight.VisualBasic.targets new file mode 100644 index 0000000..262754f --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v2.0/Microsoft.Silverlight.VisualBasic.targets @@ -0,0 +1,4 @@ + + + + diff --git a/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v2.0/Moonlight.Build.Tasks.dll b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v2.0/Moonlight.Build.Tasks.dll new file mode 100644 index 0000000..7f8e01b Binary files /dev/null and b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v2.0/Moonlight.Build.Tasks.dll differ diff --git a/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v3.0/Microsoft.Silverlight.CSharp.targets b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v3.0/Microsoft.Silverlight.CSharp.targets new file mode 100644 index 0000000..7aff37d --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v3.0/Microsoft.Silverlight.CSharp.targets @@ -0,0 +1,4 @@ + + + + diff --git a/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v3.0/Microsoft.Silverlight.Common.targets b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v3.0/Microsoft.Silverlight.Common.targets new file mode 100644 index 0000000..133793e --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v3.0/Microsoft.Silverlight.Common.targets @@ -0,0 +1,159 @@ + + + + + + + + + + + GenerateXamlG; + Respack; + $(PrepareResourcesDependsOn) + + + + GenerateMoonlightManifest; + GenerateXap; + CreateTestPage; + $(PrepareForRunDependsOn) + + + smcs.bat + smcs + + $(AssemblyName).xap + TestPage.html + 3.0 + 2.0.31005.0 + 3.0.40624.0 + + + {CandidateAssemblyFiles}; + $(ReferencePath); + {HintPathFromItem}; + {TargetFrameworkDirectory}; + {RawFileName}; + $(OutDir) + + + + + + AppManifest.xaml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GenerateXamlG; + GenerateMoonlightManifest; + GetXapInputFiles + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v3.0/Microsoft.Silverlight.VisualBasic.targets b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v3.0/Microsoft.Silverlight.VisualBasic.targets new file mode 100644 index 0000000..262754f --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v3.0/Microsoft.Silverlight.VisualBasic.targets @@ -0,0 +1,4 @@ + + + + diff --git a/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v3.0/Moonlight.Build.Tasks.dll b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v3.0/Moonlight.Build.Tasks.dll new file mode 100644 index 0000000..7f8e01b Binary files /dev/null and b/mono-test/bin/lib/mono/xbuild/Microsoft/Silverlight/v3.0/Moonlight.Build.Tasks.dll differ diff --git a/mono-test/bin/lib/mono/xbuild/Microsoft/VisualStudio/v9.0/WebApplications/Microsoft.WebApplication.targets b/mono-test/bin/lib/mono/xbuild/Microsoft/VisualStudio/v9.0/WebApplications/Microsoft.WebApplication.targets new file mode 100644 index 0000000..0f61904 --- /dev/null +++ b/mono-test/bin/lib/mono/xbuild/Microsoft/VisualStudio/v9.0/WebApplications/Microsoft.WebApplication.targets @@ -0,0 +1,31 @@ + + + $(OutDir)_PublishedWebsites\$(MSBuildProjectName) + + + $(PrepareForRunDependsOn); + _CopyWebApplication + + + + + + + + + + + + + + + + diff --git a/mono-test/bin/lib/monodoc/monodoc.xml b/mono-test/bin/lib/monodoc/monodoc.xml new file mode 100644 index 0000000..94a4b22 --- /dev/null +++ b/mono-test/bin/lib/monodoc/monodoc.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/mono-test/bin/lib/monodoc/sources/Mono.source b/mono-test/bin/lib/monodoc/sources/Mono.source new file mode 100644 index 0000000..a616595 --- /dev/null +++ b/mono-test/bin/lib/monodoc/sources/Mono.source @@ -0,0 +1,5 @@ + + + + + diff --git a/mono-test/bin/lib/monodoc/sources/Mono.tree b/mono-test/bin/lib/monodoc/sources/Mono.tree new file mode 100644 index 0000000..9ab09f4 Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/Mono.tree differ diff --git a/mono-test/bin/lib/monodoc/sources/Mono.zip b/mono-test/bin/lib/monodoc/sources/Mono.zip new file mode 100644 index 0000000..0795918 Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/Mono.zip differ diff --git a/mono-test/bin/lib/monodoc/sources/Novell.source b/mono-test/bin/lib/monodoc/sources/Novell.source new file mode 100644 index 0000000..509d06a --- /dev/null +++ b/mono-test/bin/lib/monodoc/sources/Novell.source @@ -0,0 +1,5 @@ + + + + + diff --git a/mono-test/bin/lib/monodoc/sources/Novell.tree b/mono-test/bin/lib/monodoc/sources/Novell.tree new file mode 100644 index 0000000..5be884d Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/Novell.tree differ diff --git a/mono-test/bin/lib/monodoc/sources/Novell.zip b/mono-test/bin/lib/monodoc/sources/Novell.zip new file mode 100644 index 0000000..1c2402e Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/Novell.zip differ diff --git a/mono-test/bin/lib/monodoc/sources/cs-errors.tree b/mono-test/bin/lib/monodoc/sources/cs-errors.tree new file mode 100644 index 0000000..60bc6bf Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/cs-errors.tree differ diff --git a/mono-test/bin/lib/monodoc/sources/cs-errors.zip b/mono-test/bin/lib/monodoc/sources/cs-errors.zip new file mode 100644 index 0000000..1d20b28 Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/cs-errors.zip differ diff --git a/mono-test/bin/lib/monodoc/sources/ecma334.tree b/mono-test/bin/lib/monodoc/sources/ecma334.tree new file mode 100644 index 0000000..4f8af0b Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/ecma334.tree differ diff --git a/mono-test/bin/lib/monodoc/sources/ecma334.zip b/mono-test/bin/lib/monodoc/sources/ecma334.zip new file mode 100644 index 0000000..4226369 Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/ecma334.zip differ diff --git a/mono-test/bin/lib/monodoc/sources/lang-csharp.source b/mono-test/bin/lib/monodoc/sources/lang-csharp.source new file mode 100644 index 0000000..a31f8d9 --- /dev/null +++ b/mono-test/bin/lib/monodoc/sources/lang-csharp.source @@ -0,0 +1,7 @@ + + + + + + + diff --git a/mono-test/bin/lib/monodoc/sources/mono-file-formats.source b/mono-test/bin/lib/monodoc/sources/mono-file-formats.source new file mode 100644 index 0000000..83b8cac --- /dev/null +++ b/mono-test/bin/lib/monodoc/sources/mono-file-formats.source @@ -0,0 +1,4 @@ + + + + diff --git a/mono-test/bin/lib/monodoc/sources/mono-file-formats.tree b/mono-test/bin/lib/monodoc/sources/mono-file-formats.tree new file mode 100644 index 0000000..1fda6ef Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/mono-file-formats.tree differ diff --git a/mono-test/bin/lib/monodoc/sources/mono-file-formats.zip b/mono-test/bin/lib/monodoc/sources/mono-file-formats.zip new file mode 100644 index 0000000..9e19241 Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/mono-file-formats.zip differ diff --git a/mono-test/bin/lib/monodoc/sources/mono-tools.source b/mono-test/bin/lib/monodoc/sources/mono-tools.source new file mode 100644 index 0000000..37f4b44 --- /dev/null +++ b/mono-test/bin/lib/monodoc/sources/mono-tools.source @@ -0,0 +1,4 @@ + + + + diff --git a/mono-test/bin/lib/monodoc/sources/mono-tools.tree b/mono-test/bin/lib/monodoc/sources/mono-tools.tree new file mode 100644 index 0000000..ecb1c80 Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/mono-tools.tree differ diff --git a/mono-test/bin/lib/monodoc/sources/mono-tools.zip b/mono-test/bin/lib/monodoc/sources/mono-tools.zip new file mode 100644 index 0000000..9f4bda1 Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/mono-tools.zip differ diff --git a/mono-test/bin/lib/monodoc/sources/monoapi.source b/mono-test/bin/lib/monodoc/sources/monoapi.source new file mode 100644 index 0000000..3f25f32 --- /dev/null +++ b/mono-test/bin/lib/monodoc/sources/monoapi.source @@ -0,0 +1,5 @@ + + + + + diff --git a/mono-test/bin/lib/monodoc/sources/monoapi.tree b/mono-test/bin/lib/monodoc/sources/monoapi.tree new file mode 100644 index 0000000..c59f438 Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/monoapi.tree differ diff --git a/mono-test/bin/lib/monodoc/sources/monoapi.zip b/mono-test/bin/lib/monodoc/sources/monoapi.zip new file mode 100644 index 0000000..9ae5652 Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/monoapi.zip differ diff --git a/mono-test/bin/lib/monodoc/sources/netdocs.source b/mono-test/bin/lib/monodoc/sources/netdocs.source new file mode 100644 index 0000000..18da2a7 --- /dev/null +++ b/mono-test/bin/lib/monodoc/sources/netdocs.source @@ -0,0 +1,5 @@ + + + + + diff --git a/mono-test/bin/lib/monodoc/sources/netdocs.tree b/mono-test/bin/lib/monodoc/sources/netdocs.tree new file mode 100644 index 0000000..c26d9b2 Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/netdocs.tree differ diff --git a/mono-test/bin/lib/monodoc/sources/netdocs.zip b/mono-test/bin/lib/monodoc/sources/netdocs.zip new file mode 100644 index 0000000..38b41af Binary files /dev/null and b/mono-test/bin/lib/monodoc/sources/netdocs.zip differ diff --git a/mono-test/bin/lib/pkgconfig/aspnetwebstack.pc b/mono-test/bin/lib/pkgconfig/aspnetwebstack.pc new file mode 100644 index 0000000..dc8e3ec --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/aspnetwebstack.pc @@ -0,0 +1,4 @@ +Name: AspNetWebStack +Description: References Microsoft ASP.NET Web Stack +Version: 3.3.0 +Libs: -r:System.Web.Razor.dll -r:System.Web.Http.dll -r:System.Web.WebPages -r:System.Web.WebPages.Razor -r:System.Web.WebPages.Deployment diff --git a/mono-test/bin/lib/pkgconfig/boo.pc b/mono-test/bin/lib/pkgconfig/boo.pc new file mode 100644 index 0000000..9ca363f --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/boo.pc @@ -0,0 +1,9 @@ +prefix=C:/PROGRA~2/MONO-3~1.3 +exec_prefix=${prefix} +libdir=${prefix}/lib + + +Name: Boo +Description: A wrist friendly language for the CLI +Version: 0.9.4.9 +Libs: -r:${libdir}/boo/Boo.Lang.dll -r:${libdir}/boo/Boo.Lang.Useful.dll -r:${libdir}/boo/Boo.Lang.CodeDom.dll -r:${libdir}/boo/Boo.Lang.Compiler.dll -r:${libdir}/boo/Boo.Lang.Parser.dll -r:${libdir}/boo/Boo.Lang.Interpreter.dll diff --git a/mono-test/bin/lib/pkgconfig/cecil.pc b/mono-test/bin/lib/pkgconfig/cecil.pc new file mode 100644 index 0000000..8c54071 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/cecil.pc @@ -0,0 +1,7 @@ +assemblies_dir=/tmp/install/lib/mono +Libraries=${assemblies_dir}/gac/Mono.Cecil/0.9.5.0__0738eb9f132ed756/Mono.Cecil.dll + +Name: Mono Internal -- Do not use. +Description: Mono Internal Libraries -- Do not use +Version: 3.3.0 +Libs: -r:Mono.Cecil.dll diff --git a/mono-test/bin/lib/pkgconfig/dotnet.pc b/mono-test/bin/lib/pkgconfig/dotnet.pc new file mode 100644 index 0000000..5c20dbb --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/dotnet.pc @@ -0,0 +1,5 @@ + +Name: Standard libraries in a .NET setup +Description: References all the standard .NET libraries for compilation +Version: 3.3.0 +Libs: -r:Accessibility.dll -r:cscompmgd.dll -r:Microsoft.VisualC.dll -r:System.Configuration.Install.dll -r:System.Data.dll -r:System.Data.OracleClient.dll -r:System.Design.dll -r:System.DirectoryServices.dll -r:System.dll -r:System.Drawing.Design.dll -r:System.Drawing.dll -r:System.EnterpriseServices.dll -r:System.Management.dll -r:System.Messaging.dll -r:System.Runtime.Remoting.dll -r:System.Runtime.Serialization.Formatters.Soap.dll -r:System.Security.dll -r:System.ServiceProcess.dll -r:System.Web.dll -r:System.Web.Services.dll -r:System.Windows.Forms.dll -r:System.Xml.dll diff --git a/mono-test/bin/lib/pkgconfig/dotnet35.pc b/mono-test/bin/lib/pkgconfig/dotnet35.pc new file mode 100644 index 0000000..b5c5b8e --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/dotnet35.pc @@ -0,0 +1,5 @@ + +Name: Standard libraries in a .NET setup +Description: References all the standard .NET libraries for compilation (.NET Framework 3.5 compatibility) +Version: 3.3.0 +Libs: -r:Accessibility.dll -r:cscompmgd.dll -r:Microsoft.VisualC.dll -r:System.Configuration.Install.dll -r:System.Data.dll -r:System.Data.OracleClient.dll -r:System.Design.dll -r:System.DirectoryServices.dll -r:System.dll -r:System.Drawing.Design.dll -r:System.Drawing.dll -r:System.EnterpriseServices.dll -r:System.Management.dll -r:System.Messaging.dll -r:System.Runtime.Remoting.dll -r:System.Runtime.Serialization.Formatters.Soap.dll -r:System.Security.dll -r:System.ServiceProcess.dll -r:System.Web.dll -r:System.Web.Services.dll -r:System.Windows.Forms.dll -r:System.Xml.dll -r:System.Configuration.dll -r:System.Core.dll -r:System.Xml.Linq.dll -r:System.Data.DataSetExtensions.dll -r:System.Data.Linq.dll -r:System.Data.Services.dll -r:System.Web.Abstractions.dll -r:System.Web.Routing.dll -r:System.Web.DynamicData.dll -r:System.ComponentModel.DataAnnotations.dll diff --git a/mono-test/bin/lib/pkgconfig/mono-2.pc b/mono-test/bin/lib/pkgconfig/mono-2.pc new file mode 100644 index 0000000..dd4e05f --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/mono-2.pc @@ -0,0 +1,11 @@ +prefix=C:/PROGRA~2/MONO-3~1.3 +exec_prefix=${pcfiledir}/../.. +libdir=${prefix}/lib +includedir=${prefix}/include/mono-2.0 +sysconfdir=${prefix}/etc + +Name: Mono +Description: Mono Runtime +Version: 3.3.0 +Libs: -L${libdir} -Wl,--export-all-symbols -lmono-2.0 -mms-bitfields -mwindows -lws2_32 -lpsapi -lole32 -lwinmm -loleaut32 -ladvapi32 -lversion +Cflags: -I${includedir} -mms-bitfields -mwindows diff --git a/mono-test/bin/lib/pkgconfig/mono-cairo.pc b/mono-test/bin/lib/pkgconfig/mono-cairo.pc new file mode 100644 index 0000000..d3aa801 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/mono-cairo.pc @@ -0,0 +1,9 @@ +prefix=C:/PROGRA~2/MONO-3~1.3 +exec_prefix=${pcfiledir}/../.. +libdir=${prefix}/lib +includedir=${prefix}/include + +Name: Mono.Cairo +Description: Cairo bindings for Mono +Version: 3.3.0 +Libs: -r:Mono.Cairo diff --git a/mono-test/bin/lib/pkgconfig/mono-lineeditor.pc b/mono-test/bin/lib/pkgconfig/mono-lineeditor.pc new file mode 100644 index 0000000..7b5f57d --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/mono-lineeditor.pc @@ -0,0 +1,7 @@ +prefix=C:/PROGRA~2/MONO-3~1.3 +assemblies_dir=${prefix}/lib/mono-source-libs +Sources=${assemblies_dir}/getline.cs + +Name: Mono.Terminal.LineEditor +Description: Terminal text entry editor using System.Console. +Version: 0.2.1 diff --git a/mono-test/bin/lib/pkgconfig/mono-nunit.pc b/mono-test/bin/lib/pkgconfig/mono-nunit.pc new file mode 100644 index 0000000..e20a015 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/mono-nunit.pc @@ -0,0 +1,9 @@ +prefix=C:/PROGRA~2/MONO-3~1.3 +exec_prefix=${prefix} +libdir=${exec_prefix}/lib + + +Name: Mono NUnit +Description: Mono's version of NUnit +Version: 3.3.0 +Libs: -r:${libdir}/mono/2.0/nunit.core.dll -r:${libdir}/mono/2.0/nunit.core.interfaces.dll -r:${libdir}/mono/2.0/nunit.core.extensions.dll -r:${libdir}/mono/2.0/nunit.framework.dll -r:${libdir}/mono/2.0/nunit.framework.extensions.dll -r:${libdir}/mono/2.0/nunit.mocks.dll -r:${libdir}/mono/2.0/nunit.util.dll -r:${libdir}/mono/2.0/nunit-console-runner.dll diff --git a/mono-test/bin/lib/pkgconfig/mono-options.pc b/mono-test/bin/lib/pkgconfig/mono-options.pc new file mode 100644 index 0000000..831422f --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/mono-options.pc @@ -0,0 +1,7 @@ +prefix=C:/PROGRA~2/MONO-3~1.3 +assemblies_dir=${prefix}/lib/mono-source-libs +Sources=${assemblies_dir}/Options.cs + +Name: Mono.Options +Description: Command Line Parsing Library +Version: 0.2.3 diff --git a/mono-test/bin/lib/pkgconfig/mono.pc b/mono-test/bin/lib/pkgconfig/mono.pc new file mode 100644 index 0000000..e321b8d --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/mono.pc @@ -0,0 +1,9 @@ +prefix=C:/PROGRA~2/MONO-3~1.3 +exec_prefix=${pcfiledir}/../.. +libdir=${prefix}/lib +includedir=${prefix}/include/mono-2.0 +sysconfdir=${prefix}/etc + +Name: Mono +Description: Mono Runtime +Version: 3.3.0 diff --git a/mono-test/bin/lib/pkgconfig/mono.web.pc b/mono-test/bin/lib/pkgconfig/mono.web.pc new file mode 100644 index 0000000..46cb2e0 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/mono.web.pc @@ -0,0 +1,4 @@ +Name: Mono.Web +Description: Mono ASP.NET extension classes +Version: 2.0.0.0 +Libs: -r:/tmp/install/lib/mono/gac/Mono.Web/2.0.0.0__0738eb9f132ed756/Mono.Web.dll diff --git a/mono-test/bin/lib/pkgconfig/monodoc.pc b/mono-test/bin/lib/pkgconfig/monodoc.pc new file mode 100644 index 0000000..4821756 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/monodoc.pc @@ -0,0 +1,9 @@ +prefix=C:/PROGRA~2/MONO-3~1.3 +exec_prefix=${prefix} +libdir=/tmp/install/lib +sourcesdir=${libdir}/monodoc/sources + +Name: Monodoc +Description: Monodoc - Mono Documentation Tools +Version: 3.3.0 +Libs: /r:${prefix}/lib/mono/monodoc/monodoc.dll diff --git a/mono-test/bin/lib/pkgconfig/monosgen-2.pc b/mono-test/bin/lib/pkgconfig/monosgen-2.pc new file mode 100644 index 0000000..d8f6a07 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/monosgen-2.pc @@ -0,0 +1,11 @@ +prefix=C:/PROGRA~2/MONO-3~1.3 +exec_prefix=${pcfiledir}/../.. +libdir=${prefix}/lib +includedir=${prefix}/include/mono-2.0 +sysconfdir=${prefix}/etc + +Name: Mono +Description: Mono Runtime +Version: 3.3.0 +Libs: -L${libdir} -Wl,--export-all-symbols -lmonosgen-2.0 -mms-bitfields -mwindows -lws2_32 -lpsapi -lole32 -lwinmm -loleaut32 -ladvapi32 -lversion +Cflags: -I${includedir} -mms-bitfields -mwindows diff --git a/mono-test/bin/lib/pkgconfig/nant.pc b/mono-test/bin/lib/pkgconfig/nant.pc new file mode 100644 index 0000000..28de4a5 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/nant.pc @@ -0,0 +1,8 @@ +prefix=${pcfiledir}/../.. +extensiondir=${prefix}/share/NAnt/bin/extensions +libdir=${prefix}/share/NAnt/bin/lib + +Name: NAnt +Description: A build tool for .NET and Mono +Version: 0.91 +Libs: -r:"${prefix}/share/NAnt/bin/NAnt.Core.dll" diff --git a/mono-test/bin/lib/pkgconfig/reactive.pc b/mono-test/bin/lib/pkgconfig/reactive.pc new file mode 100644 index 0000000..47e1ac1 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/reactive.pc @@ -0,0 +1,4 @@ +Name: Reactive Extensions +Description: Reactive Extensions +Version: 3.3.0 +Libs: -r:/tmp/install/lib/mono/4.5/System.Reactive.Interfaces.dll -r:/tmp/install/lib/mono/4.5/System.Reactive.Core.dll -r:/tmp/install/lib/mono/4.5/System.Reactive.Linq.dll -r:/tmp/install/lib/mono/4.5/System.Reactive.PlatformServices.dll -r:/tmp/install/lib/mono/4.5/System.Reactive.Providers.dll -r:/tmp/install/lib/mono/4.5/System.Reactive.Debugger.dll -r:/tmp/install/lib/mono/4.5/System.Reactive.Experimental.dll -r:/tmp/install/lib/mono/4.5/System.Reactive.Runtime.Remoting.dll diff --git a/mono-test/bin/lib/pkgconfig/system.web.extensions.design_1.0.pc b/mono-test/bin/lib/pkgconfig/system.web.extensions.design_1.0.pc new file mode 100644 index 0000000..f3ce4a4 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/system.web.extensions.design_1.0.pc @@ -0,0 +1,4 @@ +Name: System.Web.Extensions.Design +Description: System.Web.Extensions.Design ASP.NET 2.0 add-on +Version: 1.0.61025.0 +Libs: -r:/tmp/install/lib/mono/gac/System.Web.Extensions.Design/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.Design.dll diff --git a/mono-test/bin/lib/pkgconfig/system.web.extensions_1.0.pc b/mono-test/bin/lib/pkgconfig/system.web.extensions_1.0.pc new file mode 100644 index 0000000..ed22006 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/system.web.extensions_1.0.pc @@ -0,0 +1,4 @@ +Name: System.Web.Extensions +Description: System.Web.Extensions ASP.NET 2.0 add-on +Version: 1.0.61025.0 +Libs: -r:/tmp/install/lib/mono/gac/System.Web.Extensions/1.0.61025.0__31bf3856ad364e35/System.Web.Extensions.dll diff --git a/mono-test/bin/lib/pkgconfig/system.web.mvc.pc b/mono-test/bin/lib/pkgconfig/system.web.mvc.pc new file mode 100644 index 0000000..2e32ad3 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/system.web.mvc.pc @@ -0,0 +1,4 @@ +Name: System.Web.Mvc +Description: System.Web.Mvc - ASP.NET MVC +Version: 1.0.0.0 +Libs: -r:/tmp/install/lib/mono/gac/System.Web.Mvc/1.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll diff --git a/mono-test/bin/lib/pkgconfig/system.web.mvc2.pc b/mono-test/bin/lib/pkgconfig/system.web.mvc2.pc new file mode 100644 index 0000000..3043fc7 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/system.web.mvc2.pc @@ -0,0 +1,4 @@ +Name: System.Web.Mvc2 +Description: System.Web.Mvc - ASP.NET MVC v2 +Version: 2.0.0.0 +Libs: -r:/tmp/install/lib/mono/gac/System.Web.Mvc/2.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll diff --git a/mono-test/bin/lib/pkgconfig/system.web.mvc3.pc b/mono-test/bin/lib/pkgconfig/system.web.mvc3.pc new file mode 100644 index 0000000..b02d57c --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/system.web.mvc3.pc @@ -0,0 +1,4 @@ +Name: System.Web.Mvc3 +Description: System.Web.Mvc - ASP.NET MVC v3 +Version: 3.0.0.0 +Libs: -r:/tmp/install/lib/mono/gac/System.Web.Mvc/3.0.0.0__31bf3856ad364e35/System.Web.Mvc.dll diff --git a/mono-test/bin/lib/pkgconfig/wcf.pc b/mono-test/bin/lib/pkgconfig/wcf.pc new file mode 100644 index 0000000..1ea6ed4 --- /dev/null +++ b/mono-test/bin/lib/pkgconfig/wcf.pc @@ -0,0 +1,5 @@ + +Name: WCF +Description: References WCF for compilation +Version: 3.3.0 +Libs: -r:System.Runtime.Serialization.dll -r:System.IdentityModel.dll -r:System.IdentityModel.Selectors.dll -r:System.ServiceModel.dll -r:System.ServiceModel.Web.dll diff --git a/mono-test/bin/lib/zdll.lib b/mono-test/bin/lib/zdll.lib new file mode 100644 index 0000000..4e53491 Binary files /dev/null and b/mono-test/bin/lib/zdll.lib differ diff --git a/mono-test/bin/lib/zlib.def b/mono-test/bin/lib/zlib.def new file mode 100644 index 0000000..00ce016 --- /dev/null +++ b/mono-test/bin/lib/zlib.def @@ -0,0 +1,67 @@ +LIBRARY zlib1.dll +EXPORTS +adler32 +adler32_combine +compress +compress2 +compressBound +crc32 +crc32_combine +deflate +deflateBound +deflateCopy +deflateEnd +deflateInit2_ +deflateInit_ +deflateParams +deflatePrime +deflateReset +deflateSetDictionary +deflateSetHeader +deflateTune +get_crc_table +gzbuffer +gzclearerr +gzclose +gzclose_r +gzclose_w +gzdirect +gzdopen +gzeof +gzerror +gzflush +gzgetc +gzgets +gzoffset +gzopen +gzprintf +gzputc +gzputs +gzread +gzrewind +gzseek +gzsetparams +gztell +gzungetc +gzwrite +inflate +inflateBack +inflateBackEnd +inflateBackInit_ +inflateCopy +inflateEnd +inflateGetHeader +inflateInit2_ +inflateInit_ +inflateMark +inflatePrime +inflateReset +inflateReset2 +inflateSetDictionary +inflateSync +inflateSyncPoint +inflateUndermine +uncompress +zError +zlibCompileFlags +zlibVersion diff --git a/mono-test/mono-test.cpp b/mono-test/mono-test.cpp new file mode 100644 index 0000000..4d03402 --- /dev/null +++ b/mono-test/mono-test.cpp @@ -0,0 +1,47 @@ +#include "stdafx.h" + +#include "CMono.h" + +int main( int argc, char* argv[] ) +{ + CMono* pMono = new CMono(); + + if( pMono->Init( "v4.0.30319" ) ) + { + printf( "\tInitializing mono done, MemUsage=1337Kb\n" ); + + pMono->Load( "MonoTest.dll" ); + + char szLine[ 256 ]; + + while( true ) + { + cin.getline( szLine, sizeof( szLine ) ); + + if( strcmp( szLine, "exit" ) == 0 ) + { + break; + } + else + { + if( pMono->Load( szLine ) ) + { + printf( "'%s' successfuly loaded\n", szLine ); + } + else + { + printf( "loading '%s' failed\n", szLine ); + } + } + } + } + else + { + printf( "Mono initialization failed\n" ); + } + + delete pMono; + + return 0; +} + diff --git a/mono-test/mono-test.vcxproj b/mono-test/mono-test.vcxproj new file mode 100644 index 0000000..4e9fbda --- /dev/null +++ b/mono-test/mono-test.vcxproj @@ -0,0 +1,109 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + {63CBE79D-C717-4797-860B-174FABF780A0} + Win32Proj + monotest + + + + Application + true + v110 + Unicode + + + Application + false + v120 + true + Unicode + + + + + + + + + + + + + true + + + false + ..\bin\$(ProjectName) + $(ProjectDir)$(Configuration)\ + + + + Use + Level3 + Disabled + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + Use + MaxSpeed + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + ..\mta-mono\vendor;%(AdditionalIncludeDirectories) + + + Console + true + true + true + + + + + + + + + + + + + + + + + + + + + Create + Create + + + + + + + + + \ No newline at end of file diff --git a/mono-test/stdafx.cpp b/mono-test/stdafx.cpp new file mode 100644 index 0000000..02c1f47 --- /dev/null +++ b/mono-test/stdafx.cpp @@ -0,0 +1,8 @@ +// stdafx.cpp: , +// mono-test.pch +// stdafx.obj + +#include "stdafx.h" + +// TODO: STDAFX.H +// , diff --git a/mono-test/stdafx.h b/mono-test/stdafx.h new file mode 100644 index 0000000..6029fce --- /dev/null +++ b/mono-test/stdafx.h @@ -0,0 +1,27 @@ +// stdafx.h: +// , , +// +// + +#pragma once + +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#define ASSERT assert + +using namespace std; \ No newline at end of file diff --git a/mono-test/targetver.h b/mono-test/targetver.h new file mode 100644 index 0000000..04cd0e1 --- /dev/null +++ b/mono-test/targetver.h @@ -0,0 +1,8 @@ +#pragma once + +// SDKDDKVer.h Windows. + +// Windows, WinSDKVer.h +// _WIN32_WINNT SDKDDKVer.h. + +#include diff --git a/mta-mono.sln b/mta-mono.sln index a1b1437..0589f6f 100644 --- a/mta-mono.sln +++ b/mta-mono.sln @@ -1,5 +1,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2013 +VisualStudioVersion = 12.0.21005.1 +MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Dependencies", "Dependencies", "{AC4FC54A-60A7-4EB0-A40D-14768DD633F1}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mta-mono", "mta-mono\mta-mono.vcxproj", "{5E5C7A85-A869-4D86-88FF-05DCEFC07AC3}" @@ -8,6 +10,12 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lua51", "mta-mono\vendor\lu EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiTheftAuto", "MultiTheftAuto\MultiTheftAuto.csproj", "{2E5D4B1E-405E-453F-BEED-25735E25ACD8}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test", "Test\Test.csproj", "{CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mono-test", "mono-test\mono-test.vcxproj", "{63CBE79D-C717-4797-860B-174FABF780A0}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MonoTest", "MonoTest\MonoTest.csproj", "{DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -56,6 +64,42 @@ Global {2E5D4B1E-405E-453F-BEED-25735E25ACD8}.Release|Mixed Platforms.Build.0 = Release|Any CPU {2E5D4B1E-405E-453F-BEED-25735E25ACD8}.Release|Win32.ActiveCfg = Release|Any CPU {2E5D4B1E-405E-453F-BEED-25735E25ACD8}.Release|x64.ActiveCfg = Release|Any CPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}.Debug|Win32.ActiveCfg = Debug|Any CPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}.Debug|x64.ActiveCfg = Debug|Any CPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}.Release|Any CPU.Build.0 = Release|Any CPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}.Release|Win32.ActiveCfg = Release|Any CPU + {CBD7F8D5-39F2-4AA5-9FFF-2D3185533DDD}.Release|x64.ActiveCfg = Release|Any CPU + {63CBE79D-C717-4797-860B-174FABF780A0}.Debug|Any CPU.ActiveCfg = Debug|Win32 + {63CBE79D-C717-4797-860B-174FABF780A0}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32 + {63CBE79D-C717-4797-860B-174FABF780A0}.Debug|Mixed Platforms.Build.0 = Debug|Win32 + {63CBE79D-C717-4797-860B-174FABF780A0}.Debug|Win32.ActiveCfg = Debug|Win32 + {63CBE79D-C717-4797-860B-174FABF780A0}.Debug|Win32.Build.0 = Debug|Win32 + {63CBE79D-C717-4797-860B-174FABF780A0}.Debug|x64.ActiveCfg = Debug|Win32 + {63CBE79D-C717-4797-860B-174FABF780A0}.Release|Any CPU.ActiveCfg = Release|Win32 + {63CBE79D-C717-4797-860B-174FABF780A0}.Release|Mixed Platforms.ActiveCfg = Release|Win32 + {63CBE79D-C717-4797-860B-174FABF780A0}.Release|Mixed Platforms.Build.0 = Release|Win32 + {63CBE79D-C717-4797-860B-174FABF780A0}.Release|Win32.ActiveCfg = Release|Win32 + {63CBE79D-C717-4797-860B-174FABF780A0}.Release|Win32.Build.0 = Release|Win32 + {63CBE79D-C717-4797-860B-174FABF780A0}.Release|x64.ActiveCfg = Release|Win32 + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}.Debug|Win32.ActiveCfg = Debug|Any CPU + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}.Debug|x64.ActiveCfg = Debug|Any CPU + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}.Release|Any CPU.Build.0 = Release|Any CPU + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}.Release|Win32.ActiveCfg = Release|Any CPU + {DC461F17-D2EC-4B7C-8CDB-AE81BEDEBD0F}.Release|x64.ActiveCfg = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/mta-mono/lib/mono-2.0.lib b/mta-mono/lib/mono-2.0.lib new file mode 100644 index 0000000..d7322d2 Binary files /dev/null and b/mta-mono/lib/mono-2.0.lib differ diff --git a/mta-mono/mta-mono.vcxproj b/mta-mono/mta-mono.vcxproj index 3b533a7..205a273 100644 --- a/mta-mono/mta-mono.vcxproj +++ b/mta-mono/mta-mono.vcxproj @@ -1,5 +1,5 @@  - + Debug @@ -12,6 +12,7 @@ + @@ -23,6 +24,7 @@ + @@ -35,6 +37,10 @@ + + + + {5E5C7A85-A869-4D86-88FF-05DCEFC07AC3} mta-mono @@ -44,13 +50,13 @@ DynamicLibrary - v110 + v120 false MultiByte DynamicLibrary - v110 + v120 false MultiByte @@ -133,6 +139,8 @@ false Full Default + true + true NDEBUG;%(PreprocessorDefinitions) @@ -140,7 +148,7 @@ $(IntDir);%(AdditionalIncludeDirectories) - lib/lua51.lib;lib/mono.lib;%(AdditionalDependencies) + %(AdditionalDependencies) $(OutDir)$(TargetName)$(TargetExt) true diff --git a/mta-mono/src/CMonoFunctions.cpp b/mta-mono/src/CMonoFunctions.cpp index 082837d..beb6792 100644 --- a/mta-mono/src/CMonoFunctions.cpp +++ b/mta-mono/src/CMonoFunctions.cpp @@ -11,6 +11,7 @@ *********************************************************/ #include "CMonoFunctions.h" +#include "CMonoObject.h" #include "CResource.h" #include "CResourceManager.h" @@ -22,11 +23,12 @@ extern CResourceManager *g_pResourceManager; void CMonoFunctions::AddInternals( void ) { - mono_add_internal_call( "MultiTheftAuto.Debug::Log", CMonoFunctions::Debug::Log ); - mono_add_internal_call( "MultiTheftAuto.Debug::Info", CMonoFunctions::Debug::Info ); - mono_add_internal_call( "MultiTheftAuto.Debug::Error", CMonoFunctions::Debug::Error ); - mono_add_internal_call( "MultiTheftAuto.Native.Config::Get", CMonoFunctions::Config::Get ); - mono_add_internal_call( "MultiTheftAuto.Native.Config::Set", CMonoFunctions::Config::Set ); + mono_add_internal_call( "MultiTheftAuto.Debug::Log", CMonoFunctions::Debug::Log ); + mono_add_internal_call( "MultiTheftAuto.Debug::Info", CMonoFunctions::Debug::Info ); + mono_add_internal_call( "MultiTheftAuto.Debug::Error", CMonoFunctions::Debug::Error ); + mono_add_internal_call( "MultiTheftAuto.Native.Config::Get", CMonoFunctions::Config::Get ); + mono_add_internal_call( "MultiTheftAuto.Native.Config::Set", CMonoFunctions::Config::Set ); + mono_add_internal_call( "MultiTheftAuto.Native.Vehicle::Create", CMonoFunctions::Vehicle::Create ); } void CMonoFunctions::Debug::Log( MonoString *string ) @@ -80,3 +82,30 @@ bool CMonoFunctions::Config::Set( MonoString *msKey, MonoString *msValue ) return false; } + +MonoObject* CMonoFunctions::Vehicle::Create( int model, MonoObject* position, MonoObject* rotation, string &numberplate, bool direction, int variant1, int variant2 ) +{ + if( RESOURCE ) + { + CMonoObject pPosition( position ); + + float fX = pPosition.GetPropertyValue( "X" ); + float fY = pPosition.GetPropertyValue( "Y" ); + float fZ = pPosition.GetPropertyValue( "Z" ); + + CMonoObject pRotation( rotation ); + + float fRX = pRotation.GetPropertyValue( "X" ); + float fRY = pRotation.GetPropertyValue( "Y" ); + float fRZ = pRotation.GetPropertyValue( "Z" ); + + void* pVehicle = CLuaFunctionDefinitions::CreateVehicle( RESOURCE->GetLua(), model, fX, fY, fZ, fRX, fRY, fRZ, numberplate, direction, variant1, variant2 ); + + if( pVehicle ) + { + + } + } + + return NULL; +} \ No newline at end of file diff --git a/mta-mono/src/CMonoFunctions.h b/mta-mono/src/CMonoFunctions.h index a9dbefb..ea8de5d 100644 --- a/mta-mono/src/CMonoFunctions.h +++ b/mta-mono/src/CMonoFunctions.h @@ -34,9 +34,15 @@ public: class Config { public: - static MonoString *Get ( MonoString *msKey ); + static MonoString* Get ( MonoString *msKey ); static bool Set ( MonoString *msKey, MonoString *msValue ); }; + + class Vehicle + { + public: + static MonoObject* Create ( int model, MonoObject* position, MonoObject* rotation, string &numberplate, bool direction = false, int variant1 = 255, int variant2 = 255 ); + }; }; #endif \ No newline at end of file diff --git a/mta-mono/src/CMonoObject.cpp b/mta-mono/src/CMonoObject.cpp new file mode 100644 index 0000000..853727b --- /dev/null +++ b/mta-mono/src/CMonoObject.cpp @@ -0,0 +1,31 @@ +#include "CMonoObject.h" + + +CMonoObject::CMonoObject( MonoObject* pMonoObject ) +{ + this->m_pMonoObject = pMonoObject; +} + + +CMonoObject::~CMonoObject() +{ +} + +MonoClass* CMonoObject::GetClass() +{ + return mono_object_get_class( this->m_pMonoObject ); +} + +MonoObject* CMonoObject::GetPropertyValue( const char* szPropertyName ) +{ + MonoClass* pMonoClass = mono_object_get_class( this->m_pMonoObject ); + + MonoProperty* pMonoProperty = mono_class_get_property_from_name( pMonoClass, szPropertyName ); + + if( !pMonoProperty ) + { + return NULL; + } + + return mono_property_get_value( pMonoProperty, this->m_pMonoObject, NULL, NULL ); +} \ No newline at end of file diff --git a/mta-mono/src/CMonoObject.h b/mta-mono/src/CMonoObject.h new file mode 100644 index 0000000..02f9af0 --- /dev/null +++ b/mta-mono/src/CMonoObject.h @@ -0,0 +1,27 @@ +class CMonoObject; + +#ifndef _C_MONO_OBJECT +#define _C_MONO_OBJECT + +#include "Common.h" + +class CMonoObject +{ +private: + MonoObject* m_pMonoObject; + +public: + CMonoObject( MonoObject* pMonoObject ); + ~CMonoObject(); + + MonoClass* GetClass(); + + MonoObject* GetPropertyValue( const char* szPropertyName ); + + template T GetPropertyValue( char* szPropertyName ) + { + return *( reinterpret_cast( mono_object_unbox( this->GetPropertyValue( szPropertyName ) ) ) ); + } +}; + +#endif \ No newline at end of file diff --git a/mta-mono/src/CResourceManager.h b/mta-mono/src/CResourceManager.h index 4e15249..9202033 100644 --- a/mta-mono/src/CResourceManager.h +++ b/mta-mono/src/CResourceManager.h @@ -37,7 +37,7 @@ public: mono_debug_init( MONO_DEBUG_FORMAT_MONO ); - this->m_pMonoDomain = mono_jit_init( "rootDomain" ); + this->m_pMonoDomain = mono_jit_init_version( "Mono Root", "v4.0.30319" ); CMonoFunctions::AddInternals(); } diff --git a/mta-mono/src/Common.h b/mta-mono/src/Common.h index 55d2251..c7df924 100644 --- a/mta-mono/src/Common.h +++ b/mta-mono/src/Common.h @@ -33,6 +33,7 @@ extern "C" #include #include #include +#include #include #include diff --git a/mta-mono/src/lua/CLuaFunctionDefinitions.cpp b/mta-mono/src/lua/CLuaFunctionDefinitions.cpp index 5195822..f195155 100644 --- a/mta-mono/src/lua/CLuaFunctionDefinitions.cpp +++ b/mta-mono/src/lua/CLuaFunctionDefinitions.cpp @@ -161,3 +161,29 @@ bool CLuaFunctionDefinitions::SetRuleValue( lua_State *pLuaVM, const string &sKe return false; } + +void* CLuaFunctionDefinitions::CreateVehicle( lua_State* pLuaVM, int model, float fX, float fY, float fZ, float fRX, float fRY, float fRZ, string &numberplate, bool direction, int variant1, int variant2 ) +{ + CLuaArguments pLuaArguments; + + pLuaArguments.PushNumber( model ); + pLuaArguments.PushNumber( fX ); + pLuaArguments.PushNumber( fY ); + pLuaArguments.PushNumber( fZ ); + pLuaArguments.PushNumber( fRX ); + pLuaArguments.PushNumber( fRY ); + pLuaArguments.PushNumber( fRZ ); + pLuaArguments.PushString( numberplate.c_str() ); + pLuaArguments.PushBoolean( direction ); + pLuaArguments.PushNumber( variant1 ); + pLuaArguments.PushNumber( variant2 ); + + if( pLuaArguments.Call( pLuaVM, "createVehicle", 1 ) ) + { + CLuaArgument pLuaArgument( pLuaVM, -1 ); + + return pLuaArgument.GetLightUserData(); + } + + return NULL; +} \ No newline at end of file diff --git a/mta-mono/src/lua/CLuaFunctionDefinitions.h b/mta-mono/src/lua/CLuaFunctionDefinitions.h index 99c03ab..a31a906 100644 --- a/mta-mono/src/lua/CLuaFunctionDefinitions.h +++ b/mta-mono/src/lua/CLuaFunctionDefinitions.h @@ -15,6 +15,7 @@ class CLuaFunctionDefinitions; #ifndef __CLUAFUNCTIONDEFINITIONS_H #define __CLUAFUNCTIONDEFINITIONS_H +#include "../Common.h" #include "../extra/CLuaArguments.h" class CLuaFunctionDefinitions @@ -29,6 +30,8 @@ public: static bool SetGameType ( lua_State* pLuaVM, const string &sType ); static bool SetMapName ( lua_State* pLuaVM, const string &sName ); static bool SetRuleValue ( lua_State* pLuaVM, const string &sKey, const string &sValue ); + + static void* CreateVehicle ( lua_State* luaVM, int model, float fX, float fY, float fZ, float fRX, float fRY, float fRZ, string &numberplate, bool direction = false, int variant1 = 255, int variant2 = 255 ); /* static int CallRemote ( lua_State* luaVM ); static int FetchRemote ( lua_State* luaVM ); diff --git a/mta-mono/vendor/lua51/lua51.vcxproj b/mta-mono/vendor/lua51/lua51.vcxproj index 758d00e..f36fdfb 100644 --- a/mta-mono/vendor/lua51/lua51.vcxproj +++ b/mta-mono/vendor/lua51/lua51.vcxproj @@ -1,5 +1,5 @@  - + Debug @@ -22,19 +22,19 @@ StaticLibrary - v110 + v120 MultiByte true StaticLibrary - v110 + v120 MultiByte true StaticLibrary - v110 + v120 MultiByte