diff --git a/CMakeLists.txt b/CMakeLists.txt
index e982372241a3ecd338a52e5afd659dced4dc91a3..f84faf2be82926f4111b8b24f52e4c9f969ff6c3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -241,8 +241,30 @@ add_executable(ISRMultiWordORTest
         indexer/Corpus.cpp
         indexer/Chunk.cpp
         util/stringProcessing.cpp
-        util/Stemmer.cpp )
+        util/Stemmer.cpp
 
+        )
+add_executable(NestedAnd
+        constraintSolver/tests/nestedAnd.cpp
+        util/util.cpp
+        constraintSolver/ISR.cpp
+        constraintSolver/ISRWord.cpp
+        constraintSolver/ISRContainer.cpp
+        constraintSolver/ISRAnd.cpp
+        constraintSolver/ISROr.cpp
+
+        constraintSolver/ISREndDoc.cpp
+        util/DataStructureLib/tuple.cpp
+        indexer/Corpus.cpp
+        indexer/Chunk.cpp
+        util/stringProcessing.cpp
+        util/Stemmer.cpp
+        query/queryLanguage/QueryParser.cpp
+        query/Ranker/Ranker.cpp
+        query/Ranker/Scorer.cpp
+        query/Ranker/Site.cpp
+
+        )
 
 
 add_executable(DataStructures-Vector-tests
@@ -369,6 +391,9 @@ add_executable(ISRAndTwitterIntegrityTest
         indexer/Chunk.cpp
         constraintSolver/tests/ISRAndTwitterIntegrityTest.cpp)
 
+add_executable(devtool-SumSpaceNumbers
+        devtools/SumSpaceNumbers.cpp)
+
 find_package(OpenSSL REQUIRED)
 
 target_link_libraries(TryPopTest OpenSSL::SSL)
diff --git a/ISRAnd-tests b/ISRAnd-tests
index 16dacda958f3fb65b033804db262561e703ee24d..c9599fb4d135257716b5f4ae27fe870927764f97 100755
Binary files a/ISRAnd-tests and b/ISRAnd-tests differ
diff --git a/ISRAndTwitterIntegrityTest b/ISRAndTwitterIntegrityTest
index 217e9dd3710c7d88657cd5d989e4ab1c5f09dd44..283c5bade19b55934686846375fc68836ab036be 100755
Binary files a/ISRAndTwitterIntegrityTest and b/ISRAndTwitterIntegrityTest differ
diff --git a/Indexer-twitter-tests b/Indexer-twitter-tests
index 9ff519453ad7269e245118396377b7739cefefda..f49460fec08f12555bd4a2052cbcb35cf1b358d4 100755
Binary files a/Indexer-twitter-tests and b/Indexer-twitter-tests differ
diff --git a/NestedAnd b/NestedAnd
new file mode 100755
index 0000000000000000000000000000000000000000..ebe2c3ae85d40a1264dd492b3d8560e2297c1ee6
Binary files /dev/null and b/NestedAnd differ
diff --git a/constraintSolver/ISRAnd.cpp b/constraintSolver/ISRAnd.cpp
index c5f21fa76c17eb6b2249e8482be4aa4fa3767805..f7ef30cec57436adbf30f55380c6c42e27f5c5b6 100644
--- a/constraintSolver/ISRAnd.cpp
+++ b/constraintSolver/ISRAnd.cpp
@@ -113,7 +113,7 @@ Location ISRAnd::Seek( Location target )
 ISREndDoc *ISRAnd::GetEndDocument()
 	{
 	//What does currentLocation hold?  When is it updated?
-	return furthestTerm->DocumentEnd;
+	return furthestTerm->GetEndDocument();
 	}
 
 
diff --git a/constraintSolver/ISRContainer.cpp b/constraintSolver/ISRContainer.cpp
index 27846e7c709de178c2aa086d924e4163765396e1..987adc42f0f0503f6a606733d98d5fada46c5cae 100644
--- a/constraintSolver/ISRContainer.cpp
+++ b/constraintSolver/ISRContainer.cpp
@@ -9,6 +9,8 @@ ISRContainer::ISRContainer( Tuple * top )  : root( top )
 	{
 
 	compile( );
+
+
 	}
 
 
@@ -53,10 +55,10 @@ string ISRContainer::Solve( )
 	while(Contained->GetCurrentLocation() != MAX_Location)
 		{
 		auto url = Contained->GetEndDocument()->getCurrentDoc().url;
-		//cout << url << endl;
+		cout << url << endl;
 		results += url + ",";
 		Location BeginningfDocument = Contained->GetISRToBeginningOfDocument( );
-		PassToRanker( BeginningfDocument );
+		//PassToRanker( BeginningfDocument );
 
 		//PassToRanker( BeginningfDocument );
 		Contained->NextDocument( );
@@ -64,7 +66,7 @@ string ISRContainer::Solve( )
 		}
 
 	cout << "RANKER" << endl;
-	ranker.printRankedSites( );
+	//ranker.printRankedSites( );
 	return results;
 
 
diff --git a/constraintSolver/ISROr.cpp b/constraintSolver/ISROr.cpp
index 983f94617d41d2babd90fc4fcce6c4c16173df59..716b6cd15ad982ac57c0a439b5ab8a42fbabcc4c 100644
--- a/constraintSolver/ISROr.cpp
+++ b/constraintSolver/ISROr.cpp
@@ -73,7 +73,7 @@ Location ISROr::Seek( Location target )
 ISREndDoc *ISROr::GetEndDocument()
 	{
 	//What does currentLocation hold?  When is it updated?
-	return nearestTerm->DocumentEnd;
+	return nearestTerm->GetEndDocument();
 	}
 
 
diff --git a/constraintSolver/index-test-files/twitter/0-wordseek.txt b/constraintSolver/index-test-files/twitter/0-wordseek.txt
index bdc9be9e94dade23b3a3dcb8d734dcb95864f9a2..74f1673691e670684594dd0542cc1fd81a963ac0 100755
Binary files a/constraintSolver/index-test-files/twitter/0-wordseek.txt and b/constraintSolver/index-test-files/twitter/0-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/1-wordseek.txt b/constraintSolver/index-test-files/twitter/1-wordseek.txt
index f2c8d15d55a7ab9a61e2aec03e58c8ea42db8ef4..b9bb22b56c85a6f96c67b5487630a8c8f761ec84 100755
Binary files a/constraintSolver/index-test-files/twitter/1-wordseek.txt and b/constraintSolver/index-test-files/twitter/1-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/10-wordseek.txt b/constraintSolver/index-test-files/twitter/10-wordseek.txt
index aef06ba5cc12ef4740604e8e582a6ce198fa1ae8..49d8ed0d5bc8494b49c6ed6209dbe1080a740450 100755
Binary files a/constraintSolver/index-test-files/twitter/10-wordseek.txt and b/constraintSolver/index-test-files/twitter/10-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/11-wordseek.txt b/constraintSolver/index-test-files/twitter/11-wordseek.txt
index 7ed1ca6c0aae4c547f8e882578ef8518703834ab..098274f74d839d2d807a42053f3963318a6c71be 100755
Binary files a/constraintSolver/index-test-files/twitter/11-wordseek.txt and b/constraintSolver/index-test-files/twitter/11-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/12-wordseek.txt b/constraintSolver/index-test-files/twitter/12-wordseek.txt
index f0a23db0bf6a804ef065094a2e4e0c29bc4a6668..6099d1b887b3d6d8ecf2d36f2a3fb54d2d1ad8c5 100755
Binary files a/constraintSolver/index-test-files/twitter/12-wordseek.txt and b/constraintSolver/index-test-files/twitter/12-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/13-wordseek.txt b/constraintSolver/index-test-files/twitter/13-wordseek.txt
index f652453d452d1a57db1c0958193812ba9aae757b..348bff95217f7a79eec3ddd7282683a436320dc2 100755
Binary files a/constraintSolver/index-test-files/twitter/13-wordseek.txt and b/constraintSolver/index-test-files/twitter/13-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/14-wordseek.txt b/constraintSolver/index-test-files/twitter/14-wordseek.txt
index 5350bdc1c8e88b2e4db1ccf682eab571e49d86e0..2ce92aef9ab1f7b9d6df58cbe047885a8025c851 100755
Binary files a/constraintSolver/index-test-files/twitter/14-wordseek.txt and b/constraintSolver/index-test-files/twitter/14-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/15-wordseek.txt b/constraintSolver/index-test-files/twitter/15-wordseek.txt
index 48f9ab409b4b48b30187fd4dfd31717c846083e3..45e405b35fb48a6f7aeb7d081c4ce447a20d0d6d 100755
Binary files a/constraintSolver/index-test-files/twitter/15-wordseek.txt and b/constraintSolver/index-test-files/twitter/15-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/16-wordseek.txt b/constraintSolver/index-test-files/twitter/16-wordseek.txt
index 1845e525c08b7a39bc9ac966582bb458dc0b714d..17fbb8c0aab5480847469c0496f4060d47ce0fdf 100755
Binary files a/constraintSolver/index-test-files/twitter/16-wordseek.txt and b/constraintSolver/index-test-files/twitter/16-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/17-wordseek.txt b/constraintSolver/index-test-files/twitter/17-wordseek.txt
index b69a5e453c0ebf8ad8efdc0b2df5f5b47f8cac00..55c07d8410cb1b77e9a81e62d36fb0cff898db13 100755
Binary files a/constraintSolver/index-test-files/twitter/17-wordseek.txt and b/constraintSolver/index-test-files/twitter/17-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/18-wordseek.txt b/constraintSolver/index-test-files/twitter/18-wordseek.txt
index 2dbc1829856f3001d56c7b785c49f0e1e0052499..655da2b5954d08cdab4e9fef6b825623eff13438 100755
Binary files a/constraintSolver/index-test-files/twitter/18-wordseek.txt and b/constraintSolver/index-test-files/twitter/18-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/19-wordseek.txt b/constraintSolver/index-test-files/twitter/19-wordseek.txt
index 26764d88d3688d659367df2f07f00e9c1572095f..a97345cbfbf3722a86ea2eeda6bee801be1bc587 100755
Binary files a/constraintSolver/index-test-files/twitter/19-wordseek.txt and b/constraintSolver/index-test-files/twitter/19-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/2-wordseek.txt b/constraintSolver/index-test-files/twitter/2-wordseek.txt
index e567e35eb2823c692819edef62d95699dd3bf566..47e74828a8c4e5216e8ca0ddc6a164d1f99ea5a7 100755
Binary files a/constraintSolver/index-test-files/twitter/2-wordseek.txt and b/constraintSolver/index-test-files/twitter/2-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/20-wordseek.txt b/constraintSolver/index-test-files/twitter/20-wordseek.txt
index 10578bf4cd43a0cb637f1502e48a5a26ef3da153..947b6557968054baf2fb8bcd54d447cc08d46c82 100755
Binary files a/constraintSolver/index-test-files/twitter/20-wordseek.txt and b/constraintSolver/index-test-files/twitter/20-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/21-wordseek.txt b/constraintSolver/index-test-files/twitter/21-wordseek.txt
index 8e5c89d186fa7892a05d638823acde57b305b68a..5a011b595d7eb41d55e3de4a87a9bcbadf630687 100755
Binary files a/constraintSolver/index-test-files/twitter/21-wordseek.txt and b/constraintSolver/index-test-files/twitter/21-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/22-wordseek.txt b/constraintSolver/index-test-files/twitter/22-wordseek.txt
index c2e6e8c72e1dbe688d077bf6bc2b5c5193033fcf..56ff8356efe6e4261c495fc6a1d51e1f956b932f 100755
Binary files a/constraintSolver/index-test-files/twitter/22-wordseek.txt and b/constraintSolver/index-test-files/twitter/22-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/23-wordseek.txt b/constraintSolver/index-test-files/twitter/23-wordseek.txt
index 4caa3103575d50e9054c6b97dc6ed5c7d9f16ecd..2ee41bc6e13104ee3df0b61cde863badf61848d6 100755
Binary files a/constraintSolver/index-test-files/twitter/23-wordseek.txt and b/constraintSolver/index-test-files/twitter/23-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/24-wordseek.txt b/constraintSolver/index-test-files/twitter/24-wordseek.txt
index a7c01b5179dafda1884b2a96b0e075393d4a6361..840daf9c03fd729f44a4dae2576c5c698359b0d1 100755
Binary files a/constraintSolver/index-test-files/twitter/24-wordseek.txt and b/constraintSolver/index-test-files/twitter/24-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/25-wordseek.txt b/constraintSolver/index-test-files/twitter/25-wordseek.txt
index 572a80c1e4c9c1dd48c36ef1d8049d4b5ba54c5d..9f712e783ac5756072e0a88e4b41098b88b18717 100755
Binary files a/constraintSolver/index-test-files/twitter/25-wordseek.txt and b/constraintSolver/index-test-files/twitter/25-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/26-wordseek.txt b/constraintSolver/index-test-files/twitter/26-wordseek.txt
index 0a91ec1fc49298d4112b262c093a25cd18d2f418..aea291565a908cd5611f18e0dcd499afc4fa6637 100755
Binary files a/constraintSolver/index-test-files/twitter/26-wordseek.txt and b/constraintSolver/index-test-files/twitter/26-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/27-wordseek.txt b/constraintSolver/index-test-files/twitter/27-wordseek.txt
index c12cdfd4e402a79cdce3d8cf9d038d01f95097ec..b5aa9235b1a2e2c366e1ae4b6877bd204dcec36f 100755
Binary files a/constraintSolver/index-test-files/twitter/27-wordseek.txt and b/constraintSolver/index-test-files/twitter/27-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/28-wordseek.txt b/constraintSolver/index-test-files/twitter/28-wordseek.txt
index 9bd8fe6b2b9bd6d3b8f33a3ffcc155ed4c7d60b8..be55c254d2441a293fafbc21be356539714afa7c 100755
Binary files a/constraintSolver/index-test-files/twitter/28-wordseek.txt and b/constraintSolver/index-test-files/twitter/28-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/29-wordseek.txt b/constraintSolver/index-test-files/twitter/29-wordseek.txt
index d1c6882333d6f2f191f338f7d7ffec0d865592e5..9190a40553913558aaa7e9b8f5910718ae0af4f3 100755
Binary files a/constraintSolver/index-test-files/twitter/29-wordseek.txt and b/constraintSolver/index-test-files/twitter/29-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/3-wordseek.txt b/constraintSolver/index-test-files/twitter/3-wordseek.txt
index b7873bc9621c9e744a06e65a57e79ed12a277096..20cf3908b773a42a583c419514f732c98450afac 100755
Binary files a/constraintSolver/index-test-files/twitter/3-wordseek.txt and b/constraintSolver/index-test-files/twitter/3-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/30-wordseek.txt b/constraintSolver/index-test-files/twitter/30-wordseek.txt
index 9e2528c7aee3bd636046caff2518a62ff06fb10f..6b33ccc7c89cd4601a0a9fec42fb391527485faf 100755
Binary files a/constraintSolver/index-test-files/twitter/30-wordseek.txt and b/constraintSolver/index-test-files/twitter/30-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/31-wordseek.txt b/constraintSolver/index-test-files/twitter/31-wordseek.txt
index 508b3a28603751aa075c3866f9677610713a6087..2266ea02bc2921ad2398c918e95d7008d64514fe 100755
Binary files a/constraintSolver/index-test-files/twitter/31-wordseek.txt and b/constraintSolver/index-test-files/twitter/31-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/32-wordseek.txt b/constraintSolver/index-test-files/twitter/32-wordseek.txt
index aa92a69a66623106485c5b010f77d633b4cc8ab0..3a690f79e144b7593b8992f8fbaedf5315035eab 100755
Binary files a/constraintSolver/index-test-files/twitter/32-wordseek.txt and b/constraintSolver/index-test-files/twitter/32-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/33-wordseek.txt b/constraintSolver/index-test-files/twitter/33-wordseek.txt
index a571af1d56b9dd79fe5fdc84124beaaa075a40fe..87b826ac7c4a4454977cb9c7ae7980e2738ab1de 100755
Binary files a/constraintSolver/index-test-files/twitter/33-wordseek.txt and b/constraintSolver/index-test-files/twitter/33-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/34-wordseek.txt b/constraintSolver/index-test-files/twitter/34-wordseek.txt
index 4b9c012909b72db57682295db0319b0f8ede1e9b..f5d245ddbe8511f9edd55ddc1395007f5c1c5fb5 100755
Binary files a/constraintSolver/index-test-files/twitter/34-wordseek.txt and b/constraintSolver/index-test-files/twitter/34-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/35-wordseek.txt b/constraintSolver/index-test-files/twitter/35-wordseek.txt
index 0adf66c40bdee6333fecfabcfca4de6532fecfc0..5dbcb1d1c0d2246358c1a9f7329b8be556674ad3 100755
Binary files a/constraintSolver/index-test-files/twitter/35-wordseek.txt and b/constraintSolver/index-test-files/twitter/35-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/36-wordseek.txt b/constraintSolver/index-test-files/twitter/36-wordseek.txt
index 774e99fe239907bbc76a30ad7638d946274182ee..b971675926aef2ac9f5a5fc2b27798376ea7e1e7 100755
Binary files a/constraintSolver/index-test-files/twitter/36-wordseek.txt and b/constraintSolver/index-test-files/twitter/36-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/37-wordseek.txt b/constraintSolver/index-test-files/twitter/37-wordseek.txt
index 7e306233a1650d98f11f4cfca4b7c129aca97adb..aa517645bac5c8ed0ab06c1cf958998a4166fd0f 100755
Binary files a/constraintSolver/index-test-files/twitter/37-wordseek.txt and b/constraintSolver/index-test-files/twitter/37-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/38-wordseek.txt b/constraintSolver/index-test-files/twitter/38-wordseek.txt
index fbe239b43a5aea31dad8d5a123b1c710c574b9ce..73c2c9d59bcbc80354680e223b31879941d247b8 100755
Binary files a/constraintSolver/index-test-files/twitter/38-wordseek.txt and b/constraintSolver/index-test-files/twitter/38-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/39-wordseek.txt b/constraintSolver/index-test-files/twitter/39-wordseek.txt
index ce84b9b2e8006817403075b1c29ee0f7333a13b9..cff6d85ccb3db1458ac118aaf411126d77d2c5d5 100755
Binary files a/constraintSolver/index-test-files/twitter/39-wordseek.txt and b/constraintSolver/index-test-files/twitter/39-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/4-wordseek.txt b/constraintSolver/index-test-files/twitter/4-wordseek.txt
index d1e2f171c786b198516e99a96f024ce54cb89255..74148c860cbee26096e206fabf507126d1182fae 100755
Binary files a/constraintSolver/index-test-files/twitter/4-wordseek.txt and b/constraintSolver/index-test-files/twitter/4-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/40-wordseek.txt b/constraintSolver/index-test-files/twitter/40-wordseek.txt
index bdd0d077d2f878baf66610bbd7b76febc782c588..daaa841c86dd029b10e853e4f388e6555183624f 100755
Binary files a/constraintSolver/index-test-files/twitter/40-wordseek.txt and b/constraintSolver/index-test-files/twitter/40-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/41-wordseek.txt b/constraintSolver/index-test-files/twitter/41-wordseek.txt
index 1943b95a0497cc4e5dd146b9f90140c5f0dc4708..4aaf6b471e3944bd4384df8acadf9e865d7b7827 100755
Binary files a/constraintSolver/index-test-files/twitter/41-wordseek.txt and b/constraintSolver/index-test-files/twitter/41-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/42-wordseek.txt b/constraintSolver/index-test-files/twitter/42-wordseek.txt
index 979b8ee246993129def98ad850684d66b9cfb245..9a71cbf8799629ef94781b5ed3f84f2e09a3117b 100755
Binary files a/constraintSolver/index-test-files/twitter/42-wordseek.txt and b/constraintSolver/index-test-files/twitter/42-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/43-wordseek.txt b/constraintSolver/index-test-files/twitter/43-wordseek.txt
index 67860d62f3969d3949fa02c316572caf97d18a1f..9c9ee0430332d106407db04b816e3b6dfcdbeaee 100755
Binary files a/constraintSolver/index-test-files/twitter/43-wordseek.txt and b/constraintSolver/index-test-files/twitter/43-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/44-wordseek.txt b/constraintSolver/index-test-files/twitter/44-wordseek.txt
index 753bdd7f88928d6ca31a83a2514be66af5c35bd2..fae98b9297a2819db2f75ee97875ac001989fd51 100755
Binary files a/constraintSolver/index-test-files/twitter/44-wordseek.txt and b/constraintSolver/index-test-files/twitter/44-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/5-wordseek.txt b/constraintSolver/index-test-files/twitter/5-wordseek.txt
index 9bbe1426b9643e133896a7684acc2f9c61584a63..44795e0a6a8182c99c07e137fbb524b0c59758a2 100755
Binary files a/constraintSolver/index-test-files/twitter/5-wordseek.txt and b/constraintSolver/index-test-files/twitter/5-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/6-wordseek.txt b/constraintSolver/index-test-files/twitter/6-wordseek.txt
index 737dad5f9b317f41b460af2ac7ab207de7e882ea..5caf7c10212c705aab725f44cc3a6ddd8bfb9761 100755
Binary files a/constraintSolver/index-test-files/twitter/6-wordseek.txt and b/constraintSolver/index-test-files/twitter/6-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/7-wordseek.txt b/constraintSolver/index-test-files/twitter/7-wordseek.txt
index dbc18d63aa405e11b9dcd75aaffaa38c6d92ad0b..c5a3c1963b62330e35a0e4f16a1e8b9910e9851d 100755
Binary files a/constraintSolver/index-test-files/twitter/7-wordseek.txt and b/constraintSolver/index-test-files/twitter/7-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/8-wordseek.txt b/constraintSolver/index-test-files/twitter/8-wordseek.txt
index 546e5ba05a3b14a3574a131de961041f1416b782..567ead4006ee1f3fed965009182732f5fe173c1b 100755
Binary files a/constraintSolver/index-test-files/twitter/8-wordseek.txt and b/constraintSolver/index-test-files/twitter/8-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/9-wordseek.txt b/constraintSolver/index-test-files/twitter/9-wordseek.txt
index 05ecec2b6f7f7ddef1cb23668320f135d783f809..7d8b5500886010ba7e3e0e58d07605f1aebf9831 100755
Binary files a/constraintSolver/index-test-files/twitter/9-wordseek.txt and b/constraintSolver/index-test-files/twitter/9-wordseek.txt differ
diff --git a/constraintSolver/index-test-files/twitter/integrity.txt b/constraintSolver/index-test-files/twitter/integrity.txt
index 7491de1039e2bf85dca043bb78c4933dddb42070..3ba1d1d461ba6f02d0428de5111647e7386d6361 100644
--- a/constraintSolver/index-test-files/twitter/integrity.txt
+++ b/constraintSolver/index-test-files/twitter/integrity.txt
@@ -1,891 +1,891 @@
-PASSED FOR LINE: I would be mad af if someone burned my Concords http://t.co/dlU20a1G in 1.8e-05 seconds!!!
-PASSED FOR LINE: Jajaja xD in 9e-06 seconds!!!
-PASSED FOR LINE: Battery for Lenovo/IBM Thinkpad T500 2087 Notebook: 9 Cells, 7.2Ah Battery for Lenovo/IBM Thinkpad T500 2087 Notebook http://t.co/nopFvIFo in 9e-06 seconds!!!
-PASSED FOR LINE: now facts about Jung Yunho ^^ http://t.co/Q5Om9KDn in 8e-06 seconds!!!
-PASSED FOR LINE: Saté maken with schoonzoess ♥ ! in 9e-06 seconds!!!
-PASSED FOR LINE: Im jealousss of tre right nowww 😒 lol in 9e-06 seconds!!!
-PASSED FOR LINE: @BR33ZYREALFAN follow back fam? #Breezylove in 7e-06 seconds!!!
-PASSED FOR LINE: Haha ik slaap echt vroeg tegenwoordig. Eergister 10uur gister half11 en ik ben nu al moe.. in 2.9e-05 seconds!!!
-PASSED FOR LINE: eu gostaria de falar uma única vez com você novamente,só isso e mais nada in 7e-06 seconds!!!
-PASSED FOR LINE: Gente que se hace la víctima #penaajena in 9e-06 seconds!!!
-PASSED FOR LINE: “@MrLeandroGucci: @bc_flow sabado Diamonds no?” ta mi lejos jajaj in 9e-06 seconds!!!
-PASSED FOR LINE: where  mi  lov at in 8e-06 seconds!!!
-PASSED FOR LINE: #ICantGoADayWithout cussing someone out #smh in 8e-06 seconds!!!
-PASSED FOR LINE: Toshiba Pa3593u-1Bas Notebook / Laptop/Notebook Battery - 5200Mah (Replacement): Toshiba Pa3593u-1Bas Notebook /... http://t.co/lSxX8G3e in 3.2e-05 seconds!!!
-PASSED FOR LINE: querendo me bulina o @rafaelmenezes2 ! in 9e-06 seconds!!!
-PASSED FOR LINE: RT @JustinSecretos: si tienes calor.... Vamos a la playaa ooooh (8) y yo invito al bieber y le ponemos una sungas que le lleguen al cuel ... in 4.6e-05 seconds!!!
-PASSED FOR LINE: @slimSEXYpaaid @MikeThaMan Follow @AvLMKR he got the west goin up Download http://t.co/NmVnc6PN OR http://t.co/FToAMGWd &lt;-4 YOUR PHONE in 7e-06 seconds!!!
+PASSED FOR LINE: I would be mad af if someone burned my Concords http://t.co/dlU20a1G in 1e-05 seconds!!!
+PASSED FOR LINE: Jajaja xD in 4e-06 seconds!!!
+PASSED FOR LINE: Battery for Lenovo/IBM Thinkpad T500 2087 Notebook: 9 Cells, 7.2Ah Battery for Lenovo/IBM Thinkpad T500 2087 Notebook http://t.co/nopFvIFo in 5e-06 seconds!!!
+PASSED FOR LINE: now facts about Jung Yunho ^^ http://t.co/Q5Om9KDn in 4e-06 seconds!!!
+PASSED FOR LINE: Saté maken with schoonzoess ♥ ! in 4e-06 seconds!!!
+PASSED FOR LINE: Im jealousss of tre right nowww 😒 lol in 5e-06 seconds!!!
+PASSED FOR LINE: @BR33ZYREALFAN follow back fam? #Breezylove in 5e-06 seconds!!!
+PASSED FOR LINE: Haha ik slaap echt vroeg tegenwoordig. Eergister 10uur gister half11 en ik ben nu al moe.. in 5e-06 seconds!!!
+PASSED FOR LINE: eu gostaria de falar uma única vez com você novamente,só isso e mais nada in 1e-05 seconds!!!
+PASSED FOR LINE: Gente que se hace la víctima #penaajena in 6e-06 seconds!!!
+PASSED FOR LINE: “@MrLeandroGucci: @bc_flow sabado Diamonds no?” ta mi lejos jajaj in 8e-06 seconds!!!
+PASSED FOR LINE: where  mi  lov at in 6e-06 seconds!!!
+PASSED FOR LINE: #ICantGoADayWithout cussing someone out #smh in 4e-06 seconds!!!
+PASSED FOR LINE: Toshiba Pa3593u-1Bas Notebook / Laptop/Notebook Battery - 5200Mah (Replacement): Toshiba Pa3593u-1Bas Notebook /... http://t.co/lSxX8G3e in 8e-06 seconds!!!
+PASSED FOR LINE: querendo me bulina o @rafaelmenezes2 ! in 6e-06 seconds!!!
+PASSED FOR LINE: RT @JustinSecretos: si tienes calor.... Vamos a la playaa ooooh (8) y yo invito al bieber y le ponemos una sungas que le lleguen al cuel ... in 2.8e-05 seconds!!!
+PASSED FOR LINE: @slimSEXYpaaid @MikeThaMan Follow @AvLMKR he got the west goin up Download http://t.co/NmVnc6PN OR http://t.co/FToAMGWd &lt;-4 YOUR PHONE in 8e-06 seconds!!!
 PASSED FOR LINE: @Tarig_91 @jooody_s @twitpic @imoo7sen 
 ولا وااحد سرق منهم :/ 
 ومرتفع ظغطهم بعد 
- in 6e-06 seconds!!!
-PASSED FOR LINE: @fairwarning101 @pookietookie01 come back here dude i don't mind an audience (may need some help too she's a handful!) :-P in 1.2e-05 seconds!!!
-PASSED FOR LINE: @DanniiMinogue hope u and the family had a lovely xmas in oz. I'm a poorly girly :/ I've had a cold for over a week now :/ a tweet/follow in 1.1e-05 seconds!!!
-PASSED FOR LINE: Voy a ver que tal esta #marco. Que recuerdos, es como volver a tener 5 años!! in 3.2e-05 seconds!!!
-PASSED FOR LINE: RT @bitchUrNotME: #Retweet - iF You 14 ,15 ,16 ,17 ,18 ,19 ,20 Or' Older ♥ :) in 7e-06 seconds!!!
-PASSED FOR LINE: RT @KENNY_KRAY_BAE: I fucking love my uncle for giving me this big ass thing of chocolates in 3.6e-05 seconds!!!
-PASSED FOR LINE: RT @LexLugo: #NYE2012 @ @DreamMiamiFL w/ @BIRDMAN5STAR YMCMB & @TerrenceJ Presented by @EliteSocietyLGI http://t.co/T8VzCcl2 RT in 8e-06 seconds!!!
-PASSED FOR LINE: RT @TienersForLife: "Geen iPod in de les!" Ja.. alsof Eminem de antwoorden gaat rappen. #TienersForLife in 1.1e-05 seconds!!!
-PASSED FOR LINE: @Tike_Lirou simmm :3 in 3.2e-05 seconds!!!
-PASSED FOR LINE: acho que se é pra falar de miim, namoral coloca o meu NOME (y).. falo msm de orkut o tt é meu escreve oque eu bem qser ((: in 1e-05 seconds!!!
-PASSED FOR LINE: Photo: vigorton2: http://t.co/PbyXqryn in 9e-06 seconds!!!
-PASSED FOR LINE: RioVagas: VENDEDORA CALÇADOS http://t.co/WrKjSSvF in 1.9e-05 seconds!!!
-PASSED FOR LINE: @callumlarr drinking beer, watching football. How many more man points do I get? in 8e-06 seconds!!!
-PASSED FOR LINE: @StephanieHarps http://t.co/f6FEn5TP in 6e-06 seconds!!!
-PASSED FOR LINE: 5 hari 19 jam 59 menit lagi hari Senin. Sekarang Selasa, deadline pasti menggila :) #lovelymonday in 9e-06 seconds!!!
-PASSED FOR LINE: (`゚д゚ )Some say when he slows down, brake lights come on in his buttocks... #TopGear in 8e-06 seconds!!!
-PASSED FOR LINE: Mudei o avatar ! in 9e-06 seconds!!!
+ in 4e-06 seconds!!!
+PASSED FOR LINE: @fairwarning101 @pookietookie01 come back here dude i don't mind an audience (may need some help too she's a handful!) :-P in 9e-06 seconds!!!
+PASSED FOR LINE: @DanniiMinogue hope u and the family had a lovely xmas in oz. I'm a poorly girly :/ I've had a cold for over a week now :/ a tweet/follow in 6e-06 seconds!!!
+PASSED FOR LINE: Voy a ver que tal esta #marco. Que recuerdos, es como volver a tener 5 años!! in 8e-06 seconds!!!
+PASSED FOR LINE: RT @bitchUrNotME: #Retweet - iF You 14 ,15 ,16 ,17 ,18 ,19 ,20 Or' Older ♥ :) in 9e-06 seconds!!!
+PASSED FOR LINE: RT @KENNY_KRAY_BAE: I fucking love my uncle for giving me this big ass thing of chocolates in 9e-06 seconds!!!
+PASSED FOR LINE: RT @LexLugo: #NYE2012 @ @DreamMiamiFL w/ @BIRDMAN5STAR YMCMB & @TerrenceJ Presented by @EliteSocietyLGI http://t.co/T8VzCcl2 RT in 3.3e-05 seconds!!!
+PASSED FOR LINE: RT @TienersForLife: "Geen iPod in de les!" Ja.. alsof Eminem de antwoorden gaat rappen. #TienersForLife in 3.2e-05 seconds!!!
+PASSED FOR LINE: @Tike_Lirou simmm :3 in 2.8e-05 seconds!!!
+PASSED FOR LINE: acho que se é pra falar de miim, namoral coloca o meu NOME (y).. falo msm de orkut o tt é meu escreve oque eu bem qser ((: in 9e-06 seconds!!!
+PASSED FOR LINE: Photo: vigorton2: http://t.co/PbyXqryn in 6e-06 seconds!!!
+PASSED FOR LINE: RioVagas: VENDEDORA CALÇADOS http://t.co/WrKjSSvF in 1e-05 seconds!!!
+PASSED FOR LINE: @callumlarr drinking beer, watching football. How many more man points do I get? in 1e-05 seconds!!!
+PASSED FOR LINE: @StephanieHarps http://t.co/f6FEn5TP in 1e-05 seconds!!!
+PASSED FOR LINE: 5 hari 19 jam 59 menit lagi hari Senin. Sekarang Selasa, deadline pasti menggila :) #lovelymonday in 1e-05 seconds!!!
+PASSED FOR LINE: (`゚д゚ )Some say when he slows down, brake lights come on in his buttocks... #TopGear in 1e-05 seconds!!!
+PASSED FOR LINE: Mudei o avatar ! in 3.5e-05 seconds!!!
 PASSED FOR LINE: Merry chirstmas! ..... So many kids.... http://t.co/sI9F1Pur in 9e-06 seconds!!!
-PASSED FOR LINE: Aff´s hooooje é o dia de decepções : / in 9e-06 seconds!!!
-PASSED FOR LINE: Haftada iki kez sac boyatmak.. Bu sefer nasıl bı degisiklik yapsam:))) in 9e-06 seconds!!!
-PASSED FOR LINE: Let your motivation come from within. And let what's within be a reflection of HIM. in 7e-06 seconds!!!
-PASSED FOR LINE: Currently 40.8F, 92% humidity, Winds 4 mph. 0.00 inches of rain today. in 7e-06 seconds!!!
+PASSED FOR LINE: Aff´s hooooje é o dia de decepções : / in 3.4e-05 seconds!!!
+PASSED FOR LINE: Haftada iki kez sac boyatmak.. Bu sefer nasıl bı degisiklik yapsam:))) in 1.1e-05 seconds!!!
+PASSED FOR LINE: Let your motivation come from within. And let what's within be a reflection of HIM. in 1e-05 seconds!!!
+PASSED FOR LINE: Currently 40.8F, 92% humidity, Winds 4 mph. 0.00 inches of rain today. in 2.8e-05 seconds!!!
 PASSED FOR LINE: Nunca quise dejar de quererte,pero si dejarte de esperar.                                             #CorazonesDeHelados in 1e-05 seconds!!!
 PASSED FOR LINE: Vereadores de Cachoeiro anulam aumento de salário, no Sul do ES: Salário dos vereadores permanece em R$ 6 mil.
-R... http://t.co/mUykK4jk in 1e-05 seconds!!!
-PASSED FOR LINE: @AlusPL na policję nie ma co - bo to bydle u teścia mieszka ;-] Co do usypiania - teściu coś o tym bąknął ;-P in 8e-06 seconds!!!
-PASSED FOR LINE: RT @NIKEISDENAAMx: Hoe sneu kun je zijn .. in 9e-06 seconds!!!
-PASSED FOR LINE: «@SOoFrEkN_Pretty Damn im still sleepy» in 1e-05 seconds!!!
-PASSED FOR LINE: Now Playing: Michelle Bonilla - In Spite Of Me | Yes Lord Radio - Listen Online: http://t.co/qtIIlPDm @MichelleBonilla in 1e-05 seconds!!!
-PASSED FOR LINE: Quase 2012 e eu ainda sou um fracasso in 1e-05 seconds!!!
-PASSED FOR LINE: @OhShani well I work that morning and hopefully something is going on! :-) in 1e-05 seconds!!!
-PASSED FOR LINE: @niallssmurf MAMMA! in 8e-06 seconds!!!
+R... http://t.co/mUykK4jk in 7e-06 seconds!!!
+PASSED FOR LINE: @AlusPL na policję nie ma co - bo to bydle u teścia mieszka ;-] Co do usypiania - teściu coś o tym bąknął ;-P in 1e-05 seconds!!!
+PASSED FOR LINE: RT @NIKEISDENAAMx: Hoe sneu kun je zijn .. in 5e-06 seconds!!!
+PASSED FOR LINE: «@SOoFrEkN_Pretty Damn im still sleepy» in 5e-06 seconds!!!
+PASSED FOR LINE: Now Playing: Michelle Bonilla - In Spite Of Me | Yes Lord Radio - Listen Online: http://t.co/qtIIlPDm @MichelleBonilla in 7e-06 seconds!!!
+PASSED FOR LINE: Quase 2012 e eu ainda sou um fracasso in 7e-06 seconds!!!
+PASSED FOR LINE: @OhShani well I work that morning and hopefully something is going on! :-) in 9e-06 seconds!!!
+PASSED FOR LINE: @niallssmurf MAMMA! in 9e-06 seconds!!!
 PASSED FOR LINE: تايبيه 101: علامة معمارية مميزة في تايوان | عالم الإبداع http://t.co/IpWykC11 via @addthis in 8e-06 seconds!!!
-PASSED FOR LINE: @Laura6100 moi je la recycle, haha ma tes2ale shou 7asset in 1e-05 seconds!!!
-PASSED FOR LINE: @urfavePSYCHO lol no...I'm with tiff family..they not that type lol in 1e-05 seconds!!!
-PASSED FOR LINE: @Real_Liam_Payne follow mke plea in 9e-06 seconds!!!
-PASSED FOR LINE: #RihannainBrazil2012#RihannainBrazil2012#RihannainBrazil2012 @rihanna @rihanna :D #RihannainBrazil2012 in 1e-05 seconds!!!
+PASSED FOR LINE: @Laura6100 moi je la recycle, haha ma tes2ale shou 7asset in 1.1e-05 seconds!!!
+PASSED FOR LINE: @urfavePSYCHO lol no...I'm with tiff family..they not that type lol in 1.1e-05 seconds!!!
+PASSED FOR LINE: @Real_Liam_Payne follow mke plea in 1e-05 seconds!!!
+PASSED FOR LINE: #RihannainBrazil2012#RihannainBrazil2012#RihannainBrazil2012 @rihanna @rihanna :D #RihannainBrazil2012 in 8e-06 seconds!!!
 PASSED FOR LINE: @Sheepsugar 2 weken met een goede vriendin, lekker relaxen in 6e-06 seconds!!!
-PASSED FOR LINE: we werent sisters by birth but we knew from the start we were born to be sisters!!! in 1e-05 seconds!!!
-PASSED FOR LINE: RT @its_stewie: Those who like me, raise your hand. Those who don't, raise your standards. in 1e-05 seconds!!!
-PASSED FOR LINE: @Coralimonade Oui ! x) in 9e-06 seconds!!!
-PASSED FOR LINE: @AhlamBintOmar @MuathAlWari But wait a minute, now you know him and guess who is to blame? That's right! #blameMuath in 1.1e-05 seconds!!!
-PASSED FOR LINE: RT @ChoraoFrases: Tudo tem seu tempo. in 9e-06 seconds!!!
-PASSED FOR LINE: RT @Pr3tty_Dainty08: «@YoBoyRodMac #Relationship is just a word, it's how u act that actually defines if u are in one» in 8e-06 seconds!!!
-PASSED FOR LINE: RT @MeusFattos: "filho me empresta o celular?" (APAGANDO SMS, LIGAÇÕES, BLOCO DE NOTAS, FOTOS, MUSICAS, ETC) "claro mae" in 1e-05 seconds!!!
-PASSED FOR LINE: Cansei de ficar aqui até mais ! in 1e-05 seconds!!!
+PASSED FOR LINE: we werent sisters by birth but we knew from the start we were born to be sisters!!! in 9e-06 seconds!!!
+PASSED FOR LINE: RT @its_stewie: Those who like me, raise your hand. Those who don't, raise your standards. in 6e-06 seconds!!!
+PASSED FOR LINE: @Coralimonade Oui ! x) in 6e-06 seconds!!!
+PASSED FOR LINE: @AhlamBintOmar @MuathAlWari But wait a minute, now you know him and guess who is to blame? That's right! #blameMuath in 7e-06 seconds!!!
+PASSED FOR LINE: RT @ChoraoFrases: Tudo tem seu tempo. in 7e-06 seconds!!!
+PASSED FOR LINE: RT @Pr3tty_Dainty08: «@YoBoyRodMac #Relationship is just a word, it's how u act that actually defines if u are in one» in 6e-06 seconds!!!
+PASSED FOR LINE: RT @MeusFattos: "filho me empresta o celular?" (APAGANDO SMS, LIGAÇÕES, BLOCO DE NOTAS, FOTOS, MUSICAS, ETC) "claro mae" in 1.1e-05 seconds!!!
+PASSED FOR LINE: Cansei de ficar aqui até mais ! in 1.1e-05 seconds!!!
 PASSED FOR LINE: #FreeBoosie x5 in 9e-06 seconds!!!
-PASSED FOR LINE: http://t.co/gsZdNBCf Schlecht schlafen im Wasserbett? Tipp: Wassermenge an Körperfom und Schlafposition anpassen! in 7e-06 seconds!!!
-PASSED FOR LINE: At hmee boreddd in 1e-05 seconds!!!
-PASSED FOR LINE: 2011年12月27日有料旅行アプリ1位はeCurrency -  Currency Converteです。http://t.co/2XNlTEJB #スマホ #アプリ #モバイル in 9e-06 seconds!!!
-PASSED FOR LINE: On the go.   @ Domestic Terminal http://t.co/SjQbamrx in 8e-06 seconds!!!
-PASSED FOR LINE: #benbenieuwd wanneer ik tijdens het verven eens niet op de deksel van de latex stap met een voet. in 4.2e-05 seconds!!!
+PASSED FOR LINE: http://t.co/gsZdNBCf Schlecht schlafen im Wasserbett? Tipp: Wassermenge an Körperfom und Schlafposition anpassen! in 1e-05 seconds!!!
+PASSED FOR LINE: At hmee boreddd in 1.1e-05 seconds!!!
+PASSED FOR LINE: 2011年12月27日有料旅行アプリ1位はeCurrency -  Currency Converteです。http://t.co/2XNlTEJB #スマホ #アプリ #モバイル in 6e-06 seconds!!!
+PASSED FOR LINE: On the go.   @ Domestic Terminal http://t.co/SjQbamrx in 7e-06 seconds!!!
+PASSED FOR LINE: #benbenieuwd wanneer ik tijdens het verven eens niet op de deksel van de latex stap met een voet. in 7e-06 seconds!!!
 PASSED FOR LINE: @lovaticrocker :O lmfaoooooo. in 9e-06 seconds!!!
-PASSED FOR LINE: Bares ficarão estrategicamente localizados em todo o espaço como ilhas, sem filas, sem perder tempo. in 1e-05 seconds!!!
-PASSED FOR LINE: @userputa ou entao: "não tomo banho desde o ano passado" in 7e-06 seconds!!!
+PASSED FOR LINE: Bares ficarão estrategicamente localizados em todo o espaço como ilhas, sem filas, sem perder tempo. in 6e-06 seconds!!!
+PASSED FOR LINE: @userputa ou entao: "não tomo banho desde o ano passado" in 1e-05 seconds!!!
 PASSED FOR LINE: @Limonggis @javierdarnot Ay pero si es que su avatar es muy ԅ(ˆ⌣ˆԅ) in 7e-06 seconds!!!
-PASSED FOR LINE: 最近チェックされた動画:【1分講座】:「動き」を描く http://t.co/sKglXDrb #sousaku #followmeJP #sougofollow in 9e-06 seconds!!!
-PASSED FOR LINE: RT @TStreetz21: I just wanna be what u never experienced and could never find true love always meet up you never search for it in 2.5e-05 seconds!!!
-PASSED FOR LINE: @ChloeRTaylor Your welcome xx And yes I did too :) in 1.1e-05 seconds!!!
-PASSED FOR LINE: @Drunk_Jessie veio aki em ksa =) in 9e-06 seconds!!!
-PASSED FOR LINE: I unlocked 2 Xbox achievements on Rage! http://t.co/bZjkGxC9 in 1e-05 seconds!!!
-PASSED FOR LINE: RT @schutzdj: o tumblr da rodada! http://t.co/WYXRNfvh in 9e-06 seconds!!!
-PASSED FOR LINE: Estão abertas as inscrições para o sorteio de 4.663 vagas em pontos de táxi. Saiba como participar: http://t.co/L4esIJmX. in 7e-06 seconds!!!
-PASSED FOR LINE: RT @FemaleDistrict: If her tattoo comes off in the shower, she's too young for you bro. in 1.1e-05 seconds!!!
+PASSED FOR LINE: 最近チェックされた動画:【1分講座】:「動き」を描く http://t.co/sKglXDrb #sousaku #followmeJP #sougofollow in 5e-06 seconds!!!
+PASSED FOR LINE: RT @TStreetz21: I just wanna be what u never experienced and could never find true love always meet up you never search for it in 1e-05 seconds!!!
+PASSED FOR LINE: @ChloeRTaylor Your welcome xx And yes I did too :) in 7e-06 seconds!!!
+PASSED FOR LINE: @Drunk_Jessie veio aki em ksa =) in 5e-06 seconds!!!
+PASSED FOR LINE: I unlocked 2 Xbox achievements on Rage! http://t.co/bZjkGxC9 in 1.2e-05 seconds!!!
+PASSED FOR LINE: RT @schutzdj: o tumblr da rodada! http://t.co/WYXRNfvh in 6e-06 seconds!!!
+PASSED FOR LINE: Estão abertas as inscrições para o sorteio de 4.663 vagas em pontos de táxi. Saiba como participar: http://t.co/L4esIJmX. in 6e-06 seconds!!!
+PASSED FOR LINE: RT @FemaleDistrict: If her tattoo comes off in the shower, she's too young for you bro. in 1e-05 seconds!!!
 PASSED FOR LINE: @UGottaLoveGee uno it makes sense xx in 7e-06 seconds!!!
-PASSED FOR LINE: Listening to an undergrad sing opera. Self esteem= demolished in 1e-05 seconds!!!
-PASSED FOR LINE: RT @Raafael_Pereira: @GabiCisotto Apesar de só esse ano a gente ta se falando mais, não quero perder, você ja é especial pra mim u.u in 1e-05 seconds!!!
-PASSED FOR LINE: @Make_meNUT If somebody doing up you like that.....they gotta be gay or just really like and respect you but mostly gay. Lol. in 1e-05 seconds!!!
-PASSED FOR LINE: Erweiterung der Freiluftsaison - Länger draußen dank Heizstrahler  http://t.co/m6RVIfGJ in 9e-06 seconds!!!
-PASSED FOR LINE: @pooch_tweets Becky said: Will someone pleeeeeze, just THROW THE BALL! in 8e-06 seconds!!!
-PASSED FOR LINE: @JayARREcbk lol I bought the dancing one for my god son, he loves it! in 8e-06 seconds!!!
+PASSED FOR LINE: Listening to an undergrad sing opera. Self esteem= demolished in 7e-06 seconds!!!
+PASSED FOR LINE: RT @Raafael_Pereira: @GabiCisotto Apesar de só esse ano a gente ta se falando mais, não quero perder, você ja é especial pra mim u.u in 6e-06 seconds!!!
+PASSED FOR LINE: @Make_meNUT If somebody doing up you like that.....they gotta be gay or just really like and respect you but mostly gay. Lol. in 8e-06 seconds!!!
+PASSED FOR LINE: Erweiterung der Freiluftsaison - Länger draußen dank Heizstrahler  http://t.co/m6RVIfGJ in 6e-06 seconds!!!
+PASSED FOR LINE: @pooch_tweets Becky said: Will someone pleeeeeze, just THROW THE BALL! in 6e-06 seconds!!!
+PASSED FOR LINE: @JayARREcbk lol I bought the dancing one for my god son, he loves it! in 7e-06 seconds!!!
 PASSED FOR LINE: RT @RAPSUSKLEI1: CAMBIA EL TWITER POR UN LIBRO.
 EL FACE BOOK POR UN AMIGO ...
 Y LA TELE POR UN PASEO.
-MEJORARA TU CALIDAD DE VIDA, CREEME... in 9e-06 seconds!!!
-PASSED FOR LINE: My momma & @funsyze328 are two of the nicest people I know of....SOMETIMES lol J/K in 7e-06 seconds!!!
-PASSED FOR LINE: mistakes don't make a person, its how  they look at the mistakes and handle them that does #nobodysperfect in 1e-05 seconds!!!
-PASSED FOR LINE: Mine is the night, with all her stars. ~Edward Young in 1e-05 seconds!!!
-PASSED FOR LINE: Keep it real all that disrespect has to go. in 1e-05 seconds!!!
-PASSED FOR LINE: RT @Schlummerkatze Früher hatten wir Kant, Nietzsche und Schopenhauer. Heute haben wir Pseudoweisheiten von Facebook. http://t.co/lK6MeGtr in 1.1e-05 seconds!!!
-PASSED FOR LINE: Renginys: KAUNE Trumpasis asmeninio tobulėjimo seminaras „Menas būti kartu“, http://t.co/evrEzrTV in 1e-05 seconds!!!
-PASSED FOR LINE: how, after maxing out your credit cards on xmas gifts, do you still have money to piss away on boxing day "sales"?! in 7e-06 seconds!!!
-PASSED FOR LINE: Let myself be always happy and kind. in 8e-06 seconds!!!
-PASSED FOR LINE: 4minute wants to focus on developing their own style for 2012 http://t.co/74aK7Jmq in 1e-05 seconds!!!
-PASSED FOR LINE: tiesto: Beautiful day in Toronto today,excited to perform @The_Guvernment tonight!! http://t.co/YTBsFpTW http://t.co/dUz9Mo7T in 6e-06 seconds!!!
-PASSED FOR LINE: IMPACT PHOTO GRAPHIC New York City Panorama Screen Saver (Windows/Macintosh):  http://t.co/n3G5DmQX in 9e-06 seconds!!!
-PASSED FOR LINE: Get Paid For Hosting Banners, Home Business, Free Website How to be bighearted. Learn to be calm. How to be affluent. http://t.co/ebej5KVd in 1e-05 seconds!!!
-PASSED FOR LINE: FLOR FLAY! in 6e-06 seconds!!!
-PASSED FOR LINE: @jori0806 al gedaan kut hhaahh in 9e-06 seconds!!!
-PASSED FOR LINE: @for3ver_Kimi_AH READ @ibiebersstory's BLS?!♥☺ in 8e-06 seconds!!!
-PASSED FOR LINE: Fuck I'm hungry!! in 5e-06 seconds!!!
-PASSED FOR LINE: 【高知県産 柚子果汁使用!】柚子ゼリー http://t.co/qJ5hnbV0 @bonbondo_host 果汁たっぷり!果汁を通常よりもたくさん入れることで味を最高に引き立ててくれました。一度賞味ください! in 8e-06 seconds!!!
-PASSED FOR LINE: Myrskyä luvassa Keski-Suomeen tiistainakin: Ilmatieteen laitoksen mukaan myrsky on itään siirtyessään laantunut.... http://t.co/2X0JWA6P in 6e-06 seconds!!!
-PASSED FOR LINE: @iElvieDoesThis -___- I dnt get this oovoo crap in 9e-06 seconds!!!
-PASSED FOR LINE: NECESITO UNA REUNION!!!! @CamilaCazila @SofiIturbide in 9e-06 seconds!!!
-PASSED FOR LINE: Happy that I got the other side of the story. in 1.1e-05 seconds!!!
-PASSED FOR LINE: RT @aricelyIsabel: I want a puppy :} in 7e-06 seconds!!!
-PASSED FOR LINE: RT @MensHumor: Girls don't poop, shit just comes out of their mouth 24/7. in 1e-05 seconds!!!
-PASSED FOR LINE: Ma cousine a compris qu'il fallait se boucher les oreilles quand @clydeperiod chante MDR http://t.co/IvKN1GIW in 9e-06 seconds!!!
-PASSED FOR LINE: 3 followers? I follow back:D RT. in 1e-05 seconds!!!
-PASSED FOR LINE: Getting very aggravated #pissed in 6e-06 seconds!!!
-PASSED FOR LINE: RT @TheSamAlbert: hahah my boxers and shirt match, and there both from Hollister:) but my face looks weird #gross http://t.co/Ee5HuEOI in 8e-06 seconds!!!
-PASSED FOR LINE: La política es el arte de los incapaces de triunfar en privado. - José Luis De Villalonga in 1e-05 seconds!!!
-PASSED FOR LINE: RT @Datskegeeboi81: “@BigYac15 Been counting my blessings for a while now...” in 1e-05 seconds!!!
-PASSED FOR LINE: That awesome moment when 11:59  Dec 31st and 12:01 jan 1st is just a minute away from each other and you call it New Year/Next Year. in 8e-06 seconds!!!
-PASSED FOR LINE: 21:20 Innsbruck -  Vento: WNW a 13 Km/h Temp: -2 °C Ur: 100% 1039 hPa (30.68 in Hg) - http://t.co/CMeIR3Ok in 8e-06 seconds!!!
-PASSED FOR LINE: Wind 0,0 km/h ---. Barometer 1030,8 hPa, Aumento lento. Temperature 5,5 °C. Rain today 0,0 mm. Humidity 59% in 1e-05 seconds!!!
+MEJORARA TU CALIDAD DE VIDA, CREEME... in 6e-06 seconds!!!
+PASSED FOR LINE: My momma & @funsyze328 are two of the nicest people I know of....SOMETIMES lol J/K in 5e-06 seconds!!!
+PASSED FOR LINE: mistakes don't make a person, its how  they look at the mistakes and handle them that does #nobodysperfect in 6e-06 seconds!!!
+PASSED FOR LINE: Mine is the night, with all her stars. ~Edward Young in 1.5e-05 seconds!!!
+PASSED FOR LINE: Keep it real all that disrespect has to go. in 4e-06 seconds!!!
+PASSED FOR LINE: RT @Schlummerkatze Früher hatten wir Kant, Nietzsche und Schopenhauer. Heute haben wir Pseudoweisheiten von Facebook. http://t.co/lK6MeGtr in 6e-06 seconds!!!
+PASSED FOR LINE: Renginys: KAUNE Trumpasis asmeninio tobulėjimo seminaras „Menas būti kartu“, http://t.co/evrEzrTV in 6e-06 seconds!!!
+PASSED FOR LINE: how, after maxing out your credit cards on xmas gifts, do you still have money to piss away on boxing day "sales"?! in 5e-06 seconds!!!
+PASSED FOR LINE: Let myself be always happy and kind. in 6e-06 seconds!!!
+PASSED FOR LINE: 4minute wants to focus on developing their own style for 2012 http://t.co/74aK7Jmq in 4e-06 seconds!!!
+PASSED FOR LINE: tiesto: Beautiful day in Toronto today,excited to perform @The_Guvernment tonight!! http://t.co/YTBsFpTW http://t.co/dUz9Mo7T in 5e-06 seconds!!!
+PASSED FOR LINE: IMPACT PHOTO GRAPHIC New York City Panorama Screen Saver (Windows/Macintosh):  http://t.co/n3G5DmQX in 3e-06 seconds!!!
+PASSED FOR LINE: Get Paid For Hosting Banners, Home Business, Free Website How to be bighearted. Learn to be calm. How to be affluent. http://t.co/ebej5KVd in 5e-06 seconds!!!
+PASSED FOR LINE: FLOR FLAY! in 4e-06 seconds!!!
+PASSED FOR LINE: @jori0806 al gedaan kut hhaahh in 3e-06 seconds!!!
+PASSED FOR LINE: @for3ver_Kimi_AH READ @ibiebersstory's BLS?!♥☺ in 4e-06 seconds!!!
+PASSED FOR LINE: Fuck I'm hungry!! in 3e-06 seconds!!!
+PASSED FOR LINE: 【高知県産 柚子果汁使用!】柚子ゼリー http://t.co/qJ5hnbV0 @bonbondo_host 果汁たっぷり!果汁を通常よりもたくさん入れることで味を最高に引き立ててくれました。一度賞味ください! in 3e-06 seconds!!!
+PASSED FOR LINE: Myrskyä luvassa Keski-Suomeen tiistainakin: Ilmatieteen laitoksen mukaan myrsky on itään siirtyessään laantunut.... http://t.co/2X0JWA6P in 4e-06 seconds!!!
+PASSED FOR LINE: @iElvieDoesThis -___- I dnt get this oovoo crap in 3e-06 seconds!!!
+PASSED FOR LINE: NECESITO UNA REUNION!!!! @CamilaCazila @SofiIturbide in 5e-06 seconds!!!
+PASSED FOR LINE: Happy that I got the other side of the story. in 6e-06 seconds!!!
+PASSED FOR LINE: RT @aricelyIsabel: I want a puppy :} in 3e-06 seconds!!!
+PASSED FOR LINE: RT @MensHumor: Girls don't poop, shit just comes out of their mouth 24/7. in 4e-06 seconds!!!
+PASSED FOR LINE: Ma cousine a compris qu'il fallait se boucher les oreilles quand @clydeperiod chante MDR http://t.co/IvKN1GIW in 4e-06 seconds!!!
+PASSED FOR LINE: 3 followers? I follow back:D RT. in 5e-06 seconds!!!
+PASSED FOR LINE: Getting very aggravated #pissed in 4e-06 seconds!!!
+PASSED FOR LINE: RT @TheSamAlbert: hahah my boxers and shirt match, and there both from Hollister:) but my face looks weird #gross http://t.co/Ee5HuEOI in 4e-06 seconds!!!
+PASSED FOR LINE: La política es el arte de los incapaces de triunfar en privado. - José Luis De Villalonga in 4e-06 seconds!!!
+PASSED FOR LINE: RT @Datskegeeboi81: “@BigYac15 Been counting my blessings for a while now...” in 6e-06 seconds!!!
+PASSED FOR LINE: That awesome moment when 11:59  Dec 31st and 12:01 jan 1st is just a minute away from each other and you call it New Year/Next Year. in 7e-06 seconds!!!
+PASSED FOR LINE: 21:20 Innsbruck -  Vento: WNW a 13 Km/h Temp: -2 °C Ur: 100% 1039 hPa (30.68 in Hg) - http://t.co/CMeIR3Ok in 3e-06 seconds!!!
+PASSED FOR LINE: Wind 0,0 km/h ---. Barometer 1030,8 hPa, Aumento lento. Temperature 5,5 °C. Rain today 0,0 mm. Humidity 59% in 4e-06 seconds!!!
 PASSED FOR LINE: @bama_girl1979 
 Thank you! Thank you! Much appreciated!
-Bloodline in 9e-06 seconds!!!
-PASSED FOR LINE: @millacristtina rum fica ai falando besteira de mim no tt pelo menos uma sua kkk' in 1e-05 seconds!!!
-PASSED FOR LINE: RT @ElishaWithAn_E: @bieberontoast Haha more like Edward. :L in 1e-05 seconds!!!
-PASSED FOR LINE: Lexerd - Sierra Voq TrueVue Crystal Clear PDA Screen Protector (Dual Pack Bundle): The Lexerd TrueVueâ„¢ is create... http://t.co/meLxVfQK in 1e-05 seconds!!!
-PASSED FOR LINE: RT @CharlieChaddis: someone better die in eastenders today or someone's going to die. in 1e-05 seconds!!!
-PASSED FOR LINE: @ev_hatesChris u see my new ride I got !! http://t.co/0TSEtgil in 1e-05 seconds!!!
-PASSED FOR LINE: RT @pejifugibu: casino kid hints http://t.co/qocmlysI in 7e-06 seconds!!!
-PASSED FOR LINE: Hot Artist Alert!! - http://t.co/nixsB3wZ in 8e-06 seconds!!!
-PASSED FOR LINE: com canudinho ta? in 7e-06 seconds!!!
-PASSED FOR LINE: Copertina/Box Art FRONTE per TMNT (wii) : http://t.co/ST1tC1nl in 5e-06 seconds!!!
-PASSED FOR LINE: I always feel like somebody plotin on me. in 1e-05 seconds!!!
-PASSED FOR LINE: Esto de estar levantandome casi a las 3:00 no esta Padre :S in 1e-05 seconds!!!
-PASSED FOR LINE: Ischgl: 4 Sterne Hotel -  Hotel Olympia von Mo 02.01 - Di 03.01 um € 136 p.P./Nacht - http://t.co/9tDW0uMb in 8e-06 seconds!!!
-PASSED FOR LINE: Who am i to tell fate where its suppossed to go in 8e-06 seconds!!!
-PASSED FOR LINE: Tonight At #Scores [No ID Required] 1st 100 People Free Hosted By @IAMTHRAX Wit @DjKuttThroat On The 1's & 2's #TRIPLEXXX x12 in 6e-06 seconds!!!
+Bloodline in 4e-06 seconds!!!
+PASSED FOR LINE: @millacristtina rum fica ai falando besteira de mim no tt pelo menos uma sua kkk' in 5e-06 seconds!!!
+PASSED FOR LINE: RT @ElishaWithAn_E: @bieberontoast Haha more like Edward. :L in 4e-06 seconds!!!
+PASSED FOR LINE: Lexerd - Sierra Voq TrueVue Crystal Clear PDA Screen Protector (Dual Pack Bundle): The Lexerd TrueVueâ„¢ is create... http://t.co/meLxVfQK in 2e-05 seconds!!!
+PASSED FOR LINE: RT @CharlieChaddis: someone better die in eastenders today or someone's going to die. in 6e-06 seconds!!!
+PASSED FOR LINE: @ev_hatesChris u see my new ride I got !! http://t.co/0TSEtgil in 4e-06 seconds!!!
+PASSED FOR LINE: RT @pejifugibu: casino kid hints http://t.co/qocmlysI in 3e-06 seconds!!!
+PASSED FOR LINE: Hot Artist Alert!! - http://t.co/nixsB3wZ in 3e-06 seconds!!!
+PASSED FOR LINE: com canudinho ta? in 4e-06 seconds!!!
+PASSED FOR LINE: Copertina/Box Art FRONTE per TMNT (wii) : http://t.co/ST1tC1nl in 4e-06 seconds!!!
+PASSED FOR LINE: I always feel like somebody plotin on me. in 4e-06 seconds!!!
+PASSED FOR LINE: Esto de estar levantandome casi a las 3:00 no esta Padre :S in 4e-06 seconds!!!
+PASSED FOR LINE: Ischgl: 4 Sterne Hotel -  Hotel Olympia von Mo 02.01 - Di 03.01 um € 136 p.P./Nacht - http://t.co/9tDW0uMb in 4e-06 seconds!!!
+PASSED FOR LINE: Who am i to tell fate where its suppossed to go in 4e-06 seconds!!!
+PASSED FOR LINE: Tonight At #Scores [No ID Required] 1st 100 People Free Hosted By @IAMTHRAX Wit @DjKuttThroat On The 1's & 2's #TRIPLEXXX x12 in 5e-06 seconds!!!
 PASSED FOR LINE: @Markkbx dt zei ich toch jong, best film ever made (a) in 8e-06 seconds!!!
-PASSED FOR LINE: @twettylover101 omfg :O i have not :O ): in 7e-06 seconds!!!
-PASSED FOR LINE: Flat out tonight! #chrishill in 1e-05 seconds!!!
-PASSED FOR LINE: Son las 18:00 y hay 33 °C en Santiago. Condición: Nublado. Humedad: 13% in 1e-05 seconds!!!
-PASSED FOR LINE: 3 hari lg say goodbye dari kosan. Tahun baru sama keluarga itu harus. in 8e-06 seconds!!!
-PASSED FOR LINE: Anything that can go wrong will go wrong. (Murphy's law) in 1e-05 seconds!!!
-PASSED FOR LINE: @meinkaese Nene, lieber nicht, Kinder sind mir echt zu gruslig ^^ in 7e-06 seconds!!!
+PASSED FOR LINE: @twettylover101 omfg :O i have not :O ): in 4e-06 seconds!!!
+PASSED FOR LINE: Flat out tonight! #chrishill in 3e-06 seconds!!!
+PASSED FOR LINE: Son las 18:00 y hay 33 °C en Santiago. Condición: Nublado. Humedad: 13% in 6e-06 seconds!!!
+PASSED FOR LINE: 3 hari lg say goodbye dari kosan. Tahun baru sama keluarga itu harus. in 6e-06 seconds!!!
+PASSED FOR LINE: Anything that can go wrong will go wrong. (Murphy's law) in 6e-06 seconds!!!
+PASSED FOR LINE: @meinkaese Nene, lieber nicht, Kinder sind mir echt zu gruslig ^^ in 5e-06 seconds!!!
 PASSED FOR LINE: Er: "Ich mag dich.."
 Sie : "Ich mag dich auch.."
 Er : "Willst du meine Freundin sein?"
-Sie nickt. Er nimmt ihre... http://t.co/X5Ktme7l in 1.1e-05 seconds!!!
-PASSED FOR LINE: @realjeffreyross Mandarin Oriental NY hotel. However, I'm talking about an actual salad. But Court Square Diner has baller chicken salad. in 7e-06 seconds!!!
-PASSED FOR LINE: @Cyh_s2 TO LIGADA AMOR (: OSKAOKSAOKSAOKSAOKSOASKAOKSOAKSOAKSOAKSOAKSOAKSOAKSOAKSOAKSAOKSOASKOA in 8e-06 seconds!!!
-PASSED FOR LINE: La ora 23:00 sunt 0&deg; C, Ploaie; umiditatea  93%; vantul bate dinspre  V cu 23 km/h. #constanta in 9e-06 seconds!!!
-PASSED FOR LINE: RT @cadantas10: Cadantas Start Again Oficial http://t.co/Mhan5Iv1 #RT #RT in 8e-06 seconds!!!
-PASSED FOR LINE: Porque carajos no contestan sus sms ??? in 1e-05 seconds!!!
-PASSED FOR LINE: Sacto 911: Pollock Pines mobile home fire send man to hospital: A man was airlifted to the hospital today with burns... http://t.co/Q4z0gS1t in 1.2e-05 seconds!!!
+Sie nickt. Er nimmt ihre... http://t.co/X5Ktme7l in 5e-06 seconds!!!
+PASSED FOR LINE: @realjeffreyross Mandarin Oriental NY hotel. However, I'm talking about an actual salad. But Court Square Diner has baller chicken salad. in 5e-06 seconds!!!
+PASSED FOR LINE: @Cyh_s2 TO LIGADA AMOR (: OSKAOKSAOKSAOKSAOKSOASKAOKSOAKSOAKSOAKSOAKSOAKSOAKSOAKSOAKSAOKSOASKOA in 6e-06 seconds!!!
+PASSED FOR LINE: La ora 23:00 sunt 0&deg; C, Ploaie; umiditatea  93%; vantul bate dinspre  V cu 23 km/h. #constanta in 8e-06 seconds!!!
+PASSED FOR LINE: RT @cadantas10: Cadantas Start Again Oficial http://t.co/Mhan5Iv1 #RT #RT in 6e-06 seconds!!!
+PASSED FOR LINE: Porque carajos no contestan sus sms ??? in 6e-06 seconds!!!
+PASSED FOR LINE: Sacto 911: Pollock Pines mobile home fire send man to hospital: A man was airlifted to the hospital today with burns... http://t.co/Q4z0gS1t in 7e-06 seconds!!!
 PASSED FOR LINE: Hay obligación de ser feliz. Si no lo estás eres un inadaptado. 
-Voy a probar lo que dice Román: puta gijon. Oye, ya me siento mejor in 9e-06 seconds!!!
-PASSED FOR LINE: RT @TudoHot: Bebida de #Capricornio - Alcool Zulu in 6e-06 seconds!!!
-PASSED FOR LINE: @CorneliusRacing now we know how good he is! in 7e-06 seconds!!!
-PASSED FOR LINE: RT @TipicoEnNovios: Lo mas difícil de querer confesar un amor, es cuando se tiene el miedo a perder una gran amistad. in 9e-06 seconds!!!
-PASSED FOR LINE: Nunca he sentido nada como esto en mi vida. in 8e-06 seconds!!!
-PASSED FOR LINE: I need to go to the mall in 9e-06 seconds!!!
-PASSED FOR LINE: 2011.12.27 No.1 鏡の法則 人生のどんな問題も解決する魔法のルール http://t.co/OJj6sQT4 #followmejp #amazon in 9e-06 seconds!!!
-PASSED FOR LINE: QEPD Pedro Armendariz :( un grande sin duda! in 8e-06 seconds!!!
-PASSED FOR LINE: @Claredaisy Oh I loved that too...so much so when I was in labour I thought I was making sandwiches for the cast of Home and Away #drugs in 4.1e-05 seconds!!!
-PASSED FOR LINE: “@AYEjbDOE I'm not like these other niggas out here #BullShitDudesSay” in 1.1e-05 seconds!!!
-PASSED FOR LINE: @SHORTiEDREAMBiG sup pretty girl, what you been up to, and how was your christmas ? in 7e-06 seconds!!!
-PASSED FOR LINE: Farscape - Season 3, Collection 3 (Starburst Edition) (DVD) http://t.co/h9mGQd7g in 9e-06 seconds!!!
-PASSED FOR LINE: In so cold. in 1e-05 seconds!!!
-PASSED FOR LINE: Eu acabei de comprar um Maroon Fringe Boots, Faux Fur Leopard Vest no Stardoll. Confira minha Suíte! http://t.co/YSzftdf1 in 1.1e-05 seconds!!!
-PASSED FOR LINE: Discover the doomsday seed vault's secrets http://t.co/TGhbqnDE via @HealthRanger in 8e-06 seconds!!!
-PASSED FOR LINE: @clarissald vi alguém passando na frente da tua casa KKKKK eai oq deu bloquio os tt? in 7e-06 seconds!!!
-PASSED FOR LINE: @fefeeer obrigado meu anjo (: in 9e-06 seconds!!!
-PASSED FOR LINE: @_tooEXclusive i really don't know . kml , the phone was dead this morning when i woke uhpp . in 7e-06 seconds!!!
-PASSED FOR LINE: RT @Mike_daniels_YG: in duh shower sniffin dope wit D Rose, im not gay doe bruh i be fuckin bitches in 1.1e-05 seconds!!!
-PASSED FOR LINE: Trocar pessoas pela novea é o futuro in 1.1e-05 seconds!!!
-PASSED FOR LINE: @tricycles it's still delicious! I totally at it anyway. in 1.2e-05 seconds!!!
-PASSED FOR LINE: Oh Oh, você é o meu chá pra relaxar, oh oh... (8) in 9e-06 seconds!!!
-PASSED FOR LINE: RT @GirlMemories: I hate getting flashbacks from things I don't want to remember. in 1e-05 seconds!!!
-PASSED FOR LINE: @fearme_ chega de discussao, vou sair, depois agente continua com a nossa disputa sobre quem fala mais sobre as merdas! in 7e-06 seconds!!!
-PASSED FOR LINE: Thanks for the mention :) @JTspartz in 8e-06 seconds!!!
-PASSED FOR LINE: @LoverPringles seguiu aqui? :DD in 7e-06 seconds!!!
-PASSED FOR LINE: #Espectaculos Deja Pedro Armendáriz Jr. honda huella en cine y televisión http://t.co/BvjWt6R8 ➨ @PublimetroMX in 7e-06 seconds!!!
-PASSED FOR LINE: @jchloe1989 thanks for following @guyscout - you can now use Twitter to login on http://t.co/1awNXhZF / http://t.co/IldqjStG in 1e-05 seconds!!!
-PASSED FOR LINE: @superjew62 @Mr_Swoloholic her thong turned @superjew62 on! in 8e-06 seconds!!!
-PASSED FOR LINE: Whats the website to buy that lil chinese arm cuddle thingy.. i needs that in my life in 1e-05 seconds!!!
-PASSED FOR LINE: Restaurante mexicano http://t.co/0YJZDWGd in 9e-06 seconds!!!
-PASSED FOR LINE: Photoset:  http://t.co/YEdGRn57 in 6e-06 seconds!!!
-PASSED FOR LINE: Bi uyudum ruyamda gormedigim hayvan kalmadi.. in 5e-06 seconds!!!
-PASSED FOR LINE: kkk , tudobem thiaguinho entendemos que voce é o #ANHANHA kkkkk in 1e-05 seconds!!!
-PASSED FOR LINE: Necesito un medico anahuac, no recuerdo como es el uniforme *entro en panico* jajaja in 1e-05 seconds!!!
-PASSED FOR LINE: Sintonia WRMiiiix! ;) http://t.co/3NjTHTAJ in 9e-06 seconds!!!
-PASSED FOR LINE: Gosto de sorrisos. in 1e-05 seconds!!!
-PASSED FOR LINE: @c2_Gabii jessicajehhh@hot.. in 7e-06 seconds!!!
-PASSED FOR LINE: Dead Sea Spa Products: Dry Dead Sea Salt Scrub--32 Oz Jar Buy 1 Get 1 Free: Dry skin will have a radiant glow wi... http://t.co/sJqtRLuC in 8e-06 seconds!!!
-PASSED FOR LINE: Oi @jecikosta ! Vc que curte Strike, experimente o som da @KallakOficial. Siga e concorra ao novo CD que será lançado em breve! in 9e-06 seconds!!!
-PASSED FOR LINE: “@ortizzlee: @_AhhEddie wtf I wish my best friend got me a car, shit”lmao deadass his friend was prob lik dam thnks heres ur Christmas card in 1e-05 seconds!!!
-PASSED FOR LINE: RT @revistabarrio: Amanecen ocho toneladas de basura en el Hemicilo a Juárez http://t.co/rnRGQ2X3 in 7e-06 seconds!!!
-PASSED FOR LINE: @BadLuck_Jones I know man thats the fucked up part! They better not let me find out! in 1e-05 seconds!!!
-PASSED FOR LINE: @laurendl0 WHATS WRONG WITH YOU in 8e-06 seconds!!!
-PASSED FOR LINE: Had a fantastic Christmas with some wonderful presents and much festive cheer. Much needed and much appreciated x in 8e-06 seconds!!!
-PASSED FOR LINE: RT @YoungwithGwalas: I might tell a lie if you ask me my where abouts but I might speak that real if you ask me what I care about in 1e-05 seconds!!!
-PASSED FOR LINE: RT @scooterbraun: do one random act of kindness today in 9e-06 seconds!!!
-PASSED FOR LINE: @natycristaule uma hora chega u_u in 9e-06 seconds!!!
-PASSED FOR LINE: @sandeal @patriciov no es para tanto tampoco. in 9e-06 seconds!!!
-PASSED FOR LINE: This is SO embarrassing! in 9e-06 seconds!!!
-PASSED FOR LINE: @Laauren_Jiva_TK I had to disappoint cait today because I deleted cut the rope ha. Need to download again x in 9e-06 seconds!!!
-PASSED FOR LINE: RT @Hamadalkhudhari: ░░░░░░░░░░░░░░░░ـ ـ░░░▓░▓░▓░▓░░░░░░ـ ـ░░░▓░▓░▓░▓▓▓░░░░ـ ـ░░░▓░▓░▓░▓░▓░░░░ـ ـ░░░▓░▓▓▓▓▓▓▓░░░░ـ ـ░░░░░░░░░░░░░░░░ كم  ... in 1e-05 seconds!!!
-PASSED FOR LINE: RT @Y__U__NOOO: LADIES WHO TAKE PICS IN THEIR BATHROOM MIRROR, Y U NO STOP CALLING URSELF A MODEL? in 1.1e-05 seconds!!!
-PASSED FOR LINE: RT @Araandela: Querido YouTube, te podrías preocupar en quitar los anuncios en vez de en poner nieve en los vídeos. Gracias. in 8e-06 seconds!!!
-PASSED FOR LINE: @juh_busch ah, eu irritado por bobeira aqui kk in 7e-06 seconds!!!
-PASSED FOR LINE: RT @ElishaWithAn_E: @bieberontoast Haha more like Edward. :L in 1.4e-05 seconds!!!
-PASSED FOR LINE: meu gap eh bem baacana . in 9e-06 seconds!!!
-PASSED FOR LINE: @superjew62 @Mr_Swoloholic her thong turned @superjew62 on! in 1e-05 seconds!!!
-PASSED FOR LINE: Who would enter an editing contest? in 9e-06 seconds!!!
-PASSED FOR LINE: I'm ready to go -_- in 1e-05 seconds!!!
-PASSED FOR LINE: Photo:  http://t.co/sZT3TTos in 9e-06 seconds!!!
-PASSED FOR LINE: It's Raining -________- in 6e-06 seconds!!!
-PASSED FOR LINE: Why do I love that song, idk. in 9e-06 seconds!!!
-PASSED FOR LINE: Car Floor Mats Set Blue http://t.co/CVcqjiYx in 9e-06 seconds!!!
-PASSED FOR LINE: Smooth Talker Custom Charging Cradle For Blackberry Tour 9630 Hard Wired + Custom Mount for Dodge Journey (2008-... http://t.co/qjCxP7H8 in 1e-05 seconds!!!
-PASSED FOR LINE: @MrChrisRene record out !! in 6e-06 seconds!!!
-PASSED FOR LINE: #PioresMusicasDe2011 todos as de Restart ~ in 7e-06 seconds!!!
-PASSED FOR LINE: What is wrong with your car lol RT @ThickRiles: Somebody take me to the mall! in 7e-06 seconds!!!
-PASSED FOR LINE: @Messy_JesseHAHA hahahhahaha why ? in 9e-06 seconds!!!
-PASSED FOR LINE: Whatever it is dat you do when u do wut you're doin..its a feeling that I want to stay......#Weak in 6e-06 seconds!!!
-PASSED FOR LINE: Oh my god she smelled like straight fish and sausage , -________-..... in 7e-06 seconds!!!
-PASSED FOR LINE: RT @guigsdahyk: @umabiscoita @dessa_spindler @pequenadoguigs Mas ela viu a anaconda!! :| k in 1.1e-05 seconds!!!
-PASSED FOR LINE: My christm present is here:) in 1e-05 seconds!!!
-PASSED FOR LINE: RT @travecuzao: me xinga + me deseja in 1e-05 seconds!!!
-PASSED FOR LINE: @ConoPizza_MDQ naaaa en serio??? Mira vos increible....yo vivo cerca d la iglesia d padua....y cuantos aÑos tenes? in 1e-05 seconds!!!
-PASSED FOR LINE: RT @WavesNews: البحرين | النويدرات: إقتحام منزل الشهيد الحاج حسن الستري من قِبل مرتزقة النظام وتهديد بنات الشهيد بحرق المنزل... http://t ... in 1e-05 seconds!!!
-PASSED FOR LINE: Can't believe that I finally got re-tweeted by YM&C! How awesome!!!!! in 1.1e-05 seconds!!!
-PASSED FOR LINE: RT @_KaduSiqueira: Feliz natal @heliozika1 @christiiian_ss @vitoriasouza_01 @Coca_Laka @sortesua_ @umanjosimpatia_ @_videxdaxuxu @hiperc ... in 1e-05 seconds!!!
-PASSED FOR LINE: RT @motleysophie_xo: #ICantGoADayWithout music. in 6e-06 seconds!!!
-PASSED FOR LINE: Neymar: É, a gente já jogou quando eu era muleque. Ronaldo: Quando era? ~~&gt;&gt; kkkkkkkkkkkkkkk in 1.1e-05 seconds!!!
-PASSED FOR LINE: tchau meu amooooooooooooores. s2 in 8e-06 seconds!!!
-PASSED FOR LINE: 1 More Hour Till The Game Is OVER! in 1.2e-05 seconds!!!
-PASSED FOR LINE: - after I vacuum I'm not doing sh*t else for nobody in this house . in 1.1e-05 seconds!!!
-PASSED FOR LINE: The Chrissy & Kimbella fight is still hilarious . #Love&HipHop (: in 1e-05 seconds!!!
-PASSED FOR LINE: Doctor, Doctor I can't say my F's, my T's or my H's. He said "Well, you can't say fairer than that" #boxingdayjokes in 9e-06 seconds!!!
-PASSED FOR LINE: @miababy13 I know right. Ahhaha pathetic bitch in 9e-06 seconds!!!
-PASSED FOR LINE: @YukimiJuny really, really in 1.1e-05 seconds!!!
-PASSED FOR LINE: "Sarah's a disgrace to our  sherbert family"  #ouch in 1.8e-05 seconds!!!
-PASSED FOR LINE: #comoodio pelearme con mi hermana por el mando porque yo quiero ver #MARCO y ella boing... in 1.1e-05 seconds!!!
-PASSED FOR LINE: I think different, above the law, under the influence lol in 1e-05 seconds!!!
-PASSED FOR LINE: Thanks ;) RT @PrettyStackss_: @HannahhMontanaa avi is preetttyy ;D in 8e-06 seconds!!!
-PASSED FOR LINE: @LopezSantana D: WHAT???!???? in 8e-06 seconds!!!
-PASSED FOR LINE: ...es que es increible, me tienes harto, harto :@ estoy a un solo tweet estupido tuyo de dejarte de seguir... a uno solo :@ in 1e-05 seconds!!!
-PASSED FOR LINE: @comScoreLATAM  Hola! estamos sorteando apps de negocios para #Iphone hoy y manana - nos ayudan a difundir porfa? @latam_ABBYY in 1e-05 seconds!!!
+Voy a probar lo que dice Román: puta gijon. Oye, ya me siento mejor in 4e-06 seconds!!!
+PASSED FOR LINE: RT @TudoHot: Bebida de #Capricornio - Alcool Zulu in 4e-06 seconds!!!
+PASSED FOR LINE: @CorneliusRacing now we know how good he is! in 5e-06 seconds!!!
+PASSED FOR LINE: RT @TipicoEnNovios: Lo mas difícil de querer confesar un amor, es cuando se tiene el miedo a perder una gran amistad. in 5e-06 seconds!!!
+PASSED FOR LINE: Nunca he sentido nada como esto en mi vida. in 7e-06 seconds!!!
+PASSED FOR LINE: I need to go to the mall in 4e-06 seconds!!!
+PASSED FOR LINE: 2011.12.27 No.1 鏡の法則 人生のどんな問題も解決する魔法のルール http://t.co/OJj6sQT4 #followmejp #amazon in 4e-06 seconds!!!
+PASSED FOR LINE: QEPD Pedro Armendariz :( un grande sin duda! in 6e-06 seconds!!!
+PASSED FOR LINE: @Claredaisy Oh I loved that too...so much so when I was in labour I thought I was making sandwiches for the cast of Home and Away #drugs in 6e-06 seconds!!!
+PASSED FOR LINE: “@AYEjbDOE I'm not like these other niggas out here #BullShitDudesSay” in 6e-06 seconds!!!
+PASSED FOR LINE: @SHORTiEDREAMBiG sup pretty girl, what you been up to, and how was your christmas ? in 8e-06 seconds!!!
+PASSED FOR LINE: Farscape - Season 3, Collection 3 (Starburst Edition) (DVD) http://t.co/h9mGQd7g in 7e-06 seconds!!!
+PASSED FOR LINE: In so cold. in 4e-06 seconds!!!
+PASSED FOR LINE: Eu acabei de comprar um Maroon Fringe Boots, Faux Fur Leopard Vest no Stardoll. Confira minha Suíte! http://t.co/YSzftdf1 in 5e-06 seconds!!!
+PASSED FOR LINE: Discover the doomsday seed vault's secrets http://t.co/TGhbqnDE via @HealthRanger in 6e-06 seconds!!!
+PASSED FOR LINE: @clarissald vi alguém passando na frente da tua casa KKKKK eai oq deu bloquio os tt? in 6e-06 seconds!!!
+PASSED FOR LINE: @fefeeer obrigado meu anjo (: in 3e-06 seconds!!!
+PASSED FOR LINE: @_tooEXclusive i really don't know . kml , the phone was dead this morning when i woke uhpp . in 4e-06 seconds!!!
+PASSED FOR LINE: RT @Mike_daniels_YG: in duh shower sniffin dope wit D Rose, im not gay doe bruh i be fuckin bitches in 6e-06 seconds!!!
+PASSED FOR LINE: Trocar pessoas pela novea é o futuro in 3e-06 seconds!!!
+PASSED FOR LINE: @tricycles it's still delicious! I totally at it anyway. in 7e-06 seconds!!!
+PASSED FOR LINE: Oh Oh, você é o meu chá pra relaxar, oh oh... (8) in 7e-06 seconds!!!
+PASSED FOR LINE: RT @GirlMemories: I hate getting flashbacks from things I don't want to remember. in 6e-06 seconds!!!
+PASSED FOR LINE: @fearme_ chega de discussao, vou sair, depois agente continua com a nossa disputa sobre quem fala mais sobre as merdas! in 5e-06 seconds!!!
+PASSED FOR LINE: Thanks for the mention :) @JTspartz in 3e-06 seconds!!!
+PASSED FOR LINE: @LoverPringles seguiu aqui? :DD in 5e-06 seconds!!!
+PASSED FOR LINE: #Espectaculos Deja Pedro Armendáriz Jr. honda huella en cine y televisión http://t.co/BvjWt6R8 ➨ @PublimetroMX in 5e-06 seconds!!!
+PASSED FOR LINE: @jchloe1989 thanks for following @guyscout - you can now use Twitter to login on http://t.co/1awNXhZF / http://t.co/IldqjStG in 2.4e-05 seconds!!!
+PASSED FOR LINE: @superjew62 @Mr_Swoloholic her thong turned @superjew62 on! in 6e-06 seconds!!!
+PASSED FOR LINE: Whats the website to buy that lil chinese arm cuddle thingy.. i needs that in my life in 4e-06 seconds!!!
+PASSED FOR LINE: Restaurante mexicano http://t.co/0YJZDWGd in 3e-06 seconds!!!
+PASSED FOR LINE: Photoset:  http://t.co/YEdGRn57 in 3e-06 seconds!!!
+PASSED FOR LINE: Bi uyudum ruyamda gormedigim hayvan kalmadi.. in 3e-06 seconds!!!
+PASSED FOR LINE: kkk , tudobem thiaguinho entendemos que voce é o #ANHANHA kkkkk in 6e-06 seconds!!!
+PASSED FOR LINE: Necesito un medico anahuac, no recuerdo como es el uniforme *entro en panico* jajaja in 7e-06 seconds!!!
+PASSED FOR LINE: Sintonia WRMiiiix! ;) http://t.co/3NjTHTAJ in 5e-06 seconds!!!
+PASSED FOR LINE: Gosto de sorrisos. in 4e-06 seconds!!!
+PASSED FOR LINE: @c2_Gabii jessicajehhh@hot.. in 5e-06 seconds!!!
+PASSED FOR LINE: Dead Sea Spa Products: Dry Dead Sea Salt Scrub--32 Oz Jar Buy 1 Get 1 Free: Dry skin will have a radiant glow wi... http://t.co/sJqtRLuC in 5e-06 seconds!!!
+PASSED FOR LINE: Oi @jecikosta ! Vc que curte Strike, experimente o som da @KallakOficial. Siga e concorra ao novo CD que será lançado em breve! in 6e-06 seconds!!!
+PASSED FOR LINE: “@ortizzlee: @_AhhEddie wtf I wish my best friend got me a car, shit”lmao deadass his friend was prob lik dam thnks heres ur Christmas card in 6e-06 seconds!!!
+PASSED FOR LINE: RT @revistabarrio: Amanecen ocho toneladas de basura en el Hemicilo a Juárez http://t.co/rnRGQ2X3 in 5e-06 seconds!!!
+PASSED FOR LINE: @BadLuck_Jones I know man thats the fucked up part! They better not let me find out! in 6e-06 seconds!!!
+PASSED FOR LINE: @laurendl0 WHATS WRONG WITH YOU in 4e-06 seconds!!!
+PASSED FOR LINE: Had a fantastic Christmas with some wonderful presents and much festive cheer. Much needed and much appreciated x in 5e-06 seconds!!!
+PASSED FOR LINE: RT @YoungwithGwalas: I might tell a lie if you ask me my where abouts but I might speak that real if you ask me what I care about in 8e-06 seconds!!!
+PASSED FOR LINE: RT @scooterbraun: do one random act of kindness today in 4e-06 seconds!!!
+PASSED FOR LINE: @natycristaule uma hora chega u_u in 4e-06 seconds!!!
+PASSED FOR LINE: @sandeal @patriciov no es para tanto tampoco. in 3e-06 seconds!!!
+PASSED FOR LINE: This is SO embarrassing! in 3e-06 seconds!!!
+PASSED FOR LINE: @Laauren_Jiva_TK I had to disappoint cait today because I deleted cut the rope ha. Need to download again x in 1.2e-05 seconds!!!
+PASSED FOR LINE: RT @Hamadalkhudhari: ░░░░░░░░░░░░░░░░ـ ـ░░░▓░▓░▓░▓░░░░░░ـ ـ░░░▓░▓░▓░▓▓▓░░░░ـ ـ░░░▓░▓░▓░▓░▓░░░░ـ ـ░░░▓░▓▓▓▓▓▓▓░░░░ـ ـ░░░░░░░░░░░░░░░░ كم  ... in 3e-06 seconds!!!
+PASSED FOR LINE: RT @Y__U__NOOO: LADIES WHO TAKE PICS IN THEIR BATHROOM MIRROR, Y U NO STOP CALLING URSELF A MODEL? in 4e-06 seconds!!!
+PASSED FOR LINE: RT @Araandela: Querido YouTube, te podrías preocupar en quitar los anuncios en vez de en poner nieve en los vídeos. Gracias. in 5e-06 seconds!!!
+PASSED FOR LINE: @juh_busch ah, eu irritado por bobeira aqui kk in 2.4e-05 seconds!!!
+PASSED FOR LINE: RT @ElishaWithAn_E: @bieberontoast Haha more like Edward. :L in 5e-06 seconds!!!
+PASSED FOR LINE: meu gap eh bem baacana . in 4e-06 seconds!!!
+PASSED FOR LINE: @superjew62 @Mr_Swoloholic her thong turned @superjew62 on! in 4e-06 seconds!!!
+PASSED FOR LINE: Who would enter an editing contest? in 3e-06 seconds!!!
+PASSED FOR LINE: I'm ready to go -_- in 4e-06 seconds!!!
+PASSED FOR LINE: Photo:  http://t.co/sZT3TTos in 4e-06 seconds!!!
+PASSED FOR LINE: It's Raining -________- in 4e-06 seconds!!!
+PASSED FOR LINE: Why do I love that song, idk. in 4e-06 seconds!!!
+PASSED FOR LINE: Car Floor Mats Set Blue http://t.co/CVcqjiYx in 4e-06 seconds!!!
+PASSED FOR LINE: Smooth Talker Custom Charging Cradle For Blackberry Tour 9630 Hard Wired + Custom Mount for Dodge Journey (2008-... http://t.co/qjCxP7H8 in 3e-06 seconds!!!
+PASSED FOR LINE: @MrChrisRene record out !! in 4e-06 seconds!!!
+PASSED FOR LINE: #PioresMusicasDe2011 todos as de Restart ~ in 3e-06 seconds!!!
+PASSED FOR LINE: What is wrong with your car lol RT @ThickRiles: Somebody take me to the mall! in 4e-06 seconds!!!
+PASSED FOR LINE: @Messy_JesseHAHA hahahhahaha why ? in 4e-06 seconds!!!
+PASSED FOR LINE: Whatever it is dat you do when u do wut you're doin..its a feeling that I want to stay......#Weak in 4e-06 seconds!!!
+PASSED FOR LINE: Oh my god she smelled like straight fish and sausage , -________-..... in 5e-06 seconds!!!
+PASSED FOR LINE: RT @guigsdahyk: @umabiscoita @dessa_spindler @pequenadoguigs Mas ela viu a anaconda!! :| k in 5e-06 seconds!!!
+PASSED FOR LINE: My christm present is here:) in 3e-06 seconds!!!
+PASSED FOR LINE: RT @travecuzao: me xinga + me deseja in 3e-06 seconds!!!
+PASSED FOR LINE: @ConoPizza_MDQ naaaa en serio??? Mira vos increible....yo vivo cerca d la iglesia d padua....y cuantos aÑos tenes? in 5e-06 seconds!!!
+PASSED FOR LINE: RT @WavesNews: البحرين | النويدرات: إقتحام منزل الشهيد الحاج حسن الستري من قِبل مرتزقة النظام وتهديد بنات الشهيد بحرق المنزل... http://t ... in 4e-06 seconds!!!
+PASSED FOR LINE: Can't believe that I finally got re-tweeted by YM&C! How awesome!!!!! in 3e-06 seconds!!!
+PASSED FOR LINE: RT @_KaduSiqueira: Feliz natal @heliozika1 @christiiian_ss @vitoriasouza_01 @Coca_Laka @sortesua_ @umanjosimpatia_ @_videxdaxuxu @hiperc ... in 4e-06 seconds!!!
+PASSED FOR LINE: RT @motleysophie_xo: #ICantGoADayWithout music. in 4e-06 seconds!!!
+PASSED FOR LINE: Neymar: É, a gente já jogou quando eu era muleque. Ronaldo: Quando era? ~~&gt;&gt; kkkkkkkkkkkkkkk in 4e-06 seconds!!!
+PASSED FOR LINE: tchau meu amooooooooooooores. s2 in 3e-06 seconds!!!
+PASSED FOR LINE: 1 More Hour Till The Game Is OVER! in 4e-06 seconds!!!
+PASSED FOR LINE: - after I vacuum I'm not doing sh*t else for nobody in this house . in 3e-06 seconds!!!
+PASSED FOR LINE: The Chrissy & Kimbella fight is still hilarious . #Love&HipHop (: in 3e-06 seconds!!!
+PASSED FOR LINE: Doctor, Doctor I can't say my F's, my T's or my H's. He said "Well, you can't say fairer than that" #boxingdayjokes in 7e-06 seconds!!!
+PASSED FOR LINE: @miababy13 I know right. Ahhaha pathetic bitch in 7e-06 seconds!!!
+PASSED FOR LINE: @YukimiJuny really, really in 6e-06 seconds!!!
+PASSED FOR LINE: "Sarah's a disgrace to our  sherbert family"  #ouch in 9e-06 seconds!!!
+PASSED FOR LINE: #comoodio pelearme con mi hermana por el mando porque yo quiero ver #MARCO y ella boing... in 5e-06 seconds!!!
+PASSED FOR LINE: I think different, above the law, under the influence lol in 5e-06 seconds!!!
+PASSED FOR LINE: Thanks ;) RT @PrettyStackss_: @HannahhMontanaa avi is preetttyy ;D in 5e-06 seconds!!!
+PASSED FOR LINE: @LopezSantana D: WHAT???!???? in 4e-06 seconds!!!
+PASSED FOR LINE: ...es que es increible, me tienes harto, harto :@ estoy a un solo tweet estupido tuyo de dejarte de seguir... a uno solo :@ in 5e-06 seconds!!!
+PASSED FOR LINE: @comScoreLATAM  Hola! estamos sorteando apps de negocios para #Iphone hoy y manana - nos ayudan a difundir porfa? @latam_ABBYY in 5e-06 seconds!!!
 PASSED FOR LINE: RT @Official_Saints: Brees has 4,780 passing yards this season - will he rewrite the record book tonight? http://t.co/w5IbIj5D in 6e-06 seconds!!!
-PASSED FOR LINE: RT @chinameric: Nuestras condolencias a la familia del gran actor Pedro Armendariz!! in 1e-05 seconds!!!
-PASSED FOR LINE: RT @BiscatoDaLaje: — você namora serio ? — nao namoro engraçado, seu palhaço in 8e-06 seconds!!!
-PASSED FOR LINE: @justinbieber BIEBERSDAY :D in 7e-06 seconds!!!
-PASSED FOR LINE: RT @Gleicyramos13: Me preocupo demais com as pessoas, esse é o problema. E quem se preocupa comigo? in 1.1e-05 seconds!!!
-PASSED FOR LINE: RT @JAS_whoyouu: You quick huh?, you be the type to jump to a conclusion like .. That in 1e-05 seconds!!!
-PASSED FOR LINE: RT @ahoyjenn: I hate being on my period 'cause then I get waaayyy too overly emotional. Lol tmi I know.. but aldjmxl :'c in 8e-06 seconds!!!
-PASSED FOR LINE: #Starbucks to wake me up, then being productive the rest of the day! in 1.1e-05 seconds!!!
-PASSED FOR LINE: "Diga-me Harry. Qual exatamente é a função de um patinho de borracha?" - Arthur Weasley / Hp2 in 8e-06 seconds!!!
-PASSED FOR LINE: RT @ChuckDear: Posso ficar dias sem te ver. Mas toda vez que te vejo, sinto borboletas no estômago. in 8e-06 seconds!!!
-PASSED FOR LINE: 最近 無料ゲームかぁ アニメ 着うたフルゴーゴーファイブWindows Mobile docomo HTC hTc Z徳島県 徳島スマフォ対応ゲーム http://t.co/0LY7UVvQ in 8e-06 seconds!!!
-PASSED FOR LINE: i am tweeting to myself ☺ in 1e-05 seconds!!!
-PASSED FOR LINE: Pedi uma água pro N. Pastoreio aqui no meu quarto, veio até com rodelas de limão! in 1.1e-05 seconds!!!
-PASSED FOR LINE: Never knew I could sweat that much! #grossbutilike in 1.1e-05 seconds!!!
-PASSED FOR LINE: [Article]  6 Ways To Give Your #OnlineBusiness A After-Holiday Boost  - http://t.co/T4dSgpHZ in 1e-05 seconds!!!
-PASSED FOR LINE: Que tarde más poco aburrida. Mañana de nuevo al trabajo pero ahora a ver #Marco in 1.2e-05 seconds!!!
-PASSED FOR LINE: As trevas se fez presente no dia de hoje. http://t.co/FiM6e7yb in 1e-05 seconds!!!
-PASSED FOR LINE: @KHaLeB_KeyS hey keair told mhe to say hi in 9e-06 seconds!!!
-PASSED FOR LINE: wholelesale Kansas City Chiefs jerseyss, Kansas City Chiefs jerseyss shops - http://t.co/enp4Vokj in 9e-06 seconds!!!
-PASSED FOR LINE: With few inflections, #English syntax permits free interplay between grammatical relations and semantic roles. http://t.co/5sConvzd in 1.2e-05 seconds!!!
-PASSED FOR LINE: I can't wait til I graduate then off to college , to be successful as I wanna be ! in 1.1e-05 seconds!!!
-PASSED FOR LINE: Ciencia en el mundo: Sondas de NASA estudian campo gravitatorio lunar. http://t.co/E6TlBlWJ in 1e-05 seconds!!!
-PASSED FOR LINE: @MzBarbie_0919 was up with me and u in 1e-05 seconds!!!
-PASSED FOR LINE: @MONey_chasers miss you babe :( in 1.1e-05 seconds!!!
-PASSED FOR LINE: @GiwtaGiouMerlia @Gwgwkoutsandrea @demosthenis73 μα αφού δε λέω κάτι παράξενο! Να πω ότι χθες που μιλήσαμε με έλεγες πιωμένο, τότε οκ... in 9e-06 seconds!!!
-PASSED FOR LINE: http://t.co/AQzSThne mt foda in 1e-05 seconds!!!
-PASSED FOR LINE: RT @TheAwkwardTweet: The awkward moment when the only thing you know on your test is the date and your name. in 8e-06 seconds!!!
-PASSED FOR LINE: That was such a bad movie... #delete in 1.1e-05 seconds!!!
-PASSED FOR LINE: #1: DEViLO PC 1163 Sechskerner – AMD FX-6100 6x 3300MHz (Turbocore 6x 3900MHz) | 8GB DDR3-1333 | 1000... http://t.co/j2GEOkoA #einkaufen in 9e-06 seconds!!!
-PASSED FOR LINE: [無料]【早得】Adobe Creative Suite製品購入で最大5万円キャッシュバック!急げー http://t.co/ff28iJsm #sougofollow #followme #followmejp in 1e-05 seconds!!!
-PASSED FOR LINE: Tomando un licuadito.. in 1e-05 seconds!!!
-PASSED FOR LINE: And I definitely can't stand "females" or their "man" to refer to him as "my nigga/yo nigga" ughhhhhh! in 1e-05 seconds!!!
-PASSED FOR LINE: Tryna get Bakeddddddddddd. in 7e-06 seconds!!!
-PASSED FOR LINE: RT @AytugAkdogan: Geri getirilemez hatalar yapmayı seviyorum, ben bu şekilde doğmuşum. in 3.9e-05 seconds!!!
+PASSED FOR LINE: RT @chinameric: Nuestras condolencias a la familia del gran actor Pedro Armendariz!! in 5e-06 seconds!!!
+PASSED FOR LINE: RT @BiscatoDaLaje: — você namora serio ? — nao namoro engraçado, seu palhaço in 4e-06 seconds!!!
+PASSED FOR LINE: @justinbieber BIEBERSDAY :D in 5e-06 seconds!!!
+PASSED FOR LINE: RT @Gleicyramos13: Me preocupo demais com as pessoas, esse é o problema. E quem se preocupa comigo? in 4e-06 seconds!!!
+PASSED FOR LINE: RT @JAS_whoyouu: You quick huh?, you be the type to jump to a conclusion like .. That in 4e-06 seconds!!!
+PASSED FOR LINE: RT @ahoyjenn: I hate being on my period 'cause then I get waaayyy too overly emotional. Lol tmi I know.. but aldjmxl :'c in 7e-06 seconds!!!
+PASSED FOR LINE: #Starbucks to wake me up, then being productive the rest of the day! in 6e-06 seconds!!!
+PASSED FOR LINE: "Diga-me Harry. Qual exatamente é a função de um patinho de borracha?" - Arthur Weasley / Hp2 in 6e-06 seconds!!!
+PASSED FOR LINE: RT @ChuckDear: Posso ficar dias sem te ver. Mas toda vez que te vejo, sinto borboletas no estômago. in 6e-06 seconds!!!
+PASSED FOR LINE: 最近 無料ゲームかぁ アニメ 着うたフルゴーゴーファイブWindows Mobile docomo HTC hTc Z徳島県 徳島スマフォ対応ゲーム http://t.co/0LY7UVvQ in 4e-06 seconds!!!
+PASSED FOR LINE: i am tweeting to myself ☺ in 4e-06 seconds!!!
+PASSED FOR LINE: Pedi uma água pro N. Pastoreio aqui no meu quarto, veio até com rodelas de limão! in 6e-06 seconds!!!
+PASSED FOR LINE: Never knew I could sweat that much! #grossbutilike in 5e-06 seconds!!!
+PASSED FOR LINE: [Article]  6 Ways To Give Your #OnlineBusiness A After-Holiday Boost  - http://t.co/T4dSgpHZ in 5e-06 seconds!!!
+PASSED FOR LINE: Que tarde más poco aburrida. Mañana de nuevo al trabajo pero ahora a ver #Marco in 7e-06 seconds!!!
+PASSED FOR LINE: As trevas se fez presente no dia de hoje. http://t.co/FiM6e7yb in 6e-06 seconds!!!
+PASSED FOR LINE: @KHaLeB_KeyS hey keair told mhe to say hi in 5e-06 seconds!!!
+PASSED FOR LINE: wholelesale Kansas City Chiefs jerseyss, Kansas City Chiefs jerseyss shops - http://t.co/enp4Vokj in 5e-06 seconds!!!
+PASSED FOR LINE: With few inflections, #English syntax permits free interplay between grammatical relations and semantic roles. http://t.co/5sConvzd in 5e-06 seconds!!!
+PASSED FOR LINE: I can't wait til I graduate then off to college , to be successful as I wanna be ! in 7e-06 seconds!!!
+PASSED FOR LINE: Ciencia en el mundo: Sondas de NASA estudian campo gravitatorio lunar. http://t.co/E6TlBlWJ in 6e-06 seconds!!!
+PASSED FOR LINE: @MzBarbie_0919 was up with me and u in 6e-06 seconds!!!
+PASSED FOR LINE: @MONey_chasers miss you babe :( in 4e-06 seconds!!!
+PASSED FOR LINE: @GiwtaGiouMerlia @Gwgwkoutsandrea @demosthenis73 μα αφού δε λέω κάτι παράξενο! Να πω ότι χθες που μιλήσαμε με έλεγες πιωμένο, τότε οκ... in 3e-06 seconds!!!
+PASSED FOR LINE: http://t.co/AQzSThne mt foda in 3e-06 seconds!!!
+PASSED FOR LINE: RT @TheAwkwardTweet: The awkward moment when the only thing you know on your test is the date and your name. in 5e-06 seconds!!!
+PASSED FOR LINE: That was such a bad movie... #delete in 4e-06 seconds!!!
+PASSED FOR LINE: #1: DEViLO PC 1163 Sechskerner – AMD FX-6100 6x 3300MHz (Turbocore 6x 3900MHz) | 8GB DDR3-1333 | 1000... http://t.co/j2GEOkoA #einkaufen in 4e-06 seconds!!!
+PASSED FOR LINE: [無料]【早得】Adobe Creative Suite製品購入で最大5万円キャッシュバック!急げー http://t.co/ff28iJsm #sougofollow #followme #followmejp in 6e-06 seconds!!!
+PASSED FOR LINE: Tomando un licuadito.. in 3e-06 seconds!!!
+PASSED FOR LINE: And I definitely can't stand "females" or their "man" to refer to him as "my nigga/yo nigga" ughhhhhh! in 6e-06 seconds!!!
+PASSED FOR LINE: Tryna get Bakeddddddddddd. in 4e-06 seconds!!!
+PASSED FOR LINE: RT @AytugAkdogan: Geri getirilemez hatalar yapmayı seviyorum, ben bu şekilde doğmuşum. in 4e-06 seconds!!!
 PASSED FOR LINE: RT @alqaryah_news: #Bahrain #Feb14
-نؤكد ان لا صلة لنا بفعالية احتلال شارع رقم 1 , وانه لم نتبنى هذه الفكره , مع التأكيد ان كل مايصدر...  ... in 9e-06 seconds!!!
-PASSED FOR LINE: @_SeriousLOVE i said email it 2 me i want it as my desktop background in 1e-05 seconds!!!
-PASSED FOR LINE: Año nuevo, a tirar la casa por la ventana!! in 2.1e-05 seconds!!!
-PASSED FOR LINE: RT @GanjaGreenDude: RT to pass my Twitter Blunt! (_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…()~~~ in 1.1e-05 seconds!!!
-PASSED FOR LINE: @ZerotjeNL haha ga je me tong kussen in 8e-06 seconds!!!
-PASSED FOR LINE: RT @BigodedoJin: #TodaBANA Já quis/quer prender o cabelo igual do CNU. in 3.3e-05 seconds!!!
-PASSED FOR LINE: RT @FemmeDeLaMode: @brisaamourr BiTcH3z DiDnT sEe DeY bEsTiE fOr XmAs? HmPh. What you doing today doe doe? in 1e-05 seconds!!!
-PASSED FOR LINE: It's almost time for my FREE bonus call! Will you be on the line? If you haven't, register now. http://t.co/upxlIfrO in 9e-06 seconds!!!
-PASSED FOR LINE: You need some #Spain just about now # Mediterranean #Ibiza #Balearic #Expedia #travel  #Madrid #Barcelona - http://t.co/O8QdpyiR in 8e-06 seconds!!!
-PASSED FOR LINE: http://t.co/nW7hAtcd Uut Permatasari Pernah Dicekal #KLC in 8e-06 seconds!!!
-PASSED FOR LINE: That new fabolous somethin serious in 8e-06 seconds!!!
-PASSED FOR LINE: Astroglide Personal Lubricant Gel 4oz http://t.co/FYB5Wt2g in 8e-06 seconds!!!
-PASSED FOR LINE: estou tendo que carregar pelo computador huh in 9e-06 seconds!!!
-PASSED FOR LINE: @FXXXINGKAI melhoras Kai ^^ in 9e-06 seconds!!!
-PASSED FOR LINE: JAJAJAJAJAJAJAJAJAJAJAJAJAJA maj ridiculo guariman. in 6e-06 seconds!!!
-PASSED FOR LINE: @SergioEncinas más preciosa que tú? :D mmmmmmmmmmmmmm,no ¬¬ jajajajajajaja LLL in 2.9e-05 seconds!!!
-PASSED FOR LINE: How are you finding time to relax this holiday season? Remember to breathe. in 1.1e-05 seconds!!!
+نؤكد ان لا صلة لنا بفعالية احتلال شارع رقم 1 , وانه لم نتبنى هذه الفكره , مع التأكيد ان كل مايصدر...  ... in 4e-06 seconds!!!
+PASSED FOR LINE: @_SeriousLOVE i said email it 2 me i want it as my desktop background in 7e-06 seconds!!!
+PASSED FOR LINE: Año nuevo, a tirar la casa por la ventana!! in 8e-06 seconds!!!
+PASSED FOR LINE: RT @GanjaGreenDude: RT to pass my Twitter Blunt! (_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…_Ì…()~~~ in 4e-06 seconds!!!
+PASSED FOR LINE: @ZerotjeNL haha ga je me tong kussen in 5e-06 seconds!!!
+PASSED FOR LINE: RT @BigodedoJin: #TodaBANA Já quis/quer prender o cabelo igual do CNU. in 4e-06 seconds!!!
+PASSED FOR LINE: RT @FemmeDeLaMode: @brisaamourr BiTcH3z DiDnT sEe DeY bEsTiE fOr XmAs? HmPh. What you doing today doe doe? in 5e-06 seconds!!!
+PASSED FOR LINE: It's almost time for my FREE bonus call! Will you be on the line? If you haven't, register now. http://t.co/upxlIfrO in 1.8e-05 seconds!!!
+PASSED FOR LINE: You need some #Spain just about now # Mediterranean #Ibiza #Balearic #Expedia #travel  #Madrid #Barcelona - http://t.co/O8QdpyiR in 5e-06 seconds!!!
+PASSED FOR LINE: http://t.co/nW7hAtcd Uut Permatasari Pernah Dicekal #KLC in 3e-06 seconds!!!
+PASSED FOR LINE: That new fabolous somethin serious in 2e-06 seconds!!!
+PASSED FOR LINE: Astroglide Personal Lubricant Gel 4oz http://t.co/FYB5Wt2g in 2e-06 seconds!!!
+PASSED FOR LINE: estou tendo que carregar pelo computador huh in 3e-06 seconds!!!
+PASSED FOR LINE: @FXXXINGKAI melhoras Kai ^^ in 2e-06 seconds!!!
+PASSED FOR LINE: JAJAJAJAJAJAJAJAJAJAJAJAJAJA maj ridiculo guariman. in 3e-06 seconds!!!
+PASSED FOR LINE: @SergioEncinas más preciosa que tú? :D mmmmmmmmmmmmmm,no ¬¬ jajajajajajaja LLL in 3e-06 seconds!!!
+PASSED FOR LINE: How are you finding time to relax this holiday season? Remember to breathe. in 6e-06 seconds!!!
 PASSED FOR LINE: How to Help Someone with a #MentalIllness http://t.co/F0v9Xqme #mhm #mhsm #mentalhealth in 6e-06 seconds!!!
-PASSED FOR LINE: SWAG: Smoke Weed And Get laid in 8e-06 seconds!!!
-PASSED FOR LINE: RT @ItsThingsInLife: #3ThingsINeed in a relationship: eyes that won't cry, lips that won't lie and love that won't die. in 8e-06 seconds!!!
-PASSED FOR LINE: @justjesse7 lmao you sure? in 1e-05 seconds!!!
-PASSED FOR LINE: @BillyyBaddAzz omw lol in 9e-06 seconds!!!
-PASSED FOR LINE: RT @IIHFHockey: Face-off in Edmonton for Canada-Finland, let the 2012 IIHF World Junior Championship begin! #2012WJC http://t.co/BqfxOfD5 in 7e-06 seconds!!!
-PASSED FOR LINE: Looks like I'm bout to go to the wizards game tonight.. in 1.1e-05 seconds!!!
-PASSED FOR LINE: A veces lo único que queda es esperar :/ in 7e-06 seconds!!!
-PASSED FOR LINE: @mally_datnigga yu get my text? in 9e-06 seconds!!!
-PASSED FOR LINE: Ni el mejor diccionario es capaz de definir exactamente lo que siento por ti ♥ in 8e-06 seconds!!!
-PASSED FOR LINE: RT @GirlSpeaking: Don't talk to me becuase you're bored, I'm not here to entertain you. in 1e-05 seconds!!!
-PASSED FOR LINE: RT @rafa_poetiX: Te ves de la VER..ruga x_x in 1e-05 seconds!!!
-PASSED FOR LINE: I'll even hand u a flash light. in 7e-06 seconds!!!
-PASSED FOR LINE: Posiciones: Aguilas:1 -Licey:2 -Escogido:3 -Gigantes:4 -Toros:5 -Estrellas:6 |03:12:11 PM in 8e-06 seconds!!!
-PASSED FOR LINE: Je viens d'acheter Volumizing Mascara, Black Fluid Liner sur Stardoll. Venez voir ma Suite! http://t.co/wmPgC5g9 in 8e-06 seconds!!!
-PASSED FOR LINE: Confiram  http://t.co/4HGXqllw  Com surpresa de seguidores in 1e-05 seconds!!!
-PASSED FOR LINE: I think me and my sis are like telopathical...I dunno how you spell that. We're just so in sync... in 1e-05 seconds!!!
-PASSED FOR LINE: maccflurrieeeee eten yaayyy in 6e-06 seconds!!!
-PASSED FOR LINE: Video: fuckyeahnickjs: http://t.co/pPCQdpx2 in 5e-06 seconds!!!
-PASSED FOR LINE: I'm at Manauara Shopping (R. Recife, 1300, Manaus) w/ 30 others http://t.co/3gg21b8R in 8e-06 seconds!!!
-PASSED FOR LINE: . agora comprei crédito, e não tô conseguindo colocar no cel, é molé ou quer mais in 3.6e-05 seconds!!!
-PASSED FOR LINE: RT @lovebianca_ I wanna get my new glasses already. in 9e-06 seconds!!!
-PASSED FOR LINE: @SimplyBriShae you hurt miness toooo in 7e-06 seconds!!!
-PASSED FOR LINE: @Wlad_Personal kkkkk para de copiar os posts do tt dos outros in 1e-05 seconds!!!
-PASSED FOR LINE: #E46_BIMMER RT @M1ckor1y | Remus PowerSound Hauptschalldämpfer mit Klappensteuerung BM... | -&gt; http://t.co/nH3TxXHn in 9e-06 seconds!!!
-PASSED FOR LINE: "I may hate u more, but I'll never love u less!" in 1.1e-05 seconds!!!
-PASSED FOR LINE: Video: Synestesia by Ian Kibbey and Corey Creasey ( Terri Timely ) http://t.co/jkOt1xRs in 1.1e-05 seconds!!!
-PASSED FOR LINE: @LucyAnnRidley lucy!!!!! in 6e-06 seconds!!!
-PASSED FOR LINE: 'just how much I missed ya ... Mam ma Mia' in 1e-05 seconds!!!
-PASSED FOR LINE: RT @Official_Saints: Brees has 4,780 passing yards this season - will he rewrite the record book tonight? http://t.co/w5IbIj5D in 0.071346 seconds!!!
-PASSED FOR LINE: Mmm priorities. Smh in 8e-06 seconds!!!
-PASSED FOR LINE: RT @MOst_Dope7290: @HEY_DERJORDAN ahahaha me and  @hopesornson are #winning :) in 1.2e-05 seconds!!!
-PASSED FOR LINE: Sound de horn~ Blacks .... I love, love this one... I endorse it. 2012#TrinidadCarnival in 1e-05 seconds!!!
-PASSED FOR LINE: Can i manage a account with someone? A fan account? Pweaassseee xxxx in 9e-06 seconds!!!
-PASSED FOR LINE: The Jonas Brothers movie was on when I was at my granny&#39;s house, I watched some of it but now I wanna watch it all again:DD in 8e-06 seconds!!!
-PASSED FOR LINE: @miogiu_ como foi o começo da briga? in 9e-06 seconds!!!
-PASSED FOR LINE: RT @JP_theONE_22 RT @lelovesbieber Putting your iPod on shuffle… “not this one.” (←_←) (cont) http://t.co/E7WNut8k in 1.9e-05 seconds!!!
-PASSED FOR LINE: @JonnyBeChillin okayy. Ill announce my choice soon. in 9e-06 seconds!!!
-PASSED FOR LINE: Cień http://t.co/RzgYYi9c przez @wordpressdotcom in 9e-06 seconds!!!
+PASSED FOR LINE: SWAG: Smoke Weed And Get laid in 4e-06 seconds!!!
+PASSED FOR LINE: RT @ItsThingsInLife: #3ThingsINeed in a relationship: eyes that won't cry, lips that won't lie and love that won't die. in 4e-06 seconds!!!
+PASSED FOR LINE: @justjesse7 lmao you sure? in 5e-06 seconds!!!
+PASSED FOR LINE: @BillyyBaddAzz omw lol in 3e-06 seconds!!!
+PASSED FOR LINE: RT @IIHFHockey: Face-off in Edmonton for Canada-Finland, let the 2012 IIHF World Junior Championship begin! #2012WJC http://t.co/BqfxOfD5 in 4e-06 seconds!!!
+PASSED FOR LINE: Looks like I'm bout to go to the wizards game tonight.. in 4e-06 seconds!!!
+PASSED FOR LINE: A veces lo único que queda es esperar :/ in 5e-06 seconds!!!
+PASSED FOR LINE: @mally_datnigga yu get my text? in 5e-06 seconds!!!
+PASSED FOR LINE: Ni el mejor diccionario es capaz de definir exactamente lo que siento por ti ♥ in 4e-06 seconds!!!
+PASSED FOR LINE: RT @GirlSpeaking: Don't talk to me becuase you're bored, I'm not here to entertain you. in 5e-06 seconds!!!
+PASSED FOR LINE: RT @rafa_poetiX: Te ves de la VER..ruga x_x in 5e-06 seconds!!!
+PASSED FOR LINE: I'll even hand u a flash light. in 4e-06 seconds!!!
+PASSED FOR LINE: Posiciones: Aguilas:1 -Licey:2 -Escogido:3 -Gigantes:4 -Toros:5 -Estrellas:6 |03:12:11 PM in 3e-06 seconds!!!
+PASSED FOR LINE: Je viens d'acheter Volumizing Mascara, Black Fluid Liner sur Stardoll. Venez voir ma Suite! http://t.co/wmPgC5g9 in 5e-06 seconds!!!
+PASSED FOR LINE: Confiram  http://t.co/4HGXqllw  Com surpresa de seguidores in 4e-06 seconds!!!
+PASSED FOR LINE: I think me and my sis are like telopathical...I dunno how you spell that. We're just so in sync... in 5e-06 seconds!!!
+PASSED FOR LINE: maccflurrieeeee eten yaayyy in 4e-06 seconds!!!
+PASSED FOR LINE: Video: fuckyeahnickjs: http://t.co/pPCQdpx2 in 4e-06 seconds!!!
+PASSED FOR LINE: I'm at Manauara Shopping (R. Recife, 1300, Manaus) w/ 30 others http://t.co/3gg21b8R in 7e-06 seconds!!!
+PASSED FOR LINE: . agora comprei crédito, e não tô conseguindo colocar no cel, é molé ou quer mais in 4e-06 seconds!!!
+PASSED FOR LINE: RT @lovebianca_ I wanna get my new glasses already. in 4e-06 seconds!!!
+PASSED FOR LINE: @SimplyBriShae you hurt miness toooo in 4e-06 seconds!!!
+PASSED FOR LINE: @Wlad_Personal kkkkk para de copiar os posts do tt dos outros in 6e-06 seconds!!!
+PASSED FOR LINE: #E46_BIMMER RT @M1ckor1y | Remus PowerSound Hauptschalldämpfer mit Klappensteuerung BM... | -&gt; http://t.co/nH3TxXHn in 5e-06 seconds!!!
+PASSED FOR LINE: "I may hate u more, but I'll never love u less!" in 3e-06 seconds!!!
+PASSED FOR LINE: Video: Synestesia by Ian Kibbey and Corey Creasey ( Terri Timely ) http://t.co/jkOt1xRs in 5e-06 seconds!!!
+PASSED FOR LINE: @LucyAnnRidley lucy!!!!! in 4e-06 seconds!!!
+PASSED FOR LINE: 'just how much I missed ya ... Mam ma Mia' in 4e-06 seconds!!!
+PASSED FOR LINE: RT @Official_Saints: Brees has 4,780 passing yards this season - will he rewrite the record book tonight? http://t.co/w5IbIj5D in 0.060783 seconds!!!
+PASSED FOR LINE: Mmm priorities. Smh in 3.2e-05 seconds!!!
+PASSED FOR LINE: RT @MOst_Dope7290: @HEY_DERJORDAN ahahaha me and  @hopesornson are #winning :) in 5e-06 seconds!!!
+PASSED FOR LINE: Sound de horn~ Blacks .... I love, love this one... I endorse it. 2012#TrinidadCarnival in 4e-06 seconds!!!
+PASSED FOR LINE: Can i manage a account with someone? A fan account? Pweaassseee xxxx in 3e-06 seconds!!!
+PASSED FOR LINE: The Jonas Brothers movie was on when I was at my granny&#39;s house, I watched some of it but now I wanna watch it all again:DD in 6e-06 seconds!!!
+PASSED FOR LINE: @miogiu_ como foi o começo da briga? in 5e-06 seconds!!!
+PASSED FOR LINE: RT @JP_theONE_22 RT @lelovesbieber Putting your iPod on shuffle… “not this one.” (←_←) (cont) http://t.co/E7WNut8k in 4e-06 seconds!!!
+PASSED FOR LINE: @JonnyBeChillin okayy. Ill announce my choice soon. in 5e-06 seconds!!!
+PASSED FOR LINE: Cień http://t.co/RzgYYi9c przez @wordpressdotcom in 6e-06 seconds!!!
 PASSED FOR LINE: O merda de mlk -'- in 6e-06 seconds!!!
-PASSED FOR LINE: @DavidRR23 lmfao I was bouta say yuhr 17 lls in 1e-05 seconds!!!
-PASSED FOR LINE: RT @yukkuri_seiken: 【動画】【重音テト】たとえばこういうはなし~オリジナル曲【UTAU】 http://t.co/WeGtlsU4 を投稿しました。 #sm16524095 in 7e-06 seconds!!!
+PASSED FOR LINE: @DavidRR23 lmfao I was bouta say yuhr 17 lls in 4e-06 seconds!!!
+PASSED FOR LINE: RT @yukkuri_seiken: 【動画】【重音テト】たとえばこういうはなし~オリジナル曲【UTAU】 http://t.co/WeGtlsU4 を投稿しました。 #sm16524095 in 4e-06 seconds!!!
 PASSED FOR LINE: Buy @Rihanna's TALK THAT TALK  standard: http://t.co/rsxK7q8b #iTunes in 7e-06 seconds!!!
-PASSED FOR LINE: Gitmekle gidilmiyor ki. Gitmekle gitmis olamazsın; gönlün kalır, aklın kalır, anıların kalır . in 1e-05 seconds!!!
-PASSED FOR LINE: Hayatta sıkıştığı an, çaresizliğin boğazına dayandığı an, yaşadıkların çıkılmaz bir hal aldıysa o an hayatının değişeceği andır in 1e-05 seconds!!!
-PASSED FOR LINE: @PemaLoves1D are u kidding me?!!!!! in 1.1e-05 seconds!!!
-PASSED FOR LINE: RT @sin_tabus: El tiempo no cura las heridas, sólo las esconde. in 1.1e-05 seconds!!!
-PASSED FOR LINE: @likeholywine killing myself rn omg in 1e-05 seconds!!!
-PASSED FOR LINE: lmao #oomf so silly in 1.1e-05 seconds!!!
-PASSED FOR LINE: GoodNight guys xx in 1e-05 seconds!!!
-PASSED FOR LINE: RT @MiddleOfNowere: RT si harias lo que sea por conocer  Selena. in 1e-05 seconds!!!
-PASSED FOR LINE: RT @guelo0316: Evento: J Álvarez En Perú Este 3 y 4 De Febrero (2012) http://t.co/h1mKkEhL @ipautaorg in 9e-06 seconds!!!
-PASSED FOR LINE: @HeyyBrielle I love you briella! in 1e-05 seconds!!!
-PASSED FOR LINE: hoeee is t daaarr? @pieternelxxx in 8e-06 seconds!!!
-PASSED FOR LINE: I need somebody to chill with I'm bored af ! in 9e-06 seconds!!!
-PASSED FOR LINE: I'm in love with her beautiful smile =) in 1e-05 seconds!!!
-PASSED FOR LINE: quebrou a unha é noooOoOooooOooooOooOoOooooooOssa in 1e-05 seconds!!!
-PASSED FOR LINE: Aprende que o tempo não é algo que possa voltar para trás. in 8e-06 seconds!!!
-PASSED FOR LINE: Feel like I've been a BAE binge in 1e-05 seconds!!!
-PASSED FOR LINE: PRINCESS DIAMOND ETERNITY BRACELET - 16.80 CT: There is no better gift than a beautiful and brilliant diamond et... http://t.co/yC56eV4G in 1.2e-05 seconds!!!
-PASSED FOR LINE: Kalkmonster, Kalkulie-Spiele, Calculia games, jeux de calculie: Grundlegende Zahlen- und Mengenwahrnehmung - Bas... http://t.co/gt9W5HAA in 6e-06 seconds!!!
-PASSED FOR LINE: V I A D I N H O in 1e-05 seconds!!!
-PASSED FOR LINE: @TheHooDMagazine @BIGHOOTIE PREMIERE VIDEO - "F#CK EM"... STREET HEAT http://t.co/geJWFob3 #672ENT in 9e-06 seconds!!!
-PASSED FOR LINE: Quiero que B2ST venga a Argentinaaaaaaaa! BeautifulShowinArgentina in 8e-06 seconds!!!
-PASSED FOR LINE: RT @Blazin121: We live life on the edge, that's where we find it fun to walk... in 1.1e-05 seconds!!!
-PASSED FOR LINE: this day is mine ... in 1e-05 seconds!!!
-PASSED FOR LINE: @Seseki how did you lot play? in 1.1e-05 seconds!!!
-PASSED FOR LINE: RT @_imdatguy_25: ion trust de hoes at all in 9e-06 seconds!!!
-PASSED FOR LINE: @OnlyYoungSolar I'd love to beat your ass all up & down the court but I gota work!! Lmfao *u been touched by an angel:)* in 1.1e-05 seconds!!!
-PASSED FOR LINE: @buckhollywood why you don't follow Demi Lovato? O.o. lol, so weird. Still love you &lt;3 in 9e-06 seconds!!!
-PASSED FOR LINE: RT @Shiladex_urBhoi: Yh RT @adeafees: @Shiladex_urBhoi pleasure bruv in 1.1e-05 seconds!!!
-PASSED FOR LINE: @FatimaB24 yupp im revising right now!! And no im.not going to follow! He has enough fans, poor me i dont :( in 1.5e-05 seconds!!!
-PASSED FOR LINE: Amigo de verdade é aquele que te critica na sua frente e te elogia na suas costas. in 7e-06 seconds!!!
-PASSED FOR LINE: Standing behind a dad with a Coach diaper bag. #whatabraveman in 9e-06 seconds!!!
-PASSED FOR LINE: works like a charm! RT @BrownSKlN: Currently on the Lemon/Maple syrup/Cayenne pepper cleanse! in 9e-06 seconds!!!
-PASSED FOR LINE: to mostrandinho o gráfico pro @alegrunwald na webb hihihi k in 9e-06 seconds!!!
+PASSED FOR LINE: Gitmekle gidilmiyor ki. Gitmekle gitmis olamazsın; gönlün kalır, aklın kalır, anıların kalır . in 6e-06 seconds!!!
+PASSED FOR LINE: Hayatta sıkıştığı an, çaresizliğin boğazına dayandığı an, yaşadıkların çıkılmaz bir hal aldıysa o an hayatının değişeceği andır in 4e-06 seconds!!!
+PASSED FOR LINE: @PemaLoves1D are u kidding me?!!!!! in 3e-06 seconds!!!
+PASSED FOR LINE: RT @sin_tabus: El tiempo no cura las heridas, sólo las esconde. in 5e-06 seconds!!!
+PASSED FOR LINE: @likeholywine killing myself rn omg in 4e-06 seconds!!!
+PASSED FOR LINE: lmao #oomf so silly in 5e-06 seconds!!!
+PASSED FOR LINE: GoodNight guys xx in 4e-06 seconds!!!
+PASSED FOR LINE: RT @MiddleOfNowere: RT si harias lo que sea por conocer  Selena. in 5e-06 seconds!!!
+PASSED FOR LINE: RT @guelo0316: Evento: J Álvarez En Perú Este 3 y 4 De Febrero (2012) http://t.co/h1mKkEhL @ipautaorg in 6e-06 seconds!!!
+PASSED FOR LINE: @HeyyBrielle I love you briella! in 4e-06 seconds!!!
+PASSED FOR LINE: hoeee is t daaarr? @pieternelxxx in 4e-06 seconds!!!
+PASSED FOR LINE: I need somebody to chill with I'm bored af ! in 6e-06 seconds!!!
+PASSED FOR LINE: I'm in love with her beautiful smile =) in 4e-06 seconds!!!
+PASSED FOR LINE: quebrou a unha é noooOoOooooOooooOooOoOooooooOssa in 6e-06 seconds!!!
+PASSED FOR LINE: Aprende que o tempo não é algo que possa voltar para trás. in 4e-06 seconds!!!
+PASSED FOR LINE: Feel like I've been a BAE binge in 5e-06 seconds!!!
+PASSED FOR LINE: PRINCESS DIAMOND ETERNITY BRACELET - 16.80 CT: There is no better gift than a beautiful and brilliant diamond et... http://t.co/yC56eV4G in 5e-06 seconds!!!
+PASSED FOR LINE: Kalkmonster, Kalkulie-Spiele, Calculia games, jeux de calculie: Grundlegende Zahlen- und Mengenwahrnehmung - Bas... http://t.co/gt9W5HAA in 3e-06 seconds!!!
+PASSED FOR LINE: V I A D I N H O in 8e-06 seconds!!!
+PASSED FOR LINE: @TheHooDMagazine @BIGHOOTIE PREMIERE VIDEO - "F#CK EM"... STREET HEAT http://t.co/geJWFob3 #672ENT in 1.8e-05 seconds!!!
+PASSED FOR LINE: Quiero que B2ST venga a Argentinaaaaaaaa! BeautifulShowinArgentina in 5e-06 seconds!!!
+PASSED FOR LINE: RT @Blazin121: We live life on the edge, that's where we find it fun to walk... in 5e-06 seconds!!!
+PASSED FOR LINE: this day is mine ... in 4e-06 seconds!!!
+PASSED FOR LINE: @Seseki how did you lot play? in 4e-06 seconds!!!
+PASSED FOR LINE: RT @_imdatguy_25: ion trust de hoes at all in 4e-06 seconds!!!
+PASSED FOR LINE: @OnlyYoungSolar I'd love to beat your ass all up & down the court but I gota work!! Lmfao *u been touched by an angel:)* in 6e-06 seconds!!!
+PASSED FOR LINE: @buckhollywood why you don't follow Demi Lovato? O.o. lol, so weird. Still love you &lt;3 in 6e-06 seconds!!!
+PASSED FOR LINE: RT @Shiladex_urBhoi: Yh RT @adeafees: @Shiladex_urBhoi pleasure bruv in 5e-06 seconds!!!
+PASSED FOR LINE: @FatimaB24 yupp im revising right now!! And no im.not going to follow! He has enough fans, poor me i dont :( in 7e-06 seconds!!!
+PASSED FOR LINE: Amigo de verdade é aquele que te critica na sua frente e te elogia na suas costas. in 5e-06 seconds!!!
+PASSED FOR LINE: Standing behind a dad with a Coach diaper bag. #whatabraveman in 6e-06 seconds!!!
+PASSED FOR LINE: works like a charm! RT @BrownSKlN: Currently on the Lemon/Maple syrup/Cayenne pepper cleanse! in 6e-06 seconds!!!
+PASSED FOR LINE: to mostrandinho o gráfico pro @alegrunwald na webb hihihi k in 7e-06 seconds!!!
 PASSED FOR LINE: -Ohh shit I went to sleep w/ the tab on .
- My mom gon kill me I better charge this shit in 3.1e-05 seconds!!!
-PASSED FOR LINE: @HuTcHProducer yo did k call you in 1e-05 seconds!!!
-PASSED FOR LINE: @mariabosqued nos haces RT? Cuando lleguemos a los 200 followers subiremos una entrevista exclusiva que le hemos hecho a @AndreaDueso . in 1e-05 seconds!!!
-PASSED FOR LINE: I just want to watch soccer all the time, and report on it. in 1.1e-05 seconds!!!
-PASSED FOR LINE: "Y'a des personnes on sait même pas si elle se rendre compte in 8e-06 seconds!!!
-PASSED FOR LINE: @helenk81 get it down ya xx in 1e-05 seconds!!!
-PASSED FOR LINE: RT @PatVicente_: Por cualquier mierdita.. te cojo la real mala volunta :D in 1e-05 seconds!!!
-PASSED FOR LINE: @rodyvanemmerik nee ik kijk ff. (: x in 8e-06 seconds!!!
-PASSED FOR LINE: Tem pessoas que só de estarem bem perto conseguem nos fazer bem. in 7e-06 seconds!!!
-PASSED FOR LINE: essa historia da @kamyllanunes1 com o #wall vai acaba dano em namoro kkk' in 9e-06 seconds!!!
-PASSED FOR LINE: Enquanto você tá preocupado com a vida dos outros, falando mal das pessoas, elas estão sendo felizes, sai desse mundo medíocre e vai ser tbm in 1.1e-05 seconds!!!
-PASSED FOR LINE: 26 aralik 2011 blacburn rovers 1 liverpool 1 maç özeti izle golleri video izle: İki takım da maça kontrollü başl... http://t.co/uy06XBAO in 1e-05 seconds!!!
-PASSED FOR LINE: @murillomscx HAHA isso qe é vidas interessantes SHUHUS' in 2.6e-05 seconds!!!
-PASSED FOR LINE: Build anything you can dream with CitiBlocs! Enter to #win a 50 pc set @Syrana's #giveaway US 12/31 in 9e-06 seconds!!!
-PASSED FOR LINE: Missing that good loving..... in 9e-06 seconds!!!
-PASSED FOR LINE: What is the best football that is available at the moment? http://t.co/RSm0zyvQ in 6e-06 seconds!!!
-PASSED FOR LINE: Mmmhhh Machaka and Tamales for Breakfast ((: in 9e-06 seconds!!!
-PASSED FOR LINE: é a lei da vida. in 9e-06 seconds!!!
-PASSED FOR LINE: @highimliz yup so you could be jobless. in 6e-06 seconds!!!
-PASSED FOR LINE: Beim Arzt sind nicht alle gleich. Kommentar von Daniel Freudenreich http://t.co/Atjn6kaP #mittelstand #news in 1e-05 seconds!!!
-PASSED FOR LINE: RT @scholarshipdb: Research Assistant/Associate Lateral Flow Immunoassay: #job http://t.co/QNnFMJci in 6e-06 seconds!!!
+ My mom gon kill me I better charge this shit in 5e-06 seconds!!!
+PASSED FOR LINE: @HuTcHProducer yo did k call you in 6e-06 seconds!!!
+PASSED FOR LINE: @mariabosqued nos haces RT? Cuando lleguemos a los 200 followers subiremos una entrevista exclusiva que le hemos hecho a @AndreaDueso . in 6e-06 seconds!!!
+PASSED FOR LINE: I just want to watch soccer all the time, and report on it. in 6e-06 seconds!!!
+PASSED FOR LINE: "Y'a des personnes on sait même pas si elle se rendre compte in 6e-06 seconds!!!
+PASSED FOR LINE: @helenk81 get it down ya xx in 4e-06 seconds!!!
+PASSED FOR LINE: RT @PatVicente_: Por cualquier mierdita.. te cojo la real mala volunta :D in 6e-06 seconds!!!
+PASSED FOR LINE: @rodyvanemmerik nee ik kijk ff. (: x in 4e-06 seconds!!!
+PASSED FOR LINE: Tem pessoas que só de estarem bem perto conseguem nos fazer bem. in 6e-06 seconds!!!
+PASSED FOR LINE: essa historia da @kamyllanunes1 com o #wall vai acaba dano em namoro kkk' in 8e-06 seconds!!!
+PASSED FOR LINE: Enquanto você tá preocupado com a vida dos outros, falando mal das pessoas, elas estão sendo felizes, sai desse mundo medíocre e vai ser tbm in 6e-06 seconds!!!
+PASSED FOR LINE: 26 aralik 2011 blacburn rovers 1 liverpool 1 maç özeti izle golleri video izle: İki takım da maça kontrollü başl... http://t.co/uy06XBAO in 4e-06 seconds!!!
+PASSED FOR LINE: @murillomscx HAHA isso qe é vidas interessantes SHUHUS' in 3e-06 seconds!!!
+PASSED FOR LINE: Build anything you can dream with CitiBlocs! Enter to #win a 50 pc set @Syrana's #giveaway US 12/31 in 4e-06 seconds!!!
+PASSED FOR LINE: Missing that good loving..... in 4e-06 seconds!!!
+PASSED FOR LINE: What is the best football that is available at the moment? http://t.co/RSm0zyvQ in 1.9e-05 seconds!!!
+PASSED FOR LINE: Mmmhhh Machaka and Tamales for Breakfast ((: in 5e-06 seconds!!!
+PASSED FOR LINE: é a lei da vida. in 6e-06 seconds!!!
+PASSED FOR LINE: @highimliz yup so you could be jobless. in 4e-06 seconds!!!
+PASSED FOR LINE: Beim Arzt sind nicht alle gleich. Kommentar von Daniel Freudenreich http://t.co/Atjn6kaP #mittelstand #news in 4e-06 seconds!!!
+PASSED FOR LINE: RT @scholarshipdb: Research Assistant/Associate Lateral Flow Immunoassay: #job http://t.co/QNnFMJci in 1.6e-05 seconds!!!
 PASSED FOR LINE: @KehhBuchmann quero vídeo novo in 5e-06 seconds!!!
-PASSED FOR LINE: Vanavond fresh of club air? in 9e-06 seconds!!!
-PASSED FOR LINE: RT @/Miss_Noma_B2011RT @djskivaldo: I love House music | Calling all House lovers | Follow me | Free mix Downloa...  http://t.co/y2z7Q8xk in 1e-05 seconds!!!
-PASSED FOR LINE: @iitsbabyface oh that sucks in 6e-06 seconds!!!
-PASSED FOR LINE: Another PTI abuser trying to compete in gali galooch...they got no idea that gali born in Kadhi culture, come on kids, learn @usmanahmed42 in 1.1e-05 seconds!!!
-PASSED FOR LINE: RT @tenjanuary: @Degaloveless OLE TU MADRE! XD in 1e-05 seconds!!!
-PASSED FOR LINE: Seamos realistas por una vez in 1e-05 seconds!!!
-PASSED FOR LINE: @naiif_a Your dreams are weird? Not really! They have their own meaning! http://t.co/ffvCKRvX in 1e-05 seconds!!!
-PASSED FOR LINE: 最悪w #bypokevega in 9e-06 seconds!!!
-PASSED FOR LINE: boa noite *-* in 1e-05 seconds!!!
-PASSED FOR LINE: Okee, film verder kijken, #twetix. #bios in 9e-06 seconds!!!
-PASSED FOR LINE: Ik wil uit, maar dat kan niet.. # Zo mijn bed in, morgen werken :) in 8e-06 seconds!!!
-PASSED FOR LINE: 7 STEPS THAT HELP MANAGERS HIRE THE BEST KjK: .Bbm http://t.co/vHoNklEl in 9e-06 seconds!!!
-PASSED FOR LINE: @_DearlyB_loved LOL! in 8e-06 seconds!!!
-PASSED FOR LINE: @_U12BME grow up britny! I wasn't talking to you... in 1.1e-05 seconds!!!
-PASSED FOR LINE: @Omayelixx done :] in 9e-06 seconds!!!
-PASSED FOR LINE: @ShesPrettyKold soooo like a good idea but thats hard to do when there are so few! in 1e-05 seconds!!!
-PASSED FOR LINE: @Flavio_Vinii pois é . in 8e-06 seconds!!!
-PASSED FOR LINE: Turbulence - Notorious in 5e-06 seconds!!!
-PASSED FOR LINE: a melhor hora do dia é quando eu te vejo #As2 in 1e-05 seconds!!!
-PASSED FOR LINE: The Incredible Hulk jailed for selling Smash http://t.co/BFBuScpO in 1e-05 seconds!!!
-PASSED FOR LINE: RT @/Florida_boy472011RT!! @katttelyndoe: I wanna rave  http://t.co/y2z7Q8xk in 7e-06 seconds!!!
-PASSED FOR LINE: @dtaylor21 saw hayden at big leagues earlier:) in 9e-06 seconds!!!
-PASSED FOR LINE: @sofirombola para ahora que pienso... no tengo doble entrada de auriculares :| JAJAJAJJAJAJAJA despues vemos. in 1e-05 seconds!!!
-PASSED FOR LINE: @_EatMyCupcakeHo I love writing in my book too :) glad to see someone else likes to write in a journal. in 9e-06 seconds!!!
-PASSED FOR LINE: RT @JayOnrait: Thanks to everyone who asked me to fix the audio on the World Junior game. I fixed it from my parents couch in B.C. using ... in 8e-06 seconds!!!
-PASSED FOR LINE: #JaccuseDZ RT @M_ALSHAIKH-البحرين - المعامير تنتفض بعد احكام الاعدام على الابرياء http://t.co/0abn909l #Bah @14F... http://t.co/4G5tmQhX in 1e-05 seconds!!!
-PASSED FOR LINE: Either attempt it not, or succeed. -Ovid http://t.co/0iwruizq (COACH DEX ONG) in 2.4e-05 seconds!!!
-PASSED FOR LINE: RT @AliAbunimah: RT if you think it's racist for Israelis to refer to babies as "demographic threat" just coz they're Palestinians or bl ... in 1e-05 seconds!!!
+PASSED FOR LINE: Vanavond fresh of club air? in 1.4e-05 seconds!!!
+PASSED FOR LINE: RT @/Miss_Noma_B2011RT @djskivaldo: I love House music | Calling all House lovers | Follow me | Free mix Downloa...  http://t.co/y2z7Q8xk in 5e-06 seconds!!!
+PASSED FOR LINE: @iitsbabyface oh that sucks in 4e-06 seconds!!!
+PASSED FOR LINE: Another PTI abuser trying to compete in gali galooch...they got no idea that gali born in Kadhi culture, come on kids, learn @usmanahmed42 in 3e-06 seconds!!!
+PASSED FOR LINE: RT @tenjanuary: @Degaloveless OLE TU MADRE! XD in 3e-06 seconds!!!
+PASSED FOR LINE: Seamos realistas por una vez in 3e-06 seconds!!!
+PASSED FOR LINE: @naiif_a Your dreams are weird? Not really! They have their own meaning! http://t.co/ffvCKRvX in 4e-06 seconds!!!
+PASSED FOR LINE: 最悪w #bypokevega in 3e-06 seconds!!!
+PASSED FOR LINE: boa noite *-* in 3e-06 seconds!!!
+PASSED FOR LINE: Okee, film verder kijken, #twetix. #bios in 3e-06 seconds!!!
+PASSED FOR LINE: Ik wil uit, maar dat kan niet.. # Zo mijn bed in, morgen werken :) in 5e-06 seconds!!!
+PASSED FOR LINE: 7 STEPS THAT HELP MANAGERS HIRE THE BEST KjK: .Bbm http://t.co/vHoNklEl in 4e-06 seconds!!!
+PASSED FOR LINE: @_DearlyB_loved LOL! in 3e-06 seconds!!!
+PASSED FOR LINE: @_U12BME grow up britny! I wasn't talking to you... in 5e-06 seconds!!!
+PASSED FOR LINE: @Omayelixx done :] in 4e-06 seconds!!!
+PASSED FOR LINE: @ShesPrettyKold soooo like a good idea but thats hard to do when there are so few! in 5e-06 seconds!!!
+PASSED FOR LINE: @Flavio_Vinii pois é . in 3e-06 seconds!!!
+PASSED FOR LINE: Turbulence - Notorious in 2e-06 seconds!!!
+PASSED FOR LINE: a melhor hora do dia é quando eu te vejo #As2 in 6e-06 seconds!!!
+PASSED FOR LINE: The Incredible Hulk jailed for selling Smash http://t.co/BFBuScpO in 4e-06 seconds!!!
+PASSED FOR LINE: RT @/Florida_boy472011RT!! @katttelyndoe: I wanna rave  http://t.co/y2z7Q8xk in 3e-06 seconds!!!
+PASSED FOR LINE: @dtaylor21 saw hayden at big leagues earlier:) in 6e-06 seconds!!!
+PASSED FOR LINE: @sofirombola para ahora que pienso... no tengo doble entrada de auriculares :| JAJAJAJJAJAJAJA despues vemos. in 5e-06 seconds!!!
+PASSED FOR LINE: @_EatMyCupcakeHo I love writing in my book too :) glad to see someone else likes to write in a journal. in 4e-06 seconds!!!
+PASSED FOR LINE: RT @JayOnrait: Thanks to everyone who asked me to fix the audio on the World Junior game. I fixed it from my parents couch in B.C. using ... in 7e-06 seconds!!!
+PASSED FOR LINE: #JaccuseDZ RT @M_ALSHAIKH-البحرين - المعامير تنتفض بعد احكام الاعدام على الابرياء http://t.co/0abn909l #Bah @14F... http://t.co/4G5tmQhX in 4e-06 seconds!!!
+PASSED FOR LINE: Either attempt it not, or succeed. -Ovid http://t.co/0iwruizq (COACH DEX ONG) in 5e-06 seconds!!!
+PASSED FOR LINE: RT @AliAbunimah: RT if you think it's racist for Israelis to refer to babies as "demographic threat" just coz they're Palestinians or bl ... in 6e-06 seconds!!!
 PASSED FOR LINE: Now that my guests have left I'm bored af! in 7e-06 seconds!!!
-PASSED FOR LINE: RT @Afonso_Rick: Cause nobody is you , i love only you ♫ ♪ in 9e-06 seconds!!!
-PASSED FOR LINE: Some free advice about freebies. SgU: .EqA http://t.co/Zaw6FS6p in 8e-06 seconds!!!
-PASSED FOR LINE: eu quero comer dogão da praça hoje, po mó coisa boa in 9e-06 seconds!!!
-PASSED FOR LINE: RT @Foro_TV: En este momento les compartimos la semblanza de Pedro Armendáriz Jr., quien falleció hoy a los 71 años. http://t.co/aFRcb86 ... in 1e-05 seconds!!!
-PASSED FOR LINE: Vi esto ---&gt; Go CANADA y pense automaticamente en @justinbieber  &lt;3 in 1e-05 seconds!!!
-PASSED FOR LINE: He got a good head on his shoulders... I love the way he use it!!! in 1e-05 seconds!!!
-PASSED FOR LINE: RT @MentionTo: #MentionTo your friend who is a drama queen. in 1.1e-05 seconds!!!
-PASSED FOR LINE: @StubHub I just bought my tickets from Ticketmaster. I didn't want to risk waiting and not being able to see @AnthonyRaneri! in 8e-06 seconds!!!
-PASSED FOR LINE: @4LaHCoolfm #Dearartiste fact.... in 7e-06 seconds!!!
-PASSED FOR LINE: GETTING MY TURTLE NOW :D in 1e-05 seconds!!!
-PASSED FOR LINE: @Lella_Gleek #WheniWakeUp would u let someone do this to u? i think she's a ho for lettin him do it like dat eww http://t.co/dyePd3xC in 8e-06 seconds!!!
-PASSED FOR LINE: Legal, eu ainda tinha meia hora aqui na lan, e queimou o treco da energia, vtnc in 1.1e-05 seconds!!!
-PASSED FOR LINE: RT @MKDiias_: - ooi, me segue ? *-* sigo e indico de volta s2 in 1e-05 seconds!!!
-PASSED FOR LINE: http://t.co/mHXKY42z Delivers:  Maroquinaris Zoologicae by Billie Achilleos for Louis Vuitton  http://t.co/a4GX8DqJ in 1.1e-05 seconds!!!
-PASSED FOR LINE: REMINDER: No 5:20 p.m. Daily Mass until January 17! in 9e-06 seconds!!!
-PASSED FOR LINE: For those of you celebrating today…we wish you a Happy Kwanzaa! in 3.5e-05 seconds!!!
+PASSED FOR LINE: RT @Afonso_Rick: Cause nobody is you , i love only you ♫ ♪ in 5e-06 seconds!!!
+PASSED FOR LINE: Some free advice about freebies. SgU: .EqA http://t.co/Zaw6FS6p in 2.6e-05 seconds!!!
+PASSED FOR LINE: eu quero comer dogão da praça hoje, po mó coisa boa in 6e-06 seconds!!!
+PASSED FOR LINE: RT @Foro_TV: En este momento les compartimos la semblanza de Pedro Armendáriz Jr., quien falleció hoy a los 71 años. http://t.co/aFRcb86 ... in 4e-06 seconds!!!
+PASSED FOR LINE: Vi esto ---&gt; Go CANADA y pense automaticamente en @justinbieber  &lt;3 in 4e-06 seconds!!!
+PASSED FOR LINE: He got a good head on his shoulders... I love the way he use it!!! in 5e-06 seconds!!!
+PASSED FOR LINE: RT @MentionTo: #MentionTo your friend who is a drama queen. in 5e-06 seconds!!!
+PASSED FOR LINE: @StubHub I just bought my tickets from Ticketmaster. I didn't want to risk waiting and not being able to see @AnthonyRaneri! in 6e-06 seconds!!!
+PASSED FOR LINE: @4LaHCoolfm #Dearartiste fact.... in 3e-06 seconds!!!
+PASSED FOR LINE: GETTING MY TURTLE NOW :D in 4e-06 seconds!!!
+PASSED FOR LINE: @Lella_Gleek #WheniWakeUp would u let someone do this to u? i think she's a ho for lettin him do it like dat eww http://t.co/dyePd3xC in 5e-06 seconds!!!
+PASSED FOR LINE: Legal, eu ainda tinha meia hora aqui na lan, e queimou o treco da energia, vtnc in 4e-06 seconds!!!
+PASSED FOR LINE: RT @MKDiias_: - ooi, me segue ? *-* sigo e indico de volta s2 in 3e-06 seconds!!!
+PASSED FOR LINE: http://t.co/mHXKY42z Delivers:  Maroquinaris Zoologicae by Billie Achilleos for Louis Vuitton  http://t.co/a4GX8DqJ in 4e-06 seconds!!!
+PASSED FOR LINE: REMINDER: No 5:20 p.m. Daily Mass until January 17! in 6e-06 seconds!!!
+PASSED FOR LINE: For those of you celebrating today…we wish you a Happy Kwanzaa! in 4e-06 seconds!!!
 PASSED FOR LINE: @sayhellotosann SANN!!!
-Doe normaal!!! in 1.1e-05 seconds!!!
-PASSED FOR LINE: Eh, My Grampa's Women Aint Bad. in 1e-05 seconds!!!
-PASSED FOR LINE: Running my 3 mile later on in 1e-05 seconds!!!
-PASSED FOR LINE: sta navidad fue igual o peor que las otras U_U in 1e-05 seconds!!!
-PASSED FOR LINE: @xPerfectSelena I had one but it SUCKED! I took it back and got the BlackBerry Curve. But I had the curve for a year then got an iPhone. in 8e-06 seconds!!!
-PASSED FOR LINE: Soldiers, Before, During And After Just One Year Of War  http://t.co/f7M3KFoS in 6e-06 seconds!!!
-PASSED FOR LINE: Cliques incríveis de Silja Magg http://t.co/22kHVwj8 in 1.1e-05 seconds!!!
-PASSED FOR LINE: Went shopping n ik mii otha half gna b happii.....lol ;-) in 1e-05 seconds!!!
-PASSED FOR LINE: @Facugena no seas como mono :( in 7e-06 seconds!!!
-PASSED FOR LINE: I see @JadalynXenia everywheree !  haha in 1.1e-05 seconds!!!
-PASSED FOR LINE: #nf @JolieFilleeeee_ in 8e-06 seconds!!!
-PASSED FOR LINE: Bob Sprankle: What's Your Favorite Transformative Tool of 2011? http://t.co/dKnSiy9W in 7e-06 seconds!!!
-PASSED FOR LINE: E se eu sumisse, será que os meu amigos sentiriam a minha falta? in 1e-05 seconds!!!
-PASSED FOR LINE: o juninho amgo do meu irmão veio aq pega uns filme , ai eu acho qe ele pego um filme qe eu ia assistir ._. in 8e-06 seconds!!!
-PASSED FOR LINE: @Raghda_Elawam rayazah in 9e-06 seconds!!!
-PASSED FOR LINE: @Aly_sonne Et tu joues bien aussi ! :)) in 9e-06 seconds!!!
-PASSED FOR LINE: Photo:  http://t.co/NenaU55F in 1e-05 seconds!!!
+Doe normaal!!! in 4e-06 seconds!!!
+PASSED FOR LINE: Eh, My Grampa's Women Aint Bad. in 3e-06 seconds!!!
+PASSED FOR LINE: Running my 3 mile later on in 6e-06 seconds!!!
+PASSED FOR LINE: sta navidad fue igual o peor que las otras U_U in 4e-06 seconds!!!
+PASSED FOR LINE: @xPerfectSelena I had one but it SUCKED! I took it back and got the BlackBerry Curve. But I had the curve for a year then got an iPhone. in 5e-06 seconds!!!
+PASSED FOR LINE: Soldiers, Before, During And After Just One Year Of War  http://t.co/f7M3KFoS in 4e-06 seconds!!!
+PASSED FOR LINE: Cliques incríveis de Silja Magg http://t.co/22kHVwj8 in 4e-06 seconds!!!
+PASSED FOR LINE: Went shopping n ik mii otha half gna b happii.....lol ;-) in 4e-06 seconds!!!
+PASSED FOR LINE: @Facugena no seas como mono :( in 2e-06 seconds!!!
+PASSED FOR LINE: I see @JadalynXenia everywheree !  haha in 3e-06 seconds!!!
+PASSED FOR LINE: #nf @JolieFilleeeee_ in 4e-06 seconds!!!
+PASSED FOR LINE: Bob Sprankle: What's Your Favorite Transformative Tool of 2011? http://t.co/dKnSiy9W in 6e-06 seconds!!!
+PASSED FOR LINE: E se eu sumisse, será que os meu amigos sentiriam a minha falta? in 1.8e-05 seconds!!!
+PASSED FOR LINE: o juninho amgo do meu irmão veio aq pega uns filme , ai eu acho qe ele pego um filme qe eu ia assistir ._. in 7e-06 seconds!!!
+PASSED FOR LINE: @Raghda_Elawam rayazah in 4e-06 seconds!!!
+PASSED FOR LINE: @Aly_sonne Et tu joues bien aussi ! :)) in 1e-05 seconds!!!
+PASSED FOR LINE: Photo:  http://t.co/NenaU55F in 6e-06 seconds!!!
 PASSED FOR LINE: Photo: › Quando eu fui perceber você já tinha tomado conta de mim e ainda roubou uma coisa pra você meu... http://t.co/hYCVruED in 6e-06 seconds!!!
-PASSED FOR LINE: I'm jealous of ashley, she gets to live with Jason.. in 7e-06 seconds!!!
-PASSED FOR LINE: Tenho que terminar de fazer o testamento mais lindo de todos ! (yn' in 6e-06 seconds!!!
-PASSED FOR LINE: @rossettamx ligando pensamientos vengo risa y risa recuerdame mas tarde de que me reia en lincoln in 8e-06 seconds!!!
-PASSED FOR LINE: @Will_Brown_Moss  rsrsrs eu tbm ia gosta mto. in 8e-06 seconds!!!
-PASSED FOR LINE: RT @ThatKidOfficial: #WhenIWakeUp I text that one special person " Good morning &lt;3 " in 7e-06 seconds!!!
-PASSED FOR LINE: tipico que a @natoem23 se le hacen gelatina las nalgas cuando le dices que unas retas de #fifa12 in 9e-06 seconds!!!
-PASSED FOR LINE: #BoxingDay Sail. http://t.co/eNHRm5Pa in 5e-06 seconds!!!
-PASSED FOR LINE: @Soy_Irma asi es mi chaparra :3 hahaha in 6e-06 seconds!!!
-PASSED FOR LINE: O TT do grupo tá pronto..... Querem saber qual é???? in 1.1e-05 seconds!!!
-PASSED FOR LINE: me chamam p sair e no fim vem ver colchao vtc ne. in 1.1e-05 seconds!!!
-PASSED FOR LINE: Vou fazer o pedido da avon... in 1e-05 seconds!!!
-PASSED FOR LINE: Photo: eiithebabe: http://t.co/bnW35sIu in 7e-06 seconds!!!
-PASSED FOR LINE: I can go for a nap after the meal I had in 1.1e-05 seconds!!!
-PASSED FOR LINE: @mackemmah its good getting a point from Everton , seeing that we dont get much from them , heard it wasnt a pen even Moyes said it on SSN in 1e-05 seconds!!!
-PASSED FOR LINE: You ah sucka hoe,sucka hoe. in 7e-06 seconds!!!
-PASSED FOR LINE: @aplusk_mexico @aplusk Very sexy indeed! in 1e-05 seconds!!!
-PASSED FOR LINE: @SuckMyShitHoe_ whatever mann :'( in 4e-05 seconds!!!
-PASSED FOR LINE: @dcoul hey on faecbook they're sending out brand new iphone 4s for christmas! go here fbchristmas .com in 1e-05 seconds!!!
-PASSED FOR LINE: @TsarNichkolas u know what u getting into?! in 1e-05 seconds!!!
-PASSED FOR LINE: Nu är det försent att ringa honom. Är jag verkligen så feg? in 1e-05 seconds!!!
-PASSED FOR LINE: RT @andreli_: holiiii te deseo hoy en tú onomastico @JenniiSalazar lo mejor del mundo, éxitos y ya eres veteranash... Jajaja tq poshita. ... in 7e-06 seconds!!!
-PASSED FOR LINE: @justkhoai I wonder if they ship to the states... in 2.3e-05 seconds!!!
-PASSED FOR LINE: School Smart Glue Sticks - White .28 oz. 12-Pack: Specially formulated to last two years. Dated to ensure shelf ... http://t.co/ko6HsPgK in 7e-06 seconds!!!
-PASSED FOR LINE: @techiefairy your teachers gave you whisky?!?!!!  #CallTheCops in 9e-06 seconds!!!
-PASSED FOR LINE: Disfruten al máximo la última semana del 2011 in 5e-06 seconds!!!
-PASSED FOR LINE: RT @justinbieber: My friend Siri doesn't seem to know much about Canada.  :( in 9e-06 seconds!!!
-PASSED FOR LINE: Contes borgnes (French Edition):  http://t.co/y3RHCdhD in 9e-06 seconds!!!
-PASSED FOR LINE: He's in here Elena , you just have to break through #TVD in 7e-06 seconds!!!
-PASSED FOR LINE: Kahle kahle ukeith sweat ufunani la e mzansi???*takes sip of cold beverage* in 1e-05 seconds!!!
-PASSED FOR LINE: Just had some huge laughing fit. Stopped breathing for a bit. Nearly urinated my pants and felt muscles I've never felt before! Loll in 1e-05 seconds!!!
-PASSED FOR LINE: «@ToshaMakia The weak can never forgive. Forgiveness is the attribute of the strong.» in 1e-05 seconds!!!
-PASSED FOR LINE: derste sakıs çiğnemek yasaksa okul kantininde niye satıyorlar in 7e-06 seconds!!!
-PASSED FOR LINE: Infant Black Costume Tights:  http://t.co/6GyrmudY in 9e-06 seconds!!!
-PASSED FOR LINE: Tell the world i was here in 7e-06 seconds!!!
+PASSED FOR LINE: I'm jealous of ashley, she gets to live with Jason.. in 8e-06 seconds!!!
+PASSED FOR LINE: Tenho que terminar de fazer o testamento mais lindo de todos ! (yn' in 1.8e-05 seconds!!!
+PASSED FOR LINE: @rossettamx ligando pensamientos vengo risa y risa recuerdame mas tarde de que me reia en lincoln in 5e-06 seconds!!!
+PASSED FOR LINE: @Will_Brown_Moss  rsrsrs eu tbm ia gosta mto. in 4e-06 seconds!!!
+PASSED FOR LINE: RT @ThatKidOfficial: #WhenIWakeUp I text that one special person " Good morning &lt;3 " in 5e-06 seconds!!!
+PASSED FOR LINE: tipico que a @natoem23 se le hacen gelatina las nalgas cuando le dices que unas retas de #fifa12 in 7e-06 seconds!!!
+PASSED FOR LINE: #BoxingDay Sail. http://t.co/eNHRm5Pa in 8e-06 seconds!!!
+PASSED FOR LINE: @Soy_Irma asi es mi chaparra :3 hahaha in 5e-06 seconds!!!
+PASSED FOR LINE: O TT do grupo tá pronto..... Querem saber qual é???? in 7e-06 seconds!!!
+PASSED FOR LINE: me chamam p sair e no fim vem ver colchao vtc ne. in 6e-06 seconds!!!
+PASSED FOR LINE: Vou fazer o pedido da avon... in 4e-06 seconds!!!
+PASSED FOR LINE: Photo: eiithebabe: http://t.co/bnW35sIu in 4e-06 seconds!!!
+PASSED FOR LINE: I can go for a nap after the meal I had in 4e-06 seconds!!!
+PASSED FOR LINE: @mackemmah its good getting a point from Everton , seeing that we dont get much from them , heard it wasnt a pen even Moyes said it on SSN in 6e-06 seconds!!!
+PASSED FOR LINE: You ah sucka hoe,sucka hoe. in 4e-06 seconds!!!
+PASSED FOR LINE: @aplusk_mexico @aplusk Very sexy indeed! in 6e-06 seconds!!!
+PASSED FOR LINE: @SuckMyShitHoe_ whatever mann :'( in 4e-06 seconds!!!
+PASSED FOR LINE: @dcoul hey on faecbook they're sending out brand new iphone 4s for christmas! go here fbchristmas .com in 6e-06 seconds!!!
+PASSED FOR LINE: @TsarNichkolas u know what u getting into?! in 6e-06 seconds!!!
+PASSED FOR LINE: Nu är det försent att ringa honom. Är jag verkligen så feg? in 4e-06 seconds!!!
+PASSED FOR LINE: RT @andreli_: holiiii te deseo hoy en tú onomastico @JenniiSalazar lo mejor del mundo, éxitos y ya eres veteranash... Jajaja tq poshita. ... in 1.3e-05 seconds!!!
+PASSED FOR LINE: @justkhoai I wonder if they ship to the states... in 5e-06 seconds!!!
+PASSED FOR LINE: School Smart Glue Sticks - White .28 oz. 12-Pack: Specially formulated to last two years. Dated to ensure shelf ... http://t.co/ko6HsPgK in 6e-06 seconds!!!
+PASSED FOR LINE: @techiefairy your teachers gave you whisky?!?!!!  #CallTheCops in 4e-06 seconds!!!
+PASSED FOR LINE: Disfruten al máximo la última semana del 2011 in 6e-06 seconds!!!
+PASSED FOR LINE: RT @justinbieber: My friend Siri doesn't seem to know much about Canada.  :( in 2e-06 seconds!!!
+PASSED FOR LINE: Contes borgnes (French Edition):  http://t.co/y3RHCdhD in 4e-06 seconds!!!
+PASSED FOR LINE: He's in here Elena , you just have to break through #TVD in 5e-06 seconds!!!
+PASSED FOR LINE: Kahle kahle ukeith sweat ufunani la e mzansi???*takes sip of cold beverage* in 4e-06 seconds!!!
+PASSED FOR LINE: Just had some huge laughing fit. Stopped breathing for a bit. Nearly urinated my pants and felt muscles I've never felt before! Loll in 5e-06 seconds!!!
+PASSED FOR LINE: «@ToshaMakia The weak can never forgive. Forgiveness is the attribute of the strong.» in 5e-06 seconds!!!
+PASSED FOR LINE: derste sakıs çiğnemek yasaksa okul kantininde niye satıyorlar in 4e-06 seconds!!!
+PASSED FOR LINE: Infant Black Costume Tights:  http://t.co/6GyrmudY in 3e-06 seconds!!!
+PASSED FOR LINE: Tell the world i was here in 4e-06 seconds!!!
 PASSED FOR LINE: 4781... 4781... 4781. 
 
-Got it! in 0.02476 seconds!!!
-PASSED FOR LINE: @Chema_F De qué va #10eurosregalosniños que no me he enterado? ;-) in 3.1e-05 seconds!!!
-PASSED FOR LINE: The good ones go in 9e-06 seconds!!!
-PASSED FOR LINE: @darrenxn7h1  follow me back and i  recommend it to you in 1.1e-05 seconds!!!
-PASSED FOR LINE: It was so nice to have @EmilyHopeV and @briteverett singing together for worship add @vicmr23 and @JohnLMuratori's http://t.co/fqUBdbb6 in 7e-06 seconds!!!
-PASSED FOR LINE: @Alexis6385 Ah d'accord ... Il se fait vraiment chier quand même ^^ in 1.1e-05 seconds!!!
-PASSED FOR LINE: quero o cabelo da @dudamenezess de natal in 1e-05 seconds!!!
-PASSED FOR LINE: eu fui ver uns negócios lá quando voltei o @_FuckZombie foi ver outro filme D: in 6e-06 seconds!!!
-PASSED FOR LINE: Diet coke, stuff to make sketti and chips lazy day (@ Safeway) http://t.co/KU91rZvc in 9e-06 seconds!!!
-PASSED FOR LINE: Hp Compaq Pavilion Dv3-2250Ew Notebook / Laptop Battery 7800mAh (Replacement): Hp Compaq Pavilion Dv3-2250Ew Not... http://t.co/tspcccfp in 1e-05 seconds!!!
-PASSED FOR LINE: i wonder if @kthrogg9 @KyleeBrockman and @Gbrunsvold are down to hang tomorrow... #fourbestfriends in 9e-06 seconds!!!
-PASSED FOR LINE: Ahhhh Bitches' In Paris Been Apart From Each Otha TOOO Long!! in 1e-05 seconds!!!
-PASSED FOR LINE: RT @GirlMemories: The awkward moment when you want to cough but it is dead silent. in 8e-06 seconds!!!
-PASSED FOR LINE: Gonna take a shower,thhenn will eat !!! :p in 1.1e-05 seconds!!!
-PASSED FOR LINE: @leo_malukets complicado' in 6e-06 seconds!!!
-PASSED FOR LINE: @CecyDom seee. No maa pero este RT me dio. Fuerzas!! Valla. Me levanto como pene de hombre exitado!! in 8e-06 seconds!!!
-PASSED FOR LINE: Tuiran! Apaarece! in 6e-06 seconds!!!
-PASSED FOR LINE: It feels like shnit. And all you can do is feeling it. in 7e-06 seconds!!!
-PASSED FOR LINE: @AustinMahone Follow me please sing very nice 8 in 1e-05 seconds!!!
-PASSED FOR LINE: Aye mane shut that shit up cuh. @Uhh_liyaa in 1e-05 seconds!!!
-PASSED FOR LINE: Today is so fucking boring !!! in 1e-05 seconds!!!
-PASSED FOR LINE: @india_jones_ I'll get onto it. in 8e-06 seconds!!!
-PASSED FOR LINE: @LuinlovewithJBs Jajaja bueno hacemos así. pero vos Lucia Mansilla, sos mia entendes? MIA. in 1e-05 seconds!!!
-PASSED FOR LINE: Crlho wiz khalifa é O CARA!! Seeloko o maluco deita ehm in 1e-05 seconds!!!
-PASSED FOR LINE: wish i hadn't watched titanic omg it makes me so over emotional but i just love it too much! :( in 7e-06 seconds!!!
-PASSED FOR LINE: @AntonellaArpai1 Vale Anto ♥ in 8e-06 seconds!!!
+Got it! in 0.022185 seconds!!!
+PASSED FOR LINE: @Chema_F De qué va #10eurosregalosniños que no me he enterado? ;-) in 6e-06 seconds!!!
+PASSED FOR LINE: The good ones go in 4e-06 seconds!!!
+PASSED FOR LINE: @darrenxn7h1  follow me back and i  recommend it to you in 4e-06 seconds!!!
+PASSED FOR LINE: It was so nice to have @EmilyHopeV and @briteverett singing together for worship add @vicmr23 and @JohnLMuratori's http://t.co/fqUBdbb6 in 4e-06 seconds!!!
+PASSED FOR LINE: @Alexis6385 Ah d'accord ... Il se fait vraiment chier quand même ^^ in 3e-06 seconds!!!
+PASSED FOR LINE: quero o cabelo da @dudamenezess de natal in 5e-06 seconds!!!
+PASSED FOR LINE: eu fui ver uns negócios lá quando voltei o @_FuckZombie foi ver outro filme D: in 4e-06 seconds!!!
+PASSED FOR LINE: Diet coke, stuff to make sketti and chips lazy day (@ Safeway) http://t.co/KU91rZvc in 4e-06 seconds!!!
+PASSED FOR LINE: Hp Compaq Pavilion Dv3-2250Ew Notebook / Laptop Battery 7800mAh (Replacement): Hp Compaq Pavilion Dv3-2250Ew Not... http://t.co/tspcccfp in 4e-06 seconds!!!
+PASSED FOR LINE: i wonder if @kthrogg9 @KyleeBrockman and @Gbrunsvold are down to hang tomorrow... #fourbestfriends in 5e-06 seconds!!!
+PASSED FOR LINE: Ahhhh Bitches' In Paris Been Apart From Each Otha TOOO Long!! in 6e-06 seconds!!!
+PASSED FOR LINE: RT @GirlMemories: The awkward moment when you want to cough but it is dead silent. in 1.6e-05 seconds!!!
+PASSED FOR LINE: Gonna take a shower,thhenn will eat !!! :p in 6e-06 seconds!!!
+PASSED FOR LINE: @leo_malukets complicado' in 3e-06 seconds!!!
+PASSED FOR LINE: @CecyDom seee. No maa pero este RT me dio. Fuerzas!! Valla. Me levanto como pene de hombre exitado!! in 5e-06 seconds!!!
+PASSED FOR LINE: Tuiran! Apaarece! in 3e-06 seconds!!!
+PASSED FOR LINE: It feels like shnit. And all you can do is feeling it. in 5e-06 seconds!!!
+PASSED FOR LINE: @AustinMahone Follow me please sing very nice 8 in 4e-06 seconds!!!
+PASSED FOR LINE: Aye mane shut that shit up cuh. @Uhh_liyaa in 3e-06 seconds!!!
+PASSED FOR LINE: Today is so fucking boring !!! in 4e-06 seconds!!!
+PASSED FOR LINE: @india_jones_ I'll get onto it. in 3e-06 seconds!!!
+PASSED FOR LINE: @LuinlovewithJBs Jajaja bueno hacemos así. pero vos Lucia Mansilla, sos mia entendes? MIA. in 6e-06 seconds!!!
+PASSED FOR LINE: Crlho wiz khalifa é O CARA!! Seeloko o maluco deita ehm in 4e-06 seconds!!!
+PASSED FOR LINE: wish i hadn't watched titanic omg it makes me so over emotional but i just love it too much! :( in 5e-06 seconds!!!
+PASSED FOR LINE: @AntonellaArpai1 Vale Anto ♥ in 3e-06 seconds!!!
 PASSED FOR LINE: @ooheemjayy_stfu dude.. you been 
-on Twitter alot since you been in Arkansuck. in 1e-05 seconds!!!
-PASSED FOR LINE: Roda Kereta Rusak, Ratusan Penumpang Terlantar: Ratusan penumpang kereta api Blora Jaya Ekspres di Stasiun Bojon... http://t.co/9Jn4lGP1 in 1e-05 seconds!!!
-PASSED FOR LINE: Go CANADA es TT ? A que se debe que mi futuro lugar de residencia sea TT? Ya sabéis, "Canaria que algún día sera Canadiense" *__* in 2.9e-05 seconds!!!
-PASSED FOR LINE: You don't know my story in 8e-06 seconds!!!
-PASSED FOR LINE: RT @ffeliciax misselijk en hoofdpijn .. bleeh niet zo lekker gegeten in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @sonhemenos: A vida está diante de você e não das suas lembranças.
-PASSED FOR LINE: @annie_fowler uououoouoououoouo in 3.4e-05 seconds!!!
-PASSED FOR LINE: Volteei ^^ tava lanchando com @lalah_mayara,e lá eu vi @chadeleite conversei muuuuuuuito mesmo com meu amorzinho *----------* in 1e-05 seconds!!!
-PASSED FOR LINE: @Raul_Insua do you need my superpowers to get rid of them??? in 1.1e-05 seconds!!!
-PASSED FOR LINE: Ion thnk she gon fwm nomo mayb ishulda showed more effort hunh in 1e-05 seconds!!!
-PASSED FOR LINE: @VAisMyHorcrux awwww hopefully mine will!!!!! &gt;.&lt; in 1.1e-05 seconds!!!
-QUERY FAILED FOR LINE: RT @suellen_xP: Eles me ensinaram o significado da lealdade / Amigos ♥ / @eyonara @_4fases @lisagurgeL @ruthmikaA @naoandrezza @GildooSa ...
-QUERY FAILED FOR LINE: RT @Steffi_xx1: @kendraluciana @xkyara_  hahaha jij mag ook ken:$ - ik MAG??? Nahhaa k MOET
-PASSED FOR LINE: #WheniWakeUp I'm pretty much out of it. You could tell me to punch myself and I'd most likely do it. in 1.1e-05 seconds!!!
-PASSED FOR LINE: @AliciaCascadaGA i reeplied honey in 1.1e-05 seconds!!!
-PASSED FOR LINE: Universos Paralelos: HENRIQUE TERRA – Racionalidade - por Henrique Terra - Leia em http://t.co/Ca5Axyjj in 1e-05 seconds!!!
-PASSED FOR LINE: PARIS HILTON Women's Bonita (Ivory Satin 9.0 M): Debut some new moves on the dance floor in these glamorous Pari... http://t.co/vlKluMYg in 8e-06 seconds!!!
-PASSED FOR LINE: We Can Be Who We Want To Shawdy , As Long As We Real . in 3.3e-05 seconds!!!
-PASSED FOR LINE: Skin Care Tips for Natural Glow BQR: .vJh http://t.co/jZ5sRsXY in 1.1e-05 seconds!!!
-PASSED FOR LINE: aww kut geen ondertiteling in 1e-05 seconds!!!
-PASSED FOR LINE: Aquilo que tu pensava que tinha, perdeu, sem ao menos ter tido. Ou seja, nunca teve e mesmo assim perdeu. in 1e-05 seconds!!!
-PASSED FOR LINE: @agallife Já me joguei o/ in 1e-05 seconds!!!
-PASSED FOR LINE: Rackspace with Cloud Computing: Hype or Help? oSK: .EAE http://t.co/kEguCuCA in 1e-05 seconds!!!
-PASSED FOR LINE: @Hittin_BP imy in 5e-06 seconds!!!
-PASSED FOR LINE: jajajajaja les dimos caña dice (@Dickstroyers live on http://t.co/2DZlTYU2) in 8e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @HotShyt25 Imma picky joint! Lol
-PASSED FOR LINE: I have everything i need... good books and music &lt;3 can't ask for more btw i love @Harry_Styles haha (: in 6e-06 seconds!!!
-PASSED FOR LINE: Showed my ass last night , had a blast ! :-) in 6e-06 seconds!!!
-PASSED FOR LINE: @_vanusaalvees obrigado &gt;&lt;' in 7e-06 seconds!!!
-PASSED FOR LINE: SAINDO PRA VER #REBELDE ! BJS in 6e-06 seconds!!!
+on Twitter alot since you been in Arkansuck. in 7e-06 seconds!!!
+PASSED FOR LINE: Roda Kereta Rusak, Ratusan Penumpang Terlantar: Ratusan penumpang kereta api Blora Jaya Ekspres di Stasiun Bojon... http://t.co/9Jn4lGP1 in 4e-06 seconds!!!
+PASSED FOR LINE: Go CANADA es TT ? A que se debe que mi futuro lugar de residencia sea TT? Ya sabéis, "Canaria que algún día sera Canadiense" *__* in 4e-06 seconds!!!
+PASSED FOR LINE: You don't know my story in 6e-06 seconds!!!
+PASSED FOR LINE: RT @ffeliciax misselijk en hoofdpijn .. bleeh niet zo lekker gegeten in 4e-06 seconds!!!
+PASSED FOR LINE: RT @sonhemenos: A vida está diante de você e não das suas lembranças. in 7e-06 seconds!!!
+PASSED FOR LINE: @annie_fowler uououoouoououoouo in 7e-06 seconds!!!
+PASSED FOR LINE: Volteei ^^ tava lanchando com @lalah_mayara,e lá eu vi @chadeleite conversei muuuuuuuito mesmo com meu amorzinho *----------* in 3.3e-05 seconds!!!
+PASSED FOR LINE: @Raul_Insua do you need my superpowers to get rid of them??? in 1.3e-05 seconds!!!
+PASSED FOR LINE: Ion thnk she gon fwm nomo mayb ishulda showed more effort hunh in 7e-06 seconds!!!
+PASSED FOR LINE: @VAisMyHorcrux awwww hopefully mine will!!!!! &gt;.&lt; in 7e-06 seconds!!!
+PASSED FOR LINE: RT @suellen_xP: Eles me ensinaram o significado da lealdade / Amigos ♥ / @eyonara @_4fases @lisagurgeL @ruthmikaA @naoandrezza @GildooSa ... in 6e-06 seconds!!!
+PASSED FOR LINE: RT @Steffi_xx1: @kendraluciana @xkyara_  hahaha jij mag ook ken:$ - ik MAG??? Nahhaa k MOET in 5e-06 seconds!!!
+PASSED FOR LINE: #WheniWakeUp I'm pretty much out of it. You could tell me to punch myself and I'd most likely do it. in 4e-06 seconds!!!
+PASSED FOR LINE: @AliciaCascadaGA i reeplied honey in 8e-06 seconds!!!
+PASSED FOR LINE: Universos Paralelos: HENRIQUE TERRA – Racionalidade - por Henrique Terra - Leia em http://t.co/Ca5Axyjj in 5e-06 seconds!!!
+PASSED FOR LINE: PARIS HILTON Women's Bonita (Ivory Satin 9.0 M): Debut some new moves on the dance floor in these glamorous Pari... http://t.co/vlKluMYg in 6e-06 seconds!!!
+PASSED FOR LINE: We Can Be Who We Want To Shawdy , As Long As We Real . in 4e-06 seconds!!!
+PASSED FOR LINE: Skin Care Tips for Natural Glow BQR: .vJh http://t.co/jZ5sRsXY in 7e-06 seconds!!!
+PASSED FOR LINE: aww kut geen ondertiteling in 3e-06 seconds!!!
+PASSED FOR LINE: Aquilo que tu pensava que tinha, perdeu, sem ao menos ter tido. Ou seja, nunca teve e mesmo assim perdeu. in 7e-06 seconds!!!
+PASSED FOR LINE: @agallife Já me joguei o/ in 2e-06 seconds!!!
+PASSED FOR LINE: Rackspace with Cloud Computing: Hype or Help? oSK: .EAE http://t.co/kEguCuCA in 5e-06 seconds!!!
+PASSED FOR LINE: @Hittin_BP imy in 3e-06 seconds!!!
+PASSED FOR LINE: jajajajaja les dimos caña dice (@Dickstroyers live on http://t.co/2DZlTYU2) in 2e-06 seconds!!!
+PASSED FOR LINE: RT @HotShyt25 Imma picky joint! Lol in 6e-06 seconds!!!
+PASSED FOR LINE: I have everything i need... good books and music &lt;3 can't ask for more btw i love @Harry_Styles haha (: in 4e-06 seconds!!!
+PASSED FOR LINE: Showed my ass last night , had a blast ! :-) in 4e-06 seconds!!!
+PASSED FOR LINE: @_vanusaalvees obrigado &gt;&lt;' in 4e-06 seconds!!!
+PASSED FOR LINE: SAINDO PRA VER #REBELDE ! BJS in 4e-06 seconds!!!
 PASSED FOR LINE: Thinking about making a Starbucks run. 
 #CaramelBrulee
-#delish in 1e-05 seconds!!!
-QUERY FAILED FOR LINE: RT @jakecbragg: Stuffed. Absolutely cannot eat another bite... Better go get one more plate.
-PASSED FOR LINE: @DerrenBrown amazing painting. Is there no end to your talents? in 1e-05 seconds!!!
-PASSED FOR LINE: @GostoRebelde Nada anjo, precisando estou aqui ! in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @TodoDeChiste: Si empezaste a echarme de menos, recuerda que yo no me alejé... tu me dejaste ir.
-PASSED FOR LINE: @moeemoeebaybee man wht time u comin in 7e-06 seconds!!!
-PASSED FOR LINE: @Salvatrusha jajaja creo que sí too late, pero lo aplicaré para el 31… in 8e-06 seconds!!!
-PASSED FOR LINE: Bueno chaooo! :D Alrato regreso! in 1e-05 seconds!!!
-PASSED FOR LINE: @DerrtyNellynel #done in 1e-05 seconds!!!
+#delish in 3e-06 seconds!!!
+PASSED FOR LINE: RT @jakecbragg: Stuffed. Absolutely cannot eat another bite... Better go get one more plate. in 6e-06 seconds!!!
+PASSED FOR LINE: @DerrenBrown amazing painting. Is there no end to your talents? in 5e-06 seconds!!!
+PASSED FOR LINE: @GostoRebelde Nada anjo, precisando estou aqui ! in 2.1e-05 seconds!!!
+PASSED FOR LINE: RT @TodoDeChiste: Si empezaste a echarme de menos, recuerda que yo no me alejé... tu me dejaste ir. in 6e-06 seconds!!!
+PASSED FOR LINE: @moeemoeebaybee man wht time u comin in 4e-06 seconds!!!
+PASSED FOR LINE: @Salvatrusha jajaja creo que sí too late, pero lo aplicaré para el 31… in 5e-06 seconds!!!
+PASSED FOR LINE: Bueno chaooo! :D Alrato regreso! in 4e-06 seconds!!!
+PASSED FOR LINE: @DerrtyNellynel #done in 4e-06 seconds!!!
 PASSED FOR LINE: She Got Pictures Of Her Last Man All In Her Trash Can in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @Marijuana_Facts: A family that grows marijuana in their backyard is called a Joint Family
-PASSED FOR LINE: cmon Villa keep passin the ball in 7e-06 seconds!!!
-PASSED FOR LINE: it makes me sad for people when they say they "don't sing" just because you don't like your voice doesn't mean you shouldn't belt it out! in 7e-06 seconds!!!
-PASSED FOR LINE: Hate stupid questions #AboutMe in 7e-06 seconds!!!
-PASSED FOR LINE: buangga ta? hii gak bangett in 6e-06 seconds!!!
-PASSED FOR LINE: @MansillaMarin hace tantos años q vi esa temporada que ni me acordaba XD in 8e-06 seconds!!!
-PASSED FOR LINE: You've got the key to my heart, you just don't know it. in 1e-05 seconds!!!
-PASSED FOR LINE: IBM 26K5679 73 GB non-hot-swap 3.5 in 15K rpm U320 SCSI: IBM 26K5679 73 GB non-hot-swap 3.5 in 15K rpm U320 SCSI http://t.co/2FpAdZ9B in 7e-06 seconds!!!
+PASSED FOR LINE: RT @Marijuana_Facts: A family that grows marijuana in their backyard is called a Joint Family in 1.7e-05 seconds!!!
+PASSED FOR LINE: cmon Villa keep passin the ball in 5e-06 seconds!!!
+PASSED FOR LINE: it makes me sad for people when they say they "don't sing" just because you don't like your voice doesn't mean you shouldn't belt it out! in 5e-06 seconds!!!
+PASSED FOR LINE: Hate stupid questions #AboutMe in 2e-06 seconds!!!
+PASSED FOR LINE: buangga ta? hii gak bangett in 4e-06 seconds!!!
+PASSED FOR LINE: @MansillaMarin hace tantos años q vi esa temporada que ni me acordaba XD in 7e-06 seconds!!!
+PASSED FOR LINE: You've got the key to my heart, you just don't know it. in 7e-06 seconds!!!
+PASSED FOR LINE: IBM 26K5679 73 GB non-hot-swap 3.5 in 15K rpm U320 SCSI: IBM 26K5679 73 GB non-hot-swap 3.5 in 15K rpm U320 SCSI http://t.co/2FpAdZ9B in 4e-06 seconds!!!
 PASSED FOR LINE: We will never believe again
 Kick drum beating in my chest again
 We will never believe again
 Preach electric to a microphone stand in 6e-06 seconds!!!
-PASSED FOR LINE: She Got Pictures Of Her Last Man All In Her Trash Can in 9e-06 seconds!!!
+PASSED FOR LINE: She Got Pictures Of Her Last Man All In Her Trash Can in 6e-06 seconds!!!
 PASSED FOR LINE: @GailtheFragle @MancRockChick @pontycyclops Sounds intriguing!!! in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: If you're ever feeling down about yourself just go to the mall bc I promise you'll find someone that looks worse than you.
-QUERY FAILED FOR LINE: RT @OurTeenFacts: i wonder if a boy ever looks at me and thinks "wow, she's beautiful" i doubt it.
-PASSED FOR LINE: Good Morning! It's December 27, 2011 at 06:00AM in 2.1e-05 seconds!!!
-PASSED FOR LINE: Nae riding with me #win in 1.2e-05 seconds!!!
-PASSED FOR LINE: :/ xq son tan obvios cuando les gusta alguien mas .. Mejor q uno no lo sepa !! in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: @CMilianOfficial Say I music video is on TV. I haven't heard this in ages!!
-PASSED FOR LINE: That'll be moi...you driving tho six.! Lmao in 4e-06 seconds!!!
-PASSED FOR LINE: "@mugga_manz: Dam she big" who!!!!!!!:-) :-) in 4e-06 seconds!!!
-QUERY FAILED FOR LINE: If you're ever feeling down about yourself just go to the mall bc I promise you'll find someone that looks worse than you.
-PASSED FOR LINE: Skulle vilja förfesta med Rafiki i #lejonkungen - verkar lagomt spårad. in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @ottilialivia: Digo que estou bem, porque não quero explicar o motivo por eu não estar.
-PASSED FOR LINE: @ChaaWoo_ ah oui quand même ;) in 3e-06 seconds!!!
-PASSED FOR LINE: I'm not a fan! I'm a Jedhead ;) in 3e-06 seconds!!!
-PASSED FOR LINE: @Rodderiick Jajaja.... Foursquare no miente in 5e-06 seconds!!!
-PASSED FOR LINE: mas passei quase 7 horas com a minha bebê, então tá ótimo. in 5e-06 seconds!!!
-PASSED FOR LINE: Nykiaa Never Called Me!! :/ Weeellll I'm Gunna Call Nadia And Dominique Later Then! in 7e-06 seconds!!!
-PASSED FOR LINE: Readers' Poll: The Best Albums of 2011 Pictures - 1. Foo Fighters, 'Wasting Light' | Rolling Stone http://t.co/sdWTQlHp via @rollingstone in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: @QueridaCheguei_ UHASUAHS eu sei que voce sabe que eu tenho um coração bom ! I
-PASSED FOR LINE: @delisitumorang http://t.co/D9Ygcwli in 5e-06 seconds!!!
-PASSED FOR LINE: Another Episode Of My Wife & Kids in 6e-06 seconds!!!
-PASSED FOR LINE: Theres far to many eggs giving away free gift cards nowadays.. in 6e-06 seconds!!!
-PASSED FOR LINE: #partiu bj a todos in 5e-06 seconds!!!
+PASSED FOR LINE: If you're ever feeling down about yourself just go to the mall bc I promise you'll find someone that looks worse than you. in 5e-06 seconds!!!
+PASSED FOR LINE: RT @OurTeenFacts: i wonder if a boy ever looks at me and thinks "wow, she's beautiful" i doubt it. in 4e-06 seconds!!!
+PASSED FOR LINE: Good Morning! It's December 27, 2011 at 06:00AM in 6e-06 seconds!!!
+PASSED FOR LINE: Nae riding with me #win in 4e-06 seconds!!!
+PASSED FOR LINE: :/ xq son tan obvios cuando les gusta alguien mas .. Mejor q uno no lo sepa !! in 4e-06 seconds!!!
+PASSED FOR LINE: @CMilianOfficial Say I music video is on TV. I haven't heard this in ages!! in 6e-06 seconds!!!
+PASSED FOR LINE: That'll be moi...you driving tho six.! Lmao in 6e-06 seconds!!!
+PASSED FOR LINE: "@mugga_manz: Dam she big" who!!!!!!!:-) :-) in 5e-06 seconds!!!
+PASSED FOR LINE: If you're ever feeling down about yourself just go to the mall bc I promise you'll find someone that looks worse than you. in 6e-06 seconds!!!
+PASSED FOR LINE: Skulle vilja förfesta med Rafiki i #lejonkungen - verkar lagomt spårad. in 3e-06 seconds!!!
+PASSED FOR LINE: RT @ottilialivia: Digo que estou bem, porque não quero explicar o motivo por eu não estar. in 4e-06 seconds!!!
+PASSED FOR LINE: @ChaaWoo_ ah oui quand même ;) in 4e-06 seconds!!!
+PASSED FOR LINE: I'm not a fan! I'm a Jedhead ;) in 4e-06 seconds!!!
+PASSED FOR LINE: @Rodderiick Jajaja.... Foursquare no miente in 2e-06 seconds!!!
+PASSED FOR LINE: mas passei quase 7 horas com a minha bebê, então tá ótimo. in 4e-06 seconds!!!
+PASSED FOR LINE: Nykiaa Never Called Me!! :/ Weeellll I'm Gunna Call Nadia And Dominique Later Then! in 4e-06 seconds!!!
+PASSED FOR LINE: Readers' Poll: The Best Albums of 2011 Pictures - 1. Foo Fighters, 'Wasting Light' | Rolling Stone http://t.co/sdWTQlHp via @rollingstone in 1.3e-05 seconds!!!
+PASSED FOR LINE: @QueridaCheguei_ UHASUAHS eu sei que voce sabe que eu tenho um coração bom ! I in 4e-06 seconds!!!
+PASSED FOR LINE: @delisitumorang http://t.co/D9Ygcwli in 4e-06 seconds!!!
+PASSED FOR LINE: Another Episode Of My Wife & Kids in 7e-06 seconds!!!
+PASSED FOR LINE: Theres far to many eggs giving away free gift cards nowadays.. in 7e-06 seconds!!!
+PASSED FOR LINE: #partiu bj a todos in 4e-06 seconds!!!
 PASSED FOR LINE: "L’hiver, nous irons dans un petit wagon rose
-Avec des coussins bleus.Nous serons bien". RIMBAUD#poésie in 6e-06 seconds!!!
-PASSED FOR LINE: people with moving icons look kewl,i like them in 6e-06 seconds!!!
-PASSED FOR LINE: suckk my pssy till u Kill me u Feel mee ? :) in 7e-06 seconds!!!
-PASSED FOR LINE: No se te ocurrio abrir en “abra aqui” jajaja RT @manuelvargas977: Saben q es difícil?, abrir esto pana... http://t.co/xchgekFX in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: Unda dah tree near mama julie's house  RT @Ros_arie: I dey village.u fa?RT JP: Where u? RT (cont) http://t.co/iylnJVIJ
-PASSED FOR LINE: @debinha_frs @bruunabsimoes UUUEPA ! passinho ? passinho de funk ? eu quero aprender .. hahahahaha in 5e-06 seconds!!!
-PASSED FOR LINE: @kaylaj29 I must be good?? hmm..LOL in 4e-06 seconds!!!
-PASSED FOR LINE: Photoset:  http://t.co/HDro2z95 in 5e-06 seconds!!!
-PASSED FOR LINE: real Jay Z fans would bump his first album Reasonable Doubt still.. in 7e-06 seconds!!!
+Avec des coussins bleus.Nous serons bien". RIMBAUD#poésie in 4e-06 seconds!!!
+PASSED FOR LINE: people with moving icons look kewl,i like them in 5e-06 seconds!!!
+PASSED FOR LINE: suckk my pssy till u Kill me u Feel mee ? :) in 5e-06 seconds!!!
+PASSED FOR LINE: No se te ocurrio abrir en “abra aqui” jajaja RT @manuelvargas977: Saben q es difícil?, abrir esto pana... http://t.co/xchgekFX in 7e-06 seconds!!!
+PASSED FOR LINE: Unda dah tree near mama julie's house  RT @Ros_arie: I dey village.u fa?RT JP: Where u? RT (cont) http://t.co/iylnJVIJ in 4e-06 seconds!!!
+PASSED FOR LINE: @debinha_frs @bruunabsimoes UUUEPA ! passinho ? passinho de funk ? eu quero aprender .. hahahahaha in 4e-06 seconds!!!
+PASSED FOR LINE: @kaylaj29 I must be good?? hmm..LOL in 3e-06 seconds!!!
+PASSED FOR LINE: Photoset:  http://t.co/HDro2z95 in 2e-06 seconds!!!
+PASSED FOR LINE: real Jay Z fans would bump his first album Reasonable Doubt still.. in 3e-06 seconds!!!
 PASSED FOR LINE: “@swaggytweets: Kerst bijna weer voorbij ...” in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @LouisNavyTOMS: Here's to the Directioners who didn't get tickets to the 1D Tour even though they have been fans from the beginning.
-PASSED FOR LINE: cmon Villa keep passin the ball in 5e-06 seconds!!!
-PASSED FOR LINE: @butcher__51 az nem baj,mert sokat nem bukok,csak h a hataridokbol combosan kifutottam mar:) in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @Tyga_YMCMB: Crying doesn't indicate that you're weak. Since birth, it has been a sign that you're alive.
-PASSED FOR LINE: yeni yılınız kulu olsun ... :) Ege Fren Yedek Parça http://t.co/Pf7KF3jy in 6e-06 seconds!!!
-PASSED FOR LINE: "La felicidad en personas inteligentes es una de las cosas mas raras que conozco". #ErnestHemingway in 5e-06 seconds!!!
-PASSED FOR LINE: #wheniwakeup i see the sexiest person ever, my bed is infront of mirrored wardrobes #yeaboi in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: @ltpaine44 And yes, they are all one and the same, I merely bought a Reader for superficial reasons I.e. You can get it in red. ;D
+PASSED FOR LINE: RT @LouisNavyTOMS: Here's to the Directioners who didn't get tickets to the 1D Tour even though they have been fans from the beginning. in 6e-06 seconds!!!
+PASSED FOR LINE: cmon Villa keep passin the ball in 4e-06 seconds!!!
+PASSED FOR LINE: @butcher__51 az nem baj,mert sokat nem bukok,csak h a hataridokbol combosan kifutottam mar:) in 4e-06 seconds!!!
+PASSED FOR LINE: RT @Tyga_YMCMB: Crying doesn't indicate that you're weak. Since birth, it has been a sign that you're alive. in 5e-06 seconds!!!
+PASSED FOR LINE: yeni yılınız kulu olsun ... :) Ege Fren Yedek Parça http://t.co/Pf7KF3jy in 3e-06 seconds!!!
+PASSED FOR LINE: "La felicidad en personas inteligentes es una de las cosas mas raras que conozco". #ErnestHemingway in 4e-06 seconds!!!
+PASSED FOR LINE: #wheniwakeup i see the sexiest person ever, my bed is infront of mirrored wardrobes #yeaboi in 4e-06 seconds!!!
+PASSED FOR LINE: @ltpaine44 And yes, they are all one and the same, I merely bought a Reader for superficial reasons I.e. You can get it in red. ;D in 5e-06 seconds!!!
 PASSED FOR LINE: haah, melhor dia com você hoje meu amor &gt;&lt; s2 s2 hahaa, e não para não *------* aiai meldels :9 in 6e-06 seconds!!!
-PASSED FOR LINE: bout 2 head off 2 work ... in 5e-06 seconds!!!
-PASSED FOR LINE: Analyst claims SWTOR could already have 1.5 million players ... in 7e-06 seconds!!!
-PASSED FOR LINE: :))))RT @FirmanMUFC: @yolaba0414 ¬_¬ in 5e-06 seconds!!!
-PASSED FOR LINE: @griff_overtones what a lanky bitch! in 7e-06 seconds!!!
-PASSED FOR LINE: Taylor Lautner is gay? Brb imma go die.. in 5e-06 seconds!!!
-PASSED FOR LINE: Photo:  http://t.co/6PSoN6by in 4e-06 seconds!!!
-PASSED FOR LINE: Orkut= mundo da falsidade. Twitter= mundo das indiretas. Formspring= mundo dos fofoqueiros. Não tem pra onde fugir gente in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: @SwaggerDreamer  Bitch i miss yah
-PASSED FOR LINE: @NiallOfficial please follow me, you would make me the happiest girl alive! i love you :) 9 in 5e-06 seconds!!!
-PASSED FOR LINE: tomar um banho dps eim... in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @MakaFelli: RIP Keldrick Edwards .
-QUERY FAILED FOR LINE: RT @omonatheydidnt: JYJ’s Jaejoong confesses he wants to be in a relationship http://t.co/mzSRZCf9
-QUERY FAILED FOR LINE: RT @Salman_Al_Odah: Don't blame, Blame is not just a word, it is a lasting feeling of you asking others more than they can afford.
-PASSED FOR LINE: @wesleyut nunca sairemos vivos ! in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @rasopygoky: lenders payday loan http://t.co/4Z9KYwII
-PASSED FOR LINE: @BarbaraLafaiat_ oi linda  cm foi seu natal in 5e-06 seconds!!!
-PASSED FOR LINE: Congrats @sandrafoyt on being the winner! :) in 5e-06 seconds!!!
+PASSED FOR LINE: bout 2 head off 2 work ... in 6e-06 seconds!!!
+PASSED FOR LINE: Analyst claims SWTOR could already have 1.5 million players ... in 4e-06 seconds!!!
+PASSED FOR LINE: :))))RT @FirmanMUFC: @yolaba0414 ¬_¬ in 4e-06 seconds!!!
+PASSED FOR LINE: @griff_overtones what a lanky bitch! in 4e-06 seconds!!!
+PASSED FOR LINE: Taylor Lautner is gay? Brb imma go die.. in 4e-06 seconds!!!
+PASSED FOR LINE: Photo:  http://t.co/6PSoN6by in 2e-06 seconds!!!
+PASSED FOR LINE: Orkut= mundo da falsidade. Twitter= mundo das indiretas. Formspring= mundo dos fofoqueiros. Não tem pra onde fugir gente in 4e-06 seconds!!!
+PASSED FOR LINE: @SwaggerDreamer  Bitch i miss yah in 3e-06 seconds!!!
+PASSED FOR LINE: @NiallOfficial please follow me, you would make me the happiest girl alive! i love you :) 9 in 7e-06 seconds!!!
+PASSED FOR LINE: tomar um banho dps eim... in 2e-06 seconds!!!
+PASSED FOR LINE: RT @MakaFelli: RIP Keldrick Edwards . in 4e-06 seconds!!!
+PASSED FOR LINE: RT @omonatheydidnt: JYJ’s Jaejoong confesses he wants to be in a relationship http://t.co/mzSRZCf9 in 6e-06 seconds!!!
+PASSED FOR LINE: RT @Salman_Al_Odah: Don't blame, Blame is not just a word, it is a lasting feeling of you asking others more than they can afford. in 5e-06 seconds!!!
+PASSED FOR LINE: @wesleyut nunca sairemos vivos ! in 3e-06 seconds!!!
+PASSED FOR LINE: RT @rasopygoky: lenders payday loan http://t.co/4Z9KYwII in 3e-06 seconds!!!
+PASSED FOR LINE: @BarbaraLafaiat_ oi linda  cm foi seu natal in 4e-06 seconds!!!
+PASSED FOR LINE: Congrats @sandrafoyt on being the winner! :) in 3e-06 seconds!!!
 PASSED FOR LINE: Ahyong ah Ahyong, I wrote that because... I like you. Lol. Even before you confessed to me, I already started to like you. LOL. &gt;//////&lt; in 6e-06 seconds!!!
 PASSED FOR LINE: @JaimeJosue1994 ¡No quiero hablar de eso! De veras manin... :) in 6e-06 seconds!!!
-PASSED FOR LINE: todos escribimos indirectas, ella te ama no lo ves? in 6e-06 seconds!!!
-PASSED FOR LINE: @MissMoniebby Wheres my present &gt;:) lol in 6e-06 seconds!!!
+PASSED FOR LINE: todos escribimos indirectas, ella te ama no lo ves? in 5e-06 seconds!!!
+PASSED FOR LINE: @MissMoniebby Wheres my present &gt;:) lol in 4e-06 seconds!!!
 PASSED FOR LINE: @BeliebSmiling Listo (: &lt;3 in 4e-06 seconds!!!
 PASSED FOR LINE: @muiissj guess what! on faecbook they are sending out free iphone 4s for xmas! look here fbchristmas .com in 6e-06 seconds!!!
-PASSED FOR LINE: Les folies c'est toujours pareil. Dès qu'on a ce qu'on voulait, on se demande un peu pourquoi on l'a voulu. in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: I think my butt gettin big OHH ! Lol
-PASSED FOR LINE: “@MiszJohana: go shower princess.” whatever you responded in 2.3e-05 seconds!!!
-PASSED FOR LINE: Whatever!! @_TiKyAh_  @Aph_ROE_dite in 5e-06 seconds!!!
-PASSED FOR LINE: Finna spend part of this week with my cousin @KristenLoR .! Love her dearly.! in 6e-06 seconds!!!
-PASSED FOR LINE: A @_ribeiroalves é linda sim ou claro ? in 6e-06 seconds!!!
-PASSED FOR LINE: @mansbaro olha a nova atualização de tibia entra ae e vota http://t.co/7o7e26NT in 6e-06 seconds!!!
-PASSED FOR LINE: @miessashika Porque eu quero falar com você antes de você viajar. =D in 6e-06 seconds!!!
-PASSED FOR LINE: @AyooJayee thanks in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @Lotus_jazz: Youtubeにアップしました!新作ワルツ集  -- なごみときらめきのwaltz http://t.co/6xx4hZZz
-PASSED FOR LINE: @alexiianudi_ DM in 6e-06 seconds!!!
-PASSED FOR LINE: Active Protection and Defence - The SNOC system actively maintains... http://t.co/L3sndea0 in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @EspacoTeens: Mandem #AvaliaMiih + Rt , vou avaliar todos #Goooooo
-QUERY FAILED FOR LINE: RT @Buchulejack: #Truth! RT @LuloCafe: Oh boy! RT @idillionaire: If two past lovers can remain friends, either they never were in love o ...
-PASSED FOR LINE: @ThaFlirtWells nooooo in 5e-06 seconds!!!
-PASSED FOR LINE: Whats going on #NewYears!? in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: "Don't patronize your Captain that is a sea rule!" #alwayssunny
-QUERY FAILED FOR LINE: @ElleAfrique I love her she's hot sexy for real..lol
-QUERY FAILED FOR LINE: Girls LOVE sayin "My Babydaddy" -____- WHY THO ? i'll never WANT to be just a babymama !! I wanna be WIFEY !!
-PASSED FOR LINE: @MONEY_TEAM_ yawready.. she treat us like her own..it's only right. She gonna be straight tho I'm sendin em up in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @DavidMoskal I don't like you though
-PASSED FOR LINE: @pabloandion ves no sabes calcular las cantidades ay ay pablitoo!! aora ya estoy cenada, siempre avisandome tardee!! in 2.2e-05 seconds!!!
+PASSED FOR LINE: Les folies c'est toujours pareil. Dès qu'on a ce qu'on voulait, on se demande un peu pourquoi on l'a voulu. in 5e-06 seconds!!!
+PASSED FOR LINE: I think my butt gettin big OHH ! Lol in 8e-06 seconds!!!
+PASSED FOR LINE: “@MiszJohana: go shower princess.” whatever you responded in 3e-06 seconds!!!
+PASSED FOR LINE: Whatever!! @_TiKyAh_  @Aph_ROE_dite in 1.8e-05 seconds!!!
+PASSED FOR LINE: Finna spend part of this week with my cousin @KristenLoR .! Love her dearly.! in 7e-06 seconds!!!
+PASSED FOR LINE: A @_ribeiroalves é linda sim ou claro ? in 3e-06 seconds!!!
+PASSED FOR LINE: @mansbaro olha a nova atualização de tibia entra ae e vota http://t.co/7o7e26NT in 5e-06 seconds!!!
+PASSED FOR LINE: @miessashika Porque eu quero falar com você antes de você viajar. =D in 8e-06 seconds!!!
+PASSED FOR LINE: @AyooJayee thanks in 4e-06 seconds!!!
+PASSED FOR LINE: RT @Lotus_jazz: Youtubeにアップしました!新作ワルツ集  -- なごみときらめきのwaltz http://t.co/6xx4hZZz in 4e-06 seconds!!!
+PASSED FOR LINE: @alexiianudi_ DM in 4e-06 seconds!!!
+PASSED FOR LINE: Active Protection and Defence - The SNOC system actively maintains... http://t.co/L3sndea0 in 7e-06 seconds!!!
+PASSED FOR LINE: RT @EspacoTeens: Mandem #AvaliaMiih + Rt , vou avaliar todos #Goooooo in 5e-06 seconds!!!
+PASSED FOR LINE: RT @Buchulejack: #Truth! RT @LuloCafe: Oh boy! RT @idillionaire: If two past lovers can remain friends, either they never were in love o ... in 5e-06 seconds!!!
+PASSED FOR LINE: @ThaFlirtWells nooooo in 4e-06 seconds!!!
+PASSED FOR LINE: Whats going on #NewYears!? in 4e-06 seconds!!!
+PASSED FOR LINE: "Don't patronize your Captain that is a sea rule!" #alwayssunny in 5e-06 seconds!!!
+PASSED FOR LINE: @ElleAfrique I love her she's hot sexy for real..lol in 3e-06 seconds!!!
+PASSED FOR LINE: Girls LOVE sayin "My Babydaddy" -____- WHY THO ? i'll never WANT to be just a babymama !! I wanna be WIFEY !! in 8e-06 seconds!!!
+PASSED FOR LINE: @MONEY_TEAM_ yawready.. she treat us like her own..it's only right. She gonna be straight tho I'm sendin em up in 7e-06 seconds!!!
+PASSED FOR LINE: @DavidMoskal I don't like you though in 5e-06 seconds!!!
+PASSED FOR LINE: @pabloandion ves no sabes calcular las cantidades ay ay pablitoo!! aora ya estoy cenada, siempre avisandome tardee!! in 5e-06 seconds!!!
 PASSED FOR LINE: I'm too nice .... Everybody have something like that to say about me ... Lol in 5e-06 seconds!!!
-PASSED FOR LINE: Anglo-American Perspectives on Private International Law: This monograph examines conflict of laws in the areas ... http://t.co/YPodCqyl in 7e-06 seconds!!!
-PASSED FOR LINE: @amandariiibeiro dm miga in 6e-06 seconds!!!
-PASSED FOR LINE: @BETRALET nenita, te aviso, saldre con titos al super! in 8e-06 seconds!!!
-PASSED FOR LINE: euteamo @ErikaDiaas_ ~sua otaria;) in 6e-06 seconds!!!
-PASSED FOR LINE: Smttt dammm dreddddd in 5e-06 seconds!!!
-PASSED FOR LINE: Photo: › O que você fez em 2011? Negrite. › › Fui ao cinema. / Dormi fora de casa. / Sai com meus amigos. /... http://t.co/hOO3djqY in 7e-06 seconds!!!
-PASSED FOR LINE: Matinee: Mission Imposible: "Ghost Protocol" in 4e-06 seconds!!!
-PASSED FOR LINE: I'm at BP http://t.co/wu9LJ36g in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @ConanOBrien: Only 364 more shopping days until Christmas.
-PASSED FOR LINE: @Florpapi PUTA. Te qiero :3 in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @TheNoteboook: The WORST thing in the world isn't being alone. It's being surrounded by people that make you feel like you're alone.
-PASSED FOR LINE: @KPpartofme São dois gostosas msm, o Ashton e a Megan, afff, eu quero u.u in 5e-06 seconds!!!
-PASSED FOR LINE: exhausted omg in 6e-06 seconds!!!
-PASSED FOR LINE: @Brit_Bratt23 no mám...missouri native in 5e-06 seconds!!!
-PASSED FOR LINE: @krysady Dunno, we found him at his app. month old at the street. He is gorgeous, isn't he?! in 6e-06 seconds!!!
-PASSED FOR LINE: Installed sweet radio, finish cleanin up house then mad laundry and loungin. #paidmonday #ValidWurkS in 5e-06 seconds!!!
-PASSED FOR LINE: Weber 7471001 Summit E-670 Natural Gas Grill, Black: This Weber gas grill Summit E-670 features an enclosed cart... http://t.co/Ghj4BUuQ in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: a sarah chegou bjj
-QUERY FAILED FOR LINE: RT @raquel_maacedo: @DJBruninho_ES  seguindo ^^
-QUERY FAILED FOR LINE: RT @wanessaoficial: A @Wanessaoficial e a @GOEYEWEAR vão presentear você. Dê RT e concorra a um óculos da linha Atitude By Wanessa http: ...
-QUERY FAILED FOR LINE: RT @hyeyoothere: #Thatsadmoment when you reminisce a concert you went to.. and you can't go back :(
+PASSED FOR LINE: Anglo-American Perspectives on Private International Law: This monograph examines conflict of laws in the areas ... http://t.co/YPodCqyl in 1.6e-05 seconds!!!
+PASSED FOR LINE: @amandariiibeiro dm miga in 5e-06 seconds!!!
+PASSED FOR LINE: @BETRALET nenita, te aviso, saldre con titos al super! in 5e-06 seconds!!!
+PASSED FOR LINE: euteamo @ErikaDiaas_ ~sua otaria;) in 4e-06 seconds!!!
+PASSED FOR LINE: Smttt dammm dreddddd in 3e-06 seconds!!!
+PASSED FOR LINE: Photo: › O que você fez em 2011? Negrite. › › Fui ao cinema. / Dormi fora de casa. / Sai com meus amigos. /... http://t.co/hOO3djqY in 5e-06 seconds!!!
+PASSED FOR LINE: Matinee: Mission Imposible: "Ghost Protocol" in 3e-06 seconds!!!
+PASSED FOR LINE: I'm at BP http://t.co/wu9LJ36g in 4e-06 seconds!!!
+PASSED FOR LINE: RT @ConanOBrien: Only 364 more shopping days until Christmas. in 3e-06 seconds!!!
+PASSED FOR LINE: @Florpapi PUTA. Te qiero :3 in 3e-06 seconds!!!
+PASSED FOR LINE: RT @TheNoteboook: The WORST thing in the world isn't being alone. It's being surrounded by people that make you feel like you're alone. in 6e-06 seconds!!!
+PASSED FOR LINE: @KPpartofme São dois gostosas msm, o Ashton e a Megan, afff, eu quero u.u in 6e-06 seconds!!!
+PASSED FOR LINE: exhausted omg in 4e-06 seconds!!!
+PASSED FOR LINE: @Brit_Bratt23 no mám...missouri native in 2e-06 seconds!!!
+PASSED FOR LINE: @krysady Dunno, we found him at his app. month old at the street. He is gorgeous, isn't he?! in 5e-06 seconds!!!
+PASSED FOR LINE: Installed sweet radio, finish cleanin up house then mad laundry and loungin. #paidmonday #ValidWurkS in 4e-06 seconds!!!
+PASSED FOR LINE: Weber 7471001 Summit E-670 Natural Gas Grill, Black: This Weber gas grill Summit E-670 features an enclosed cart... http://t.co/Ghj4BUuQ in 4e-06 seconds!!!
+PASSED FOR LINE: a sarah chegou bjj in 3e-06 seconds!!!
+PASSED FOR LINE: RT @raquel_maacedo: @DJBruninho_ES  seguindo ^^ in 3e-06 seconds!!!
+PASSED FOR LINE: RT @wanessaoficial: A @Wanessaoficial e a @GOEYEWEAR vão presentear você. Dê RT e concorra a um óculos da linha Atitude By Wanessa http: ... in 6e-06 seconds!!!
+PASSED FOR LINE: RT @hyeyoothere: #Thatsadmoment when you reminisce a concert you went to.. and you can't go back :( in 5e-06 seconds!!!
 PASSED FOR LINE: Battpitâ„¢ Laptop / Notebook Battery Replacement for Acer Aspire 1690LMi (4400mAh / 65Wh ) with FREE 8GB Battpitâ„¢ ... http://t.co/5iwxezMw in 5e-06 seconds!!!
-PASSED FOR LINE: chau me baño in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: I Always Wanna Be Happy In Lifeee
-QUERY FAILED FOR LINE: GET MORE FOLLOWERS MY BEST FRIENDS? I WILL FOLLOW YOU BACK IF YOU FOLLOW ME -  http://t.co/9mD5xsSt
-PASSED FOR LINE: @sp_minnesota  Professionals like Accountants and  Marketers love http://t.co/jj4TCXFz and we\'re sure you will too, check it out. in 7e-06 seconds!!!
-PASSED FOR LINE: Nada que hacer... Por eso veo fx koala :B in 6e-06 seconds!!!
+PASSED FOR LINE: chau me baño in 4e-06 seconds!!!
+PASSED FOR LINE: I Always Wanna Be Happy In Lifeee in 3e-06 seconds!!!
+PASSED FOR LINE: GET MORE FOLLOWERS MY BEST FRIENDS? I WILL FOLLOW YOU BACK IF YOU FOLLOW ME -  http://t.co/9mD5xsSt in 5e-06 seconds!!!
+PASSED FOR LINE: @sp_minnesota  Professionals like Accountants and  Marketers love http://t.co/jj4TCXFz and we\'re sure you will too, check it out. in 4e-06 seconds!!!
+PASSED FOR LINE: Nada que hacer... Por eso veo fx koala :B in 4e-06 seconds!!!
 PASSED FOR LINE: #eastenders time now :D in 6e-06 seconds!!!
-PASSED FOR LINE: Lua Blanco! http://t.co/FQcHkpGp via @instagram in 6e-06 seconds!!!
-PASSED FOR LINE: 6,000 lb. Weight Distribution Hitch, Sway Control, and Ball Combo: 8" total height adjustment Rise: 5 5/8" Drop:... http://t.co/cYzCshg6 in 5e-06 seconds!!!
+PASSED FOR LINE: Lua Blanco! http://t.co/FQcHkpGp via @instagram in 5e-06 seconds!!!
+PASSED FOR LINE: 6,000 lb. Weight Distribution Hitch, Sway Control, and Ball Combo: 8" total height adjustment Rise: 5 5/8" Drop:... http://t.co/cYzCshg6 in 1.7e-05 seconds!!!
 PASSED FOR LINE: We just started our Facebook Page today can you please help us learn how to use it and "Like" us so that we can... http://t.co/Jycr8mEC in 6e-06 seconds!!!
-PASSED FOR LINE: @x_marritt @xkusjesharon zei is gemeen ja :$ in 6e-06 seconds!!!
+PASSED FOR LINE: @x_marritt @xkusjesharon zei is gemeen ja :$ in 3e-06 seconds!!!
 PASSED FOR LINE: Leaaaaavin' leavin' leavin' RT @Manoz: Badass Guy is badass. http://t.co/J9wAAjxq in 6e-06 seconds!!!
-PASSED FOR LINE: @LeyaFalcon thank you Leyaa in 4e-06 seconds!!!
-PASSED FOR LINE: cansei de demonstrar ser forte. in 6e-06 seconds!!!
-PASSED FOR LINE: El de las pizzas me cambió el apellido in 6e-06 seconds!!!
-PASSED FOR LINE: @MVEllllias e também não precisa ser grosso! era só pedir que eu ia seguir de volta. in 6e-06 seconds!!!
-PASSED FOR LINE: @D_Timbers no you gave to tell me now! in 5e-06 seconds!!!
-PASSED FOR LINE: @thalia Me siga Por favor,sou um fã muito apaixonado por você.me dê essa                    felicidade.Beijos de seu eterno fã in 6e-06 seconds!!!
-PASSED FOR LINE: omw to @Ronny_TheGreat  ;  then we gone fade @Kiddo_Blowed  house and get high and shit ! in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: Mm i love turkey
-PASSED FOR LINE: @cervantees se toma la pastilla del día siguiente* in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @agus_aggie Rt d kandang mu tah?
+PASSED FOR LINE: @LeyaFalcon thank you Leyaa in 2e-06 seconds!!!
+PASSED FOR LINE: cansei de demonstrar ser forte. in 4e-06 seconds!!!
+PASSED FOR LINE: El de las pizzas me cambió el apellido in 3e-06 seconds!!!
+PASSED FOR LINE: @MVEllllias e também não precisa ser grosso! era só pedir que eu ia seguir de volta. in 4e-06 seconds!!!
+PASSED FOR LINE: @D_Timbers no you gave to tell me now! in 4e-06 seconds!!!
+PASSED FOR LINE: @thalia Me siga Por favor,sou um fã muito apaixonado por você.me dê essa                    felicidade.Beijos de seu eterno fã in 8e-06 seconds!!!
+PASSED FOR LINE: omw to @Ronny_TheGreat  ;  then we gone fade @Kiddo_Blowed  house and get high and shit ! in 5e-06 seconds!!!
+PASSED FOR LINE: Mm i love turkey in 1.2e-05 seconds!!!
+PASSED FOR LINE: @cervantees se toma la pastilla del día siguiente* in 5e-06 seconds!!!
+PASSED FOR LINE: @agus_aggie Rt d kandang mu tah? in 4e-06 seconds!!!
 PASSED FOR LINE: @hellpants listening to you on the radio, with @keighley_ann and @BronwynCraul, 2012 is adventures to Thailand, Michael Buble and THE EAGLES in 7e-06 seconds!!!
 PASSED FOR LINE: God & Spirituality - The Undeniable Evidence for God's Existence: Were the ancient founders of the world's great... http://t.co/2ot9Gdgh in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: NO BRAINER NYE with us! It's a discount countdown. Save 30% 6-7PM, 40% 7-8PM, 50% 8-9PM. We want to make it easy for you!
-QUERY FAILED FOR LINE: @VivreVivi haha je trouve ça marrant :p
-QUERY FAILED FOR LINE: RT @Callme_daddy2: R.I.P to the 3 children and their 2 grandparents that died in a house fire in Connecticut on Christmas Morning. RT if ...
+PASSED FOR LINE: NO BRAINER NYE with us! It's a discount countdown. Save 30% 6-7PM, 40% 7-8PM, 50% 8-9PM. We want to make it easy for you! in 6e-06 seconds!!!
+PASSED FOR LINE: @VivreVivi haha je trouve ça marrant :p in 6e-06 seconds!!!
+PASSED FOR LINE: RT @Callme_daddy2: R.I.P to the 3 children and their 2 grandparents that died in a house fire in Connecticut on Christmas Morning. RT if ... in 7e-06 seconds!!!
 PASSED FOR LINE: jajaja q rara es la vida!!! piensas q lo tienes todo mientras q en realidad no tienes nd!!!! jajaja bueno x suerte ia viene otro año!! in 6e-06 seconds!!!
-PASSED FOR LINE: Experimentos con tu cuerpo: tenedor 'parlante' http://t.co/JMpE77nu ¿Juegas? =) in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: Singer Dido, whose "Thank You" was sampled in Eminem's "Stan" gave birth to a son yesterday. His name? Stanley. #ILoveIt #CleverGirl
-PASSED FOR LINE: @KenGalang HAPPY BIRTHDAY #timelineflood in 6e-06 seconds!!!
-PASSED FOR LINE: @Lalilalou AH mais j'ai cru tu disais que j'étais vielle par rapport à mon age x) in 6e-06 seconds!!!
-PASSED FOR LINE: por  isso  q  vc  é o  meu  amorzinho in 7e-06 seconds!!!
+PASSED FOR LINE: Experimentos con tu cuerpo: tenedor 'parlante' http://t.co/JMpE77nu ¿Juegas? =) in 4e-06 seconds!!!
+PASSED FOR LINE: Singer Dido, whose "Thank You" was sampled in Eminem's "Stan" gave birth to a son yesterday. His name? Stanley. #ILoveIt #CleverGirl in 5e-06 seconds!!!
+PASSED FOR LINE: @KenGalang HAPPY BIRTHDAY #timelineflood in 4e-06 seconds!!!
+PASSED FOR LINE: @Lalilalou AH mais j'ai cru tu disais que j'étais vielle par rapport à mon age x) in 5e-06 seconds!!!
+PASSED FOR LINE: por  isso  q  vc  é o  meu  amorzinho in 8e-06 seconds!!!
 PASSED FOR LINE: vou lá, até dps (: in 5e-06 seconds!!!
-PASSED FOR LINE: @SaucyXee sag in 4e-06 seconds!!!
-QUERY FAILED FOR LINE: Vou tirar um sono c a gorda
-PASSED FOR LINE: e o que devo fazer agr?? in 5e-06 seconds!!!
-PASSED FOR LINE: @xxbrenn hahaha stoerr hooor in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @Rambelli_M eu to
-QUERY FAILED FOR LINE: Rt if your a CAPRICORN BABII!!!!
+PASSED FOR LINE: @SaucyXee sag in 3e-06 seconds!!!
+PASSED FOR LINE: Vou tirar um sono c a gorda in 5e-06 seconds!!!
+PASSED FOR LINE: e o que devo fazer agr?? in 6e-06 seconds!!!
+PASSED FOR LINE: @xxbrenn hahaha stoerr hooor in 4e-06 seconds!!!
+PASSED FOR LINE: @Rambelli_M eu to in 4e-06 seconds!!!
+PASSED FOR LINE: Rt if your a CAPRICORN BABII!!!! in 4e-06 seconds!!!
 PASSED FOR LINE: Kind of regret not buying that guess wallet ): Hmph. in 5e-06 seconds!!!
-PASSED FOR LINE: @MaelArtes indique o capeta, mas não indique ela por favor ! in 5e-06 seconds!!!
-PASSED FOR LINE: RT @ChoraoFrases: Tudo tem seu tempo. in 0.036917 seconds!!!
-PASSED FOR LINE: oiii alai ko kawan2 alai lah komplen ha @RamaNamaku ba tugas ko... #cacad in 6e-06 seconds!!!
-PASSED FOR LINE: 10 irresistible heart products! http://t.co/ZLSmv4ga in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @XSTROLOGY: #Aries is the powerhouse of the zodiac. Big muscles, big attitude, big everything.
-PASSED FOR LINE: @Josemaria_lls aww thank you papi, you too ^_^ in 7e-06 seconds!!!
+PASSED FOR LINE: @MaelArtes indique o capeta, mas não indique ela por favor ! in 4e-06 seconds!!!
+PASSED FOR LINE: RT @ChoraoFrases: Tudo tem seu tempo. in 0.034571 seconds!!!
+PASSED FOR LINE: oiii alai ko kawan2 alai lah komplen ha @RamaNamaku ba tugas ko... #cacad in 4e-06 seconds!!!
+PASSED FOR LINE: 10 irresistible heart products! http://t.co/ZLSmv4ga in 4e-06 seconds!!!
+PASSED FOR LINE: RT @XSTROLOGY: #Aries is the powerhouse of the zodiac. Big muscles, big attitude, big everything. in 5e-06 seconds!!!
+PASSED FOR LINE: @Josemaria_lls aww thank you papi, you too ^_^ in 5e-06 seconds!!!
 PASSED FOR LINE: @kajeverse was afgepakt (ik praat nu tegen mezelf jij bent er nietî„…) in 6e-06 seconds!!!
-PASSED FOR LINE: @eric_merced lol. in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: I hate see'n ppl at tha bus stationnn :)
-PASSED FOR LINE: Eiiii' Trabalhei feito loko hoje !! Amanha começo no trabalho novo !! \o/ in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @ryon_m1: Pittsfiled holds on to def. W. Hancock 61-58 #gbkb #LTC #ihsa
-PASSED FOR LINE: German Version Of "double Your Dating". Das Erfolgreichste Dating-advice-ebook Aller Zeiten. Neuer Affiliate-ber... http://t.co/XAvyFn26 in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @MaryDuqueMarino acabo de llegar Mari y no me funcionan los telefonos...me voy a morir...que tal?ya llegaste?
+PASSED FOR LINE: @eric_merced lol. in 3e-06 seconds!!!
+PASSED FOR LINE: I hate see'n ppl at tha bus stationnn :) in 4e-06 seconds!!!
+PASSED FOR LINE: Eiiii' Trabalhei feito loko hoje !! Amanha começo no trabalho novo !! \o/ in 4e-06 seconds!!!
+PASSED FOR LINE: RT @ryon_m1: Pittsfiled holds on to def. W. Hancock 61-58 #gbkb #LTC #ihsa in 5e-06 seconds!!!
+PASSED FOR LINE: German Version Of "double Your Dating". Das Erfolgreichste Dating-advice-ebook Aller Zeiten. Neuer Affiliate-ber... http://t.co/XAvyFn26 in 4e-06 seconds!!!
+PASSED FOR LINE: @MaryDuqueMarino acabo de llegar Mari y no me funcionan los telefonos...me voy a morir...que tal?ya llegaste? in 6e-06 seconds!!!
 PASSED FOR LINE: @cemeterydriv3 SE VC CHEGAR PERTO DA MINHA CAMISA EU TE MATO IGUALZINHO EM FINAL D. in 6e-06 seconds!!!
-PASSED FOR LINE: @LuaBlanco_World lembrei que o site de vcs tinha sido hackeado... já recuperaram? in 7e-06 seconds!!!
-PASSED FOR LINE: @xilovelogan Geen idee. &gt;&lt; in 5e-06 seconds!!!
+PASSED FOR LINE: @LuaBlanco_World lembrei que o site de vcs tinha sido hackeado... já recuperaram? in 6e-06 seconds!!!
+PASSED FOR LINE: @xilovelogan Geen idee. &gt;&lt; in 4e-06 seconds!!!
 PASSED FOR LINE: @Twhibbert jajaja ay chaparro eres un desastreee!! Espero q estes muy biien te qiero muchoo y comprame una sorpree ;) in 6e-06 seconds!!!
-PASSED FOR LINE: @arnoldbebingh wtf, breng my ook ff cola ! in 5e-06 seconds!!!
-PASSED FOR LINE: @taywright06 no way it happens in 8e-06 seconds!!!
-PASSED FOR LINE: @holygirl_ leva ela foadubfiadubfaiubfda in 5e-06 seconds!!!
-PASSED FOR LINE: off ya öldürecek beni bu dizi ya #olaylarolayla #leylailemecnun... in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: I wanna go see my boo thang..maybe tonight
-PASSED FOR LINE: I'am in @WetWilliesAtl: Falcons vs Saints viewing party @WetWilliesAtl tonight for Monday Night Football. Don't meet me there. Beat me there in 6e-06 seconds!!!
-PASSED FOR LINE: RT @JanneteBabuina: Tem muito pano de chão se achando edredom. in 7e-06 seconds!!!
-PASSED FOR LINE: auww... auww... sangro sangro...!! in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @lopezdoriga1: Les informo que acaba de morir Pedro Armendáriz.
-QUERY FAILED FOR LINE: RT @sechsdreinuller: Wenn ihr 'ne DM mit "Nacktbilder von Veronica Ferres" bekommt, NICHT DEN LINK ANKLICKEN! Er führt zu Nacktbildern v ...
-QUERY FAILED FOR LINE: RT @Sasha_Thumpa: If we can't make money together I don't need ya
-PASSED FOR LINE: #benimutlueden kişi Haribo Ayıcık o çok tatlı biri, o çok orjinal. in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @al_seyase: "الداخلية" أحالت الفرعيات للنيابة وطالبت بإغلاق حسابات "تويتر" المجهولة: http://t.co/YrZoSO0G
-#صعبه جنها
-PASSED FOR LINE: Problem solving lesson plans http://t.co/xdqBMANs in 6e-06 seconds!!!
-PASSED FOR LINE: I wanna go #shopping wit dat #holidaycash but there's this thing called rent...#fuckyou in 6e-06 seconds!!!
-PASSED FOR LINE: @GBAlmeida_ vem aqui amanhã in 5e-06 seconds!!!
-PASSED FOR LINE: Girl, you can have it all.. startin' with my last name (; in 5e-06 seconds!!!
+PASSED FOR LINE: @arnoldbebingh wtf, breng my ook ff cola ! in 4e-06 seconds!!!
+PASSED FOR LINE: @taywright06 no way it happens in 5e-06 seconds!!!
+PASSED FOR LINE: @holygirl_ leva ela foadubfiadubfaiubfda in 4e-06 seconds!!!
+PASSED FOR LINE: off ya öldürecek beni bu dizi ya #olaylarolayla #leylailemecnun... in 6e-06 seconds!!!
+PASSED FOR LINE: I wanna go see my boo thang..maybe tonight in 7e-06 seconds!!!
+PASSED FOR LINE: I'am in @WetWilliesAtl: Falcons vs Saints viewing party @WetWilliesAtl tonight for Monday Night Football. Don't meet me there. Beat me there in 5e-06 seconds!!!
+PASSED FOR LINE: RT @JanneteBabuina: Tem muito pano de chão se achando edredom. in 4e-06 seconds!!!
+PASSED FOR LINE: auww... auww... sangro sangro...!! in 3e-06 seconds!!!
+PASSED FOR LINE: RT @lopezdoriga1: Les informo que acaba de morir Pedro Armendáriz. in 4e-06 seconds!!!
+PASSED FOR LINE: RT @sechsdreinuller: Wenn ihr 'ne DM mit "Nacktbilder von Veronica Ferres" bekommt, NICHT DEN LINK ANKLICKEN! Er führt zu Nacktbildern v ... in 6e-06 seconds!!!
+PASSED FOR LINE: RT @Sasha_Thumpa: If we can't make money together I don't need ya in 6e-06 seconds!!!
+PASSED FOR LINE: #benimutlueden kişi Haribo Ayıcık o çok tatlı biri, o çok orjinal. in 6e-06 seconds!!!
+PASSED FOR LINE: RT @al_seyase: "الداخلية" أحالت الفرعيات للنيابة وطالبت بإغلاق حسابات "تويتر" المجهولة: http://t.co/YrZoSO0G
+#صعبه جنها in 4e-06 seconds!!!
+PASSED FOR LINE: Problem solving lesson plans http://t.co/xdqBMANs in 7e-06 seconds!!!
+PASSED FOR LINE: I wanna go #shopping wit dat #holidaycash but there's this thing called rent...#fuckyou in 5e-06 seconds!!!
+PASSED FOR LINE: @GBAlmeida_ vem aqui amanhã in 6e-06 seconds!!!
+PASSED FOR LINE: Girl, you can have it all.. startin' with my last name (; in 6e-06 seconds!!!
 PASSED FOR LINE: @leGrosCon tu crois ? Pourtant elle sont softs. in 5e-06 seconds!!!
 PASSED FOR LINE: Eu vivi toda a minha insignificante vida a cores
 Meu futuro é preto e branco
 Eu continuo ganhando passagem
-Sem destino a vista in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: @OneDirection_UK where can i meet one direction all the tickets r expensive :(
+Sem destino a vista in 8e-06 seconds!!!
+PASSED FOR LINE: @OneDirection_UK where can i meet one direction all the tickets r expensive :( in 5e-06 seconds!!!
 PASSED FOR LINE: @Ghalouy LOLOL ee wallah in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: @haleybeadle I still don't get why no music on the way home.. Ever. Just silent
-QUERY FAILED FOR LINE: Ahora a ver Avalon High
-QUERY FAILED FOR LINE: RT @Nayfinnn27: RT @GirlMemories: I hate getting flashbacks from things I don't want to remember.
+PASSED FOR LINE: @haleybeadle I still don't get why no music on the way home.. Ever. Just silent in 6e-06 seconds!!!
+PASSED FOR LINE: Ahora a ver Avalon High in 3e-06 seconds!!!
+PASSED FOR LINE: RT @Nayfinnn27: RT @GirlMemories: I hate getting flashbacks from things I don't want to remember. in 6e-06 seconds!!!
 PASSED FOR LINE: Podem assistir @nanypeople hj na @tvpocos ao vivo em tempo real pela internet : in 5e-06 seconds!!!
-PASSED FOR LINE: Silas anda muy pesado in 7e-06 seconds!!!
+PASSED FOR LINE: Silas anda muy pesado in 4e-06 seconds!!!
 PASSED FOR LINE: @mruttenn hahh xd in 4e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @NWA_Jackss: everyone has an iphone now .. -.-
+PASSED FOR LINE: RT @NWA_Jackss: everyone has an iphone now .. -.- in 5e-06 seconds!!!
 PASSED FOR LINE: @ViktorRamirez77 el reggaeton les mata las neuronas carae! in 5e-06 seconds!!!
-PASSED FOR LINE: @lahijadelRey7 Hope u had a Merry Christmas! And thx! in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @VALERIA_BANDlDA: #PioresMusicasDe2011 a tenho mesmo que falar as musicas inteirinhas do restart ? D;
-PASSED FOR LINE: Falxons finna get dat ass tapped tonight in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @parakisses: :H :E :Y  :J :O :S :H :? nenhuma carinha feliz ;(
-QUERY FAILED FOR LINE: RT @shaligda: @son_by @kareetc64 @sostipendi @serunim @lesgoustoy @ivanlyas Ч5WrPi|Б0щGлХfV&lt;8аБгD&gt;:EЖ*W~Н/ЗIя9
-PASSED FOR LINE: Headed 2 the Florida Mall w/ my girls 😊 in 4e-06 seconds!!!
-PASSED FOR LINE: Me lo parece a mi o el neng de Castefa (edu soto) se da un aire a @oresgonvi... in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @RafaelCostta_a: ┈░░▄▇█████████▇▄░░▒▒┈ ┈▄█▉▀░╭▀▀▀▀▀▀▀▀▀╮░░░▒ ╭▀╮░░░╰┬─▄───▄─┬╯░░░▒ ╰─╯░░░▄┴┐╭─└┘─╮├┐░░░▒ ┈┈▒▒▄█▌░└┘╰──╯└┘▐▄░░▒ ┈▒▒▒█▉ ...
-PASSED FOR LINE: @liciniapinto unfollow? in 6e-06 seconds!!!
-PASSED FOR LINE: @rcpatik Ä°zledim televizyon  da da in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @Darkskinn_Bree: My feet are freezing !
-PASSED FOR LINE: Oomf be really having me thinking like either your confused or just plain #fake in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: i dunno why but i just randomly walked downstairs to the kitchen and came back upstairs without anything
-PASSED FOR LINE: You chose this path in 4e-06 seconds!!!
-PASSED FOR LINE: BOMBE SEU TWITTER COM #BigFollow:  http://t.co/4AKnyKiC in 7e-06 seconds!!!
+PASSED FOR LINE: @lahijadelRey7 Hope u had a Merry Christmas! And thx! in 4e-06 seconds!!!
+PASSED FOR LINE: RT @VALERIA_BANDlDA: #PioresMusicasDe2011 a tenho mesmo que falar as musicas inteirinhas do restart ? D; in 5e-06 seconds!!!
+PASSED FOR LINE: Falxons finna get dat ass tapped tonight in 3e-06 seconds!!!
+PASSED FOR LINE: RT @parakisses: :H :E :Y  :J :O :S :H :? nenhuma carinha feliz ;( in 4e-06 seconds!!!
+PASSED FOR LINE: RT @shaligda: @son_by @kareetc64 @sostipendi @serunim @lesgoustoy @ivanlyas Ч5WrPi|Б0щGлХfV&lt;8аБгD&gt;:EЖ*W~Н/ЗIя9 in 3e-06 seconds!!!
+PASSED FOR LINE: Headed 2 the Florida Mall w/ my girls 😊 in 6e-06 seconds!!!
+PASSED FOR LINE: Me lo parece a mi o el neng de Castefa (edu soto) se da un aire a @oresgonvi... in 4e-06 seconds!!!
+PASSED FOR LINE: RT @RafaelCostta_a: ┈░░▄▇█████████▇▄░░▒▒┈ ┈▄█▉▀░╭▀▀▀▀▀▀▀▀▀╮░░░▒ ╭▀╮░░░╰┬─▄───▄─┬╯░░░▒ ╰─╯░░░▄┴┐╭─└┘─╮├┐░░░▒ ┈┈▒▒▄█▌░└┘╰──╯└┘▐▄░░▒ ┈▒▒▒█▉ ... in 2e-06 seconds!!!
+PASSED FOR LINE: @liciniapinto unfollow? in 3e-06 seconds!!!
+PASSED FOR LINE: @rcpatik Ä°zledim televizyon  da da in 4e-06 seconds!!!
+PASSED FOR LINE: RT @Darkskinn_Bree: My feet are freezing ! in 4e-06 seconds!!!
+PASSED FOR LINE: Oomf be really having me thinking like either your confused or just plain #fake in 4e-06 seconds!!!
+PASSED FOR LINE: i dunno why but i just randomly walked downstairs to the kitchen and came back upstairs without anything in 6e-06 seconds!!!
+PASSED FOR LINE: You chose this path in 3e-06 seconds!!!
+PASSED FOR LINE: BOMBE SEU TWITTER COM #BigFollow:  http://t.co/4AKnyKiC in 6e-06 seconds!!!
 PASSED FOR LINE: Photo: rinafromdahall: http://t.co/SjyLkRUa in 4e-06 seconds!!!
-PASSED FOR LINE: @Sbouqammaz la afa 3alaik ;* inta ml7 Twitter ;* in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: omfg i might have to wake up at 9:30 tomorrow wut
-PASSED FOR LINE: @hoolig4ns omg, she tweets me all the time, dont be jel. in 5e-06 seconds!!!
-PASSED FOR LINE: @aordini shitty comebackk in 5e-06 seconds!!!
-PASSED FOR LINE: @noctowl_ ish in 5e-06 seconds!!!
-PASSED FOR LINE: flame koen in 9e-06 seconds!!!
-PASSED FOR LINE: @ujulicious3 y wont dey be?always misplacing fons n laptops.......lol in 6e-06 seconds!!!
-PASSED FOR LINE: @FAKAPiM @bartstevenz wie bego er met solliesnollie haha? in 6e-06 seconds!!!
-PASSED FOR LINE: @RoxyNJustice on my way in 8e-06 seconds!!!
-QUERY FAILED FOR LINE: @LastQueen_Lexx  i heard it is im onmw
-PASSED FOR LINE: @selenarosedp espero que te encuentres muy bien besos linda! in 6e-06 seconds!!!
-PASSED FOR LINE: @trifatboytri how's it going big guy? Busy chrimbo at work? How was Xmas day with all the folks round?? in 5e-06 seconds!!!
-PASSED FOR LINE: RT @MiYAH_BaddAzz Return all ur gifts 4 cash & go buy some confidence ...u hoes get on my nerves fishing for compliments ! in 6e-06 seconds!!!
-PASSED FOR LINE: @Indescribable_T When will you ever come and get it? lol in 4e-06 seconds!!!
+PASSED FOR LINE: @Sbouqammaz la afa 3alaik ;* inta ml7 Twitter ;* in 4e-06 seconds!!!
+PASSED FOR LINE: omfg i might have to wake up at 9:30 tomorrow wut in 7e-06 seconds!!!
+PASSED FOR LINE: @hoolig4ns omg, she tweets me all the time, dont be jel. in 4e-06 seconds!!!
+PASSED FOR LINE: @aordini shitty comebackk in 7e-06 seconds!!!
+PASSED FOR LINE: @noctowl_ ish in 4e-06 seconds!!!
+PASSED FOR LINE: flame koen in 4e-06 seconds!!!
+PASSED FOR LINE: @ujulicious3 y wont dey be?always misplacing fons n laptops.......lol in 2e-06 seconds!!!
+PASSED FOR LINE: @FAKAPiM @bartstevenz wie bego er met solliesnollie haha? in 3e-06 seconds!!!
+PASSED FOR LINE: @RoxyNJustice on my way in 4e-06 seconds!!!
+PASSED FOR LINE: @LastQueen_Lexx  i heard it is im onmw in 5e-06 seconds!!!
+PASSED FOR LINE: @selenarosedp espero que te encuentres muy bien besos linda! in 3e-06 seconds!!!
+PASSED FOR LINE: @trifatboytri how's it going big guy? Busy chrimbo at work? How was Xmas day with all the folks round?? in 4e-06 seconds!!!
+PASSED FOR LINE: RT @MiYAH_BaddAzz Return all ur gifts 4 cash & go buy some confidence ...u hoes get on my nerves fishing for compliments ! in 1e-05 seconds!!!
+PASSED FOR LINE: @Indescribable_T When will you ever come and get it? lol in 7e-06 seconds!!!
 PASSED FOR LINE: @Prettiarrogant Ima make a round, I'm eastside Ridin! in 5e-06 seconds!!!
-PASSED FOR LINE: @Alan_santoos @LeooMoraes7  Judas nem me chama BRiguem com eles por mim @_IsahMoura e @BiaAlmeida6 in 6e-06 seconds!!!
-PASSED FOR LINE: Eentje plakt zyn haren gwn alof het lijm is zo van kaulo veel gel in 6e-06 seconds!!!
-PASSED FOR LINE: Puf, de verdad. in 6e-06 seconds!!!
+PASSED FOR LINE: @Alan_santoos @LeooMoraes7  Judas nem me chama BRiguem com eles por mim @_IsahMoura e @BiaAlmeida6 in 5e-06 seconds!!!
+PASSED FOR LINE: Eentje plakt zyn haren gwn alof het lijm is zo van kaulo veel gel in 5e-06 seconds!!!
+PASSED FOR LINE: Puf, de verdad. in 4e-06 seconds!!!
 PASSED FOR LINE: dancem sem as blusas amores (@lexaavier live on http://t.co/pqMa4iUY) in 4e-06 seconds!!!
-QUERY FAILED FOR LINE: @Belieb4Mahone omfg gurl I love u!!!!!
-PASSED FOR LINE: #30pessoasquemarcarammeu2011 4-@sb_caroline in 5e-06 seconds!!!
+PASSED FOR LINE: @Belieb4Mahone omfg gurl I love u!!!!! in 1.9e-05 seconds!!!
+PASSED FOR LINE: #30pessoasquemarcarammeu2011 4-@sb_caroline in 4e-06 seconds!!!
 PASSED FOR LINE: 2011 Favourites ** Axwell - Heart Is King http://t.co/WxRBok1p in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: #Broadcasting on http://t.co/ItlDtLWT : Bishop John H Heath - How To Handle A Reccession
+PASSED FOR LINE: #Broadcasting on http://t.co/ItlDtLWT : Bishop John H Heath - How To Handle A Reccession in 4e-06 seconds!!!
 PASSED FOR LINE: @lhvmsk70 今、新宿です。朝ごはんコンビニで調達してから行きます。よろしくm(__)m in 5e-06 seconds!!!
-PASSED FOR LINE: “@Rob_Day26 what was ur best christmas gift?”waking up in 6e-06 seconds!!!
-PASSED FOR LINE: - Queeim Hojje Riir, Amanhã  Pode Chorar  ♫ in 6e-06 seconds!!!
-PASSED FOR LINE: @DougRocksDreads :Lol Im Knowing.. in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: @DiminishBlasian who went to jail..?
-PASSED FOR LINE: @Shamma1 @UAENEWSBB شو ما فيكم نووووم الين الحين in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: My last 6 mentions were funny af . I forgot my followers are foolish
-PASSED FOR LINE: 22:00 Línea 1 - 7 minutos / Línea 4 - 22 minutos in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @boammar: ياوزير الخارجيةحالتنه حاله يوم أن سمحت الدولةومازالت بالخمور والدعارةوساءت حالتنه لما أعفيتم عن الخونةونسيتم يوم كانت حالتك ...
-PASSED FOR LINE: RT @biiebermaniacas: você lembrou do Bieber quando viu Go CANADA nos trends mundiais ? KKKKKKKKKKKKKKK sério mesmo ? KKKKKKKKKKKKKKKKKKK ... in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @EnvAgency: We're trialling using unwanted Xmas trees to build flood defences and protect river banks from erosion. Read more here: h ...
-QUERY FAILED FOR LINE: RT @OhMyNickHechos: Nick nunca despierta,tienes que llamarlo 40 veces y aun asi sacudirlo-Kevin. #NickHechos
-QUERY FAILED FOR LINE: RT @43V3RmrsCOBBS: Oomf that's at victoria secret should buy me some fresh & clean since the airport made me throw mine away lol. I'll t ...
-QUERY FAILED FOR LINE: RT @JadeStratford: @Cloe_Beadles 1,58 m et toi ?
-PASSED FOR LINE: Must see for Detroit: 0 - 0 beds, 1+ baths, Please Call.  Check it out! http://t.co/dPTjZ5BC http://t.co/ADtEz3q7 in 6e-06 seconds!!!
+PASSED FOR LINE: “@Rob_Day26 what was ur best christmas gift?”waking up in 1.5e-05 seconds!!!
+PASSED FOR LINE: - Queeim Hojje Riir, Amanhã  Pode Chorar  ♫ in 4e-06 seconds!!!
+PASSED FOR LINE: @DougRocksDreads :Lol Im Knowing.. in 4e-06 seconds!!!
+PASSED FOR LINE: @DiminishBlasian who went to jail..? in 3e-06 seconds!!!
+PASSED FOR LINE: @Shamma1 @UAENEWSBB شو ما فيكم نووووم الين الحين in 2e-06 seconds!!!
+PASSED FOR LINE: My last 6 mentions were funny af . I forgot my followers are foolish in 5e-06 seconds!!!
+PASSED FOR LINE: 22:00 Línea 1 - 7 minutos / Línea 4 - 22 minutos in 4e-06 seconds!!!
+PASSED FOR LINE: RT @boammar: ياوزير الخارجيةحالتنه حاله يوم أن سمحت الدولةومازالت بالخمور والدعارةوساءت حالتنه لما أعفيتم عن الخونةونسيتم يوم كانت حالتك ... in 4e-06 seconds!!!
+PASSED FOR LINE: RT @biiebermaniacas: você lembrou do Bieber quando viu Go CANADA nos trends mundiais ? KKKKKKKKKKKKKKK sério mesmo ? KKKKKKKKKKKKKKKKKKK ... in 5e-06 seconds!!!
+PASSED FOR LINE: RT @EnvAgency: We're trialling using unwanted Xmas trees to build flood defences and protect river banks from erosion. Read more here: h ... in 6e-06 seconds!!!
+PASSED FOR LINE: RT @OhMyNickHechos: Nick nunca despierta,tienes que llamarlo 40 veces y aun asi sacudirlo-Kevin. #NickHechos in 4e-06 seconds!!!
+PASSED FOR LINE: RT @43V3RmrsCOBBS: Oomf that's at victoria secret should buy me some fresh & clean since the airport made me throw mine away lol. I'll t ... in 9e-06 seconds!!!
+PASSED FOR LINE: RT @JadeStratford: @Cloe_Beadles 1,58 m et toi ? in 5e-06 seconds!!!
+PASSED FOR LINE: Must see for Detroit: 0 - 0 beds, 1+ baths, Please Call.  Check it out! http://t.co/dPTjZ5BC http://t.co/ADtEz3q7 in 7e-06 seconds!!!
 PASSED FOR LINE: Relajate y calla. in 6e-06 seconds!!!
 PASSED FOR LINE: Halo kk2 @EXORCISMband kalau kalian ingin recoding/mixing/mastering disini saja, murah dan berkualitas. Follbek ya kk :) in 5e-06 seconds!!!
-PASSED FOR LINE: KKKKKKKKK aiai *.* in 6e-06 seconds!!!
-PASSED FOR LINE: Featured Photo: Brompton on Amtrak http://t.co/Zglor6o8 in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: ;);) RT @Sassymamma: !!! RT ELA_Weezy: Umh! I luv ur tits.. Wt a perfct make.. Sassymamma
+PASSED FOR LINE: KKKKKKKKK aiai *.* in 4e-06 seconds!!!
+PASSED FOR LINE: Featured Photo: Brompton on Amtrak http://t.co/Zglor6o8 in 4e-06 seconds!!!
+PASSED FOR LINE: ;);) RT @Sassymamma: !!! RT ELA_Weezy: Umh! I luv ur tits.. Wt a perfct make.. Sassymamma in 5e-06 seconds!!!
 PASSED FOR LINE: @JuditTequiere12 Hablamos por aqui si quieres que estoy enm casa de mis primitos! o si quieres llamame y me avisas:) (L) in 6e-06 seconds!!!
-PASSED FOR LINE: RT @LassoMusica: La única manera que todo el mundo hable bien de ti es que mueras. in 6e-06 seconds!!!
-PASSED FOR LINE: @ClodaDuffy donies driving in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: GET MORE FOLLOWERS MY BEST FRIENDS? I WILL FOLLOW YOU BACK IF YOU FOLLOW ME -  http://t.co/JJZLLaOc
-QUERY FAILED FOR LINE: RT @TattoosNRoses: newly single doesn't mean get buckwild party like yu just got to vegas, it means taken a second to breathe and improv ...
-QUERY FAILED FOR LINE: RT @Atheeris: يفسدون ويلعبون على الفتيات اليوم ثم يبحثون عن زوجات ... http://t.co/jLuww2pU
-PASSED FOR LINE: Current Weather: 9.2&#xB0;C  5.5 mph  wind in 5e-06 seconds!!!
-PASSED FOR LINE: @JoyLanny Bom dia amiga!! in 6e-06 seconds!!!
-PASSED FOR LINE: @WarhelS079 is kapot goed in fifa vergeleken met mij is ie KAPOT goed xd in 6e-06 seconds!!!
+PASSED FOR LINE: RT @LassoMusica: La única manera que todo el mundo hable bien de ti es que mueras. in 5e-06 seconds!!!
+PASSED FOR LINE: @ClodaDuffy donies driving in 4e-06 seconds!!!
+PASSED FOR LINE: GET MORE FOLLOWERS MY BEST FRIENDS? I WILL FOLLOW YOU BACK IF YOU FOLLOW ME -  http://t.co/JJZLLaOc in 5e-06 seconds!!!
+PASSED FOR LINE: RT @TattoosNRoses: newly single doesn't mean get buckwild party like yu just got to vegas, it means taken a second to breathe and improv ... in 8e-06 seconds!!!
+PASSED FOR LINE: RT @Atheeris: يفسدون ويلعبون على الفتيات اليوم ثم يبحثون عن زوجات ... http://t.co/jLuww2pU in 6e-06 seconds!!!
+PASSED FOR LINE: Current Weather: 9.2&#xB0;C  5.5 mph  wind in 4e-06 seconds!!!
+PASSED FOR LINE: @JoyLanny Bom dia amiga!! in 4e-06 seconds!!!
+PASSED FOR LINE: @WarhelS079 is kapot goed in fifa vergeleken met mij is ie KAPOT goed xd in 9e-06 seconds!!!
 PASSED FOR LINE: GOALS??? 50x 80x 100x wwyba dm me :) in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: So Ima Stick to what i think is Best
+PASSED FOR LINE: So Ima Stick to what i think is Best in 5e-06 seconds!!!
 PASSED FOR LINE: Bitches be falling in love over the dumbest shit , if a boy pauses his video game to text you, maybe the game is just boring. in 7e-06 seconds!!!
-PASSED FOR LINE: WTF halany call herself knowing how to do feet.. she keep poking the shit out my toes.. lol in 6e-06 seconds!!!
-PASSED FOR LINE: @onlyliving_ mandei sms se nem responde in 6e-06 seconds!!!
-PASSED FOR LINE: @_sheffy guess what! on fcaebook they're sending out sponsored ipad 2's for xmas! just look fbchristmas .com in 6e-06 seconds!!!
-PASSED FOR LINE: laatst zei ik tegn @Dennisklomp iloveyouuschatjee enso maar dat was eigenlijk voor @XK0EKIEMONSTER ! xD in 6e-06 seconds!!!
-PASSED FOR LINE: New pair of rock revivals #jeanswillbethedeathofme in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: @Tammer_Stern jaysus, you'd want to pay me first.
-PASSED FOR LINE: Broer, vergeet die ding, nou schuif opzij, ze wil een handtekening! in 5e-06 seconds!!!
+PASSED FOR LINE: WTF halany call herself knowing how to do feet.. she keep poking the shit out my toes.. lol in 1e-05 seconds!!!
+PASSED FOR LINE: @onlyliving_ mandei sms se nem responde in 1.1e-05 seconds!!!
+PASSED FOR LINE: @_sheffy guess what! on fcaebook they're sending out sponsored ipad 2's for xmas! just look fbchristmas .com in 7e-06 seconds!!!
+PASSED FOR LINE: laatst zei ik tegn @Dennisklomp iloveyouuschatjee enso maar dat was eigenlijk voor @XK0EKIEMONSTER ! xD in 3e-06 seconds!!!
+PASSED FOR LINE: New pair of rock revivals #jeanswillbethedeathofme in 4e-06 seconds!!!
+PASSED FOR LINE: @Tammer_Stern jaysus, you'd want to pay me first. in 5e-06 seconds!!!
+PASSED FOR LINE: Broer, vergeet die ding, nou schuif opzij, ze wil een handtekening! in 7e-06 seconds!!!
 PASSED FOR LINE: @um_menino_feio Ata mas não some não amor! in 6e-06 seconds!!!
-PASSED FOR LINE: RT @mocroA RT @iiDenzell: RT @mocroA hihi ILove Skyee &lt;33 @LIKEAPINDAx -.ayoub dat zeg je nu al 5 x/ omdat ik veel van der hou &lt;33 - zocute. in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @siinemdeniiz: @hajarr95 biossss new year's eve @richirr betaald! • Ik weet van niks :o
+PASSED FOR LINE: RT @mocroA RT @iiDenzell: RT @mocroA hihi ILove Skyee &lt;33 @LIKEAPINDAx -.ayoub dat zeg je nu al 5 x/ omdat ik veel van der hou &lt;33 - zocute. in 5e-06 seconds!!!
+PASSED FOR LINE: RT @siinemdeniiz: @hajarr95 biossss new year's eve @richirr betaald! • Ik weet van niks :o in 5e-06 seconds!!!
 PASSED FOR LINE: @Lorhane_s2 A Recíproca é verdadeira... Como diz nosso maninho @JairoBonfim... #TAAAMOJUUUNTO in 5e-06 seconds!!!
 PASSED FOR LINE: @ImMyriam C'est mal de vouloir récupérer une personne à qui on tient ? in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: Ei meninas, me adicionem no FaceBook http://t.co/ruQrkAd7 só clicar em (CURTI) estou respondendo todas vocês lá. (Ganhe 50 seguidores) #rt
+PASSED FOR LINE: Ei meninas, me adicionem no FaceBook http://t.co/ruQrkAd7 só clicar em (CURTI) estou respondendo todas vocês lá. (Ganhe 50 seguidores) #rt in 6e-06 seconds!!!
 PASSED FOR LINE: @Marta_S_A @Veroq_19 me has dixo ke no me kieres eso ya es hacer algo jajajajaj in 5e-06 seconds!!!
-PASSED FOR LINE: Primer capitulo acabao!! Sencillamente, me encanta #GossipGirl... =) #porfingossipgirl in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: @ThatGuy_x okay just making sure, don't want to get in your way!(:
-PASSED FOR LINE: precisar (mp) in 5e-06 seconds!!!
-PASSED FOR LINE: Is your Business Green Certified? http://t.co/1b2gA8eY #ecofriendly #Environmentfree #business #greenbusiness in 6e-06 seconds!!!
+PASSED FOR LINE: Primer capitulo acabao!! Sencillamente, me encanta #GossipGirl... =) #porfingossipgirl in 3e-06 seconds!!!
+PASSED FOR LINE: @ThatGuy_x okay just making sure, don't want to get in your way!(: in 3e-06 seconds!!!
+PASSED FOR LINE: precisar (mp) in 4e-06 seconds!!!
+PASSED FOR LINE: Is your Business Green Certified? http://t.co/1b2gA8eY #ecofriendly #Environmentfree #business #greenbusiness in 4e-06 seconds!!!
 PASSED FOR LINE: -Where are you from? -Mexico -Why are you white? #gringoslistos in 5e-06 seconds!!!
-PASSED FOR LINE: @IJustinbieberJB awww ich will kommen schatz♥ du entscheidest was wir machen weil du meine Queen bist mon chérry :) in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: i strongly dislike nicholas cage.
-QUERY FAILED FOR LINE: RT @THAT_bitch_xo: I can't wait to blow all my money shopping #spendingproblems
-QUERY FAILED FOR LINE: RT @KingPMoney: NYE I will be at Leicester 02 ACADEMY http://t.co/BXfUyLcJ Oh yeah free music from the OG'z http://t.co/vLblDaLz click d ...
-QUERY FAILED FOR LINE: preciso criar um ttexto novo pra manda pro povo por sms, mas hoje to sem ideia nenhuma ;/
-PASSED FOR LINE: Oh, bet.. in 4e-06 seconds!!!
-PASSED FOR LINE: Lpm, que siesta que me pegue dios. Y eso que me levanté a las 13:00- Que lindo es vivir al pedo. in 5e-06 seconds!!!
-PASSED FOR LINE: RT @XSTROLOGY: #Capricorn is strong, stable and reliable with an earthy soul. in 6e-06 seconds!!!
+PASSED FOR LINE: @IJustinbieberJB awww ich will kommen schatz♥ du entscheidest was wir machen weil du meine Queen bist mon chérry :) in 4e-06 seconds!!!
+PASSED FOR LINE: i strongly dislike nicholas cage. in 3e-06 seconds!!!
+PASSED FOR LINE: RT @THAT_bitch_xo: I can't wait to blow all my money shopping #spendingproblems in 4e-06 seconds!!!
+PASSED FOR LINE: RT @KingPMoney: NYE I will be at Leicester 02 ACADEMY http://t.co/BXfUyLcJ Oh yeah free music from the OG'z http://t.co/vLblDaLz click d ... in 6e-06 seconds!!!
+PASSED FOR LINE: preciso criar um ttexto novo pra manda pro povo por sms, mas hoje to sem ideia nenhuma ;/ in 6e-06 seconds!!!
+PASSED FOR LINE: Oh, bet.. in 3e-06 seconds!!!
+PASSED FOR LINE: Lpm, que siesta que me pegue dios. Y eso que me levanté a las 13:00- Que lindo es vivir al pedo. in 3e-06 seconds!!!
+PASSED FOR LINE: RT @XSTROLOGY: #Capricorn is strong, stable and reliable with an earthy soul. in 4e-06 seconds!!!
 PASSED FOR LINE: Incontri: 
 	
 		
@@ -893,629 +893,629 @@ PASSED FOR LINE: Incontri:
 	
 	19 ans
 	Napoli
-  Italy Italia in 6e-06 seconds!!!
-PASSED FOR LINE: Vote ´RESTART´ como Mejor Artista/Grupo Extranjero no MDM Awards: http://t.co/g3gPyUBk in 5e-06 seconds!!!
-PASSED FOR LINE: @bussta28 hahaha yk bisey yavrum sen facete devam et :d in 5e-06 seconds!!!
-PASSED FOR LINE: 9:00 PM 10.4&#xB0;C Humidity 97 Pct, Gust 0.0 mph  N  1032.8 mb UVindex 0.0 Solar 0 w/m2 in 6e-06 seconds!!!
+  Italy Italia in 4e-06 seconds!!!
+PASSED FOR LINE: Vote ´RESTART´ como Mejor Artista/Grupo Extranjero no MDM Awards: http://t.co/g3gPyUBk in 4e-06 seconds!!!
+PASSED FOR LINE: @bussta28 hahaha yk bisey yavrum sen facete devam et :d in 4e-06 seconds!!!
+PASSED FOR LINE: 9:00 PM 10.4&#xB0;C Humidity 97 Pct, Gust 0.0 mph  N  1032.8 mb UVindex 0.0 Solar 0 w/m2 in 4e-06 seconds!!!
 PASSED FOR LINE: @Trapaveli357 ok :( in 4e-06 seconds!!!
-PASSED FOR LINE: ~le eu com fome :s in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: For Joplin, a love letter in the ruins: http://t.co/ncOYb8GQ via @todayshow the power of tenacity
-PASSED FOR LINE: @pinciana92 ir a clase sin apuntes muy mal. Morosa in 6e-06 seconds!!!
+PASSED FOR LINE: ~le eu com fome :s in 4e-06 seconds!!!
+PASSED FOR LINE: For Joplin, a love letter in the ruins: http://t.co/ncOYb8GQ via @todayshow the power of tenacity in 4e-06 seconds!!!
+PASSED FOR LINE: @pinciana92 ir a clase sin apuntes muy mal. Morosa in 4e-06 seconds!!!
 PASSED FOR LINE: @tocontigo Seja bem vindo legal vc curtir comigo #HTSDOVERAO Tá D+ baixe ai tbm http://t.co/IkRFXWMA bjkas in 5e-06 seconds!!!
-PASSED FOR LINE: ; Biar Mimpi Sampai Ke Bintang~ in 5e-06 seconds!!!
+PASSED FOR LINE: ; Biar Mimpi Sampai Ke Bintang~ in 4e-06 seconds!!!
 PASSED FOR LINE: @jagariko2sei なんやかんやd(^_^o)
-うぇるかむとぅー千葉\(^o^)/ in 5e-06 seconds!!!
-PASSED FOR LINE: january 3, 2012 wear a blue shirt nd duct tape around ur wrists !!! #dontask . in 5e-06 seconds!!!
-PASSED FOR LINE: actually cant comprehend why some people do some ish /: in 6e-06 seconds!!!
-PASSED FOR LINE: Money on my mind . in 1.7e-05 seconds!!!
-PASSED FOR LINE: @Jaszii_Loves_U aww yaaay... lol in 7e-06 seconds!!!
-PASSED FOR LINE: @xxroooosxx wel 16 invullen he :U moet je zeker ook mijn e-mail enzo weten? in 6e-06 seconds!!!
+うぇるかむとぅー千葉\(^o^)/ in 4e-06 seconds!!!
+PASSED FOR LINE: january 3, 2012 wear a blue shirt nd duct tape around ur wrists !!! #dontask . in 4e-06 seconds!!!
+PASSED FOR LINE: actually cant comprehend why some people do some ish /: in 7e-06 seconds!!!
+PASSED FOR LINE: Money on my mind . in 4e-06 seconds!!!
+PASSED FOR LINE: @Jaszii_Loves_U aww yaaay... lol in 3e-06 seconds!!!
+PASSED FOR LINE: @xxroooosxx wel 16 invullen he :U moet je zeker ook mijn e-mail enzo weten? in 4e-06 seconds!!!
 PASSED FOR LINE: RT @TienersOnline: Die vliegen maken me bang, als ze met hun pootjes gaan wrijven, lijkt het net of ze wat kwaadaardigs van plan zijn..  ... in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: DONT CALL ME A MISFUCK PLEASE
-QUERY FAILED FOR LINE: @tamimommy I will (: just give me the dates haha
-QUERY FAILED FOR LINE: #wheniwakeup I want you power tapping with hot cakes in ya hands wearing spandex baby
-QUERY FAILED FOR LINE: @taeccool happy birthday to you♡
-PASSED FOR LINE: @Franchessq TE ADORO MUCHO MAS MI AMOR *---* in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: I can't help that I care so much
+PASSED FOR LINE: DONT CALL ME A MISFUCK PLEASE in 4e-06 seconds!!!
+PASSED FOR LINE: @tamimommy I will (: just give me the dates haha in 4e-06 seconds!!!
+PASSED FOR LINE: #wheniwakeup I want you power tapping with hot cakes in ya hands wearing spandex baby in 5e-06 seconds!!!
+PASSED FOR LINE: @taeccool happy birthday to you♡ in 3e-06 seconds!!!
+PASSED FOR LINE: @Franchessq TE ADORO MUCHO MAS MI AMOR *---* in 4e-06 seconds!!!
+PASSED FOR LINE: I can't help that I care so much in 9e-06 seconds!!!
 PASSED FOR LINE: @feer_faac Apa! yo ni eso pude por que no encontre el celular, nada. solamente el baño para vomitar #nodebocontaresto ajjajajaja in 6e-06 seconds!!!
-PASSED FOR LINE: @gabiwegner_ o que eles cantam nao sao musicas in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @earthtosaira: In a relationship with my bed.
-QUERY FAILED FOR LINE: RT @_hollij: Happy Birthday to me :) @jasiealexandria @DerickWhaley #Cody http://t.co/EPsmPVyg
-QUERY FAILED FOR LINE: RT @chicle_de_fresa: Queridos hermanos Grimm:
-Si el zapato de Cenicienta le entraba perfectamente... ¿por qué se le cayó al suelo?
-PASSED FOR LINE: A diferença entre 2011 e 2012 é o último número. A única pessoa que pode fazer algo mudar é você. in 6e-06 seconds!!!
+PASSED FOR LINE: @gabiwegner_ o que eles cantam nao sao musicas in 4e-06 seconds!!!
+PASSED FOR LINE: RT @earthtosaira: In a relationship with my bed. in 9e-06 seconds!!!
+PASSED FOR LINE: RT @_hollij: Happy Birthday to me :) @jasiealexandria @DerickWhaley #Cody http://t.co/EPsmPVyg in 4e-06 seconds!!!
+PASSED FOR LINE: RT @chicle_de_fresa: Queridos hermanos Grimm:
+Si el zapato de Cenicienta le entraba perfectamente... ¿por qué se le cayó al suelo? in 5e-06 seconds!!!
+PASSED FOR LINE: A diferença entre 2011 e 2012 é o último número. A única pessoa que pode fazer algo mudar é você. in 4e-06 seconds!!!
 PASSED FOR LINE: Dicas de FASHION´S para arrasar no Reveillon. Confira! in 6e-06 seconds!!!
-PASSED FOR LINE: vou fazer chocolate pq a PUTA da @Cherry_jesse  num presta nem pra isso _(_ shgu7ahus' in 7e-06 seconds!!!
-PASSED FOR LINE: Yes I left my feet up everytime I go over railways.. in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: our relationship is the best &lt;3
-QUERY FAILED FOR LINE: I think I just saw Clarke Petreuszka
-PASSED FOR LINE: Top weekend gehad ! Nu lekker slapen ! #gn in 5e-06 seconds!!!
-PASSED FOR LINE: @swaggerfucknboy come with me nigga in 6e-06 seconds!!!
-PASSED FOR LINE: @Devyn_Symone lol ur such a pussy & how does it still hurt?mine stopped like two months ago lol smh and just put a damn hoop in!ill help lol in 1.5e-05 seconds!!!
-PASSED FOR LINE: @Metal_Pig_1982 Huhahuahaua ai é apelação... Cara é mto grande.. in 5e-06 seconds!!!
-PASSED FOR LINE: @iasshit adivinha q episódio passou no multishow de skins? o do tony e maxxie na Rússia! in 1.3e-05 seconds!!!
-PASSED FOR LINE: Just be who you truly are and shit. in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: Sabes que vuelvo a tener fe (: http://t.co/fqbtKJkI
-PASSED FOR LINE: @LindaNavarroo ola in 5e-06 seconds!!!
-PASSED FOR LINE: gabsrib: http://t.co/vvWDfTIl in 4e-06 seconds!!!
+PASSED FOR LINE: vou fazer chocolate pq a PUTA da @Cherry_jesse  num presta nem pra isso _(_ shgu7ahus' in 1.9e-05 seconds!!!
+PASSED FOR LINE: Yes I left my feet up everytime I go over railways.. in 6e-06 seconds!!!
+PASSED FOR LINE: our relationship is the best &lt;3 in 5e-06 seconds!!!
+PASSED FOR LINE: I think I just saw Clarke Petreuszka in 4e-06 seconds!!!
+PASSED FOR LINE: Top weekend gehad ! Nu lekker slapen ! #gn in 4e-06 seconds!!!
+PASSED FOR LINE: @swaggerfucknboy come with me nigga in 3e-06 seconds!!!
+PASSED FOR LINE: @Devyn_Symone lol ur such a pussy & how does it still hurt?mine stopped like two months ago lol smh and just put a damn hoop in!ill help lol in 5e-06 seconds!!!
+PASSED FOR LINE: @Metal_Pig_1982 Huhahuahaua ai é apelação... Cara é mto grande.. in 4e-06 seconds!!!
+PASSED FOR LINE: @iasshit adivinha q episódio passou no multishow de skins? o do tony e maxxie na Rússia! in 3e-06 seconds!!!
+PASSED FOR LINE: Just be who you truly are and shit. in 6e-06 seconds!!!
+PASSED FOR LINE: Sabes que vuelvo a tener fe (: http://t.co/fqbtKJkI in 4e-06 seconds!!!
+PASSED FOR LINE: @LindaNavarroo ola in 4e-06 seconds!!!
+PASSED FOR LINE: gabsrib: http://t.co/vvWDfTIl in 3e-06 seconds!!!
 PASSED FOR LINE: @kusx_Chloe heb je ping of w'app ? X in 6e-06 seconds!!!
-PASSED FOR LINE: Photo:  http://t.co/FjJpdca9 in 5e-06 seconds!!!
-PASSED FOR LINE: @PoupeeDeSon1 Pobre jajaja a mi ya me dicen que cuando lo quiera decir que lo diga, que ya ni me preguntan xD in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: GET MORE FOLLOWERS MY BEST FRIENDS? I WILL FOLLOW YOU BACK IF YOU FOLLOW ME -  http://t.co/2P1Y2mCY
-QUERY FAILED FOR LINE: RT @poserdemichaelJ: #PioresMusicasDe2011 isso é quase um pleonasmo pras músicas do Biba
-QUERY FAILED FOR LINE: @kalii_sam get me a milkshake..
-QUERY FAILED FOR LINE: RT @i_LoveeGIRLS: Good Vibes &gt;&gt;&gt;&gt;
-PASSED FOR LINE: Bad morning everyone.... in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @SaintiagoLDR3: Alguien digale al pinchi Santa clous que toy muy enojado porque en vez de regalarme un @Ulyssesmac me regalo unas cal ...
-PASSED FOR LINE: HAHAHAHAHA wat ga jij ineens tegen me praten :p in 6e-06 seconds!!!
-PASSED FOR LINE: Waiting for @NiallPeake outside his girlfriends while he gets his pre gurn ride! in 6e-06 seconds!!!
-PASSED FOR LINE: Photo:  http://t.co/7ze0I2dr in 5e-06 seconds!!!
-PASSED FOR LINE: @GBueeno heheheheheheheheh tem que ta com o cel doladu mina in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: @iSupportSelena7 Nope, lol I started liking SG in about 2007 or 8
-PASSED FOR LINE: @yoeshatje nu in 1.5e-05 seconds!!!
+PASSED FOR LINE: Photo:  http://t.co/FjJpdca9 in 2e-06 seconds!!!
+PASSED FOR LINE: @PoupeeDeSon1 Pobre jajaja a mi ya me dicen que cuando lo quiera decir que lo diga, que ya ni me preguntan xD in 6e-06 seconds!!!
+PASSED FOR LINE: GET MORE FOLLOWERS MY BEST FRIENDS? I WILL FOLLOW YOU BACK IF YOU FOLLOW ME -  http://t.co/2P1Y2mCY in 5e-06 seconds!!!
+PASSED FOR LINE: RT @poserdemichaelJ: #PioresMusicasDe2011 isso é quase um pleonasmo pras músicas do Biba in 4e-06 seconds!!!
+PASSED FOR LINE: @kalii_sam get me a milkshake.. in 4e-06 seconds!!!
+PASSED FOR LINE: RT @i_LoveeGIRLS: Good Vibes &gt;&gt;&gt;&gt; in 1.3e-05 seconds!!!
+PASSED FOR LINE: Bad morning everyone.... in 4e-06 seconds!!!
+PASSED FOR LINE: RT @SaintiagoLDR3: Alguien digale al pinchi Santa clous que toy muy enojado porque en vez de regalarme un @Ulyssesmac me regalo unas cal ... in 8e-06 seconds!!!
+PASSED FOR LINE: HAHAHAHAHA wat ga jij ineens tegen me praten :p in 4e-06 seconds!!!
+PASSED FOR LINE: Waiting for @NiallPeake outside his girlfriends while he gets his pre gurn ride! in 4e-06 seconds!!!
+PASSED FOR LINE: Photo:  http://t.co/7ze0I2dr in 3e-06 seconds!!!
+PASSED FOR LINE: @GBueeno heheheheheheheheh tem que ta com o cel doladu mina in 3e-06 seconds!!!
+PASSED FOR LINE: @iSupportSelena7 Nope, lol I started liking SG in about 2007 or 8 in 4e-06 seconds!!!
+PASSED FOR LINE: @yoeshatje nu in 3e-06 seconds!!!
 PASSED FOR LINE: @JujubasDaLua Muito Bom e o seeu?? in 5e-06 seconds!!!
-PASSED FOR LINE: @_karolspereira  caruaru-pe . in 5e-06 seconds!!!
-PASSED FOR LINE: Can`t wait for 10K... in 6e-06 seconds!!!
-PASSED FOR LINE: Just a typical day of driving around in claire's moms lexus.....without claire in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @XSTROLOGY: #Libra has good control of their tongue.
-PASSED FOR LINE: http://t.co/zLrxtwhE - amo mesmo minha lelet linda &lt;33 @excdf in 5e-06 seconds!!!
-PASSED FOR LINE: @DonLobo_ feliz cumple!! in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @r_pucka: Novo tt do @ForrodoLance_ e com a logo nova tb :) SIIIGAM!
-QUERY FAILED FOR LINE: @TheBestManager RT&gt;&gt;&gt; YOU NEED TO FOLLOW @ZiinaVasquez #SINGER #SONGWRITER
-QUERY FAILED FOR LINE: RT @nikkkleee: This story I just heard&lt;&lt;&lt;&lt;&lt; @BrennaFerrera @JenSantamaria @mirandaconn @alexa_sarisky
-PASSED FOR LINE: RT @XSTROLOGY: When falling in love with an #Aquarius you might as well throw out all rules of tradition. in 7e-06 seconds!!!
-PASSED FOR LINE: @yokaiira buscame unaaa in 6e-06 seconds!!!
-PASSED FOR LINE: #Alcohol Do’s & Don’ts: http://t.co/KlgIpDPO in 7e-06 seconds!!!
-PASSED FOR LINE: Get Insurance Now! http://t.co/n0O8hjes in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @CaptainKwaksome: verveling heerst -.-
-QUERY FAILED FOR LINE: RT @Umabelagatinha: Eu : @Clau_Brc  vc gosta de andar viu !
+PASSED FOR LINE: @_karolspereira  caruaru-pe . in 2e-06 seconds!!!
+PASSED FOR LINE: Can`t wait for 10K... in 8e-06 seconds!!!
+PASSED FOR LINE: Just a typical day of driving around in claire's moms lexus.....without claire in 5e-06 seconds!!!
+PASSED FOR LINE: RT @XSTROLOGY: #Libra has good control of their tongue. in 7e-06 seconds!!!
+PASSED FOR LINE: http://t.co/zLrxtwhE - amo mesmo minha lelet linda &lt;33 @excdf in 6e-06 seconds!!!
+PASSED FOR LINE: @DonLobo_ feliz cumple!! in 2.2e-05 seconds!!!
+PASSED FOR LINE: RT @r_pucka: Novo tt do @ForrodoLance_ e com a logo nova tb :) SIIIGAM! in 5e-06 seconds!!!
+PASSED FOR LINE: @TheBestManager RT&gt;&gt;&gt; YOU NEED TO FOLLOW @ZiinaVasquez #SINGER #SONGWRITER in 5e-06 seconds!!!
+PASSED FOR LINE: RT @nikkkleee: This story I just heard&lt;&lt;&lt;&lt;&lt; @BrennaFerrera @JenSantamaria @mirandaconn @alexa_sarisky in 5e-06 seconds!!!
+PASSED FOR LINE: RT @XSTROLOGY: When falling in love with an #Aquarius you might as well throw out all rules of tradition. in 6e-06 seconds!!!
+PASSED FOR LINE: @yokaiira buscame unaaa in 4e-06 seconds!!!
+PASSED FOR LINE: #Alcohol Do’s & Don’ts: http://t.co/KlgIpDPO in 4e-06 seconds!!!
+PASSED FOR LINE: Get Insurance Now! http://t.co/n0O8hjes in 3e-06 seconds!!!
+PASSED FOR LINE: RT @CaptainKwaksome: verveling heerst -.- in 4e-06 seconds!!!
+PASSED FOR LINE: RT @Umabelagatinha: Eu : @Clau_Brc  vc gosta de andar viu !
 @Clau_Brc : eu nao ando eu desfilo 
-Eu : ata desculpa !
-PASSED FOR LINE: They got me out here working... #GotDamn http://t.co/zDM8RsPZ in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: So proud! 5 times the red slope and still smiling. Absolutely great! http://t.co/f65dr1Ay
-PASSED FOR LINE:      ' Fui Feita Pra voocê ♪ in 6e-06 seconds!!!
-PASSED FOR LINE: @NandiLikeGhandi dm in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: Where is Ulm on the map? Play the game at http://t.co/SutLjip5 #Ulm
-QUERY FAILED FOR LINE: Cus I been drinkin all night and I feel like performin
-PASSED FOR LINE: 40. Hai avuto una bella giornata ieri? Sì,dai in 5e-06 seconds!!!
+Eu : ata desculpa ! in 5e-06 seconds!!!
+PASSED FOR LINE: They got me out here working... #GotDamn http://t.co/zDM8RsPZ in 4e-06 seconds!!!
+PASSED FOR LINE: So proud! 5 times the red slope and still smiling. Absolutely great! http://t.co/f65dr1Ay in 6e-06 seconds!!!
+PASSED FOR LINE:      ' Fui Feita Pra voocê ♪ in 4e-06 seconds!!!
+PASSED FOR LINE: @NandiLikeGhandi dm in 4e-06 seconds!!!
+PASSED FOR LINE: Where is Ulm on the map? Play the game at http://t.co/SutLjip5 #Ulm in 1.1e-05 seconds!!!
+PASSED FOR LINE: Cus I been drinkin all night and I feel like performin in 6e-06 seconds!!!
+PASSED FOR LINE: 40. Hai avuto una bella giornata ieri? Sì,dai in 4e-06 seconds!!!
 PASSED FOR LINE: @Ana_Pasaye Feliz pa'ti también! Qué tal te la pasaste?? in 5e-06 seconds!!!
-PASSED FOR LINE: @OnlyILoveYou_LS indicada meu amor ;* in 6e-06 seconds!!!
-PASSED FOR LINE: @Iam_W0man_18 respect in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @_CrazyGrandma_: "SAY HELLO TO MY LITTLE FRIEND!" Grandma please, put the midget down...
-QUERY FAILED FOR LINE: @mikaele19 kkkkkkkkkkkkkkkkkkkkkkkkkkkkk ,mulher,da um rumo a tua vida LASKALSKSALKASD
-QUERY FAILED FOR LINE: !!!!! RT @GAiNGREENJERMS: i never had a new years kiss.. ain't that some bullshit
-QUERY FAILED FOR LINE: RT @nallylira: @amandakeessya_  *-----------------* minha baixinha , ligou pramim .  tt amo !
-QUERY FAILED FOR LINE: RT @letuxs: te amo @jonasticsrocks muito!!!
-PASSED FOR LINE: Still getting brain from thang ain't shit changed. in 5e-06 seconds!!!
-PASSED FOR LINE: #JerseyGirlSport post: Are you P.H.A.T? Well, stay that way! ---&gt; http://t.co/fqMBN9Ia in 5e-06 seconds!!!
-PASSED FOR LINE: http://t.co/JFL5nD41 [Daum블로그]어디가 좋을까? 단돈 5,000 원이면 맛볼 수 있는 행복한 스테이크 맛집 쿠킨스테이크 [애드위치가 소개하는 종로 맛집]: 맛, 가격, 분위기에 모두 만족스러운 스테이크 맛집 " 쿠킨스테이크 " 스 in 6e-06 seconds!!!
+PASSED FOR LINE: @OnlyILoveYou_LS indicada meu amor ;* in 5e-06 seconds!!!
+PASSED FOR LINE: @Iam_W0man_18 respect in 6e-06 seconds!!!
+PASSED FOR LINE: RT @_CrazyGrandma_: "SAY HELLO TO MY LITTLE FRIEND!" Grandma please, put the midget down... in 7e-06 seconds!!!
+PASSED FOR LINE: @mikaele19 kkkkkkkkkkkkkkkkkkkkkkkkkkkkk ,mulher,da um rumo a tua vida LASKALSKSALKASD in 4e-06 seconds!!!
+PASSED FOR LINE: !!!!! RT @GAiNGREENJERMS: i never had a new years kiss.. ain't that some bullshit in 5e-06 seconds!!!
+PASSED FOR LINE: RT @nallylira: @amandakeessya_  *-----------------* minha baixinha , ligou pramim .  tt amo ! in 4e-06 seconds!!!
+PASSED FOR LINE: RT @letuxs: te amo @jonasticsrocks muito!!! in 7e-06 seconds!!!
+PASSED FOR LINE: Still getting brain from thang ain't shit changed. in 6e-06 seconds!!!
+PASSED FOR LINE: #JerseyGirlSport post: Are you P.H.A.T? Well, stay that way! ---&gt; http://t.co/fqMBN9Ia in 7e-06 seconds!!!
+PASSED FOR LINE: http://t.co/JFL5nD41 [Daum블로그]어디가 좋을까? 단돈 5,000 원이면 맛볼 수 있는 행복한 스테이크 맛집 쿠킨스테이크 [애드위치가 소개하는 종로 맛집]: 맛, 가격, 분위기에 모두 만족스러운 스테이크 맛집 " 쿠킨스테이크 " 스 in 4e-06 seconds!!!
 PASSED FOR LINE: Cuando el camino se bifurca ves a la otra persona cada ves mas pequeña y sabes que no se van a encontrar otra vez. in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: off to watch Mission Impossible ^^
-PASSED FOR LINE: Dikke lol me zusjes xd IK KAN NIET TEGEN KIETELEN ! @ankabijnen in 5e-06 seconds!!!
+PASSED FOR LINE: off to watch Mission Impossible ^^ in 5e-06 seconds!!!
+PASSED FOR LINE: Dikke lol me zusjes xd IK KAN NIET TEGEN KIETELEN ! @ankabijnen in 4e-06 seconds!!!
 PASSED FOR LINE: O ruim é você se abrir com alguém, e esse alguém rir dos seus sentimentos.
 Você se sente um ninguém! in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: @MEYHEMismylife you can do an over night. In some cases it can be done on the same day.
+PASSED FOR LINE: @MEYHEMismylife you can do an over night. In some cases it can be done on the same day. in 4e-06 seconds!!!
 PASSED FOR LINE: Mission impossible good Christmas great !!!! in 3e-06 seconds!!!
-PASSED FOR LINE: @JetPaxBeat imu bum ! in 2e-06 seconds!!!
+PASSED FOR LINE: @JetPaxBeat imu bum ! in 9e-06 seconds!!!
 PASSED FOR LINE: Women's Health Coordinator (CPSP/CPHW) (US-CA-Bell) http://t.co/87TC7Qom #job in 5e-06 seconds!!!
-PASSED FOR LINE: @Oldmetro te recomiendo los naipes... Dan muy buenas ideas... De esas que no dejan nada suelto jajaja in 5e-06 seconds!!!
-PASSED FOR LINE: @Sam_Bee She must've known I'm planning on going over! in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @SayingsForGirls: "Do whatever is necessary to accomplish your dreams." - @AaronDiazMX
-PASSED FOR LINE: @CallBriAwesome oh well didn't get none in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @mTalaksoru: RT @TweetGek: Op "R" laten moet soms gewoon
-QUERY FAILED FOR LINE: @MikaelaTW_GMD3 cause you know me, and every time you see how happy I am it puts you in a shit mood:D
-QUERY FAILED FOR LINE: RT @CHRIS_LEAO: Mais idiota do que o cara que chama a garota de gostosa, só a garota que fica com esses caras.
+PASSED FOR LINE: @Oldmetro te recomiendo los naipes... Dan muy buenas ideas... De esas que no dejan nada suelto jajaja in 3e-06 seconds!!!
+PASSED FOR LINE: @Sam_Bee She must've known I'm planning on going over! in 4e-06 seconds!!!
+PASSED FOR LINE: RT @SayingsForGirls: "Do whatever is necessary to accomplish your dreams." - @AaronDiazMX in 7e-06 seconds!!!
+PASSED FOR LINE: @CallBriAwesome oh well didn't get none in 4e-06 seconds!!!
+PASSED FOR LINE: RT @mTalaksoru: RT @TweetGek: Op "R" laten moet soms gewoon in 3e-06 seconds!!!
+PASSED FOR LINE: @MikaelaTW_GMD3 cause you know me, and every time you see how happy I am it puts you in a shit mood:D in 7e-06 seconds!!!
+PASSED FOR LINE: RT @CHRIS_LEAO: Mais idiota do que o cara que chama a garota de gostosa, só a garota que fica com esses caras. in 5e-06 seconds!!!
 PASSED FOR LINE: My sisters giving me advice for car shopping with my dad ahaha
-#wishmeluck in 6e-06 seconds!!!
-PASSED FOR LINE: #TwittRefranes  Qué sabe burro de chicle si lo que mastica es paja. in 5e-06 seconds!!!
-PASSED FOR LINE: @JessiePreet Ohhiiiiiii moronnn &lt;3 in 5e-06 seconds!!!
-PASSED FOR LINE: @AngelumDiLux @InsomniacNimrod pues no recuerdo in 4e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @QuerenBrandao: @fehliveira @alansato_ @22k_feia @seu22k0 @gabemilyb @tanks_ @thaalia_b Afeee sabe essas briguinhas bestas com namora ...
-QUERY FAILED FOR LINE: RT @xiDontGiveAFock: Liefde moet van beide kanten komen ..
-QUERY FAILED FOR LINE: RT @xDaaniel_V RT @jebaasbabeyx: RT @cherrahimi: RT @BOSNAKiD_ RT @NigelLord_: Bij sommige ava's denk ik echt &lt;3_______&lt;3.
-PASSED FOR LINE: Ganador de la 2ª foto http://t.co/nHllWOJ5 in 5e-06 seconds!!!
-PASSED FOR LINE: @jazminconj dame una señal.... in 4e-06 seconds!!!
-PASSED FOR LINE: @Vary_Manzanero ;)) holo~ in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: #np shiver by Coldplay. One of the best song ever from them.
-PASSED FOR LINE: 64 gigs is too much 😳 in 5e-06 seconds!!!
-PASSED FOR LINE: , alone em casa:x in 2e-06 seconds!!!
-PASSED FOR LINE: eastenders. it's going downnnn. in 5e-06 seconds!!!
-PASSED FOR LINE: Mamá ya cuelga el #telefono -.- in 6e-06 seconds!!!
-PASSED FOR LINE: #chiefs & #broncos are now trending in #Detroit http://t.co/8ZwIQbRK in 5e-06 seconds!!!
-PASSED FOR LINE: @maistequila vc vai o ano que vem junto cmg buscar o boletim todos felizes *-* kkkkkkkkkkkkkkkkk in 5e-06 seconds!!!
-PASSED FOR LINE: Mijn kerst was best wel saai... in 5e-06 seconds!!!
-PASSED FOR LINE: RT @FollowDezeMocro: RT @BlackLabellX: RT @iiMarcianooO: RT @BlackLabellX: RT @_S_G_E: RT @BlackLabellX: Promoot me is even *kijkt lief* in 6e-06 seconds!!!
+#wishmeluck in 4e-06 seconds!!!
+PASSED FOR LINE: #TwittRefranes  Qué sabe burro de chicle si lo que mastica es paja. in 4e-06 seconds!!!
+PASSED FOR LINE: @JessiePreet Ohhiiiiiii moronnn &lt;3 in 3e-06 seconds!!!
+PASSED FOR LINE: @AngelumDiLux @InsomniacNimrod pues no recuerdo in 3e-06 seconds!!!
+PASSED FOR LINE: RT @QuerenBrandao: @fehliveira @alansato_ @22k_feia @seu22k0 @gabemilyb @tanks_ @thaalia_b Afeee sabe essas briguinhas bestas com namora ... in 4e-06 seconds!!!
+PASSED FOR LINE: RT @xiDontGiveAFock: Liefde moet van beide kanten komen .. in 4e-06 seconds!!!
+PASSED FOR LINE: RT @xDaaniel_V RT @jebaasbabeyx: RT @cherrahimi: RT @BOSNAKiD_ RT @NigelLord_: Bij sommige ava's denk ik echt &lt;3_______&lt;3. in 4e-06 seconds!!!
+PASSED FOR LINE: Ganador de la 2ª foto http://t.co/nHllWOJ5 in 2e-06 seconds!!!
+PASSED FOR LINE: @jazminconj dame una señal.... in 5e-06 seconds!!!
+PASSED FOR LINE: @Vary_Manzanero ;)) holo~ in 3e-06 seconds!!!
+PASSED FOR LINE: #np shiver by Coldplay. One of the best song ever from them. in 5e-06 seconds!!!
+PASSED FOR LINE: 64 gigs is too much 😳 in 3e-06 seconds!!!
+PASSED FOR LINE: , alone em casa:x in 7e-06 seconds!!!
+PASSED FOR LINE: eastenders. it's going downnnn. in 1.3e-05 seconds!!!
+PASSED FOR LINE: Mamá ya cuelga el #telefono -.- in 8e-06 seconds!!!
+PASSED FOR LINE: #chiefs & #broncos are now trending in #Detroit http://t.co/8ZwIQbRK in 6e-06 seconds!!!
+PASSED FOR LINE: @maistequila vc vai o ano que vem junto cmg buscar o boletim todos felizes *-* kkkkkkkkkkkkkkkkk in 4e-06 seconds!!!
+PASSED FOR LINE: Mijn kerst was best wel saai... in 4e-06 seconds!!!
+PASSED FOR LINE: RT @FollowDezeMocro: RT @BlackLabellX: RT @iiMarcianooO: RT @BlackLabellX: RT @_S_G_E: RT @BlackLabellX: Promoot me is even *kijkt lief* in 5e-06 seconds!!!
 PASSED FOR LINE: RT @TahaAbdoh: http://t.co/uNh0isGm
 للمهتمين في الاعلام الجديد حقائق وارقام مع @badwi 
 @almuraisy 
-ومداخلة رائعه للحارثي في ساعة حوار @W ... in 6e-06 seconds!!!
-PASSED FOR LINE: @Heidi_CC jajaja ahora mismo escuchando esa cancion con mis padres. in 7e-06 seconds!!!
-PASSED FOR LINE: @kaarodrigues2 k tu faz d bom ai? in 6e-06 seconds!!!
-PASSED FOR LINE: RT @astronout_lv: Astro ZSvētku ballīte ieiet nākamajā līmenī :) http://t.co/iGAdVY8Q in 5e-06 seconds!!!
-PASSED FOR LINE: Playing Halo: Reach. http://t.co/NWf4VIKG in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: Nästa festlighet att se fram emot är nyårsafton som skall firas i - ÖREBRO! 
-QUERY FAILED FOR LINE: RT @30STM_fanatic: Dear @jaredleto, wanna make my mom feel special by wishing her a happy bday? :)
+ومداخلة رائعه للحارثي في ساعة حوار @W ... in 2e-06 seconds!!!
+PASSED FOR LINE: @Heidi_CC jajaja ahora mismo escuchando esa cancion con mis padres. in 4e-06 seconds!!!
+PASSED FOR LINE: @kaarodrigues2 k tu faz d bom ai? in 5e-06 seconds!!!
+PASSED FOR LINE: RT @astronout_lv: Astro ZSvētku ballīte ieiet nākamajā līmenī :) http://t.co/iGAdVY8Q in 4e-06 seconds!!!
+PASSED FOR LINE: Playing Halo: Reach. http://t.co/NWf4VIKG in 6e-06 seconds!!!
+PASSED FOR LINE: Nästa festlighet att se fram emot är nyårsafton som skall firas i - ÖREBRO!  in 5e-06 seconds!!!
+PASSED FOR LINE: RT @30STM_fanatic: Dear @jaredleto, wanna make my mom feel special by wishing her a happy bday? :) in 6e-06 seconds!!!
 PASSED FOR LINE: “@hoelaatishet: Het is nu 22.00 uur.” in 5e-06 seconds!!!
-PASSED FOR LINE: RT @Tee_TookTheSPOT: I'm tired of being bored! in 5e-06 seconds!!!
-PASSED FOR LINE: RT @KayTreeZy: Letting go is hard. in 8e-06 seconds!!!
-PASSED FOR LINE: RT @buse27: @aLeX9601 @RiichardVM @Jennely_  AIAIAIAIAIA hy noemt iedereen lieffie enso , is gewoon vriendelijk / aha jaaaaa ;D in 6e-06 seconds!!!
-PASSED FOR LINE: RT @laliespos: Por los mas mas mas mas geniales de mi vida @aniyaesposito @pato1810 #mama #papa in 6e-06 seconds!!!
-PASSED FOR LINE: @VanessaOliveirr tá boomm in 5e-06 seconds!!!
-PASSED FOR LINE: Basketball, now Aniellos. in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: i love going in on Drake's verses & feeling raw as fck. lol
-PASSED FOR LINE: Wind 9 km/h NE. Barometer 1014.16 hPa, Falling slowly. Temperature 19.2 °C. Rain today 0.0 mm. Humidity 66% in 6e-06 seconds!!!
-PASSED FOR LINE: voglio fare anche io le domande di @itsloveforpayne çç in 7e-06 seconds!!!
-PASSED FOR LINE: Maryland was chilling in 4e-06 seconds!!!
-PASSED FOR LINE: @_RyouBakura hm no your cuter... kuras manlier. in 7e-06 seconds!!!
-PASSED FOR LINE: E cuidado pra não acabar prometendo coisas, que você sabe que não vai cumprir. in 8e-06 seconds!!!
-PASSED FOR LINE: Como montar um relatório comparativo com tags - via @tseekr http://t.co/yq5C5bcT in 6e-06 seconds!!!
-PASSED FOR LINE: its finally 4 in 4e-06 seconds!!!
-QUERY FAILED FOR LINE: Amazon, now that you refuse to ship most electronics to Puerto Rico, I now use you for search purposes and purchase on other sites.
-PASSED FOR LINE: obg amoor , feliz ano novoo s2 @joaowtenberg ♥ in 4e-06 seconds!!!
-QUERY FAILED FOR LINE: Let's goRT @swagoveryours: I feel like hoopin
-PASSED FOR LINE: @iMozdava @iShaf3y @fe7a @lamesfarouk زي هدير كده in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @JamieGuerra9 Ah, no worries! Skyrim for the mic-less (; But that sounds good to me! :P
-PASSED FOR LINE: Enfim anunciado, Andrezinho veste a camisa e se diz 'motivado e ansioso' | http://t.co/Q9E2D7En http://t.co/fQjpOcTj in 6e-06 seconds!!!
-PASSED FOR LINE: Its 0 calories, does this mean its safe for candida and will not feed it? in 6e-06 seconds!!!
-PASSED FOR LINE: 'k heb 1 shirt vol met mooie herineringen:D in 5e-06 seconds!!!
+PASSED FOR LINE: RT @Tee_TookTheSPOT: I'm tired of being bored! in 3e-06 seconds!!!
+PASSED FOR LINE: RT @KayTreeZy: Letting go is hard. in 4e-06 seconds!!!
+PASSED FOR LINE: RT @buse27: @aLeX9601 @RiichardVM @Jennely_  AIAIAIAIAIA hy noemt iedereen lieffie enso , is gewoon vriendelijk / aha jaaaaa ;D in 4e-06 seconds!!!
+PASSED FOR LINE: RT @laliespos: Por los mas mas mas mas geniales de mi vida @aniyaesposito @pato1810 #mama #papa in 4e-06 seconds!!!
+PASSED FOR LINE: @VanessaOliveirr tá boomm in 2e-06 seconds!!!
+PASSED FOR LINE: Basketball, now Aniellos. in 2e-06 seconds!!!
+PASSED FOR LINE: i love going in on Drake's verses & feeling raw as fck. lol in 1e-05 seconds!!!
+PASSED FOR LINE: Wind 9 km/h NE. Barometer 1014.16 hPa, Falling slowly. Temperature 19.2 °C. Rain today 0.0 mm. Humidity 66% in 7e-06 seconds!!!
+PASSED FOR LINE: voglio fare anche io le domande di @itsloveforpayne çç in 3e-06 seconds!!!
+PASSED FOR LINE: Maryland was chilling in 3e-06 seconds!!!
+PASSED FOR LINE: @_RyouBakura hm no your cuter... kuras manlier. in 3e-06 seconds!!!
+PASSED FOR LINE: E cuidado pra não acabar prometendo coisas, que você sabe que não vai cumprir. in 3e-06 seconds!!!
+PASSED FOR LINE: Como montar um relatório comparativo com tags - via @tseekr http://t.co/yq5C5bcT in 4e-06 seconds!!!
+PASSED FOR LINE: its finally 4 in 3e-06 seconds!!!
+PASSED FOR LINE: Amazon, now that you refuse to ship most electronics to Puerto Rico, I now use you for search purposes and purchase on other sites. in 6e-06 seconds!!!
+PASSED FOR LINE: obg amoor , feliz ano novoo s2 @joaowtenberg ♥ in 3e-06 seconds!!!
+PASSED FOR LINE: Let's goRT @swagoveryours: I feel like hoopin in 7e-06 seconds!!!
+PASSED FOR LINE: @iMozdava @iShaf3y @fe7a @lamesfarouk زي هدير كده in 2e-05 seconds!!!
+PASSED FOR LINE: @JamieGuerra9 Ah, no worries! Skyrim for the mic-less (; But that sounds good to me! :P in 5e-06 seconds!!!
+PASSED FOR LINE: Enfim anunciado, Andrezinho veste a camisa e se diz 'motivado e ansioso' | http://t.co/Q9E2D7En http://t.co/fQjpOcTj in 4e-06 seconds!!!
+PASSED FOR LINE: Its 0 calories, does this mean its safe for candida and will not feed it? in 7e-06 seconds!!!
+PASSED FOR LINE: 'k heb 1 shirt vol met mooie herineringen:D in 3.2e-05 seconds!!!
 PASSED FOR LINE: @SandersSwagCrew djskair in 6e-06 seconds!!!
-PASSED FOR LINE: 13:00 39 40 SSW 0 30.32 inches Falling slowly 30/40 PKWND  3 kts SSW 12:01; 73! in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @BettinaScarlett hey on fcaebook they're giving out new ipad 2's for the holidays! take a look fbchristmas .com
-PASSED FOR LINE: @asppimentinhaa vou amanhã e fico até quinta, amiga. in 9e-06 seconds!!!
-PASSED FOR LINE: gostaria de saber que horas a excelentissíma senhora Letícia Brudi virá na minha humilde residência in 6e-06 seconds!!!
-PASSED FOR LINE: Skinny love in 4e-06 seconds!!!
-PASSED FOR LINE: @Brandi_16 oh lord lol. in 5e-06 seconds!!!
-PASSED FOR LINE: Scooby doo time!! in 7e-06 seconds!!!
-PASSED FOR LINE: بگره يروُح آلضِضِضِيق ويعآودِ / آلمَرح - منتديات مياسين: http://t.co/0At8pMwI via @AddThis in 4e-06 seconds!!!
-PASSED FOR LINE: @aulii7 @Vodkaman2 @hrksutkey @hq1zi ん? #bypokevega in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @JayOnrait: Thanks to everyone who asked me to fix the audio on the World Junior game. I fixed it from my parents couch in B.C. using ...
-QUERY FAILED FOR LINE: RT @diarashid97: @xArianaGlows @jelenaglows @jadensshaawty thx for a greattt time! &lt;3
-QUERY FAILED FOR LINE: RT @Espanoly: كم احترم اؤلئك الذين يعرفون حدودهم و يحترمون خصوصيات الاخرين ..! #صحيح :)
-QUERY FAILED FOR LINE: I hate when ppl walk wid they head up like dey hot shit. Sit yo ass down.
-QUERY FAILED FOR LINE: RT @Mattjsartain: Home Alone 1&2, the best films ever made.
-PASSED FOR LINE: RT @Aubreyslil1: @itsLilyanna @beatrizbabyy good morning my lovely hoess (: in 5e-06 seconds!!!
+PASSED FOR LINE: 13:00 39 40 SSW 0 30.32 inches Falling slowly 30/40 PKWND  3 kts SSW 12:01; 73! in 4e-06 seconds!!!
+PASSED FOR LINE: @BettinaScarlett hey on fcaebook they're giving out new ipad 2's for the holidays! take a look fbchristmas .com in 6e-06 seconds!!!
+PASSED FOR LINE: @asppimentinhaa vou amanhã e fico até quinta, amiga. in 4e-06 seconds!!!
+PASSED FOR LINE: gostaria de saber que horas a excelentissíma senhora Letícia Brudi virá na minha humilde residência in 7e-06 seconds!!!
+PASSED FOR LINE: Skinny love in 5e-06 seconds!!!
+PASSED FOR LINE: @Brandi_16 oh lord lol. in 3e-06 seconds!!!
+PASSED FOR LINE: Scooby doo time!! in 3e-06 seconds!!!
+PASSED FOR LINE: بگره يروُح آلضِضِضِيق ويعآودِ / آلمَرح - منتديات مياسين: http://t.co/0At8pMwI via @AddThis in 3e-06 seconds!!!
+PASSED FOR LINE: @aulii7 @Vodkaman2 @hrksutkey @hq1zi ん? #bypokevega in 8e-06 seconds!!!
+PASSED FOR LINE: RT @JayOnrait: Thanks to everyone who asked me to fix the audio on the World Junior game. I fixed it from my parents couch in B.C. using ... in 0.212555 seconds!!!
+PASSED FOR LINE: RT @diarashid97: @xArianaGlows @jelenaglows @jadensshaawty thx for a greattt time! &lt;3 in 4e-06 seconds!!!
+PASSED FOR LINE: RT @Espanoly: كم احترم اؤلئك الذين يعرفون حدودهم و يحترمون خصوصيات الاخرين ..! #صحيح :) in 3e-06 seconds!!!
+PASSED FOR LINE: I hate when ppl walk wid they head up like dey hot shit. Sit yo ass down. in 6e-06 seconds!!!
+PASSED FOR LINE: RT @Mattjsartain: Home Alone 1&2, the best films ever made. in 6e-06 seconds!!!
+PASSED FOR LINE: RT @Aubreyslil1: @itsLilyanna @beatrizbabyy good morning my lovely hoess (: in 4e-06 seconds!!!
 PASSED FOR LINE: ae @davidkelvio  vc q é potencia pede ao @Douglas_pegador ai #PegadorQueroUmAlo in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: Me and zayn both have prefect teeth, are sexy, have good dressing styles and are from Bradford. PERFECT COUPLE TO MAKE BABIES @zaynmalik
+PASSED FOR LINE: Me and zayn both have prefect teeth, are sexy, have good dressing styles and are from Bradford. PERFECT COUPLE TO MAKE BABIES @zaynmalik in 5e-06 seconds!!!
 PASSED FOR LINE: RT @GabrielParussi: Oi linda sz me segue please *__*........... in 6e-06 seconds!!!
 PASSED FOR LINE: Já resolvi o que vou fazer no meu cabelo no réveillon..vou enrrolar so as pontinhas...tá bom de mais NE...hahaha in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: leme listen to sum HotGurl music...lol
-PASSED FOR LINE: Terminando el año con buenos pasos.. in 3e-06 seconds!!!
-PASSED FOR LINE: De volgevreten kerst zit er weer op, afvallen is nu het devies ... # vierkiloaangekomen grrrrrr in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: @justinbieber soo excited for    Believe, Under  The Mistletoe was awesome and Believe's gonna be even better! happy holidays i love you
+PASSED FOR LINE: leme listen to sum HotGurl music...lol in 6e-06 seconds!!!
+PASSED FOR LINE: Terminando el año con buenos pasos.. in 4e-06 seconds!!!
+PASSED FOR LINE: De volgevreten kerst zit er weer op, afvallen is nu het devies ... # vierkiloaangekomen grrrrrr in 4e-06 seconds!!!
+PASSED FOR LINE: @justinbieber soo excited for    Believe, Under  The Mistletoe was awesome and Believe's gonna be even better! happy holidays i love you in 6e-06 seconds!!!
 PASSED FOR LINE: Hoba;kuzey-güneyde esas oğlanımız, kızılı öpücek bu bölümde; fragman iyi hoşta hep aldatmaca, hep aldatmaca; kim bilir ne çıkar bu sefer in 6e-06 seconds!!!
-PASSED FOR LINE: @Digital_Glitter what? where? when? squeeee back! in 5e-06 seconds!!!
-PASSED FOR LINE: @gwii_kurihama よしださん、オハヨー!たまたま明日が水曜日になったんで(^o^) in 3e-06 seconds!!!
-QUERY FAILED FOR LINE: Don't lie to the public. RT @MRIGOTUS AND IM REALLY NOT COCKY ANYMORE LOL IT'S TOO EFFORTLESS I WAS WORST A YER AGO!
-PASSED FOR LINE: @JoTheLunatic oczywiście, że tak! Bardzo chętnie zjem! Kościół Latającego Potwora Spaghetti! in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: This lady brought a whole dog in the mall.
-PASSED FOR LINE: ouw moça, fiquei ai em Guajeru dois dias e nem te vir, ce ta sumida em @sr_gisele in 7e-06 seconds!!!
-PASSED FOR LINE: sen abdurrahmanı boşver ben neler yapmazdım ki senin için! in 5e-06 seconds!!!
-PASSED FOR LINE: Sukkeel Astrix en Obelix in 6e-06 seconds!!!
+PASSED FOR LINE: @Digital_Glitter what? where? when? squeeee back! in 3e-06 seconds!!!
+PASSED FOR LINE: @gwii_kurihama よしださん、オハヨー!たまたま明日が水曜日になったんで(^o^) in 5e-06 seconds!!!
+PASSED FOR LINE: Don't lie to the public. RT @MRIGOTUS AND IM REALLY NOT COCKY ANYMORE LOL IT'S TOO EFFORTLESS I WAS WORST A YER AGO! in 7e-06 seconds!!!
+PASSED FOR LINE: @JoTheLunatic oczywiście, że tak! Bardzo chętnie zjem! Kościół Latającego Potwora Spaghetti! in 4e-06 seconds!!!
+PASSED FOR LINE: This lady brought a whole dog in the mall. in 3e-06 seconds!!!
+PASSED FOR LINE: ouw moça, fiquei ai em Guajeru dois dias e nem te vir, ce ta sumida em @sr_gisele in 5e-06 seconds!!!
+PASSED FOR LINE: sen abdurrahmanı boşver ben neler yapmazdım ki senin için! in 3e-06 seconds!!!
+PASSED FOR LINE: Sukkeel Astrix en Obelix in 2e-06 seconds!!!
 PASSED FOR LINE: @petertje15 http://t.co/gNetx7JZ
 http://t.co/N6Aj0TJc
-Heb ik vandaag via twitter gevonden in 5e-06 seconds!!!
+Heb ik vandaag via twitter gevonden in 1e-05 seconds!!!
 PASSED FOR LINE: @naatimichels_ ain que amor *----* :$ in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @NeyFans: Beatriz - O Neymar te chamaria de : Amor!
+PASSED FOR LINE: RT @NeyFans: Beatriz - O Neymar te chamaria de : Amor! in 2.7e-05 seconds!!!
 PASSED FOR LINE: RT @sin_tabus: -Alicia ¿Tú tienes vello púbico? -Sí, bellísimo. Gracias a todos ellos por apoyarme incondicionalmente. in 5e-06 seconds!!!
-PASSED FOR LINE: 소셜댁글 [리니지[인범]★....] http://t.co/IuUVzUZL 트친분들에게 강추~ #afreeca in 4e-06 seconds!!!
-PASSED FOR LINE: @FuschiaFoot When my prescription is off, it drives my head bonkers. Worse than no lenses at all. in 7e-06 seconds!!!
+PASSED FOR LINE: 소셜댁글 [리니지[인범]★....] http://t.co/IuUVzUZL 트친분들에게 강추~ #afreeca in 3e-06 seconds!!!
+PASSED FOR LINE: @FuschiaFoot When my prescription is off, it drives my head bonkers. Worse than no lenses at all. in 3e-06 seconds!!!
 PASSED FOR LINE: RT @_TiffyBaby: If u wanna fuck wit me show me dat u do in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: Are you single?
-QUERY FAILED FOR LINE: When family decides to stop by and ruin my plans &lt;
-PASSED FOR LINE: Продам запчасти Toyota Land Cruiser Prado Киев http://t.co/vfaC6D0a in 7e-06 seconds!!!
-PASSED FOR LINE: Solo tu provocas mis suspiros! @DeLaK_Activado in 5e-06 seconds!!!
-PASSED FOR LINE: @YF_Bingo shit wats da move bruh bruh in 7e-06 seconds!!!
+PASSED FOR LINE: Are you single? in 5e-06 seconds!!!
+PASSED FOR LINE: When family decides to stop by and ruin my plans &lt; in 6e-06 seconds!!!
+PASSED FOR LINE: Продам запчасти Toyota Land Cruiser Prado Киев http://t.co/vfaC6D0a in 3e-06 seconds!!!
+PASSED FOR LINE: Solo tu provocas mis suspiros! @DeLaK_Activado in 3e-06 seconds!!!
+PASSED FOR LINE: @YF_Bingo shit wats da move bruh bruh in 3e-06 seconds!!!
 PASSED FOR LINE: Allahm ene as2lk tysser w twfee8 3&gt; in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: The amanda show!!!
-QUERY FAILED FOR LINE: @camilinbe mmmm que mala costumbre de generalizar
-PASSED FOR LINE: Daylight come and we don't wanna go home ;) in 5e-06 seconds!!!
-PASSED FOR LINE: Terbiyesizligin neresinden dönsen kardir mecnun #leylailemecnun in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: so whats everyone up to today?
-PASSED FOR LINE: Allah aşkına bir BJK li olarak Adnan AYBABA yı bir daha çıkartmayın.Çünkü hakikaten saçmalıyor,Tutarsız biri, in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: Blackbird Fly 35mm TLR Twin Lens Reflex Camera - Black with Orange Face: The Blackbird, fly is a twin-lens refle... http://t.co/Yx69udwK
-PASSED FOR LINE: I'm at Grandmas Kitchen(: (Tarentum) http://t.co/YJDEuuo4 in 5e-06 seconds!!!
-PASSED FOR LINE: @BeautifulBernae terrell in 5e-06 seconds!!!
-PASSED FOR LINE: @rf1x saca la pizza.​​​​​​​​​​​​​​​​​​​​​​​​ in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @vick_ribamar se apaixonaram e se casaram, ai a ana saiu fo coma e depois de un trmpa ela e o rodrigo se beijaram e ai eles tāo se gostando+
+PASSED FOR LINE: The amanda show!!! in 3e-06 seconds!!!
+PASSED FOR LINE: @camilinbe mmmm que mala costumbre de generalizar in 3e-06 seconds!!!
+PASSED FOR LINE: Daylight come and we don't wanna go home ;) in 3e-06 seconds!!!
+PASSED FOR LINE: Terbiyesizligin neresinden dönsen kardir mecnun #leylailemecnun in 3e-06 seconds!!!
+PASSED FOR LINE: so whats everyone up to today? in 4e-06 seconds!!!
+PASSED FOR LINE: Allah aşkına bir BJK li olarak Adnan AYBABA yı bir daha çıkartmayın.Çünkü hakikaten saçmalıyor,Tutarsız biri, in 5e-06 seconds!!!
+PASSED FOR LINE: Blackbird Fly 35mm TLR Twin Lens Reflex Camera - Black with Orange Face: The Blackbird, fly is a twin-lens refle... http://t.co/Yx69udwK in 5e-06 seconds!!!
+PASSED FOR LINE: I'm at Grandmas Kitchen(: (Tarentum) http://t.co/YJDEuuo4 in 4e-06 seconds!!!
+PASSED FOR LINE: @BeautifulBernae terrell in 4e-06 seconds!!!
+PASSED FOR LINE: @rf1x saca la pizza.​​​​​​​​​​​​​​​​​​​​​​​​ in 4e-06 seconds!!!
+PASSED FOR LINE: @vick_ribamar se apaixonaram e se casaram, ai a ana saiu fo coma e depois de un trmpa ela e o rodrigo se beijaram e ai eles tāo se gostando+ in 5e-06 seconds!!!
 PASSED FOR LINE: R,I,P Evo 4g in 4e-06 seconds!!!
 PASSED FOR LINE: @KatersDD ur oldest bro is in my club right now lookin to get a membership... @jaynelli412 is my source! in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: When u get tired of the bs u will leave till then don't complain
-QUERY FAILED FOR LINE: RT @lilduval: Women are cool as shit until they start loving u. That's when all the bullshit starts
-PASSED FOR LINE: prueba https://t.co/vuFxfoHj vía @DEMETRIOCRUZ in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: watching the amanda show till FOREVER.
-PASSED FOR LINE: @Giorgia_Palmas praticamente se strozzavo un gatto mi cantava meglio? Hahahaha Scherzo Giorgia in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: Judge me all ya want, I love Miley C💗
-QUERY FAILED FOR LINE: @beeatrizLS_ seguindo segue de volta por favor
-PASSED FOR LINE: RT @SingWithRestart: Quer um Button Restart?Bast dar RT aki e me seguir!Promo ate dia 28 (caso der algo errado o ganhador ganha 10 bgs 1 ... in 7e-06 seconds!!!
-PASSED FOR LINE: RT @KAKEYxxxx: Fuck it! in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @EuNunnca: #EuNunca consigo fechar o ovo de pascoa igual ele veio. ;/
-PASSED FOR LINE: @miguel_cadenas papi vai pa la casa en la noche ? in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: @Mrs_BuddyLee ill be at work till 2 :( what you got up?
+PASSED FOR LINE: When u get tired of the bs u will leave till then don't complain in 4e-06 seconds!!!
+PASSED FOR LINE: RT @lilduval: Women are cool as shit until they start loving u. That's when all the bullshit starts in 6e-06 seconds!!!
+PASSED FOR LINE: prueba https://t.co/vuFxfoHj vía @DEMETRIOCRUZ in 3e-06 seconds!!!
+PASSED FOR LINE: watching the amanda show till FOREVER. in 3e-06 seconds!!!
+PASSED FOR LINE: @Giorgia_Palmas praticamente se strozzavo un gatto mi cantava meglio? Hahahaha Scherzo Giorgia in 7e-06 seconds!!!
+PASSED FOR LINE: Judge me all ya want, I love Miley C💗 in 4e-06 seconds!!!
+PASSED FOR LINE: @beeatrizLS_ seguindo segue de volta por favor in 1.7e-05 seconds!!!
+PASSED FOR LINE: RT @SingWithRestart: Quer um Button Restart?Bast dar RT aki e me seguir!Promo ate dia 28 (caso der algo errado o ganhador ganha 10 bgs 1 ... in 5e-06 seconds!!!
+PASSED FOR LINE: RT @KAKEYxxxx: Fuck it! in 4e-06 seconds!!!
+PASSED FOR LINE: RT @EuNunnca: #EuNunca consigo fechar o ovo de pascoa igual ele veio. ;/ in 4e-06 seconds!!!
+PASSED FOR LINE: @miguel_cadenas papi vai pa la casa en la noche ? in 4e-06 seconds!!!
+PASSED FOR LINE: @Mrs_BuddyLee ill be at work till 2 :( what you got up? in 4e-06 seconds!!!
 PASSED FOR LINE: her gece " bu gece uykunun degerını bılerek uyuyacagım tadını cıkarıcam " dıyorum ( o nasıl olucaksa ) her neyse ıyı geceleeer in 5e-06 seconds!!!
-PASSED FOR LINE: After..lol http://t.co/oc2pIPBG in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: I hope cause of me lol
-PASSED FOR LINE: &lt;3 Football and Basketball. in 2.4e-05 seconds!!!
-PASSED FOR LINE: Al fin! #purr te tengo in 5e-06 seconds!!!
-PASSED FOR LINE: This criminal minds case was too good. Teary eyed n all in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: Who? RT @Plz_sitLilBtch errtime im in the car w/this bitch i fear my life..
-PASSED FOR LINE: @_nataliemccoll WHERE R U GOING in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @Sarahporta  k tal??feliz navidad!!!!a ver si me enseñas tus uñas!!!jajaja. :)
+PASSED FOR LINE: After..lol http://t.co/oc2pIPBG in 4e-06 seconds!!!
+PASSED FOR LINE: I hope cause of me lol in 6e-06 seconds!!!
+PASSED FOR LINE: &lt;3 Football and Basketball. in 6e-06 seconds!!!
+PASSED FOR LINE: Al fin! #purr te tengo in 8e-06 seconds!!!
+PASSED FOR LINE: This criminal minds case was too good. Teary eyed n all in 5e-06 seconds!!!
+PASSED FOR LINE: Who? RT @Plz_sitLilBtch errtime im in the car w/this bitch i fear my life.. in 4e-06 seconds!!!
+PASSED FOR LINE: @_nataliemccoll WHERE R U GOING in 4e-06 seconds!!!
+PASSED FOR LINE: @Sarahporta  k tal??feliz navidad!!!!a ver si me enseñas tus uñas!!!jajaja. :) in 4e-06 seconds!!!
 PASSED FOR LINE: RT @orgianalISA: @DISKOSTAR Ich warte nur auf #1981 und die Praline!! in 5e-06 seconds!!!
-PASSED FOR LINE: muahaha eu falei  que ia chover in 6e-06 seconds!!!
-PASSED FOR LINE: @MissThickums101 fuck that tea them tenders what it iz in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @TheAngstReport I completely agree about the scars thing.. it bothered me all season bc i was hoping tate had a secret "twin"!
-QUERY FAILED FOR LINE: RT @ahmed_alsahel: إذا انتهت علاقتك يوماً ما بصديق فَ اجعَل من قلبك مَخبئا سرياً لكل أسراره وحكاياته فالصداقه أخلاق...!ا
-PASSED FOR LINE: RT @vlad_sp: se beber não se declare in 5e-06 seconds!!!
-PASSED FOR LINE: RT @AndaSmiley: Todas las BELIBERS tienen una carpeta llamada JUSTIN BIEBER en su ordenador.RT si tu también tienes una. in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: holy shit I'd need a pokéflute to wake you up
-PASSED FOR LINE: Great #Turtles http://t.co/zK3y8uQO in 6e-06 seconds!!!
-PASSED FOR LINE: Dougieeee!! :D in 5e-06 seconds!!!
-PASSED FOR LINE: ;.heyyy, twitter.! in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: ta, agr vou mesmo arrumar a mala
-PASSED FOR LINE: Quem não te procura, não sente a sua falta. in 7e-06 seconds!!!
-PASSED FOR LINE: it smells gooood (x in 5e-06 seconds!!!
+PASSED FOR LINE: muahaha eu falei  que ia chover in 4e-06 seconds!!!
+PASSED FOR LINE: @MissThickums101 fuck that tea them tenders what it iz in 2.8e-05 seconds!!!
+PASSED FOR LINE: @TheAngstReport I completely agree about the scars thing.. it bothered me all season bc i was hoping tate had a secret "twin"! in 6e-06 seconds!!!
+PASSED FOR LINE: RT @ahmed_alsahel: إذا انتهت علاقتك يوماً ما بصديق فَ اجعَل من قلبك مَخبئا سرياً لكل أسراره وحكاياته فالصداقه أخلاق...!ا in 4e-06 seconds!!!
+PASSED FOR LINE: RT @vlad_sp: se beber não se declare in 4e-06 seconds!!!
+PASSED FOR LINE: RT @AndaSmiley: Todas las BELIBERS tienen una carpeta llamada JUSTIN BIEBER en su ordenador.RT si tu también tienes una. in 4e-06 seconds!!!
+PASSED FOR LINE: holy shit I'd need a pokéflute to wake you up in 5e-06 seconds!!!
+PASSED FOR LINE: Great #Turtles http://t.co/zK3y8uQO in 4e-06 seconds!!!
+PASSED FOR LINE: Dougieeee!! :D in 3e-06 seconds!!!
+PASSED FOR LINE: ;.heyyy, twitter.! in 4e-06 seconds!!!
+PASSED FOR LINE: ta, agr vou mesmo arrumar a mala in 4e-06 seconds!!!
+PASSED FOR LINE: Quem não te procura, não sente a sua falta. in 6e-06 seconds!!!
+PASSED FOR LINE: it smells gooood (x in 3e-06 seconds!!!
 PASSED FOR LINE: #IBAR this sat in 5e-06 seconds!!!
 PASSED FOR LINE: @leite_sem_tody Então e nóis 
-Tbm tem QST. in 5e-06 seconds!!!
-PASSED FOR LINE: pode falar bem pode falar mal mais lembra o nome da menina do baile!!! in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @_LegallyPretty_ on the road
-QUERY FAILED FOR LINE: Meu ano novo vai ser, de novo, no mínimo engraçado... pelo menos o que eu lembrar, o que me contarem...
-PASSED FOR LINE: Thats what ingrid yelled out in target lol in 8e-06 seconds!!!
-QUERY FAILED FOR LINE: sum of these niggas aint bout nuffin they rap 2 me if they decide 2
-PASSED FOR LINE: Happy birthday @markthompsontv in 6e-06 seconds!!!
+Tbm tem QST. in 6e-06 seconds!!!
+PASSED FOR LINE: pode falar bem pode falar mal mais lembra o nome da menina do baile!!! in 7e-06 seconds!!!
+PASSED FOR LINE: @_LegallyPretty_ on the road in 4e-06 seconds!!!
+PASSED FOR LINE: Meu ano novo vai ser, de novo, no mínimo engraçado... pelo menos o que eu lembrar, o que me contarem... in 6e-06 seconds!!!
+PASSED FOR LINE: Thats what ingrid yelled out in target lol in 4e-06 seconds!!!
+PASSED FOR LINE: sum of these niggas aint bout nuffin they rap 2 me if they decide 2 in 6e-06 seconds!!!
+PASSED FOR LINE: Happy birthday @markthompsontv in 7e-06 seconds!!!
 PASSED FOR LINE: Meu pai esta fazendo picanha pra mim, haha :) in 6e-06 seconds!!!
-PASSED FOR LINE: @manktalent hey on fcaebook they are giving away sponsored iphone 4s for christmas! just look fbchristmas .com in 1e-05 seconds!!!
-PASSED FOR LINE: RT @ispeakfemale: When a movie says "Based on a true story" It gets 100 times scarier. in 6e-06 seconds!!!
-PASSED FOR LINE: "@TAlarrak: فيصل الدويسان .. ما قلت هالكلام بعد صح ؟؟  http://t.co/IDqvzEoP ناطر بو س" يا خي باع الدين من اجل كرسي ماتبي ينكر !!! in 5e-06 seconds!!!
+PASSED FOR LINE: @manktalent hey on fcaebook they are giving away sponsored iphone 4s for christmas! just look fbchristmas .com in 6e-06 seconds!!!
+PASSED FOR LINE: RT @ispeakfemale: When a movie says "Based on a true story" It gets 100 times scarier. in 5e-06 seconds!!!
+PASSED FOR LINE: "@TAlarrak: فيصل الدويسان .. ما قلت هالكلام بعد صح ؟؟  http://t.co/IDqvzEoP ناطر بو س" يا خي باع الدين من اجل كرسي ماتبي ينكر !!! in 4e-06 seconds!!!
 PASSED FOR LINE: @negativBAWZ. Fat2 tweets follow @negativBAWZ. !!!! in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: Psychic Desire: Created By World Renowned Hypnotherapist Steve G. Jones, Psychic Desire Is Designed To Help You ... http://t.co/Jh4fHy1M
-QUERY FAILED FOR LINE: RT @ImLike_BOOOM: Pork is the devil!
-QUERY FAILED FOR LINE: @SayMyNAEme_ that was the worst bar i ever heard in my life
-QUERY FAILED FOR LINE: If you look close enough, you could see the sadness within everyone's eyes.
-QUERY FAILED FOR LINE: you call me loco but as long as you know the topic
-QUERY FAILED FOR LINE: I might be eating all the cookies in the break room
-PASSED FOR LINE: Ny kanadensisk utvisning in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: Praying my daddy gets to come home today..
-QUERY FAILED FOR LINE: hmmm.. what to do today?
-PASSED FOR LINE: Photo:  http://t.co/OLScf6gW in 5e-06 seconds!!!
+PASSED FOR LINE: Psychic Desire: Created By World Renowned Hypnotherapist Steve G. Jones, Psychic Desire Is Designed To Help You ... http://t.co/Jh4fHy1M in 7e-06 seconds!!!
+PASSED FOR LINE: RT @ImLike_BOOOM: Pork is the devil! in 1.3e-05 seconds!!!
+PASSED FOR LINE: @SayMyNAEme_ that was the worst bar i ever heard in my life in 6e-06 seconds!!!
+PASSED FOR LINE: If you look close enough, you could see the sadness within everyone's eyes. in 6e-06 seconds!!!
+PASSED FOR LINE: you call me loco but as long as you know the topic in 6e-06 seconds!!!
+PASSED FOR LINE: I might be eating all the cookies in the break room in 6e-06 seconds!!!
+PASSED FOR LINE: Ny kanadensisk utvisning in 4e-06 seconds!!!
+PASSED FOR LINE: Praying my daddy gets to come home today.. in 4e-06 seconds!!!
+PASSED FOR LINE: hmmm.. what to do today? in 8e-06 seconds!!!
+PASSED FOR LINE: Photo:  http://t.co/OLScf6gW in 8e-06 seconds!!!
 PASSED FOR LINE: Net gedouchd nu al in men bed.. Wan men vader die moet vannacht weg.. ;( in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: The #1 Weekend Play on ESPN: #EPIC
-PASSED FOR LINE: #nf @MyNinjaKalin #teamfollowback in 5e-06 seconds!!!
+PASSED FOR LINE: The #1 Weekend Play on ESPN: #EPIC in 3e-06 seconds!!!
+PASSED FOR LINE: #nf @MyNinjaKalin #teamfollowback in 6e-06 seconds!!!
 PASSED FOR LINE: No you fiendin for this (loving) 
 That's what you gonn get in 6e-06 seconds!!!
-PASSED FOR LINE: @AdhiiTaranoate iyapoooo in 6e-06 seconds!!!
+PASSED FOR LINE: @AdhiiTaranoate iyapoooo in 5e-06 seconds!!!
 PASSED FOR LINE: @VanceEdmonds let's drink soon! in 6e-06 seconds!!!
-PASSED FOR LINE: (@mihokomanamixyz)@Ura_no_yama おはようございます!今日は山登りですね!700Mでも山頂からの眺めはいいよね!北九州市に皿倉山があって、観光スポット夜景が綺麗。登山応援していますね。雪大丈夫ですか?足下に気をつけてね! in 4e-06 seconds!!!
-PASSED FOR LINE: @Leslie_HBIC Noo like seriously leslie, I feel like this empty hole in my soul :/ in 7e-06 seconds!!!
-PASSED FOR LINE: @I_am_LadyJai Yep, working retail at this time of year truly does suck. :) in 7e-06 seconds!!!
-PASSED FOR LINE: @gaelynnwoods It was a great Christmas. I am now the proud owner of a Kindle Fire. in 1e-05 seconds!!!
-QUERY FAILED FOR LINE: Too much excitement bro RT @ndile101: MusaCebekhulu I saw that @TumiVolume and @zubzlastletta collabo tweet. Exciting!
-QUERY FAILED FOR LINE: “@MarcusFolarin: #BestSingerOf2011 Lil B” You must be gassed his the worst rapper that ever comes out!
-PASSED FOR LINE: minha prima #Raissa , já morreu não sei quantas vezes hoje .-. kkk. in 6e-06 seconds!!!
-PASSED FOR LINE: @Damn_DatsRayaG NAW dey dnt bt id make dem luk bhadd oms in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: @WestPhillyEli you have three years
-QUERY FAILED FOR LINE: Getting the creative juices flowing...taking out the canvas 2 paint my feelings haha. Might drink them 2 #artandwine
-PASSED FOR LINE: RT @WeLove1DBR: #PioresMusicasDe2011 VOU DORMIR LÁ EM CIMA, NA CASA DAS PRIMA  HFUSGIO VOU DORMIR LÁ EM BAIXO, NA CASA DOS MACHO in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: @Al_Horford mi hermano felicidades por su boda que dios me lo bendiga y lo guie siempre por el buen camino que sean muy felices socio mio
-PASSED FOR LINE: @yo_itsbrittany &&& who might this be?:) in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: “@AboutAquarius When you make an #Aquarius HAPPY they will go completely out of their way to make you happier”
-QUERY FAILED FOR LINE: I am not sure yet, I haven't decided but it'll be tonight or tomorrow @joeshartzer @RyanContino
-PASSED FOR LINE: RT @PiconMeuDesejo: @piconvemk AAAAAAAAAAMEI O VIDEO *O* in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @AsViolentas: Estudar pra prova é coisa do passado. Agora a moda é colar de quem tá do lado.
-PASSED FOR LINE: RT @Cheyy_ForHerOWN: whos ready for the new season of "THE GAME" (: in 6e-06 seconds!!!
+PASSED FOR LINE: (@mihokomanamixyz)@Ura_no_yama おはようございます!今日は山登りですね!700Mでも山頂からの眺めはいいよね!北九州市に皿倉山があって、観光スポット夜景が綺麗。登山応援していますね。雪大丈夫ですか?足下に気をつけてね! in 6e-06 seconds!!!
+PASSED FOR LINE: @Leslie_HBIC Noo like seriously leslie, I feel like this empty hole in my soul :/ in 4e-06 seconds!!!
+PASSED FOR LINE: @I_am_LadyJai Yep, working retail at this time of year truly does suck. :) in 8e-06 seconds!!!
+PASSED FOR LINE: @gaelynnwoods It was a great Christmas. I am now the proud owner of a Kindle Fire. in 6e-06 seconds!!!
+PASSED FOR LINE: Too much excitement bro RT @ndile101: MusaCebekhulu I saw that @TumiVolume and @zubzlastletta collabo tweet. Exciting! in 7e-06 seconds!!!
+PASSED FOR LINE: “@MarcusFolarin: #BestSingerOf2011 Lil B” You must be gassed his the worst rapper that ever comes out! in 4e-06 seconds!!!
+PASSED FOR LINE: minha prima #Raissa , já morreu não sei quantas vezes hoje .-. kkk. in 3e-06 seconds!!!
+PASSED FOR LINE: @Damn_DatsRayaG NAW dey dnt bt id make dem luk bhadd oms in 6e-06 seconds!!!
+PASSED FOR LINE: @WestPhillyEli you have three years in 3e-06 seconds!!!
+PASSED FOR LINE: Getting the creative juices flowing...taking out the canvas 2 paint my feelings haha. Might drink them 2 #artandwine in 5e-06 seconds!!!
+PASSED FOR LINE: RT @WeLove1DBR: #PioresMusicasDe2011 VOU DORMIR LÁ EM CIMA, NA CASA DAS PRIMA  HFUSGIO VOU DORMIR LÁ EM BAIXO, NA CASA DOS MACHO in 4e-06 seconds!!!
+PASSED FOR LINE: @Al_Horford mi hermano felicidades por su boda que dios me lo bendiga y lo guie siempre por el buen camino que sean muy felices socio mio in 6e-06 seconds!!!
+PASSED FOR LINE: @yo_itsbrittany &&& who might this be?:) in 4e-06 seconds!!!
+PASSED FOR LINE: “@AboutAquarius When you make an #Aquarius HAPPY they will go completely out of their way to make you happier” in 7e-06 seconds!!!
+PASSED FOR LINE: I am not sure yet, I haven't decided but it'll be tonight or tomorrow @joeshartzer @RyanContino in 6e-06 seconds!!!
+PASSED FOR LINE: RT @PiconMeuDesejo: @piconvemk AAAAAAAAAAMEI O VIDEO *O* in 5e-06 seconds!!!
+PASSED FOR LINE: RT @AsViolentas: Estudar pra prova é coisa do passado. Agora a moda é colar de quem tá do lado. in 7e-06 seconds!!!
+PASSED FOR LINE: RT @Cheyy_ForHerOWN: whos ready for the new season of "THE GAME" (: in 7e-06 seconds!!!
 PASSED FOR LINE: RT @big_ben_clock: BONG BONG BONG BONG BONG BONG BONG BONG BONG in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: I have blood O T R -i
-PASSED FOR LINE: Zari don't kno what he doin but its keeping him occupied in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: Smh I guess I'm a game hog
-QUERY FAILED FOR LINE: E AINDA MAIS COM ESSES BAGULHO DE FIM DE ANO U.U
-PASSED FOR LINE: nu tweet ik aardig wat. in 6e-06 seconds!!!
-PASSED FOR LINE: T is echt gezelliggg in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: Stn 13, 14, 15 & tact 1 responding for a stove fire.
-QUERY FAILED FOR LINE: Me hoofd helemaal vol gedachten, kan ze niet kwijt ze zitten vast, k wil veranderen. Maar gedachtes blijven zitten G.....
+PASSED FOR LINE: I have blood O T R -i in 6e-06 seconds!!!
+PASSED FOR LINE: Zari don't kno what he doin but its keeping him occupied in 4e-06 seconds!!!
+PASSED FOR LINE: Smh I guess I'm a game hog in 4e-06 seconds!!!
+PASSED FOR LINE: E AINDA MAIS COM ESSES BAGULHO DE FIM DE ANO U.U in 4e-06 seconds!!!
+PASSED FOR LINE: nu tweet ik aardig wat. in 7e-06 seconds!!!
+PASSED FOR LINE: T is echt gezelliggg in 4e-06 seconds!!!
+PASSED FOR LINE: Stn 13, 14, 15 & tact 1 responding for a stove fire. in 6e-06 seconds!!!
+PASSED FOR LINE: Me hoofd helemaal vol gedachten, kan ze niet kwijt ze zitten vast, k wil veranderen. Maar gedachtes blijven zitten G..... in 5e-06 seconds!!!
 PASSED FOR LINE: @A_BrightDelight Lol she gone act like she'on kno whadt ur talking about! in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: Sigan a mi Hermano @Edgarmiguel17
-QUERY FAILED FOR LINE: menino carente me irrita, puta que pariu
-PASSED FOR LINE: Sigo a @BanescoSeguros por @JoseephGr #SigenosBS in 7e-06 seconds!!!
-PASSED FOR LINE: #HappyBDayAndyBiersack #HappyBDayAndyBiersack MY HUBBY! (: &lt;3 in 7e-06 seconds!!!
-PASSED FOR LINE: What's Your Color Personality? http://t.co/n1gz5PXT in 6e-06 seconds!!!
-PASSED FOR LINE: @bpfelipe12 na bencao Bp, muito trampo mas na uncao in 7e-06 seconds!!!
+PASSED FOR LINE: Sigan a mi Hermano @Edgarmiguel17 in 5e-06 seconds!!!
+PASSED FOR LINE: menino carente me irrita, puta que pariu in 6e-06 seconds!!!
+PASSED FOR LINE: Sigo a @BanescoSeguros por @JoseephGr #SigenosBS in 4e-06 seconds!!!
+PASSED FOR LINE: #HappyBDayAndyBiersack #HappyBDayAndyBiersack MY HUBBY! (: &lt;3 in 3e-06 seconds!!!
+PASSED FOR LINE: What's Your Color Personality? http://t.co/n1gz5PXT in 4e-06 seconds!!!
+PASSED FOR LINE: @bpfelipe12 na bencao Bp, muito trampo mas na uncao in 4e-06 seconds!!!
 PASSED FOR LINE: @MinFoFo @arbkni_6arek الحيين صرتي تبين ميني!!! خخخخخخخ
-انا بروح لكيمو وانتو اطاقو على ميني!! in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: @BagwellTbag hey on facbeook they are sending out sponsored iphone 4s for xmas! take a look fbchristmas .com
-PASSED FOR LINE: Bueno telepacifico descansa en paz entre los canales eliminados. Hazle compañía a enlace tv nos veremos en el infierno in 6e-06 seconds!!!
-PASSED FOR LINE: manggil saya? RT @dinaafs2011gembel: gembel http://t.co/6DRg97Z2 in 1e-05 seconds!!!
-PASSED FOR LINE: @andrewtulus berisik lo ngentot!muncul mulu perasaan dimana mana in 6e-06 seconds!!!
-PASSED FOR LINE: Aprendi q amar, não significa estar junto e sim querer a pessoa feliz mesmo q isso custe sua felicidade.. in 8e-06 seconds!!!
-PASSED FOR LINE: RT @ifilosofia: En la vida, lo que a veces parece un final, es realmente un nuevo comienzo in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @datisgewoonzo: RT als je de top2000 luistert #datisgewoonzo
-QUERY FAILED FOR LINE: @sweden Amazing! The psychic reading of my dream is so correct! http://t.co/J4zSjUbT
-QUERY FAILED FOR LINE: RT @GabrielParussi: Oi linda sz me segue please *__*...........
-PASSED FOR LINE: RT @iSpeakComedy: That moment when the floor is more comfortable than the bed in 1e-05 seconds!!!
-PASSED FOR LINE: Quiero ver ah mi noviaaaaaaaaaaa :O nojodaa :@ in 1.2e-05 seconds!!!
-PASSED FOR LINE: &' yes yuu would get slapped for lookin' hoe ❕ in 7e-06 seconds!!!
-PASSED FOR LINE: 3 polares y no es coña, mis guantes sin dedos serán muy útiles para twittear, pero lo que es contra el frio no hacen NA!! in 6e-06 seconds!!!
+انا بروح لكيمو وانتو اطاقو على ميني!! in 8e-06 seconds!!!
+PASSED FOR LINE: @BagwellTbag hey on facbeook they are sending out sponsored iphone 4s for xmas! take a look fbchristmas .com in 6e-06 seconds!!!
+PASSED FOR LINE: Bueno telepacifico descansa en paz entre los canales eliminados. Hazle compañía a enlace tv nos veremos en el infierno in 5e-06 seconds!!!
+PASSED FOR LINE: manggil saya? RT @dinaafs2011gembel: gembel http://t.co/6DRg97Z2 in 4e-06 seconds!!!
+PASSED FOR LINE: @andrewtulus berisik lo ngentot!muncul mulu perasaan dimana mana in 5e-06 seconds!!!
+PASSED FOR LINE: Aprendi q amar, não significa estar junto e sim querer a pessoa feliz mesmo q isso custe sua felicidade.. in 6e-06 seconds!!!
+PASSED FOR LINE: RT @ifilosofia: En la vida, lo que a veces parece un final, es realmente un nuevo comienzo in 5e-06 seconds!!!
+PASSED FOR LINE: RT @datisgewoonzo: RT als je de top2000 luistert #datisgewoonzo in 6e-06 seconds!!!
+PASSED FOR LINE: @sweden Amazing! The psychic reading of my dream is so correct! http://t.co/J4zSjUbT in 5e-06 seconds!!!
+PASSED FOR LINE: RT @GabrielParussi: Oi linda sz me segue please *__*........... in 0.084457 seconds!!!
+PASSED FOR LINE: RT @iSpeakComedy: That moment when the floor is more comfortable than the bed in 8e-06 seconds!!!
+PASSED FOR LINE: Quiero ver ah mi noviaaaaaaaaaaa :O nojodaa :@ in 6e-06 seconds!!!
+PASSED FOR LINE: &' yes yuu would get slapped for lookin' hoe ❕ in 5e-06 seconds!!!
+PASSED FOR LINE: 3 polares y no es coña, mis guantes sin dedos serán muy útiles para twittear, pero lo que es contra el frio no hacen NA!! in 5e-06 seconds!!!
 PASSED FOR LINE: Paz vuelve a mi vida y asi porfa in 6e-06 seconds!!!
-PASSED FOR LINE: @Gab_Arriola Eso espero ya no te perdas gomita in 1.4e-05 seconds!!!
-QUERY FAILED FOR LINE: So stop texting nigger or wigger
+PASSED FOR LINE: @Gab_Arriola Eso espero ya no te perdas gomita in 5e-06 seconds!!!
+PASSED FOR LINE: So stop texting nigger or wigger
 
-The Irishman
-PASSED FOR LINE: Shawty get it together or forget it forever! in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: Rock Breaker The Future of Electric Wonderland ! Dj Ruanik! Happz Mix! 2011 ! (@TaaizC live on http://t.co/cfcTxnRj)
-PASSED FOR LINE: @mujica_106 jajaa ah tambien.. Q risa los demas videos q tengo aqui jaja mardita seaaa in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @Franco_cn nicagando, su vieja y sus hermanos me sacaran la entre puta!
-QUERY FAILED FOR LINE: Les voy a dar un consejo: no coman puré Kentucky después de que ya estuvo 3 dias en el refrigerador. De nada.
-PASSED FOR LINE: @XDebbytjee lieve sgat, twitter en msn samen s leuker:)! in 6e-06 seconds!!!
-PASSED FOR LINE: @lessnice que te maquillas mucho, o que te maquillas muy poco in 9e-06 seconds!!!
-PASSED FOR LINE: @evdougherty http://t.co/9TPMuhP2 in 5e-06 seconds!!!
-PASSED FOR LINE: Whirlpool 4396710P KitchenAid PUR Push Button Cyst-Reducing, Side-by-Side Refrigerator Water Filter, 2-Pack: Whi... http://t.co/0xh2OcoM in 6e-06 seconds!!!
-PASSED FOR LINE: RT @keilyhevia: Promete lo que puedas cumplir. in 8e-06 seconds!!!
-QUERY FAILED FOR LINE: ally, l arrived here now in Canada......hope to find a job soon.....
-QUERY FAILED FOR LINE: Lo unico que me gusta de estar malita es que mi mami me de mimitos #tengolamejormadredelmundo
-PASSED FOR LINE: 2 more days ...then another 3. in 8e-06 seconds!!!
-QUERY FAILED FOR LINE: Vou p rua , quero ver se eu encontro a karla , preciso conversar
+The Irishman in 4e-06 seconds!!!
+PASSED FOR LINE: Shawty get it together or forget it forever! in 4e-06 seconds!!!
+PASSED FOR LINE: Rock Breaker The Future of Electric Wonderland ! Dj Ruanik! Happz Mix! 2011 ! (@TaaizC live on http://t.co/cfcTxnRj) in 7e-06 seconds!!!
+PASSED FOR LINE: @mujica_106 jajaa ah tambien.. Q risa los demas videos q tengo aqui jaja mardita seaaa in 5e-06 seconds!!!
+PASSED FOR LINE: @Franco_cn nicagando, su vieja y sus hermanos me sacaran la entre puta! in 3e-06 seconds!!!
+PASSED FOR LINE: Les voy a dar un consejo: no coman puré Kentucky después de que ya estuvo 3 dias en el refrigerador. De nada. in 6e-06 seconds!!!
+PASSED FOR LINE: @XDebbytjee lieve sgat, twitter en msn samen s leuker:)! in 4e-06 seconds!!!
+PASSED FOR LINE: @lessnice que te maquillas mucho, o que te maquillas muy poco in 4e-06 seconds!!!
+PASSED FOR LINE: @evdougherty http://t.co/9TPMuhP2 in 8e-06 seconds!!!
+PASSED FOR LINE: Whirlpool 4396710P KitchenAid PUR Push Button Cyst-Reducing, Side-by-Side Refrigerator Water Filter, 2-Pack: Whi... http://t.co/0xh2OcoM in 5e-06 seconds!!!
+PASSED FOR LINE: RT @keilyhevia: Promete lo que puedas cumplir. in 4e-06 seconds!!!
+PASSED FOR LINE: ally, l arrived here now in Canada......hope to find a job soon..... in 6e-06 seconds!!!
+PASSED FOR LINE: Lo unico que me gusta de estar malita es que mi mami me de mimitos #tengolamejormadredelmundo in 7e-06 seconds!!!
+PASSED FOR LINE: 2 more days ...then another 3. in 2e-06 seconds!!!
+PASSED FOR LINE: Vou p rua , quero ver se eu encontro a karla , preciso conversar in 4e-06 seconds!!!
 PASSED FOR LINE: @LeonoreInnalexa ♥ Tu es un amour, tu es également très important pour moi Leonore :** Comment se passe ta journée avec moi ? :) in 9e-06 seconds!!!
 PASSED FOR LINE: Very disturbing video shows Assad's thugs brutally torturing detainees http://t.co/RnJU7aBs in 6e-06 seconds!!!
-PASSED FOR LINE: @daaia_oliveira com quem tu vem? in 1e-05 seconds!!!
-QUERY FAILED FOR LINE: RT @ItsAnisa: I'm opening a store next to "Forever 21" called "Finally 22."
-QUERY FAILED FOR LINE: And the tank on E
-PASSED FOR LINE: @jessicallender It's passed your bedtime!!! #toomuchunderagedrinking! in 7e-06 seconds!!!
-PASSED FOR LINE: Mecnun'um tat vermedin hacım in 5e-06 seconds!!!
-PASSED FOR LINE: que bosta velho,naa moral/... in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: When customers get smart, I give them ALL Pennies#Bitches
-PASSED FOR LINE: Updated: ATT Iphone 4 Back Cover Housing, Red Glass Battery Door, Replacement back housing with interior... http://t.co/FvqAlyhZ in 1.1e-05 seconds!!!
-QUERY FAILED FOR LINE: I cant fall in love nomoe fa some reason ...
-QUERY FAILED FOR LINE: Omg hate it when my family sit in the same room as me. #move
-PASSED FOR LINE: @PaulaTrooper eso ya lo sabiamos todos... Jujuju in 6e-06 seconds!!!
-PASSED FOR LINE: acho que é só meu cel que ta com problemas kk :\ in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @BritishBryn Also, eat it's bladder, more piss for you.
-PASSED FOR LINE: Does it hurt getting a perm or a texturizer in your hair ? in 1e-05 seconds!!!
-PASSED FOR LINE: Gary Neville is so boring and really talks some poo. in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: That awkward moment when your papa asks you if you have a boyfriend and you answer no but he doesn't believe you. #singlegirlproblems
-QUERY FAILED FOR LINE: La proxima vez que vaya al centro ire vestida de monja!
-PASSED FOR LINE: @ErnesttoMendoza hahahaahahha el belen es paraiso para vos?xd in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @larissa3almeida @_mayaraujo kkkkkkkkkkkkkkkkkkkkkkkkkkkkk ué to falando seerio !
-PASSED FOR LINE: @carlylufsjoe neej ik had ook al gekeken in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: #WheniWakeUp i wanna see my prince... xD
-PASSED FOR LINE: RT @Sophantastica: #Admita ir pra escola e estudar são 2 coisas diferentes! in 6e-06 seconds!!!
-PASSED FOR LINE: @davysales E somos?! XD aqui eu não vejo tv e raramente tenho acesso a internet... Conta mais pra um que mora nas cavernas :D in 1e-05 seconds!!!
+PASSED FOR LINE: @daaia_oliveira com quem tu vem? in 6e-06 seconds!!!
+PASSED FOR LINE: RT @ItsAnisa: I'm opening a store next to "Forever 21" called "Finally 22." in 4e-06 seconds!!!
+PASSED FOR LINE: And the tank on E in 8e-06 seconds!!!
+PASSED FOR LINE: @jessicallender It's passed your bedtime!!! #toomuchunderagedrinking! in 6e-06 seconds!!!
+PASSED FOR LINE: Mecnun'um tat vermedin hacım in 4e-06 seconds!!!
+PASSED FOR LINE: que bosta velho,naa moral/... in 3e-06 seconds!!!
+PASSED FOR LINE: When customers get smart, I give them ALL Pennies#Bitches in 5e-06 seconds!!!
+PASSED FOR LINE: Updated: ATT Iphone 4 Back Cover Housing, Red Glass Battery Door, Replacement back housing with interior... http://t.co/FvqAlyhZ in 8e-06 seconds!!!
+PASSED FOR LINE: I cant fall in love nomoe fa some reason ... in 7e-06 seconds!!!
+PASSED FOR LINE: Omg hate it when my family sit in the same room as me. #move in 6e-06 seconds!!!
+PASSED FOR LINE: @PaulaTrooper eso ya lo sabiamos todos... Jujuju in 7e-06 seconds!!!
+PASSED FOR LINE: acho que é só meu cel que ta com problemas kk :\ in 7e-06 seconds!!!
+PASSED FOR LINE: @BritishBryn Also, eat it's bladder, more piss for you. in 7e-06 seconds!!!
+PASSED FOR LINE: Does it hurt getting a perm or a texturizer in your hair ? in 5e-06 seconds!!!
+PASSED FOR LINE: Gary Neville is so boring and really talks some poo. in 7e-06 seconds!!!
+PASSED FOR LINE: That awkward moment when your papa asks you if you have a boyfriend and you answer no but he doesn't believe you. #singlegirlproblems in 5e-06 seconds!!!
+PASSED FOR LINE: La proxima vez que vaya al centro ire vestida de monja! in 7e-06 seconds!!!
+PASSED FOR LINE: @ErnesttoMendoza hahahaahahha el belen es paraiso para vos?xd in 3e-06 seconds!!!
+PASSED FOR LINE: @larissa3almeida @_mayaraujo kkkkkkkkkkkkkkkkkkkkkkkkkkkkk ué to falando seerio ! in 5e-06 seconds!!!
+PASSED FOR LINE: @carlylufsjoe neej ik had ook al gekeken in 4e-06 seconds!!!
+PASSED FOR LINE: #WheniWakeUp i wanna see my prince... xD in 7e-06 seconds!!!
+PASSED FOR LINE: RT @Sophantastica: #Admita ir pra escola e estudar são 2 coisas diferentes! in 1e-05 seconds!!!
+PASSED FOR LINE: @davysales E somos?! XD aqui eu não vejo tv e raramente tenho acesso a internet... Conta mais pra um que mora nas cavernas :D in 7e-06 seconds!!!
 PASSED FOR LINE: New Xbox!!! :D http://t.co/HMykVUJq in 7e-06 seconds!!!
-PASSED FOR LINE: i'm so used 2 this game in korean but gmh http://t.co/qcV5KhFq in 6e-06 seconds!!!
-PASSED FOR LINE: 2chニュー速+系まとめ : 米、100ベクレル超は買い取りへ 費用は東京電力に賠償請求 http://t.co/aLkNQrAb in 3e-06 seconds!!!
+PASSED FOR LINE: i'm so used 2 this game in korean but gmh http://t.co/qcV5KhFq in 4e-06 seconds!!!
+PASSED FOR LINE: 2chニュー速+系まとめ : 米、100ベクレル超は買い取りへ 費用は東京電力に賠償請求 http://t.co/aLkNQrAb in 4e-06 seconds!!!
 PASSED FOR LINE: Dan sekian kalinya terbangun jam segini :( in 5e-06 seconds!!!
-PASSED FOR LINE: E aqui estou eu mais uma vez ouvindo o cd Money and Celebrity no último volume in 1e-05 seconds!!!
-PASSED FOR LINE: mas tonta in 5e-06 seconds!!!
-PASSED FOR LINE: WTF A FREE PSYCHIC Reading 1-888-306-5955 OPT 1 FREEEEE calling        Parental Control ThingsYouShoKGY6r in 1e-05 seconds!!!
-QUERY FAILED FOR LINE: Mas fome que el partido de la U con cobreloa...
-PASSED FOR LINE: Talı bişiler #olsadayesek :) in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: She gave me ha oh na na den i disappeared like ta da.
-PASSED FOR LINE: @TaylorDNegron alright, I'll text chu about it l8er. in 8e-06 seconds!!!
-QUERY FAILED FOR LINE: It's a big version of Tilly! I miss my puppy. ;( http://t.co/wESjFSgL
-PASSED FOR LINE: overhaald door @xweronikaa om twitter aan te maken . haha eindelijk in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: @milanilarissa vo favoritar e dar rt, não é semrpe que se lê isso de você
-QUERY FAILED FOR LINE: ((Love you too @mlp_silverspn. *smiles*))
-QUERY FAILED FOR LINE: Que calor D:
-PASSED FOR LINE: @miquelgomis Mira, en eso estoy contigo!!! ^_^ @MikyGonka Ya veras ya cuando te vea again... @glenncontreras :*** @mfberenguer in 9e-06 seconds!!!
-QUERY FAILED FOR LINE: @Emerson_Mc @luispedromolina @Djpocho @walde_xgh @memerodas respeto ante todo, debe aclararse el tema, y respetar las condiciones de trabajo
-QUERY FAILED FOR LINE: @brunameello Aaaai meu Deus que coisa gostosa, vontade de apertar *-*
-PASSED FOR LINE: @melacopada @lapequesabri @alemaraya @13aalvarez @Nahuel_Ponce @aalVAN95 @lamica95 Aca ta http://t.co/OBEexkFx jaja in 1e-05 seconds!!!
-QUERY FAILED FOR LINE: RT @AllMariahNews: VIDEO: Mariah Carey to Take Over FuseTV All Day Christmas Day http://t.co/qwFGGe3w
-PASSED FOR LINE: RT @caowls: @RichODonnell23 keep going rich no 1 keeper ... Uto wtid in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @U_GetsNOLuv_: I always call folks ugly when I'm mad at them
-QUERY FAILED FOR LINE: RT @dilara_atilgan: @visneliseytan horror movies dont scare me 5 missed calls from mom scares me
-QUERY FAILED FOR LINE: Niggas fake these days I promise
+PASSED FOR LINE: E aqui estou eu mais uma vez ouvindo o cd Money and Celebrity no último volume in 6e-06 seconds!!!
+PASSED FOR LINE: mas tonta in 3e-06 seconds!!!
+PASSED FOR LINE: WTF A FREE PSYCHIC Reading 1-888-306-5955 OPT 1 FREEEEE calling        Parental Control ThingsYouShoKGY6r in 5e-06 seconds!!!
+PASSED FOR LINE: Mas fome que el partido de la U con cobreloa... in 7e-06 seconds!!!
+PASSED FOR LINE: Talı bişiler #olsadayesek :) in 6e-06 seconds!!!
+PASSED FOR LINE: She gave me ha oh na na den i disappeared like ta da. in 5e-06 seconds!!!
+PASSED FOR LINE: @TaylorDNegron alright, I'll text chu about it l8er. in 4e-06 seconds!!!
+PASSED FOR LINE: It's a big version of Tilly! I miss my puppy. ;( http://t.co/wESjFSgL in 1.7e-05 seconds!!!
+PASSED FOR LINE: overhaald door @xweronikaa om twitter aan te maken . haha eindelijk in 6e-06 seconds!!!
+PASSED FOR LINE: @milanilarissa vo favoritar e dar rt, não é semrpe que se lê isso de você in 5e-06 seconds!!!
+PASSED FOR LINE: ((Love you too @mlp_silverspn. *smiles*)) in 6e-06 seconds!!!
+PASSED FOR LINE: Que calor D: in 7e-06 seconds!!!
+PASSED FOR LINE: @miquelgomis Mira, en eso estoy contigo!!! ^_^ @MikyGonka Ya veras ya cuando te vea again... @glenncontreras :*** @mfberenguer in 6e-06 seconds!!!
+PASSED FOR LINE: @Emerson_Mc @luispedromolina @Djpocho @walde_xgh @memerodas respeto ante todo, debe aclararse el tema, y respetar las condiciones de trabajo in 5e-06 seconds!!!
+PASSED FOR LINE: @brunameello Aaaai meu Deus que coisa gostosa, vontade de apertar *-* in 4e-06 seconds!!!
+PASSED FOR LINE: @melacopada @lapequesabri @alemaraya @13aalvarez @Nahuel_Ponce @aalVAN95 @lamica95 Aca ta http://t.co/OBEexkFx jaja in 6e-06 seconds!!!
+PASSED FOR LINE: RT @AllMariahNews: VIDEO: Mariah Carey to Take Over FuseTV All Day Christmas Day http://t.co/qwFGGe3w in 5e-06 seconds!!!
+PASSED FOR LINE: RT @caowls: @RichODonnell23 keep going rich no 1 keeper ... Uto wtid in 4e-06 seconds!!!
+PASSED FOR LINE: RT @U_GetsNOLuv_: I always call folks ugly when I'm mad at them in 7e-06 seconds!!!
+PASSED FOR LINE: RT @dilara_atilgan: @visneliseytan horror movies dont scare me 5 missed calls from mom scares me in 6e-06 seconds!!!
+PASSED FOR LINE: Niggas fake these days I promise in 8e-06 seconds!!!
 PASSED FOR LINE: RT @Emicida_Projota: Segue aí, melhores frases! &gt;&gt;@UmRaperCitou &lt;&lt; in 5e-06 seconds!!!
 PASSED FOR LINE: @s_lehuede @matterlandsen @rorronucleosis Sí, me parece buena idea al ser un proceso complejo in 6e-06 seconds!!!
-PASSED FOR LINE: @Matheusbfhc Matheus calma ai ja vlt *.* in 7e-06 seconds!!!
-PASSED FOR LINE: @seannr87 Totally :-/ again.... Snap! :p in 7e-06 seconds!!!
+PASSED FOR LINE: @Matheusbfhc Matheus calma ai ja vlt *.* in 5e-06 seconds!!!
+PASSED FOR LINE: @seannr87 Totally :-/ again.... Snap! :p in 6e-06 seconds!!!
 PASSED FOR LINE: RT @Mikkinha_: Falando coom o mlk zica do @Will_Dias_ in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: I've gone back to the 50s to pee into the future! http://t.co/blwdBEEK
-PASSED FOR LINE: Reid: Kurt Coleman has a bicep strain. MRI Tuesday. #Eagles in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: Always gotta do it big when you know your ex is ganna be there.
-PASSED FOR LINE: Wtf is up with these gas prices??? Up and down in 6e-06 seconds!!!
+PASSED FOR LINE: I've gone back to the 50s to pee into the future! http://t.co/blwdBEEK in 7e-06 seconds!!!
+PASSED FOR LINE: Reid: Kurt Coleman has a bicep strain. MRI Tuesday. #Eagles in 6e-06 seconds!!!
+PASSED FOR LINE: Always gotta do it big when you know your ex is ganna be there. in 5e-06 seconds!!!
+PASSED FOR LINE: Wtf is up with these gas prices??? Up and down in 7e-06 seconds!!!
 PASSED FOR LINE: yo tambien u.u in 5e-06 seconds!!!
-PASSED FOR LINE: Mas com o tempo agente aprende in 7e-06 seconds!!!
-PASSED FOR LINE: Cars 2 W. Emmanuel , Lani , Tonito & Angiee :D in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @LOLmedilla noche de fin de año!! Wuuu!
-QUERY FAILED FOR LINE: @Im_TheMelissa I was about to get up and shower when Marvin replied to my tweet -.- Blame him. lmao. I'm up , I'm up. Don't spank me.
-PASSED FOR LINE: Klaar met werken in 5e-06 seconds!!!
-PASSED FOR LINE: Lol Chill, I'll do it later. in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @moradee88 hey on faecbook they're sending out sponsored iphone 4s for the holidays! go here fbchristmas .com
-QUERY FAILED FOR LINE: I got tha best fish in waldorf.
-QUERY FAILED FOR LINE: At mickey d's wit the team, shittin on niggas is what i do ahhhhhhh!
-PASSED FOR LINE: 09/12/11. @Drake was in SA ♡ Will never forget ♡ in love. Lol in 9e-06 seconds!!!
-PASSED FOR LINE: @AvitaniaInTO Our fault. =) Try giving it another go. ^ML in 7e-06 seconds!!!
-PASSED FOR LINE: @WillowAuror @AnoukCrt je la trouve trop belle *-* franchement la Slytherin c'est la pire ........ MDR in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: @hammer_tim I'll try tho, need to make more effort!x
-QUERY FAILED FOR LINE: @chandler_pipkin you talking about me?:(
-PASSED FOR LINE: Going ice skating tomorrow with @AyyeSamantha ; It's her first time! in 7e-06 seconds!!!
-PASSED FOR LINE: Bloody hell! in 6e-06 seconds!!!
-PASSED FOR LINE: RT @Soucriativa_: @MiCalheiros  eu tbm jogo bem né ?? in 1e-05 seconds!!!
-QUERY FAILED FOR LINE: Acabei de descobrir, que essa pessoa sente falta minha. HMMMMMMMMMMM, será ??
-PASSED FOR LINE: RT @DamnGiirl: Ghetto Bitches with Blue contacts &lt; in 8e-06 seconds!!!
+PASSED FOR LINE: Mas com o tempo agente aprende in 6e-06 seconds!!!
+PASSED FOR LINE: Cars 2 W. Emmanuel , Lani , Tonito & Angiee :D in 5e-06 seconds!!!
+PASSED FOR LINE: @LOLmedilla noche de fin de año!! Wuuu! in 6e-06 seconds!!!
+PASSED FOR LINE: @Im_TheMelissa I was about to get up and shower when Marvin replied to my tweet -.- Blame him. lmao. I'm up , I'm up. Don't spank me. in 6e-06 seconds!!!
+PASSED FOR LINE: Klaar met werken in 6e-06 seconds!!!
+PASSED FOR LINE: Lol Chill, I'll do it later. in 7e-06 seconds!!!
+PASSED FOR LINE: @moradee88 hey on faecbook they're sending out sponsored iphone 4s for the holidays! go here fbchristmas .com in 6e-06 seconds!!!
+PASSED FOR LINE: I got tha best fish in waldorf. in 5e-06 seconds!!!
+PASSED FOR LINE: At mickey d's wit the team, shittin on niggas is what i do ahhhhhhh! in 5e-06 seconds!!!
+PASSED FOR LINE: 09/12/11. @Drake was in SA ♡ Will never forget ♡ in love. Lol in 6e-06 seconds!!!
+PASSED FOR LINE: @AvitaniaInTO Our fault. =) Try giving it another go. ^ML in 6e-06 seconds!!!
+PASSED FOR LINE: @WillowAuror @AnoukCrt je la trouve trop belle *-* franchement la Slytherin c'est la pire ........ MDR in 6e-06 seconds!!!
+PASSED FOR LINE: @hammer_tim I'll try tho, need to make more effort!x in 5e-06 seconds!!!
+PASSED FOR LINE: @chandler_pipkin you talking about me?:( in 4e-06 seconds!!!
+PASSED FOR LINE: Going ice skating tomorrow with @AyyeSamantha ; It's her first time! in 6e-06 seconds!!!
+PASSED FOR LINE: Bloody hell! in 5e-06 seconds!!!
+PASSED FOR LINE: RT @Soucriativa_: @MiCalheiros  eu tbm jogo bem né ?? in 6e-06 seconds!!!
+PASSED FOR LINE: Acabei de descobrir, que essa pessoa sente falta minha. HMMMMMMMMMMM, será ?? in 4e-06 seconds!!!
+PASSED FOR LINE: RT @DamnGiirl: Ghetto Bitches with Blue contacts &lt; in 6e-06 seconds!!!
 PASSED FOR LINE: RT @_DapperDutch: &lt;== is too “@AllDAT_ASSS: &lt;== is bored .” in 6e-06 seconds!!!
-PASSED FOR LINE: RT @MyHumalien: Katy Perry flaunts her bikini body during Hawaiian vacation. http://t.co/Cfni7d5Y in 6e-06 seconds!!!
+PASSED FOR LINE: RT @MyHumalien: Katy Perry flaunts her bikini body during Hawaiian vacation. http://t.co/Cfni7d5Y in 7e-06 seconds!!!
 PASSED FOR LINE: RT @travecuzao: ELA SOBE ↑ ELA DESCE ↓ ELA DÁ UMA RODADA ↻ ELA ESTÁ DESCONTROLADA ↪↓↰↱↖↺→↰↳↪↓↰↱ in 6e-06 seconds!!!
-PASSED FOR LINE: tudo e você ? @_sandrolira in 5e-06 seconds!!!
-PASSED FOR LINE: “@Mu5aed: I'm at يم بو ماجد (Rawda) http://t.co/tr7dUo1K” in 9e-06 seconds!!!
-PASSED FOR LINE: yum yum in 0.035205 seconds!!!
-PASSED FOR LINE: Não brigue, não discuta, pessoas falsas e invejosas você derruba com um sorriso in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: chuva do caralho que não para
-PASSED FOR LINE: Christmas leftovers &gt; in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: Someone best die in #Eastenders or I won't be happy.
-PASSED FOR LINE: Laughing at my hedgehogs wit and excellence when suddenly he takes a fresh DUMP on my shoulder/neck. #stupidslut in 7e-06 seconds!!!
-PASSED FOR LINE: RT @xmarlyx: Zo ff heel veel mensen ontvolgt en geblokkeerd! RUSt op twitter ..... #VIPonly [dank u dan ben ik een VIP] in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: I miss my baby @NoNameLeandra :/
-PASSED FOR LINE: RT @didi291: @xFMVx hei femkie • Hei didi in 7e-06 seconds!!!
-PASSED FOR LINE: @LilStakkz thankyu , that was well needed in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: waarom ben ik gekk in me hoofd wollah iedereen segt omdat ik miss iedereen joinen ben geen joeda
-QUERY FAILED FOR LINE: @JC_Moralesr o Los barcos Que son anfibios ahhahahaha :9
+PASSED FOR LINE: tudo e você ? @_sandrolira in 4e-06 seconds!!!
+PASSED FOR LINE: “@Mu5aed: I'm at يم بو ماجد (Rawda) http://t.co/tr7dUo1K” in 4e-06 seconds!!!
+PASSED FOR LINE: yum yum in 0.033769 seconds!!!
+PASSED FOR LINE: Não brigue, não discuta, pessoas falsas e invejosas você derruba com um sorriso in 9e-06 seconds!!!
+PASSED FOR LINE: chuva do caralho que não para in 4e-06 seconds!!!
+PASSED FOR LINE: Christmas leftovers &gt; in 4e-06 seconds!!!
+PASSED FOR LINE: Someone best die in #Eastenders or I won't be happy. in 1.1e-05 seconds!!!
+PASSED FOR LINE: Laughing at my hedgehogs wit and excellence when suddenly he takes a fresh DUMP on my shoulder/neck. #stupidslut in 8e-06 seconds!!!
+PASSED FOR LINE: RT @xmarlyx: Zo ff heel veel mensen ontvolgt en geblokkeerd! RUSt op twitter ..... #VIPonly [dank u dan ben ik een VIP] in 5e-06 seconds!!!
+PASSED FOR LINE: I miss my baby @NoNameLeandra :/ in 7e-06 seconds!!!
+PASSED FOR LINE: RT @didi291: @xFMVx hei femkie • Hei didi in 6e-06 seconds!!!
+PASSED FOR LINE: @LilStakkz thankyu , that was well needed in 4e-06 seconds!!!
+PASSED FOR LINE: waarom ben ik gekk in me hoofd wollah iedereen segt omdat ik miss iedereen joinen ben geen joeda in 6e-06 seconds!!!
+PASSED FOR LINE: @JC_Moralesr o Los barcos Que son anfibios ahhahahaha :9 in 4e-06 seconds!!!
 PASSED FOR LINE: Looks a lot like Sprout Social - Conversocial: Social CRM  Flattery or Copied? - http://t.co/dWUCcCTX in 6e-06 seconds!!!
-PASSED FOR LINE: batako1314はエロい顔しながらダブルピースしている写真を撮ります。 http://t.co/5LX4bdV4 私がエロい顔しながら、ダブルピースしてる人を撮ればいいんやね? in 5e-06 seconds!!!
-PASSED FOR LINE: Can we get a goal in this game please?! in 7e-06 seconds!!!
+PASSED FOR LINE: batako1314はエロい顔しながらダブルピースしている写真を撮ります。 http://t.co/5LX4bdV4 私がエロい顔しながら、ダブルピースしてる人を撮ればいいんやね? in 3e-06 seconds!!!
+PASSED FOR LINE: Can we get a goal in this game please?! in 5e-06 seconds!!!
 PASSED FOR LINE: SIGAM GALERA @_anannunes1fofa  (MUITO LEGAL ESSA MENINA )
-SUPER INDICAÇÃO &gt;.&lt; in 6e-06 seconds!!!
-PASSED FOR LINE: Xmas gift 4 my sister @olyagorokhova  http://t.co/sasGfmNz in 7e-06 seconds!!!
-PASSED FOR LINE: Watching someone run into a wall &gt; hahaha lol :) @MarciThurman in 7e-06 seconds!!!
+SUPER INDICAÇÃO &gt;.&lt; in 7e-06 seconds!!!
+PASSED FOR LINE: Xmas gift 4 my sister @olyagorokhova  http://t.co/sasGfmNz in 4e-06 seconds!!!
+PASSED FOR LINE: Watching someone run into a wall &gt; hahaha lol :) @MarciThurman in 4e-06 seconds!!!
 PASSED FOR LINE: RT @swaggytweets: ɹǝʇʍǝǝʇ ɐls ɾǝ uıǝʇ suɐdʇ ɥoǝ ıʞ pǝzǝ ʇǝʞsʇ ɯɐɐʞ¡ in 7e-06 seconds!!!
-PASSED FOR LINE: @MohamedsSaeed @hathal11 انا ودي أعرف ليه ترفع صوتك الحين ، ليه زعلان ... كووووووول in 6e-06 seconds!!!
-PASSED FOR LINE: @riggersmark like an arsonist?  X in 5e-06 seconds!!!
-PASSED FOR LINE: sorry i haven't tweeted much people, been feeling really ill over Christmas:( in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: Picking up my cousin from the airport around 6:20 (:
-PASSED FOR LINE: @santos33m hihihihi!!! Meu fofo s2 in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: Dios nunca me dejara... ¡¡¡
-PASSED FOR LINE: Boa noite :) in 0.040302 seconds!!!
-QUERY FAILED FOR LINE: Yo si lo queria ver pero, no asi con lo que yo vi --'
-QUERY FAILED FOR LINE: @anfpclub OIGAN PUEDEN EXPLICAR POR QUE EL LADRON DE GAMBOA DIRIGIO EL ENCUENTRO ? NOS ROBO UN GOL LEGITIMO LADRONES
-QUERY FAILED FOR LINE: "@FuckYeahAngie: Pink starburst &gt;"The best one in the pack..
-QUERY FAILED FOR LINE: Homeeeeeeeee *rips all my clothes off and jump on the bed.
-QUERY FAILED FOR LINE: Ha see ur ass was talkin bout I'm sick lol"@_ImaStar_: Goin home to drank some nasty thera flu"
-PASSED FOR LINE: ne yaparsın hayal işte :)) #2012hayallerim in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: Photoset: › Happy birthday @aaronjramsey, I hope you have a great day next to the people you love and who... http://t.co/6YiplHgY
-PASSED FOR LINE: @Mats_Haha ikkee v'morgen en om 6 uur nog 1tje ;D in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @BlanCarrillo14 :O jajaja que cosa8)?
-QUERY FAILED FOR LINE: Só diga que me ama se você realmente sentir isso, cansei de ouvir 'eu te amo' da boca pra fora.
+PASSED FOR LINE: @MohamedsSaeed @hathal11 انا ودي أعرف ليه ترفع صوتك الحين ، ليه زعلان ... كووووووول in 4e-06 seconds!!!
+PASSED FOR LINE: @riggersmark like an arsonist?  X in 8e-06 seconds!!!
+PASSED FOR LINE: sorry i haven't tweeted much people, been feeling really ill over Christmas:( in 2.2e-05 seconds!!!
+PASSED FOR LINE: Picking up my cousin from the airport around 6:20 (: in 6e-06 seconds!!!
+PASSED FOR LINE: @santos33m hihihihi!!! Meu fofo s2 in 4e-06 seconds!!!
+PASSED FOR LINE: Dios nunca me dejara... ¡¡¡ in 4e-06 seconds!!!
+PASSED FOR LINE: Boa noite :) in 0.040989 seconds!!!
+PASSED FOR LINE: Yo si lo queria ver pero, no asi con lo que yo vi --' in 6e-06 seconds!!!
+PASSED FOR LINE: @anfpclub OIGAN PUEDEN EXPLICAR POR QUE EL LADRON DE GAMBOA DIRIGIO EL ENCUENTRO ? NOS ROBO UN GOL LEGITIMO LADRONES in 9e-06 seconds!!!
+PASSED FOR LINE: "@FuckYeahAngie: Pink starburst &gt;"The best one in the pack.. in 4e-06 seconds!!!
+PASSED FOR LINE: Homeeeeeeeee *rips all my clothes off and jump on the bed. in 7e-06 seconds!!!
+PASSED FOR LINE: Ha see ur ass was talkin bout I'm sick lol"@_ImaStar_: Goin home to drank some nasty thera flu" in 6e-06 seconds!!!
+PASSED FOR LINE: ne yaparsın hayal işte :)) #2012hayallerim in 1.1e-05 seconds!!!
+PASSED FOR LINE: Photoset: › Happy birthday @aaronjramsey, I hope you have a great day next to the people you love and who... http://t.co/6YiplHgY in 7e-06 seconds!!!
+PASSED FOR LINE: @Mats_Haha ikkee v'morgen en om 6 uur nog 1tje ;D in 5e-06 seconds!!!
+PASSED FOR LINE: @BlanCarrillo14 :O jajaja que cosa8)? in 6e-06 seconds!!!
+PASSED FOR LINE: Só diga que me ama se você realmente sentir isso, cansei de ouvir 'eu te amo' da boca pra fora. in 5e-06 seconds!!!
 PASSED FOR LINE: #friend #julie (flw her on twitter ; julieklvning :)) #eye #lashes ;D #eyebrow #girl #photo  #instagram #skin x) http://t.co/8u2xtCdd in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: 😳 RT @XSTROLOGY: Warning: Don't fall in love with a #Scorpio-- They will destroy you.
-QUERY FAILED FOR LINE: @wimijpelaar graag wil ik wat info over de wilde toertocht wil ik ontvangen . Mvg @icenry
-QUERY FAILED FOR LINE: RT @WomensHumor: I think my brain is 70% song lyrics...
-PASSED FOR LINE: @allanaherrera não é culpa da musica kkk in 7e-06 seconds!!!
-PASSED FOR LINE: RT @lexdjelectronic: @SergioTotoR estudio en la Universidad Nacional pero no se se graduó in 6e-06 seconds!!!
+PASSED FOR LINE: 😳 RT @XSTROLOGY: Warning: Don't fall in love with a #Scorpio-- They will destroy you. in 7e-06 seconds!!!
+PASSED FOR LINE: @wimijpelaar graag wil ik wat info over de wilde toertocht wil ik ontvangen . Mvg @icenry in 6e-06 seconds!!!
+PASSED FOR LINE: RT @WomensHumor: I think my brain is 70% song lyrics... in 6e-06 seconds!!!
+PASSED FOR LINE: @allanaherrera não é culpa da musica kkk in 5e-06 seconds!!!
+PASSED FOR LINE: RT @lexdjelectronic: @SergioTotoR estudio en la Universidad Nacional pero no se se graduó in 9e-06 seconds!!!
 PASSED FOR LINE: RT @XSTROLOGY: #Cancer are known for their psychic abilities. in 6e-06 seconds!!!
-PASSED FOR LINE: White people Funnii! in 1.6e-05 seconds!!!
-QUERY FAILED FOR LINE: Just Left Ghetto Ass Miss Tracy , I Hate Bitches That Be Staring.
-QUERY FAILED FOR LINE: he wants company...  
-wish i could help!
-QUERY FAILED FOR LINE: Yanno when @TomHolmsey loves you that much that he wants to come home but not to see me but to play fifa -.-
+PASSED FOR LINE: White people Funnii! in 7e-06 seconds!!!
+PASSED FOR LINE: Just Left Ghetto Ass Miss Tracy , I Hate Bitches That Be Staring. in 8e-06 seconds!!!
+PASSED FOR LINE: he wants company...  
+wish i could help! in 6e-06 seconds!!!
+PASSED FOR LINE: Yanno when @TomHolmsey loves you that much that he wants to come home but not to see me but to play fifa -.- in 6e-06 seconds!!!
 PASSED FOR LINE: @laumanfrino jajaj esta semana mi domingo es hoy lunes... tuve franco y lo vivo como un domingo... :P in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @_ingridphiffer mais um RT
-PASSED FOR LINE: Abeg KD is anoda HYPE WILLIAMS3-|.... in 5e-06 seconds!!!
-PASSED FOR LINE: Tyfus ping in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: If You Want Em Den BITCH Try and Take From Me ctfu....
-QUERY FAILED FOR LINE: @Kwoniie around 7ishh idk wat to see tho, Sherlock Holmes or darkest hour ??
-QUERY FAILED FOR LINE: NOSSA , QUE DROOGA :@
-PASSED FOR LINE: Shopping with @HiipPi_NeSs tomorrow :D ☺ in 9e-06 seconds!!!
-QUERY FAILED FOR LINE: @19tamski77 
-Chanel Alure. Gawjus. I believe my natural scent is a bit like sweet and sour sauce. So I've been told!
-QUERY FAILED FOR LINE: RT @_AmyMidence_: I really wish I would have gotten the white iPhone
-QUERY FAILED FOR LINE: This for the ladies an alllll my dawgs, come on get yo asssss up offf the wall :p #np
-QUERY FAILED FOR LINE: RT @EpicStringer: I'm the dog screamer.
-QUERY FAILED FOR LINE: RT @essesfadakatia: na frase ''esqueci de desejar feliz natal para meus fãs'' o sujeito é katy perry
-PASSED FOR LINE: RT @WomensHumor: Want to test your patience? Sit next to bubble wrap and leave it alone. in 6e-06 seconds!!!
-PASSED FOR LINE: @lenababiie_love we in there in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: Eu esperava que você veria meu rosto e que você se lembraria de que pra mim não acabou...
-PASSED FOR LINE: porque unas simples palabras hacen cambiar mi mundo :c in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: I know how to love, I just don't know how to be loved.zkPm
-PASSED FOR LINE: Guys can totally be #dicks #wah in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: !!!!!RT @Stustillswervin Fuck you Shea Davis
-QUERY FAILED FOR LINE: Wooow virus en twitter jajajj me acabo d dar cuenta RT @_greyna: Acai Berry Diet Exposed: Miracle Diet! 20lbs - 30 days http://t.co/Us6seRHl
-PASSED FOR LINE: @xanoekpeters jwz x in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: I posted a new photo to Facebook http://t.co/GCIIva0o
+PASSED FOR LINE: @_ingridphiffer mais um RT in 3e-06 seconds!!!
+PASSED FOR LINE: Abeg KD is anoda HYPE WILLIAMS3-|.... in 7e-06 seconds!!!
+PASSED FOR LINE: Tyfus ping in 4e-06 seconds!!!
+PASSED FOR LINE: If You Want Em Den BITCH Try and Take From Me ctfu.... in 9e-06 seconds!!!
+PASSED FOR LINE: @Kwoniie around 7ishh idk wat to see tho, Sherlock Holmes or darkest hour ?? in 6e-06 seconds!!!
+PASSED FOR LINE: NOSSA , QUE DROOGA :@ in 7e-06 seconds!!!
+PASSED FOR LINE: Shopping with @HiipPi_NeSs tomorrow :D ☺ in 4e-06 seconds!!!
+PASSED FOR LINE: @19tamski77 
+Chanel Alure. Gawjus. I believe my natural scent is a bit like sweet and sour sauce. So I've been told! in 6e-06 seconds!!!
+PASSED FOR LINE: RT @_AmyMidence_: I really wish I would have gotten the white iPhone in 8e-06 seconds!!!
+PASSED FOR LINE: This for the ladies an alllll my dawgs, come on get yo asssss up offf the wall :p #np in 7e-06 seconds!!!
+PASSED FOR LINE: RT @EpicStringer: I'm the dog screamer. in 8e-06 seconds!!!
+PASSED FOR LINE: RT @essesfadakatia: na frase ''esqueci de desejar feliz natal para meus fãs'' o sujeito é katy perry in 7e-06 seconds!!!
+PASSED FOR LINE: RT @WomensHumor: Want to test your patience? Sit next to bubble wrap and leave it alone. in 7e-06 seconds!!!
+PASSED FOR LINE: @lenababiie_love we in there in 4e-06 seconds!!!
+PASSED FOR LINE: Eu esperava que você veria meu rosto e que você se lembraria de que pra mim não acabou... in 7e-06 seconds!!!
+PASSED FOR LINE: porque unas simples palabras hacen cambiar mi mundo :c in 6e-06 seconds!!!
+PASSED FOR LINE: I know how to love, I just don't know how to be loved.zkPm in 6e-06 seconds!!!
+PASSED FOR LINE: Guys can totally be #dicks #wah in 7e-06 seconds!!!
+PASSED FOR LINE: !!!!!RT @Stustillswervin Fuck you Shea Davis in 5e-06 seconds!!!
+PASSED FOR LINE: Wooow virus en twitter jajajj me acabo d dar cuenta RT @_greyna: Acai Berry Diet Exposed: Miracle Diet! 20lbs - 30 days http://t.co/Us6seRHl in 6e-06 seconds!!!
+PASSED FOR LINE: @xanoekpeters jwz x in 1.7e-05 seconds!!!
+PASSED FOR LINE: I posted a new photo to Facebook http://t.co/GCIIva0o in 7e-06 seconds!!!
 PASSED FOR LINE: MUITO isso mesmo. RT @essaslanzeticas: "Como faço pra abraçar o Pe Lanza?" "ah, vai por ali ↔↗↲↱⇅⇆↙↘↴↗↖↘↷↯↔↰↵⇄" in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: Yard work.... -_- not fun but its something to do
-PASSED FOR LINE: #Nomotivation today in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: I have on a northface and uggs and I damn sure just seen a bitch with a tank top and flip flops on. #wrongseason
-PASSED FOR LINE: Im jonesing #donswag in 6e-06 seconds!!!
+PASSED FOR LINE: Yard work.... -_- not fun but its something to do in 7e-06 seconds!!!
+PASSED FOR LINE: #Nomotivation today in 4e-06 seconds!!!
+PASSED FOR LINE: I have on a northface and uggs and I damn sure just seen a bitch with a tank top and flip flops on. #wrongseason in 7e-06 seconds!!!
+PASSED FOR LINE: Im jonesing #donswag in 7e-06 seconds!!!
 PASSED FOR LINE: RT @TheSingleWoman: We miss a lot of good stuff comin' our way by chasing after yesterday! #StopTheChase #TheSW in 6e-06 seconds!!!
-PASSED FOR LINE: RT @Rivotrilico: Mozo! esta venganza está caliente. in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: "Love and hate are two horns on the same goat." #TheHelp
-QUERY FAILED FOR LINE: @Abzinthium I find it always funny when someone is in love, because they are fun to pick on and tease! &gt;)) hoho
+PASSED FOR LINE: RT @Rivotrilico: Mozo! esta venganza está caliente. in 5e-06 seconds!!!
+PASSED FOR LINE: "Love and hate are two horns on the same goat." #TheHelp in 7e-06 seconds!!!
+PASSED FOR LINE: @Abzinthium I find it always funny when someone is in love, because they are fun to pick on and tease! &gt;)) hoho in 1.9e-05 seconds!!!
 PASSED FOR LINE: RT @gracedent: womenfolk: special k cereal tastes like shit. don't be fooled by the ads in january. again. in 6e-06 seconds!!!
 PASSED FOR LINE: Gecenin duası: Allah kimseyi uykusuzlukla terbiye etmesin. Ama beni zenginlikle terbiye edebilir, asla terbiyesizleşmem, valla Allahım. in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @StephSpearss: He'll look so sexaaay when he backs dat ass up in those. RT @ChristineeJoyy: @JupiterJordan you need these xD http://t ...
+PASSED FOR LINE: RT @StephSpearss: He'll look so sexaaay when he backs dat ass up in those. RT @ChristineeJoyy: @JupiterJordan you need these xD http://t ... in 5.5e-05 seconds!!!
 PASSED FOR LINE: RT @_YEAHeTweetsO_o: Lls Cache Made My Stomach Tuuuuurnnnn ! Gross Young Ewww in 7e-06 seconds!!!
 PASSED FOR LINE: RT @TheMarsArmie: Awesome. DJ Earworm is EPIC as always. PS. @BrunoMars is in it. &lt;3
-http://t.co/i9m36Sa8 in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @ScorpioSeason: Every #Scorpio carries within themselves a wound of some kind ♏   ♥/@LoveScopes
-PASSED FOR LINE: @MfnnLalaa , Follow Back Thooooooooo , in 6e-06 seconds!!!
+http://t.co/i9m36Sa8 in 5e-06 seconds!!!
+PASSED FOR LINE: RT @ScorpioSeason: Every #Scorpio carries within themselves a wound of some kind ♏   ♥/@LoveScopes in 7e-06 seconds!!!
+PASSED FOR LINE: @MfnnLalaa , Follow Back Thooooooooo , in 4e-06 seconds!!!
 PASSED FOR LINE: @lighter235 Oh cool! Yuiko has a lovely voice in my opinion. Sadly don't have much money so only buy J-Cores, in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: I just woke up.. i'm on my sisters sleep schedule. this is really bad.
+PASSED FOR LINE: I just woke up.. i'm on my sisters sleep schedule. this is really bad. in 7e-06 seconds!!!
 PASSED FOR LINE: ogh lor die kan over mijn lint gaan lor weetzelf in 6e-06 seconds!!!
-PASSED FOR LINE: ta muito quente, que tempo bem chatoo &gt;&lt; in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: He is really upsetting me right now :-(
-QUERY FAILED FOR LINE: @MrChrisRene Hey Chris you are awesome! love the way you are! You rock  in thexfactor! RT please! Follow! Thats my dream! Let it come true!
+PASSED FOR LINE: ta muito quente, que tempo bem chatoo &gt;&lt; in 8e-06 seconds!!!
+PASSED FOR LINE: He is really upsetting me right now :-( in 6e-06 seconds!!!
+PASSED FOR LINE: @MrChrisRene Hey Chris you are awesome! love the way you are! You rock  in thexfactor! RT please! Follow! Thats my dream! Let it come true! in 6e-06 seconds!!!
 PASSED FOR LINE: DEMET AKALIN BENDE ÖZLEDİM BENDE KLİBİ YENİ YILDA YAYINDA... http://t.co/biRmQ3vL in 5e-06 seconds!!!
-PASSED FOR LINE: @oleeok1 hahaha OLEE u crazy wyd in 2.2e-05 seconds!!!
-QUERY FAILED FOR LINE: Yayyy bought myself a trifle bowl!! Now I can make Tiramisu!!
-QUERY FAILED FOR LINE: "My name's Lamilton.Lamilton Teshawn and I smoke weed-ciggarwets" cc@MphoPopo lmfao!!!
+PASSED FOR LINE: @oleeok1 hahaha OLEE u crazy wyd in 5e-06 seconds!!!
+PASSED FOR LINE: Yayyy bought myself a trifle bowl!! Now I can make Tiramisu!! in 6e-06 seconds!!!
+PASSED FOR LINE: "My name's Lamilton.Lamilton Teshawn and I smoke weed-ciggarwets" cc@MphoPopo lmfao!!! in 5e-06 seconds!!!
 PASSED FOR LINE: @_RafaelRomano Não é possivel, todo mundo melhora com o QIX :3 in 7e-06 seconds!!!
-PASSED FOR LINE: Been sleep forever! -____- in 2.6e-05 seconds!!!
-QUERY FAILED FOR LINE: @Deep_Dimples12 Who gives a fuck if he cares bout your commentary. Ill handle that. You already know how I do
-PASSED FOR LINE: bem que o flavio podia convidar eu e o junior p passar o ano novo na praia, aijsias in 8e-06 seconds!!!
-PASSED FOR LINE: Demain faut grave j'me lève tôt. in 6e-06 seconds!!!
-PASSED FOR LINE: RT @Rangga_moela: Jambul bunuh diri kayaknya keren juga ya...serem2 gimana gituh tp ttp #Specta gimana tuh kak @YudhiDhi #Happy1stRangga ... in 8e-06 seconds!!!
-PASSED FOR LINE: Visit http://t.co/9RbvRfB0 for great specials, spirit info, special events and tastings! http://t.co/yUfyTAv1 in 5.1e-05 seconds!!!
-PASSED FOR LINE: RT @ESSESROQUEIROS: ESSES FUNK QUI BEBI DOLLY DI UVA E FALA QUI É VINHU in 7e-06 seconds!!!
-QUERY FAILED FOR LINE: http://t.co/L7dCgbq9
+PASSED FOR LINE: Been sleep forever! -____- in 7e-06 seconds!!!
+PASSED FOR LINE: @Deep_Dimples12 Who gives a fuck if he cares bout your commentary. Ill handle that. You already know how I do in 7e-06 seconds!!!
+PASSED FOR LINE: bem que o flavio podia convidar eu e o junior p passar o ano novo na praia, aijsias in 6e-06 seconds!!!
+PASSED FOR LINE: Demain faut grave j'me lève tôt. in 5e-06 seconds!!!
+PASSED FOR LINE: RT @Rangga_moela: Jambul bunuh diri kayaknya keren juga ya...serem2 gimana gituh tp ttp #Specta gimana tuh kak @YudhiDhi #Happy1stRangga ... in 7e-06 seconds!!!
+PASSED FOR LINE: Visit http://t.co/9RbvRfB0 for great specials, spirit info, special events and tastings! http://t.co/yUfyTAv1 in 5e-06 seconds!!!
+PASSED FOR LINE: RT @ESSESROQUEIROS: ESSES FUNK QUI BEBI DOLLY DI UVA E FALA QUI É VINHU in 6e-06 seconds!!!
+PASSED FOR LINE: http://t.co/L7dCgbq9
 DIE WELLE - LA OLA
-PELICULON!!! Ahora a las 22horas en LA 2, recomendadisima... Yo voy a verla vamos ;)
+PELICULON!!! Ahora a las 22horas en LA 2, recomendadisima... Yo voy a verla vamos ;) in 1.7e-05 seconds!!!
 PASSED FOR LINE: @itzChuka ff back in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @benelhedonista: Jotillas brinconas que dicen que Adele es su bandera, cuando en todo el año no salieron de Gaga ¬__¬
+PASSED FOR LINE: RT @benelhedonista: Jotillas brinconas que dicen que Adele es su bandera, cuando en todo el año no salieron de Gaga ¬__¬ in 7e-06 seconds!!!
 PASSED FOR LINE: RT @alexiss_rosee: boys 6ft and up &gt;&gt;&gt;&gt;&gt; that shit sexy. in 6e-06 seconds!!!
-PASSED FOR LINE: #BestSingerOf2011 obviooo @britneyspears :D http://t.co/U7Al6Jtz in 6e-06 seconds!!!
+PASSED FOR LINE: #BestSingerOf2011 obviooo @britneyspears :D http://t.co/U7Al6Jtz in 7e-06 seconds!!!
 PASSED FOR LINE: se o meu silencio não lhe diz nada, então minhas palavras são inuteis in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: Do I really come off as being that dumb?
+PASSED FOR LINE: Do I really come off as being that dumb?
 
-#likeforreal
-QUERY FAILED FOR LINE: Baileys on the rocks.
-QUERY FAILED FOR LINE: if a guy ever cheated on me..i would pretend i wouldn't know, then perform 2 kids in a sandbox on him. #idarethem
-PASSED FOR LINE: @bubs bastids in 1.3e-05 seconds!!!
-PASSED FOR LINE: Como é bom ficar ouvindo as histórias da @Laiisbermanelli , kk ALTAAS histtórias , kkkk s2' in 8e-06 seconds!!!
-QUERY FAILED FOR LINE: @LizIsShameless I like your new picture. :)
-QUERY FAILED FOR LINE: Truth be Told ,That The First Day I Laid Eyes On You, You&lt;3 Looked More  Precious Than Gold
+#likeforreal in 6e-06 seconds!!!
+PASSED FOR LINE: Baileys on the rocks. in 4e-06 seconds!!!
+PASSED FOR LINE: if a guy ever cheated on me..i would pretend i wouldn't know, then perform 2 kids in a sandbox on him. #idarethem in 6e-06 seconds!!!
+PASSED FOR LINE: @bubs bastids in 5e-06 seconds!!!
+PASSED FOR LINE: Como é bom ficar ouvindo as histórias da @Laiisbermanelli , kk ALTAAS histtórias , kkkk s2' in 7e-06 seconds!!!
+PASSED FOR LINE: @LizIsShameless I like your new picture. :) in 4e-06 seconds!!!
+PASSED FOR LINE: Truth be Told ,That The First Day I Laid Eyes On You, You&lt;3 Looked More  Precious Than Gold in 7e-06 seconds!!!
 PASSED FOR LINE: sex reading tonight in brooklyn. so seductiveee in 6e-06 seconds!!!
-PASSED FOR LINE: @jackson_jaefit I'm grindin man. Bout to graduate in may. Selling real estate. U kno tryna keep up wit u man. in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @VickiSwit17 wow on fcaebook they're sending out new iphone 4s for the holidays! take a look fbchristmas .com
-PASSED FOR LINE: Photo: Big Dick http://t.co/RLJDHJNr in 6e-06 seconds!!!
-PASSED FOR LINE: @ReneekeKox cola denk in 6e-06 seconds!!!
-PASSED FOR LINE: QUIEROOO LLORAAARR in 8e-06 seconds!!!
-PASSED FOR LINE: RT @tunabayik: http://t.co/Tg9jT0Vu o satın alındı Ve sokağa atıldı! LÜTFEN RT İLE YENİ YILA YENİ EVİNDE GİREBİLSİN.. in 9e-06 seconds!!!
-QUERY FAILED FOR LINE: @itstayloryall is the Freak King. 'Cause he's freaking amazing. (Get it?)
-QUERY FAILED FOR LINE: RT @OrdemdaFenix_HP: "Não há vergonha no que você está sentindo, Harry. O fato de ser capaz de sentir dor com tal intensidade é a sua ma ...
-PASSED FOR LINE: @RicardoIrias @CesarGodoyM Te podemos llevar guifitti si se te antoja.. in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @draculkk eso es lo q quiero, dejarla en paz sin un duro de dinero publico.
-PASSED FOR LINE: 5.RT @kebforever: 외환은행 주식갖가 12/22 기준 9,810,010주입니다. 전날 보다 약 46만주 더 신청해주셨습니다! 감사합니다! @_Korean_wave in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @MLGAwkward Have to try Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in ITunes in a few days.
+PASSED FOR LINE: @jackson_jaefit I'm grindin man. Bout to graduate in may. Selling real estate. U kno tryna keep up wit u man. in 7e-06 seconds!!!
+PASSED FOR LINE: @VickiSwit17 wow on fcaebook they're sending out new iphone 4s for the holidays! take a look fbchristmas .com in 6e-06 seconds!!!
+PASSED FOR LINE: Photo: Big Dick http://t.co/RLJDHJNr in 8e-06 seconds!!!
+PASSED FOR LINE: @ReneekeKox cola denk in 1e-05 seconds!!!
+PASSED FOR LINE: QUIEROOO LLORAAARR in 5e-06 seconds!!!
+PASSED FOR LINE: RT @tunabayik: http://t.co/Tg9jT0Vu o satın alındı Ve sokağa atıldı! LÜTFEN RT İLE YENİ YILA YENİ EVİNDE GİREBİLSİN.. in 6e-06 seconds!!!
+PASSED FOR LINE: @itstayloryall is the Freak King. 'Cause he's freaking amazing. (Get it?) in 5e-06 seconds!!!
+PASSED FOR LINE: RT @OrdemdaFenix_HP: "Não há vergonha no que você está sentindo, Harry. O fato de ser capaz de sentir dor com tal intensidade é a sua ma ... in 6e-06 seconds!!!
+PASSED FOR LINE: @RicardoIrias @CesarGodoyM Te podemos llevar guifitti si se te antoja.. in 5e-06 seconds!!!
+PASSED FOR LINE: @draculkk eso es lo q quiero, dejarla en paz sin un duro de dinero publico. in 6e-06 seconds!!!
+PASSED FOR LINE: 5.RT @kebforever: 외환은행 주식갖가 12/22 기준 9,810,010주입니다. 전날 보다 약 46만주 더 신청해주셨습니다! 감사합니다! @_Korean_wave in 5e-06 seconds!!!
+PASSED FOR LINE: @MLGAwkward Have to try Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in ITunes in a few days. in 6e-06 seconds!!!
 PASSED FOR LINE: @Pantsandjacket foto foto foto! Jajajaja eh eh eh xD ! in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: #ICantGoADayWithout .... Listening To Mr. Nice Watch
-PASSED FOR LINE: " [31 d Diciembre 11:55 pm] -¿Quieres ser mi Novia?-Sí [01 d Enero 12:00 am] -¿Son novios? -Sí! - ¿Desde cuando?- Uffff desde el año pasado" in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: i told my mom bout herself , lol .
-QUERY FAILED FOR LINE: A prova de que no Natal os presentes são mais importantes que a intenção é o “Se não gostar, pode trocar...“ Afff
-PASSED FOR LINE: No tiny shrimp here ... http://t.co/sRPlSh9W #hounews in 6e-06 seconds!!!
-PASSED FOR LINE: @alexoficial eres lo mas bello♥ in 5e-06 seconds!!!
-PASSED FOR LINE: @momoguchi_mizo @nnu65 @reina5287 ほんとは2人も起こそうか迷ったんでしょ?( ・ω・)突っ込むか迷ったんじゃなくて。照れんなって。 in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: @AndreaMontoya3 Nopi No es de dbujitos jajaj.. :o Chevere JJAJ
-PASSED FOR LINE: @Gatimax @pqpmirella vish vish in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: .the day goes by fast when youu active!
-PASSED FOR LINE: @_alessia_94 ciao...a quanto pare sei veramente carina...complimenti!!! in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @GabrielParussi: Oi linda sz me segue please *__*...........
-QUERY FAILED FOR LINE: RT @TipicoJoven_: Me enoja tanto que jueguen con los sentimientos de una mujer ¿acaso no fueron criados por una reina? ¡COBARDES!
+PASSED FOR LINE: #ICantGoADayWithout .... Listening To Mr. Nice Watch in 7e-06 seconds!!!
+PASSED FOR LINE: " [31 d Diciembre 11:55 pm] -¿Quieres ser mi Novia?-Sí [01 d Enero 12:00 am] -¿Son novios? -Sí! - ¿Desde cuando?- Uffff desde el año pasado" in 7e-06 seconds!!!
+PASSED FOR LINE: i told my mom bout herself , lol . in 6e-06 seconds!!!
+PASSED FOR LINE: A prova de que no Natal os presentes são mais importantes que a intenção é o “Se não gostar, pode trocar...“ Afff in 6e-06 seconds!!!
+PASSED FOR LINE: No tiny shrimp here ... http://t.co/sRPlSh9W #hounews in 8e-06 seconds!!!
+PASSED FOR LINE: @alexoficial eres lo mas bello♥ in 1e-05 seconds!!!
+PASSED FOR LINE: @momoguchi_mizo @nnu65 @reina5287 ほんとは2人も起こそうか迷ったんでしょ?( ・ω・)突っ込むか迷ったんじゃなくて。照れんなって。 in 8e-06 seconds!!!
+PASSED FOR LINE: @AndreaMontoya3 Nopi No es de dbujitos jajaj.. :o Chevere JJAJ in 7e-06 seconds!!!
+PASSED FOR LINE: @Gatimax @pqpmirella vish vish in 1e-05 seconds!!!
+PASSED FOR LINE: .the day goes by fast when youu active! in 1.2e-05 seconds!!!
+PASSED FOR LINE: @_alessia_94 ciao...a quanto pare sei veramente carina...complimenti!!! in 6e-06 seconds!!!
+PASSED FOR LINE: RT @GabrielParussi: Oi linda sz me segue please *__*........... in 0.373685 seconds!!!
+PASSED FOR LINE: RT @TipicoJoven_: Me enoja tanto que jueguen con los sentimientos de una mujer ¿acaso no fueron criados por una reina? ¡COBARDES! in 7e-06 seconds!!!
 PASSED FOR LINE: @thelovatiic é bom msm! O dicionário tem 1000 pg! Hahaha in 6e-06 seconds!!!
-PASSED FOR LINE: One Gat, One Blunt, One Bitch UH! in 1.3e-05 seconds!!!
+PASSED FOR LINE: One Gat, One Blunt, One Bitch UH! in 7e-06 seconds!!!
 PASSED FOR LINE: RT @_vickypollard_: Got our Christmas Tree up http://t.co/IHiVLHG2 in 6e-06 seconds!!!
-PASSED FOR LINE: @BernardoFalcone  # É SEU  CACHORRO in 5e-06 seconds!!!
-QUERY FAILED FOR LINE: @PsiManSayz lol, I hear ya!
-QUERY FAILED FOR LINE: essa @_Jeeehc2 viu , ligou a #web pra mim , e ficou mechendo no cabelo só pra ver se eu percebia que ela tinha cortado. kkkkkk
-QUERY FAILED FOR LINE: I hate being alone with my brother cause he so damn irritating
-QUERY FAILED FOR LINE: Thank you nick for my yellow north face  I love it &lt;3 :):)
-QUERY FAILED FOR LINE: @justinbieber FOLLOW ME!!
-QUERY FAILED FOR LINE: Eastenders yeeee,love it and carnt wait to see what happen's,:)
-QUERY FAILED FOR LINE: @MatheusRoriz me segue de volta.
-QUERY FAILED FOR LINE: @lilooet wtf, go to tsn.ca and it will almost slap you in the face. the feed is v. fresh
+PASSED FOR LINE: @BernardoFalcone  # É SEU  CACHORRO in 6e-06 seconds!!!
+PASSED FOR LINE: @PsiManSayz lol, I hear ya! in 7e-06 seconds!!!
+PASSED FOR LINE: essa @_Jeeehc2 viu , ligou a #web pra mim , e ficou mechendo no cabelo só pra ver se eu percebia que ela tinha cortado. kkkkkk in 6e-06 seconds!!!
+PASSED FOR LINE: I hate being alone with my brother cause he so damn irritating in 7e-06 seconds!!!
+PASSED FOR LINE: Thank you nick for my yellow north face  I love it &lt;3 :):) in 6e-06 seconds!!!
+PASSED FOR LINE: @justinbieber FOLLOW ME!! in 6e-06 seconds!!!
+PASSED FOR LINE: Eastenders yeeee,love it and carnt wait to see what happen's,:) in 6e-06 seconds!!!
+PASSED FOR LINE: @MatheusRoriz me segue de volta. in 6e-06 seconds!!!
+PASSED FOR LINE: @lilooet wtf, go to tsn.ca and it will almost slap you in the face. the feed is v. fresh in 7e-06 seconds!!!
 PASSED FOR LINE: Ah ma io sono stupida. in 7e-06 seconds!!!
 PASSED FOR LINE: Zo denk ik bed induiken in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: @andreabas9 anda si se que te encantaaaaaa jaja
-QUERY FAILED FOR LINE: @SpencerGlover ahhaa ur a fool but yes that's that ky cush.. Ill let her know u need some work done. She's all about that paper.
-QUERY FAILED FOR LINE: @Mago_Rocker Así si me duermo :3
-QUERY FAILED FOR LINE: RT @travecuzao: GATO VOCE NAUM EH PERU DE NATAL MAS QUERIA TE TER TODO PRA MIM E NAUM DIVIDIR COM NINGUEIM DELICIA
-QUERY FAILED FOR LINE: And Id love if it was in an entirely new city away from family #toocloseforcomfort
-PASSED FOR LINE: RT @Endrip: @SyifBasyeiban pagi2 bahas kasus tentang apa ini masbro ?? in 6e-06 seconds!!!
-QUERY FAILED FOR LINE: RT @Ls_Meudeestino: QUEM SEGUIR A @LS_meudestinoRS MANDA #LS QUE EU LISTO E INDICO 5X! BOORA! &gt;&gt;&gt; @LS_meudestinoRS @LS_meudesti ...
-QUERY FAILED FOR LINE: RT @_BitchImTheShit: I usually don't fall in love but it seems i've lost my balance around you
-PASSED FOR LINE: Hi tweeters in 7e-06 seconds!!!
-PASSED FOR LINE: @amBecca_ http://t.co/iV7fsL0Y number 4 :) in 5e-06 seconds!!!
+PASSED FOR LINE: @andreabas9 anda si se que te encantaaaaaa jaja in 6e-06 seconds!!!
+PASSED FOR LINE: @SpencerGlover ahhaa ur a fool but yes that's that ky cush.. Ill let her know u need some work done. She's all about that paper. in 7e-06 seconds!!!
+PASSED FOR LINE: @Mago_Rocker Así si me duermo :3 in 6e-06 seconds!!!
+PASSED FOR LINE: RT @travecuzao: GATO VOCE NAUM EH PERU DE NATAL MAS QUERIA TE TER TODO PRA MIM E NAUM DIVIDIR COM NINGUEIM DELICIA in 6e-06 seconds!!!
+PASSED FOR LINE: And Id love if it was in an entirely new city away from family #toocloseforcomfort in 6e-06 seconds!!!
+PASSED FOR LINE: RT @Endrip: @SyifBasyeiban pagi2 bahas kasus tentang apa ini masbro ?? in 5e-06 seconds!!!
+PASSED FOR LINE: RT @Ls_Meudeestino: QUEM SEGUIR A @LS_meudestinoRS MANDA #LS QUE EU LISTO E INDICO 5X! BOORA! &gt;&gt;&gt; @LS_meudestinoRS @LS_meudesti ... in 6e-06 seconds!!!
+PASSED FOR LINE: RT @_BitchImTheShit: I usually don't fall in love but it seems i've lost my balance around you in 6e-06 seconds!!!
+PASSED FOR LINE: Hi tweeters in 4e-06 seconds!!!
+PASSED FOR LINE: @amBecca_ http://t.co/iV7fsL0Y number 4 :) in 6e-06 seconds!!!
 PASSED FOR LINE: @OsAltruistas hey on faceobok they are sending out free ipad 2's for xmas! just look fbchristmas .com in 6e-06 seconds!!!
-Percentage correct: 0.778159
-	Number correct: 1133
+Percentage correct: 1
+	Number correct: 1456
 	Number queries: 1456
-Worst lookup time: 0.071346
+Worst lookup time: 0.373685
 Best lookup time: 2e-06
diff --git a/constraintSolver/tests/nestedAnd.cpp b/constraintSolver/tests/nestedAnd.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..b5431e275a15285d6a279a7146e656a7b9fda8ca
--- /dev/null
+++ b/constraintSolver/tests/nestedAnd.cpp
@@ -0,0 +1,28 @@
+
+#include "../../query/queryLanguage/QueryParser.h"
+#include <iostream>
+#include <set>
+#include "../../indexer/DocumentEnding.h"
+#include "../ISRWord.h"
+#include "../ISREndDoc.h"
+#include "../ISRContainer.h"
+#include "../ISRAnd.h"
+#include <vector>
+using namespace std;
+
+int main ( )
+	{
+
+	string RB = "($china or #china) AND ($trump OR #trump ) ";
+	QueryParser RBParser;
+	RBParser.toggleDecorator( );
+	RBParser.parse( RB );
+	ISRContainer container( RBParser.queryTree );
+	container.Solve( );
+
+
+
+
+
+	}
+
diff --git a/devtool-SumSpaceNumbers b/devtool-SumSpaceNumbers
new file mode 100755
index 0000000000000000000000000000000000000000..08bd8715d7987bd136156053fe88189360f7ea0b
Binary files /dev/null and b/devtool-SumSpaceNumbers differ
diff --git a/devtools/SumSpaceNumbers.cpp b/devtools/SumSpaceNumbers.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..8d678bed49623f0283748165b282f32c641d5ca1
--- /dev/null
+++ b/devtools/SumSpaceNumbers.cpp
@@ -0,0 +1,20 @@
+// 123 108 7 16 12 1 192 105 37 6 20 111 45 24 31 77 77 164 6 31 5 36 82 26 22 206 7 1 54 15 172 45 207 52 28 44 2 18 29 79 40 17 24 14 12 118 51 16 12 13 16 16 50 170 73 11 26 2 13 11 123 26 54 15 93 26 43 19 67 2 35 47 23 2 9 118 26 46 3 56 48 47 154 18 44 111 47 28 17 2 30 29 46 79 255 156 63 225 31
+
+#include <iostream>
+#include <sstream>
+
+using namespace std;
+
+int main() {
+    int sum = 0;
+    string input;
+    while(1) {
+        cin >> input;
+        if(input == "q") {
+            break;
+        }
+        sum += stoi(input);
+    }
+    cout << "Sum is " << sum << endl;
+    return 0;
+}
\ No newline at end of file
diff --git a/indexer/Indexer.cpp b/indexer/Indexer.cpp
index 59714ee72184f48408008c7a8a3b7d043f64620e..08fc0d58dd32465df39d76229faa4bd3855c6960 100755
--- a/indexer/Indexer.cpp
+++ b/indexer/Indexer.cpp
@@ -130,14 +130,6 @@ void Indexer::save()
 			}
 			chunkDictionary[ word.first ].frequency++;
 			numIndexed++;
-			if ( numIndexed == IndexerConstants::saveEveryXEntries )
-				{
-				SeekEntry entry = SeekEntry( );
-				entry.offset = seekOffset;
-				entry.realLocation = location;
-                seekDictionary[ word.first ].push_back( entry );
-				numIndexed = 0;
-				}
 			if ( firstPost )
 				{
 				string locationSpace = to_string( location ) + " ";
@@ -152,7 +144,15 @@ void Indexer::save()
 				write( file, deltaSpace.c_str( ), strlen( deltaSpace.c_str( )));
 				seekOffset += strlen( deltaSpace.c_str( ));
 				}
-			lastOne = location;
+			if ( numIndexed == IndexerConstants::saveEveryXEntries )
+			    {
+				SeekEntry entry = SeekEntry( );
+				entry.offset = seekOffset;
+				entry.realLocation = location;
+				seekDictionary[ word.first ].push_back( entry );
+				numIndexed = 0;
+			    }
+				lastOne = location;
 			}
 		chunkDictionary[ word.first ].lastLocation = lastOne;
 		write( file, "\n", 1 );
diff --git a/indexer/IndexerConstants.h b/indexer/IndexerConstants.h
index 46cf50fb1fd713d5b3400ac4a3b8b1c25a787f2e..9366752dc1fca993e002fe6c792f4f70596f0642 100644
--- a/indexer/IndexerConstants.h
+++ b/indexer/IndexerConstants.h
@@ -1,8 +1,8 @@
 #pragma once
 
 namespace IndexerConstants {
-//    const string pathToIndex = "/buildIndex/";
-	const string pathToIndex = "/constraintSolver/index-test-files/twitter/";
+	 const string pathToIndex = "/buildIndex/";
+	//const string pathToIndex = "/constraintSolver/index-test-files/twitter/";
 
 	const size_t maxWordSize = 30;
 
diff --git a/search-engine b/search-engine
index e056486846c16f32af3b6cad8f8146628db5bbea..392ca7aa0f5a404eb47b2f44f57213188b1d1f47 100755
Binary files a/search-engine and b/search-engine differ