diff --git a/POINT-VR-Chapter-1/Assets/AddressableAssetsData/Windows.meta b/POINT-VR-Chapter-1/Assets/AddressableAssetsData/Windows.meta new file mode 100644 index 00000000..40282378 --- /dev/null +++ b/POINT-VR-Chapter-1/Assets/AddressableAssetsData/Windows.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 520331089f7cd994ab2aa96d2d004a9a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/POINT-VR-Chapter-1/Assets/POINT/4D-SpacetimeAssets/Scene1Manager.cs b/POINT-VR-Chapter-1/Assets/POINT/4D-SpacetimeAssets/Scene1Manager.cs index 140c9d0a..8526cd61 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/4D-SpacetimeAssets/Scene1Manager.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/4D-SpacetimeAssets/Scene1Manager.cs @@ -49,7 +49,7 @@ public class Scene1Manager : MonoBehaviour private string objectiveThreeString; private string objectiveFourString; - private Camera currentCamera = null; + private Camera mainCamera = null; private GameObject player = null; private UIManager uiManager = null; private GameObject examplePath = null; @@ -87,9 +87,9 @@ private void Start() private void Update() { - if (currentCamera != null) + if (mainCamera != null) { - Shader.SetGlobalVector("Grid_Player_Position", currentCamera.transform.position); + Shader.SetGlobalVector("Grid_Player_Position", mainCamera.transform.position); } } @@ -153,10 +153,10 @@ private IEnumerator Setup() } private IEnumerator WaitForPlayerSpawn() { - yield return new WaitUntil(() => Camera.current != null); + yield return new WaitUntil(() => Camera.main != null); - currentCamera = Camera.current; - player = currentCamera.transform.parent.gameObject; + mainCamera = Camera.main; + player = mainCamera.transform.parent.gameObject; uiManager = player.GetComponentInChildren(true); yield break; diff --git a/POINT-VR-Chapter-1/Assets/POINT/Audio/Narration/NarrationManager.cs b/POINT-VR-Chapter-1/Assets/POINT/Audio/Narration/NarrationManager.cs index da55db76..2a2dee86 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Audio/Narration/NarrationManager.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/Audio/Narration/NarrationManager.cs @@ -13,6 +13,13 @@ public class NarrationManager : MonoBehaviour /// The GameObject with a TextMeshPro component to display the subtitles /// [SerializeField] private GameObject subtitleObject = null; + public GameObject SubtitleObject + { + get + { + return subtitleObject; + } + } /// /// Volume multiplier for narration volume diff --git a/POINT-VR-Chapter-1/Assets/POINT/Credits/EndCreditsManager.cs b/POINT-VR-Chapter-1/Assets/POINT/Credits/EndCreditsManager.cs index eebea844..76a59a93 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Credits/EndCreditsManager.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/Credits/EndCreditsManager.cs @@ -88,7 +88,7 @@ private class CreditsPosition /// private float endScrollY = 0.0f; - private Camera currentCamera = null; + private Camera mainCamera = null; private GameObject player = null; private IEnumerator Start() @@ -160,10 +160,10 @@ private IEnumerator Start() private IEnumerator WaitForPlayerSpawn() { - yield return new WaitUntil(() => Camera.current != null); + yield return new WaitUntil(() => Camera.main != null); - currentCamera = Camera.current; - player = currentCamera.transform.parent.gameObject; + mainCamera = Camera.main; + player = mainCamera.transform.parent.gameObject; yield break; } diff --git a/POINT-VR-Chapter-1/Assets/POINT/Feature3/SortHolder.cs b/POINT-VR-Chapter-1/Assets/POINT/Feature3/SortHolder.cs index 5ffc1bb6..2f56b5fa 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Feature3/SortHolder.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/Feature3/SortHolder.cs @@ -14,7 +14,7 @@ public class SortHolder : MonoBehaviour [SerializeField] private GameObject NextTaskButton; private GameObject[] snapRings = null; - private Camera currentCamera = null; + private Camera mainCamera = null; private GameObject player = null; public void Start() @@ -35,12 +35,12 @@ public void Start() IEnumerator WaitForPlayerSpawn() { - yield return new WaitUntil(() => Camera.current != null); + yield return new WaitUntil(() => Camera.main != null); // Start menu initialization - currentCamera = Camera.current; - //this.GetComponent().worldCamera = currentCamera; - player = currentCamera.transform.parent.gameObject; + mainCamera = Camera.main; + //this.GetComponent().worldCamera = mainCamera; + player = mainCamera.transform.parent.gameObject; yield break; } diff --git a/POINT-VR-Chapter-1/Assets/POINT/Grid/PointGridGenerator.cs b/POINT-VR-Chapter-1/Assets/POINT/Grid/PointGridGenerator.cs index 2fd327ea..d11c9a27 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Grid/PointGridGenerator.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/Grid/PointGridGenerator.cs @@ -5,7 +5,6 @@ public class PointGridGenerator : MonoBehaviour { - private Camera currentCamera = null; public int radius; public int density; public float size; @@ -19,12 +18,7 @@ public class PointGridGenerator : MonoBehaviour IEnumerator WaitForPlayerSpawn() { - yield return new WaitUntil(() => Camera.current != null); - - // Start camera initialization - currentCamera = Camera.current; - //player = currentCamera.transform.parent.gameObject; - + yield return new WaitUntil(() => Camera.main != null); yield break; } @@ -52,7 +46,7 @@ public void CreateGrid() obj.transform.parent = transform; obj.transform.localScale = obj.transform.localScale * size; - //obj.transform.position = currentCamera.transform.position + new Vector3(1, 0, 0) * (d + 1) * density + //obj.transform.position = mainCamera.transform.position + new Vector3(1, 0, 0) * (d + 1) * density // + new Vector3(0, 1, 0) * (i + 1) * density + new Vector3(0, 0, 1) * (j + 1) * density; // First vector3 is starting position @@ -84,7 +78,7 @@ public void DeleteGrid() void Start() { - StartCoroutine(WaitForPlayerSpawn()); // Fix camera spawning, currently currentCamera does not set + StartCoroutine(WaitForPlayerSpawn()); is_show = false; objs = new List(); @@ -114,7 +108,7 @@ private void FixedUpdate() int dd = (int)(i / (2 * radius * 2 * radius)); int ii = (int)((i - dd * (2 * radius * 2 * radius)) / (2 * radius)); int jj = (int)(i - dd * (2 * radius * 2 * radius) - ii * (2 * radius)); - //org_pos = currentCamera.transform.position + new Vector3(1, 0, 0) * (dd + 1 - radius) * density + //org_pos = mainCamera.transform.position + new Vector3(1, 0, 0) * (dd + 1 - radius) * density // + new Vector3(0, 1, 0) * (ii + 1 - radius) * density + new Vector3(0, 0, 1) * (jj + 1 - radius) * density; org_pos = new Vector3(0, 0, 0) + new Vector3(1, 0, 0) * (dd + 1 - radius) * density + new Vector3(0, 1, 0) * (ii + 1 - radius) * density + new Vector3(0, 0, 1) * (jj + 1 - radius) * density; diff --git a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/Controls.inputactions b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/Controls.inputactions index d47054c7..4ee99866 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/Controls.inputactions +++ b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/Controls.inputactions @@ -228,6 +228,28 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "d11495c6-de23-4a58-bee3-271ef6ce7b42", + "path": "/rightButton", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Grab", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "ebc4298c-f951-4533-a0bb-1085e46fa335", + "path": "/c", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Grab", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "516d7578-9fa7-4ff4-a97c-1f15e09d8d41", @@ -239,6 +261,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "b1dc89c6-ab0b-4e76-8ce2-a9687b557471", + "path": "/leftButton", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Select", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "93ace763-3501-4c25-be7f-5ee6748c5225", @@ -250,6 +283,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "651812e0-84ce-4005-9225-9c66d5751607", + "path": "/escape", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Toggle Menu", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "ce40b17c-b88d-4cd2-99af-2e9f63ce6441", @@ -261,6 +305,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "801f4233-aa46-4672-bbb4-135dd058be3b", + "path": "/f", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Pull", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "b9f012f3-7c4b-47d7-95b1-207a87fbc10c", @@ -272,6 +327,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "56a948bc-af95-4d1e-9ebf-24063a28820e", + "path": "/r", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Push", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "33220146-5284-4f93-8146-caec7ee58d28", @@ -283,6 +349,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "9e484b2c-86db-4d8f-891f-2d408b080f27", + "path": "/scroll", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Scroll", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "889e8fe7-d6e9-49a0-a236-42a33dd96fbe", @@ -494,6 +571,28 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "591bf3fa-c2d5-4690-b53e-44419b22faca", + "path": "/rightButton", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Grab", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "aba3809c-aad0-4a81-b175-4272a68c6dd3", + "path": "/c", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Grab", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "97fc1ec4-b840-4cc4-8399-e940593aa590", @@ -505,6 +604,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "e8ac95f4-9aa2-4fba-98fc-3b42c333050e", + "path": "/leftButton", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Select", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "62fb875a-f0c8-4e3c-a815-c48a56f7a46d", @@ -516,6 +626,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "1c87d11a-4643-4c8f-ab68-f36c4c2f71d0", + "path": "/f", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Pull", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "3e8cef5d-d11e-43e4-85ba-94e984e7a798", @@ -527,6 +648,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "2d7b4ca5-3002-4897-aaeb-86533013301c", + "path": "/r", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Push", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "22531d62-0281-4cf2-818f-ac7eb5fdb44e", @@ -538,6 +670,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "d3c167d0-4b2b-4429-82b7-e4d5b5b4e4b1", + "path": "/scroll", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Scroll", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "f731c2d8-1160-4025-9136-cb7a249f55b7", @@ -605,6 +748,77 @@ "isPartOfComposite": false } ] + }, + { + "name": "Keyboard Movement", + "id": "77c3a12f-4f90-45dc-8acd-3b46e623834f", + "actions": [ + { + "name": "Move", + "type": "Value", + "id": "76c36bb1-8b40-4175-bae5-64eb93587bbd", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "" + } + ], + "bindings": [ + { + "name": "2D Vector", + "id": "dc17ab01-71ee-4135-8ab3-3027dc75c63f", + "path": "2DVector", + "interactions": "", + "processors": "", + "groups": "", + "action": "Move", + "isComposite": true, + "isPartOfComposite": false + }, + { + "name": "up", + "id": "17731471-cafe-4be1-b936-25caf591ff3d", + "path": "/w", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "68b76681-d929-4013-a485-f58030f0cddc", + "path": "/s", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "abdb432d-0091-4066-916e-0ad2995b3648", + "path": "/a", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "a997221b-2ef3-4029-8858-1a8c1dc82f52", + "path": "/d", + "interactions": "", + "processors": "", + "groups": "Keyboard", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + } + ] } ], "controlSchemes": [ @@ -665,6 +879,22 @@ "isOR": false } ] + }, + { + "name": "Keyboard", + "bindingGroup": "Keyboard", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + }, + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] } ] } \ No newline at end of file diff --git a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/HandController.cs b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/HandController.cs index 18edebf0..af1485b7 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/HandController.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/HandController.cs @@ -94,6 +94,9 @@ public class HandController : MonoBehaviour private Color laserColor; private Collider lastColliderHit; private Vector3 grabbingTransformVelocity, grabbingTransformPositionPrev, velocityPrev; + private Camera playerCamera = null; + private PCPortManager pcPortManager = null; + private void OnEnable() { selectReference.action.Enable(); @@ -113,6 +116,8 @@ private void OnEnable() pushing = false; previousParentTransform = null; laserColor = laser.material.color; + playerCamera = this.transform.parent.parent.GetComponentInChildren(); + pcPortManager = this.transform.parent.parent.GetComponent(); } private void OnDisable() { @@ -133,13 +138,18 @@ private void OnDisable() } private void Update() { - if (pulling && grabbingTransform != null && (transform.position - grabbingTransform.position).sqrMagnitude > squaredMinPullDistance) // object being pulled: pull +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + Transform grabParentTransform = playerCamera.transform; +#else + Transform grabParentTransform = this.transform; +#endif + if (pulling && grabbingTransform != null && (grabParentTransform.position - grabbingTransform.position).sqrMagnitude > squaredMinPullDistance) // object being pulled: pull { - grabbingTransform.position -= pullSpeed * transform.forward; + grabbingTransform.position -= pullSpeed * grabParentTransform.forward; } - else if (pushing && grabbingTransform != null && (transform.position - grabbingTransform.position).sqrMagnitude < squaredMaxPushDistance) // object being pushed: push + else if (pushing && grabbingTransform != null && (grabParentTransform.position - grabbingTransform.position).sqrMagnitude < squaredMaxPushDistance) // object being pushed: push { - grabbingTransform.position += pullSpeed * transform.forward; + grabbingTransform.position += pullSpeed * grabParentTransform.forward; } if (grabbingTransform != null) // Holding an object { @@ -152,7 +162,12 @@ private void Update() grabbingTransformPositionPrev = grabbingTransform.position; } // Fires a raycast that places the reticle +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + Ray camRay = playerCamera.ScreenPointToRay(Mouse.current.position.ReadValue()); + Physics.Raycast(camRay, out RaycastHit hit, teleportationDistance, floorMask); +#else Physics.Raycast(transform.position, transform.forward, out RaycastHit hit, teleportationDistance, floorMask); +#endif if (teleportMode && hit.point != Vector3.zero) //In teleport mode and raycast found the floor: place reticle { reticle.SetActive(true); @@ -166,12 +181,17 @@ private void Update() transform.GetComponent().SetBool("isPointing", false); } //Searches for UI or grabbable +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + if (Physics.Raycast(camRay, out hit, 10f, UIMask)) // UI was detected: interact with it + { +#else if (Physics.Raycast(transform.position, transform.forward, out hit, 10f, UIMask)) //UI found: turn this green { if (hit.collider != lastColliderHit) //did not hit the same collider as in the previous frame: haptic feedback { hardwareController.VibrateHand(); } +#endif if (hit.collider.GetComponent() == null) { // Check if detected item is within a ScrollRect; if so, make sure ScrollRect is also hit @@ -179,7 +199,11 @@ private void Update() ScrollRect scrollRect = hit.collider.GetComponentInParent(); if (scrollRect != null) { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + RaycastHit[] raycastHits = Physics.RaycastAll(camRay, 10f, UIMask); +#else RaycastHit[] raycastHits = Physics.RaycastAll(transform.position, transform.forward, 10f, UIMask); +#endif bool containsScrollRect = false; foreach (RaycastHit raycastHit in raycastHits) { @@ -191,18 +215,33 @@ private void Update() } if (containsScrollRect) { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + pcPortManager.SetCrossHairFocused(true); + pcPortManager.SetCrossHairColor(Color.green); +#else laser.material.color = Color.green; +#endif transform.GetComponent().SetBool("isPointing", true); } } else { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + pcPortManager.SetCrossHairFocused(true); + pcPortManager.SetCrossHairColor(Color.green); +#else laser.material.color = Color.green; +#endif transform.GetComponent().SetBool("isPointing", true); } } else { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + pcPortManager.SetCrossHairFocused(false); + pcPortManager.SetCrossHairColor(Color.white); +#else laser.material.color = laserColor; +#endif transform.GetComponent().SetBool("isPointing", false); } lastColliderHit = hit.collider; @@ -215,13 +254,23 @@ private void Update() CheckScrollbar(hit); } } +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + else if (grabbingTransform != null || Physics.Raycast(camRay, out hit, grabDistance, grabMask)) //grabbable found or is holding something: turn this cyan + { +#else else if (grabbingTransform != null || Physics.Raycast(transform.position, transform.forward, out hit, grabDistance, grabMask)) //grabbable found or is holding something: turn this cyan { if (hit.transform != lastGrabHit && grabbingTransform == null) //did not hit the same collider as in the previous frame: haptic feedback { hardwareController.VibrateHand(); } +#endif +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + pcPortManager.SetCrossHairFocused(true); + pcPortManager.SetCrossHairColor(Color.magenta); +#else laser.material.color = Color.magenta; +#endif if (grabbingTransform != null) { lastGrabHit = grabbingTransform; @@ -233,7 +282,12 @@ private void Update() } else // UI or grabbable not found: return the laser to its normal color { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + pcPortManager.SetCrossHairFocused(false); + pcPortManager.SetCrossHairColor(Color.white); +#else laser.material.color = laserColor; +#endif lastColliderHit = null; lastGrabHit = null; } @@ -279,7 +333,14 @@ public void Release() grav.enabled = gravEnabled; } // Add velocity to grabbed object. - if (!snapped) grabbingTransform.GetComponent().velocity = 2.5f*hardwareController.Velocity; //2.5f*(grabbingTransformVelocity + velocityPrev); + if (!snapped) + { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + grabbingTransform.GetComponent().velocity = 30.0f * (grabbingTransformVelocity + velocityPrev); +#else + grabbingTransform.GetComponent().velocity = 2.5f * hardwareController.Velocity; +#endif + } grabbingTransform = null; transform.GetComponent().SetBool("isGrabbing", false); } @@ -289,7 +350,12 @@ private void Released(InputAction.CallbackContext ctx) } private void Grab(InputAction.CallbackContext ctx) { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + Ray camRay = playerCamera.ScreenPointToRay(Mouse.current.position.ReadValue()); + Physics.Raycast(camRay, out RaycastHit hit, grabDistance, grabMask); +#else Physics.Raycast(transform.position, transform.forward, out RaycastHit hit, grabDistance, grabMask); +#endif if (hit.point == Vector3.zero) //Raycast did not find something to grab: nothing happens { return; @@ -305,7 +371,11 @@ private void Grab(InputAction.CallbackContext ctx) { previousParentTransform.GetComponent().heldObject = null; } +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + grabbingTransform.SetParent(playerCamera.transform); +#else grabbingTransform.SetParent(transform); +#endif grabbingTransform.GetComponent().velocity = Vector3.zero; // Also set the grabbed object's velocity to zero velocityPrev = Vector3.zero; grabbingTransformVelocity = Vector3.zero; @@ -323,15 +393,25 @@ private void Grab(InputAction.CallbackContext ctx) /// /// private void Select(InputAction.CallbackContext ctx) - { - if (Physics.Raycast(transform.position, transform.forward, out RaycastHit hit, 10f, UIMask)) //UI was detected: interact with it + { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + Ray uiRay = playerCamera.ScreenPointToRay(Mouse.current.position.ReadValue()); + if (Physics.Raycast(uiRay, out RaycastHit hit, 10f, UIMask)) // UI was detected: interact with it { +#else + if (Physics.Raycast(transform.position, transform.forward, out RaycastHit hit, 10f, UIMask)) // UI was detected: interact with it + { +#endif // Check if detected item is within a ScrollRect; if so, make sure ScrollRect is also hit // This is a workaround for colliders not disappearing even when a UI element is hidden by a mask, as in a ScrollRect ScrollRect scrollRect = hit.collider.GetComponentInParent(); if (scrollRect != null) { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + RaycastHit[] raycastHits = Physics.RaycastAll(uiRay, 10f, UIMask); +#else RaycastHit[] raycastHits = Physics.RaycastAll(transform.position, transform.forward, 10f, UIMask); +#endif bool containsScrollRect = false; foreach (RaycastHit raycastHit in raycastHits) { @@ -364,8 +444,13 @@ private void Select(InputAction.CallbackContext ctx) private void Unselect(InputAction.CallbackContext ctx) { holdingSlider = false; +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + if (teleportMode && Physics.Raycast(playerCamera.ViewportPointToRay(0.5f * Vector2.one), out RaycastHit hit, teleportationDistance, floorMask)) //Raycast detected the floor: teleport + { +#else if (teleportMode && Physics.Raycast(transform.position, transform.forward, out RaycastHit hit, teleportationDistance, floorMask)) //Raycast detected the floor: teleport { +#endif GetComponent().PlayOneShot(teleportAudio); playerTransform.parent.position = hit.point; } diff --git a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/HighlightManager.cs b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/HighlightManager.cs index d14384c7..30001a24 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/HighlightManager.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/HighlightManager.cs @@ -73,9 +73,9 @@ private void Update() if (cameraTransform != null) { this.transform.LookAt(cameraTransform); - } else if (Camera.current != null) + } else if (Camera.main != null) { - cameraTransform = Camera.current.transform; + cameraTransform = Camera.main.transform; } // Note: thumbstick input has to be read manually due to thumbstickTouched and thumbstickClicked diff --git a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/PCPortManager.cs b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/PCPortManager.cs new file mode 100644 index 00000000..6812f9ca --- /dev/null +++ b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/PCPortManager.cs @@ -0,0 +1,179 @@ +using UnityEngine; +using UnityEngine.InputSystem; +using UnityEngine.UI; + +public class PCPortManager : MonoBehaviour +{ + [Header("PC Port-Specific Values")] + /// + /// Scale of UI Canvas in the PC port + /// + [SerializeField] private float uiScale = 1.0f; + /// + /// Position offset of UI Canvas in the PC port + /// + [SerializeField] private Vector3 uiOffset = Vector3.zero; + public Vector3 UiOffset + { + get + { + return uiOffset; + } + } + /// + /// Anchored y-coordinate for subtitles (position from bottom of screen) + /// + [SerializeField] private float subtitlesYPosition = 250.0f; + /// + /// Mouse sensitivity for camera rotation + /// + [SerializeField] private float cameraSens = 5.0f; + public float CameraSens + { + get + { + return cameraSens; + } + } + /// + /// Movement speed of the player (using WASD) + /// + [SerializeField] private float movementSpeed = 2.0f; + /// + /// Crosshair sprite when focused + /// + [SerializeField] private Sprite crosshairFocused = null; + /// + /// Crosshair sprite when not focused (i.e. default) + /// + [SerializeField] private Sprite crosshairUnfocused = null; + [Header("References")] + /// + /// UI Container (Contains pause menu) + /// + [SerializeField] private Canvas uiContainer; + /// + /// Overlay Container + /// + [SerializeField] private Canvas overlayContainer; + /// + /// Subtitles UI + /// + [SerializeField] private RectTransform subtitles; + /// + /// Highlighted controls (on button input); deactivated in PC Port + /// + [SerializeField] private HighlightManager highlightControls; + /// + /// Image containing crosshair; visible only in PC Port + /// + [SerializeField] private Image crosshair; + /// + /// Player camera + /// + [SerializeField] private Camera mainCamera; + /// + /// Left hand controller + /// + [SerializeField] private XRHardwareController leftHandController; + /// + /// Right hand controller + /// + [SerializeField] private XRHardwareController rightHandController; + /// + /// InputActionReference for player movement in PC Port + /// + [SerializeField] private InputActionReference playerMoveReference; + + [Header("UI Menu Changes")] + /// + /// UI Image for the diagram in the Controls tab of the UI menu + /// + [SerializeField] private Image controlsDiagram; + /// + /// Sprite showing the default controls for the PC Port + /// + [SerializeField] private Sprite controlsSprite; + /// + /// UI setting for live controller diagrams; deactivated in PC Port + /// + [SerializeField] private GameObject controllerDiagramsToggle; + /// + /// UI setting for haptics; deactivated in PC Port + /// + [SerializeField] private GameObject hapticsToggle; + +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + private void Start() + { + // UI adjustments + uiContainer.transform.localScale = uiScale * Vector3.one; + (uiContainer.transform as RectTransform).position += uiOffset; + if (controllerDiagramsToggle) + { + controllerDiagramsToggle.SetActive(false); + } + if (hapticsToggle) + { + hapticsToggle.SetActive(false); + } + if (controlsDiagram && controlsSprite) + { + controlsDiagram.sprite = controlsSprite; + } + + overlayContainer.renderMode = RenderMode.ScreenSpaceOverlay; + subtitles.anchorMin = 0.5f * Vector2.right; + subtitles.anchorMax = 0.5f * Vector2.right; + subtitles.anchoredPosition = subtitlesYPosition * Vector2.up; + SetCrossHairVisible(true); + if (highlightControls != null) + { + highlightControls.enabled = false; + } + + // Hand controller adjustments + if (leftHandController) + { + leftHandController.gameObject.SetActive(false); + } + if (rightHandController) + { + rightHandController.enabled = false; + rightHandController.GetComponent().enabled = false; + } + } + + private void OnEnable() + { + playerMoveReference.action.Enable(); + } + + private void OnDisable() + { + playerMoveReference.action.Disable(); + } + + private void Update() + { + Vector2 xyMovement = playerMoveReference.action.ReadValue(); + this.transform.parent.position += movementSpeed * Time.deltaTime * ((xyMovement.x * this.transform.parent.right) + (xyMovement.y * this.transform.forward)); + } +#endif + + public void SetCrossHairColor(Color color) + { + crosshair.color = color; + } + + public void SetCrossHairFocused(bool focused) + { + crosshair.sprite = focused ? crosshairFocused : crosshairUnfocused; + } + + public void SetCrossHairVisible(bool visible) + { + crosshair.gameObject.SetActive(visible); + Cursor.visible = !visible; // If crosshair is not visible, cursor shows up, and vice versa + } +} diff --git a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/PCPortManager.cs.meta b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/PCPortManager.cs.meta new file mode 100644 index 00000000..55f56c09 --- /dev/null +++ b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/PCPortManager.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 37df982a4c367f94a90b899216ba62c1 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/PauseController.cs b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/PauseController.cs index aa87eaca..7aed43cc 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/PauseController.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/PauseController.cs @@ -50,15 +50,30 @@ public InputActionReference ToggleReference /// Set to reduce the visibility of the laser clipping through the menu /// [SerializeField] float reducedLaserSize; + private bool gamePaused; + public bool GamePaused + { + get + { + return gamePaused; + } + } + + private PCPortManager pcPortManager = null; private float laserSize; private GameObject[] disabledObjects; + private void OnEnable() { toggleReference.action.Enable(); toggleReference.action.started += Toggle; laserSize = laserLeft.localScale.y; gamePaused = false; +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + Cursor.lockState = CursorLockMode.Locked; + pcPortManager = this.GetComponent(); +#endif } private void Toggle(InputAction.CallbackContext ctx) @@ -81,7 +96,7 @@ private void Toggle(InputAction.CallbackContext ctx) } foreach (GameObject g in gameObjects) { - if (!g.CompareTag("Player")) + if (!g.CompareTag("Player") && !g.CompareTag("MainCamera")) { g.SetActive(gamePaused); } @@ -93,11 +108,26 @@ private void Toggle(InputAction.CallbackContext ctx) if (gamePaused) { uiContainer.transform.SetParent(transform.parent); +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + Cursor.lockState = CursorLockMode.None; + if (pcPortManager != null) + { + pcPortManager.SetCrossHairVisible(false); + } +#endif } else { uiContainer.transform.SetParent(mainCamera); uiContainer.transform.SetPositionAndRotation(mainCamera.position + mainCamera.forward * distanceFromCamera, mainCamera.rotation); +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + uiContainer.transform.SetPositionAndRotation((mainCamera.position + mainCamera.forward * distanceFromCamera) + pcPortManager.UiOffset, mainCamera.rotation); + Cursor.lockState = CursorLockMode.Locked; + if (pcPortManager != null) + { + pcPortManager.SetCrossHairVisible(true); + } +#endif } } private void OnDisable() diff --git a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/Player.prefab b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/Player.prefab index 17f7683c..e7834dc7 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/Player.prefab +++ b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/Player.prefab @@ -5761,7 +5761,7 @@ GameObject: - component: {fileID: 685732246657436347} m_Layer: 0 m_Name: Main Camera - m_TagString: Player + m_TagString: MainCamera m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 @@ -6894,6 +6894,7 @@ GameObject: - component: {fileID: 685732246913176618} - component: {fileID: 685732246913176616} - component: {fileID: 685732246913176623} + - component: {fileID: 7163099797126193470} m_Layer: 0 m_Name: Player m_TagString: Player @@ -7077,6 +7078,39 @@ AudioSource: m_PreInfinity: 2 m_PostInfinity: 2 m_RotationOrder: 4 +--- !u!114 &7163099797126193470 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 685732246913176612} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 37df982a4c367f94a90b899216ba62c1, type: 3} + m_Name: + m_EditorClassIdentifier: + uiScale: 0.003 + uiOffset: {x: 0, y: 0.2, z: 0} + subtitlesYPosition: 250 + cameraSens: 8 + movementSpeed: 2 + crosshairFocused: {fileID: 21300000, guid: dfd415eb9384d6646a8a90cfe97723c9, type: 3} + crosshairUnfocused: {fileID: 21300000, guid: 6af6f809a0a333341b98be8a0966fe04, type: 3} + uiContainer: {fileID: 685732245122185984} + overlayContainer: {fileID: 2571167984746233585} + subtitles: {fileID: 685732247222427487} + highlightControls: {fileID: 9126992730143753165} + crosshair: {fileID: 5986867858391797417} + mainCamera: {fileID: 685732246657436340} + leftHandController: {fileID: 685732247080002604} + rightHandController: {fileID: 2305387635105007749} + playerMoveReference: {fileID: 716363710692781835, guid: a54d6349e0e4d404fa09e1c0531de6d0, + type: 3} + controlsDiagram: {fileID: 685732245683075617} + controlsSprite: {fileID: 21300000, guid: a400201098f35d747aa913ce8db70e8d, type: 3} + controllerDiagramsToggle: {fileID: 7873133350137865055} + hapticsToggle: {fileID: 8727804351465435840} --- !u!1 &685732246929129159 GameObject: m_ObjectHideFlags: 0 @@ -10916,6 +10950,7 @@ RectTransform: m_LocalScale: {x: 0.0017, y: 0.0017, z: 0.0017} m_Children: - {fileID: 685732247222427487} + - {fileID: 6156035171191359476} m_Father: {fileID: 685732246657436341} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -11553,6 +11588,80 @@ Transform: m_Father: {fileID: 7147924655394277096} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7546381457632003851 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6156035171191359476} + - component: {fileID: 8836128392141177844} + - component: {fileID: 5986867858391797417} + m_Layer: 5 + m_Name: Crosshair + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &6156035171191359476 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7546381457632003851} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 735.29407} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3019361549208456322} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 16, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8836128392141177844 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7546381457632003851} + m_CullTransparentMesh: 0 +--- !u!114 &5986867858391797417 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7546381457632003851} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 6af6f809a0a333341b98be8a0966fe04, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!1 &7615509889688950092 GameObject: m_ObjectHideFlags: 0 @@ -12352,6 +12461,12 @@ RectTransform: type: 3} m_PrefabInstance: {fileID: 236777558859360308} m_PrefabAsset: {fileID: 0} +--- !u!1 &8727804351465435840 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 8815321555235773172, guid: 8933a80abf3d47840bf74b55e5cb8440, + type: 3} + m_PrefabInstance: {fileID: 236777558859360308} + m_PrefabAsset: {fileID: 0} --- !u!1001 &798064484593682296 PrefabInstance: m_ObjectHideFlags: 0 @@ -12469,6 +12584,46 @@ PrefabInstance: propertyPath: m_LocalEulerAnglesHint.z value: 0 objectReference: {fileID: 0} + - target: {fileID: 186757220003961112, guid: 9e0e318dfb7275d4cb7eb62ebc83153a, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 186757220003961112, guid: 9e0e318dfb7275d4cb7eb62ebc83153a, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 186757220003961112, guid: 9e0e318dfb7275d4cb7eb62ebc83153a, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 293.25 + objectReference: {fileID: 0} + - target: {fileID: 186757220003961112, guid: 9e0e318dfb7275d4cb7eb62ebc83153a, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -86 + objectReference: {fileID: 0} + - target: {fileID: 186757220653041201, guid: 9e0e318dfb7275d4cb7eb62ebc83153a, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 186757220653041201, guid: 9e0e318dfb7275d4cb7eb62ebc83153a, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 186757220653041201, guid: 9e0e318dfb7275d4cb7eb62ebc83153a, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 175 + objectReference: {fileID: 0} + - target: {fileID: 186757220653041201, guid: 9e0e318dfb7275d4cb7eb62ebc83153a, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -23 + objectReference: {fileID: 0} - target: {fileID: 186757220924144453, guid: 9e0e318dfb7275d4cb7eb62ebc83153a, type: 3} propertyPath: onCast.m_PersistentCalls.m_Calls.Array.data[0].m_Target @@ -12792,6 +12947,12 @@ PrefabInstance: objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 8933a80abf3d47840bf74b55e5cb8440, type: 3} +--- !u!1 &7993946801353570303 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 9109531743546758956, guid: 8933a80abf3d47840bf74b55e5cb8440, + type: 3} + m_PrefabInstance: {fileID: 1196755288602140883} + m_PrefabAsset: {fileID: 0} --- !u!114 &5447097636077338202 stripped MonoBehaviour: m_CorrespondingSourceObject: {fileID: 6560690124553789065, guid: 8933a80abf3d47840bf74b55e5cb8440, @@ -12804,12 +12965,6 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 8ecd0ed4efc22bf4a81db7ef1cf69eb4, type: 3} m_Name: m_EditorClassIdentifier: ---- !u!1 &7993946801353570303 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 9109531743546758956, guid: 8933a80abf3d47840bf74b55e5cb8440, - type: 3} - m_PrefabInstance: {fileID: 1196755288602140883} - m_PrefabAsset: {fileID: 0} --- !u!224 &1840689025993251383 stripped RectTransform: m_CorrespondingSourceObject: {fileID: 653244539434892004, guid: 8933a80abf3d47840bf74b55e5cb8440, @@ -13235,6 +13390,12 @@ PrefabInstance: objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 8933a80abf3d47840bf74b55e5cb8440, type: 3} +--- !u!224 &2162967367236797263 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 653244539434892004, guid: 8933a80abf3d47840bf74b55e5cb8440, + type: 3} + m_PrefabInstance: {fileID: 1663144578784672171} + m_PrefabAsset: {fileID: 0} --- !u!114 &5483393982188922658 stripped MonoBehaviour: m_CorrespondingSourceObject: {fileID: 6560690124553789065, guid: 8933a80abf3d47840bf74b55e5cb8440, @@ -13247,9 +13408,9 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 8ecd0ed4efc22bf4a81db7ef1cf69eb4, type: 3} m_Name: m_EditorClassIdentifier: ---- !u!224 &2162967367236797263 stripped -RectTransform: - m_CorrespondingSourceObject: {fileID: 653244539434892004, guid: 8933a80abf3d47840bf74b55e5cb8440, +--- !u!1 &7873133350137865055 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 8815321555235773172, guid: 8933a80abf3d47840bf74b55e5cb8440, type: 3} m_PrefabInstance: {fileID: 1663144578784672171} m_PrefabAsset: {fileID: 0} @@ -13260,6 +13421,26 @@ PrefabInstance: m_Modification: m_TransformParent: {fileID: 685732245965037790} m_Modifications: + - target: {fileID: 8485868696862095129, guid: 17be0a47712d0eb42ade2520c33e6508, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8485868696862095129, guid: 17be0a47712d0eb42ade2520c33e6508, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8485868696862095129, guid: 17be0a47712d0eb42ade2520c33e6508, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 293.25 + objectReference: {fileID: 0} + - target: {fileID: 8485868696862095129, guid: 17be0a47712d0eb42ade2520c33e6508, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -86 + objectReference: {fileID: 0} - target: {fileID: 8485868696869892709, guid: 17be0a47712d0eb42ade2520c33e6508, type: 3} propertyPath: m_Name @@ -13380,17 +13561,37 @@ PrefabInstance: propertyPath: onCast.m_PersistentCalls.m_Calls.Array.data[0].m_Target value: objectReference: {fileID: 685732245830625035} + - target: {fileID: 8485868698333259824, guid: 17be0a47712d0eb42ade2520c33e6508, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8485868698333259824, guid: 17be0a47712d0eb42ade2520c33e6508, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8485868698333259824, guid: 17be0a47712d0eb42ade2520c33e6508, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 175 + objectReference: {fileID: 0} + - target: {fileID: 8485868698333259824, guid: 17be0a47712d0eb42ade2520c33e6508, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -23 + objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 17be0a47712d0eb42ade2520c33e6508, type: 3} ---- !u!224 &691675472929451400 stripped +--- !u!224 &691675472921389067 stripped RectTransform: - m_CorrespondingSourceObject: {fileID: 8485868696869892762, guid: 17be0a47712d0eb42ade2520c33e6508, + m_CorrespondingSourceObject: {fileID: 8485868696862095129, guid: 17be0a47712d0eb42ade2520c33e6508, type: 3} m_PrefabInstance: {fileID: 8960632408244625170} m_PrefabAsset: {fileID: 0} ---- !u!224 &691675472921389067 stripped +--- !u!224 &691675472929451400 stripped RectTransform: - m_CorrespondingSourceObject: {fileID: 8485868696862095129, guid: 17be0a47712d0eb42ade2520c33e6508, + m_CorrespondingSourceObject: {fileID: 8485868696869892762, guid: 17be0a47712d0eb42ade2520c33e6508, type: 3} m_PrefabInstance: {fileID: 8960632408244625170} m_PrefabAsset: {fileID: 0} diff --git a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/StartMenuManager.cs b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/StartMenuManager.cs index d05001ad..8dea32d4 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/StartMenuManager.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/StartMenuManager.cs @@ -151,14 +151,14 @@ private IEnumerator Start() private void Update() { - if (Camera.current != null && lastCameraPosition != Camera.current.transform.position) + if (Camera.main != null && lastCameraPosition != Camera.main.transform.position) { - lastCameraPosition = Camera.current.transform.position; + lastCameraPosition = Camera.main.transform.position; foreach (Transform menuComponent in menuComponents) { if (menuComponent != fullMenu.transform) { - menuComponent.LookAt(Camera.current.transform.position); + menuComponent.LookAt(Camera.main.transform.position); menuComponent.Rotate(Vector3.up * 180.0f); } @@ -168,9 +168,9 @@ private void Update() private IEnumerator DisablePause() { - yield return new WaitUntil(() => Camera.current != null); + yield return new WaitUntil(() => Camera.main != null); - player = Camera.current.transform.parent.gameObject; + player = Camera.main.transform.parent.gameObject; player.GetComponentInChildren(true).UpdateCurrentObjective(defaultObjective); player.GetComponent().ToggleReference.action.Disable(); } diff --git a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/TutorialManager.cs b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/TutorialManager.cs index ffd2b7f4..254ec245 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/TutorialManager.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/TutorialManager.cs @@ -32,6 +32,12 @@ public class TutorialManager : MonoBehaviour [SerializeField] private Sprite pushPullSprite; [SerializeField] private Sprite overSprite; [SerializeField] private Sprite menuSprite; + [Header("PC Port Controls Graphics")] + [SerializeField] private Sprite pcTeleportationSprite; + [SerializeField] private Sprite pcTurnSprite; + [SerializeField] private Sprite pcGrabSprite; + [SerializeField] private Sprite pcPushPullSprite; + [SerializeField] private Sprite pcMenuSprite; [Header("Instructions Text")] [SerializeField] private LocalizedString teleportationText; [SerializeField] private LocalizedString turnText; @@ -47,11 +53,12 @@ public class TutorialManager : MonoBehaviour private string overString; private string menuString; private string openMenuString; - + [Header("PC Port Instructions Text")] + [SerializeField] private LocalizedString pcTurnText; // Cache private TMP_Text instructions = null; - private Camera currentCamera = null; + private Camera mainCamera = null; private GameObject player = null; private bool pushed = false, pulled = false; private GameObject menus = null; @@ -60,6 +67,10 @@ public class TutorialManager : MonoBehaviour private void OnEnable() { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + // Replace instruction text + turnText = pcTurnText; +#endif teleportationText.StringChanged += UpdateTeleportationString; turnText.StringChanged += UpdateTurnString; grabText.StringChanged += UpdateGrabString; @@ -100,27 +111,36 @@ private IEnumerator Start() teleportZone3.SetActive(false); SceneUIContainer.SetActive(false); +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + // Replace controller images + teleportationSprite = pcTeleportationSprite; + turnSprite = pcTurnSprite; + grabSprite = pcGrabSprite; + pushPullSprite = pcPushPullSprite; + menuSprite = pcMenuSprite; +#endif + yield return WaitForPlayerSpawn(); StartTutorial(); } private void Update() { - if (currentCamera != null) + if (mainCamera != null) { - this.transform.LookAt(currentCamera.transform); + this.transform.LookAt(mainCamera.transform); this.transform.Rotate(0, 180, 0); } } IEnumerator WaitForPlayerSpawn() { - yield return new WaitUntil(() => Camera.current != null); + yield return new WaitUntil(() => Camera.main != null); // Start menu initialization - currentCamera = Camera.current; - this.GetComponent().worldCamera = currentCamera; - player = currentCamera.transform.parent.gameObject; + mainCamera = Camera.main; + this.GetComponent().worldCamera = mainCamera; + player = mainCamera.transform.parent.gameObject; // player.GetComponent().enabled = false; // This should disable pausing, but it currently soft locks the player from continueing // TODO: Disable the Oculus pause to bring up the UI menu @@ -227,7 +247,11 @@ IEnumerator WaitForTeleport() IEnumerator WaitForGrab() { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + yield return new WaitUntil(() => massSphere.transform.parent != null && massSphere.transform.parent.GetComponent() != null); +#else yield return new WaitUntil(() => massSphere.transform.parent != null && massSphere.transform.parent.GetComponent() != null); +#endif // Push and pull tutorial controlsImage.sprite = pushPullSprite; @@ -269,6 +293,17 @@ IEnumerator WaitForPushPull() IEnumerator WaitForMenuPopup() { + // To ensure subtitles show up during the corresponding tutorial segment + GameObject subtitleObject = player.GetComponent().SubtitleObject; + if (subtitleObject != null) + { + subtitleObject.tag = "Player"; + foreach (Transform child in subtitleObject.transform) + { + child.tag = "Player"; + } + } + StartCoroutine(WaitForControlsScreenSelection()); yield break; } @@ -328,26 +363,47 @@ IEnumerator WaitForSceneSelection() instructions.text = overString; SceneUIContainer.SetActive(true); + // To ensure subtitles no longer show up when the simulation is paused + GameObject subtitleObject = player.GetComponent().SubtitleObject; + if (subtitleObject != null) + { + subtitleObject.tag = "Untagged"; + foreach (Transform child in subtitleObject.transform) + { + child.tag = "Untagged"; + } + } + yield break; } private void Pushed(InputAction.CallbackContext obj) { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + if (massSphere.activeInHierarchy && massSphere.transform.parent != null && massSphere.transform.parent.GetComponent() != null) + { +#else if (massSphere.activeInHierarchy && massSphere.transform.parent != null && massSphere.transform.parent.GetComponent() != null) { +#endif pushed = true; } } private void Pulled(InputAction.CallbackContext obj) { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + if (massSphere.activeInHierarchy && massSphere.transform.parent != null && massSphere.transform.parent.GetComponent() != null) + { +#else if (massSphere.activeInHierarchy && massSphere.transform.parent != null && massSphere.transform.parent.GetComponent() != null) { +#endif pulled = true; } } - #region Localization helper methods +#region Localization helper methods // TODO: Investigate if there is a way for only one function to be made that can be applied to all private void UpdateTeleportationString(string s) { @@ -460,5 +516,5 @@ private void UpdateOpenMenuString(string s) } } } - #endregion +#endregion } diff --git a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/XRHardwareController.cs b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/XRHardwareController.cs index 410de8e2..856996b9 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/InputAssets/XRHardwareController.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/InputAssets/XRHardwareController.cs @@ -48,6 +48,8 @@ public class XRHardwareController : MonoBehaviour /// Public property that exposes flag for haptics to UI events. /// public bool HapticsEnabled { get { return hapticsEnabled; } set { hapticsEnabled = value; } } + private PCPortManager pcPortManager = null; + private PauseController pauseController = null; /// /// Assigns input actions and locates the connected hardware device associated with this instance /// @@ -121,7 +123,32 @@ void LateUpdate() { if (hardwareType == Hardware.Headset) //Only the headset will update in LateUpdate() { +#if UNITY_STANDALONE || (UNITY_EDITOR && IS_NOT_USING_OCULUS_LINK) + if (pauseController == null) + { + pauseController = this.transform.GetComponentInParent(); + } + + if (!pauseController.GamePaused) + { + if (pcPortManager == null) + { + pcPortManager = this.transform.GetComponentInParent(); + } + + Vector2 mouseDelta = Mouse.current.delta.ReadValue(); + float rotationX = mouseDelta.y * Time.deltaTime * pcPortManager.CameraSens; + float rotationY = mouseDelta.x * Time.deltaTime * pcPortManager.CameraSens; + this.transform.Rotate(Vector3.left, rotationX); // "looking up and down" + + if (pcPortManager.transform.parent) + { + pcPortManager.transform.parent.Rotate(Vector3.up, rotationY); // "looking left and right" + } + } +#else UpdateHardware(); +#endif } } /// diff --git a/POINT-VR-Chapter-1/Assets/POINT/Localization/Translations.csv b/POINT-VR-Chapter-1/Assets/POINT/Localization/Translations.csv index ee013e3b..466fa164 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Localization/Translations.csv +++ b/POINT-VR-Chapter-1/Assets/POINT/Localization/Translations.csv @@ -34,6 +34,7 @@ OBJECTIVE_EXPLORE,Explore how matter warps space and time.,Investiga cómo la ma INSTRUCTIONS_PRESS_FOR,Press for,Pulsa para TUTORIAL_TELEPORT,Try pointing at the floor and teleporting to the rings in the distance!,Trata de apuntar al piso y teletransportarte a los anillos en la distancia! TUTORIAL_TURN,"In addition to turning your head, you can rotate your view by using the joysticks. Try it now.","Además de girar tu cabeza, puedes girar tu mirada con los joysticks. Lo trata ahora." +TUTORIAL_TURN_PC,You can rotate your view by using the mouse. Try it now.,Puedes girar tu mirada con el mouse. Lo trata ahora. TUTORIAL_GRAB,"This sphere is a grabbable object, try picking it up.","Esta esfera es algo que puedes coger, trata de recogerla. " TUTORIAL_PUSH_PULL,You can also pull and push objects when grabbing them.,También puedes tirar y empujar cosas cuando los estás cogiendo. TUTORIAL_OVER,"The tutorial is now over, please tell the instructor. ","El tutorial ha terminado, por favor informa el instructor." diff --git a/POINT-VR-Chapter-1/Assets/POINT/Localization/UILocalization Shared Data.asset b/POINT-VR-Chapter-1/Assets/POINT/Localization/UILocalization Shared Data.asset index 0f87ea23..3a88fbd4 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Localization/UILocalization Shared Data.asset +++ b/POINT-VR-Chapter-1/Assets/POINT/Localization/UILocalization Shared Data.asset @@ -155,6 +155,10 @@ MonoBehaviour: m_Key: TUTORIAL_TURN m_Metadata: m_Items: [] + - m_Id: 81435950286147584 + m_Key: TUTORIAL_TURN_PC + m_Metadata: + m_Items: [] - m_Id: 13443997431271426 m_Key: TUTORIAL_GRAB m_Metadata: diff --git a/POINT-VR-Chapter-1/Assets/POINT/Localization/UILocalization_en.asset b/POINT-VR-Chapter-1/Assets/POINT/Localization/UILocalization_en.asset index 41d44c22..18f7d66d 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Localization/UILocalization_en.asset +++ b/POINT-VR-Chapter-1/Assets/POINT/Localization/UILocalization_en.asset @@ -239,13 +239,14 @@ MonoBehaviour: - m_Id: 13788494816120832 m_Localized: "Kristen Schumacher would like to acknowledge that this material is based upon work supported by the National Science Foundation Graduate Research - Fellowship Program under Grant No. DGE \u2013 1746047.\n\nNCSA headsets: Virtual - reality headsets were provided in part by Nicol\xE1s Yunes through the National - Science Foundation (NSF) Grant No. PHY-2207650 and in part by the Dark Energy - Survey project. The Dark Energy Survey project is supported by National Science - Foundation grant AST- 1536171. Any opinions, findings, conclusions or recommendations - expressed in this material are those of the developers and do not necessarily - reflect the views of the National Science Foundation." + Fellowship Program under Grant No. DGE \u2013 1746047.\r\n\r\nNCSA headsets: + Virtual reality headsets were provided in part by Nicol\xE1s Yunes through + the National Science Foundation (NSF) Grant No. PHY-2207650 and in part by + the Dark Energy Survey project. The Dark Energy Survey project is supported + by National Science Foundation grant AST- 1536171. Any opinions, findings, + conclusions or recommendations expressed in this material are those of the + developers and do not necessarily reflect the views of the National Science + Foundation." m_Metadata: m_Items: [] - m_Id: 13788494849675264 @@ -335,6 +336,10 @@ MonoBehaviour: m_Localized: Congratulations! The simulation is over. m_Metadata: m_Items: [] + - m_Id: 81435950286147584 + m_Localized: You can rotate your view by using the mouse. Try it now. + m_Metadata: + m_Items: [] references: version: 1 00000000: diff --git a/POINT-VR-Chapter-1/Assets/POINT/Localization/UILocalization_es.asset b/POINT-VR-Chapter-1/Assets/POINT/Localization/UILocalization_es.asset index 1e29671a..229da40b 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Localization/UILocalization_es.asset +++ b/POINT-VR-Chapter-1/Assets/POINT/Localization/UILocalization_es.asset @@ -242,7 +242,7 @@ MonoBehaviour: m_Localized: "A Kristen Schumacher le gustar\xEDa reconocer que este material se basa en obras apoyadas por el Programa de Becas para la Investigaci\xF3n Graduada de la Fundaci\xF3n Nacional para la Ciencia, bajo la beca n\xFAmero - DGE \u2013 1746047.\n\nLos auriculares de NCSA: Los auriculares de realidad + DGE \u2013 1746047.\r\n\r\nLos auriculares de NCSA: Los auriculares de realidad virtual fueron prove\xEDdos en parte por Nicol\xE1s Yunes a trav\xE9s de la beca de la Fundaci\xF3n Nacional para la Ciencia n\xFAmero PHY-2207650 y en parte por el proyecto El Mapeado para la Energ\xEDa Oscura. El Mapeado para @@ -340,6 +340,10 @@ MonoBehaviour: m_Localized: "\xA1Enhorabuena! La simulaci\xF3n ha terminado." m_Metadata: m_Items: [] + - m_Id: 81435950286147584 + m_Localized: Puedes girar tu mirada con el mouse. Lo trata ahora. + m_Metadata: + m_Items: [] references: version: 1 00000000: diff --git a/POINT-VR-Chapter-1/Assets/POINT/Scenes/Chapter1/Tutorial.unity b/POINT-VR-Chapter-1/Assets/POINT/Scenes/Chapter1/Tutorial.unity index 80b31ab6..a78820ca 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Scenes/Chapter1/Tutorial.unity +++ b/POINT-VR-Chapter-1/Assets/POINT/Scenes/Chapter1/Tutorial.unity @@ -1301,6 +1301,12 @@ MonoBehaviour: pushPullSprite: {fileID: 21300000, guid: 2794dcc9276180f458bd4f06cb95a104, type: 3} overSprite: {fileID: 0} menuSprite: {fileID: 21300000, guid: 5bce63427ab351e4e9b962dfbe84291f, type: 3} + pcTeleportationSprite: {fileID: 21300000, guid: b2e063dfe2b69fb4893ed3017c0f6fc8, + type: 3} + pcTurnSprite: {fileID: 21300000, guid: 5a61af3d08cea6446a95acb44a009d24, type: 3} + pcGrabSprite: {fileID: 21300000, guid: 5cc0ec55a5281584287de01f5e475294, type: 3} + pcPushPullSprite: {fileID: 21300000, guid: 855f2f320bf56c347a67b1809b3923b4, type: 3} + pcMenuSprite: {fileID: 21300000, guid: 0ae9fe23a38e39f4fa6fd02e00d8d49c, type: 3} teleportationText: m_TableReference: m_TableCollectionName: GUID:ea97502b36f6cd149b6a571be6e2583f @@ -1364,6 +1370,15 @@ MonoBehaviour: m_FallbackState: 0 m_WaitForCompletion: 0 m_LocalVariables: [] + pcTurnText: + m_TableReference: + m_TableCollectionName: GUID:ea97502b36f6cd149b6a571be6e2583f + m_TableEntryReference: + m_KeyId: 81435950286147584 + m_Key: + m_FallbackState: 0 + m_WaitForCompletion: 0 + m_LocalVariables: [] references: version: 1 --- !u!114 &1270109314 diff --git a/POINT-VR-Chapter-1/Assets/POINT/Scenes/Conference Demos/ConfDemo_part1_one_mass_y_manager.cs b/POINT-VR-Chapter-1/Assets/POINT/Scenes/Conference Demos/ConfDemo_part1_one_mass_y_manager.cs index 0e1026f6..f1041514 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Scenes/Conference Demos/ConfDemo_part1_one_mass_y_manager.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/Scenes/Conference Demos/ConfDemo_part1_one_mass_y_manager.cs @@ -27,7 +27,7 @@ public class ConfDemo_part1_one_mass_y_manager : MonoBehaviour private string objective4string; // Cache - private Camera currentCamera = null; + private Camera mainCamera = null; private GameObject player = null; private GameObject menus = null; private GameObject buttons = null; @@ -48,11 +48,11 @@ private void Start() private IEnumerator WaitForPlayerSpawn() { - yield return new WaitUntil(() => Camera.current != null); + yield return new WaitUntil(() => Camera.main != null); // Start menu initialization - currentCamera = Camera.current; - player = currentCamera.transform.parent.gameObject; + mainCamera = Camera.main; + player = mainCamera.transform.parent.gameObject; StartCoroutine(StartScene()); } diff --git a/POINT-VR-Chapter-1/Assets/POINT/Scenes/Conference Demos/ConfDemo_part2_two_masses.cs b/POINT-VR-Chapter-1/Assets/POINT/Scenes/Conference Demos/ConfDemo_part2_two_masses.cs index 9012dcc8..4b32ca2b 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Scenes/Conference Demos/ConfDemo_part2_two_masses.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/Scenes/Conference Demos/ConfDemo_part2_two_masses.cs @@ -22,7 +22,7 @@ public class ConfDemo_part2_two_masses : MonoBehaviour // Cache private TMP_Text instructions = null; - private Camera currentCamera = null; + private Camera mainCamera = null; private GameObject player = null; private GameObject menus = null; private GameObject buttons = null; @@ -46,11 +46,11 @@ private void Update() IEnumerator WaitForPlayerSpawn() { - yield return new WaitUntil(() => Camera.current != null); + yield return new WaitUntil(() => Camera.main != null); // Start menu initialization - currentCamera = Camera.current; - player = currentCamera.transform.parent.gameObject; + mainCamera = Camera.main; + player = mainCamera.transform.parent.gameObject; StartCoroutine(StartScene()); } diff --git a/POINT-VR-Chapter-1/Assets/POINT/Scenes/Conference Demos/ConfDemo_part3_ranking_masses.cs b/POINT-VR-Chapter-1/Assets/POINT/Scenes/Conference Demos/ConfDemo_part3_ranking_masses.cs index b0eca58e..baf0bee0 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Scenes/Conference Demos/ConfDemo_part3_ranking_masses.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/Scenes/Conference Demos/ConfDemo_part3_ranking_masses.cs @@ -22,7 +22,7 @@ public class ConfDemo_part3_ranking_masses : MonoBehaviour // Cache private TMP_Text instructions = null; - private Camera currentCamera = null; + private Camera mainCamera = null; private GameObject player = null; private GameObject menus = null; private GameObject buttons = null; @@ -40,12 +40,12 @@ private void Update() IEnumerator WaitForPlayerSpawn() { - yield return new WaitUntil(() => Camera.current != null); + yield return new WaitUntil(() => Camera.main != null); // Start menu initialization - currentCamera = Camera.current; - //this.GetComponent().worldCamera = currentCamera; - player = currentCamera.transform.parent.gameObject; + mainCamera = Camera.main; + //this.GetComponent().worldCamera = mainCamera; + player = mainCamera.transform.parent.gameObject; StartCoroutine(StartScene()); yield break; diff --git a/POINT-VR-Chapter-1/Assets/POINT/Time/Clock.cs b/POINT-VR-Chapter-1/Assets/POINT/Time/Clock.cs index 647789b9..e3a37786 100644 --- a/POINT-VR-Chapter-1/Assets/POINT/Time/Clock.cs +++ b/POINT-VR-Chapter-1/Assets/POINT/Time/Clock.cs @@ -97,8 +97,8 @@ void Update() IEnumerator WaitForPlayerSpawn() { - yield return new WaitUntil(() => Camera.current != null); - Camera.current.transform.GetComponentInChildren(true).AddToFunctionalAudio(audioSource); // add clock audio to functional audio for sliders + yield return new WaitUntil(() => Camera.main != null); + Camera.main.transform.GetComponentInChildren(true).AddToFunctionalAudio(audioSource); // add clock audio to functional audio for sliders yield break; } } diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC.meta b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC.meta new file mode 100644 index 00000000..a58bd4c5 --- /dev/null +++ b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1c7327c953e03874f93966cbd31c410f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Full_Zoom_DarkMode.png b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Full_Zoom_DarkMode.png new file mode 100644 index 00000000..fa815d1f Binary files /dev/null and b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Full_Zoom_DarkMode.png differ diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Full_Zoom_DarkMode.png.meta b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Full_Zoom_DarkMode.png.meta new file mode 100644 index 00000000..df7c808d --- /dev/null +++ b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Full_Zoom_DarkMode.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: a400201098f35d747aa913ce8db70e8d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_GrabPushPull_Zoom_DarkMode.png b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_GrabPushPull_Zoom_DarkMode.png new file mode 100644 index 00000000..1238033e Binary files /dev/null and b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_GrabPushPull_Zoom_DarkMode.png differ diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_GrabPushPull_Zoom_DarkMode.png.meta b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_GrabPushPull_Zoom_DarkMode.png.meta new file mode 100644 index 00000000..4c9625b5 --- /dev/null +++ b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_GrabPushPull_Zoom_DarkMode.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 855f2f320bf56c347a67b1809b3923b4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Grab_Zoom_DarkMode.png b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Grab_Zoom_DarkMode.png new file mode 100644 index 00000000..9f1e0fc1 Binary files /dev/null and b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Grab_Zoom_DarkMode.png differ diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Grab_Zoom_DarkMode.png.meta b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Grab_Zoom_DarkMode.png.meta new file mode 100644 index 00000000..6b4ddb87 --- /dev/null +++ b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Grab_Zoom_DarkMode.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 5cc0ec55a5281584287de01f5e475294 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_LookAround_Zoom_DarkMode.png b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_LookAround_Zoom_DarkMode.png new file mode 100644 index 00000000..c6aa13ce Binary files /dev/null and b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_LookAround_Zoom_DarkMode.png differ diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_LookAround_Zoom_DarkMode.png.meta b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_LookAround_Zoom_DarkMode.png.meta new file mode 100644 index 00000000..cb353354 --- /dev/null +++ b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_LookAround_Zoom_DarkMode.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 5a61af3d08cea6446a95acb44a009d24 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Pause_Zoom_DarkMode.png b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Pause_Zoom_DarkMode.png new file mode 100644 index 00000000..90efa608 Binary files /dev/null and b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Pause_Zoom_DarkMode.png differ diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Pause_Zoom_DarkMode.png.meta b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Pause_Zoom_DarkMode.png.meta new file mode 100644 index 00000000..4d3945b5 --- /dev/null +++ b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_Pause_Zoom_DarkMode.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 0ae9fe23a38e39f4fa6fd02e00d8d49c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_TeleportInteractMove_Zoom_DarkMode.png b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_TeleportInteractMove_Zoom_DarkMode.png new file mode 100644 index 00000000..086e138f Binary files /dev/null and b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_TeleportInteractMove_Zoom_DarkMode.png differ diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_TeleportInteractMove_Zoom_DarkMode.png.meta b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_TeleportInteractMove_Zoom_DarkMode.png.meta new file mode 100644 index 00000000..f1c97fa5 --- /dev/null +++ b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/Sprites/InGameControls/PC/PC_Controls_TeleportInteractMove_Zoom_DarkMode.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: b2e063dfe2b69fb4893ed3017c0f6fc8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/crosshair_default.png b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/crosshair_default.png new file mode 100644 index 00000000..66c48e92 Binary files /dev/null and b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/crosshair_default.png differ diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/crosshair_default.png.meta b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/crosshair_default.png.meta new file mode 100644 index 00000000..27f64402 --- /dev/null +++ b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/crosshair_default.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 6af6f809a0a333341b98be8a0966fe04 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 64 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 64 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 64 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/crosshair_focus.png b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/crosshair_focus.png new file mode 100644 index 00000000..7565a81d Binary files /dev/null and b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/crosshair_focus.png differ diff --git a/POINT-VR-Chapter-1/Assets/POINT/UIAssets/crosshair_focus.png.meta b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/crosshair_focus.png.meta new file mode 100644 index 00000000..6c73e10e --- /dev/null +++ b/POINT-VR-Chapter-1/Assets/POINT/UIAssets/crosshair_focus.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: dfd415eb9384d6646a8a90cfe97723c9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 64 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 64 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 64 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime.exe b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime.exe new file mode 100644 index 00000000..7848c0bc Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime.exe differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Assembly-CSharp.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Assembly-CSharp.dll new file mode 100644 index 00000000..7ab775f7 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Assembly-CSharp.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Mono.Security.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Mono.Security.dll new file mode 100644 index 00000000..a9377a7a Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Mono.Security.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Newtonsoft.Json.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Newtonsoft.Json.dll new file mode 100644 index 00000000..66300631 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Newtonsoft.Json.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.ComponentModel.Composition.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.ComponentModel.Composition.dll new file mode 100644 index 00000000..0f6c13a1 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.ComponentModel.Composition.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Configuration.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Configuration.dll new file mode 100644 index 00000000..b70d2860 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Configuration.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Core.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Core.dll new file mode 100644 index 00000000..14abc641 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Core.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Data.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Data.dll new file mode 100644 index 00000000..757cc1f2 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Data.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Diagnostics.StackTrace.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Diagnostics.StackTrace.dll new file mode 100644 index 00000000..a9bdde43 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Diagnostics.StackTrace.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Drawing.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Drawing.dll new file mode 100644 index 00000000..52c49a6d Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Drawing.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.EnterpriseServices.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.EnterpriseServices.dll new file mode 100644 index 00000000..2d020c4d Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.EnterpriseServices.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Globalization.Extensions.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Globalization.Extensions.dll new file mode 100644 index 00000000..c5a425f7 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Globalization.Extensions.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.IO.Compression.FileSystem.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.IO.Compression.FileSystem.dll new file mode 100644 index 00000000..92feb673 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.IO.Compression.FileSystem.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.IO.Compression.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.IO.Compression.dll new file mode 100644 index 00000000..8e3b271a Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.IO.Compression.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Net.Http.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Net.Http.dll new file mode 100644 index 00000000..b613c07f Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Net.Http.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Numerics.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Numerics.dll new file mode 100644 index 00000000..bc957a74 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Numerics.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Runtime.Serialization.Xml.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Runtime.Serialization.Xml.dll new file mode 100644 index 00000000..c85de35b Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Runtime.Serialization.Xml.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Runtime.Serialization.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Runtime.Serialization.dll new file mode 100644 index 00000000..e9851b7d Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Runtime.Serialization.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.ServiceModel.Internals.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.ServiceModel.Internals.dll new file mode 100644 index 00000000..7c9e4f98 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.ServiceModel.Internals.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Transactions.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Transactions.dll new file mode 100644 index 00000000..618d4e8d Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Transactions.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Xml.Linq.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Xml.Linq.dll new file mode 100644 index 00000000..3b652f70 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Xml.Linq.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Xml.XPath.XDocument.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Xml.XPath.XDocument.dll new file mode 100644 index 00000000..b61d9640 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Xml.XPath.XDocument.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Xml.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Xml.dll new file mode 100644 index 00000000..3e0b8a25 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.Xml.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.dll new file mode 100644 index 00000000..5a08eeaf Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/System.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Addressables.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Addressables.dll new file mode 100644 index 00000000..b0e87f74 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Addressables.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.InputSystem.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.InputSystem.dll new file mode 100644 index 00000000..ece45a74 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.InputSystem.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.InternalAPIEngineBridge.013.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.InternalAPIEngineBridge.013.dll new file mode 100644 index 00000000..cb8f1aea Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.InternalAPIEngineBridge.013.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Localization.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Localization.dll new file mode 100644 index 00000000..5efdba34 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Localization.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.Csg.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.Csg.dll new file mode 100644 index 00000000..4996e68c Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.Csg.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.KdTree.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.KdTree.dll new file mode 100644 index 00000000..beebadd4 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.KdTree.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.Poly2Tri.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.Poly2Tri.dll new file mode 100644 index 00000000..4d7631a8 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.Poly2Tri.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.Stl.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.Stl.dll new file mode 100644 index 00000000..4c852174 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.Stl.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.dll new file mode 100644 index 00000000..1c22234b Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ProBuilder.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Recorder.Base.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Recorder.Base.dll new file mode 100644 index 00000000..000abfd3 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Recorder.Base.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Recorder.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Recorder.dll new file mode 100644 index 00000000..f69aac45 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Recorder.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ResourceManager.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ResourceManager.dll new file mode 100644 index 00000000..e4459570 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ResourceManager.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ScriptableBuildPipeline.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ScriptableBuildPipeline.dll new file mode 100644 index 00000000..5300452c Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.ScriptableBuildPipeline.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Subsystem.Registration.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Subsystem.Registration.dll new file mode 100644 index 00000000..2851d04e Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Subsystem.Registration.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.TextMeshPro.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.TextMeshPro.dll new file mode 100644 index 00000000..b021a66a Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.TextMeshPro.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Timeline.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Timeline.dll new file mode 100644 index 00000000..de3ee6f7 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.Timeline.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.ARSubsystems.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.ARSubsystems.dll new file mode 100644 index 00000000..f72369c3 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.ARSubsystems.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.InteractionSubsystems.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.InteractionSubsystems.dll new file mode 100644 index 00000000..d250ceff Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.InteractionSubsystems.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.Management.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.Management.dll new file mode 100644 index 00000000..8c7ffcc2 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.Management.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.Oculus.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.Oculus.dll new file mode 100644 index 00000000..45a7ce11 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.Oculus.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.WindowsMixedReality.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.WindowsMixedReality.dll new file mode 100644 index 00000000..b40201d9 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/Unity.XR.WindowsMixedReality.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AIModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AIModule.dll new file mode 100644 index 00000000..7e33cda4 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AIModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ARModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ARModule.dll new file mode 100644 index 00000000..b7b2e9a0 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ARModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AccessibilityModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AccessibilityModule.dll new file mode 100644 index 00000000..a8bc3687 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AccessibilityModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AndroidJNIModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AndroidJNIModule.dll new file mode 100644 index 00000000..a8ca102c Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AndroidJNIModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AnimationModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AnimationModule.dll new file mode 100644 index 00000000..34d5ba11 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AnimationModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AssetBundleModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AssetBundleModule.dll new file mode 100644 index 00000000..40f88fa0 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AssetBundleModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AudioModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AudioModule.dll new file mode 100644 index 00000000..b4f917ef Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.AudioModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ClothModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ClothModule.dll new file mode 100644 index 00000000..f8920144 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ClothModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ClusterInputModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ClusterInputModule.dll new file mode 100644 index 00000000..3ddbea12 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ClusterInputModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ClusterRendererModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ClusterRendererModule.dll new file mode 100644 index 00000000..183f91a3 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ClusterRendererModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.CoreModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.CoreModule.dll new file mode 100644 index 00000000..c7c8b105 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.CoreModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.CrashReportingModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.CrashReportingModule.dll new file mode 100644 index 00000000..2370bc2b Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.CrashReportingModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.DSPGraphModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.DSPGraphModule.dll new file mode 100644 index 00000000..a56ac008 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.DSPGraphModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.DirectorModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.DirectorModule.dll new file mode 100644 index 00000000..10fe1f86 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.DirectorModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.GameCenterModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.GameCenterModule.dll new file mode 100644 index 00000000..fdf3f46d Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.GameCenterModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.GridModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.GridModule.dll new file mode 100644 index 00000000..ad6b7a0b Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.GridModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.HotReloadModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.HotReloadModule.dll new file mode 100644 index 00000000..27c2c2f7 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.HotReloadModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.IMGUIModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.IMGUIModule.dll new file mode 100644 index 00000000..154361b2 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.IMGUIModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ImageConversionModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ImageConversionModule.dll new file mode 100644 index 00000000..371d76a0 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ImageConversionModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.InputLegacyModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.InputLegacyModule.dll new file mode 100644 index 00000000..f193a42d Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.InputLegacyModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.InputModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.InputModule.dll new file mode 100644 index 00000000..ca01fe8f Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.InputModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.JSONSerializeModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.JSONSerializeModule.dll new file mode 100644 index 00000000..5c3c387f Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.JSONSerializeModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.LocalizationModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.LocalizationModule.dll new file mode 100644 index 00000000..522bcfbb Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.LocalizationModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ParticleSystemModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ParticleSystemModule.dll new file mode 100644 index 00000000..94c4fc1a Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ParticleSystemModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.PerformanceReportingModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.PerformanceReportingModule.dll new file mode 100644 index 00000000..a9ffe941 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.PerformanceReportingModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.Physics2DModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.Physics2DModule.dll new file mode 100644 index 00000000..107ddb6f Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.Physics2DModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.PhysicsModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.PhysicsModule.dll new file mode 100644 index 00000000..1cd1e57c Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.PhysicsModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ProfilerModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ProfilerModule.dll new file mode 100644 index 00000000..9a20306c Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ProfilerModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ScreenCaptureModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ScreenCaptureModule.dll new file mode 100644 index 00000000..6423a265 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.ScreenCaptureModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SharedInternalsModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SharedInternalsModule.dll new file mode 100644 index 00000000..b5eda932 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SharedInternalsModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SpatialTracking.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SpatialTracking.dll new file mode 100644 index 00000000..372d32c3 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SpatialTracking.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SpriteMaskModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SpriteMaskModule.dll new file mode 100644 index 00000000..359297a7 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SpriteMaskModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SpriteShapeModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SpriteShapeModule.dll new file mode 100644 index 00000000..cfe7901a Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SpriteShapeModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.StreamingModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.StreamingModule.dll new file mode 100644 index 00000000..0d5f815f Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.StreamingModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SubstanceModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SubstanceModule.dll new file mode 100644 index 00000000..f195bb41 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SubstanceModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SubsystemsModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SubsystemsModule.dll new file mode 100644 index 00000000..1d424f9d Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.SubsystemsModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TLSModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TLSModule.dll new file mode 100644 index 00000000..eef75b36 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TLSModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TerrainModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TerrainModule.dll new file mode 100644 index 00000000..bcca7b38 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TerrainModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TerrainPhysicsModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TerrainPhysicsModule.dll new file mode 100644 index 00000000..7e9275fd Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TerrainPhysicsModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TextCoreModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TextCoreModule.dll new file mode 100644 index 00000000..79611eb7 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TextCoreModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TextRenderingModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TextRenderingModule.dll new file mode 100644 index 00000000..7f9629ec Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TextRenderingModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TilemapModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TilemapModule.dll new file mode 100644 index 00000000..e82de96e Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.TilemapModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UI.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UI.dll new file mode 100644 index 00000000..58bab2f2 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UI.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UIElementsModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UIElementsModule.dll new file mode 100644 index 00000000..6339de13 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UIElementsModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UIModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UIModule.dll new file mode 100644 index 00000000..ab17cead Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UIModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UNETModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UNETModule.dll new file mode 100644 index 00000000..8324fbf3 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UNETModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UmbraModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UmbraModule.dll new file mode 100644 index 00000000..0fa9e642 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UmbraModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityAnalyticsModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityAnalyticsModule.dll new file mode 100644 index 00000000..78dce87c Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityAnalyticsModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityConnectModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityConnectModule.dll new file mode 100644 index 00000000..eadf9ac1 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityConnectModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityTestProtocolModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityTestProtocolModule.dll new file mode 100644 index 00000000..7552271d Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityTestProtocolModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll new file mode 100644 index 00000000..bfb0a001 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestAudioModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestAudioModule.dll new file mode 100644 index 00000000..f91c2e53 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestAudioModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestModule.dll new file mode 100644 index 00000000..379c0c3d Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestTextureModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestTextureModule.dll new file mode 100644 index 00000000..7f36c725 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestTextureModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestWWWModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestWWWModule.dll new file mode 100644 index 00000000..b4cf8977 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.UnityWebRequestWWWModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.VFXModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.VFXModule.dll new file mode 100644 index 00000000..c822cfaf Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.VFXModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.VRModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.VRModule.dll new file mode 100644 index 00000000..fb67ee06 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.VRModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.VehiclesModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.VehiclesModule.dll new file mode 100644 index 00000000..7e04f8c2 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.VehiclesModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.VideoModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.VideoModule.dll new file mode 100644 index 00000000..ad59a893 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.VideoModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.WindModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.WindModule.dll new file mode 100644 index 00000000..94712797 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.WindModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.XR.LegacyInputHelpers.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.XR.LegacyInputHelpers.dll new file mode 100644 index 00000000..345fc442 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.XR.LegacyInputHelpers.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.XRModule.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.XRModule.dll new file mode 100644 index 00000000..8677d0c8 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.XRModule.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.dll new file mode 100644 index 00000000..bdb34fac Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/UnityEngine.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/mscorlib.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/mscorlib.dll new file mode 100644 index 00000000..ba32de68 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/mscorlib.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/netstandard.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/netstandard.dll new file mode 100644 index 00000000..250cf817 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Managed/netstandard.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Plugins/x86_64/OVRPlugin.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Plugins/x86_64/OVRPlugin.dll new file mode 100644 index 00000000..7521551f Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Plugins/x86_64/OVRPlugin.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Plugins/x86_64/OculusXRPlugin.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Plugins/x86_64/OculusXRPlugin.dll new file mode 100644 index 00000000..4c468cb8 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Plugins/x86_64/OculusXRPlugin.dll differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Resources/unity default resources b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Resources/unity default resources new file mode 100644 index 00000000..ce748d01 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Resources/unity default resources differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Resources/unity_builtin_extra b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Resources/unity_builtin_extra new file mode 100644 index 00000000..63086902 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/Resources/unity_builtin_extra differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/AddressablesLink/link.xml b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/AddressablesLink/link.xml new file mode 100644 index 00000000..9b621011 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/AddressablesLink/link.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/StandaloneWindows64/localization-assets-shared_assets_all.bundle b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/StandaloneWindows64/localization-assets-shared_assets_all.bundle new file mode 100644 index 00000000..89873040 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/StandaloneWindows64/localization-assets-shared_assets_all.bundle differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/StandaloneWindows64/localization-locales_assets_all.bundle b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/StandaloneWindows64/localization-locales_assets_all.bundle new file mode 100644 index 00000000..723d8edc Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/StandaloneWindows64/localization-locales_assets_all.bundle differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/StandaloneWindows64/localization-string-tables-english(en)_assets_all.bundle b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/StandaloneWindows64/localization-string-tables-english(en)_assets_all.bundle new file mode 100644 index 00000000..fbec1c21 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/StandaloneWindows64/localization-string-tables-english(en)_assets_all.bundle differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/StandaloneWindows64/localization-string-tables-spanish(es)_assets_all.bundle b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/StandaloneWindows64/localization-string-tables-spanish(es)_assets_all.bundle new file mode 100644 index 00000000..8221b9fe Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/StandaloneWindows64/localization-string-tables-spanish(es)_assets_all.bundle differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/catalog.json b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/catalog.json new file mode 100644 index 00000000..a0c08e30 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/catalog.json @@ -0,0 +1 @@ +{"m_LocatorId":"AddressablesMainContentCatalog","m_InstanceProviderData":{"m_Id":"UnityEngine.ResourceManagement.ResourceProviders.InstanceProvider","m_ObjectType":{"m_AssemblyName":"Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.ResourceManagement.ResourceProviders.InstanceProvider"},"m_Data":""},"m_SceneProviderData":{"m_Id":"UnityEngine.ResourceManagement.ResourceProviders.SceneProvider","m_ObjectType":{"m_AssemblyName":"Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.ResourceManagement.ResourceProviders.SceneProvider"},"m_Data":""},"m_ResourceProviderData":[{"m_Id":"UnityEngine.ResourceManagement.ResourceProviders.LegacyResourcesProvider","m_ObjectType":{"m_AssemblyName":"Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.ResourceManagement.ResourceProviders.LegacyResourcesProvider"},"m_Data":""},{"m_Id":"UnityEngine.ResourceManagement.ResourceProviders.AssetBundleProvider","m_ObjectType":{"m_AssemblyName":"Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.ResourceManagement.ResourceProviders.AssetBundleProvider"},"m_Data":""},{"m_Id":"UnityEngine.ResourceManagement.ResourceProviders.BundledAssetProvider","m_ObjectType":{"m_AssemblyName":"Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.ResourceManagement.ResourceProviders.BundledAssetProvider"},"m_Data":""},{"m_Id":"UnityEngine.ResourceManagement.ResourceProviders.LegacyResourcesProvider","m_ObjectType":{"m_AssemblyName":"Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.ResourceManagement.ResourceProviders.LegacyResourcesProvider"},"m_Data":""},{"m_Id":"UnityEngine.ResourceManagement.ResourceProviders.BundledAssetProvider","m_ObjectType":{"m_AssemblyName":"Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.ResourceManagement.ResourceProviders.BundledAssetProvider"},"m_Data":""}],"m_ProviderIds":["UnityEngine.ResourceManagement.ResourceProviders.AssetBundleProvider","UnityEngine.ResourceManagement.ResourceProviders.BundledAssetProvider","UnityEngine.ResourceManagement.ResourceProviders.LegacyResourcesProvider",""],"m_InternalIds":["{UnityEngine.AddressableAssets.Addressables.RuntimePath}\\StandaloneWindows64\\localization-assets-shared_assets_all.bundle","{UnityEngine.AddressableAssets.Addressables.RuntimePath}\\StandaloneWindows64\\localization-locales_assets_all.bundle","{UnityEngine.AddressableAssets.Addressables.RuntimePath}\\StandaloneWindows64\\localization-string-tables-english(en)_assets_all.bundle","{UnityEngine.AddressableAssets.Addressables.RuntimePath}\\StandaloneWindows64\\localization-string-tables-spanish(es)_assets_all.bundle","Assets/POINT/Localization/English (en).asset","Assets/POINT/Localization/Spanish (es).asset","Assets/POINT/Localization/UILocalization Shared Data.asset","Assets/POINT/Localization/UILocalization_en.asset","Assets/POINT/Localization/UILocalization_es.asset","Audio/FOA_speech_ambiX","Chapter1Scene1/1_3D_coordinate_system_1_1","Chapter1Scene1/1_3D_coordinate_system_1_1_en","Chapter1Scene1/1_3D_coordinate_system_1_1_es","Chapter1Scene1/1_3D_coordinate_system_1_2","Chapter1Scene1/1_3D_coordinate_system_1_2_en","Chapter1Scene1/1_3D_coordinate_system_1_2_es","Chapter1Scene1/1_3D_coordinate_system_2","Chapter1Scene1/1_3D_coordinate_system_2_en","Chapter1Scene1/1_3D_coordinate_system_2_es","Chapter1Scene1/1_3D_coordinate_system_3","Chapter1Scene1/1_3D_coordinate_system_3_en","Chapter1Scene1/1_3D_coordinate_system_3_es","Chapter1Scene1/1_3D_coordinate_system_4","Chapter1Scene1/1_3D_coordinate_system_4_en","Chapter1Scene1/1_3D_coordinate_system_4_es","Chapter1Scene1/2_move_an_object_1","Chapter1Scene1/2_move_an_object_1_en","Chapter1Scene1/2_move_an_object_1_es","Chapter1Scene1/2_move_an_object_2","Chapter1Scene1/2_move_an_object_2_en","Chapter1Scene1/2_move_an_object_2_es","Chapter1Scene1/2_move_an_object_3","Chapter1Scene1/2_move_an_object_3_en","Chapter1Scene1/2_move_an_object_3_es","Chapter1Scene1/3_clock_appears_1","Chapter1Scene1/3_clock_appears_1_en","Chapter1Scene1/3_clock_appears_1_es","Chapter1Scene1/3_clock_appears_2","Chapter1Scene1/3_clock_appears_2_en","Chapter1Scene1/3_clock_appears_2_es","Chapter1Scene1/3_clock_appears_3","Chapter1Scene1/3_clock_appears_3_en","Chapter1Scene1/3_clock_appears_3_es","Chapter1Scene1/4_spacetime_is_everywhere_1_1","Chapter1Scene1/4_spacetime_is_everywhere_1_1_en","Chapter1Scene1/4_spacetime_is_everywhere_1_1_es","Chapter1Scene1/4_spacetime_is_everywhere_1_2","Chapter1Scene1/4_spacetime_is_everywhere_1_2_en","Chapter1Scene1/4_spacetime_is_everywhere_1_2_es","Chapter1Scene1/4_spacetime_is_everywhere_2","Chapter1Scene1/4_spacetime_is_everywhere_2_en","Chapter1Scene1/4_spacetime_is_everywhere_2_es","Chapter1Scene1/4_spacetime_is_everywhere_3","Chapter1Scene1/4_spacetime_is_everywhere_3_en","Chapter1Scene1/4_spacetime_is_everywhere_3_es","Chapter1Scene1/4_spacetime_is_everywhere_4_1","Chapter1Scene1/4_spacetime_is_everywhere_4_1_en","Chapter1Scene1/4_spacetime_is_everywhere_4_1_es","Chapter1Scene1/4_spacetime_is_everywhere_4_2","Chapter1Scene1/4_spacetime_is_everywhere_4_2_en","Chapter1Scene1/4_spacetime_is_everywhere_4_2_es","Chapter1Scene2/1_intro_to_grids_and_clocks_1","Chapter1Scene2/1_intro_to_grids_and_clocks_1_en","Chapter1Scene2/1_intro_to_grids_and_clocks_1_es","Chapter1Scene2/1_intro_to_grids_and_clocks_2","Chapter1Scene2/1_intro_to_grids_and_clocks_2_en","Chapter1Scene2/1_intro_to_grids_and_clocks_2_es","Chapter1Scene2/2_observe_grid_curve_1","Chapter1Scene2/2_observe_grid_curve_1_en","Chapter1Scene2/2_observe_grid_curve_1_es","Chapter1Scene2/2_observe_grid_curve_2","Chapter1Scene2/2_observe_grid_curve_2_en","Chapter1Scene2/2_observe_grid_curve_2_es","Chapter1Scene2/3_direction_of_curvature_arrow_1","Chapter1Scene2/3_direction_of_curvature_arrow_1_en","Chapter1Scene2/3_direction_of_curvature_arrow_1_es","Chapter1Scene2/3_direction_of_curvature_arrow_2","Chapter1Scene2/3_direction_of_curvature_arrow_2_en","Chapter1Scene2/3_direction_of_curvature_arrow_2_es","Chapter1Scene2/3_direction_of_curvature_arrow_3","Chapter1Scene2/3_direction_of_curvature_arrow_3_en","Chapter1Scene2/3_direction_of_curvature_arrow_3_es","Chapter1Scene2/3_direction_of_curvature_arrow_4","Chapter1Scene2/3_direction_of_curvature_arrow_4_en","Chapter1Scene2/3_direction_of_curvature_arrow_4_es","Chapter1Scene2/3_direction_of_curvature_arrow_5","Chapter1Scene2/3_direction_of_curvature_arrow_5_en","Chapter1Scene2/3_direction_of_curvature_arrow_5_es","Chapter1Scene2/3_direction_of_curvature_arrow_6","Chapter1Scene2/3_direction_of_curvature_arrow_6_en","Chapter1Scene2/3_direction_of_curvature_arrow_6_es","Chapter1Scene2/3_direction_of_curvature_arrow_7","Chapter1Scene2/3_direction_of_curvature_arrow_7_en","Chapter1Scene2/3_direction_of_curvature_arrow_7_es","Chapter1Scene2/3_direction_of_curvature_arrow_8","Chapter1Scene2/3_direction_of_curvature_arrow_8_en","Chapter1Scene2/3_direction_of_curvature_arrow_8_es","Chapter1Scene2/4_observe_time_dialation_1","Chapter1Scene2/4_observe_time_dialation_1_en","Chapter1Scene2/4_observe_time_dialation_1_es","Chapter1Scene2/4_observe_time_dialation_2","Chapter1Scene2/4_observe_time_dialation_2_en","Chapter1Scene2/4_observe_time_dialation_2_es","Chapter1Scene2/4_observe_time_dialation_3","Chapter1Scene2/4_observe_time_dialation_3_en","Chapter1Scene2/4_observe_time_dialation_3_es","Chapter1Scene2/5_strength_of_gravity_prop_mass_1","Chapter1Scene2/5_strength_of_gravity_prop_mass_1_en","Chapter1Scene2/5_strength_of_gravity_prop_mass_1_es","Chapter1Scene2/5_strength_of_gravity_prop_mass_2","Chapter1Scene2/5_strength_of_gravity_prop_mass_2_en","Chapter1Scene2/5_strength_of_gravity_prop_mass_2_es","Chapter1Scene2/5_strength_of_gravity_prop_mass_3","Chapter1Scene2/5_strength_of_gravity_prop_mass_3_en","Chapter1Scene2/5_strength_of_gravity_prop_mass_3_es","Chapter1Scene2/5_strength_of_gravity_prop_mass_4","Chapter1Scene2/5_strength_of_gravity_prop_mass_4_en","Chapter1Scene2/5_strength_of_gravity_prop_mass_4_es","Chapter1Scene2/5_strength_of_gravity_prop_mass_5","Chapter1Scene2/5_strength_of_gravity_prop_mass_5_en","Chapter1Scene2/5_strength_of_gravity_prop_mass_5_es","Chapter1Scene2/5_strength_of_gravity_prop_mass_6","Chapter1Scene2/5_strength_of_gravity_prop_mass_6_en","Chapter1Scene2/5_strength_of_gravity_prop_mass_6_es","Chapter1Scene2/5_strength_of_gravity_prop_mass_7","Chapter1Scene2/5_strength_of_gravity_prop_mass_7_en","Chapter1Scene2/5_strength_of_gravity_prop_mass_7_es","Chapter1Scene2/6_put_masses_in_order_1","Chapter1Scene2/6_put_masses_in_order_1_en","Chapter1Scene2/6_put_masses_in_order_1_es","Chapter1Scene2/6_put_masses_in_order_2","Chapter1Scene2/6_put_masses_in_order_2_en","Chapter1Scene2/6_put_masses_in_order_2_es","Chapter1Scene2/6_put_masses_in_order_3","Chapter1Scene2/6_put_masses_in_order_3_en","Chapter1Scene2/6_put_masses_in_order_3_es","Chapter1Scene2/7_radius_activity_same_mass_1","Chapter1Scene2/7_radius_activity_same_mass_1_en","Chapter1Scene2/7_radius_activity_same_mass_1_es","Chapter1Scene2/7_radius_activity_same_mass_2","Chapter1Scene2/7_radius_activity_same_mass_2_en","Chapter1Scene2/7_radius_activity_same_mass_2_es","Chapter1Scene2/7_radius_activity_same_mass_3","Chapter1Scene2/7_radius_activity_same_mass_3_en","Chapter1Scene2/7_radius_activity_same_mass_3_es","Chapter1Scene2/7_radius_activity_same_mass_4","Chapter1Scene2/7_radius_activity_same_mass_4_en","Chapter1Scene2/7_radius_activity_same_mass_4_es","continue","continue_en","continue_es","LineBreaking Following Characters","LineBreaking Leading Characters","Materials/Collider","Materials/EdgePicker","Materials/EdgePickerHDRP","Materials/FacePicker","Materials/FacePickerHDRP","Materials/InvisibleFace","Materials/NoDraw","Materials/ProBuilderDefault","Materials/StandardVertexColorHDRP","Materials/StandardVertexColorLWRP","Materials/Trigger","Materials/UnlitVertexColor","Materials/VertexPicker","Materials/VertexPickerHDRP","Materials/YFlipColorMesh","Narration_test","Narration_test_en","POINT/Scenes/Chapter1/Ch1_scene1","POINT/Scenes/Chapter1/EndCredits","POINT/Scenes/Chapter1/StartMenu","POINT/Scenes/Chapter1/Tutorial","POINT/Scenes/Conference Demos/ConfDemo_part1_one-mass-y","POINT/Scenes/Conference Demos/ConfDemo_part2_two-masses","POINT/Scenes/Conference Demos/ConfDemo_part3_ranking-masses","Prefabs/_PlaneThatCallsIntoPlugin","Prefabs/Sphere","Prefabs/Spotlight","Shaders/Mesh","Sprite Assets/EmojiOne","Style Sheets/Default Style Sheet","temporary_ending_1","temporary_ending_1_en","temporary_ending_1_es","temporary_ending_2","temporary_ending_2_en","temporary_ending_2_es","temporary_ending_3","temporary_ending_3_en","temporary_ending_3_es","TestSetup/TrackingRig","Textures/GridBox_Default","TMP Settings","Tutorial/Tutorial_Grab","Tutorial/Tutorial_Grab_en","Tutorial/Tutorial_Grab_es","Tutorial/Tutorial_Intro","Tutorial/Tutorial_Intro_en","Tutorial/Tutorial_Intro_es","Tutorial/Tutorial_Menu_Forget_Controls","Tutorial/Tutorial_Menu_Forget_Controls_en","Tutorial/Tutorial_Menu_Forget_Controls_es","Tutorial/Tutorial_Menu_Full","Tutorial/Tutorial_Menu_Full_en","Tutorial/Tutorial_Menu_Open","Tutorial/Tutorial_Menu_Open_en","Tutorial/Tutorial_Menu_Open_es","Tutorial/Tutorial_Menu_Options","Tutorial/Tutorial_Menu_Options_en","Tutorial/Tutorial_Menu_Options_es","Tutorial/Tutorial_Menu_Scene_Select","Tutorial/Tutorial_Menu_Scene_Select_en","Tutorial/Tutorial_Menu_Scene_Select_es","Tutorial/Tutorial_Push&Pull","Tutorial/Tutorial_Push&Pull_en","Tutorial/Tutorial_Push&Pull_es","Tutorial/Tutorial_Teleport","Tutorial/Tutorial_Teleport_en","Tutorial/Tutorial_Teleport_es","Tutorial/Tutorial_Teleport_Test_1","Tutorial/Tutorial_Teleport_Test_1_en","Tutorial/Tutorial_Teleport_Test_1_es","Tutorial/Tutorial_Teleport_Test_2","Tutorial/Tutorial_Teleport_Test_2_en","Tutorial/Tutorial_Teleport_Test_2_es"],"m_KeyDataString":"zwEAAABNAAAAbG9jYWxpemF0aW9uLWFzc2V0cy1zaGFyZWRfYXNzZXRzX2FsbF9iNWRmMWEzMDM5NGFiM2U2YjZlMTFlMTA4MjI4YWYwZi5idW5kbGUARwAAAGxvY2FsaXphdGlvbi1sb2NhbGVzX2Fzc2V0c19hbGxfMGIzMTkwMDIzMWVjNzZiNGY5ZGJmY2U3M2RjMDBiOTcuYnVuZGxlAFkAAABsb2NhbGl6YXRpb24tc3RyaW5nLXRhYmxlcy1lbmdsaXNoKGVuKV9hc3NldHNfYWxsXzZkYTQzZGJiZDU4ODllMmQyZTY5MTdjMTVmYWY4ZTdjLmJ1bmRsZQBZAAAAbG9jYWxpemF0aW9uLXN0cmluZy10YWJsZXMtc3BhbmlzaChlcylfYXNzZXRzX2FsbF8zN2I4MDUzYzA0YjExODI4YTg3N2JlNGU1ODFlZmIzOS5idW5kbGUADAAAAEVuZ2xpc2ggKGVuKQAgAAAAMjdmNzEzYjZhOGQ5ZjQxNGRiODY5N2VlMDRlZTIyNGIABgAAAExvY2FsZQAMAAAAU3BhbmlzaCAoZXMpACAAAAA2MjVkZGViNDJhMGQ0M2Q0MDg1MzdiZWZkOTk0NGM1ZQA6AAAAQXNzZXRzL1BPSU5UL0xvY2FsaXphdGlvbi9VSUxvY2FsaXphdGlvbiBTaGFyZWQgRGF0YS5hc3NldAAgAAAAZWE5NzUwMmIzNmY2Y2QxNDliNmE1NzFiZTZlMjU4M2YAEQAAAFVJTG9jYWxpemF0aW9uX2VuACAAAAA1MjAxNjA3YzMwZjVjNmI0N2JmNWYxOTA1NDlkNmVhNQAJAAAATG9jYWxlLWVuAAcAAABQcmVsb2FkABEAAABVSUxvY2FsaXphdGlvbl9lcwAgAAAANTc3NmM5NmM4MjA0ZjFmNDU5ZWYyYjJhYTk3NTFjYjYACQAAAExvY2FsZS1lcwAWAAAAQXVkaW8vRk9BX3NwZWVjaF9hbWJpWAAgAAAAZjdiOGU2YmFkNzAwMmRkNDI5NTBjMjY0ZDBkZThkYmIAKQAAAENoYXB0ZXIxU2NlbmUxLzFfM0RfY29vcmRpbmF0ZV9zeXN0ZW1fMV8xACAAAABjYmY0MmJiOTcxNjI1YTk0NWFmODM1MWViOWZjMjg5MAAsAAAAQ2hhcHRlcjFTY2VuZTEvMV8zRF9jb29yZGluYXRlX3N5c3RlbV8xXzFfZW4AIAAAADEzNGMxM2Y4MDI2ZjdhZTRhYTM2ZWQ4NDdlZmIzZGNlACwAAABDaGFwdGVyMVNjZW5lMS8xXzNEX2Nvb3JkaW5hdGVfc3lzdGVtXzFfMV9lcwAgAAAANjhmZDRlOWJlMTZiMzkzNDViZmE0YzI1YzljMGEzY2UAKQAAAENoYXB0ZXIxU2NlbmUxLzFfM0RfY29vcmRpbmF0ZV9zeXN0ZW1fMV8yACAAAAA2ZTAzNjNmMzA2OTBkYzc0YWFkYzEwZTg3OTQ2YzMwOAAsAAAAQ2hhcHRlcjFTY2VuZTEvMV8zRF9jb29yZGluYXRlX3N5c3RlbV8xXzJfZW4AIAAAADQ2MzQwMDFkYWVmYTU2MTRmYjU0MTcyMjE5YjlmNDgyACwAAABDaGFwdGVyMVNjZW5lMS8xXzNEX2Nvb3JkaW5hdGVfc3lzdGVtXzFfMl9lcwAgAAAANjE2ZjY1Nzc3NTg5OWUyNDE4NDQ2MWZmNGE4YTI1ZjUAJwAAAENoYXB0ZXIxU2NlbmUxLzFfM0RfY29vcmRpbmF0ZV9zeXN0ZW1fMgAgAAAAMjk5MGIxZTBmODg0Y2U4NDdiM2VkMTU4NTdlOGI1NWUAKgAAAENoYXB0ZXIxU2NlbmUxLzFfM0RfY29vcmRpbmF0ZV9zeXN0ZW1fMl9lbgAgAAAAODc2OGY1ZTE1YWVlZDBlNDViM2QyYWQ0MDVjZmQzNjkAKgAAAENoYXB0ZXIxU2NlbmUxLzFfM0RfY29vcmRpbmF0ZV9zeXN0ZW1fMl9lcwAgAAAAYjM0ODU5NzBmMzdiZGNjNDc5ZTIxYWE2MGZjNTRhNTUAJwAAAENoYXB0ZXIxU2NlbmUxLzFfM0RfY29vcmRpbmF0ZV9zeXN0ZW1fMwAgAAAAMzU4ODJkOTgzODVlMTdmNDA5NDMxODQ2MDRkZmFiNzYAKgAAAENoYXB0ZXIxU2NlbmUxLzFfM0RfY29vcmRpbmF0ZV9zeXN0ZW1fM19lbgAgAAAAYjdlY2ViM2FmMjQ0OTlmNGNiNzNkODRmNjAxMzI5MjQAKgAAAENoYXB0ZXIxU2NlbmUxLzFfM0RfY29vcmRpbmF0ZV9zeXN0ZW1fM19lcwAgAAAAZjZjMDQ3NDQzNWZlMGUxNDNiNTAzMTlkN2Y3MDFiYWIAJwAAAENoYXB0ZXIxU2NlbmUxLzFfM0RfY29vcmRpbmF0ZV9zeXN0ZW1fNAAgAAAAN2ZhMjQ1YzY4ODBlZmE1NDdhMmFiN2UxNTc0MWYxOTUAKgAAAENoYXB0ZXIxU2NlbmUxLzFfM0RfY29vcmRpbmF0ZV9zeXN0ZW1fNF9lbgAgAAAANTQ2ODU0MTI1OGI0ZWNlNGM5MjMwZjU2M2YyM2FiYTYAKgAAAENoYXB0ZXIxU2NlbmUxLzFfM0RfY29vcmRpbmF0ZV9zeXN0ZW1fNF9lcwAgAAAAMDI4N2NmZDNkM2YwMDRhNDc4NTAwM2RlNTllOWYxNjkAIQAAAENoYXB0ZXIxU2NlbmUxLzJfbW92ZV9hbl9vYmplY3RfMQAgAAAAZDQwOWVjYTBlYzMwZTE1NDM5YjFiMzY1MzRjY2Q0ODgAJAAAAENoYXB0ZXIxU2NlbmUxLzJfbW92ZV9hbl9vYmplY3RfMV9lbgAgAAAAMGI1MTQ1YTk2Y2Q1NzBjNGU5ZDJkNWJkZGIyYTAwMmEAJAAAAENoYXB0ZXIxU2NlbmUxLzJfbW92ZV9hbl9vYmplY3RfMV9lcwAgAAAAYmIyOTIzMmI5YWFiY2IyNGZhZDk2MzAwYTBhOWViZGYAIQAAAENoYXB0ZXIxU2NlbmUxLzJfbW92ZV9hbl9vYmplY3RfMgAgAAAAZGU5OTczODdhMzQzMzQ1NGNhNmYyZmEzZDkxYjU0MjcAJAAAAENoYXB0ZXIxU2NlbmUxLzJfbW92ZV9hbl9vYmplY3RfMl9lbgAgAAAAOGM0NTU3MDgyOWE0ZmE1NDg4MTZlYmY5ZWY1MzAyNDIAJAAAAENoYXB0ZXIxU2NlbmUxLzJfbW92ZV9hbl9vYmplY3RfMl9lcwAgAAAAM2EwOGFhNmIzNWE5YzI5NDQ4NTU1MmY5Y2JmMTYxYmQAIQAAAENoYXB0ZXIxU2NlbmUxLzJfbW92ZV9hbl9vYmplY3RfMwAgAAAANmIwMzE5ODYwOGZjMjgzNGVhOGUyMjUzMmY3NTc4NzYAJAAAAENoYXB0ZXIxU2NlbmUxLzJfbW92ZV9hbl9vYmplY3RfM19lbgAgAAAAZjViMTA2ZmMyYjgzMWEwNGViZDExMjNjNzMyODJjNTcAJAAAAENoYXB0ZXIxU2NlbmUxLzJfbW92ZV9hbl9vYmplY3RfM19lcwAgAAAAYTQwODZmZjcwMTMyZTVhNDE4MzFlZmFmOWRhNDhmMGMAIAAAAENoYXB0ZXIxU2NlbmUxLzNfY2xvY2tfYXBwZWFyc18xACAAAABlZGIyZDAyMTBiZDc3NDM0NDg5YmVlNDdkOTFmYTFiZAAjAAAAQ2hhcHRlcjFTY2VuZTEvM19jbG9ja19hcHBlYXJzXzFfZW4AIAAAADlmYzJjOGI0MzM5MmE3ZDQ4YWQ2NWQxZjFmYmEwMmFjACMAAABDaGFwdGVyMVNjZW5lMS8zX2Nsb2NrX2FwcGVhcnNfMV9lcwAgAAAAYjdiOWFmZTFjMTYwNzE0NDM5OWE1ZjY1MTViMzU5MzQAIAAAAENoYXB0ZXIxU2NlbmUxLzNfY2xvY2tfYXBwZWFyc18yACAAAAA0MGQzNGEwODM2NmNhZDU0NTgwZTNmYzQ1ODgxZTI2OAAjAAAAQ2hhcHRlcjFTY2VuZTEvM19jbG9ja19hcHBlYXJzXzJfZW4AIAAAAGQxOGNmNjAxYzlmZGZlNzRiYTI0MWY4Y2UzN2JkNGViACMAAABDaGFwdGVyMVNjZW5lMS8zX2Nsb2NrX2FwcGVhcnNfMl9lcwAgAAAANzY2YWNmNDNjMzE4Nzk0NGZhNjM2YjA1ZWM1ODI4ZGMAIAAAAENoYXB0ZXIxU2NlbmUxLzNfY2xvY2tfYXBwZWFyc18zACAAAAAxYzc4MWM5NGQyMjU5ZGM0ZmFhZWM2ZTk3ZWVmMDgwYQAjAAAAQ2hhcHRlcjFTY2VuZTEvM19jbG9ja19hcHBlYXJzXzNfZW4AIAAAAGM5MGI3MThmYTNlOTY3NzRmODVlMDQ0MWE4ZmNjMDNkACMAAABDaGFwdGVyMVNjZW5lMS8zX2Nsb2NrX2FwcGVhcnNfM19lcwAgAAAAM2E4Nzg1OGIxZWI1OGE5NGM4YzdiMWQzYjI5ZWVmNzgALAAAAENoYXB0ZXIxU2NlbmUxLzRfc3BhY2V0aW1lX2lzX2V2ZXJ5d2hlcmVfMV8xACAAAAAxODVmMzgxYTcyZDZhM2Q0Yjg1OTc3YmI2NTNlZmI4MwAvAAAAQ2hhcHRlcjFTY2VuZTEvNF9zcGFjZXRpbWVfaXNfZXZlcnl3aGVyZV8xXzFfZW4AIAAAADlkMDM3ZTYwYTU4ZGY4ZTRmYjU2ZjI2ZTM3ZTc5ZWQwAC8AAABDaGFwdGVyMVNjZW5lMS80X3NwYWNldGltZV9pc19ldmVyeXdoZXJlXzFfMV9lcwAgAAAAZTBjMTg0MWQwNmI5ZWYwNDE4NjRjMThhODBhZGRmYWIALAAAAENoYXB0ZXIxU2NlbmUxLzRfc3BhY2V0aW1lX2lzX2V2ZXJ5d2hlcmVfMV8yACAAAAA3NGVkN2ZjNDFmYjk4OGE0MzhjYmRlOWQyNjgzY2ZlOAAvAAAAQ2hhcHRlcjFTY2VuZTEvNF9zcGFjZXRpbWVfaXNfZXZlcnl3aGVyZV8xXzJfZW4AIAAAADc3ZGQ0YTc1NGQ0OWVjODRjYjg5MDE4MTJmZDQ0ZDY5AC8AAABDaGFwdGVyMVNjZW5lMS80X3NwYWNldGltZV9pc19ldmVyeXdoZXJlXzFfMl9lcwAgAAAAYjQ3NDg1ZmEwMWEwNmE4NDRhNDY4M2Q1OGE3NzY2ODAAKgAAAENoYXB0ZXIxU2NlbmUxLzRfc3BhY2V0aW1lX2lzX2V2ZXJ5d2hlcmVfMgAgAAAAMWZhYTExNTk3MmEwNTIwNDE4Y2IwOWYyMmFkZmQwMzgALQAAAENoYXB0ZXIxU2NlbmUxLzRfc3BhY2V0aW1lX2lzX2V2ZXJ5d2hlcmVfMl9lbgAgAAAAMjIyNDg3NDc2MzU3MjZiNDliZDdjZmYyZTBjOWE5YzIALQAAAENoYXB0ZXIxU2NlbmUxLzRfc3BhY2V0aW1lX2lzX2V2ZXJ5d2hlcmVfMl9lcwAgAAAANjQ2ZmY5ZWEwMWNmYWM3NDM5ZGViOThjMTgyNTc2MTIAKgAAAENoYXB0ZXIxU2NlbmUxLzRfc3BhY2V0aW1lX2lzX2V2ZXJ5d2hlcmVfMwAgAAAAYTA2MGJhNjk5MmQyNGQxNGU5OTBlYzkzNzgxYTYyYWEALQAAAENoYXB0ZXIxU2NlbmUxLzRfc3BhY2V0aW1lX2lzX2V2ZXJ5d2hlcmVfM19lbgAgAAAAOTQxN2RmZTE5MzliZTc0NDY5OWUzNzliNDI5ZmQ4MTYALQAAAENoYXB0ZXIxU2NlbmUxLzRfc3BhY2V0aW1lX2lzX2V2ZXJ5d2hlcmVfM19lcwAgAAAAMjBhNDRmN2I2YTVhM2ZhNGU5MjYyY2M0MDQ4ZDM0ZjAALAAAAENoYXB0ZXIxU2NlbmUxLzRfc3BhY2V0aW1lX2lzX2V2ZXJ5d2hlcmVfNF8xACAAAAAyZTEyZGQyM2I3MTkxMzg0OWI2ZGM2MDBjNWE4Nzc3ZQAvAAAAQ2hhcHRlcjFTY2VuZTEvNF9zcGFjZXRpbWVfaXNfZXZlcnl3aGVyZV80XzFfZW4AIAAAAGUyMjg0ZmM5ZTZjNGZiMTQxODAwMGVkMTAyOGExNDk3AC8AAABDaGFwdGVyMVNjZW5lMS80X3NwYWNldGltZV9pc19ldmVyeXdoZXJlXzRfMV9lcwAgAAAAMmI4Nzg3OTM2OWFmZWU1NGU4ZTA0OTVlZWE3ZDg1MTMALAAAAENoYXB0ZXIxU2NlbmUxLzRfc3BhY2V0aW1lX2lzX2V2ZXJ5d2hlcmVfNF8yACAAAAAyMzVmMGM0Nzk3NTQxMzg0NDgxZGMwMWU2ODU5MWM4NQAvAAAAQ2hhcHRlcjFTY2VuZTEvNF9zcGFjZXRpbWVfaXNfZXZlcnl3aGVyZV80XzJfZW4AIAAAAGYzZGZiMjNkNzU3MzAyZDQ5YmY0NGVhZDBiM2MxY2UxAC8AAABDaGFwdGVyMVNjZW5lMS80X3NwYWNldGltZV9pc19ldmVyeXdoZXJlXzRfMl9lcwAgAAAANGRjMzkyNjZjZGExOWMzNDg5Y2FmYTZmNzhkZjE3MWMALAAAAENoYXB0ZXIxU2NlbmUyLzFfaW50cm9fdG9fZ3JpZHNfYW5kX2Nsb2Nrc18xACAAAAA0MDhiNDRjZTgwZmQ3NTE0YmE1YjQ4NjRlNmQyYzM5OQAvAAAAQ2hhcHRlcjFTY2VuZTIvMV9pbnRyb190b19ncmlkc19hbmRfY2xvY2tzXzFfZW4AIAAAADZlYTI0YzliZDMyMmEzZjRlOTIzZDg0NzliYzFmMWQyAC8AAABDaGFwdGVyMVNjZW5lMi8xX2ludHJvX3RvX2dyaWRzX2FuZF9jbG9ja3NfMV9lcwAgAAAAYTk3MGYzZmE5MzY0MjRjNGQ5ZGRiOWJkNDMzYmFhYWYALAAAAENoYXB0ZXIxU2NlbmUyLzFfaW50cm9fdG9fZ3JpZHNfYW5kX2Nsb2Nrc18yACAAAAA1MGFkMDc3NzAyODA0YjA0MjgwY2I0YzdlOTVlNWY1OAAvAAAAQ2hhcHRlcjFTY2VuZTIvMV9pbnRyb190b19ncmlkc19hbmRfY2xvY2tzXzJfZW4AIAAAADFkNjc1YWUzZjlmNWMzZjQwYWQwMDIyNDFmZDRjNGI2AC8AAABDaGFwdGVyMVNjZW5lMi8xX2ludHJvX3RvX2dyaWRzX2FuZF9jbG9ja3NfMl9lcwAgAAAANmQ1ZTk1YTdlMTY1MjU2NGVhMmZkZTU5NTI0ZmUyNWEAJQAAAENoYXB0ZXIxU2NlbmUyLzJfb2JzZXJ2ZV9ncmlkX2N1cnZlXzEAIAAAADU0NGU3MTNlNjJmODM2YjRjYjc3Mjc1NTRiZjU1NDRlACgAAABDaGFwdGVyMVNjZW5lMi8yX29ic2VydmVfZ3JpZF9jdXJ2ZV8xX2VuACAAAABkMDRiNjRkYzQyNDUwMGM0ZTllMzE5ZTczN2RlYWZhZAAoAAAAQ2hhcHRlcjFTY2VuZTIvMl9vYnNlcnZlX2dyaWRfY3VydmVfMV9lcwAgAAAAMDFhYTM5ZDBlNDkyZDJjNDRiNzI0ZGI1MDhlZWE5YWIAJQAAAENoYXB0ZXIxU2NlbmUyLzJfb2JzZXJ2ZV9ncmlkX2N1cnZlXzIAIAAAADMxOGM2ZDFmYjE4MTBjZjQxODgwNWM1YThiMTYzZGY5ACgAAABDaGFwdGVyMVNjZW5lMi8yX29ic2VydmVfZ3JpZF9jdXJ2ZV8yX2VuACAAAAA5NzI3MGVmZTc3ZjU5MDc0ZThiYzBjNGYyNzJkYjVjZgAoAAAAQ2hhcHRlcjFTY2VuZTIvMl9vYnNlcnZlX2dyaWRfY3VydmVfMl9lcwAgAAAAOWExZjcwNDZlNjgzOWJjNDE5OTVmOWM3ZTg5NjQyNGQALwAAAENoYXB0ZXIxU2NlbmUyLzNfZGlyZWN0aW9uX29mX2N1cnZhdHVyZV9hcnJvd18xACAAAABlMzVjOTliY2ZjNWEwMTU0ZjkzODlhZmVkZDE2OWUzMgAyAAAAQ2hhcHRlcjFTY2VuZTIvM19kaXJlY3Rpb25fb2ZfY3VydmF0dXJlX2Fycm93XzFfZW4AIAAAAGJiOTQ1Y2U3ZDMzYzc2MzRmOWE3NTBiODdjMzI4YmY5ADIAAABDaGFwdGVyMVNjZW5lMi8zX2RpcmVjdGlvbl9vZl9jdXJ2YXR1cmVfYXJyb3dfMV9lcwAgAAAAMTY1NzcyMjg4NzdiMGJhNDBiOGIxMzRkYTM3NWIwNDIALwAAAENoYXB0ZXIxU2NlbmUyLzNfZGlyZWN0aW9uX29mX2N1cnZhdHVyZV9hcnJvd18yACAAAABjMDdmODZiNGQ4MDgxNzQ0YmE0NGE3ODExODExZDU0NgAyAAAAQ2hhcHRlcjFTY2VuZTIvM19kaXJlY3Rpb25fb2ZfY3VydmF0dXJlX2Fycm93XzJfZW4AIAAAADNjNzg5YjA3MWViMmIxZTRiODk5NGVjNjJmMjA2YjIzADIAAABDaGFwdGVyMVNjZW5lMi8zX2RpcmVjdGlvbl9vZl9jdXJ2YXR1cmVfYXJyb3dfMl9lcwAgAAAAZDRjOGY5ODVmOWNkMjYzNDJhNTVhNzgxNjdkZWUxZjIALwAAAENoYXB0ZXIxU2NlbmUyLzNfZGlyZWN0aW9uX29mX2N1cnZhdHVyZV9hcnJvd18zACAAAABlZjM4ZGVjYjc0NzAzMjU0MTlhY2NlOGUzN2RhMWYzOAAyAAAAQ2hhcHRlcjFTY2VuZTIvM19kaXJlY3Rpb25fb2ZfY3VydmF0dXJlX2Fycm93XzNfZW4AIAAAADliY2QzZDdhMjZhNzQxZjQxYWQ0ZDU0ZjFlNjRlYjU0ADIAAABDaGFwdGVyMVNjZW5lMi8zX2RpcmVjdGlvbl9vZl9jdXJ2YXR1cmVfYXJyb3dfM19lcwAgAAAAYWZlZTQyMjQzZWJlY2M0NGRhZWRkMzZiNzZhZTgyOWQALwAAAENoYXB0ZXIxU2NlbmUyLzNfZGlyZWN0aW9uX29mX2N1cnZhdHVyZV9hcnJvd180ACAAAAA5NGRlZmQyY2I3OTQ0ZDc0ZDg1NTA5ZTM0OTllNDRiMgAyAAAAQ2hhcHRlcjFTY2VuZTIvM19kaXJlY3Rpb25fb2ZfY3VydmF0dXJlX2Fycm93XzRfZW4AIAAAADYzZWI2ZTI1YjI0YzU3NzQ4YWUxOTQyNDc2Mjc0ZjVlADIAAABDaGFwdGVyMVNjZW5lMi8zX2RpcmVjdGlvbl9vZl9jdXJ2YXR1cmVfYXJyb3dfNF9lcwAgAAAANWNiNjkyNzZkZWQ0ZmMwNDA4MTRkMWFmOGU1YTk4NGQALwAAAENoYXB0ZXIxU2NlbmUyLzNfZGlyZWN0aW9uX29mX2N1cnZhdHVyZV9hcnJvd181ACAAAAA3N2Q1Y2FjNjJhYmI0ODg0YTk4ZTg1Zjc1NjM1MGZmZAAyAAAAQ2hhcHRlcjFTY2VuZTIvM19kaXJlY3Rpb25fb2ZfY3VydmF0dXJlX2Fycm93XzVfZW4AIAAAADYxMjg2ZTNmYzQ1ODczMDQ3YTg0MGQ1MTM2MmJiODgyADIAAABDaGFwdGVyMVNjZW5lMi8zX2RpcmVjdGlvbl9vZl9jdXJ2YXR1cmVfYXJyb3dfNV9lcwAgAAAAMjk2ZWU4N2MwYTRiZGMzNDM5M2FkOTFkNTY1Y2I1NDAALwAAAENoYXB0ZXIxU2NlbmUyLzNfZGlyZWN0aW9uX29mX2N1cnZhdHVyZV9hcnJvd182ACAAAAA0ZTM0ODlmNzhlZDBjYzY0OTlhOTE0NDU5YTBiNDg0OAAyAAAAQ2hhcHRlcjFTY2VuZTIvM19kaXJlY3Rpb25fb2ZfY3VydmF0dXJlX2Fycm93XzZfZW4AIAAAADczODc1MTE1MWUwMWE3MTQyODBkOWEwMWJlMTg4YzgzADIAAABDaGFwdGVyMVNjZW5lMi8zX2RpcmVjdGlvbl9vZl9jdXJ2YXR1cmVfYXJyb3dfNl9lcwAgAAAAMGEzOWE5YTZmNWUxYzM3NDg4NGI2YzFhM2ViNjY1ZDYALwAAAENoYXB0ZXIxU2NlbmUyLzNfZGlyZWN0aW9uX29mX2N1cnZhdHVyZV9hcnJvd183ACAAAAA3ODI1OGRkMDk5Mjk1MDE0OThlZmZiMjk4M2NjOGVmNwAyAAAAQ2hhcHRlcjFTY2VuZTIvM19kaXJlY3Rpb25fb2ZfY3VydmF0dXJlX2Fycm93XzdfZW4AIAAAADU0ZjZjYTM3ODcwMDE5NjRlYTU0ZDA3NDgwYjg4NmJjADIAAABDaGFwdGVyMVNjZW5lMi8zX2RpcmVjdGlvbl9vZl9jdXJ2YXR1cmVfYXJyb3dfN19lcwAgAAAAOTk4ZDRmOTI5MDc1Mzc5NDBhZjAyZjg0MmE5MDRlOTMALwAAAENoYXB0ZXIxU2NlbmUyLzNfZGlyZWN0aW9uX29mX2N1cnZhdHVyZV9hcnJvd184ACAAAAA4NDBkMzJmMDUwODI1ZDY0N2JiNzRjMTBmMTVhZDk3NAAyAAAAQ2hhcHRlcjFTY2VuZTIvM19kaXJlY3Rpb25fb2ZfY3VydmF0dXJlX2Fycm93XzhfZW4AIAAAAGQ1OTY5Y2Q5YzA5NGQ3ZTQ2OWFlNWJmNGFlZTA2MTE2ADIAAABDaGFwdGVyMVNjZW5lMi8zX2RpcmVjdGlvbl9vZl9jdXJ2YXR1cmVfYXJyb3dfOF9lcwAgAAAAYTZhZTEwMzE1MTQ3MWJlNGRiMWIyM2U1YjU3ZWU2ZGQAKQAAAENoYXB0ZXIxU2NlbmUyLzRfb2JzZXJ2ZV90aW1lX2RpYWxhdGlvbl8xACAAAAAzNDRhNTZhZWQzMmM1MTU0ZGE2YzE1NGQ4Y2E5ODg5NgAsAAAAQ2hhcHRlcjFTY2VuZTIvNF9vYnNlcnZlX3RpbWVfZGlhbGF0aW9uXzFfZW4AIAAAADIyOGJmMTZkMWQyOTI1YzRlYWI0NTk2MWIxYjZjNTk5ACwAAABDaGFwdGVyMVNjZW5lMi80X29ic2VydmVfdGltZV9kaWFsYXRpb25fMV9lcwAgAAAANDZjOWM4OTQ1OGEzMWNiNDQ5ZjM4YzIxMzk1ZjZiZDkAKQAAAENoYXB0ZXIxU2NlbmUyLzRfb2JzZXJ2ZV90aW1lX2RpYWxhdGlvbl8yACAAAAA0ODQyODJhNTdmNTgzMTk0Mjk3NGRlNDZkMTU1ODJhNQAsAAAAQ2hhcHRlcjFTY2VuZTIvNF9vYnNlcnZlX3RpbWVfZGlhbGF0aW9uXzJfZW4AIAAAAGRmMGZlZGJiOWZkMmJmNTQ4OGMwODRkMDg4OGM2ZGQxACwAAABDaGFwdGVyMVNjZW5lMi80X29ic2VydmVfdGltZV9kaWFsYXRpb25fMl9lcwAgAAAAOGQyODVmNzE5MWZiZmRiNDZiMDljODFiYzg2ZGI0ZjkAKQAAAENoYXB0ZXIxU2NlbmUyLzRfb2JzZXJ2ZV90aW1lX2RpYWxhdGlvbl8zACAAAAAzYTk3MjhkNzg2ZmZjM2I0Y2FmYWRkMjdkNjFlMDdlNAAsAAAAQ2hhcHRlcjFTY2VuZTIvNF9vYnNlcnZlX3RpbWVfZGlhbGF0aW9uXzNfZW4AIAAAAGQ4NmUwNjcwZmRlMTQzMTRhOTU3MTYxY2E0YjRkN2RmACwAAABDaGFwdGVyMVNjZW5lMi80X29ic2VydmVfdGltZV9kaWFsYXRpb25fM19lcwAgAAAANjk3NTE4ODg3ZjVkOTBiNDBhM2IzNDg4YjI5ZjhiMmYAMAAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfMQAgAAAAZGQxMGI2ZTllYmU4MjY1NDc4NTYyZWExODMyZWM5YWYAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfMV9lbgAgAAAAOGZhM2U0MjNiMmQzMjIxNDU4NmQ1NGZlYjg2ZWIwNTQAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfMV9lcwAgAAAANWM0NzQ4N2ZjODcxZDQzNGE5NDM2MTBiYmM3ODJjY2MAMAAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfMgAgAAAAYzBhYWZlODg3N2M2YmQwNGNhMGI2NmU4MzVlMzgwNTEAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfMl9lbgAgAAAAOGZjMDljMzU4MmU5OTQ3NDI5M2UyM2Q5NTk5MDYxNjAAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfMl9lcwAgAAAAOWQxMDk1OWRmZDcwYzU1NGVhNDY3OGFjZDZmODBlOWQAMAAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfMwAgAAAAOGRjYjg2ODNkNmE3NWQ4NDFiMDMxN2YxOWQ0NzgyZGIAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfM19lbgAgAAAAMGMzY2MwMjU3MWNjYzE3NDM5ODIxOTRmMDVhMDZkZGEAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfM19lcwAgAAAANTU4NTI5OWRlNDU2YTBkNGJiYThkOTkzYzQzZjRkMDIAMAAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfNAAgAAAAYjJjMjMxN2FmZDdmNDYzNDVhZDRkNGM0NzI4Yzc1NWYAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfNF9lbgAgAAAAM2M2Yjg1YTlkNWU0NzM3NGY5ZWY2MzM1NWFjYzM1NDUAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfNF9lcwAgAAAAMDE5NGI3YzM2ZTQ1ZGI1NDQ4NjdiZjI0MmEyZGI2YzAAMAAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfNQAgAAAAZWIwYjA5NmYwOGI5ZmFmNGE4ZDk1ZmI2Y2M5NDg2NWMAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfNV9lbgAgAAAAM2E5M2JkYzFjMjg1YTQ1NGU4NmVjYmQwZmQzMzFlMzAAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfNV9lcwAgAAAANGQ5YzJjYzZkNzNiMmZhNDg5NTQyYTZmMDZjYmJkODQAMAAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfNgAgAAAANWEzN2EzZjRlNzM5MDhlNGRhOGI1ZTBiYzMyNjFlZDUAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfNl9lbgAgAAAAMmI3Zjc5YTcxYTJhYzY1NDQ4YWQ2NGQxZDBjYjlhMzYAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfNl9lcwAgAAAAZDAzYjVlNTFhMDlhNDAzNDdhNWM0NzJlNThhNGQyMTMAMAAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfNwAgAAAAZTY1ZTE4MWZkYmM1Njc4NDdhN2VjNDgzYTIwZTRmYzkAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfN19lbgAgAAAANDk4MGI1YzYyZjdjNWNiNDE4NGFiOWM3NzUxNTc2NDcAMwAAAENoYXB0ZXIxU2NlbmUyLzVfc3RyZW5ndGhfb2ZfZ3Jhdml0eV9wcm9wX21hc3NfN19lcwAgAAAAM2M0OTg1ZjE2ZTM4NzAxNGQ5NmRhZjU4NGExZmU3OGEAJgAAAENoYXB0ZXIxU2NlbmUyLzZfcHV0X21hc3Nlc19pbl9vcmRlcl8xACAAAABlNjkyZGI0NzVlY2QyN2M0Y2EzYmMzYjgwMjk5ZGEwZQApAAAAQ2hhcHRlcjFTY2VuZTIvNl9wdXRfbWFzc2VzX2luX29yZGVyXzFfZW4AIAAAADA5MDVmMGZhMGFjMzE2OTRkOWQ3OTk5OTQxZWE3MGEwACkAAABDaGFwdGVyMVNjZW5lMi82X3B1dF9tYXNzZXNfaW5fb3JkZXJfMV9lcwAgAAAAYjAyZTM2ZmY3MmUxYTU2NDNiYzRiMjgwMGE4ZDIwZGQAJgAAAENoYXB0ZXIxU2NlbmUyLzZfcHV0X21hc3Nlc19pbl9vcmRlcl8yACAAAAA3MmY2MGJlNWVlMTI4MGQ0YzlmNjM1YmU2ZDNiYzg2OQApAAAAQ2hhcHRlcjFTY2VuZTIvNl9wdXRfbWFzc2VzX2luX29yZGVyXzJfZW4AIAAAAGE2NWQ4MWY2NDM5ZjUwODQ0OWI5MjQ0NzZlYTBhODBiACkAAABDaGFwdGVyMVNjZW5lMi82X3B1dF9tYXNzZXNfaW5fb3JkZXJfMl9lcwAgAAAAYmM3YTFjYmM2YmZhOWExNGE5MjY5NjEwOGE5NTg2ZjIAJgAAAENoYXB0ZXIxU2NlbmUyLzZfcHV0X21hc3Nlc19pbl9vcmRlcl8zACAAAAA0MTUzZDVlZWVkZjhkYzY0NDk0M2QzNjIwYzEyMTFlZAApAAAAQ2hhcHRlcjFTY2VuZTIvNl9wdXRfbWFzc2VzX2luX29yZGVyXzNfZW4AIAAAADEzMzQ0ZTJjZmUwNmJlMjQwYjVkNzYyODJiNDM5ZmQ1ACkAAABDaGFwdGVyMVNjZW5lMi82X3B1dF9tYXNzZXNfaW5fb3JkZXJfM19lcwAgAAAAZjY3MzQyNzUzYmY4YjdiNDJiMTcyMTUwY2U1Njg1Y2EALAAAAENoYXB0ZXIxU2NlbmUyLzdfcmFkaXVzX2FjdGl2aXR5X3NhbWVfbWFzc18xACAAAAAwMGYyNDQ5MjA0YjcxYTc0ZmEwNzM1YTg2M2Y3Zjg3ZAAvAAAAQ2hhcHRlcjFTY2VuZTIvN19yYWRpdXNfYWN0aXZpdHlfc2FtZV9tYXNzXzFfZW4AIAAAADg0MzI2ZjQ1NGQ2ZjRiYTQyODYzMzIxZjg5MjcwMzIwAC8AAABDaGFwdGVyMVNjZW5lMi83X3JhZGl1c19hY3Rpdml0eV9zYW1lX21hc3NfMV9lcwAgAAAAOTk3MTAxYjMyNDY0NjY4NDBiNWQwM2RjMTUyZThmNjcALAAAAENoYXB0ZXIxU2NlbmUyLzdfcmFkaXVzX2FjdGl2aXR5X3NhbWVfbWFzc18yACAAAABlMTE2OTkxOWZlMWYyNDg0NWI5MmIxNjAyNTNiM2E1ZgAvAAAAQ2hhcHRlcjFTY2VuZTIvN19yYWRpdXNfYWN0aXZpdHlfc2FtZV9tYXNzXzJfZW4AIAAAADc3NzA4NWM4NWRhODhlNDQ4OTIyZDA0OTlkZjVkMTdmAC8AAABDaGFwdGVyMVNjZW5lMi83X3JhZGl1c19hY3Rpdml0eV9zYW1lX21hc3NfMl9lcwAgAAAAYmQ2NWEwNjIxNjFkN2ZhNDFhNzJmZTIwM2E1YTIxMTcALAAAAENoYXB0ZXIxU2NlbmUyLzdfcmFkaXVzX2FjdGl2aXR5X3NhbWVfbWFzc18zACAAAAAyYTU4YzZiOGRiMzRkYmY0MDk5MmRkMzAwNzRjMmRiMQAvAAAAQ2hhcHRlcjFTY2VuZTIvN19yYWRpdXNfYWN0aXZpdHlfc2FtZV9tYXNzXzNfZW4AIAAAADFiMDJiODdmNzNhMWM1ZDRiYjJiMTYzMTkwYjRkMGU1AC8AAABDaGFwdGVyMVNjZW5lMi83X3JhZGl1c19hY3Rpdml0eV9zYW1lX21hc3NfM19lcwAgAAAAZTI0MDFhZTFmY2Y4OTI1NGI5ZWUyZjIxZDIyN2E1MjgALAAAAENoYXB0ZXIxU2NlbmUyLzdfcmFkaXVzX2FjdGl2aXR5X3NhbWVfbWFzc180ACAAAAA5ZDQ3NzliNWI0YjkwYmM0M2JjNWE1ZjhmNzJjYTllZgAvAAAAQ2hhcHRlcjFTY2VuZTIvN19yYWRpdXNfYWN0aXZpdHlfc2FtZV9tYXNzXzRfZW4AIAAAAGRiNmY2MTVhNjI3ZmNlODRmYTA0NGJiNjdlZTBmOWE3AC8AAABDaGFwdGVyMVNjZW5lMi83X3JhZGl1c19hY3Rpdml0eV9zYW1lX21hc3NfNF9lcwAgAAAAOGJlMDE3YzczNjZkYmVlNDQ4MDJmZWZiZTA5ZDk5ZjMACAAAAGNvbnRpbnVlACAAAABjODJhOGMwMzExNTVmMWI0NmEzNjY0OTljNTk0OGNmMwALAAAAY29udGludWVfZW4AIAAAAGQ5NmJiMGJjNzUzYTllMjQ0OTBlODM3YjcwODY4MWU4AAsAAABjb250aW51ZV9lcwAgAAAAYmFmZGU3YWZhMWVkMTExNGFhYzBjMTRkYjQ4ZTNjNmYAIQAAAExpbmVCcmVha2luZyBGb2xsb3dpbmcgQ2hhcmFjdGVycwAgAAAAZmFkZTQyZThiYzcxNGIwMThmYWM1MTNjMDQzZDMyM2IAHwAAAExpbmVCcmVha2luZyBMZWFkaW5nIENoYXJhY3RlcnMAIAAAAGQ4MmMxYjMxYzdlNzQyMzliZmYxMjIwNTg1NzA3ZDJiABIAAABNYXRlcmlhbHMvQ29sbGlkZXIAIAAAAGJiYjIzNWZmZjRmNDg0MjZiODYzYjM2MDU4YWI2NmQyABQAAABNYXRlcmlhbHMvRWRnZVBpY2tlcgAgAAAANGZmOTk2ZTNhMGE1NzQzYTM5ODdhYjYyMzExNjA2NjUAGAAAAE1hdGVyaWFscy9FZGdlUGlja2VySERSUAAgAAAAOTgwYzI0YzVhNTAxYTlhNDI5MzU2ZDE5MWFkMzU2YTkAFAAAAE1hdGVyaWFscy9GYWNlUGlja2VyACAAAAA1Njk1OTA0MDIwZjA2NGZkYWI1YWQyNjViMjc0YTYxNgAYAAAATWF0ZXJpYWxzL0ZhY2VQaWNrZXJIRFJQACAAAABhNTNlZjBkZDc2ZjJmZTc0ZWI1ZjQzMjY3ZDdjMDE5NQAXAAAATWF0ZXJpYWxzL0ludmlzaWJsZUZhY2UAIAAAADk3OGJiY2Y1MDUwMjQ0ZjFiOTUxMjhjMDQxMDNmNjI4ABAAAABNYXRlcmlhbHMvTm9EcmF3ACAAAAA4Y2I0ZDZmZWU3N2ZkNGVlNjg5NWYwOGIyNDBkNjI1ZgAbAAAATWF0ZXJpYWxzL1Byb0J1aWxkZXJEZWZhdWx0ACAAAABjMjI3NzdkNmU4NjhlNGYyZmI0MjE5MTMzODZiMTU0ZQAhAAAATWF0ZXJpYWxzL1N0YW5kYXJkVmVydGV4Q29sb3JIRFJQACAAAABjMzU2OTNjMDc5ZjM4NDBmNzkzOGE0YTMyMzA5NmU4NAAhAAAATWF0ZXJpYWxzL1N0YW5kYXJkVmVydGV4Q29sb3JMV1JQACAAAAAwNzdhMDAzYjFkZTFlNGMzNTkyM2JlN2EyMWI1ZDk0OAARAAAATWF0ZXJpYWxzL1RyaWdnZXIAIAAAAGExZTk3Y2JmMjUzODI0MWI2OTFhYWU4MjQzYjVmYjEwABoAAABNYXRlcmlhbHMvVW5saXRWZXJ0ZXhDb2xvcgAgAAAAMjk5NjZjM2MwOTA3YjQ5YjU4YzRlNTkzNDJkMDIwY2YAFgAAAE1hdGVyaWFscy9WZXJ0ZXhQaWNrZXIAIAAAADMwYTg1NzVlMWQ0Y2M0ZTAxYTg4ZmZiZjRmOTczZDgwABoAAABNYXRlcmlhbHMvVmVydGV4UGlja2VySERSUAAgAAAAN2Q1YzlmYzI4N2EyYWE5NDVhOTgyMDNkNDEyODI5MjMAGAAAAE1hdGVyaWFscy9ZRmxpcENvbG9yTWVzaAAgAAAAYWY0ZTFmNmY3MTFjNGNiNDQ5MzVmMGJiNWZjZThjNWEADgAAAE5hcnJhdGlvbl90ZXN0ACAAAABhNzY2ZTU5ZmRmNmNkYWU0OTkxMjQ5M2U5NTI2NzA2ZQARAAAATmFycmF0aW9uX3Rlc3RfZW4AIAAAADE5ZDM1NDliNzM1MzU1ZTRiOWU2ZjkwZGVjYjAyNmIyAAoAAABDaDFfc2NlbmUxACAAAAA0NTY0OWQyNmUyYjAwMjk0ZTlmNDBmYjM2ZTU1MGU2YwQCAAAAAAoAAABFbmRDcmVkaXRzACAAAAAzNDg1M2M4YmE4N2U5MGM0OWI3NWFjYzI4NDBlOTdiNwQGAAAAAAkAAABTdGFydE1lbnUAIAAAADljNWRiNDliZTQ1YWM1NjRkOTM4MmMwNmZjMzAxMzEyBAAAAAAACAAAAFR1dG9yaWFsACAAAABhZDU1N2Q3NzI5Y2IxZTk0NDg2YjczNzI5MTk0YTk5NQQBAAAAABkAAABDb25mRGVtb19wYXJ0MV9vbmUtbWFzcy15ACAAAAAxNTI0NTBhZGZkMzQ2OTQ0M2I4YTc3MDIwNWYzMWIzYgQDAAAAABkAAABDb25mRGVtb19wYXJ0Ml90d28tbWFzc2VzACAAAAA2OTAzMjZlYjJkNDYyNzY0ZDgyNThkNWZiOWQxMWE0YQQEAAAAAB0AAABDb25mRGVtb19wYXJ0M19yYW5raW5nLW1hc3NlcwAgAAAAY2JhZTVlYmRmMDdiYjkwNDhhMmY0ZWQzYTY1N2ZhMTYEBQAAAAAhAAAAUHJlZmFicy9fUGxhbmVUaGF0Q2FsbHNJbnRvUGx1Z2luACAAAAA4NWVhMWQyMGVkOWJlMDg0Y2FlNmRkZGE4YWExZmQyNAAOAAAAUHJlZmFicy9TcGhlcmUAIAAAADFmYTU4M2RhZmZkZjA4MzRmYWYzNzkyZjRhOGQ4MGVjABEAAABQcmVmYWJzL1Nwb3RsaWdodAAgAAAAMTE3ZjQ3Mzk4OTBmMGUwNDViYzljNzQ1Nzk2NjZhZjUADAAAAFNoYWRlcnMvTWVzaAAgAAAANDRlOGRkOWVkNmY2ODFjNDA4NTJmNTQ1MTNjOGVhMTcAFgAAAFNwcml0ZSBBc3NldHMvRW1vamlPbmUAIAAAAGM0MTAwNWMxMjliYTRkNjY5MTFiNzUyMjlmZDcwYjQ1ACAAAABTdHlsZSBTaGVldHMvRGVmYXVsdCBTdHlsZSBTaGVldAAgAAAAZjk1MmMwODJjYjAzNDUxZGFlZDNlZTk2OGFjNmM2M2UAEgAAAHRlbXBvcmFyeV9lbmRpbmdfMQAgAAAAY2IzNmRmNDFmODQ4ZjExNDZhMzczMmJkOTI1OGMzMTAAFQAAAHRlbXBvcmFyeV9lbmRpbmdfMV9lbgAgAAAANDgzNjJhYjYxMGI5YWI4NGM4YmExZWVmM2ViZWVlZjkAFQAAAHRlbXBvcmFyeV9lbmRpbmdfMV9lcwAgAAAANGQ2M2Q5OGE4YmJiNTY3NGE4ZWIxNWQxMjMwZmQzNTkAEgAAAHRlbXBvcmFyeV9lbmRpbmdfMgAgAAAANTdmMjVmNjk5NzRlNGI0NDA5ZjU5MTljNzZiNzFkYjIAFQAAAHRlbXBvcmFyeV9lbmRpbmdfMl9lbgAgAAAAZDFjZmZjNzgxYWZjMjJmNGFiMGZjZjNjMWI2OWIwYjMAFQAAAHRlbXBvcmFyeV9lbmRpbmdfMl9lcwAgAAAAY2RmZDNjN2ZkMGQzY2FlNGRhMjA1MTFlYTZhYWZhODQAEgAAAHRlbXBvcmFyeV9lbmRpbmdfMwAgAAAAMmQwNDhkNGM3MTdlNmFmNDY4YjFhMWFhMGRmMTZmYTUAFQAAAHRlbXBvcmFyeV9lbmRpbmdfM19lbgAgAAAAZDc5M2UwMGNiZGQ5ZmVlNDk5NTI4MzI2MGI3YjFiZDUAFQAAAHRlbXBvcmFyeV9lbmRpbmdfM19lcwAgAAAAOWVjMjNkZGMxNGVkYTcwNDViZDlhMzA4MThlZGM4YWYAFQAAAFRlc3RTZXR1cC9UcmFja2luZ1JpZwAgAAAAZTIyZTdlZmVlMzhjZDQ1NDY4Y2Y0YWRiOWMxNGY2NjUAGAAAAFRleHR1cmVzL0dyaWRCb3hfRGVmYXVsdAAgAAAANjM0NGJmOTZmYmRhOTQxNDFhNTI1MDQ2ZDA4OGZiMjMADAAAAFRNUCBTZXR0aW5ncwAgAAAAM2Y1YjVkZmY2N2E5NDIyODlhOWRlZmE0MTZiMjA2ZjMAFgAAAFR1dG9yaWFsL1R1dG9yaWFsX0dyYWIAIAAAAGE3ZDI4NjQ5NzgwYWQ1NDRmOTJkYzRmOTVjOTViZTcxABkAAABUdXRvcmlhbC9UdXRvcmlhbF9HcmFiX2VuACAAAAA1ZGMyOWNmODI0YTY1YTM0MGI3NDQ0MjkzZjc3MzY0YgAZAAAAVHV0b3JpYWwvVHV0b3JpYWxfR3JhYl9lcwAgAAAAYzkwZjliNWQ1MTNlZGEzNDE4NjI4ZjJhNzIwODUwYjEAFwAAAFR1dG9yaWFsL1R1dG9yaWFsX0ludHJvACAAAAA0NWI2YmRjOGExMDI2MGE0MGE2Yzk1ZjNkNGUxZDEyOQAaAAAAVHV0b3JpYWwvVHV0b3JpYWxfSW50cm9fZW4AIAAAADNiOTVkMzg2YmU1NGI2MjQ0ODI3YzAxNzQ5NGNmZmRkABoAAABUdXRvcmlhbC9UdXRvcmlhbF9JbnRyb19lcwAgAAAAYTViMTk5OWEwNzVhNGY4NDg5OGU1NjliZTliZGZhY2MAJgAAAFR1dG9yaWFsL1R1dG9yaWFsX01lbnVfRm9yZ2V0X0NvbnRyb2xzACAAAABkMTlmZTU2NDc5OTNmM2Q0Mjg0OTUxZmE0ZTI0OTYxMwApAAAAVHV0b3JpYWwvVHV0b3JpYWxfTWVudV9Gb3JnZXRfQ29udHJvbHNfZW4AIAAAADAwMzkwNjVkZGY0Y2JjMjRjOTQwNmY2NzEwN2U5ZmJmACkAAABUdXRvcmlhbC9UdXRvcmlhbF9NZW51X0ZvcmdldF9Db250cm9sc19lcwAgAAAAOGY1ZGFiNmQxMmMxNWQ5NDE4OWQ3M2MyNmRhZDI4OWMAGwAAAFR1dG9yaWFsL1R1dG9yaWFsX01lbnVfRnVsbAAgAAAANmE4NDY4NmE4NTJlNjc3NDRhMTQwNjZlYTZjMDhkZjQAHgAAAFR1dG9yaWFsL1R1dG9yaWFsX01lbnVfRnVsbF9lbgAgAAAANDk3Y2U5MWZjMjcyODM1NDRiYmVlOWM1NTE1MmYyMzIAGwAAAFR1dG9yaWFsL1R1dG9yaWFsX01lbnVfT3BlbgAgAAAAZDI4MjA1OGI4YjI3MmMzNDNiOTQzODNlN2I2MzQ1MWIAHgAAAFR1dG9yaWFsL1R1dG9yaWFsX01lbnVfT3Blbl9lbgAgAAAANGIzZDA5ZDE1NmY0NjU5NDI4MjQxZjk2MWZlNDMyNzgAHgAAAFR1dG9yaWFsL1R1dG9yaWFsX01lbnVfT3Blbl9lcwAgAAAAM2NiZWE3MzNhMjdmZWJiNDU5MzQ0YzA2MzM3MWExOGEAHgAAAFR1dG9yaWFsL1R1dG9yaWFsX01lbnVfT3B0aW9ucwAgAAAAYWNlNjRjNTE1N2M4MzFlNGY4YjJkNWU2ZmNjN2IzYjUAIQAAAFR1dG9yaWFsL1R1dG9yaWFsX01lbnVfT3B0aW9uc19lbgAgAAAANjU4NGIyZDZlYzZmNTA2NGNiMTc2MjY2YmQzYWVkOTgAIQAAAFR1dG9yaWFsL1R1dG9yaWFsX01lbnVfT3B0aW9uc19lcwAgAAAAMjM5NjA3MDU2YmJjOTUzNDk4ZTAwZTllZGY5OTUxMTYAIwAAAFR1dG9yaWFsL1R1dG9yaWFsX01lbnVfU2NlbmVfU2VsZWN0ACAAAABkOTkzMGE5YzhhMTdkMmE0OTk3NWQ3NzFiYjU1ZTc1MQAmAAAAVHV0b3JpYWwvVHV0b3JpYWxfTWVudV9TY2VuZV9TZWxlY3RfZW4AIAAAAGJiYjUzODY5YmExNDkxMjRkOTQ3ZmZmMDJmYWE1ZDY5ACYAAABUdXRvcmlhbC9UdXRvcmlhbF9NZW51X1NjZW5lX1NlbGVjdF9lcwAgAAAAZDViYmU5MTE5YjkxNmUyNGVhZjFhY2ZiNWMzZjhmZDkAGwAAAFR1dG9yaWFsL1R1dG9yaWFsX1B1c2gmUHVsbAAgAAAAMTMwMjIwYjMyMDVlNmZjNGRhMWE2MGVmMzNjNWJhNzkAHgAAAFR1dG9yaWFsL1R1dG9yaWFsX1B1c2gmUHVsbF9lbgAgAAAAOGRiMjY5YmQxYjMyZmJkNGY5MTAzMzAyMjhiZjRiMGQAHgAAAFR1dG9yaWFsL1R1dG9yaWFsX1B1c2gmUHVsbF9lcwAgAAAANWVmM2ZkZmZjOTdjNjNhNGRiOTI2Yzk5NDhmNmIxMWIAGgAAAFR1dG9yaWFsL1R1dG9yaWFsX1RlbGVwb3J0ACAAAABhOTZlNTM3ZDVkYjIwNDZiNmFmNjZlZWFiOGJkMGI4NwAdAAAAVHV0b3JpYWwvVHV0b3JpYWxfVGVsZXBvcnRfZW4AIAAAADg3MWFlYzdlZDEyOTg3NjQxYjQ5NGVkZjk1MTY2Y2VmAB0AAABUdXRvcmlhbC9UdXRvcmlhbF9UZWxlcG9ydF9lcwAgAAAAOGY3MGRiNWViMGViNmUwNDBiNDdjYzAzNDMyNzM0ODkAIQAAAFR1dG9yaWFsL1R1dG9yaWFsX1RlbGVwb3J0X1Rlc3RfMQAgAAAAM2UxYmU3ZGFkZmEwNjRkZTViOGEzODYzOTg4ZTJlNDUAJAAAAFR1dG9yaWFsL1R1dG9yaWFsX1RlbGVwb3J0X1Rlc3RfMV9lbgAgAAAANmRkNDdmYWE3MGIwN2EwNGNhMDA5NGY5MDA5ZmJiMmEAJAAAAFR1dG9yaWFsL1R1dG9yaWFsX1RlbGVwb3J0X1Rlc3RfMV9lcwAgAAAAZmNiZTRhM2ZmZTA4NDNjNDA5ZThlYzU4NWEyNzdhMmMAIQAAAFR1dG9yaWFsL1R1dG9yaWFsX1RlbGVwb3J0X1Rlc3RfMgAgAAAAMDM1MmE1ZWYyZWZkNzRjZjZiNTlkMmIyZmY0NzE2NGYAJAAAAFR1dG9yaWFsL1R1dG9yaWFsX1RlbGVwb3J0X1Rlc3RfMl9lbgAgAAAAZjIwNjMyNDEyMzdmYzg0NDI4NzQ5ZmU3Y2M3N2E3MTcAJAAAAFR1dG9yaWFsL1R1dG9yaWFsX1RlbGVwb3J0X1Rlc3RfMl9lcwAgAAAAOTYxN2ZkNThiMGViNTRkNGFiY2ZlZTY3OGIxZmQxY2EESkekKwSaz8EH","m_BucketDataString":"zwEAAAQAAAABAAAAAAAAAFYAAAABAAAAAQAAAKIAAAABAAAAAgAAAAABAAABAAAAAwAAAF4BAAABAAAABAAAAG8BAAABAAAABAAAAJQBAAACAAAABAAAAAUAAACfAQAAAQAAAAUAAACwAQAAAQAAAAUAAADVAQAAAQAAAAYAAAAUAgAAAQAAAAYAAAA5AgAAAQAAAAcAAABPAgAAAQAAAAcAAAB0AgAAAQAAAAcAAACCAgAAAgAAAAcAAAAIAAAAjgIAAAEAAAAIAAAApAIAAAEAAAAIAAAAyQIAAAEAAAAIAAAA1wIAAAEAAAAJAAAA8gIAAAEAAAAJAAAAFwMAAAEAAAAKAAAARQMAAAEAAAAKAAAAagMAAAEAAAALAAAAmwMAAAEAAAALAAAAwAMAAAEAAAAMAAAA8QMAAAEAAAAMAAAAFgQAAAEAAAANAAAARAQAAAEAAAANAAAAaQQAAAEAAAAOAAAAmgQAAAEAAAAOAAAAvwQAAAEAAAAPAAAA8AQAAAEAAAAPAAAAFQUAAAEAAAAQAAAAQQUAAAEAAAAQAAAAZgUAAAEAAAARAAAAlQUAAAEAAAARAAAAugUAAAEAAAASAAAA6QUAAAEAAAASAAAADgYAAAEAAAATAAAAOgYAAAEAAAATAAAAXwYAAAEAAAAUAAAAjgYAAAEAAAAUAAAAswYAAAEAAAAVAAAA4gYAAAEAAAAVAAAABwcAAAEAAAAWAAAAMwcAAAEAAAAWAAAAWAcAAAEAAAAXAAAAhwcAAAEAAAAXAAAArAcAAAEAAAAYAAAA2wcAAAEAAAAYAAAAAAgAAAEAAAAZAAAAJggAAAEAAAAZAAAASwgAAAEAAAAaAAAAdAgAAAEAAAAaAAAAmQgAAAEAAAAbAAAAwggAAAEAAAAbAAAA5wgAAAEAAAAcAAAADQkAAAEAAAAcAAAAMgkAAAEAAAAdAAAAWwkAAAEAAAAdAAAAgAkAAAEAAAAeAAAAqQkAAAEAAAAeAAAAzgkAAAEAAAAfAAAA9AkAAAEAAAAfAAAAGQoAAAEAAAAgAAAAQgoAAAEAAAAgAAAAZwoAAAEAAAAhAAAAkAoAAAEAAAAhAAAAtQoAAAEAAAAiAAAA2goAAAEAAAAiAAAA/woAAAEAAAAjAAAAJwsAAAEAAAAjAAAATAsAAAEAAAAkAAAAdAsAAAEAAAAkAAAAmQsAAAEAAAAlAAAAvgsAAAEAAAAlAAAA4wsAAAEAAAAmAAAACwwAAAEAAAAmAAAAMAwAAAEAAAAnAAAAWAwAAAEAAAAnAAAAfQwAAAEAAAAoAAAAogwAAAEAAAAoAAAAxwwAAAEAAAApAAAA7wwAAAEAAAApAAAAFA0AAAEAAAAqAAAAPA0AAAEAAAAqAAAAYQ0AAAEAAAArAAAAkg0AAAEAAAArAAAAtw0AAAEAAAAsAAAA6w0AAAEAAAAsAAAAEA4AAAEAAAAtAAAARA4AAAEAAAAtAAAAaQ4AAAEAAAAuAAAAmg4AAAEAAAAuAAAAvw4AAAEAAAAvAAAA8w4AAAEAAAAvAAAAGA8AAAEAAAAwAAAATA8AAAEAAAAwAAAAcQ8AAAEAAAAxAAAAoA8AAAEAAAAxAAAAxQ8AAAEAAAAyAAAA9w8AAAEAAAAyAAAAHBAAAAEAAAAzAAAAThAAAAEAAAAzAAAAcxAAAAEAAAA0AAAAohAAAAEAAAA0AAAAxxAAAAEAAAA1AAAA+RAAAAEAAAA1AAAAHhEAAAEAAAA2AAAAUBEAAAEAAAA2AAAAdREAAAEAAAA3AAAAphEAAAEAAAA3AAAAyxEAAAEAAAA4AAAA/xEAAAEAAAA4AAAAJBIAAAEAAAA5AAAAWBIAAAEAAAA5AAAAfRIAAAEAAAA6AAAArhIAAAEAAAA6AAAA0xIAAAEAAAA7AAAABxMAAAEAAAA7AAAALBMAAAEAAAA8AAAAYBMAAAEAAAA8AAAAhRMAAAEAAAA9AAAAthMAAAEAAAA9AAAA2xMAAAEAAAA+AAAADxQAAAEAAAA+AAAANBQAAAEAAAA/AAAAaBQAAAEAAAA/AAAAjRQAAAEAAABAAAAAvhQAAAEAAABAAAAA4xQAAAEAAABBAAAAFxUAAAEAAABBAAAAPBUAAAEAAABCAAAAcBUAAAEAAABCAAAAlRUAAAEAAABDAAAAvxUAAAEAAABDAAAA5BUAAAEAAABEAAAAERYAAAEAAABEAAAANhYAAAEAAABFAAAAYxYAAAEAAABFAAAAiBYAAAEAAABGAAAAshYAAAEAAABGAAAA1xYAAAEAAABHAAAABBcAAAEAAABHAAAAKRcAAAEAAABIAAAAVhcAAAEAAABIAAAAexcAAAEAAABJAAAArxcAAAEAAABJAAAA1BcAAAEAAABKAAAACxgAAAEAAABKAAAAMBgAAAEAAABLAAAAZxgAAAEAAABLAAAAjBgAAAEAAABMAAAAwBgAAAEAAABMAAAA5RgAAAEAAABNAAAAHBkAAAEAAABNAAAAQRkAAAEAAABOAAAAeBkAAAEAAABOAAAAnRkAAAEAAABPAAAA0RkAAAEAAABPAAAA9hkAAAEAAABQAAAALRoAAAEAAABQAAAAUhoAAAEAAABRAAAAiRoAAAEAAABRAAAArhoAAAEAAABSAAAA4hoAAAEAAABSAAAABxsAAAEAAABTAAAAPhsAAAEAAABTAAAAYxsAAAEAAABUAAAAmhsAAAEAAABUAAAAvxsAAAEAAABVAAAA8xsAAAEAAABVAAAAGBwAAAEAAABWAAAATxwAAAEAAABWAAAAdBwAAAEAAABXAAAAqxwAAAEAAABXAAAA0BwAAAEAAABYAAAABB0AAAEAAABYAAAAKR0AAAEAAABZAAAAYB0AAAEAAABZAAAAhR0AAAEAAABaAAAAvB0AAAEAAABaAAAA4R0AAAEAAABbAAAAFR4AAAEAAABbAAAAOh4AAAEAAABcAAAAcR4AAAEAAABcAAAAlh4AAAEAAABdAAAAzR4AAAEAAABdAAAA8h4AAAEAAABeAAAAJh8AAAEAAABeAAAASx8AAAEAAABfAAAAgh8AAAEAAABfAAAApx8AAAEAAABgAAAA3h8AAAEAAABgAAAAAyAAAAEAAABhAAAAMSAAAAEAAABhAAAAViAAAAEAAABiAAAAhyAAAAEAAABiAAAArCAAAAEAAABjAAAA3SAAAAEAAABjAAAAAiEAAAEAAABkAAAAMCEAAAEAAABkAAAAVSEAAAEAAABlAAAAhiEAAAEAAABlAAAAqyEAAAEAAABmAAAA3CEAAAEAAABmAAAAASIAAAEAAABnAAAALyIAAAEAAABnAAAAVCIAAAEAAABoAAAAhSIAAAEAAABoAAAAqiIAAAEAAABpAAAA2yIAAAEAAABpAAAAACMAAAEAAABqAAAANSMAAAEAAABqAAAAWiMAAAEAAABrAAAAkiMAAAEAAABrAAAAtyMAAAEAAABsAAAA7yMAAAEAAABsAAAAFCQAAAEAAABtAAAASSQAAAEAAABtAAAAbiQAAAEAAABuAAAApiQAAAEAAABuAAAAyyQAAAEAAABvAAAAAyUAAAEAAABvAAAAKCUAAAEAAABwAAAAXSUAAAEAAABwAAAAgiUAAAEAAABxAAAAuiUAAAEAAABxAAAA3yUAAAEAAAByAAAAFyYAAAEAAAByAAAAPCYAAAEAAABzAAAAcSYAAAEAAABzAAAAliYAAAEAAAB0AAAAziYAAAEAAAB0AAAA8yYAAAEAAAB1AAAAKycAAAEAAAB1AAAAUCcAAAEAAAB2AAAAhScAAAEAAAB2AAAAqicAAAEAAAB3AAAA4icAAAEAAAB3AAAABygAAAEAAAB4AAAAPygAAAEAAAB4AAAAZCgAAAEAAAB5AAAAmSgAAAEAAAB5AAAAvigAAAEAAAB6AAAA9igAAAEAAAB6AAAAGykAAAEAAAB7AAAAUykAAAEAAAB7AAAAeCkAAAEAAAB8AAAArSkAAAEAAAB8AAAA0ikAAAEAAAB9AAAACioAAAEAAAB9AAAALyoAAAEAAAB+AAAAZyoAAAEAAAB+AAAAjCoAAAEAAAB/AAAAtyoAAAEAAAB/AAAA3CoAAAEAAACAAAAACisAAAEAAACAAAAALysAAAEAAACBAAAAXSsAAAEAAACBAAAAgisAAAEAAACCAAAArSsAAAEAAACCAAAA0isAAAEAAACDAAAAACwAAAEAAACDAAAAJSwAAAEAAACEAAAAUywAAAEAAACEAAAAeCwAAAEAAACFAAAAoywAAAEAAACFAAAAyCwAAAEAAACGAAAA9iwAAAEAAACGAAAAGy0AAAEAAACHAAAASS0AAAEAAACHAAAAbi0AAAEAAACIAAAAny0AAAEAAACIAAAAxC0AAAEAAACJAAAA+C0AAAEAAACJAAAAHS4AAAEAAACKAAAAUS4AAAEAAACKAAAAdi4AAAEAAACLAAAApy4AAAEAAACLAAAAzC4AAAEAAACMAAAAAC8AAAEAAACMAAAAJS8AAAEAAACNAAAAWS8AAAEAAACNAAAAfi8AAAEAAACOAAAAry8AAAEAAACOAAAA1C8AAAEAAACPAAAACDAAAAEAAACPAAAALTAAAAEAAACQAAAAYTAAAAEAAACQAAAAhjAAAAEAAACRAAAAtzAAAAEAAACRAAAA3DAAAAEAAACSAAAAEDEAAAEAAACSAAAANTEAAAEAAACTAAAAaTEAAAEAAACTAAAAjjEAAAEAAACUAAAAmzEAAAEAAACUAAAAwDEAAAEAAACVAAAA0DEAAAEAAACVAAAA9TEAAAEAAACWAAAABTIAAAEAAACWAAAAKjIAAAEAAACXAAAAUDIAAAEAAACXAAAAdTIAAAEAAACYAAAAmTIAAAEAAACYAAAAvjIAAAEAAACZAAAA1TIAAAEAAACZAAAA+jIAAAEAAACaAAAAEzMAAAEAAACaAAAAODMAAAEAAACbAAAAVTMAAAEAAACbAAAAejMAAAEAAACcAAAAkzMAAAEAAACcAAAAuDMAAAEAAACdAAAA1TMAAAEAAACdAAAA+jMAAAEAAACeAAAAFjQAAAEAAACeAAAAOzQAAAEAAACfAAAAUDQAAAEAAACfAAAAdTQAAAEAAACgAAAAlTQAAAEAAACgAAAAujQAAAEAAAChAAAA4DQAAAEAAAChAAAABTUAAAEAAACiAAAAKzUAAAEAAACiAAAAUDUAAAEAAACjAAAAZjUAAAEAAACjAAAAizUAAAEAAACkAAAAqjUAAAEAAACkAAAAzzUAAAEAAAClAAAA6jUAAAEAAAClAAAADzYAAAEAAACmAAAALjYAAAEAAACmAAAAUzYAAAEAAACnAAAAcDYAAAEAAACnAAAAlTYAAAEAAACoAAAAqDYAAAEAAACoAAAAzTYAAAEAAACpAAAA4zYAAAEAAACpAAAACDcAAAEAAACqAAAAFzcAAAEAAACqAAAAPDcAAAEAAACqAAAAQTcAAAEAAACrAAAAUDcAAAEAAACrAAAAdTcAAAEAAACrAAAAejcAAAEAAACsAAAAiDcAAAEAAACsAAAArTcAAAEAAACsAAAAsjcAAAEAAACtAAAAvzcAAAEAAACtAAAA5DcAAAEAAACtAAAA6TcAAAEAAACuAAAABzgAAAEAAACuAAAALDgAAAEAAACuAAAAMTgAAAEAAACvAAAATzgAAAEAAACvAAAAdDgAAAEAAACvAAAAeTgAAAEAAACwAAAAmzgAAAEAAACwAAAAwDgAAAEAAACwAAAAxTgAAAEAAACxAAAA6zgAAAEAAACxAAAAEDkAAAEAAACyAAAAIzkAAAEAAACyAAAASDkAAAEAAACzAAAAXjkAAAEAAACzAAAAgzkAAAEAAAC0AAAAlDkAAAEAAAC0AAAAuTkAAAIAAAC1AAAAtgAAANQ5AAACAAAAtQAAALYAAAD5OQAAAQAAALcAAAAeOgAAAQAAALcAAABDOgAAAQAAALgAAABaOgAAAQAAALgAAAB/OgAAAQAAALkAAACZOgAAAQAAALkAAAC+OgAAAQAAALoAAADYOgAAAQAAALoAAAD9OgAAAQAAALsAAAAUOwAAAQAAALsAAAA5OwAAAQAAALwAAABTOwAAAQAAALwAAAB4OwAAAQAAAL0AAACSOwAAAQAAAL0AAAC3OwAAAQAAAL4AAADOOwAAAQAAAL4AAADzOwAAAQAAAL8AAAANPAAAAQAAAL8AAAAyPAAAAQAAAMAAAABMPAAAAQAAAMAAAABxPAAAAQAAAMEAAACLPAAAAQAAAMEAAACwPAAAAQAAAMIAAADNPAAAAQAAAMIAAADyPAAAAQAAAMMAAAADPQAAAQAAAMMAAAAoPQAAAQAAAMQAAABDPQAAAQAAAMQAAABoPQAAAQAAAMUAAACGPQAAAQAAAMUAAACrPQAAAQAAAMYAAADJPQAAAQAAAMYAAADuPQAAAQAAAMcAAAAKPgAAAQAAAMcAAAAvPgAAAQAAAMgAAABOPgAAAQAAAMgAAABzPgAAAQAAAMkAAACSPgAAAQAAAMkAAAC3PgAAAQAAAMoAAADiPgAAAQAAAMoAAAAHPwAAAQAAAMsAAAA1PwAAAQAAAMsAAABaPwAAAQAAAMwAAACIPwAAAQAAAMwAAACtPwAAAQAAAM0AAADNPwAAAQAAAM0AAADyPwAAAQAAAM4AAAAVQAAAAQAAAM4AAAA6QAAAAQAAAM8AAABaQAAAAQAAAM8AAAB/QAAAAQAAANAAAACiQAAAAQAAANAAAADHQAAAAQAAANEAAADqQAAAAQAAANEAAAAPQQAAAQAAANIAAAAyQQAAAQAAANIAAABXQQAAAQAAANMAAAB9QQAAAQAAANMAAACiQQAAAQAAANQAAADIQQAAAQAAANQAAADtQQAAAQAAANUAAAAVQgAAAQAAANUAAAA6QgAAAQAAANYAAABlQgAAAQAAANYAAACKQgAAAQAAANcAAAC1QgAAAQAAANcAAADaQgAAAQAAANgAAAD6QgAAAQAAANgAAAAfQwAAAQAAANkAAABCQwAAAQAAANkAAABnQwAAAQAAANoAAACKQwAAAQAAANoAAACvQwAAAQAAANsAAADOQwAAAQAAANsAAADzQwAAAQAAANwAAAAVRAAAAQAAANwAAAA6RAAAAQAAAN0AAABcRAAAAQAAAN0AAACBRAAAAQAAAN4AAACnRAAAAQAAAN4AAADMRAAAAQAAAN8AAAD1RAAAAQAAAN8AAAAaRQAAAQAAAOAAAABDRQAAAQAAAOAAAABoRQAAAQAAAOEAAACORQAAAQAAAOEAAACzRQAAAQAAAOIAAADcRQAAAQAAAOIAAAABRgAAAQAAAOMAAAAqRgAAAQAAAOMAAABPRgAAAgAAAAIAAAAAAAAAVEYAAAIAAAADAAAAAAAAAA==","m_EntryDataString":"5AAAAAAAAAAAAAAA/////wAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAP////8AAAAARwMAAAEAAAAAAAAAAgAAAAAAAAD/////AAAAAIwGAAACAAAAAAAAAAMAAAAAAAAA/////wAAAADTCQAAAwAAAAAAAAAEAAAAAQAAAAEAAADyJawT/////wQAAAABAAAABQAAAAEAAAABAAAA8iWsE/////8HAAAAAQAAAAYAAAABAAAAAAAAABlYpDX/////CQAAAAIAAAAHAAAAAQAAAM0BAABKR6Qr/////wsAAAADAAAACAAAAAEAAADOAQAAms/BB/////8PAAAAAwAAAAkAAAACAAAA/////wAAAAD/////EgAAAAQAAAAKAAAAAgAAAP////8AAAAA/////xQAAAAEAAAACwAAAAIAAAD/////AAAAAP////8WAAAABQAAAAwAAAACAAAA/////wAAAAD/////GAAAAAUAAAANAAAAAgAAAP////8AAAAA/////xoAAAAEAAAADgAAAAIAAAD/////AAAAAP////8cAAAABQAAAA8AAAACAAAA/////wAAAAD/////HgAAAAUAAAAQAAAAAgAAAP////8AAAAA/////yAAAAAEAAAAEQAAAAIAAAD/////AAAAAP////8iAAAABQAAABIAAAACAAAA/////wAAAAD/////JAAAAAUAAAATAAAAAgAAAP////8AAAAA/////yYAAAAEAAAAFAAAAAIAAAD/////AAAAAP////8oAAAABQAAABUAAAACAAAA/////wAAAAD/////KgAAAAUAAAAWAAAAAgAAAP////8AAAAA/////ywAAAAEAAAAFwAAAAIAAAD/////AAAAAP////8uAAAABQAAABgAAAACAAAA/////wAAAAD/////MAAAAAUAAAAZAAAAAgAAAP////8AAAAA/////zIAAAAEAAAAGgAAAAIAAAD/////AAAAAP////80AAAABQAAABsAAAACAAAA/////wAAAAD/////NgAAAAUAAAAcAAAAAgAAAP////8AAAAA/////zgAAAAEAAAAHQAAAAIAAAD/////AAAAAP////86AAAABQAAAB4AAAACAAAA/////wAAAAD/////PAAAAAUAAAAfAAAAAgAAAP////8AAAAA/////z4AAAAEAAAAIAAAAAIAAAD/////AAAAAP////9AAAAABQAAACEAAAACAAAA/////wAAAAD/////QgAAAAUAAAAiAAAAAgAAAP////8AAAAA/////0QAAAAEAAAAIwAAAAIAAAD/////AAAAAP////9GAAAABQAAACQAAAACAAAA/////wAAAAD/////SAAAAAUAAAAlAAAAAgAAAP////8AAAAA/////0oAAAAEAAAAJgAAAAIAAAD/////AAAAAP////9MAAAABQAAACcAAAACAAAA/////wAAAAD/////TgAAAAUAAAAoAAAAAgAAAP////8AAAAA/////1AAAAAEAAAAKQAAAAIAAAD/////AAAAAP////9SAAAABQAAACoAAAACAAAA/////wAAAAD/////VAAAAAUAAAArAAAAAgAAAP////8AAAAA/////1YAAAAEAAAALAAAAAIAAAD/////AAAAAP////9YAAAABQAAAC0AAAACAAAA/////wAAAAD/////WgAAAAUAAAAuAAAAAgAAAP////8AAAAA/////1wAAAAEAAAALwAAAAIAAAD/////AAAAAP////9eAAAABQAAADAAAAACAAAA/////wAAAAD/////YAAAAAUAAAAxAAAAAgAAAP////8AAAAA/////2IAAAAEAAAAMgAAAAIAAAD/////AAAAAP////9kAAAABQAAADMAAAACAAAA/////wAAAAD/////ZgAAAAUAAAA0AAAAAgAAAP////8AAAAA/////2gAAAAEAAAANQAAAAIAAAD/////AAAAAP////9qAAAABQAAADYAAAACAAAA/////wAAAAD/////bAAAAAUAAAA3AAAAAgAAAP////8AAAAA/////24AAAAEAAAAOAAAAAIAAAD/////AAAAAP////9wAAAABQAAADkAAAACAAAA/////wAAAAD/////cgAAAAUAAAA6AAAAAgAAAP////8AAAAA/////3QAAAAEAAAAOwAAAAIAAAD/////AAAAAP////92AAAABQAAADwAAAACAAAA/////wAAAAD/////eAAAAAUAAAA9AAAAAgAAAP////8AAAAA/////3oAAAAEAAAAPgAAAAIAAAD/////AAAAAP////98AAAABQAAAD8AAAACAAAA/////wAAAAD/////fgAAAAUAAABAAAAAAgAAAP////8AAAAA/////4AAAAAEAAAAQQAAAAIAAAD/////AAAAAP////+CAAAABQAAAEIAAAACAAAA/////wAAAAD/////hAAAAAUAAABDAAAAAgAAAP////8AAAAA/////4YAAAAEAAAARAAAAAIAAAD/////AAAAAP////+IAAAABQAAAEUAAAACAAAA/////wAAAAD/////igAAAAUAAABGAAAAAgAAAP////8AAAAA/////4wAAAAEAAAARwAAAAIAAAD/////AAAAAP////+OAAAABQAAAEgAAAACAAAA/////wAAAAD/////kAAAAAUAAABJAAAAAgAAAP////8AAAAA/////5IAAAAEAAAASgAAAAIAAAD/////AAAAAP////+UAAAABQAAAEsAAAACAAAA/////wAAAAD/////lgAAAAUAAABMAAAAAgAAAP////8AAAAA/////5gAAAAEAAAATQAAAAIAAAD/////AAAAAP////+aAAAABQAAAE4AAAACAAAA/////wAAAAD/////nAAAAAUAAABPAAAAAgAAAP////8AAAAA/////54AAAAEAAAAUAAAAAIAAAD/////AAAAAP////+gAAAABQAAAFEAAAACAAAA/////wAAAAD/////ogAAAAUAAABSAAAAAgAAAP////8AAAAA/////6QAAAAEAAAAUwAAAAIAAAD/////AAAAAP////+mAAAABQAAAFQAAAACAAAA/////wAAAAD/////qAAAAAUAAABVAAAAAgAAAP////8AAAAA/////6oAAAAEAAAAVgAAAAIAAAD/////AAAAAP////+sAAAABQAAAFcAAAACAAAA/////wAAAAD/////rgAAAAUAAABYAAAAAgAAAP////8AAAAA/////7AAAAAEAAAAWQAAAAIAAAD/////AAAAAP////+yAAAABQAAAFoAAAACAAAA/////wAAAAD/////tAAAAAUAAABbAAAAAgAAAP////8AAAAA/////7YAAAAEAAAAXAAAAAIAAAD/////AAAAAP////+4AAAABQAAAF0AAAACAAAA/////wAAAAD/////ugAAAAUAAABeAAAAAgAAAP////8AAAAA/////7wAAAAEAAAAXwAAAAIAAAD/////AAAAAP////++AAAABQAAAGAAAAACAAAA/////wAAAAD/////wAAAAAUAAABhAAAAAgAAAP////8AAAAA/////8IAAAAEAAAAYgAAAAIAAAD/////AAAAAP/////EAAAABQAAAGMAAAACAAAA/////wAAAAD/////xgAAAAUAAABkAAAAAgAAAP////8AAAAA/////8gAAAAEAAAAZQAAAAIAAAD/////AAAAAP/////KAAAABQAAAGYAAAACAAAA/////wAAAAD/////zAAAAAUAAABnAAAAAgAAAP////8AAAAA/////84AAAAEAAAAaAAAAAIAAAD/////AAAAAP/////QAAAABQAAAGkAAAACAAAA/////wAAAAD/////0gAAAAUAAABqAAAAAgAAAP////8AAAAA/////9QAAAAEAAAAawAAAAIAAAD/////AAAAAP/////WAAAABQAAAGwAAAACAAAA/////wAAAAD/////2AAAAAUAAABtAAAAAgAAAP////8AAAAA/////9oAAAAEAAAAbgAAAAIAAAD/////AAAAAP/////cAAAABQAAAG8AAAACAAAA/////wAAAAD/////3gAAAAUAAABwAAAAAgAAAP////8AAAAA/////+AAAAAEAAAAcQAAAAIAAAD/////AAAAAP/////iAAAABQAAAHIAAAACAAAA/////wAAAAD/////5AAAAAUAAABzAAAAAgAAAP////8AAAAA/////+YAAAAEAAAAdAAAAAIAAAD/////AAAAAP/////oAAAABQAAAHUAAAACAAAA/////wAAAAD/////6gAAAAUAAAB2AAAAAgAAAP////8AAAAA/////+wAAAAEAAAAdwAAAAIAAAD/////AAAAAP/////uAAAABQAAAHgAAAACAAAA/////wAAAAD/////8AAAAAUAAAB5AAAAAgAAAP////8AAAAA//////IAAAAEAAAAegAAAAIAAAD/////AAAAAP/////0AAAABQAAAHsAAAACAAAA/////wAAAAD/////9gAAAAUAAAB8AAAAAgAAAP////8AAAAA//////gAAAAEAAAAfQAAAAIAAAD/////AAAAAP/////6AAAABQAAAH4AAAACAAAA/////wAAAAD//////AAAAAUAAAB/AAAAAgAAAP////8AAAAA//////4AAAAEAAAAgAAAAAIAAAD/////AAAAAP////8AAQAABQAAAIEAAAACAAAA/////wAAAAD/////AgEAAAUAAACCAAAAAgAAAP////8AAAAA/////wQBAAAEAAAAgwAAAAIAAAD/////AAAAAP////8GAQAABQAAAIQAAAACAAAA/////wAAAAD/////CAEAAAUAAACFAAAAAgAAAP////8AAAAA/////woBAAAEAAAAhgAAAAIAAAD/////AAAAAP////8MAQAABQAAAIcAAAACAAAA/////wAAAAD/////DgEAAAUAAACIAAAAAgAAAP////8AAAAA/////xABAAAEAAAAiQAAAAIAAAD/////AAAAAP////8SAQAABQAAAIoAAAACAAAA/////wAAAAD/////FAEAAAUAAACLAAAAAgAAAP////8AAAAA/////xYBAAAEAAAAjAAAAAIAAAD/////AAAAAP////8YAQAABQAAAI0AAAACAAAA/////wAAAAD/////GgEAAAUAAACOAAAAAgAAAP////8AAAAA/////xwBAAAEAAAAjwAAAAIAAAD/////AAAAAP////8eAQAABQAAAJAAAAACAAAA/////wAAAAD/////IAEAAAUAAACRAAAAAgAAAP////8AAAAA/////yIBAAAEAAAAkgAAAAIAAAD/////AAAAAP////8kAQAABQAAAJMAAAACAAAA/////wAAAAD/////JgEAAAUAAACUAAAAAgAAAP////8AAAAA/////ygBAAAEAAAAlQAAAAIAAAD/////AAAAAP////8qAQAABQAAAJYAAAACAAAA/////wAAAAD/////LAEAAAUAAACXAAAAAgAAAP////8AAAAA/////y4BAAAFAAAAmAAAAAIAAAD/////AAAAAP////8wAQAABQAAAJkAAAACAAAA/////wAAAAD/////MgEAAAYAAACaAAAAAgAAAP////8AAAAA/////zQBAAAGAAAAmwAAAAIAAAD/////AAAAAP////82AQAABgAAAJwAAAACAAAA/////wAAAAD/////OAEAAAYAAACdAAAAAgAAAP////8AAAAA/////zoBAAAGAAAAngAAAAIAAAD/////AAAAAP////88AQAABgAAAJ8AAAACAAAA/////wAAAAD/////PgEAAAYAAACgAAAAAgAAAP////8AAAAA/////0ABAAAGAAAAoQAAAAIAAAD/////AAAAAP////9CAQAABgAAAKIAAAACAAAA/////wAAAAD/////RAEAAAYAAACjAAAAAgAAAP////8AAAAA/////0YBAAAGAAAApAAAAAIAAAD/////AAAAAP////9IAQAABgAAAKUAAAACAAAA/////wAAAAD/////SgEAAAYAAACmAAAAAgAAAP////8AAAAA/////0wBAAAGAAAApwAAAAIAAAD/////AAAAAP////9OAQAABgAAAKgAAAACAAAA/////wAAAAD/////UAEAAAQAAACpAAAAAgAAAP////8AAAAA/////1IBAAAFAAAAqgAAAAMAAAD/////AAAAAP////9UAQAABwAAAKsAAAADAAAA/////wAAAAD/////VwEAAAcAAACsAAAAAwAAAP////8AAAAA/////1oBAAAHAAAArQAAAAMAAAD/////AAAAAP////9dAQAABwAAAK4AAAADAAAA/////wAAAAD/////YAEAAAcAAACvAAAAAwAAAP////8AAAAA/////2MBAAAHAAAAsAAAAAMAAAD/////AAAAAP////9mAQAABwAAALEAAAACAAAA/////wAAAAD/////aQEAAAgAAACyAAAAAgAAAP////8AAAAA/////2sBAAAIAAAAswAAAAIAAAD/////AAAAAP////9tAQAACAAAALQAAAACAAAA/////wAAAAD/////bwEAAAkAAAC1AAAAAgAAAP////8AAAAA/////3EBAAAKAAAAtQAAAAIAAAD/////AAAAAP////9xAQAABgAAALYAAAACAAAA/////wAAAAD/////cwEAAAsAAAC3AAAAAgAAAP////8AAAAA/////3UBAAAEAAAAuAAAAAIAAAD/////AAAAAP////93AQAABQAAALkAAAACAAAA/////wAAAAD/////eQEAAAUAAAC6AAAAAgAAAP////8AAAAA/////3sBAAAEAAAAuwAAAAIAAAD/////AAAAAP////99AQAABQAAALwAAAACAAAA/////wAAAAD/////fwEAAAUAAAC9AAAAAgAAAP////8AAAAA/////4EBAAAEAAAAvgAAAAIAAAD/////AAAAAP////+DAQAABQAAAL8AAAACAAAA/////wAAAAD/////hQEAAAUAAADAAAAAAgAAAP////8AAAAA/////4cBAAAIAAAAwQAAAAIAAAD/////AAAAAP////+JAQAADAAAAMIAAAACAAAA/////wAAAAD/////iwEAAA0AAADDAAAAAgAAAP////8AAAAA/////40BAAAEAAAAxAAAAAIAAAD/////AAAAAP////+PAQAABQAAAMUAAAACAAAA/////wAAAAD/////kQEAAAUAAADGAAAAAgAAAP////8AAAAA/////5MBAAAEAAAAxwAAAAIAAAD/////AAAAAP////+VAQAABQAAAMgAAAACAAAA/////wAAAAD/////lwEAAAUAAADJAAAAAgAAAP////8AAAAA/////5kBAAAEAAAAygAAAAIAAAD/////AAAAAP////+bAQAABQAAAMsAAAACAAAA/////wAAAAD/////nQEAAAUAAADMAAAAAgAAAP////8AAAAA/////58BAAAEAAAAzQAAAAIAAAD/////AAAAAP////+hAQAABQAAAM4AAAACAAAA/////wAAAAD/////owEAAAQAAADPAAAAAgAAAP////8AAAAA/////6UBAAAFAAAA0AAAAAIAAAD/////AAAAAP////+nAQAABQAAANEAAAACAAAA/////wAAAAD/////qQEAAAQAAADSAAAAAgAAAP////8AAAAA/////6sBAAAFAAAA0wAAAAIAAAD/////AAAAAP////+tAQAABQAAANQAAAACAAAA/////wAAAAD/////rwEAAAQAAADVAAAAAgAAAP////8AAAAA/////7EBAAAFAAAA1gAAAAIAAAD/////AAAAAP////+zAQAABQAAANcAAAACAAAA/////wAAAAD/////tQEAAAQAAADYAAAAAgAAAP////8AAAAA/////7cBAAAFAAAA2QAAAAIAAAD/////AAAAAP////+5AQAABQAAANoAAAACAAAA/////wAAAAD/////uwEAAAQAAADbAAAAAgAAAP////8AAAAA/////70BAAAFAAAA3AAAAAIAAAD/////AAAAAP////+/AQAABQAAAN0AAAACAAAA/////wAAAAD/////wQEAAAQAAADeAAAAAgAAAP////8AAAAA/////8MBAAAFAAAA3wAAAAIAAAD/////AAAAAP/////FAQAABQAAAOAAAAACAAAA/////wAAAAD/////xwEAAAQAAADhAAAAAgAAAP////8AAAAA/////8kBAAAFAAAA4gAAAAIAAAD/////AAAAAP/////LAQAABQAAAA==","m_ExtraDataString":"B0xVbml0eS5SZXNvdXJjZU1hbmFnZXIsIFZlcnNpb249MC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1udWxsSlVuaXR5RW5naW5lLlJlc291cmNlTWFuYWdlbWVudC5SZXNvdXJjZVByb3ZpZGVycy5Bc3NldEJ1bmRsZVJlcXVlc3RPcHRpb25zqgIAAHsAIgBtAF8ASABhAHMAaAAiADoAIgBiADUAZABmADEAYQAzADAAMwA5ADQAYQBiADMAZQA2AGIANgBlADEAMQBlADEAMAA4ADIAMgA4AGEAZgAwAGYAIgAsACIAbQBfAEMAcgBjACIAOgAyADcAOQA5ADAAMwAyADYAMgA3ACwAIgBtAF8AVABpAG0AZQBvAHUAdAAiADoAMAAsACIAbQBfAEMAaAB1AG4AawBlAGQAVAByAGEAbgBzAGYAZQByACIAOgBmAGEAbABzAGUALAAiAG0AXwBSAGUAZABpAHIAZQBjAHQATABpAG0AaQB0ACIAOgAtADEALAAiAG0AXwBSAGUAdAByAHkAQwBvAHUAbgB0ACIAOgAwACwAIgBtAF8AQgB1AG4AZABsAGUATgBhAG0AZQAiADoAIgBkADMAMgA5ADUANABlADAAMwA1AGEANwBhADIAMAAwADkANQBiADgAYQAzADQAZQBhAGIAYgBmADMAYwBiAGYAIgAsACIAbQBfAEEAcwBzAGUAdABMAG8AYQBkAE0AbwBkAGUAIgA6ADAALAAiAG0AXwBCAHUAbgBkAGwAZQBTAGkAegBlACIAOgAzADYAOQA0ACwAIgBtAF8AVQBzAGUAQwByAGMARgBvAHIAQwBhAGMAaABlAGQAQgB1AG4AZABsAGUAcwAiADoAdAByAHUAZQAsACIAbQBfAFUAcwBlAFUAVwBSAEYAbwByAEwAbwBjAGEAbABCAHUAbgBkAGwAZQBzACIAOgBmAGEAbABzAGUALAAiAG0AXwBDAGwAZQBhAHIATwB0AGgAZQByAEMAYQBjAGgAZQBkAFYAZQByAHMAaQBvAG4AcwBXAGgAZQBuAEwAbwBhAGQAZQBkACIAOgBmAGEAbABzAGUAfQAHTFVuaXR5LlJlc291cmNlTWFuYWdlciwgVmVyc2lvbj0wLjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGxKVW5pdHlFbmdpbmUuUmVzb3VyY2VNYW5hZ2VtZW50LlJlc291cmNlUHJvdmlkZXJzLkFzc2V0QnVuZGxlUmVxdWVzdE9wdGlvbnOoAgAAewAiAG0AXwBIAGEAcwBoACIAOgAiADAAYgAzADEAOQAwADAAMgAzADEAZQBjADcANgBiADQAZgA5AGQAYgBmAGMAZQA3ADMAZABjADAAMABiADkANwAiACwAIgBtAF8AQwByAGMAIgA6ADkAOQAxADMAMAA1ADgANAAwACwAIgBtAF8AVABpAG0AZQBvAHUAdAAiADoAMAAsACIAbQBfAEMAaAB1AG4AawBlAGQAVAByAGEAbgBzAGYAZQByACIAOgBmAGEAbABzAGUALAAiAG0AXwBSAGUAZABpAHIAZQBjAHQATABpAG0AaQB0ACIAOgAtADEALAAiAG0AXwBSAGUAdAByAHkAQwBvAHUAbgB0ACIAOgAwACwAIgBtAF8AQgB1AG4AZABsAGUATgBhAG0AZQAiADoAIgBkAGYAYgBjAGQANQA4ADgAOAAwADUAMgA2ADIANQA0ADgAOQA5ADQANAAwAGYAYgAxADkAZgAzAGEAZAAwAGQAIgAsACIAbQBfAEEAcwBzAGUAdABMAG8AYQBkAE0AbwBkAGUAIgA6ADAALAAiAG0AXwBCAHUAbgBkAGwAZQBTAGkAegBlACIAOgAyADQANAAwACwAIgBtAF8AVQBzAGUAQwByAGMARgBvAHIAQwBhAGMAaABlAGQAQgB1AG4AZABsAGUAcwAiADoAdAByAHUAZQAsACIAbQBfAFUAcwBlAFUAVwBSAEYAbwByAEwAbwBjAGEAbABCAHUAbgBkAGwAZQBzACIAOgBmAGEAbABzAGUALAAiAG0AXwBDAGwAZQBhAHIATwB0AGgAZQByAEMAYQBjAGgAZQBkAFYAZQByAHMAaQBvAG4AcwBXAGgAZQBuAEwAbwBhAGQAZQBkACIAOgBmAGEAbABzAGUAfQAHTFVuaXR5LlJlc291cmNlTWFuYWdlciwgVmVyc2lvbj0wLjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGxKVW5pdHlFbmdpbmUuUmVzb3VyY2VNYW5hZ2VtZW50LlJlc291cmNlUHJvdmlkZXJzLkFzc2V0QnVuZGxlUmVxdWVzdE9wdGlvbnOqAgAAewAiAG0AXwBIAGEAcwBoACIAOgAiADYAZABhADQAMwBkAGIAYgBkADUAOAA4ADkAZQAyAGQAMgBlADYAOQAxADcAYwAxADUAZgBhAGYAOABlADcAYwAiACwAIgBtAF8AQwByAGMAIgA6ADIAOAA2ADMANQA3ADcANwA1ADQALAAiAG0AXwBUAGkAbQBlAG8AdQB0ACIAOgAwACwAIgBtAF8AQwBoAHUAbgBrAGUAZABUAHIAYQBuAHMAZgBlAHIAIgA6AGYAYQBsAHMAZQAsACIAbQBfAFIAZQBkAGkAcgBlAGMAdABMAGkAbQBpAHQAIgA6AC0AMQAsACIAbQBfAFIAZQB0AHIAeQBDAG8AdQBuAHQAIgA6ADAALAAiAG0AXwBCAHUAbgBkAGwAZQBOAGEAbQBlACIAOgAiADEAOQA2ADgAYgBmAGIANQBmAGIAMQAyADUAYQA1ADIAMwAyAGQAYgAwADUAYQA0ADMANwAwAGQAYgBjADEANwAiACwAIgBtAF8AQQBzAHMAZQB0AEwAbwBhAGQATQBvAGQAZQAiADoAMAAsACIAbQBfAEIAdQBuAGQAbABlAFMAaQB6AGUAIgA6ADUAMwA5ADQALAAiAG0AXwBVAHMAZQBDAHIAYwBGAG8AcgBDAGEAYwBoAGUAZABCAHUAbgBkAGwAZQBzACIAOgB0AHIAdQBlACwAIgBtAF8AVQBzAGUAVQBXAFIARgBvAHIATABvAGMAYQBsAEIAdQBuAGQAbABlAHMAIgA6AGYAYQBsAHMAZQAsACIAbQBfAEMAbABlAGEAcgBPAHQAaABlAHIAQwBhAGMAaABlAGQAVgBlAHIAcwBpAG8AbgBzAFcAaABlAG4ATABvAGEAZABlAGQAIgA6AGYAYQBsAHMAZQB9AAdMVW5pdHkuUmVzb3VyY2VNYW5hZ2VyLCBWZXJzaW9uPTAuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49bnVsbEpVbml0eUVuZ2luZS5SZXNvdXJjZU1hbmFnZW1lbnQuUmVzb3VyY2VQcm92aWRlcnMuQXNzZXRCdW5kbGVSZXF1ZXN0T3B0aW9uc6gCAAB7ACIAbQBfAEgAYQBzAGgAIgA6ACIAMwA3AGIAOAAwADUAMwBjADAANABiADEAMQA4ADIAOABhADgANwA3AGIAZQA0AGUANQA4ADEAZQBmAGIAMwA5ACIALAAiAG0AXwBDAHIAYwAiADoANAA5ADYANQA0ADIANwAzADYALAAiAG0AXwBUAGkAbQBlAG8AdQB0ACIAOgAwACwAIgBtAF8AQwBoAHUAbgBrAGUAZABUAHIAYQBuAHMAZgBlAHIAIgA6AGYAYQBsAHMAZQAsACIAbQBfAFIAZQBkAGkAcgBlAGMAdABMAGkAbQBpAHQAIgA6AC0AMQAsACIAbQBfAFIAZQB0AHIAeQBDAG8AdQBuAHQAIgA6ADAALAAiAG0AXwBCAHUAbgBkAGwAZQBOAGEAbQBlACIAOgAiAGIAOQBiAGYANgA2ADYAMwBjADQAMwA5ADkAMgBlAGEAYQBkAGUANQBmADgAZQA1ADgAYwAzAGMANwAzADkAOQAiACwAIgBtAF8AQQBzAHMAZQB0AEwAbwBhAGQATQBvAGQAZQAiADoAMAAsACIAbQBfAEIAdQBuAGQAbABlAFMAaQB6AGUAIgA6ADUANAA5ADEALAAiAG0AXwBVAHMAZQBDAHIAYwBGAG8AcgBDAGEAYwBoAGUAZABCAHUAbgBkAGwAZQBzACIAOgB0AHIAdQBlACwAIgBtAF8AVQBzAGUAVQBXAFIARgBvAHIATABvAGMAYQBsAEIAdQBuAGQAbABlAHMAIgA6AGYAYQBsAHMAZQAsACIAbQBfAEMAbABlAGEAcgBPAHQAaABlAHIAQwBhAGMAaABlAGQAVgBlAHIAcwBpAG8AbgBzAFcAaABlAG4ATABvAGEAZABlAGQAIgA6AGYAYQBsAHMAZQB9AA==","m_resourceTypes":[{"m_AssemblyName":"Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.ResourceManagement.ResourceProviders.IAssetBundleResource"},{"m_AssemblyName":"Unity.Localization, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.Localization.Locale"},{"m_AssemblyName":"Unity.Localization, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.Localization.Tables.SharedTableData"},{"m_AssemblyName":"Unity.Localization, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.Localization.Tables.StringTable"},{"m_AssemblyName":"UnityEngine.AudioModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.AudioClip"},{"m_AssemblyName":"UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.TextAsset"},{"m_AssemblyName":"UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.Material"},{"m_AssemblyName":"Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.ResourceManagement.ResourceProviders.SceneInstance"},{"m_AssemblyName":"UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.GameObject"},{"m_AssemblyName":"UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.Shader"},{"m_AssemblyName":"Unity.TextMeshPro, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"TMPro.TMP_SpriteAsset"},{"m_AssemblyName":"Unity.TextMeshPro, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"TMPro.TMP_StyleSheet"},{"m_AssemblyName":"UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.Texture2D"},{"m_AssemblyName":"Unity.TextMeshPro, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"TMPro.TMP_Settings"}],"m_InternalIdPrefixes":[]} \ No newline at end of file diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/settings.json b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/settings.json new file mode 100644 index 00000000..933f379e --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/StreamingAssets/aa/settings.json @@ -0,0 +1 @@ +{"m_buildTarget":"StandaloneWindows64","m_SettingsHash":"","m_CatalogLocations":[{"m_Keys":["AddressablesMainContentCatalog"],"m_InternalId":"{UnityEngine.AddressableAssets.Addressables.RuntimePath}/catalog.json","m_Provider":"UnityEngine.AddressableAssets.ResourceProviders.ContentCatalogProvider","m_Dependencies":[],"m_ResourceType":{"m_AssemblyName":"Unity.Addressables, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","m_ClassName":"UnityEngine.AddressableAssets.ResourceLocators.ContentCatalogData"},"SerializedData":[]}],"m_ProfileEvents":false,"m_LogResourceManagerExceptions":true,"m_ExtraInitializationData":[],"m_DisableCatalogUpdateOnStart":false,"m_IsLocalCatalogInBundle":false,"m_CertificateHandlerType":{"m_AssemblyName":"","m_ClassName":""},"m_AddressablesVersion":"1.19.19","m_maxConcurrentWebRequests":3,"m_CatalogRequestsTimeout":0} \ No newline at end of file diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/UnitySubsystems/OculusXRPlugin/UnitySubsystemsManifest.json b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/UnitySubsystems/OculusXRPlugin/UnitySubsystemsManifest.json new file mode 100644 index 00000000..eb09d864 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/UnitySubsystems/OculusXRPlugin/UnitySubsystemsManifest.json @@ -0,0 +1,18 @@ +{ + "name": "OculusXRPlugin", + "version": "1.0.0-preview", + "libraryName": "OculusXRPlugin", + + "displays": [ + { + "id": "oculus display", + "disablesLegacyVr" : true, + "supportedMirrorBlitReservedModes" : ["leftEye","rightEye", "sideBySide","occlusionMesh"] + } + ], + "inputs": [ + { + "id": "oculus input" + } + ] +} diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/UnitySubsystems/WindowsMRXRSDK/UnitySubsystemsManifest.json b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/UnitySubsystems/WindowsMRXRSDK/UnitySubsystemsManifest.json new file mode 100644 index 00000000..c20aeb85 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/UnitySubsystems/WindowsMRXRSDK/UnitySubsystemsManifest.json @@ -0,0 +1,24 @@ +{ + "name":"XRSDK Windows Mixed Reality", + "version":"1.0.0", + "libraryName":"WindowsMRXRSDK", + "properties":{}, + "displays":[ + { + "id":"Windows Mixed Reality Display", + "supportedMirrorBlitReservedModes" : ["leftEye","rightEye", "sideBySide", "occlusionMeshSideBySide"], + "disablesLegacyVr":true, + "splashScreenIsWorldLocked":false + } + ], + "inputs":[ + { + "id":"Windows Mixed Reality Input" + } + ], + "meshings":[ + { + "id":"Windows Mixed Reality Meshing" + } + ] +} diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/app.info b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/app.info new file mode 100644 index 00000000..e8c75f36 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/app.info @@ -0,0 +1,2 @@ +POINT VR UIUC +Einstein's Spacetime \ No newline at end of file diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/boot.config b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/boot.config new file mode 100644 index 00000000..c7233ae8 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/boot.config @@ -0,0 +1,6 @@ +gfx-enable-gfx-jobs=1 +gfx-enable-native-gfx-jobs=1 +wait-for-native-debugger=0 +vr-enabled=0 +hdr-display-enabled=0 +xrsdk-pre-init-library=OculusXRPlugin diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/globalgamemanagers b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/globalgamemanagers new file mode 100644 index 00000000..de0cfd7d Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/globalgamemanagers differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/globalgamemanagers.assets b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/globalgamemanagers.assets new file mode 100644 index 00000000..ad990d52 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/globalgamemanagers.assets differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level0 b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level0 new file mode 100644 index 00000000..44e2ea7b Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level0 differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level0.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level0.resS new file mode 100644 index 00000000..abbb1a9a Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level0.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level1 b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level1 new file mode 100644 index 00000000..718e2067 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level1 differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level1.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level1.resS new file mode 100644 index 00000000..abbb1a9a Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level1.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level2 b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level2 new file mode 100644 index 00000000..28b4a5f0 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level2 differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level2.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level2.resS new file mode 100644 index 00000000..abbb1a9a Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level2.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level3 b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level3 new file mode 100644 index 00000000..1ccfa049 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level3 differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level3.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level3.resS new file mode 100644 index 00000000..abbb1a9a Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level3.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level4 b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level4 new file mode 100644 index 00000000..7da784d4 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level4 differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level4.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level4.resS new file mode 100644 index 00000000..abbb1a9a Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level4.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level5 b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level5 new file mode 100644 index 00000000..2d96a9d7 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level5 differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level5.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level5.resS new file mode 100644 index 00000000..abbb1a9a Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level5.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level6 b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level6 new file mode 100644 index 00000000..ded2f71e Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level6 differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level6.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level6.resS new file mode 100644 index 00000000..abbb1a9a Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/level6.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/resources.assets b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/resources.assets new file mode 100644 index 00000000..46130ff5 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/resources.assets differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/resources.assets.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/resources.assets.resS new file mode 100644 index 00000000..8b90d82c Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/resources.assets.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/resources.resource b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/resources.resource new file mode 100644 index 00000000..4daa5ebb Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/resources.resource differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets0.assets b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets0.assets new file mode 100644 index 00000000..cffa62eb Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets0.assets differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets0.assets.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets0.assets.resS new file mode 100644 index 00000000..958d4fc8 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets0.assets.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets0.resource b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets0.resource new file mode 100644 index 00000000..fe0d15f3 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets0.resource differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets1.assets b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets1.assets new file mode 100644 index 00000000..67659e56 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets1.assets differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets1.assets.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets1.assets.resS new file mode 100644 index 00000000..caf68b02 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets1.assets.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets2.assets b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets2.assets new file mode 100644 index 00000000..9897e1d6 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets2.assets differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets2.assets.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets2.assets.resS new file mode 100644 index 00000000..cd6b5a99 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets2.assets.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets2.resource b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets2.resource new file mode 100644 index 00000000..a77c56e0 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets2.resource differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets3.assets b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets3.assets new file mode 100644 index 00000000..5bc1e2b6 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets3.assets differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets3.assets.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets3.assets.resS new file mode 100644 index 00000000..ac9a69c6 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets3.assets.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets3.resource b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets3.resource new file mode 100644 index 00000000..35055063 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets3.resource differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets4.assets b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets4.assets new file mode 100644 index 00000000..4e936e04 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets4.assets differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets5.assets b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets5.assets new file mode 100644 index 00000000..b339263c Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets5.assets differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets5.assets.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets5.assets.resS new file mode 100644 index 00000000..00303101 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets5.assets.resS differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets6.assets b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets6.assets new file mode 100644 index 00000000..40f94d20 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets6.assets differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets6.assets.resS b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets6.assets.resS new file mode 100644 index 00000000..c4b14b68 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/Einstein's Spacetime_Data/sharedassets6.assets.resS @@ -0,0 +1,2412 @@ +k` UțUțUUUUk ````J~z ț_~~țǣǣ*5UU ```` ~~ +hțUUUțUUU曧U}\Ǜʹ O````ͼJ~|b*5555bb⫪CTTTTǣ .```pbꪪkb````bb⫪BTTTTǣJ ̴pppp̴b````bb᫪bTTT\ǣ -ppxX++̴b`pppbb᫪a\\XXǣț%%55kX\\\kbPPXXbb⫪bPPppǣ槛5|p@ zțzWU%5@J\TVVJ+bX\\^bb᫪bǛ``ǣUUUkIpXX\|(%UUU+U-pjxW)^UUk\_țJͧUU@*TWUUKH**jgb\VWWbb⫪b#@@#UWVTǣ %v@ITVUU(^^^^țʹț%UUUț-UU ,XX˴xWUUj^zj)i W_._ZPǣ - `pPX* b*55bbb᫪baaǛV\Xxǣ;ț5U`pxi(~~~~CUU%%UUU\裧)雧?\ )5%Mp`m_~ U i ǛP`@ǣț5U;`; \WWU* b)% bbb⫪᫪aǛ`@曧UUUVǣ -5{@\^WWi(~~~~A(% A`AțUǛUuVUɛ?ț- :@MWWV\M~ j缧UWV\ț* `x\V 蛪c UՕ%cbbbb᫪᫪baaW^X`ǣާUU* `phxHC`DATWUUbAAǛ`pXǣțՕXPp`,^z-zxǛXp`ǣț5U蛀p^ țEUUՕ- bbbb⫪᫪baa`aUUW\ǣ%U@XTVWhziA`xX^bAd@aX^VWǣ% S`Qm_ zꨠ+UUWT@ǼUWTXǣ -5@x^0țTUUUț% bbbbb᫪᫪baaAAǛP`UUU\ǣ Uʹ i`x^i/---B@fATWUUbAAƛ@ƛVUUU ?K WV\\m~蠍T\XPǛp'UUW\*UUUț-5P`țpWUJțTUUUțUUUț-b꾂bbbbb᫪babaaAbAAǛX`UUW\ǣ-UUț %i`xHTUUUHA`x^WbAbAA`pPPǣ5֧Օ5;0Xxpp0^Ppp`缧\P`ǛͨUUU @xU率xWUUǣǛUUU5ț bbbbbb᫪᫪baaAbAaAAƛXAUUWPǣqŧ5UUUț-Uk jPH\WUUiHibpXBAbAbAAXX\\ǣ55%``@@Pު0)h`伪ǛV\xǛUUU -wʹxțzU秛xWUUț?ǛU- bbbbbbb⫪᫪bAaAbAaAaAA`AU^p壧UUUTǣͧ5UUU+U*@IxVv(TWUUH(HApfATWUUbAbAbAB\^VVǣț%-- 1@0կ0ެ@漪漧VX'UUW\ǣ UU  xț~ț^UțVUUPxUUUțUUU5U/Ǜ`b내bbbbb⫪᫪aaaAbAaAAA@A@ǛZAUUx壧UUU^ǣ5UUU UUțU +-hǛ_^UUjTUUU(A(UU5-GA\UUUaAaAbAbATTVVǣț @@@@ծ +*ޭ@BJj^^_W缪漧xƼUUV`ǣț*;ț-UUț Uț +Uʹ;-xț_țUUțWU|UUxUUUțǣǣUU U +-bbbbbb⫪᫪baaAbAaAAA@A@x@U^@UUWƛǣǣ/UUUț+UUțUțUț*UțU UțUțUțUǛUǛUUțxUUUț$UUUAյ CA\UUUaAaAaAbAbAVVVVǣ @@Ս ++Jŀj漦漧^漧UU~'UUU\ǣǣǣǣǣǣǣǣǣǣUUU=UU +ǛUUǛU-ꣴb訂bbbbbb⫪⴪baaAbAaAAA@A@x@ǛU@UU"UUW壧UUU^ǣǣǛǛǛǛǛțǛǛțǛțț"UU+AU +A-AAAAaAaAbAbAbAVVTTǣ M@@``M*``漪漪f`ƼWżUWżUUŴUUUUżUUŴUUŴUŴǛU ŴṲ̤̤̈̀ꪣbbbbbbb᫪᫪bAaAaAaAAA@A@j@Ǜ_@U@UUAUU@ǛUU@ǛUUAǛUU@UUAǛUAǛU+A-@A@A@AAAAAAAaAaAbAbAAVV\\ǣ--%5MppX\m, +mppXX缪漪漪ƼƼƼƼż褪ŤŤżŴżĴżŴżż UUU-ͤUUU +ͤUUդUUդUUդUUބUU1ޣUUՃUUUࣴb肴bbbbbb᫪᫪bAaAaAaAAAAUU RaUrļ*rjUrHWr惴_r@Ur@U_@UU~@UUUxA@A@@A@A@A@AAAAAAAaAbAbAbAAXXPPǣ|ț5@ \VWUM +LTVWU漪漪Ƽ漪żƼƼż褪太ŤżŴŴUU żU+żկ MՏՏͯ**հկ+ +1կ*RR1޿+*rR޿r(xQޤU^j̓UUU\bebbbb⫪᫪baaAbABAW_W-A- N +տ%rUUrUUrUUrUUrUU_9rUUUrrkr^r@WrAUU@UUWxA@@A@A@A@A@A@A@A@AAAAAaAaAaAbAbAAp`ǣUU0 ˴`pX ˴ px漪漪Ƽ漪ƼƼƼż褪jżUU%rżU/RƼ1S_/UU+U+U+p9^s_rUrUW~1QżX`bbbbbbb᫪᫪baaAbAA5%- +/-U% 3 xrWUUU~rUUUxrQr@^AU_@UUWx@A@A@A@A@AAAAAAAaAaAbAbAbABUWV\ǣț %@\VWU˴ + 漪漪Ƽ漪Ƽżż?żU J 15rUU RUR^p@1ރV\Xxbbbbbb᫪᫪baaAbAjB ͊ՕYxWzrUU^___XxMAU^AUUUX@A@A@A@A@A@AAAAAaAaAaAbAbAd@aǛXXpǣ|率Uj`x^Wj5% 漪漪Ƽ漪żż?oƼ- Տ+Uե 1޽{WVT\դ``bbbbbb⫪᫪baaAABk*& +J55zUWxM^^^\ cpAUW\x@A@A@A@A@A@AAAAAaAaAaAbAbAd@a#@AUWV\ǣ %)`x\j)*jU5輭漪漪Ƽ漪Ƽ Ƽ% n- ++/% \XXXK@hꤴbebbbb᫪᫪baaAaBjojk ))[)5555-^:UUWXH`H@U^Xp@A@A@A@AAAAAAAaAbAbAbAd@d@AǛX`棧UUUT*UUU % `X)TWUU)U5I  漪漪漪ƼǼ UՕ:XXXXL`hjbbbbbb⫪᫪baaAaBjnzVVVV5555 x`NŊWWWTIAp`@@A@A@A@AAAAAAAaAbAbAbAbAD`bAa^Xpǣ槛5UUț % `X TWUU UUU -  缾漪漪漪ƼƼżVVVT̴XXXXn +jbbbbbb᫪babaaAaBꪪțVVV\5VVTTI$@@A@A@A@AAAAAaAaAbAbAbAbAD`aAa#jaW^XǣwާUUț 5@ +%*`\TUUUh55  漪漪Ƽ漪Ƽż\XXpU֫UUMXX\\-Ŧhbbbbbb⫪᫪baaAbA#țV^\\5ț|TTVWI"@@A@A@A@AAAAAAAaAbAbAbAd@D`aAbABaUVxǣUUU %ț`\ + %;@)PVW5UUj @x^ț\UUUțUU5%  Ū缪漪漪漪Ƽżip`j % \TVV켃`pxbbbbbb⫪᫪aaaAbAAǛV\\\kțUU@ TWWWIA@`pP@A@A@A@A@AAAAAaAaAbAbAbAbAd@aAaBbBb#bWX`曧UUUT雇? %UJ țpXͧTUUU;率5UU + -x^WJVUUU꺝%UU V@țx^UțTUUU(țUU5(Ũ-  ŪQUUU rUիrU(UrUrUUZ漪漪ƼƼ弦jżJWW^Xj%U@ͪ_xXX\bbbbbb᫪᫪baaAbAAXxxp)ț`ppX˴jxxxxHAPX\V@A@A@A@AAAAAaAaAb@*MAU-mA +ͥUդUbU~1bUUW`bB᳢âbǛVpbUUUTǣ[ț%UU 5ț`\֧\UUUǣǣ槛5UU-@)p\W)JUU%JU^p;%UU) kXțxVUU)țUյ  (KUUU%(U-Jŵ +*r +/rrުrUUU ZrUUUYrUUUxu֪r^x`(UUUV漪漪Ƽ漪żƼƼ)p`@j ++ %˴@`pizi bﮁebbbb⫪᫪baaAbAApp``ț u@:\VWUB`CATWUU@A@A@A@AAAAAaAcAUUU A5- M +/TMUUU5UUUUUUսQދ /rޤ^rbUU^ऴbUUUTâbǛ`bUW^pǣKUUU-Uq țp^\UUUǣU- UUWXǣ槛5UU* %ip\VTUU*UU?J( J*@*W\p5UUUJ `\W5֧\UUU_{5ǛU5 (ň ( j,U+*m +- +*m/UU Ur8hUVXprorW\XP漪漪Ƽ漪żƼƼżż)WV\X)%U`8~pPX^iUU +dĂUUĂUUbUUbUUbUUbUUbUUAߪaUUAUUjjcUUW%-M@pX\ ઴ApXTW@A@A@A@AAAAAaA˼A5 ˼++,Uյ%- x~1UW9RUUU\r0@r惴^`bUU^xbbb$`bW\壧UUUTǣț-UUU-:`p^WkTUUUǣU eǛpUUV\ǣ[ț5UUk -\pUJzJUUWTJJŪJ*JWXpț꼬UUU  U țXp^UUǛ(ŧUU5(Ǜ% ((ɼxVʼ|WWW ʼ ++=,Uեmͭ @rUUWTr`@漪缪漪漪ƼƼƼƼżż(p`) ++) 5 xWUWUĠUU/ἠWUo*_ukUukUukUVkUVkUVkUtsUUukUUtsUUukUUVkUVkUUkUVkUUk +UusK +UU +UUUU +UU `SM\WWW ApXA@@A@A@A@A@AAAAAeAUU˼bUUUM 9xrU^xrUUU\r@raWxbUUUTbbbƛxbUU^`ǣțț-UUț/U \țx^UUǣǛ*Ǜ% @IpXVUI +*UU5 \x0JpJUUW\JJŪJJŪJ^pUUWXț;%UUǛp @J^xWU |盧*(ǛU-(( (ɼz(ʼnWU*+ɼUU-ʼ= r\Xp`r0@WVT\漪漪Ƽ漪ƼƼƼż褪żV\p` UUU `f_Uŀ~UUUU{WvkUukUUŴuk_UULUkUUU{Uk\UUUtsX[Tsx[Tsx[Tsx[Tsx[Tsx[Tsx[Tsx[Tsx[Tsx[Tsx[Tsx[Tsx[Tsx[Tsx[Tsx[Tsx[Tsx[Uk-UUUVk +UUUkUUUk +Uukz +UU*U-{@P\WUMb`A\VUU@A@A@A@A@A@AAAAAA55-˼++˼5%-xUU\`rުrbxQbUU^xbbbbꪪbǛ_xbUU^xǣǣͧ%UUUUU/@P~Wț^UU TUUUǣUU%Ǜ5 @)`X^WI)+jUU5̼ VX`ժJXpJJŪJJŪJJŪJ(`JțUW(țǛ-țUUUǛUUǛUUIU UUțUUțxUUUțț)ǛUU)Ǜ5 )((ʼnh^iU͉UUUh5 `rr\\xx漪漪Ƽ漪ƼƼƼż褪żF@UUV\H %U~Uŀ^UUP wkWvkUU"vkUUUsVkvkUkvkUkꪪvkUkvkUk몪vkUkvkUkꫪvkUkvkUkvkUkvkUkvkUkvkUkvkUkᆰvkVk vkUkvkVk(vkUkvkUk몪vkUkvkUkvkUkvkUkUkvkvkUkvkUkvkUkvkUkvkUkUkvkvkUkﻺkUk5UUUvkUUukUvk + UU U*pXWLŨhMAPXVU@A@A@A@AAAAAB ˼? rVX1WUWT1@bUWxbbbbbcbǛVUU~$UUU^ǣǣǣ-UUUV֧ +UUU5֧UUUqŧxUUUǣǣǣ%UU%ǛU Ex\V))UU5 @WTPpժJV^XpJJŪJJŪJJŪJIŪJxJțUW țUUU|țǛțǛțǛțǛțǛǛțǛțǛUUU5)ǛUU-)Ǜ I )()h\VHiUU%'- @rWV^\rpp`缪漪漪Ƽ漪żƼƼżżUUU%żU Ĥ +Ķs^vkWUvk_UU҃vk\UUUsvksvksvkvcsvksvksvksvksvksvksvksvksvksvksvksvksvksvksvksvkusvkvkukvkukvkukvkUkvkUk*vkVkvkVk lklktkvkUkvkUkvkUkvkUk*vkUkvkUkvkUk* vk/UUvkUUvk-UO UUAUU^@A@A@A@A@A@AAAfAUUh +*檴Օ5[xUUW\֮@bW\pbbbcbcab$ZǛWǛUUxUUU棧UUUVǣǣǛ*dUUU/UU-կE-老裀pX*UU)- `UUW\݋@JUUWTJJŪJJŪJIŪJIJIJ`I^IU)ŧUIțUU)ŧU)țU)) *G)H)H)H^WʴiU% o r\XXPrj@漪漪Ƽ漪`żUUż ^ĕsWUsxUUUkvkkvk*kvk kvkkvk(kvk kvkkvkkvkkvkʀkvkkvk +kvkkvkkvkkvk"kvk +kvkkvk kvkkvkkvk kvkkvkkvkkvkkvkkvkkvkkvkkvk殺kvkkvkkvksvksvksvksvksvksvksvksvksvkkvkkvkvk5UUU⼕k +UUĕsU- @U~AUU^@A@A@A@A@AAAiA55%i*55%`|UUVXՎ@bW^pbcbcbacb`c*D_DUd@e\VUU蛪)5 x`@կJXPp`JJŪJJŪJIŪJIJIJIJIŪ)JͪI)I))J)I)I*G*G)H)(pX^H)iU- rpp`@rrު0UVVT漪xU-mxĵs^U ͖sxUUUskskskskskskskskskskskskskskskskssUUskssUwssUkkUskssuskkkskssUsvkꪪsvkskskꪖksckvkkvk kvkkvkkvk"kvkkvkkvkkvkkvk*kvkkvkkvk +kvkkvk눖kvkkvk"kvkvk5UUUŖkUUἵs a^ AUW~a!@A@AAAiA- ii `UWV\nncW\Xpbcaeab`ccțpXX\ț;UՕ55UWVXՌ@JUWV\JJŪJIJIJIJIJIꪪJ)H,I))J)I)I*G*G)(pXh(WUUUIU% :@@r1 -rT\\XUU ƴ)Ἇ^m xUU{  5ssusvk"sksvk ss:sk"svk*sk"svk(sk +svk" svksvksksksksksk*skvslsk* sksksksk*sk*skss{vksp*zNնs3S sksksk(skskꪨsk몪skꨀskꪊsksksvksksksksk着sk몪sksksksk몖sksvk/7xwnxWUôN/UUm 5UJ-AUW`AUUU|BAUUUiBiUUU.op:NUUW\M@,bUWTPaabccc→&`ț|vǣț- XppJ\\XPJJŪJIJIJIJIJIŪ)JͪI)I*I*)I)I*G) H)\VWU;(UU @:WVTT1¼x^漵 n^n_UUNTUUUNMKNUUU{M-VsUUWcssssssssssUssssw*ssss߯*ss*{sW|swWvkbVsUUW{sssss ssssﮪssssss着6|sUU/s ^{nUUknUUcnUUUNTUUUnNSSn%UUUsn-Us 6|sUUWssss_ssssssssssskskssss猪ss sssssksk6|sUUU%! +XsM_U2KNTUUUNMNMNMƃM%UUU¼N UK2 BW~hiWUU\iՕ[Mx` UUT pbUUWTacbccțppPɛǛțUՕ@֍Jp`@JJŪJIJIJIJIJIŪꪪJ)žJ)I))J)I)I*G)(`` % D^\x^UUo_N`^UUNMNMNMNMNMNMM-UUU|M+UsmUs s2VsWVsU7t[xs~sU6|nzUUNUUUSSNUUUN\UUUJnUUUVn-Us ssss*ssss*ssus@6|n`\WUvN-UUU{n Us 6|sU]ss*|s +6|ssP"^s|sssssssssvsUUU+sP*|snxUNWUUNMNMNMNMNMNMNMNM{MUUUM U,2-;?55- VXp` ̴Ub^XXpabb`ccǛX\TV)ț5%% WVT\Ռ@BJJŪJIJIJIJIJI)JͪH,I))J)I)I*G)(ppp`裪) fxĀxWUŎ ^n^UU NTUUUNMNMNMNMNMNMNMNMmNmNmNN%UUUq2NUUU2NUUUP*NUUU Nn5UU| |s |s|s|s6|npPX\onnnnnnnnnnnnUUUkn UU6|nUUtnUUBNWUUn\UUUNUUU6|N UU| U|nU|N_U6|NUUVN_UU0"N\UUUmNNMNMNMNMNMNMNMNMNMNMNMsM5UUm 5U-UU z@촫Wb`@@@acb`cEǛTVWUțꪮț \XPPՍͪlJWWVTJIŪJIJIJIJIꪪ)JͪI)I))J)I)I*G)H`@țǛ %5@XUCpn|WU-"MTUUUNMNMNMNMNMNMNMmNmNmNmNnNnNnNnNnnononononontn%UU7| 7||U8||W|UՕ?vn\^VWqmonqmqmqmqmqmononononononnnnNnNnNnNnNnNmNmNmNmNNMNMNMNMNMNMNMNMNMNMdN-UUn- U%@jb5%bbb`cE@țțPPPPpm ++lJTTTTJIŪJIJIJIJIŪJ)H,I))J)I)I*G*G)VXpț) %D\pVUUnXW)N\UUUNMNMNMNMNMNMNMmNmNmNnNnNnN﫪nNnNonononqmononononononon着V|n5w7|U_X|7|7| `oTWUUonoononon着onononꫪononqmqmqmqmqmonononnNnNnNnNnNmNmNmNNMNMNMNMNMNMNMNMNMNMN UU- Up pX^jJbj acb`cE@@@@țț;mppPPm /lJTTTTJIJIJIJIJIŪꪪJ)I)ŻI))J)I)I*G*G)ȴ`)țW^xJǛ?  |`Ā`^U XnpVUUNMNMNMNMNMNMNMmNmNnNnNnNnNnnonononononnoon着oon*nꪪ*n(o뮪ooQ"oUUW3Kx8|nx\\\o몪oonnoonooooonononnoqmqmqmqmonononnN꺪nNnNnNmNmNmNNMNMNMNMNMNMNMNMNMRM5UUU¼N U¼ UU -)`x)\UUUbIUյ%be bbb`cE@ț蛧****MPPPPmM +*lJTTVVJIŪJIJIJIJ)ŪJ)ꪪI)I))J)I)I*G*G)H)Ũ@)țU^xǛ?ț -UpxxVUUŭ`^U SMTUUUNMNMNMNMNMNMmNmNnNnNnNnN*ononononononnoooo*n*n* +n" nnnn 5xX o\Xx`//o//o//onno"nnonnoooononꪪnonoonqmonononnNnNnNnNmNmNNMNMNMNMNMNMNMNMNMM UUŭ% %YX \WUUC)UU5b) baﺯbcﻃcǛUUWTțMXX\TmLūKJTTWUJIŪJIJIJIJI꺪)JͪI)I))J)I)I*G*G)H)H()ŪǛ^xHțUUU\ț-UU-@xVxBNx^WUNMNMNMNMNMNMmNmNnNnNnNﯪonqmonononon*o着o,0nnn"////////BUUU  52`2UUWTo oo(o oꪪolonooonꪪononnoqmqmononnnnNꪪnNnNmNmNmNNMNMNMNMNMNMNMNMk:MUUUm  % UD *xWTWUUCUU5b bcaa￿b`ccVVT\/,TVWULJJJŪJIŪJIJIJIJIŪ)JͪI)I))J)I)I*G*G)H)()()((țX`țUUW\ț5UUU %|N`XVUŏx^(N\UUUNMNMNMNMNMNMmNnNNnnNonononon몪onoon*nn(//       *5UUU UU:\TUU     //ooollooonꪪonꪪnonoqmqmononnNꪪnNꪪnNnNmNmNmNNMNMNMNMNMNMNM NUUUN%U-UU# 5OpxWU)țUbUU b-bcbcaacb`ccﮯǛ\XPpǛ ̀`, J,5%JJŪJIŪJIJIJIJI)JͪI)I))J)I)I*G*G)H)()()('*Ū(h`(ǛUW\ ? -Ux^WU p\UNTUUUNMNMNMNMNMmNnNnNnN﫪onononon﫪onꪪ +oon*n +//     * +o +o +oﮰ o oollon*oonꪪonnoqmqmononnnnNnNnNmNmNmNNMNMNMNMNMNMNMm 5UUō % -pVzț\WUUțǛ(bțյ-bDbbbcbcaeabb`ccUu룴Ǜp``Ǜț%%5`pPX +J JJŪJIŪJIJIJIJIź)JͪI)I*)J)I)I*G*G)H)H)(())()((jC`Xn2`ôn`\WUNMNMNMNMNMmNmNnNnNnnqmononnlnn//   﫪                +o +o +o敖 //ooꨐllonoonꪪnoqmqmononnNnNnNnNmNmNNMNMNMNMNMNMNMHkMUUUn-5ț\xCțUUb= bbbbbbbcbcaacb`cE%UWVTV֧Uw[˴X\VW ̴*+J+JJŪJIJIJUUU5rIUUIUUqIUU~IUUU\I))J)I)I*G*G)H)H)()('*Ū ((x\pBn\VUUNMNMNMNMNMmNnNnNﮯnNqmonﯮonnon//   着"*                    +oꪪ몪ꪪ//oo蠐llonoonnoqmqmononnNnNnNmNmNNMNMNMNMNMNMNMNMm  5CbUUWTbb꯫bbbbbcbcaabb`ccUU=꼃UU +ŃUU ŃUU_ऴ\XPpǛț %`p˴*/J˴55%JJŪJJŪJIrJU r ru֪u֪JhrIUWX`)J)I)I*G*G)H)H)()('*Ū(ĀXV `XN\WUUNMNMNMNMmNmNnNnNonononn*o*////    +     *            ꪪ       +oꪪoollooonꪪnonoqmonnnnNnNnNmNmNNMNMNMNMNMNMm .´N ĦbUUU\bbbbbcbcaabb`ccɼU ʼ  +*꼫+*J*UJͤ^x(ŃUUW\Ǜ@UUUT[ț5U|@X\WW˴=Jū JJŪJUUU5rJŵ-rrުUU r Z_UU^x0@r)W\p)I)I*G*G)H)()(I((Ā`XVp\NTUUUNMNMNMNMmNnNnNnN*ononoo*,0//   *        0                    ꪪ     +oꪪꪯo耀ollooonnoqmqmonnNnNnNmNmNNMNMNMNMNMNMNM¼m %UĆ{bUUV\bbbcbcaacbcUUU% ʼ++ +3UUU +UU*UUJUUUXjJͽ/ iͤpHͤUUW\ǛV\XpǛ %`pXjJŋ5% JJŪlJUU5J% *R5s% @UV\prުr)U^x`)I*G*G)H)H)((Āp\V⼎pXk[NTUUUNMNMNMNMmNnNnNnN +ononon +o*n//  * +* +        6CUU-wSU VS UvS U[ U*S UU^p    ꪪ        0 +0 +   ꪪoolonoonnonoqmononnNnNmNmNNMNMNMNMNMNMNM¼M 5UcbUUW\bcbcaacbc% ʼʼUU%ɼ-`jUVXpiͯ*դXŤUUUT`UUUT[率UP@|J\VWUjUUUJŪ J .*%-S,5յ-`rUWVxr@r)UWVX*G*G)H)(Ū(Ā`XW´op\BN\WUUNMNMNMNMmNnNnN*onononon* +//  +着           [ UՕ5[s"6K6S6K6S6K6SVS6KVK `@@`      "       몪 (0 +   꾪o olonoonꪪnoqmqmonnNnNnNnNmNmNNMNMNMNMNMNM´M %Uc bUUWXb]]abcbյ- i+ +* +ʴUՕ%M `UW\`Պկ// ՄXp弤UUUVT\xǛț %*`X\VJ*JJ5- J*@Jŋ^WoŪ5M5 r`8rUUWTr)p)UUWT*G)H)ĀpX^pXl[NTUUUNMNMNMmNmNnNnN"ononon**on*     몪       " wS + VS6KꪪVS6KVS6KVS6KꪪSK?[ +pP\V +  +  +  +  +  +  +          ꪪ   ꪪ   +p +oooȂolooonꪪnoqmononnNnNnNmNmNNMNMNMNMNMNM¼m 5UĦbUUUTaaci`pUՕ5- /@UWVXի/+դW\P`E`ǛUWV\δ5UUț *`X WV\}*)յ5J +JIpXVI5 \p`rUUUTr)^x`*G)Āp\⼎`XsNTUUUNMNMNMNM +nNnNnNononﻫn*,0//  *          *   +  + K U5S6KVSVKVSVKVSvKVSvKvS +`p\2 \ + * + ꪪ +  +  +  +  + ꮪ +  +  +  + w + ]  + UU           0 +  ( +oꪪoolnoonꪪnoqmononnNnNnNmNmNNMNMNMNMNMNMm %UƋbUUUTabg`d vފUU5 pUUUTI@ݤUWVXǛXp@Ǜ%5UKp\ \VUUʴ UJ Jxi)5@RWVXpr@*¼xXἰp'N\WUUNMNMNMNM + +nNnNonon*n +n* +*  *      + "   +  +  +  +  +  + S +% vSVS +vSVSvSVS"wSvS\vSՕ3 +TWUW2 + +U2 + +u1 + +2 + +]2 + +]1 + +2 + +U + + +  + + + + + + + +ﺪ +  +  +  +  + ] + U]       +   10 +ꪪ    +p//ooloonꪪonqmqmonnnnNnNmNmNNMNMNMNMNMNM¼. 5ccb=cipXTU͊UUU% \X`+* +ݤpUUUTjꪪǛWV\pǣț 5/@*XVWU)J 5- Ji`*\WUU)U5%;S`ĪjxpNXWUUNMNMNMNM*"nNnNononno*"//     "    *   +  +  + U + 2 +  +  + + + +2 + +﫪*C +UUc*SvSSvSSvSSvS\vS?"2 +TTVUR + r + r + r +R + r + r + r +2 + +2 + +2 + +2 + +2 + +2 + +2 + +W + + + + +  + 모 +  +  + U         10 +ꪪ  ꪪoolonoonnoqmonnNnNmNmNNMNMNMNMNMm MUUUm %Hp`j% @UV\P +ޤV\x``UUWTV֧UU @ `\VU)J 5- KJJ`X\VUUU) `\WUUbnX^WUNMNMNMNM* +nNnNononnn" +// *  *       +  +  +  +  + *2 + +2 + +U2 + +2 + + +2 + + r +S2 +5% SSSSSSSvSSSSs@@S +2 +S +2 +S +2 +S +2 +S +2 +S +2 +S +2 +S +2 +S +2 +S +2 +5 +1 +S +2 +3 +2 +R + R + 2 + +2 + +2 + +"2 + + R + + + +  + ꪪ +  +  + u      1 +   ꪰo⠀olnoonnoqmononnNnNmNmNNMNMNMNMNMm .m 5=%5:p_WUTI@դUWV\Ǜ\p`Ǜț%U@*`\WU)J U% JŪJ`piTUUU)% @p\VWn`x^WNMNMNMNM* +nNnNononn**,0 * + →      * +  +  +  +  + *2 + 2 + +2 + +*2 + + r +R +S +2 +S +2 +S +2 +SR + SS SSSS"SS* +SSw?SS +`pX\!!!!!!! +S +3 +0T +S +2 +ꪈS +2 +S +2 +S +2 +S +2 +S +2 +S +2 +R + R + 2 + +* 2 + +2 + +2 + +2 + +U +  + +  +       0 +ꪪ  //oonoonnoqmonnnnNꪪnNnNmNmNNMNMNMNMNMgsN5UUUō  ^Xp`*ݤXp@* ǛW\p`ǣț %`*`XWU)J U5 JjKJJX^VU[U5 pXV㼎 `PTnNTUUUNMNMNM**nNnNonono*n*    +      +  +  + + + +*2 + + +2 + +2 + +* r +32 +S +2 +S +2 +S +2 +S +2 +S +2 +S +U?SSSUSSSSSS몢S`Cs +TWUUs +S +s +S +s +S +t +S +]s +S +*s +S +t +S +Us +S +s +S +Ws +S +Us +S +U]s +S +U_s +S +UUU + +0T +S +3 +S + +ꪪS +2 +S +2 +S +2 +R + R + 2 + +2 + +2 + +_ + + + + ꪪ +     0 +  ꪪoooloonoqmqmnnnNnNmNmNNMNMNMNMNMdM%U5Uf @UUWT݊@ +դUVV\&@UV\pǣț%UVkX-)x| xVUU)J U5 JŊmIJ@`pǛ)% `xŐx KNTWUUNMNMNM*mNnNononn +n ** *     +  +  + 2 + +2 + +(2 + +* + r +32 +S +2 +S +2 +S +2 +!s +S +Us"Ss +S +s +S +着Ts +Օ%8\S7\S7\S7\S7\SSs +pPPpts +着tsts +ss +ts +ts +着ss +ts + +s +S +s +S +t +S +s +S +着s +S +s +S +t +S +Uws +S +USS + + + + S +3 +S +2 +ꪪ2 +3 +Q + R +  +2 +2 + +2 + + + +2 + +  +  +   ꪪ 1 +ꪪ   oꪰoꠠolooonqmononnNnNmNmNNMNMNMNMNM¼M %-5UXx`սդxp@UW\xǣț %U/ :@)\VVW5)=UUU) UJ +\ x*pWU \UUUI UUUJ  JʴmIJ*@JX\VW;UՕ`ô\VUUƬNXVUUNMNMNMmNnNononn"n +*     * +  +  + 2 + 2 + +/2 + ++R +S +2 +S +2 +ﮪS +2 +S +2 +S +2 +*s +S +sS +sS +tS +﮳ s +\ kKkKkK[S[SSs +`CUUVTs +ss +s +s +s +u +u +s +s +s + +S + +S + +S +t +S +s +S +T"st +S +_t +S +Us +S +_WSS + + S +2 +S +2 +ꪪS +2 +3 +2 +Q + 2 + +2 + +2 + +_ +2 + + ꪪ +     ꪪ   pꪪ//oȈolooonqmonnnnNꪪnNnNmNmNNMNMNMNMNUUUm  -5 %58@UWV\ՊդUWVT`UWX`ǣ-UU [`ț^xUUțUUʹI@pI)ꪪ))ij)UUU)/UU)+U)+UV~J_ U*~UU \UUU)* UU%J)5 kJŪ꺪JKŪmIJ裀`ț5%- @pXTWn`x\VNMNMNM*mNnNononon * +    +  +  + + + +2 + +"2 + +R +S +2 +S +2 +S +2 +P"TsS +sS +ss + st +ts +s +着s +Y\Օ5\SSSSSSSꪪSS*SSSST\\\X}wU + + + + +s +ss + +s + +s + +s +t +S +t +S +t +S +T"ss +S +SS + +S +2 +S +2 +S +2 +꺪3 +2 +Q + 2 + +2 + + R + + +  + + }    1 +   ꪪoolnonoqmonnnnNnNnNmNmNNMNMNMNMJNUU"m   XPp`ժ*դ\Xx`@W\`ǛJ5UUUț =U +xț~U|țxWUU ǣǣț %IPX\^I)KIU55K)U_)UUWx))i )) ) I UU-K յ +kŪ kJŪkJźꮺjJmIJ`ppp蛪 #`pXopXNTUUUNMNMmNnNononon**n( * +    +  +  + +2 + +2 + +R +S +2 +S +2 +*S +2 +*"S +2 +* +s +S +sS +ts +s +䀹s +s +s*s + +U]Yd5-[T\S[TTSTS\STS\xxpp + + + + + +ꪪU +t +t +ꪪs + +s +"s +S + +S +t +S +s +S +tS +s +S +_S +S + +S +3 +S +2 +*3 +2 +Q + 2 + + R + R + + +  +  +     ꠀ   ꪪoooloonoqmonnNnNmNNMNMNMNMNMM%5U%U@ފWTŴ@ŴܣļļxUU^Ǜǣvާ-UUUUUțUUUUțUU|率UUțxUUUǣǣǣǛ*gUUUrǣ\率5;`iTVUUiIUWKI- lkk +@kIWpK)UU+)UUW芴)UUUI)]}I *i UU UU +k UUK k +kKŪ + kJŪKJjJmIJǛppppț#@TWUUEmTWUUNMNMmNnNnN++ +onn*n + + +*  *  +  + 﫫 + + +2 + ++2 + + +S +2 +S +2 +S +2 +"s +S +sS +ss +ﮪts +s +s +u + +몴**YdTS(S9\TSS9\TSS9\S9\8T`@KUUWx(ꪪ]몪ꪵw +t +ꪪs + + +t +ꪀ +t + +s +ꪪ +S +ꪪt +S +t +S +tS +t +S +U]s +S +Uw +S +2 +S +2 +ꪪ3 +2 +Q + 2 + + R + + +  +  +  +      pꪪoo"oloonoqmonnN꺪nNmNmNNMNMNMNMNMn % %5@ZVVTTiBʪŤVVV\ļļüż^UU&UUUxǣǣǣǣǣǣǛ +UU/漧U+Ǜ%Ǜ`@Ǜǣț `pX\i_riUU lkkkժkkժkkժkkժk+~kkk + kJkKŀ kKŢkKŪkJŪkJŪkJźjJmIJțp`ɣ -pX\Vn`X\VNMNMNMnNnN**on뫏n +n +*   * +  +  + +2 + +2 + +32 +S +2 +S +2 +S"SsS +ss +s +s +u +s +*lV38\T8\T8\\8\T*\8T8\T\8T8\T8\L` +(8TVp#UUUT( + +ꪵ + +ꪪ + + +t +ꀔ +s +t +s +t +S +ꪪt +S +Ts +t +S +__ +S +UWw +S +2 +(S +2 +3 +2 +2 + +2 + + +2 + + ( +  + ꪈ   ꪰ//ooloonoqmonnNnNmNmNNMNMNMNM(cMUUM # Z)\\\T)*'Ť\\\\ļļüżżƼŴfx^ƴUƴUƴǛUUƴUƴ*ƴ漦ƴƴ缪䴪ǴWV\Xǣț%5\Ԯr 5rQ@rk^rkUU^kkժkkժkkժkkժkkժkkժkkժ kJŠ kKŪ + kJŪkJ꺺kJjJJ@*țWV\X[ț5UUǛ-ŀ`pů `pNTUUUNMNMnNnN*onn**n***   " +  + 2 + +/2 + ++ r +S +2 +S +2 +**P"Ts +S +sS +S +s +u + + +*V+UՕl8\TVVV8d8D8d8D8d8D8d8D8d8DY\8\UU8d8D8d8D8d8DY\8Ty\^\xp"W_ + + + + + + +t + +s + +s +ꪨt +S +ꪪTs +s +S +t +S +wS +S + +S +2 +ꪪ3 +2 +Q + 2 + +2 + + +2 + +  +  ꪪ1 +   꺪oooloonoqmonnNnNmNmNNMNMNMNM!N-5-5ʴ`ɼTWUUIȼ ++}\VWWļļüżżƼŴŴƬƬƴƼƴƼƼƴƼƴƴ껮ƴ,UU -ս ij̼ǛWUʪq r^UWxUUU\u֪u֪rk\rkUU^xkkժkkժkkժkkժkkժ kKŀkKŀ(kKŠ  kJŪkJźjJůmIjJJț`JțUU^xʹǛ5UUUț-U +@X^WWbՎ \VWUNMNMNM** +nNononn + + + + +* +   * + +  +  + +*2 + ++#3 +2 +S +2 +S +2 +s +S +sS +S +s +s +s*着**;yd8\TVvX\8\X\8\ꪪXd9DXd9DdCdCXd9DX\8\몀X\8\(X\8\Y\`@@着* + + +ꪪ + + +" +t +直 +t + +s +ꪪt +s +t +S +s +T +S +S + +S +3 +S +2 +ꪨ3 +2 +2 + +2 + + + + +  +   1 +   pꪪo//olnoonnoqmonnNmNmNNMNMNMNMNMN -# IxHXVUUH ++ɴ`x\ļļüżżƼŴŴƴŴƬƴƼƴƼƴƼƼƴ ƴUU-Mƴ NMN-~z UUW?U/k +xU_`YUUU\u֪`kW^`kkkժkkժkkժ kJ  kKŨkKŨkJŪkJŪKJ꺺JKŪmImIkJJʼnJțWX*țUUU Ǜ?|Ǜ/UUț U +`x\Ŏ`PXNMNMNM* +nNnN**ononon* +//* +"* +  * * +  + +2 + +2 + ++ +S +2 +S +2 +*s +S +sS +tS +s +s +*s +**+"Ly\8\Y\X\Y\X\Y\X\Y\X\Y\X\y\X\y\X\y\X\y\X\y\X\\X\??YTUV\pUW _ꪵ +ꪪ +꺪 + +Uw" +t + +s +ꪨ +s +t +S +t +S +s +S +S +S + +S +3 +S +2 +3 +2 +2 + + +2 + + ( +   poolnoonqmonnNnNmNmNNMNMNMNM¼M5U´%Upvx W蛀UU.\UUUHդHU% ļļüżżƼŴƴƴŴƬƴƼƴƼȴƴUUU̼ƴյ  ʼ +**N ŭMUUU--U 4-xUW\`u֪u֪rk^`kUUWTkkժkkժ kK"kKŨ kKźkJŪkJŪkJmImIkJKJKJJʼnJǛ_JǛUWǛUUUxțQŧ-UUU| +UU+UôTWUUƤN\WWUNMNMmNnN*onn* +//ﯫ* + +*   +  + ++2 + + r +S +2 +S +2 +*s +S +S +sS +s +s* + ++y\55%y\X\y\Y\y\Y\y\Y\y\Y\*y\Y\:"y\Y\y\Y\y\Y\W\{\W\{\y\Y\y\w#`y\UWxW#U6"66u ꪪ{ꪵ + + + + +UW + +UWw +t + +s +ꪪ +S +ꪪt +S +s +S +T +S + +S +3 +S +2 +3 +2 +2 + + +2 + +  + + 1 +  p//oꪐloonoononnNnNmNmNNMNMNMNMm  % %VxK_țUț_UU5ǛxUUUǛțǛUU 蛵 ļļüżżƼŴŴƬƬƴƼƴƴ`\VU̼ ̼-U- @rWxUUUTu֪k\pkWUTkkժ kK""kKŢkKŊkJŪkJŪKJŪjJſmImIkJkJKJJJŪJJŪJJŪJ*@Jŧ^JŧU*ǛUUț% ⼎`pX\NMNMNM*** +NnnN* + +onon+*n +     +  + * +2 + ++2 + + +S +2 +S +2 + +s +S + s +s +"*߿**着*6"6666\V w\{\\y\\y\\z\\y\\z\\z\\z\\z\\z\\z\\z\w\{\w\{\lDr\V\6U^p6 6666_ꠠ + +* +ꪪ + +ꨴ +"" +t + +t + +t +Wt +S +ꪨt +S +t +S + +3 +S +S +3 +_3 +2 +3 + + +2 + +  +ꪪ +  W pooꪪoloonoqmonnNꪪnNmNmNNMNMNMNM%N5UĬJdUUWTǛ믯Ǜ%ǛUUU-ǛUU +ǛU +Ǜ%ļļüżżƼŴŴƴŴƬƴ@ƴjp\VUj*++櫴UUU-\x@rUUUTr֪rkV\p@kkժ kK kKł(kJŨkKŪ* + kJŪkJźjJmImIkJkJKJJJŪJJŪJJŪJJŪJJŪJIŪJ@J@NTWUUNMNMnNnN + +onono+** *    +  + *2 + ++2 + ++S +2 +*S +2 + +t +S +tS +s +s/ ++ + +*66666VV7d6U5 dy\\\\\\\\y\\\\\\y\\y\\y\* \y\\y\몙\y\\y\몙\y\\y\\y\\9L@36WWV|W7+6 7+6 6*6 66 + +  + + + +"" +t + +t + + t +S +t +S +S +S + +S +3 +~3 + +ꪪ3 + + +2 + +  + +  ꪪ  poooolooqmonnnnNꪪnNmNmNNMNMNMNMm %5Ǜ^XǛUǛ*E-ļļüżżƼŴĬƬƬƴI`P\WjJ/=jUU5̴% VX`rުr@1kUWV\ kK kKŪ kKŪkKźkJŪkJŪkJmImIkJKJKJJJŪJJŪJJŪJJŪJJŪJIŪI@pPXnpX\NMNMmNnN*ononn** +*  1  * + +  + "2 + +? S +2 +S +2 +*s +3 +t +S +S +s +*s/ +* +ﯪ +*666+6WV7W6W6(yTWUU5\w d\\\UU\\Uu\\U]\\W\\U\\U\\\\d\\\U\\\\UW\\\\\\UUUߙ\\\\\WV\\XWW676769+5 766666 + +ꪀ + + + + + + + +" +t + +t +t +s +t +S +t +S +T +S + +S +3 +_3 + +3 + +2 + + + +  + +    po(oꪐlnonoqmonnNnNmNNMNMNMNMDMUUἩJ¼UUWTļļüżżƼŴŴƬƴ)`X)).IUUU% Y@UVTXrުrkXppkk kKŢ(kKň(kKŊkKŨkJŪkJŮJKŪmImIkJkJKJJJŪJJŪJJŪJJŪJJŪJ'@B@'NTVUUNMNM***Nnonon*o +* + + +* +  * + + +  + +2 + ++R + S +2 + + +s +S +s +S + s +s + +U * + +**666VVW6W6W6wWwW響dw% \\+d\d\\\d\d\d\d\d\d\d\\\ꪼd\\\\\ \\\\ꪨ\\\\\WXPp`wWw7W6VWW6WW67766(66_ + + + +ꪪ + + + +" +t +蠀 +t + +t +Ut +S +t +S +T +S +S +3 +S +2 +(S + +3 +2 +3 + +W_ + +ꪨ +    p[% c6Czc_[oUcU[oU[nU[oUUwSnUU5KnUUWnNꪪnNmNmNNMNMNMNMN -5ăV\XpꯣļļüżżƼŴŴƴ@Ŵ \VWU) //j% rP`rުr@kUUWTkKł   kKŊ + kJŪkJŪ꺪jJmImIkJKJKJJJŪJJŪJJŪJJŪJJŪJ`xX⼎@pPXNMNMmNnN**ono/** * +  *" + + U + / +2 + +2 + + S +2 + +s +S +s +S +/ s +s +* +* +(6 +66 +6WU9W6 +w6wV*wW +V +w流wm3\\着\\\\\\\\\\몪\\\\\\\\ꪪ\\\\d\\\wd\\\\\\\\\\#@@wWwwWwVw6W6WW7956 66W_ +_ + + + + +ꪨ + +" + +t +ꨔ +t +_t +S +ꪪt +S +s +S +U__ +S +3 +S +2 +3 + +몪3 + +W_ +2 + +ꪪ   p꺰[ 8l[[ck[c[[[c[[w[0([w[w[6KwSN^Pp@nNnNmNNMNMNMNM$N5UgsļļüżżƼżĬƴ蛀pp)ț)UՕ5@rUWW\rrުkWVT\ kKŠkKŪ kKŪkJŪkJźjJjJmIkJKJKJJJŪJJŪJJŪJJŪJJŪ)\Tn\VWUNMNM**nNonon* +*n  +  ** + + U + ++2 + +R + S +2 ++*s +S +s +S +/s +s +* + + +6u6"6VW6W6w6*wW++wV +w*w*w" +m+d\d\d\d\\\U\\U\\]\\_d\d\\\w\\U\\]W\\U}d\\\\\ꪂ\\\\\TjTUVVTwwwwWwwW wWWWW6WW677666ꪪ + + + +ꪢ + + +ꪠ + + + +W + +t +蠔 +t +_ +S +t +S +t +S +S +3 +蠀 +3 +2 +3 + + +2 + + +  _ po[%55c[c[ꪪc[c[[[c[[w[[w[—[w[w[@CNUUV\nNmNmNNMNMNMNMN ĄW^\xļļüżżƼŴŴ뻿PX\V 蛪 % r\XxprrުrkXPPp kK(kKŢkKŪ + kJŪkJ꺪JKŪmImIKJkJKJJJŪJJŪJJŪJJŪJĀpŏ`xNMNMmNnN***onono/+ * + +*    + +2 + +2 + +/ +S +2 +*s +S +Us +S ++s +s +* +*/*6 +66VW6W6"w6*wV*Ww*w*"UUU5"UU"UU\:U\:U\:U\\\d\d\d\\\d\d\d\d\2V\2U\2 \\\\\\\\\\U}]\UU]\\\Xpwwꪗ6@w~wqWwqUWqUU6qUU6qUUq6Uq7Uq6UU6UU_6UUU6"6 + + + + + +" + +t +ꪔ +t + + t +S +T +S +S +3 +S +3 +S +3 +WWW_3 + + +22 + + +耀  pꪓ*5c28l[c[c[[[ꨗc[c[[w[[w[xctCw[nXpnNnNmNNMNMNMNMM55ăp`@ãļļüżżŴŴżj'ț/UՕ5rp`@@rrުrkpp``kKkJŀkKŠ( kKŪmJ/KUU/*JUUQJUUJUUWkJkJKJJJŪJJŪJJŪJJŪIpX\VnX\TVNU NUNUnUnUoUUUUUUU U U +U2 +U2 +US +US +Ut +_^\\s +*?*+ + + + +6+66WW6w6 +w6wUw*v*@"% "":"Օ%:2:3;:ﻫd\e\e\e\e\ﺪd\d\d\\dK2TTTT22\2 %55\d\d\d\d\\\\( d+pz"UU+" 6qUUUqq"qr"qr"qr"qr"qr"qr"q!qQQ q~rU^qUUW6 + +ꪪ + +" + +ꪪ + +1 +U---1t +U1t +U1t +S +US +U *3 +U3 +U2 +U +U +U +UUu}["[BUUU[BUUU[BUUU[B555[[c[[[[w[w[v[w[6[ +w[nVX"NUUW\mNmNNMNMNMNUUUN ἄUWV\UUU%ݤUU ޥUU +ޥUUޥUUIťUUW\żżƼŴț@@ț/ յ55@@rk```` kKŀ*kKňkKŪK,pTn,)++ Վ/--/1խr1ޭ---r0`rJ^rJUU_`KJJJŪJJŪJJŪJ@:`NTUUUn !!ﻫ!.* +"!!*/0 +\\\\?(* +;+ +66VW6w6*wV*"wUww***** "% """!\W2! +UU2!UU:!/55;2*e\edꪀed e\ededed\!TTx\)USK!WU*2! +/577L2UU\2 e\e\\2z\2~U\2_UU3;2"~q"!Uq"!Uq"!UU!qU:WU +:UU!qU!qU!qUW!rUU!qUUUxqrqrqrqQ/q^rUUV` + + + + +ꪴ" + +1 +----1"0QQ1ꪪ10) +ꪪ) +* 꺺(/BB:B:B:v[B5555[[⸀c[[[[w[[x[wcvCw[VS*wSN\\XPnNmNNMNMNMNMm-%5ĄXXpp￾넴ͤUUU5դU -+*0ՀƼ`ͥUUVXżƼŴŴț`pppț%- @@r1ުRތ```` kKŢ kKŨKX- mUU5խUUrUWxrUUUTQꪪrJ^xQJUU^xJJŪJJŪJ@`PXŮ ppXX!NUU !n +!UU!UU!UU!UU!UU!UU"!UU!UU!UU!UU!UU!UU!UU!UU!UU!w!UUz`Q1\\\\* +**+6* +6 +VW6w6 +wW+*w*w+* +* +"% """!p\/*5 ֚9@C!4444;;;e\;ee;ee;ee;ee;ee;eeVd!ppp`Y"VTT\22tC25UUU7L2UUUK2xUUU2/*x2!~Wvt_U%Y"UU!UBU +cU*UU_6cW}/*Wz!U_9"UU^tCUT!rUU^rqrqrqrWxUUWT + + +r +UU! +UU! +!1UU!1UU!1UU!1UU!1UU!2!UU!UU!UU!UU!UU!UU!UU!UU! !UU!UU!UU!UU!UU!UU!UU!ժB!UB!UB!B:v[B5555[[[[[[~[w[[t[x[t[w[VSw[op@ NUUUTmNmNNMNMNMMUUħIŤUUU5դյ ' կ**UUU5U+0U0UUUVXՍ͠~Ŵp缥UUWTŴŴțPPPPțț Z@@@@11k````  K˼` ˼ UU5n xUUxruuQ@rJWXJUUW\IX\VWn\VVW!N *U"U"U"U"U"U"U"U"U"U"U"U"U"U"U"U*Uꀀ!prp01|\\\+* ++ +*6ݿ+6+6Ww6wV*ww/*w++ +U/"##"pv#"TWUU"!`x"Օ% Z\UU_rz@@@C!44442;;;e\;e:e;e:e;e:e;e:e[e:e:];mVd!```zήPp2! 2!2!zUUtW/z!UU//* / + XUW;u|zz!UX9/"UUWx!rUUxrqrqrqrPUUV\言 +r +}*U%%"U"U"U"U"U"U"U"U"U"U"U"U"U"U"U"U"U"U"U"U"U"U"U"U*U\*U!B:[B5555c[[[ਨc[[[[w[[x[w[vSw[6S*VSNV\x`nNmNNMNMNMNMN ἄWV\XżդU- դ UU-U  `UUV\L_LͥV\xxƼŴŴțXXXXțǛ @@տUk```` kJ kj ˼-%- ^UUWxu֪rG` @@-!N 5t }~_U_UUUUTTVW9@@@@[TTTT)  @@@@⢠d5% k9ddcccccccꪪc[c[c[[[ [[[[[[[w[jw[WSw[VSW[VSWS6Sw[S>WSNVXpn NMNMMU%5`@@@i +Ŵ%%%Ŵ뿿V^\\ UUP j`pPPI +kŪ kI```p)Hj `ppxnpXXXNMnNono//+ +* + + **:>!5555\````<@@@@p2T0R0 + + +/ 6? W+*w6* +Ww+ + +=? $9$9$$/ Y$9$ y$Y$U$Y$ﯫz$"p#"TUUU"!@Xܻ/*% ߚ?5 XXXXZRK!4444L;m:emm. mmmmmmmmmml"}TVVW9@@@@[TTTT*  @@@@ꪪ*UUd2k9ddcdckTc[cccVS[vSW[vSU[vS [[[[[w[xctCw[VSw[VSV[6SVS6SVS6SWSnW\`N-NMm ..?N@@hŴ%%%5ŴƴXXXpǣ IX\TVi) +kʴk)ppPP() xX\\nX\VVNM*nN/+qmon*** +o+ +?//?/ >>>?!5555\````<@@@@p20r0* +695W* + +wV* + +w** +*+ +/ +$9$9$ +Y$9$?+y$Y$/z$y$$"`8$"XVUU"!X"% ֕% XXXXYRK!4444sC;m{eڅeumumumummml"<`P<"@`:!5% m;5% me]}memmmm(mm(emmemee{eꪪe{ee{ee{e{eY$p`@@Y$9$Y$9$_9$9ꪪ9$!% B ]@<9@@@@[TTTT*  @@@@ [55-8ldld~dcdcdckScc[:PPXB:B:[: [[[[[w[xctC[TW[VSV[6SVS6SVS6SwS6S5UU6SNWXpNMNM @@@iHŴi5555ŴƴǛpp`ǣ %5@5(TVWUK(Օ5kkժK)PPXX)\\VV tNTVWUNM** + +nN++ + +onl/+ + +????!5555\````<@@@@p20r05*/ +6+ +W6+wW W**w++ +* +*9$*Y$9$y$Y$$#$$ + +`$"X^WU"!`!Uյ-֌Օ% XXXXYSK!4444Cu;m{mummumm܅e܅euml"9@@@@[TTTT +@@@@8d + 8l8d8ldc9ddcccc!pc!Uc!WU:!B:[: [[[w[[w[xcCw[W[w[VSYkUKVS6SWS6S6S6SWS6S5UUVSNW\pn MN  @@@@iHզH5555Ŵƴ@ǛI`pX(K(5% kkժk(X\\\)8@"1l@n-mNono/+***??/ +????!5555\````<@@@@p2Pr05=7=/+ +6/7 +w**w+w ww* +*9$*Y$9$/YY,$Y$$y$y$"p\W"P"@"UU5! U%<XXXXZSK!4444CtC*mmmummmmmummmml"صj|"\Ze;Օ5%mmmm]}]}m:fmmmm뺪ememmen|eee*eeꪽeeee{eY$\Xp`$Y$9$9$"x^U#!z^^*% \XXxޯꪈ7"V\\\w\\\TwWW7W784  77 +! + >9@@@@[TTTT +@@@@8lt8l8d8ldc9ddcꪺdc~c!pppP"kUԲB:[: [[[w[[w[ꪗ[w[wcvCv[VSꪪV[6SVS6SW[6SVS6S6SS6SS6SNWX`m %%%% @H(+/H5555ŴƬƴWVT\UUU* [@(\VWUUkʼn kkժk\\\\ O` @@@@NMnNon**o++++/++ +*  +???!5555\````<@@@@210r????6/7W+* +wW ww**=/ ??//*9$Y$**y$Y$Uy$Y$?+$y$y$"p\""" +t;z^_" UU5 XXXXZSK!4444;Kumumꪺumumumununl"9@@@@[TTTT +@@@@8d + 58ldldk9ddcdcc!XXX\ص/_j``ԲB:[: [[[[[w[[w[wcvCVSw[VS6SVS6SW[6SVS6S6SSఠ6SS6SS?cB555-%%5(@( + +*ŴH5555ŴƴƴXxp`ǣ %5`x\(K5% kkժkkժK\\XX(5``Ŏ``ppNMnN/qmon*** +o +* + +2****!5555\````<@@@@2Q0????6W*wWx+w w* + + +9$Y$Y$9$/ $Y$$y$$"`xu#"TWUU"!pX!5 >?!5555\````<@@@@2Q0ﮫQ6?/W + + +wW+/ + +ww* + +) + +?; +** +9$Y$9$//y$Y$/$Y$$4#`X$"\WUU"!pX!5 5% XXXXZsK!4444;Kvm vvmvmnmnmnmmmmmmm u^mmꪀmCpe3;VUWL3;xWUUS;!^"_UU5!ե??!5555\````<@@@@2Q1QW+ wW// +w= +w + + + +/  **9$Y$9$=++ +$Y$$y$$"`x^W""`/"UU5c U5 XXXXZsK!4444DtC=vm=vv着=vv=vv=vv=vv=vv=vv=vvu]vvvm>vmvnmꪪnmmmmmmCxmS;hWUWL3;\UUU3;!^W-!ս<畄 }5 ~@"`x\Vv/*% =7777XXXXZK!6666KC]~m^~;v^~;v]~=== =="=+@"ו5Z "^~"^U,!U+$" $$,$$$$z$చ$z$$z$WWUWz$Y$Z$99$99$#UUU5{ [:u)[}[}:!\\\\~<``pXZ@@@@cTTT:Q"[:XtylYlXlYlXlXl8l8l!`^! 5ppppyԑ::[: c[c[[[[w[ ctCw[vSVSw[U[ySVS6SW[6S6SS6SSSSSSS k%klklkKkUUU +kUUUkUUUkkŪkkŪ kUUƴUVXpƬƴƼƴƼƴƼmƴUU5 հͪUՏͪUU-ս +-@W\`W޶kV\`kkժkkժ1k5RUU ZUUU%UUUUsUUrUU{RUUU1xR1ި_RU\XXX'N^\\\nN on* ++++//3T3tT= +T + +BB@B!5555\````<@@@@"!6666rUU%\WUU33z^/* UU5 @"x\Wռ=! =5======E<&==*==== +7777XXXXZS!666L+~U]v=pWUU===============!@`px- @!^~"^U,!U ,# ,,,$ꪺ$$$$W_$$$$$z$$z$wWz$Z$Z$YY$9#Y9~ਠ{uUU5{$ [:[:9=};:}:!\\\\~=======7777xxxxz@@@@;!6666+3~V5-=UU5FU}p\E>F=F=F=>+````!%%%%O*x"xVUU|5"յ/ |5W,|5{5{5]-[5|-[5[-[-;-=>=>=>=7777xxxxZT!6666VT3^-}f(Jކ=\VWU>=>=諭>=E==3@@@!%%%%B@=/"\VUU[5"?/5W, 5|5|5{5|5\5ࠀ{5]-[5[-[-;-\E;%<5;-;--~-,ꠀ-,,$,$ꪪ$$$$$$$!`pxX* }@]TVWU[ԴS#UU5+ {{{{{[|Xz[[Zu[:9]}:!\\\\~\\\\Z@@@@c"::[:slylXlkl7lZlXl8l~8ld8ldc!XXpp:zpp`@!ccc[c[[[꺷[[[w[v[!pXXS X\\\z!XXXXq20*6SQ255556S6S6SSSSS%% XXXXʼj??kK k\VWUUՕO z@PWWVTP0jՎ[5^\\\nVVT\oN+/+++3====T3**++T +????!5555\````<@@@/*% <ߪ*5 O*`PT{-!- 556|5=5ކ5UU 5U=UUކ=UU_v=UUU=N=UUUx>=>=ކ>UUU->Uս>U=7777xxxxz@@@@5\!6666VT6T?F`P\VF=F=F=F=F==4@@/"%555\p]/"pX\V+! 53+ 555|5|5{5|5\5{5]-\5[-ꪪ[-;-\E;%<5;-;-----,-,WW_w,$$$$$$#@Wח5٭``pֹ[ԴS# wl {ࠠ{{{{[|Xz[[ZZ}[9]}:!\\\\~<\TTTZ@@@@c"::[:slylXlYlXl7lZl8lYd8ld[Xtd!pp!UU!UUl!*c[c[c[[[[[[VS@:!ח5Y\\\\z!XXXXq20*6SQ255556SS6SSSS5[ #|jXX\\ʼjkK*kʹpδʹδ5/\\Pp0/ުU/^\XXMxXtMUXxppn\XXXono/--3===T + + +*T=== +!5555\```<@ <ީ<5 !`x{=!ַ 5[- +**5-55,. + +}f5U}f ކzn~=N_F~ " ^7777xxxxz@5\!666VT5L-Fr\=N=M=>M=>M=>F=F==Z=@wj5d7,+UՕ5;5555|55|5|5{5{5]-[5}-[-\5\E;%<5;-;-----,,$,$,$$$$"@pX/*5% pPPXֹ[ԔSKwl {ࠀ{{{{[{[x\[ZZ}[[::!\\\\~TTTTZ@@@@c"::[:slylYl~~YlXl7lZl8lYd8ld\tdcdcccc\ccc[c[[[[[v[!`x!55- y\\\\z!XXXXq20*6SQ255556SS6SSSS{i\\TVKi5kK(KʹppXXʹ /p``/ppp PL _``@@Ů XpppnN o++//3 + T +* +*T// +!5555@F>=?F=?F=FE>>=E"\\\;]`O*`+! 4+55555|55|5|5{5{5]-\5[-ꪪ[-\5[-;-<-;-;--5;=-,__,$,$$"`ݶ_cXXXXֹc"SSwl {{{{{}{{[|Xz[Z}[[::!\\\\~U>WU>UUUF>=Ϯ7777xxxxz@@@@;!66663,F:=F>ꮪF>=?F=?FE>E>E>=!Xpp`p* =>=>=E=>E=>>Z=@]P"5555ppppz@@;!66663,>3>F>FE=>E=>E>>=>==!@"-55=>=>=E=>E=>>s+@}/"5%%pppp֚@@@C!4443+>3 -5F>F>E=>E=>>=E>>=>=M"\X2=>=>=>=>Z=`="@`~]O2 ppppֹx3+4+5UU>3 -F>F>E>>E>E>>=ꪪ>==O"``/" %4+>5>=E>>=>===ࢨ=!\P` -}`@]}<]}<]=n~}VU}=n-{{~}5@p=5>+xxxx+++++3++"`;_W"- <5% @UWV\/"`W\+! 3+3++44+5+?>=>=>=>==+`"5W^* ]<]<]]}\着}\}]{~5PPPpN-5p"T+"U+!UX}_U-/*U)=>=>=>====p"`/%W_O" }`==>=>>===E&="pn5^z"-<`}]\\]\]}]}\{~ڕ!+UrS`@@@=>"=+*>==>>=>=E%=5"55ꪪ54`5!W^`" UU*@Wx\<]<]\\]}]}]{~}=>=>=>=>=E%=6=6=5ꪪ=55"p5"UW U_!URK <~UU_UUU +տ\@5l^W"zUUU\U$"U$#-$$$$$!p`" %5\\XxD444ە9555}}}[@@@=/*%UUP*UUP*UUP*UUP*UUP*UUP*UUO*UUO*UUO*UUO*UUO*UUO*UU/*UU/*UU/*UU/*UU/*UU/*UU/*UU/*UU/*UU/*UU/*UU/*UU/*UU/*UU/*UU/*UU/*UU/*UU*UU*UU*UU*UU*UU*UU*UU*UU*UU*UU*UU!X^UUS:4[SUUUİs kHkk`k(U^(UUW\vI5UUUi UO-@j`\WGJkI5%  kŪ````* %%%%@ ʴWʼ55͉^XpHiUUUIUUI~UU|(xUUU(˴UUU5U/) ֪ͪͪ` po+--- +/ 3====u4uն u<Zu:u={uZu{}{ue}}///}}////݅}}=}^<\`6UWV\>5*>F%>>>>==>>>>>>>>>>>==>=?>=?>>=>==>>=E%=5=6=65=55=N-5554@5"W5!U5!U> +UU/"UU"UU/"UU/"UU/"UUP"UUUM!XU*-!U+-!U -3# -$4$$$$__W_$$$$5WW!UU!UU8,!6755܅Z$5ܕ}{{{[{[z[Z}[[:;:}:}:}}|}}|__|||t|ttttttttltylꪙtyldylXlYl8l8tY\8l8d8ld8lcdcccc\ccc[c[[[[[[v[[w[v[V[V[VSVS6SV[6S6SS(6SSS55kĵ%% lkŮklŪkkkIpK)U^)̼IUUUI UUUjUUU|IxUUUiI?KI5 kK KŪ@@ 雪| +%555ʼ@@`ʼͩ55%%͎ŀiW\MHUUUiH__^(UUU/(UUU+U͊-֪ͫͪͪͪͪV\X&UWT\/=== -3 ++T + + + T +++w#UՕu<[u:u{uZu}{ue}}+ + }}-+}}<}^<<]<]\|]}]~{}}*>p`F6>>5F&F&>>>>>>>>>>==>==>=?>=?>=?>>=F%E&E&=5=655555555 55555555555|5@5,^|-,_|-x,U|-,U\-,|-,\-;-;5<;---%-$4$$$$$$,$T#\$T#Uz$T#U4#Z`UUUDZU{m}}{{}{x\z[Z}[[:;:}:}:}}}}|d|||tt|tt_tttttltyltylylYlylXlYl8l8lYdXlc8ldk8dcdccc[ccccc[[[[[[v[w[v[v[V[V[VSVS6S6S6S6SS6SS5[% k kŌŪklŪkkklkkʼnhkIU~kIUU~kIUUUkIUU/kI k@@)ɛ55ppx\W͉% ,`ʴW˴ͪ뫮֪ͯͪͪͪͪXp`Xx``o++/++-- + ++T ++uT \5:ud + +[u:u{uZu}{ue}} # +}}  }}+}<\<<<]=]\|]}]}}~{}}j6WV\\=>5>6F&F&>>>>>>>>==>==>==>=?>F%>=F%E&=5=5ꪪ=6555555=555555555555-<5<.|5|-{E|%|-\-言}-[-\-[-\-;-;-<%;---%%$,$$$$$$$$$$$$ZzZ#Z %}{{}{x\[zuZ}[[:::}:}:}}_}}|d|||tt||ttttttltyllyl_^_}ylYlYl8lYl8l8t9\8ld8lddcdcccccc[c[c[[[[v[[v[wcvCv[V[V[6S誨VS6S6S6S6SS)SUՕ5*V5IūkŌŪklŪkkkklklkkkŪkkŪkkŪkkŪkkŪkkŪ k+ițVT\@扴\VWUii;֪ͮꪪͪͪͪ։@ō`cUWV\+/)--T+/--uT//-l5% :ul[u:u{uZu}{ue}} + + +}}ۅ}}** +}\<?/ ]<<]]=?* +]\}]}]}}~{~}}﯏>Xpp@5=>5=>>6>6F&F&F&==>=F%==>>=F%F%F%F%=6=5=5=5555==5=>555ꪻ55555-555--|-|5|-{E|%|-\-]-[-]-[-\-;-;-<%;--~~-%%$,$$$$$$$$$$$~$z$$Zz$ZZ::UU[m{{}{{[x\[Zu[:;:}::}:}:}}__}|}|d|||ttt|ttttttltylxydylYlklYl8l8\8|8ld\tdcdckTccc[k[c[ꪷ[[~[v[[v[v[V[U[ySV[6SV[6S6SS S6SS5% l5- m͋klŪklŪkkklklklkkkŪkkŪkkŪkkŪkkŪ kKł*"Kț^\\Xț`pXIUiՕ%;֪֪ͪͪͪ1ͪ\\x`#Ű^\Pp --+4--%u4//-lu :ul[u:u{uZu}[u/e}}}}}}+~<}~]<]=?}]\ߎ\}}}~}}]V@v6UUWT5=>5=>>6>6>6F&F&=F%=F%>=F%>=>=>==65==55555M-555555ꪪ555555਼555-5|-|5|-{5|-|-\-]-[-\-<-\-;-;-<%;---%%$,$$$~$$$$$$$$z,$ZY$ZZ::D{{{{[x\[Z[:=9}::}:}:}}_W_}|}|d|tt|tttttttttllyldylYl~Yl8lꪺYl8l8l8d8ld\tdcdckTccc[k[[[[[[v[[V[v[V[V[6SV[6SV[6S6SSSUUUU[lG kklŪklŪkklklklklkkkŪkkŪkkŪkkŪkkŪ kțXPp`ț -5-@{I\VWUI(i% ֪֪ͯͫͮͫͪͪ1ͪE` `/KUUUT -4/u4lu ul+++Zuu/{uZuu{u=%%%e}}}}}}****~</}~<]]<]\]\}]}}~}}6^X`M.M.5=>5=>>6>6=>5=>5=>5>>5>5>5>5=6=55=5555ꪪ55=555555555__55 5-5--5-|-E}%{5|-|-\-}-[-[-;-<-;-;-<%;-%5%$,$$$___,$$$$$Zz$Z#Z:~9xZ$ ;;{x|{[⠪[zuZ}[[:=9}::}:}}}}|}|d||t||ttttttttyllyl~dylXlYl8lXl8l8ld[YtdcdcdckT[kc[c[[[[[[v[w[V[v[V[V[6SV[6S6S6S6SS¼S55 lĵ% m͋m͋klŪklŪkklklklklkkkŪkkŪkkŪkkŪkkŪkkŪ k(@ițUUWTț5Uv[@(`X^WI()U%͎ﯻ֪뿯ͪͪͪͪ1ͪ0ͪV\XpV\\p++/3//-T + +l-%55ul+:uu {u:uu[u++/+e}}}}}ڍ~****<<////;~>]<ﯝ܅]\ߎ}]}}}}}*}f@6UV\`M.M.65 +>6>6>6>6>65>5>65=55==5M-5555=5=5555555555- 5-5-5--|-5}-|-\- |-\-]-[-\-;-ꪪ<-;-;-%;-%5%$z$$$$,$$$$j$$zzZh#Z:^~: %{{{{{[[Zu[Z[:=9}::};}}|}|||d|tꪪt||ttttttttyllyl___]XydylXl7lZlYl8l_8ld[Ytdcdccccc꺺c[k[c[[[4\8[[v[[V[v[V[j[V[6SVk6K6SSScSUUUT[ km͋lkꪪkŌŪklŪkkklklklklkkkŪkkŪkkŪkkŪ kKň" kK"*KțV\Xpț*ț 5[@)p\WIU˴UU(  ͫͻ֪﮻ͺ֪ͪͪ1ͪ0ͪ`1p0UUUT/-T+)-du55ul++:uu --{u:ux|m}{u*}}}}}}<}<\;~>]<܅}]}]￿{~~}}}}}~~`6W`6UU^xM.M.M.M.M.M.M.65ꪪ65N-N-M-M-5555=5555555555-|5.5-5--|--|-5}-|-\-ࠪ|-[-[5]\-;-<-;%ꪪ;%<--%5%$$$$$$$$$$~z~,$zzZr||Z:Z<ۍ%5ܕUUUV{{x|{[[Zu[Z[:=9}:}:}}~_|}}||||||ttt|ttttttyltylxydylYlYlXlYl8lyl8lWWWW8ld\tdc說dcdccSpc"zcWcוc[W^TV4\8[[v[w[V[V[S V[6S6[6S6SSਨS%-kĕ5% lm͋m͋klŪklŪkklklklklkkkŪkkŪkkŪkkŪkkŪ kKŢK`ɴUUWT5֨UU  -V@)x^UI\UUU5 (ͯͺ֪몪ͪͪͪ1ͪ0ͪUUU-WV^p# WT\x -4+++3TUUl7:uu--=[u:u+{u[u}[u + + +}}}}}<}<~]<]<܅}ߞ}]{{~}}}}}}n`ަ6U^x=6=6=6=665=665>5>5=5>5>555(5555555555555-555--5-|- -|-|-\-|-\-|-[-[5]\-;-;%<-;%%-%%$%$__$$,$$$$$_$$ZzZ~W__Z:::4UU+WUU{U{UU\9]};:}:}}:}}_W_}|}|d|tt|tt|ttttttyltyldylXlYlXlXl8l8ld8ld[9tdcꪪdcc`\VCUUU o[% [[__w[w[w[v[꺺v[VSV[6S6[6S6[6SkSUUS 2弭lm͋m͋kŌŪklŪkkklklklkkkŪkkŪkkŪkkŪkkŪ kK"(kKŪKŧ\x蛧樛%UU Jxx^WUțț?5 ֪͋ͪͫꪫͪ1UUU5RUURUs1ֵRs#``BUUWT -u++lu %5:ul++++[u:u{u[u }[u + + + +}u +}}}<}<~=<]\܅}ߞ[~{~}}}}}ݞU>V\P`56565656565665655565555555555555踻555-5---ꪼ5-E%-|-ਪ-|-|-\-[-}-\5{[5];%\-;%<-;-%-%%$$$$$,$$$$$___W$z,Z?uZUU{eZUUW}:UU}9/U }T\Px { %U[4;:}:}}}}}|||d|tt|tt|ttttttylxydylYlylXlklyl8l__ 8lV;|8l3Ud3Ud +dx^UTUUU UUUcs"c[[v[w[VSv[V[zz~vV[6[6[6S6SS6S5% 5% jU^U~slUU_kUUUXkkkkklklklkkkŪkkŪkkŪkkŪ kK( kKŨ +"kK*kKꪪKțV\pɛǛާ5UU `^W\UUUț˴țUU5蛕-+ + +ͫﯫ֪ͯUU-2U-2-R2UUU-2UURU-V\x` V\Pp++/U3u5UUmW#[u:u{u[u }{u*}{u}}}} ~<~]<]]]\}]}{{~}}}}}.+*}v@5UWV\6565656565655555555555555555555-5-5--5E%-|--|-ꪪ-|-{-}-|-\-\5[[-]%\-;%;-%;%%-%%$~^$$$$$$$$$$~$zꪪ$zz$5 }ۅ}}}ꪻ}}}}}[e`}W\[mUU_94UUUxxx7{x 5U:}T:}_}}}|||d|ttt|ttttttltylxydylYlylYl_Wyl3X^ylUUUUUU +]WU +_WW~__coՕc[\V_W[[[v[w[VSV[6S6SB6[S 6SUU"Ŷk EͭUWUU_Rxs2RxkUxkUU~lklklklklkkkŪkkŪkkŪkkŪkkŪ kKŊkKŪ k +@KțW\țUʹțUUUț-U*)`xU|WUUțț_țUU -͂ + +ͮ몯ֱͪ+ UUU%U+ֽ + `!3l@hUUWT4++/u4 )-u6 [uu{u:u++/}{u+}u + + + +}}}}*** +}=~~]<]=}]}][~}}}}}}}}}}} +/ݦ⾦=XXXX55555555555555555555555555555-5--5----E%<6<-|5--}-{-}-|-\-z\-[%[-]%\-%;-%<-%%$న%$____$$,$$$$$$z[]zUՕ[]܅}ۅ}}}}}}}}{u{}{u{}[u[u`5UUxN-UUUX5-}v5UU-ަ5UU-UU=V5UUU\5.5.5.5.5-5-5-5<.5<.---55-----E%5--|--|-{-}-|-\-\5{\-[%[-=%;%<-;%%-%%$$$$$$$$$$$<܅TVVV܅}܅}ۅ}}}}}}}{u{}{u{{m{u[u[u[u[uxPPPpx8 X7 7  7  zj~[} UU} |l|ttttttttttylștyltXdhylT +^yd3`\UU3//onononnNnNmNNUUU¼n% #% x{nUUW\nM@MkUWV\lkkkŪkkŪkkŪkkŪkkŪkkŪ kKŨkK(kKŢkKŪ* kK꺪kKꮪkKK)xK UWțțț_55%-qVT\XrQUrzͪͪͪ+2UU +2U +2U2U2UꀪUUU xO ?up`rp`:UUWTlT -ul++[uu{u[u }{u}u}}*~}}+*+<//=<]=/\]ߎ}]~[[~[~}}}}}}}}}]^x5 + >x5UUV\--5---5-5-----*----5--5--5-5--|--|--|-{}=|-\-\-[%\-[%\-;%;<5;%%-%%$_W$$$$~~$$$$z<܅TWUUۍ}܅}ۅ}}}}}}}}{u{}{u{u[u{u[u[u[u[uxppPPX7 X7 7    + + +l +/UU} ++UU| +UtUtUtuUtuUUtTUUK4WUUT4WWoloonnNmNNMNՕ%% MXp`@M,ŠkM ///lkkkŪkkŪkkŪkkŪkkŪ kUUU-PkUUQkUUrkUUrkUU_QkUUUkJkKźkKŮkKŮkKKi@I WꨋUU?J Rp`RRUWV\UU / ՀU2WUհUUըUͪͯ \\\XO?UV\x`V\p`l35UUl :uu 5{u:u+++}[u}u}}*~}}<?=<ﯿ]=[_}ߖߎ[~[[~[~}}}}}}}}}}5XXPP-5-5-55--55<.----E%----5-5-5--|--|-{-}-|-\-|-\-\-[%[-=%\-;%;%%-%%$$$$$%$WWUU$$$zz55%݅};}܅}}}}}}}}}|u{}{u{u[u{u[u[u[u[uXXX\\X7 8#77  ~ + + + + + + + + +uu_WUUuTT4T343oonononnNNMMUUd1*E n@@@@, k,%%--lkkkŪkkŪkkŪkkŪkkŪkUU 0kU0ތͭQ0Q0ޫ* +rQrQު* +rr+ +xk_kUWRKUUUxkKKj``IWꠝiՕ5%@WWV\ՈU՜UU3UUU?|UU+UկUUUUU_ZUUW3U3տ3^3UW^̴xppp켬W/@}WV\b3 +UWV\\T5Uu;{u:u}[u+//}u}}/---~}~} + + + +<~*]<܅[_]]}ߖ}]~[[~[~}}}}}}}}}}}}}-pppPE%E%E%E%-----55-5-.|-------<.<--|-訪-|-{}=|-\-\-{%\-[%\-<%<%;%;%%~~~%%%$$$$$$$$$,z?]$܅}܅}ۅ}{}}}}}e{}{uꪪ{{m{u[u[u[u[u;m ]X \^VWW 7 7  7  + + + + + + + + +u___uTUTT4~44___ਐolononnNmNNUUUō5 5 ,@@``, Uk// lkkkŪkkŪkkŪkUU-/kŕ 0/ޯ*N1Q0QUUU QUU +YqUU9rUU8UUUUU+* +櫪*@kWʴW_뼪W XPp@3UTU*UU Utޭ`3^TUUV33W^pͫ͋``@k DPp"Sp`[4UUUTl[uuu[u//}{u**}}+/~}~} + +* +<~=<]=* ++[_[_]]ߎ[~[[~[~[~}}}}}}}}}}}}}}-PX\^5-5-5-5-----5------- -------|--|-||=|-\-|-\-\-[%\-<%ꪪ]-;%<%%[%%__WU%$%$~__$$$$$~~_w$$$5 ܅\WUU܅}誨܅}}}}ꪪ}}e}{u{}{u{{m{}[u[u[u[u#` 8#77   + + + + + + + + +?lU l +*T\\WUT4TtUWU\UUlU*l9\W^\\ 2UUU%r"oUUU@oqmnNmNNUUUT*յ% Օ5 z pPX\ 꼪kʼ lkkkŪkUUU5/kյ /ޭ0/ޯ**PUUU-PU +p{~_U_UUW\qqL\\xp,UU5@3Uկ +S޵ + @WxYU^xRUUW\ͫ-@̴JVTk%55VXp`T^x`lT %5:ul //{u:u +/}{u}u+~}~} + +**<~=RՕ5-ݪݪrހpPUU 8`UW^pRxQUUW\Q1ƪQ1Q1֪2O֪1P֪11ֺ11Q11֊p\WՊͪUU5% \x`檪R`UWVXͪͭ" ͩ\XXPɼɼ -%5@\TVWݬ+r ݪrQQ|^_z% @UW^XQXp@RQQ1Q1֪2O֪2O֪Փު11־﾿1։Հ`p\ՉռUUU% W^X`檪p`խͪͩp`@ɼ5UՀ``ެRUս=rQݪr`pXz~YUՕ5 p8UUWTz~QV\\xQ1ƪQ1֪2O֪Փު/3ު1މ@i\WUUՉͯ/5- `UUVT檪V\XpͪͭbͩUWV\ɼ/  xX^WU-r-PrUU_rQR|~_ݠ5- TXx`~__WQxQ1Q12O֪2O֪/3ު0h`pX\ih////Օ5%\Pp檪pͭͪͭ͊(ͩXXp`ɼ%5Y@PrrQޠq0P/xz^/xz~UUY@YUWV\r_WWUq1Q12O֪1P֪1@hTVWUhͯ @{UWV\檪V\XMpxͩ`x~ħMɼUU `r^rUUx/x0ݵ%% r\XPprQިQ1րQ1֪2O֪Փު1h`pphG + 9iUՕ\Xp`檪P\~MzMʼz橼UU-ʼU x/U^UUUX0 r`@rQQP(Q12O֪2O֪1GpPXXhG* + +h5555@jjztzUU m/ {@{@ZQUWVTP0Q0 2O֪2O֪0G\\TThG + h-- W( PT\\\P/1/ 2O֪ՓުGTTVVhG + P\\XX0~~Q%%2O֪ՓުGTTVVhG + + +/ /xppp/ހ1'5552O֪1P֪GTTTThG + +P0pppp/~1??11GTTTVhG + ++ +rPppppQUUU5Qu}zxݪxxxxFxxgGhG + Qppp޵QxxxxժxxxxFxxxxGghG + +/prW/UUUUUq)\\))\\\\JI)\\\\JI)\\\\JI)\\\\JI)\\\\JI)\\\\JI)\\\\JI)\\\\JIYVZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZ)\\\\JIwITTTTi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I 3|I)\\\\JIwITTTTi)I 1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUU1IUUUi)I 3|I)\\\\JIwITTTTi)I ZUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUIj@@@i)I 3|I)\\\\JIwITTTTi)I (ZI@@@@i)I 3|I)\\\\JIwITTTTi)I (ZI@@@@i)I 3|I)\\\\JIwITTTTi)I (ZI@@@@i)I 3|I)\\\\JIwITTTTi)I (ZI@@@@i)I 3|I)\\\\JIwITTTTi)I (ZI@@@@i)I 3|I)\\\\JIwITTTTi)I (ZI@@@@i)I 3|I)\\\\JIwITTTTi)I (ZI@@@@i)I 3|I)\\\\JIkTkUkUkUkUkUkUpc kPkUkUkUkUkUkUkUkz@!^i~UiUUIUUIUUUIUUIUUi +Ui Uc- *xiUiWUIUUIWUUIUUU)UUIUUU! kVkUkUkUkUkUkUk@kUkUkUkUkUkUkUkwITTTTi)I (ZI@@@@i)I 3|I)\\\\JIITTTTi)I i)I i)I i)I i)I i)I ]@]IX\VWi)I i)I i)I i)I i)I i)I i)I Icpi^UixUUU!ITUUUi)I i)I i)I i)I i)I i)I i)I i)I tI5UUU)-U! +%c`i~UIWUUm:I\UUUi)I i)I i)I i)I i)I i)I i)I i)I i)I I-UUU) UR jV\XXi)I i)I i)I i)I i)I i)I s|IUU @`i)I i)I i)I i)I i)I i)I i)I i5%wITTTTi)I (ZI@@@@i)I 3|I)\\\\JIITTTTi)I i)I i)I i)I i)I i)I i@`Pi)i)I i)I i)I i)I i)I i)I i)I I@IXWVI\UUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I ,2IUUUj Ukk@i^U6I\UUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I wIUUUi%=ip``@i)I i)I i)I i)I i)I i)I i)I ! ippXXi)I i)I i)I i)I i)I i)I i)I  wITTTTi)I IUUI UUI UUI UUI UUI UUI UUI-Jx^"iWUUI UUI UUI UUI UUI UUIUUi)I 3|I)\\\\JIITTTTi)I i)I i)I i)I i)I i)I @j\TWUi)I i)I i)I i)I i)I i)I i)I i)I IB`]I`\WUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I I-UU * )X~iXWUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i %U3|@sIUUVTi)I i)I i)I i)I i)I i)I I %%j\\VVi)I i)I i)I i)I i)I i)I )IUUUpcwITTTTi)I i)I i)I i)I i)I i)I i)I i)I h!) ?) 1@`AITUUUi)I i)I i)I i)I i)I i)I i)I i)I 3|I)\\\\JIITTTTi)I i)I i)I i)I i)I i)I `pXi)I i)I i)I i)I i)I i)I i)I i)I i)I I!`iXVUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I I%UU! iXVkITUUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I I %5IVT\Xi)I i)I i)I i)I i)I i)I ]I55@S|ITWUUi)I i)I i)I i)I i)I i)I iՕ5IVIUIUIUIUIUIUIUIU\\\i)I i i!````i)I )U555IUIUIUIUIUIUIUi)\\\\JIITTTTi)I i)I i)I i)I i)I i)I W@I\VWUi)I i)I i)I i)I i)I i)I i)I i)I i)I IS|@IP\WUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I JIUUU iW\X`i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I j %iPp`@i)I i)I i)I i)I i)I i)I p[IU!@`i)I i)I i)I i)I i)I i)I i)I i% i\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I `PXi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I II`x\Vi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I IUUU-֊UUUߊUUUIUUU!IUUUTi)I i)I i)I i)I i)I i)I i% 6@iUW\Pi)I i)I i)I i)I i)I i)I i)I i)I S|IUUU%iUUUߊ!UUUjUUUsIUUUXi)I i)I i)I i)I i)I i)I i)I i)I I5Um:@JIUUWTi)I i)I i)I i)I i)I i)I i IppPXi)I i)I i)I i)I i)I i)I i)I M: i\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I @]I\VUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I I!`p,2ITUUUi)I i)I i)I i)I i)I i)I i)I L2IUUU}IUU- *xiUV6IUUU\i)I i)I i)I j ] 2`iUUV\i)I i)I i)I i)I IUUU5UU-i +z`jWx9IUUW\i)I i)I i)I i)I i)I i)I i)I i }IVT\\i)I i)I i)I i)I i)I i)I i %%5i\TVVi)I i)I i)I i)I i)I i)I IՕ5i\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I j@pPXi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I I@iXTVWi)I i)I i)I i)I i)I i)I i)I sIUUUi x)UW^pi)I IU5 pIUUWTi)I )IUUUIU- 2-IX`)i)I i)I i)I i)I i)I i)I %%5IXpp`i)I i)I i)I i)I i)I i)I }I5UIUIUIUIUIUIUIUIUIUIUpcITUUUi)I i)I i)I i)I i)I i)I 5%% i\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I k@ITVWUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I II`!ITUUUi)I i)I i)I i)I i)I i)I i)I I5 t@jUל JiXpIUUU7i z@kIWVVTi)I i)I i)I i)I i)I i)I I5 2`i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I  i\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I i@pX\i)I i)I i)I i)I i)I jU5%)IWTUUi)I i)I i)I i)I i)I IIpPX\i)I i)I i)I i)I i)I i)I i)I iՕ%'@cITVWWi)I i)I i)I i)I i)I i)I IIWVT\i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I IUՕi\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I M:@ITWUUi)I i)I i)I i)I i)I )i)I i)I i)I i)I i)I i)I I9I\VWWi)I i)I i)I i)I i)I i)I i)?! j`XVi)I i)I i)I i)I i)I i)I i)I iXXPpi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i%% i\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I I`pXTi)I i)I i)I i)I i)I IUՕ5B@@`i)I i)I i)I i)I i)I i)I I:@i)I i)I i)I i)I i)I i)I i)I }IՕ5 2xixVU!ITUUUi)I i)I i)I i)I i)I i)I i)I I55%%)`@i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I  i\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I  J`ITWUUi)I i)I i)I i)I i)I ) % !```pi)I i)I i)I i)I i)I i)I I!@@``i)I i)I i)I i)I i)I i)I i)I I5% @I^IxWUSI\UUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i @YIUWV\i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I IUՕi\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I j !pP\Ti)I i)I i)I i)I i)I IUUIppppi)I i)I i)I i)I i)I i)I I `pppi)I i)I i)I i)I i)I i)I i)I  `IWiVUU)ITUUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I S|IUUJI\XXpi)I i)I i)I i)I i)I i)I ])UU })UU})UU})UU})UU})UU})UU}IUU^\i)I i)I i)I i)I i)I i)I i5%%i\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I ) !`S|ITUUUi)I i)I i)I i)I i)I )5% iPPPPi)I i)I i)I i)I i)I i)I IIPPPPi)I i)I i)I i)I i)I i)I i)I B  2pjWUzIXUUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I j% !p`i)I i)I i)I i)I i)I i)I )%55@ITVWWi)I i)I i)I i)I i)I i)I ) i\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I * IpX\Vi)I i)I i)I i)I i)I kIUU:iXX\\i)I i)I i)I i)I i)I i)I IiPXXXi)I i)I i)I i)I i)I i)I i)I kL2`xVUkITUUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I jU5 ص9@IUWVTi)I i)I i)I i)I i)I iUS@,2ITWUUi)I i)I i)I i)I i)I cIUUUi\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I J)`p[ITWUUi)I i)I i)I i)I i)I I5% ~) \\\\i)I i)I i)I i)I i)I i)I IiXXXXi)I i)I i)I i)I i)I i)I i)I s!`X]IXWUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I iU% p[IT\XPi)I i)I i)I i)I i)I i)I L2 i@``pi)I i)I i)I i)I i)I i)I }I5%i\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I i)I pX\Ti)I i)I i)I i)I i)I kIUUI ފTTTTi)I i)I i)I i)I i)I i)I IIXPPPi)I i)I i)I i)I i)I i)I i)I c!`X6ITUUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I IUU5i-Ipp`i)I i)I i)I i)I i)I i)I j %IxX\\i)I i)I i)I i)I i)I i)I I i\\\\i)I i i!````i)I  5555)\\\\JIITTTTi)I i)I i)I i)I i)I !IUUUm:@sITWUUi)I i)I i)I i)I i)I j5 ZITTTTi)I i)I i)I i)I i)I i)I I)PPppi)I i)I i)I i)I i)I i)I i)I m: !`ITWUUi)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I i)I \Microsoft.NET\Framework\\CONFIG\Browsers\*.browser + + It is not derived from any file distributed with Microsoft's implementation. Since + we can't distribute MS's browser files, we use browscap.ini to determine + browser capabilities. Then, if and only if the application contains App_Browser/*.browser + files and we are using .NET 2.0 or higher, we supplement the capabilities with the + information in those files and the files in this directory. The primary goal of this file + is provide browser definitions that might be referenced in App_Browser/*.browser files. +--> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx new file mode 100644 index 00000000..f4d74bff --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/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/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/2.0/machine.config b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/2.0/machine.config new file mode 100644 index 00000000..9da7be98 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/2.0/machine.config @@ -0,0 +1,283 @@ + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+ + +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/2.0/settings.map b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/2.0/settings.map new file mode 100644 index 00000000..9a52ccc0 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/2.0/settings.map @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/2.0/web.config b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/2.0/web.config new file mode 100644 index 00000000..e1428f8c --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/2.0/web.config @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/Browsers/Compat.browser b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/Browsers/Compat.browser new file mode 100644 index 00000000..dcedf7f7 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/Browsers/Compat.browser @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx new file mode 100644 index 00000000..f4d74bff --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/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/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/machine.config b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/machine.config new file mode 100644 index 00000000..12839c1f --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/machine.config @@ -0,0 +1,310 @@ + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ + + +
+ +
+
+
+
+ + + + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/settings.map b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/settings.map new file mode 100644 index 00000000..4c53aca6 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/settings.map @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/web.config b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/web.config new file mode 100644 index 00000000..2a7dfd2e --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.0/web.config @@ -0,0 +1,253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/Browsers/Compat.browser b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/Browsers/Compat.browser new file mode 100644 index 00000000..dcedf7f7 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/Browsers/Compat.browser @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx new file mode 100644 index 00000000..f4d74bff --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/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/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/machine.config b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/machine.config new file mode 100644 index 00000000..61f78898 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/machine.config @@ -0,0 +1,313 @@ + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ + + +
+ +
+
+
+
+ + + + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/settings.map b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/settings.map new file mode 100644 index 00000000..4c53aca6 --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/settings.map @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/web.config b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/web.config new file mode 100644 index 00000000..324c529f --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/4.5/web.config @@ -0,0 +1,253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/browscap.ini b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/browscap.ini new file mode 100644 index 00000000..1267e1de --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/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/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/config b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/config new file mode 100644 index 00000000..240eb73e --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/config @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/mconfig/config.xml b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/mconfig/config.xml new file mode 100644 index 00000000..a3df3b5e --- /dev/null +++ b/POINT-VR-Chapter-1/Builds/PC_Port_Build/MonoBleedingEdge/etc/mono/mconfig/config.xml @@ -0,0 +1,616 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + + +]]> + + + + + + +
+
+
+ + + + + +
+ +
+
+
+
+ + + +]]> + + + + + +
+
+
+
+
+
+
+ + + + + +]]> + + + + + +
+
+
+
+
+
+
+ + + + + + + + +]]> + + + + + +
+
+
+
+
+ + + + + + + +]]> + + + + + +
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+
+
+ + + + + + + + + + + + +]]> + + + + + +
+
+
+ + + + + + + + + + + + + +]]> + + + + + +
+
+
+ + + + + + + + + + + + + + + + + +]]> + + + + + + + +
+
+
+ + + + + +
+ +
+
+
+ + + + ]]> + + + + + +
+
+
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+
+
+ + + + + + + +]]> + + + + + +
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+ + + + + + + + + + + + + + + +]]> + + + + + +
+
+
+ + + + + + + + + + + + + +]]> + + + + + + +
+
+
+
+
+
+
+ + + + +]]> + + + + + +
+
+
+
+
+
+
+ + + + + + + + + + + +]]> + + + + + +
+
+
+
+
+ + + + +]]> + + + + + + + + ]]> + + + + + + ]]> + + + + + + ]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> + + + + +
+
+
+
+
+
+ + diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/UnityCrashHandler64.exe b/POINT-VR-Chapter-1/Builds/PC_Port_Build/UnityCrashHandler64.exe new file mode 100644 index 00000000..181c7149 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/UnityCrashHandler64.exe differ diff --git a/POINT-VR-Chapter-1/Builds/PC_Port_Build/UnityPlayer.dll b/POINT-VR-Chapter-1/Builds/PC_Port_Build/UnityPlayer.dll new file mode 100644 index 00000000..4076af8f Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/PC_Port_Build/UnityPlayer.dll differ diff --git a/POINT-VR-Chapter-1/Builds/pc-port.apk b/POINT-VR-Chapter-1/Builds/pc-port.apk new file mode 100644 index 00000000..692c95e1 Binary files /dev/null and b/POINT-VR-Chapter-1/Builds/pc-port.apk differ diff --git a/POINT-VR-Chapter-1/ProjectSettings/GraphicsSettings.asset b/POINT-VR-Chapter-1/ProjectSettings/GraphicsSettings.asset index 9b996cb4..4706883c 100644 --- a/POINT-VR-Chapter-1/ProjectSettings/GraphicsSettings.asset +++ b/POINT-VR-Chapter-1/ProjectSettings/GraphicsSettings.asset @@ -38,7 +38,6 @@ GraphicsSettings: - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 16003, guid: 0000000000000000f000000000000000, type: 0} m_PreloadedShaders: [] m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} diff --git a/POINT-VR-Chapter-1/ProjectSettings/ProjectSettings.asset b/POINT-VR-Chapter-1/ProjectSettings/ProjectSettings.asset index a21a0452..b26cf3ba 100644 --- a/POINT-VR-Chapter-1/ProjectSettings/ProjectSettings.asset +++ b/POINT-VR-Chapter-1/ProjectSettings/ProjectSettings.asset @@ -866,7 +866,9 @@ PlayerSettings: webGLLinkerTarget: 1 webGLThreadsSupport: 0 webGLWasmStreaming: 0 - scriptingDefineSymbols: {} + scriptingDefineSymbols: + 1: IS_NOT_USING_OCULUS_LINK + 7: IS_NOT_USING_OCULUS_LINK platformArchitecture: {} scriptingBackend: {} il2cppCompilerConfiguration: {} diff --git a/POINT-VR-Chapter-1/ProjectSettings/XRSettings.asset b/POINT-VR-Chapter-1/ProjectSettings/XRSettings.asset index dcdcc129..4a120fa6 100644 --- a/POINT-VR-Chapter-1/ProjectSettings/XRSettings.asset +++ b/POINT-VR-Chapter-1/ProjectSettings/XRSettings.asset @@ -5,6 +5,6 @@ ], "m_SettingValues": [ "True", - "False" + "True" ] } \ No newline at end of file