<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -77,9 +77,6 @@
 	// Authentication currently being used for prompting and resuming
     CFHTTPAuthenticationRef requestAuthentication; 
 	NSMutableDictionary *requestCredentials;
-	
-	// Credentials associated with the authentication (reused until server says no)
-	//CFMutableDictionaryRef credentials; 
 
 	// HTTP status code, eg: 200 = OK, 404 = Not found etc
 	int responseStatusCode;</diff>
      <filename>ASIHTTPRequest.h</filename>
    </modified>
    <modified>
      <diff>@@ -13,5 +13,6 @@
 }
 
 - (void)testBasicDownload;
+- (void)testOperationQueue;
 
 @end</diff>
      <filename>ASIHTTPRequestTests.h</filename>
    </modified>
    <modified>
      <diff>@@ -11,6 +11,18 @@
 
 @implementation ASIHTTPRequestTests
 
+/*
+More tests needed for:
+ - Delegates
+ - Progress delegates
+ - Content length
+ - POSTing
+ - File downloads
+ - Authentication
+ - Keychains
+ - Session persistence
+*/
+
 - (void)testBasicDownload
 {
 	//Grab data
@@ -45,4 +57,62 @@
 	STAssertNotNil(error,@&quot;Failed to generate an error for a bad host&quot;);
 }
 
+- (void)testOperationQueue
+{
+	NSOperationQueue *queue = [[[NSOperationQueue alloc] init] autorelease];
+
+	NSURL *url;	
+	url = [[[NSURL alloc] initWithString:@&quot;http://asi/asi-http-request-tests/first&quot;] autorelease];
+	ASIHTTPRequest *request1 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
+	[queue addOperation:request1];
+
+	url = [[[NSURL alloc] initWithString:@&quot;http://asi/asi-http-request-tests/second&quot;] autorelease];
+	ASIHTTPRequest *request2 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
+	[queue addOperation:request2];
+
+	url = [[[NSURL alloc] initWithString:@&quot;http://asi/asi-http-request-tests/third&quot;] autorelease];
+	ASIHTTPRequest *request3 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
+	[queue addOperation:request3];
+	
+	url = [[[NSURL alloc] initWithString:@&quot;http://aaaaaaaaaaaaaaaaaaaaaaaaaaaaab.com&quot;] autorelease];
+	ASIHTTPRequest *request4 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
+	[queue addOperation:request4];
+	
+	url = [[[NSURL alloc] initWithString:@&quot;http://asi/asi-http-request-tests/broken&quot;] autorelease];
+	ASIHTTPRequest *request5 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
+	[queue addOperation:request5];
+
+	[queue waitUntilAllOperationsAreFinished];
+
+	BOOL success;
+
+	success = ([request1 error] == nil);
+	STAssertTrue(success,@&quot;Request 1 failed&quot;);
+
+	success = [[request1 dataString] isEqualToString:@&quot;This is the expected content for the first string&quot;];
+	STAssertTrue(success,@&quot;Failed to download the correct data for request 1&quot;);
+
+	success = ([request2 error] == nil);
+	STAssertTrue(success,@&quot;Request 2 failed&quot;);
+
+	success = [[request2 dataString] isEqualToString:@&quot;This is the expected content for the second string&quot;];
+	STAssertTrue(success,@&quot;Failed to download the correct data for request 2&quot;);
+
+	success = ([request3 error] == nil);
+	STAssertTrue(success,@&quot;Request 3 failed&quot;);
+
+	success = [[request3 dataString] isEqualToString:@&quot;This is the expected content for the third string&quot;];
+	STAssertTrue(success,@&quot;Failed to download the correct data for request 3&quot;);
+	
+	success = ([request4 error] != nil);
+	STAssertTrue(success,@&quot;Request 4 succeed when it should have failed&quot;);
+
+	success = ([request5 error] == nil);
+	STAssertTrue(success,@&quot;Request 5 failed&quot;);
+	
+	success = ([request5 responseStatusCode] == 404);
+	STAssertTrue(success,@&quot;Failed to obtain the correct status code for request 5&quot;);
+		
+}
+
 @end</diff>
      <filename>ASIHTTPRequestTests.m</filename>
    </modified>
    <modified>
      <diff>@@ -197,7 +197,88 @@
 	&lt;key&gt;Notifications&lt;/key&gt;
 	&lt;array/&gt;
 	&lt;key&gt;OpenEditors&lt;/key&gt;
-	&lt;array/&gt;
+	&lt;array&gt;
+		&lt;dict&gt;
+			&lt;key&gt;Content&lt;/key&gt;
+			&lt;dict&gt;
+				&lt;key&gt;PBXProjectModuleGUID&lt;/key&gt;
+				&lt;string&gt;B5731E470E4344F90008024F&lt;/string&gt;
+				&lt;key&gt;PBXProjectModuleLabel&lt;/key&gt;
+				&lt;string&gt;ASIHTTPRequest.h&lt;/string&gt;
+				&lt;key&gt;PBXSplitModuleInNavigatorKey&lt;/key&gt;
+				&lt;dict&gt;
+					&lt;key&gt;Split0&lt;/key&gt;
+					&lt;dict&gt;
+						&lt;key&gt;PBXProjectModuleGUID&lt;/key&gt;
+						&lt;string&gt;B5731E480E4344F90008024F&lt;/string&gt;
+						&lt;key&gt;PBXProjectModuleLabel&lt;/key&gt;
+						&lt;string&gt;ASIHTTPRequest.h&lt;/string&gt;
+						&lt;key&gt;_historyCapacity&lt;/key&gt;
+						&lt;integer&gt;0&lt;/integer&gt;
+						&lt;key&gt;bookmark&lt;/key&gt;
+						&lt;string&gt;B5731E490E4344F90008024F&lt;/string&gt;
+						&lt;key&gt;history&lt;/key&gt;
+						&lt;array&gt;
+							&lt;string&gt;B5731E2C0E43448A0008024F&lt;/string&gt;
+						&lt;/array&gt;
+					&lt;/dict&gt;
+					&lt;key&gt;SplitCount&lt;/key&gt;
+					&lt;string&gt;1&lt;/string&gt;
+				&lt;/dict&gt;
+				&lt;key&gt;StatusBarVisibility&lt;/key&gt;
+				&lt;true/&gt;
+			&lt;/dict&gt;
+			&lt;key&gt;Geometry&lt;/key&gt;
+			&lt;dict&gt;
+				&lt;key&gt;Frame&lt;/key&gt;
+				&lt;string&gt;{{0, 20}, {1475, 777}}&lt;/string&gt;
+				&lt;key&gt;PBXModuleWindowStatusBarHidden2&lt;/key&gt;
+				&lt;false/&gt;
+				&lt;key&gt;RubberWindowFrame&lt;/key&gt;
+				&lt;string&gt;19 360 1475 818 0 0 1920 1178 &lt;/string&gt;
+			&lt;/dict&gt;
+		&lt;/dict&gt;
+		&lt;dict&gt;
+			&lt;key&gt;Content&lt;/key&gt;
+			&lt;dict&gt;
+				&lt;key&gt;PBXProjectModuleGUID&lt;/key&gt;
+				&lt;string&gt;B5731E4A0E4344F90008024F&lt;/string&gt;
+				&lt;key&gt;PBXProjectModuleLabel&lt;/key&gt;
+				&lt;string&gt;AppDelegate.h&lt;/string&gt;
+				&lt;key&gt;PBXSplitModuleInNavigatorKey&lt;/key&gt;
+				&lt;dict&gt;
+					&lt;key&gt;Split0&lt;/key&gt;
+					&lt;dict&gt;
+						&lt;key&gt;PBXProjectModuleGUID&lt;/key&gt;
+						&lt;string&gt;B5731E4B0E4344F90008024F&lt;/string&gt;
+						&lt;key&gt;PBXProjectModuleLabel&lt;/key&gt;
+						&lt;string&gt;AppDelegate.h&lt;/string&gt;
+						&lt;key&gt;_historyCapacity&lt;/key&gt;
+						&lt;integer&gt;0&lt;/integer&gt;
+						&lt;key&gt;bookmark&lt;/key&gt;
+						&lt;string&gt;B5731E4C0E4344F90008024F&lt;/string&gt;
+						&lt;key&gt;history&lt;/key&gt;
+						&lt;array&gt;
+							&lt;string&gt;B5731E2A0E43441F0008024F&lt;/string&gt;
+						&lt;/array&gt;
+					&lt;/dict&gt;
+					&lt;key&gt;SplitCount&lt;/key&gt;
+					&lt;string&gt;1&lt;/string&gt;
+				&lt;/dict&gt;
+				&lt;key&gt;StatusBarVisibility&lt;/key&gt;
+				&lt;true/&gt;
+			&lt;/dict&gt;
+			&lt;key&gt;Geometry&lt;/key&gt;
+			&lt;dict&gt;
+				&lt;key&gt;Frame&lt;/key&gt;
+				&lt;string&gt;{{0, 20}, {1475, 777}}&lt;/string&gt;
+				&lt;key&gt;PBXModuleWindowStatusBarHidden2&lt;/key&gt;
+				&lt;false/&gt;
+				&lt;key&gt;RubberWindowFrame&lt;/key&gt;
+				&lt;string&gt;15 55 1475 818 0 0 1920 1178 &lt;/string&gt;
+			&lt;/dict&gt;
+		&lt;/dict&gt;
+	&lt;/array&gt;
 	&lt;key&gt;PerspectiveWidths&lt;/key&gt;
 	&lt;array&gt;
 		&lt;integer&gt;-1&lt;/integer&gt;
@@ -337,22 +418,22 @@
 										&lt;key&gt;_historyCapacity&lt;/key&gt;
 										&lt;integer&gt;0&lt;/integer&gt;
 										&lt;key&gt;bookmark&lt;/key&gt;
-										&lt;string&gt;B5731DB10E433BDB0008024F&lt;/string&gt;
+										&lt;string&gt;B5731E460E4344F90008024F&lt;/string&gt;
 										&lt;key&gt;history&lt;/key&gt;
 										&lt;array&gt;
-											&lt;string&gt;B5127C400E41C09D00D266C2&lt;/string&gt;
-											&lt;string&gt;B5731B350E430D310008024F&lt;/string&gt;
 											&lt;string&gt;B5731B8B0E4310180008024F&lt;/string&gt;
 											&lt;string&gt;B5731BBE0E4319180008024F&lt;/string&gt;
 											&lt;string&gt;B5731BEE0E431A050008024F&lt;/string&gt;
 											&lt;string&gt;B5731BEF0E431A050008024F&lt;/string&gt;
 											&lt;string&gt;B5731BF00E431A050008024F&lt;/string&gt;
-											&lt;string&gt;B5731C780E4333810008024F&lt;/string&gt;
-											&lt;string&gt;B5731C790E4333810008024F&lt;/string&gt;
-											&lt;string&gt;B5731D960E433A750008024F&lt;/string&gt;
-											&lt;string&gt;B5731D970E433A750008024F&lt;/string&gt;
-											&lt;string&gt;B5731DA30E433B550008024F&lt;/string&gt;
-											&lt;string&gt;B5731DB00E433BDB0008024F&lt;/string&gt;
+											&lt;string&gt;B5731E180E43424A0008024F&lt;/string&gt;
+											&lt;string&gt;B5731E2E0E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E2F0E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E300E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E310E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E320E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E330E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E340E4344F90008024F&lt;/string&gt;
 										&lt;/array&gt;
 										&lt;key&gt;prevStack&lt;/key&gt;
 										&lt;array&gt;
@@ -409,6 +490,41 @@
 											&lt;string&gt;B5731D9C0E433A750008024F&lt;/string&gt;
 											&lt;string&gt;B5731DA50E433B550008024F&lt;/string&gt;
 											&lt;string&gt;B5731DA60E433B550008024F&lt;/string&gt;
+											&lt;string&gt;B5731DBB0E433E280008024F&lt;/string&gt;
+											&lt;string&gt;B5731DBC0E433E280008024F&lt;/string&gt;
+											&lt;string&gt;B5731DBD0E433E280008024F&lt;/string&gt;
+											&lt;string&gt;B5731DBE0E433E280008024F&lt;/string&gt;
+											&lt;string&gt;B5731DBF0E433E280008024F&lt;/string&gt;
+											&lt;string&gt;B5731DC00E433E280008024F&lt;/string&gt;
+											&lt;string&gt;B5731DC10E433E280008024F&lt;/string&gt;
+											&lt;string&gt;B5731DC20E433E280008024F&lt;/string&gt;
+											&lt;string&gt;B5731DC30E433E280008024F&lt;/string&gt;
+											&lt;string&gt;B5731DC40E433E280008024F&lt;/string&gt;
+											&lt;string&gt;B5731DDC0E433E990008024F&lt;/string&gt;
+											&lt;string&gt;B5731DEA0E4340CF0008024F&lt;/string&gt;
+											&lt;string&gt;B5731DEB0E4340CF0008024F&lt;/string&gt;
+											&lt;string&gt;B5731DEC0E4340CF0008024F&lt;/string&gt;
+											&lt;string&gt;B5731DED0E4340CF0008024F&lt;/string&gt;
+											&lt;string&gt;B5731DEE0E4340CF0008024F&lt;/string&gt;
+											&lt;string&gt;B5731E1A0E43424A0008024F&lt;/string&gt;
+											&lt;string&gt;B5731E1B0E43424A0008024F&lt;/string&gt;
+											&lt;string&gt;B5731E350E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E360E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E370E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E380E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E390E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E3A0E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E3B0E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E3C0E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E3D0E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E3E0E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E3F0E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E400E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E410E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E420E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E430E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E440E4344F90008024F&lt;/string&gt;
+											&lt;string&gt;B5731E450E4344F90008024F&lt;/string&gt;
 										&lt;/array&gt;
 									&lt;/dict&gt;
 									&lt;key&gt;SplitCount&lt;/key&gt;
@@ -602,11 +718,14 @@
 	&lt;integer&gt;5&lt;/integer&gt;
 	&lt;key&gt;WindowOrderList&lt;/key&gt;
 	&lt;array&gt;
+		&lt;string&gt;B5731E4D0E4344F90008024F&lt;/string&gt;
 		&lt;string&gt;B5731C3B0E431B3F0008024F&lt;/string&gt;
 		&lt;string&gt;B5731C3C0E431B3F0008024F&lt;/string&gt;
-		&lt;string&gt;B5ABC8410E24CDE70072F422&lt;/string&gt;
 		&lt;string&gt;1CD10A99069EF8BA00B06720&lt;/string&gt;
 		&lt;string&gt;1C78EAAD065D492600B07095&lt;/string&gt;
+		&lt;string&gt;B5ABC8410E24CDE70072F422&lt;/string&gt;
+		&lt;string&gt;B5731E4A0E4344F90008024F&lt;/string&gt;
+		&lt;string&gt;B5731E470E4344F90008024F&lt;/string&gt;
 		&lt;string&gt;/Users/ben/asi-http-request/asi-http-request.xcodeproj&lt;/string&gt;
 	&lt;/array&gt;
 	&lt;key&gt;WindowString&lt;/key&gt;
@@ -626,14 +745,12 @@
 					&lt;key&gt;Dock&lt;/key&gt;
 					&lt;array&gt;
 						&lt;dict&gt;
-							&lt;key&gt;BecomeActive&lt;/key&gt;
-							&lt;true/&gt;
 							&lt;key&gt;ContentConfiguration&lt;/key&gt;
 							&lt;dict&gt;
 								&lt;key&gt;PBXProjectModuleGUID&lt;/key&gt;
 								&lt;string&gt;1CD0528F0623707200166675&lt;/string&gt;
 								&lt;key&gt;PBXProjectModuleLabel&lt;/key&gt;
-								&lt;string&gt;RunPlatformUnitTests.include&lt;/string&gt;
+								&lt;string&gt;ASIHTTPRequestTests.m&lt;/string&gt;
 								&lt;key&gt;StatusBarVisibility&lt;/key&gt;
 								&lt;true/&gt;
 							&lt;/dict&gt;
@@ -642,7 +759,7 @@
 								&lt;key&gt;Frame&lt;/key&gt;
 								&lt;string&gt;{{0, 0}, {1440, 536}}&lt;/string&gt;
 								&lt;key&gt;RubberWindowFrame&lt;/key&gt;
-								&lt;string&gt;257 107 1440 818 0 0 1920 1178 &lt;/string&gt;
+								&lt;string&gt;241 -125 1440 818 0 0 1920 1178 &lt;/string&gt;
 							&lt;/dict&gt;
 							&lt;key&gt;Module&lt;/key&gt;
 							&lt;string&gt;PBXNavigatorGroup&lt;/string&gt;
@@ -650,6 +767,8 @@
 							&lt;string&gt;536pt&lt;/string&gt;
 						&lt;/dict&gt;
 						&lt;dict&gt;
+							&lt;key&gt;BecomeActive&lt;/key&gt;
+							&lt;true/&gt;
 							&lt;key&gt;ContentConfiguration&lt;/key&gt;
 							&lt;dict&gt;
 								&lt;key&gt;PBXProjectModuleGUID&lt;/key&gt;
@@ -666,7 +785,7 @@
 								&lt;key&gt;Frame&lt;/key&gt;
 								&lt;string&gt;{{0, 541}, {1440, 236}}&lt;/string&gt;
 								&lt;key&gt;RubberWindowFrame&lt;/key&gt;
-								&lt;string&gt;257 107 1440 818 0 0 1920 1178 &lt;/string&gt;
+								&lt;string&gt;241 -125 1440 818 0 0 1920 1178 &lt;/string&gt;
 							&lt;/dict&gt;
 							&lt;key&gt;Module&lt;/key&gt;
 							&lt;string&gt;PBXBuildResultsModule&lt;/string&gt;
@@ -696,11 +815,11 @@
 			&lt;key&gt;ToolbarConfiguration&lt;/key&gt;
 			&lt;string&gt;xcode.toolbar.config.buildV3&lt;/string&gt;
 			&lt;key&gt;WindowString&lt;/key&gt;
-			&lt;string&gt;257 107 1440 818 0 0 1920 1178 &lt;/string&gt;
+			&lt;string&gt;241 -125 1440 818 0 0 1920 1178 &lt;/string&gt;
 			&lt;key&gt;WindowToolGUID&lt;/key&gt;
 			&lt;string&gt;B5ABC8410E24CDE70072F422&lt;/string&gt;
 			&lt;key&gt;WindowToolIsVisible&lt;/key&gt;
-			&lt;false/&gt;
+			&lt;true/&gt;
 		&lt;/dict&gt;
 		&lt;dict&gt;
 			&lt;key&gt;FirstTimeWindowDisplayed&lt;/key&gt;
@@ -775,18 +894,20 @@
 									&lt;array&gt;
 										&lt;string&gt;Name&lt;/string&gt;
 										&lt;real&gt;277&lt;/real&gt;
+										&lt;string&gt;Type&lt;/string&gt;
+										&lt;real&gt;208&lt;/real&gt;
 										&lt;string&gt;Value&lt;/string&gt;
 										&lt;real&gt;114&lt;/real&gt;
 										&lt;string&gt;Summary&lt;/string&gt;
-										&lt;real&gt;435&lt;/real&gt;
+										&lt;real&gt;224&lt;/real&gt;
 									&lt;/array&gt;
 									&lt;key&gt;Frame&lt;/key&gt;
 									&lt;string&gt;{{713, 0}, {851, 339}}&lt;/string&gt;
 									&lt;key&gt;RubberWindowFrame&lt;/key&gt;
-									&lt;string&gt;103 471 1564 676 0 0 1920 1178 &lt;/string&gt;
+									&lt;string&gt;203 156 1564 676 0 0 1920 1178 &lt;/string&gt;
 								&lt;/dict&gt;
 								&lt;key&gt;RubberWindowFrame&lt;/key&gt;
-								&lt;string&gt;103 471 1564 676 0 0 1920 1178 &lt;/string&gt;
+								&lt;string&gt;203 156 1564 676 0 0 1920 1178 &lt;/string&gt;
 							&lt;/dict&gt;
 							&lt;key&gt;Module&lt;/key&gt;
 							&lt;string&gt;PBXDebugSessionModule&lt;/string&gt;
@@ -820,7 +941,7 @@
 			&lt;key&gt;ToolbarConfiguration&lt;/key&gt;
 			&lt;string&gt;xcode.toolbar.config.debugV3&lt;/string&gt;
 			&lt;key&gt;WindowString&lt;/key&gt;
-			&lt;string&gt;103 471 1564 676 0 0 1920 1178 &lt;/string&gt;
+			&lt;string&gt;203 156 1564 676 0 0 1920 1178 &lt;/string&gt;
 			&lt;key&gt;WindowToolGUID&lt;/key&gt;
 			&lt;string&gt;1CD10A99069EF8BA00B06720&lt;/string&gt;
 			&lt;key&gt;WindowToolIsVisible&lt;/key&gt;
@@ -946,18 +1067,18 @@
 							&lt;key&gt;GeometryConfiguration&lt;/key&gt;
 							&lt;dict&gt;
 								&lt;key&gt;Frame&lt;/key&gt;
-								&lt;string&gt;{{0, 0}, {629, 511}}&lt;/string&gt;
+								&lt;string&gt;{{0, 0}, {636, 839}}&lt;/string&gt;
 								&lt;key&gt;RubberWindowFrame&lt;/key&gt;
-								&lt;string&gt;67 588 629 552 0 0 1920 1178 &lt;/string&gt;
+								&lt;string&gt;67 260 636 880 0 0 1920 1178 &lt;/string&gt;
 							&lt;/dict&gt;
 							&lt;key&gt;Module&lt;/key&gt;
 							&lt;string&gt;PBXDebugCLIModule&lt;/string&gt;
 							&lt;key&gt;Proportion&lt;/key&gt;
-							&lt;string&gt;511pt&lt;/string&gt;
+							&lt;string&gt;839pt&lt;/string&gt;
 						&lt;/dict&gt;
 					&lt;/array&gt;
 					&lt;key&gt;Proportion&lt;/key&gt;
-					&lt;string&gt;511pt&lt;/string&gt;
+					&lt;string&gt;839pt&lt;/string&gt;
 				&lt;/dict&gt;
 			&lt;/array&gt;
 			&lt;key&gt;Name&lt;/key&gt;
@@ -977,7 +1098,7 @@
 			&lt;key&gt;ToolbarConfiguration&lt;/key&gt;
 			&lt;string&gt;xcode.toolbar.config.consoleV3&lt;/string&gt;
 			&lt;key&gt;WindowString&lt;/key&gt;
-			&lt;string&gt;67 588 629 552 0 0 1920 1178 &lt;/string&gt;
+			&lt;string&gt;67 260 636 880 0 0 1920 1178 &lt;/string&gt;
 			&lt;key&gt;WindowToolGUID&lt;/key&gt;
 			&lt;string&gt;1C78EAAD065D492600B07095&lt;/string&gt;
 			&lt;key&gt;WindowToolIsVisible&lt;/key&gt;</diff>
      <filename>asi-http-request.xcodeproj/ben.mode1v3</filename>
    </modified>
    <modified>
      <diff>@@ -305,6 +305,78 @@
 			B5731DA70E433B550008024F /* PBXTextBookmark */ = B5731DA70E433B550008024F /* PBXTextBookmark */;
 			B5731DB00E433BDB0008024F /* PBXTextBookmark */ = B5731DB00E433BDB0008024F /* PBXTextBookmark */;
 			B5731DB10E433BDB0008024F /* PBXTextBookmark */ = B5731DB10E433BDB0008024F /* PBXTextBookmark */;
+			B5731DB90E433E280008024F /* PBXTextBookmark */ = B5731DB90E433E280008024F /* PBXTextBookmark */;
+			B5731DBA0E433E280008024F /* PBXTextBookmark */ = B5731DBA0E433E280008024F /* PBXTextBookmark */;
+			B5731DBB0E433E280008024F /* PBXTextBookmark */ = B5731DBB0E433E280008024F /* PBXTextBookmark */;
+			B5731DBC0E433E280008024F /* PBXTextBookmark */ = B5731DBC0E433E280008024F /* PBXTextBookmark */;
+			B5731DBD0E433E280008024F /* PBXTextBookmark */ = B5731DBD0E433E280008024F /* PBXTextBookmark */;
+			B5731DBE0E433E280008024F /* PBXTextBookmark */ = B5731DBE0E433E280008024F /* PBXTextBookmark */;
+			B5731DBF0E433E280008024F /* PBXTextBookmark */ = B5731DBF0E433E280008024F /* PBXTextBookmark */;
+			B5731DC00E433E280008024F /* PBXTextBookmark */ = B5731DC00E433E280008024F /* PBXTextBookmark */;
+			B5731DC10E433E280008024F /* PBXTextBookmark */ = B5731DC10E433E280008024F /* PBXTextBookmark */;
+			B5731DC20E433E280008024F /* PBXTextBookmark */ = B5731DC20E433E280008024F /* PBXTextBookmark */;
+			B5731DC30E433E280008024F /* PBXTextBookmark */ = B5731DC30E433E280008024F /* PBXTextBookmark */;
+			B5731DC40E433E280008024F /* PBXTextBookmark */ = B5731DC40E433E280008024F /* PBXTextBookmark */;
+			B5731DC50E433E280008024F /* PBXTextBookmark */ = B5731DC50E433E280008024F /* PBXTextBookmark */;
+			B5731DC90E433E320008024F /* PBXTextBookmark */ = B5731DC90E433E320008024F /* PBXTextBookmark */;
+			B5731DDA0E433E990008024F /* PBXTextBookmark */ = B5731DDA0E433E990008024F /* PBXTextBookmark */;
+			B5731DDB0E433E990008024F /* PBXTextBookmark */ = B5731DDB0E433E990008024F /* PBXTextBookmark */;
+			B5731DDC0E433E990008024F /* PBXTextBookmark */ = B5731DDC0E433E990008024F /* PBXTextBookmark */;
+			B5731DDD0E433E990008024F /* PBXTextBookmark */ = B5731DDD0E433E990008024F /* PBXTextBookmark */;
+			B5731DE70E4340CF0008024F /* PBXTextBookmark */ = B5731DE70E4340CF0008024F /* PBXTextBookmark */;
+			B5731DE80E4340CF0008024F /* PBXTextBookmark */ = B5731DE80E4340CF0008024F /* PBXTextBookmark */;
+			B5731DE90E4340CF0008024F /* PBXTextBookmark */ = B5731DE90E4340CF0008024F /* PBXTextBookmark */;
+			B5731DEA0E4340CF0008024F /* PBXTextBookmark */ = B5731DEA0E4340CF0008024F /* PBXTextBookmark */;
+			B5731DEB0E4340CF0008024F /* PBXTextBookmark */ = B5731DEB0E4340CF0008024F /* PBXTextBookmark */;
+			B5731DEC0E4340CF0008024F /* PBXTextBookmark */ = B5731DEC0E4340CF0008024F /* PBXTextBookmark */;
+			B5731DED0E4340CF0008024F /* PBXTextBookmark */ = B5731DED0E4340CF0008024F /* PBXTextBookmark */;
+			B5731DEE0E4340CF0008024F /* PBXTextBookmark */ = B5731DEE0E4340CF0008024F /* PBXTextBookmark */;
+			B5731DEF0E4340CF0008024F /* PBXTextBookmark */ = B5731DEF0E4340CF0008024F /* PBXTextBookmark */;
+			B5731DF30E43412C0008024F /* PBXTextBookmark */ = B5731DF30E43412C0008024F /* PBXTextBookmark */;
+			B5731DF90E4341460008024F /* PBXTextBookmark */ = B5731DF90E4341460008024F /* PBXTextBookmark */;
+			B5731E000E4341980008024F /* PBXTextBookmark */ = B5731E000E4341980008024F /* PBXTextBookmark */;
+			B5731E050E4341B10008024F /* PBXTextBookmark */ = B5731E050E4341B10008024F /* PBXTextBookmark */;
+			B5731E0D0E4342030008024F /* PBXTextBookmark */ = B5731E0D0E4342030008024F /* PBXTextBookmark */;
+			B5731E0E0E4342030008024F /* PBXTextBookmark */ = B5731E0E0E4342030008024F /* PBXTextBookmark */;
+			B5731E180E43424A0008024F /* PBXTextBookmark */ = B5731E180E43424A0008024F /* PBXTextBookmark */;
+			B5731E190E43424A0008024F /* PBXTextBookmark */ = B5731E190E43424A0008024F /* PBXTextBookmark */;
+			B5731E1A0E43424A0008024F /* PBXTextBookmark */ = B5731E1A0E43424A0008024F /* PBXTextBookmark */;
+			B5731E1B0E43424A0008024F /* PBXTextBookmark */ = B5731E1B0E43424A0008024F /* PBXTextBookmark */;
+			B5731E1C0E43424A0008024F /* PBXTextBookmark */ = B5731E1C0E43424A0008024F /* PBXTextBookmark */;
+			B5731E1E0E4342E80008024F /* PBXTextBookmark */ = B5731E1E0E4342E80008024F /* PBXTextBookmark */;
+			B5731E210E43433B0008024F /* PBXTextBookmark */ = B5731E210E43433B0008024F /* PBXTextBookmark */;
+			B5731E220E4343490008024F /* PBXTextBookmark */ = B5731E220E4343490008024F /* PBXTextBookmark */;
+			B5731E240E4343530008024F /* PBXTextBookmark */ = B5731E240E4343530008024F /* PBXTextBookmark */;
+			B5731E280E4343E50008024F /* PBXTextBookmark */ = B5731E280E4343E50008024F /* PBXTextBookmark */;
+			B5731E2A0E43441F0008024F /* PBXBookmark */ = B5731E2A0E43441F0008024F /* PBXBookmark */;
+			B5731E2C0E43448A0008024F /* PBXBookmark */ = B5731E2C0E43448A0008024F /* PBXBookmark */;
+			B5731E2E0E4344F90008024F /* PBXTextBookmark */ = B5731E2E0E4344F90008024F /* PBXTextBookmark */;
+			B5731E2F0E4344F90008024F /* PBXTextBookmark */ = B5731E2F0E4344F90008024F /* PBXTextBookmark */;
+			B5731E300E4344F90008024F /* PBXTextBookmark */ = B5731E300E4344F90008024F /* PBXTextBookmark */;
+			B5731E310E4344F90008024F /* PBXTextBookmark */ = B5731E310E4344F90008024F /* PBXTextBookmark */;
+			B5731E320E4344F90008024F /* PBXTextBookmark */ = B5731E320E4344F90008024F /* PBXTextBookmark */;
+			B5731E330E4344F90008024F /* PBXTextBookmark */ = B5731E330E4344F90008024F /* PBXTextBookmark */;
+			B5731E340E4344F90008024F /* PBXTextBookmark */ = B5731E340E4344F90008024F /* PBXTextBookmark */;
+			B5731E350E4344F90008024F /* PBXTextBookmark */ = B5731E350E4344F90008024F /* PBXTextBookmark */;
+			B5731E360E4344F90008024F /* PBXTextBookmark */ = B5731E360E4344F90008024F /* PBXTextBookmark */;
+			B5731E370E4344F90008024F /* PBXTextBookmark */ = B5731E370E4344F90008024F /* PBXTextBookmark */;
+			B5731E380E4344F90008024F /* PBXTextBookmark */ = B5731E380E4344F90008024F /* PBXTextBookmark */;
+			B5731E390E4344F90008024F /* PBXTextBookmark */ = B5731E390E4344F90008024F /* PBXTextBookmark */;
+			B5731E3A0E4344F90008024F /* PBXTextBookmark */ = B5731E3A0E4344F90008024F /* PBXTextBookmark */;
+			B5731E3B0E4344F90008024F /* PBXTextBookmark */ = B5731E3B0E4344F90008024F /* PBXTextBookmark */;
+			B5731E3C0E4344F90008024F /* PBXTextBookmark */ = B5731E3C0E4344F90008024F /* PBXTextBookmark */;
+			B5731E3D0E4344F90008024F /* PBXTextBookmark */ = B5731E3D0E4344F90008024F /* PBXTextBookmark */;
+			B5731E3E0E4344F90008024F /* PBXTextBookmark */ = B5731E3E0E4344F90008024F /* PBXTextBookmark */;
+			B5731E3F0E4344F90008024F /* PBXTextBookmark */ = B5731E3F0E4344F90008024F /* PBXTextBookmark */;
+			B5731E400E4344F90008024F /* PBXTextBookmark */ = B5731E400E4344F90008024F /* PBXTextBookmark */;
+			B5731E410E4344F90008024F /* PBXTextBookmark */ = B5731E410E4344F90008024F /* PBXTextBookmark */;
+			B5731E420E4344F90008024F /* PBXTextBookmark */ = B5731E420E4344F90008024F /* PBXTextBookmark */;
+			B5731E430E4344F90008024F /* PBXTextBookmark */ = B5731E430E4344F90008024F /* PBXTextBookmark */;
+			B5731E440E4344F90008024F /* PBXTextBookmark */ = B5731E440E4344F90008024F /* PBXTextBookmark */;
+			B5731E450E4344F90008024F /* PBXTextBookmark */ = B5731E450E4344F90008024F /* PBXTextBookmark */;
+			B5731E460E4344F90008024F /* PBXTextBookmark */ = B5731E460E4344F90008024F /* PBXTextBookmark */;
+			B5731E490E4344F90008024F /* PBXTextBookmark */ = B5731E490E4344F90008024F /* PBXTextBookmark */;
+			B5731E4C0E4344F90008024F /* PBXTextBookmark */ = B5731E4C0E4344F90008024F /* PBXTextBookmark */;
 			B5ABC8250E24CDE70072F422 = B5ABC8250E24CDE70072F422 /* PBXTextBookmark */;
 			B5ABC8260E24CDE70072F422 = B5ABC8260E24CDE70072F422 /* PBXTextBookmark */;
 			B5ABC8280E24CDE70072F422 = B5ABC8280E24CDE70072F422 /* PBXTextBookmark */;
@@ -386,7 +458,7 @@
 		fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
 		name = &quot;ASIHTTPRequest.h: 154&quot;;
 		rLen = 0;
-		rLoc = 5092;
+		rLoc = 4969;
 		rType = 0;
 		vrLen = 1758;
 		vrLoc = 4592;
@@ -396,16 +468,16 @@
 	};
 	B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */ = {
 		uiCtxt = {
-			sepNavIntBoundsRect = &quot;{{0, 0}, {947, 647}}&quot;;
-			sepNavSelRange = &quot;{279, 0}&quot;;
-			sepNavVisRange = &quot;{0, 287}&quot;;
+			sepNavIntBoundsRect = &quot;{{0, 0}, {947, 624}}&quot;;
+			sepNavSelRange = &quot;{250, 0}&quot;;
+			sepNavVisRange = &quot;{0, 315}&quot;;
 		};
 	};
 	B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */ = {
 		uiCtxt = {
-			sepNavIntBoundsRect = &quot;{{0, 0}, {947, 686}}&quot;;
-			sepNavSelRange = &quot;{193, 0}&quot;;
-			sepNavVisRange = &quot;{3, 1846}&quot;;
+			sepNavIntBoundsRect = &quot;{{0, 0}, {947, 1666}}&quot;;
+			sepNavSelRange = &quot;{289, 0}&quot;;
+			sepNavVisRange = &quot;{0, 1392}&quot;;
 		};
 	};
 	B5731B320E430D310008024F /* PBXTextBookmark */ = {
@@ -413,7 +485,7 @@
 		fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
 		name = &quot;ASIHTTPRequest.h: 154&quot;;
 		rLen = 0;
-		rLoc = 5092;
+		rLoc = 4969;
 		rType = 0;
 		vrLen = 1758;
 		vrLoc = 4592;
@@ -473,7 +545,7 @@
 		fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
 		name = &quot;ASIHTTPRequest.h: 154&quot;;
 		rLen = 0;
-		rLoc = 5092;
+		rLoc = 4969;
 		rType = 0;
 		vrLen = 1758;
 		vrLoc = 4592;
@@ -513,7 +585,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 16&quot;;
 		rLen = 0;
-		rLoc = 401;
+		rLoc = 567;
 		rType = 0;
 		vrLen = 280;
 		vrLoc = 0;
@@ -543,7 +615,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 18&quot;;
 		rLen = 0;
-		rLoc = 1840;
+		rLoc = 2006;
 		rType = 0;
 		vrLen = 434;
 		vrLoc = 0;
@@ -563,7 +635,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 20&quot;;
 		rLen = 0;
-		rLoc = 1840;
+		rLoc = 2006;
 		rType = 0;
 		vrLen = 549;
 		vrLoc = 0;
@@ -717,7 +789,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 17&quot;;
 		rLen = 83;
-		rLoc = 386;
+		rLoc = 552;
 		rType = 0;
 		vrLen = 575;
 		vrLoc = 0;
@@ -745,7 +817,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 17&quot;;
 		rLen = 83;
-		rLoc = 386;
+		rLoc = 552;
 		rType = 0;
 		vrLen = 575;
 		vrLoc = 0;
@@ -817,7 +889,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 20&quot;;
 		rLen = 0;
-		rLoc = 1840;
+		rLoc = 2006;
 		rType = 0;
 		vrLen = 575;
 		vrLoc = 0;
@@ -879,7 +951,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 20&quot;;
 		rLen = 0;
-		rLoc = 1840;
+		rLoc = 2006;
 		rType = 0;
 		vrLen = 575;
 		vrLoc = 0;
@@ -899,7 +971,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 20&quot;;
 		rLen = 0;
-		rLoc = 1840;
+		rLoc = 2006;
 		rType = 0;
 		vrLen = 575;
 		vrLoc = 0;
@@ -919,7 +991,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 20&quot;;
 		rLen = 0;
-		rLoc = 1840;
+		rLoc = 2006;
 		rType = 0;
 		vrLen = 575;
 		vrLoc = 0;
@@ -949,7 +1021,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 20&quot;;
 		rLen = 0;
-		rLoc = 1840;
+		rLoc = 2006;
 		rType = 0;
 		vrLen = 575;
 		vrLoc = 0;
@@ -969,7 +1041,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 20&quot;;
 		rLen = 0;
-		rLoc = 1840;
+		rLoc = 2006;
 		rType = 0;
 		vrLen = 575;
 		vrLoc = 0;
@@ -979,7 +1051,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 16&quot;;
 		rLen = 0;
-		rLoc = 299;
+		rLoc = 465;
 		rType = 0;
 		vrLen = 577;
 		vrLoc = 0;
@@ -999,7 +1071,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 16&quot;;
 		rLen = 0;
-		rLoc = 299;
+		rLoc = 465;
 		rType = 0;
 		vrLen = 577;
 		vrLoc = 0;
@@ -1009,7 +1081,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 16&quot;;
 		rLen = 0;
-		rLoc = 299;
+		rLoc = 465;
 		rType = 0;
 		vrLen = 577;
 		vrLoc = 0;
@@ -1029,7 +1101,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 16&quot;;
 		rLen = 0;
-		rLoc = 299;
+		rLoc = 465;
 		rType = 0;
 		vrLen = 577;
 		vrLoc = 0;
@@ -1049,7 +1121,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 16&quot;;
 		rLen = 0;
-		rLoc = 299;
+		rLoc = 465;
 		rType = 0;
 		vrLen = 577;
 		vrLoc = 0;
@@ -1069,7 +1141,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 21&quot;;
 		rLen = 0;
-		rLoc = 539;
+		rLoc = 705;
 		rType = 0;
 		vrLen = 574;
 		vrLoc = 0;
@@ -1079,7 +1151,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 21&quot;;
 		rLen = 0;
-		rLoc = 539;
+		rLoc = 705;
 		rType = 0;
 		vrLen = 574;
 		vrLoc = 0;
@@ -1099,7 +1171,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 21&quot;;
 		rLen = 0;
-		rLoc = 539;
+		rLoc = 705;
 		rType = 0;
 		vrLen = 574;
 		vrLoc = 0;
@@ -1119,7 +1191,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 21&quot;;
 		rLen = 0;
-		rLoc = 539;
+		rLoc = 705;
 		rType = 0;
 		vrLen = 577;
 		vrLoc = 0;
@@ -1139,7 +1211,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 14&quot;;
 		rLen = 17;
-		rLoc = 267;
+		rLoc = 433;
 		rType = 0;
 		vrLen = 788;
 		vrLoc = 0;
@@ -1149,7 +1221,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 14&quot;;
 		rLen = 17;
-		rLoc = 267;
+		rLoc = 433;
 		rType = 0;
 		vrLen = 788;
 		vrLoc = 0;
@@ -1169,7 +1241,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 29&quot;;
 		rLen = 41;
-		rLoc = 1593;
+		rLoc = 1759;
 		rType = 0;
 		vrLen = 1151;
 		vrLoc = 0;
@@ -1179,7 +1251,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 28&quot;;
 		rLen = 0;
-		rLoc = 1552;
+		rLoc = 1718;
 		rType = 0;
 		vrLen = 1234;
 		vrLoc = 0;
@@ -1189,7 +1261,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 25&quot;;
 		rLen = 0;
-		rLoc = 822;
+		rLoc = 988;
 		rType = 0;
 		vrLen = 1486;
 		vrLoc = 0;
@@ -1199,7 +1271,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1224;
+		rLoc = 1390;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 3;
@@ -1219,7 +1291,7 @@
 		fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
 		name = &quot;ASIHTTPRequest.h: 233&quot;;
 		rLen = 0;
-		rLoc = 8229;
+		rLoc = 8106;
 		rType = 0;
 		vrLen = 1769;
 		vrLoc = 6468;
@@ -1239,7 +1311,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 30&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1744;
 		vrLoc = 94;
@@ -1249,7 +1321,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 30&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1744;
 		vrLoc = 94;
@@ -1279,7 +1351,7 @@
 		fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
 		name = &quot;ASIHTTPRequest.h: 233&quot;;
 		rLen = 0;
-		rLoc = 8229;
+		rLoc = 8106;
 		rType = 0;
 		vrLen = 1799;
 		vrLoc = 6433;
@@ -1299,7 +1371,7 @@
 		fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
 		name = &quot;ASIHTTPRequest.h: 233&quot;;
 		rLen = 0;
-		rLoc = 8229;
+		rLoc = 8106;
 		rType = 0;
 		vrLen = 1964;
 		vrLoc = 5847;
@@ -1319,7 +1391,7 @@
 		fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
 		name = &quot;ASIHTTPRequest.h: 233&quot;;
 		rLen = 0;
-		rLoc = 8229;
+		rLoc = 8106;
 		rType = 0;
 		vrLen = 1769;
 		vrLoc = 6468;
@@ -1339,7 +1411,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 29&quot;;
 		rLen = 49;
-		rLoc = 966;
+		rLoc = 1132;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1369,7 +1441,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 29&quot;;
 		rLen = 49;
-		rLoc = 966;
+		rLoc = 1132;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1379,7 +1451,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 29&quot;;
 		rLen = 49;
-		rLoc = 966;
+		rLoc = 1132;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1399,7 +1471,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 29&quot;;
 		rLen = 49;
-		rLoc = 966;
+		rLoc = 1132;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1419,7 +1491,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1165;
+		rLoc = 1331;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1429,7 +1501,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1165;
+		rLoc = 1331;
 		rType = 0;
 		vrLen = 1793;
 		vrLoc = 53;
@@ -1439,7 +1511,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1165;
+		rLoc = 1331;
 		rType = 0;
 		vrLen = 1793;
 		vrLoc = 53;
@@ -1449,7 +1521,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1165;
+		rLoc = 1331;
 		rType = 0;
 		vrLen = 1793;
 		vrLoc = 53;
@@ -1459,7 +1531,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1165;
+		rLoc = 1331;
 		rType = 0;
 		vrLen = 1793;
 		vrLoc = 53;
@@ -1469,7 +1541,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1165;
+		rLoc = 1331;
 		rType = 0;
 		vrLen = 1793;
 		vrLoc = 53;
@@ -1479,7 +1551,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 17&quot;;
 		rLen = 3;
-		rLoc = 308;
+		rLoc = 474;
 		rType = 0;
 		vrLen = 1803;
 		vrLoc = 53;
@@ -1489,7 +1561,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 17&quot;;
 		rLen = 3;
-		rLoc = 308;
+		rLoc = 474;
 		rType = 0;
 		vrLen = 1803;
 		vrLoc = 53;
@@ -1499,7 +1571,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 17&quot;;
 		rLen = 3;
-		rLoc = 308;
+		rLoc = 474;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1509,7 +1581,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 17&quot;;
 		rLen = 3;
-		rLoc = 308;
+		rLoc = 474;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1519,7 +1591,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 17&quot;;
 		rLen = 3;
-		rLoc = 308;
+		rLoc = 474;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1529,7 +1601,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 17&quot;;
 		rLen = 3;
-		rLoc = 308;
+		rLoc = 474;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1539,7 +1611,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1803;
 		vrLoc = 53;
@@ -1549,7 +1621,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1559,7 +1631,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1569,7 +1641,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1793;
 		vrLoc = 53;
@@ -1579,7 +1651,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1793;
 		vrLoc = 53;
@@ -1589,7 +1661,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1793;
 		vrLoc = 53;
@@ -1599,7 +1671,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1609,7 +1681,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1619,7 +1691,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1629,7 +1701,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1803;
 		vrLoc = 53;
@@ -1639,7 +1711,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1793;
 		vrLoc = 53;
@@ -1649,7 +1721,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1793;
 		vrLoc = 53;
@@ -1659,7 +1731,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1669,7 +1741,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1679,7 +1751,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1689,7 +1761,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1699,7 +1771,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1709,7 +1781,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1793;
 		vrLoc = 53;
@@ -1719,7 +1791,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1803;
 		vrLoc = 53;
@@ -1729,7 +1801,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1803;
 		vrLoc = 53;
@@ -1739,7 +1811,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1749,7 +1821,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1759,7 +1831,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1803;
 		vrLoc = 53;
@@ -1769,7 +1841,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1166;
+		rLoc = 1332;
 		rType = 0;
 		vrLen = 1797;
 		vrLoc = 53;
@@ -1779,7 +1851,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1165;
+		rLoc = 1331;
 		rType = 0;
 		vrLen = 1799;
 		vrLoc = 53;
@@ -1835,9 +1907,9 @@
 		path = /Developer/Tools/RunPlatformUnitTests.include;
 		sourceTree = &quot;&lt;absolute&gt;&quot;;
 		uiCtxt = {
-			sepNavIntBoundsRect = &quot;{{0, 0}, {1170, 5558}}&quot;;
-			sepNavSelRange = &quot;{10259, 0}&quot;;
-			sepNavVisRange = &quot;{9378, 1771}&quot;;
+			sepNavIntBoundsRect = &quot;{{0, 0}, {1379, 5530}}&quot;;
+			sepNavSelRange = &quot;{10038, 138}&quot;;
+			sepNavVisRange = &quot;{9441, 1405}&quot;;
 		};
 	};
 	B5731D7B0E4339C80008024F /* PBXTextBookmark */ = {
@@ -1845,7 +1917,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1165;
+		rLoc = 1331;
 		rType = 0;
 		vrLen = 1799;
 		vrLoc = 53;
@@ -1855,7 +1927,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1165;
+		rLoc = 1331;
 		rType = 0;
 		vrLen = 1805;
 		vrLoc = 53;
@@ -1875,7 +1947,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1165;
+		rLoc = 1331;
 		rType = 0;
 		vrLen = 1805;
 		vrLoc = 53;
@@ -1915,7 +1987,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1116;
+		rLoc = 1282;
 		rType = 0;
 		vrLen = 1815;
 		vrLoc = 53;
@@ -1993,7 +2065,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1116;
+		rLoc = 1282;
 		rType = 0;
 		vrLen = 1815;
 		vrLoc = 53;
@@ -2003,7 +2075,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 31&quot;;
 		rLen = 0;
-		rLoc = 1116;
+		rLoc = 1282;
 		rType = 0;
 		vrLen = 1815;
 		vrLoc = 53;
@@ -2043,7 +2115,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 34&quot;;
 		rLen = 0;
-		rLoc = 1227;
+		rLoc = 1393;
 		rType = 0;
 		vrLen = 1718;
 		vrLoc = 158;
@@ -2063,7 +2135,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 44&quot;;
 		rLen = 0;
-		rLoc = 1770;
+		rLoc = 1936;
 		rType = 0;
 		vrLen = 1801;
 		vrLoc = 50;
@@ -2073,7 +2145,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 44&quot;;
 		rLen = 0;
-		rLoc = 1770;
+		rLoc = 1936;
 		rType = 0;
 		vrLen = 1801;
 		vrLoc = 50;
@@ -2093,7 +2165,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 44&quot;;
 		rLen = 0;
-		rLoc = 1770;
+		rLoc = 1936;
 		rType = 0;
 		vrLen = 1801;
 		vrLoc = 50;
@@ -2103,7 +2175,7 @@
 		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
 		name = &quot;ASIHTTPRequestTests.m: 46&quot;;
 		rLen = 0;
-		rLoc = 1842;
+		rLoc = 4393;
 		rType = 0;
 		vrLen = 1846;
 		vrLoc = 3;
@@ -2118,6 +2190,712 @@
 		vrLen = 1846;
 		vrLoc = 3;
 	};
+	B5731DB90E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 22&quot;;
+		rLen = 0;
+		rLoc = 309;
+		rType = 0;
+		vrLen = 462;
+		vrLoc = 0;
+	};
+	B5731DBA0E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 86&quot;;
+		rLen = 0;
+		rLoc = 4393;
+		rType = 0;
+		vrLen = 1333;
+		vrLoc = 1718;
+	};
+	B5731DBB0E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 73&quot;;
+		rLen = 0;
+		rLoc = 4393;
+		rType = 0;
+		vrLen = 1852;
+		vrLoc = 926;
+	};
+	B5731DBC0E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 13&quot;;
+		rLen = 0;
+		rLoc = 250;
+		rType = 0;
+		vrLen = 324;
+		vrLoc = 0;
+	};
+	B5731DBD0E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 73&quot;;
+		rLen = 0;
+		rLoc = 4393;
+		rType = 0;
+		vrLen = 1904;
+		vrLoc = 874;
+	};
+	B5731DBE0E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 13&quot;;
+		rLen = 0;
+		rLoc = 250;
+		rType = 0;
+		vrLen = 324;
+		vrLoc = 0;
+	};
+	B5731DBF0E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 73&quot;;
+		rLen = 0;
+		rLoc = 4393;
+		rType = 0;
+		vrLen = 1852;
+		vrLoc = 926;
+	};
+	B5731DC00E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 13&quot;;
+		rLen = 0;
+		rLoc = 250;
+		rType = 0;
+		vrLen = 324;
+		vrLoc = 0;
+	};
+	B5731DC10E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 73&quot;;
+		rLen = 0;
+		rLoc = 4393;
+		rType = 0;
+		vrLen = 1904;
+		vrLoc = 874;
+	};
+	B5731DC20E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 13&quot;;
+		rLen = 0;
+		rLoc = 250;
+		rType = 0;
+		vrLen = 347;
+		vrLoc = 0;
+	};
+	B5731DC30E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 86&quot;;
+		rLen = 0;
+		rLoc = 4393;
+		rType = 0;
+		vrLen = 1315;
+		vrLoc = 1736;
+	};
+	B5731DC40E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 22&quot;;
+		rLen = 0;
+		rLoc = 309;
+		rType = 0;
+		vrLen = 462;
+		vrLoc = 0;
+	};
+	B5731DC50E433E280008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 85&quot;;
+		rLen = 0;
+		rLoc = 4389;
+		rType = 0;
+		vrLen = 1664;
+		vrLoc = 1871;
+	};
+	B5731DC90E433E320008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 85&quot;;
+		rLen = 0;
+		rLoc = 4389;
+		rType = 0;
+		vrLen = 1664;
+		vrLoc = 1871;
+	};
+	B5731DDA0E433E990008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 48&quot;;
+		rLen = 26;
+		rLoc = 2010;
+		rType = 0;
+		vrLen = 2093;
+		vrLoc = 487;
+	};
+	B5731DDB0E433E990008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 22&quot;;
+		rLen = 0;
+		rLoc = 309;
+		rType = 0;
+		vrLen = 462;
+		vrLoc = 0;
+	};
+	B5731DDC0E433E990008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 48&quot;;
+		rLen = 26;
+		rLoc = 2010;
+		rType = 0;
+		vrLen = 2093;
+		vrLoc = 487;
+	};
+	B5731DDD0E433E990008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 20&quot;;
+		rLen = 0;
+		rLoc = 309;
+		rType = 0;
+		vrLen = 490;
+		vrLoc = 0;
+	};
+	B5731DE70E4340CF0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
+		name = &quot;ASIHTTPRequest.m: 373&quot;;
+		rLen = 0;
+		rLoc = 11872;
+		rType = 0;
+		vrLen = 1765;
+		vrLoc = 11652;
+	};
+	B5731DE80E4340CF0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 12&quot;;
+		rLen = 0;
+		rLoc = 250;
+		rType = 0;
+		vrLen = 315;
+		vrLoc = 0;
+	};
+	B5731DE90E4340CF0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 80&quot;;
+		rLen = 0;
+		rLoc = 4393;
+		rType = 0;
+		vrLen = 1971;
+		vrLoc = 1228;
+	};
+	B5731DEA0E4340CF0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 20&quot;;
+		rLen = 0;
+		rLoc = 309;
+		rType = 0;
+		vrLen = 490;
+		vrLoc = 0;
+	};
+	B5731DEB0E4340CF0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 50&quot;;
+		rLen = 0;
+		rLoc = 2038;
+		rType = 0;
+		vrLen = 1861;
+		vrLoc = 1553;
+	};
+	B5731DEC0E4340CF0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
+		name = &quot;ASIHTTPRequest.m: 373&quot;;
+		rLen = 0;
+		rLoc = 11872;
+		rType = 0;
+		vrLen = 1765;
+		vrLoc = 11652;
+	};
+	B5731DED0E4340CF0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 80&quot;;
+		rLen = 0;
+		rLoc = 4393;
+		rType = 0;
+		vrLen = 1971;
+		vrLoc = 1228;
+	};
+	B5731DEE0E4340CF0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 12&quot;;
+		rLen = 0;
+		rLoc = 250;
+		rType = 0;
+		vrLen = 315;
+		vrLoc = 0;
+	};
+	B5731DEF0E4340CF0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 71&quot;;
+		rLen = 0;
+		rLoc = 2038;
+		rType = 0;
+		vrLen = 1983;
+		vrLoc = 1228;
+	};
+	B5731DF30E43412C0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 83&quot;;
+		rLen = 0;
+		rLoc = 3865;
+		rType = 0;
+		vrLen = 1592;
+		vrLoc = 1843;
+	};
+	B5731DF90E4341460008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 58&quot;;
+		rLen = 0;
+		rLoc = 2488;
+		rType = 0;
+		vrLen = 1681;
+		vrLoc = 1736;
+	};
+	B5731E000E4341980008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 58&quot;;
+		rLen = 0;
+		rLoc = 2488;
+		rType = 0;
+		vrLen = 1681;
+		vrLoc = 1736;
+	};
+	B5731E050E4341B10008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 58&quot;;
+		rLen = 0;
+		rLoc = 2488;
+		rType = 0;
+		vrLen = 1681;
+		vrLoc = 1736;
+	};
+	B5731E0D0E4342030008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		comments = &quot;error: Test host 'asi-http-request.app/Contents/MacOS/asi-http-request' exited abnormally with code 127 (it may have crashed).&quot;;
+		fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
+		rLen = 1;
+		rLoc = 303;
+		rType = 1;
+	};
+	B5731E0E0E4342030008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
+		name = &quot;RunPlatformUnitTests.include: 304&quot;;
+		rLen = 138;
+		rLoc = 10038;
+		rType = 0;
+		vrLen = 1314;
+		vrLoc = 9441;
+	};
+	B5731E180E43424A0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
+		name = &quot;RunPlatformUnitTests.include: 304&quot;;
+		rLen = 138;
+		rLoc = 10038;
+		rType = 0;
+		vrLen = 1911;
+		vrLoc = 9274;
+	};
+	B5731E190E43424A0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 75&quot;;
+		rLen = 0;
+		rLoc = 3547;
+		rType = 0;
+		vrLen = 1501;
+		vrLoc = 1771;
+	};
+	B5731E1A0E43424A0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 75&quot;;
+		rLen = 0;
+		rLoc = 3547;
+		rType = 0;
+		vrLen = 1705;
+		vrLoc = 1736;
+	};
+	B5731E1B0E43424A0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
+		name = &quot;RunPlatformUnitTests.include: 304&quot;;
+		rLen = 138;
+		rLoc = 10038;
+		rType = 0;
+		vrLen = 1911;
+		vrLoc = 9274;
+	};
+	B5731E1C0E43424A0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 75&quot;;
+		rLen = 0;
+		rLoc = 3547;
+		rType = 0;
+		vrLen = 1432;
+		vrLoc = 1841;
+	};
+	B5731E1E0E4342E80008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 53&quot;;
+		rLen = 39;
+		rLoc = 2168;
+		rType = 0;
+		vrLen = 1500;
+		vrLoc = 1736;
+	};
+	B5731E210E43433B0008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 81&quot;;
+		rLen = 0;
+		rLoc = 3823;
+		rType = 0;
+		vrLen = 1650;
+		vrLoc = 1736;
+	};
+	B5731E220E4343490008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 84&quot;;
+		rLen = 0;
+		rLoc = 3970;
+		rType = 0;
+		vrLen = 1725;
+		vrLoc = 1736;
+	};
+	B5731E240E4343530008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 84&quot;;
+		rLen = 0;
+		rLoc = 3970;
+		rType = 0;
+		vrLen = 1736;
+		vrLoc = 1736;
+	};
+	B5731E280E4343E50008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 102&quot;;
+		rLen = 0;
+		rLoc = 4384;
+		rType = 0;
+		vrLen = 1839;
+		vrLoc = 2389;
+	};
+	B5731E2A0E43441F0008024F /* PBXBookmark */ = {
+		isa = PBXBookmark;
+		fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
+	};
+	B5731E2C0E43448A0008024F /* PBXBookmark */ = {
+		isa = PBXBookmark;
+		fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
+	};
+	B5731E2E0E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
+		name = &quot;AppDelegate.m: 34&quot;;
+		rLen = 96;
+		rLoc = 663;
+		rType = 0;
+		vrLen = 1038;
+		vrLoc = 0;
+	};
+	B5731E2F0E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
+		name = &quot;ASIHTTPRequest.h: 230&quot;;
+		rLen = 0;
+		rLoc = 8106;
+		rType = 0;
+		vrLen = 1732;
+		vrLoc = 6382;
+	};
+	B5731E300E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
+		name = &quot;ASIHTTPRequest.m: 373&quot;;
+		rLen = 0;
+		rLoc = 11872;
+		rType = 0;
+		vrLen = 1675;
+		vrLoc = 11652;
+	};
+	B5731E310E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
+		name = &quot;ASIProgressDelegate.h: 17&quot;;
+		rLen = 0;
+		rLoc = 356;
+		rType = 0;
+		vrLen = 356;
+		vrLoc = 0;
+	};
+	B5731E320E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
+		name = &quot;AppDelegate.h: 4&quot;;
+		rLen = 0;
+		rLoc = 42;
+		rType = 0;
+		vrLen = 1083;
+		vrLoc = 0;
+	};
+	B5731E330E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 12&quot;;
+		rLen = 0;
+		rLoc = 250;
+		rType = 0;
+		vrLen = 315;
+		vrLoc = 0;
+	};
+	B5731E340E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 19&quot;;
+		rLen = 0;
+		rLoc = 420;
+		rType = 0;
+		vrLen = 1473;
+		vrLoc = 0;
+	};
+	B5731E350E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 102&quot;;
+		rLen = 0;
+		rLoc = 4384;
+		rType = 0;
+		vrLen = 1841;
+		vrLoc = 0;
+	};
+	B5731E360E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
+		name = &quot;AppDelegate.h: 4&quot;;
+		rLen = 0;
+		rLoc = 42;
+		rType = 0;
+		vrLen = 1083;
+		vrLoc = 0;
+	};
+	B5731E370E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 102&quot;;
+		rLen = 0;
+		rLoc = 4384;
+		rType = 0;
+		vrLen = 1664;
+		vrLoc = 2569;
+	};
+	B5731E380E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
+		name = &quot;ASIHTTPRequest.h: 233&quot;;
+		rLen = 0;
+		rLoc = 8106;
+		rType = 0;
+		vrLen = 1733;
+		vrLoc = 6504;
+	};
+	B5731E390E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 12&quot;;
+		rLen = 0;
+		rLoc = 250;
+		rType = 0;
+		vrLen = 315;
+		vrLoc = 0;
+	};
+	B5731E3A0E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 19&quot;;
+		rLen = 0;
+		rLoc = 420;
+		rType = 0;
+		vrLen = 1473;
+		vrLoc = 0;
+	};
+	B5731E3B0E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 12&quot;;
+		rLen = 0;
+		rLoc = 250;
+		rType = 0;
+		vrLen = 315;
+		vrLoc = 0;
+	};
+	B5731E3C0E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 19&quot;;
+		rLen = 0;
+		rLoc = 420;
+		rType = 0;
+		vrLen = 1473;
+		vrLoc = 0;
+	};
+	B5731E3D0E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
+		name = &quot;AppDelegate.m: 34&quot;;
+		rLen = 96;
+		rLoc = 663;
+		rType = 0;
+		vrLen = 1038;
+		vrLoc = 0;
+	};
+	B5731E3E0E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
+		name = &quot;AppDelegate.h: 4&quot;;
+		rLen = 0;
+		rLoc = 42;
+		rType = 0;
+		vrLen = 1083;
+		vrLoc = 0;
+	};
+	B5731E3F0E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
+		name = &quot;AppDelegate.m: 34&quot;;
+		rLen = 96;
+		rLoc = 663;
+		rType = 0;
+		vrLen = 1038;
+		vrLoc = 0;
+	};
+	B5731E400E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
+		name = &quot;ASIHTTPRequest.h: 230&quot;;
+		rLen = 0;
+		rLoc = 8106;
+		rType = 0;
+		vrLen = 1732;
+		vrLoc = 6382;
+	};
+	B5731E410E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
+		name = &quot;ASIHTTPRequest.m: 373&quot;;
+		rLen = 0;
+		rLoc = 11872;
+		rType = 0;
+		vrLen = 1675;
+		vrLoc = 11652;
+	};
+	B5731E420E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
+		name = &quot;ASIProgressDelegate.h: 17&quot;;
+		rLen = 0;
+		rLoc = 356;
+		rType = 0;
+		vrLen = 356;
+		vrLoc = 0;
+	};
+	B5731E430E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
+		name = &quot;AppDelegate.h: 4&quot;;
+		rLen = 0;
+		rLoc = 42;
+		rType = 0;
+		vrLen = 1083;
+		vrLoc = 0;
+	};
+	B5731E440E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 19&quot;;
+		rLen = 0;
+		rLoc = 420;
+		rType = 0;
+		vrLen = 1473;
+		vrLoc = 0;
+	};
+	B5731E450E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
+		name = &quot;ASIHTTPRequestTests.h: 12&quot;;
+		rLen = 0;
+		rLoc = 250;
+		rType = 0;
+		vrLen = 315;
+		vrLoc = 0;
+	};
+	B5731E460E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
+		name = &quot;ASIHTTPRequestTests.m: 16&quot;;
+		rLen = 0;
+		rLoc = 289;
+		rType = 0;
+		vrLen = 1392;
+		vrLoc = 0;
+	};
+	B5731E490E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
+		name = &quot;ASIHTTPRequest.h: 79&quot;;
+		rLen = 0;
+		rLoc = 2879;
+		rType = 0;
+		vrLen = 1511;
+		vrLoc = 2838;
+	};
+	B5731E4C0E4344F90008024F /* PBXTextBookmark */ = {
+		isa = PBXTextBookmark;
+		fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
+		name = &quot;AppDelegate.h: 4&quot;;
+		rLen = 0;
+		rLoc = 42;
+		rType = 0;
+		vrLen = 1083;
+		vrLoc = 0;
+	};
 	B5AAC50B0E3F1CC300064080 /* AppDelegate.m:22 */ = {
 		isa = PBXFileBreakpoint;
 		actions = (
@@ -2132,7 +2910,7 @@
 		ignoreCount = 0;
 		lineNumber = 22;
 		location = &quot;asi-http-request&quot;;
-		modificationTime = 239287151.799814;
+		modificationTime = 239289590.084248;
 		state = 1;
 	};
 	B5ABC7A70E24C5280072F422 /* asi-http-request */ = {
@@ -2154,32 +2932,32 @@
 		enableDebugStr = 1;
 		environmentEntries = (
 			{
-				active = YES;
+				active = NO;
 				name = CFZombieLevel;
 				value = 5;
 			},
 			{
-				active = YES;
+				active = NO;
 				name = NSZombieEnabled;
 				value = YES;
 			},
 			{
-				active = YES;
+				active = NO;
 				name = XCInjectBundleInto;
 				value = &quot;asi-http-request.app/Contents/MacOS/asi-http-request&quot;;
 			},
 			{
-				active = YES;
+				active = NO;
 				name = XCInjectBundle;
 				value = Tests.octest;
 			},
 			{
-				active = YES;
+				active = NO;
 				name = DYLD_FALLBACK_FRAMEWORK_PATH;
 				value = &quot;$(DEVELOPER_LIBRARY_DIR)/Frameworks&quot;;
 			},
 			{
-				active = YES;
+				active = NO;
 				name = DYLD_INSERT_LIBRARIES;
 				value = &quot;$(DEVELOPER_LIBRARY_DIR)/PrivateFrameworks/DevToolsBundleInjection.framework/DevToolsBundleInjection&quot;;
 			},
@@ -2208,30 +2986,30 @@
 	};
 	B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */ = {
 		uiCtxt = {
-			sepNavIntBoundsRect = &quot;{{0, 0}, {1680, 10542}}&quot;;
-			sepNavSelRange = &quot;{13097, 0}&quot;;
-			sepNavVisRange = &quot;{11882, 1825}&quot;;
+			sepNavIntBoundsRect = &quot;{{0, 0}, {947, 10752}}&quot;;
+			sepNavSelRange = &quot;{11872, 0}&quot;;
+			sepNavVisRange = &quot;{11652, 1675}&quot;;
 			sepNavWindowFrame = &quot;{{500, 55}, {1475, 874}}&quot;;
 		};
 	};
 	B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */ = {
 		uiCtxt = {
-			sepNavIntBoundsRect = &quot;{{0, 0}, {1098, 3262}}&quot;;
-			sepNavSelRange = &quot;{8229, 0}&quot;;
-			sepNavVisRange = &quot;{6468, 1769}&quot;;
+			sepNavIntBoundsRect = &quot;{{0, 0}, {1416, 3276}}&quot;;
+			sepNavSelRange = &quot;{2879, 0}&quot;;
+			sepNavVisRange = &quot;{2838, 1511}&quot;;
 			sepNavWindowFrame = &quot;{{19, 304}, {1475, 874}}&quot;;
 		};
 	};
 	B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */ = {
 		uiCtxt = {
-			sepNavIntBoundsRect = &quot;{{0, 0}, {947, 647}}&quot;;
+			sepNavIntBoundsRect = &quot;{{0, 0}, {947, 624}}&quot;;
 			sepNavSelRange = &quot;{356, 0}&quot;;
 			sepNavVisRange = &quot;{0, 356}&quot;;
 		};
 	};
 	B5ABC80D0E24CB100072F422 /* AppDelegate.h */ = {
 		uiCtxt = {
-			sepNavIntBoundsRect = &quot;{{0, 0}, {1073, 647}}&quot;;
+			sepNavIntBoundsRect = &quot;{{0, 0}, {1416, 723}}&quot;;
 			sepNavSelRange = &quot;{42, 0}&quot;;
 			sepNavVisRange = &quot;{0, 1083}&quot;;
 			sepNavWindowFrame = &quot;{{15, -1}, {1475, 874}}&quot;;
@@ -2239,9 +3017,9 @@
 	};
 	B5ABC80E0E24CB100072F422 /* AppDelegate.m */ = {
 		uiCtxt = {
-			sepNavIntBoundsRect = &quot;{{0, 0}, {1073, 2562}}&quot;;
+			sepNavIntBoundsRect = &quot;{{0, 0}, {1032, 2716}}&quot;;
 			sepNavSelRange = &quot;{663, 96}&quot;;
-			sepNavVisRange = &quot;{0, 1170}&quot;;
+			sepNavVisRange = &quot;{0, 1038}&quot;;
 			sepNavWindowFrame = &quot;{{84, 60}, {1475, 1050}}&quot;;
 		};
 	};</diff>
      <filename>asi-http-request.xcodeproj/ben.pbxuser</filename>
    </modified>
    <modified>
      <diff>@@ -334,7 +334,7 @@
 				);
 				PREBINDING = NO;
 				PRODUCT_NAME = Tests;
-				TEST_HOST = &quot;asi-http-request.app/Contents/MacOS/asi-http-request&quot;;
+				TEST_HOST = &quot;&quot;;
 				WRAPPER_EXTENSION = octest;
 			};
 			name = Debug;
@@ -361,7 +361,7 @@
 				);
 				PREBINDING = NO;
 				PRODUCT_NAME = Tests;
-				TEST_HOST = &quot;asi-http-request.app/Contents/MacOS/asi-http-request&quot;;
+				TEST_HOST = &quot;&quot;;
 				WRAPPER_EXTENSION = octest;
 				ZERO_LINK = NO;
 			};</diff>
      <filename>asi-http-request.xcodeproj/project.pbxproj</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>fe503b023b3963386c0f3e4f4a261a0f50887f45</id>
    </parent>
  </parents>
  <author>
    <name>Ben Copsey</name>
    <email>ben@allseeeing-i.com</email>
  </author>
  <url>http://github.com/pokeb/asi-http-request/commit/241dbad42efe5ef3dc0cf68546f43c3be27cda5e</url>
  <id>241dbad42efe5ef3dc0cf68546f43c3be27cda5e</id>
  <committed-date>2008-08-01T06:21:16-07:00</committed-date>
  <authored-date>2008-08-01T06:21:16-07:00</authored-date>
  <message>Added operation queue tests</message>
  <tree>bf319aa23287f41d6f157f59c8c375353b9e328e</tree>
  <committer>
    <name>Ben Copsey</name>
    <email>ben@allseeeing-i.com</email>
  </committer>
</commit>
