[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
Re: [jetty-dev] 8.1.2.v20120308 - rare mixup of requests
|
Thomas Becker skrev:
Hi Per,
Hi
I'm still surprised to see such a severe issue in jetty and that we've
not heard from that before.
Yes me too!
Does any of your servlets/filters manipulate the request objects?
Well its 100% Solr web-app running on top of Jetty, so its is not "my"
servlets/filters, its Solrs. I am using a "somewhere before 4.0" (4.0
was just released a few days ago, and I am in the process of merging in
Apache Solr changes to my version of Solr, so that I will soon be
working on a pure Apache Solr 4.0 plus my changes) version of Solr plus
some changes made by myself that hasnt been committed to Apache Solr
(yet). But to answer your question: No, not as far as I can see.
My Solr web-app includes the attached web.xml. The URLs in question does
not match any of the special-servlet-patterns in the web.xml så they go
to the filter named SolrRequestFilter which is implemented in class
org.apache.solr.servlet.SolrDispatchFilter - find attached the version
of SolrDispatchFilter I am using. The interresting part of it is the
doFilter method. It is as provided by Apache except that I have added
some "debugging"-System.out lines.
Could you please describe in detail how your requests look like
including all HTTP Headers and response body?
Could you please also described where exactly you see the mixed up
content of the request object, how you read that and where?
First of all, I dont beleve "response body" is important, so I will not
mention anything about that. Please let me know if you really disagree
to that?!?
My modified SolrDispatchFilter collects some information in a
StringBuilder "niceInfo" and eventually writes it to System.out. The
important stuff in this StringBuilder is added only a few lines into the
doFilter method, where I write out all parameters of the
HttpServletRequest received from Jetty - besides the parameters there is
no body in the request. This addition of all params to "niceInfo" is
only done if param "SubRequestGUID" exists (which it does for the
requests Im interrested in) and if param "wt" does not exist (which is
only the case for request where I experience that problem in question
(long story but that is the way it is)). This logging is used to show
that the request handed over from Jetty to the filter is "bad" in the
rare cases where I experience the problem. BTW, "SubRequestGUID" is not
a request-parameter usually sent by Solr - its a parameter I have added
in Solr-code to the request in order to be able to more easily recognize
"the same request" on the multiple places of collecting request-data.
Im also added some "debugging"-System.out lines to StreamEndPoint - find
attached the version of StreamEndPoint.java I have used. You will
recognize it as a copy of 8.1.2 StreamEndPoint plus som logging added in
fill-method. This StreamEndPoint.java is compiled add then added to
jetty-io-8.1.2.v20120308.jar (replacing the StreamEndPoint.class it is
born with).
I have added a lot more logging other places to be pretty sure that the
mixup of data is going on in Jetty. Find attached RuinedRequestFlow.png,
which I used to explain the problem to my POs and the rest of my team.
All the purple dots is where request data has been collected in order to
see where it goes wrong, and it seems to be between dot 4 and 1 on the
right side of the chart - that is in the Jetty layer.
I have compiled and attached a file DataAndAnalysisRun30_anonymized.rtf
with selected loggings. The first logging is just my confirmation that
the request sent from the client-side is correct - this logging is
catched at the point of the right dot 2 on RuinedRequestFlow.png. The
rest is loggings from StreamEndPoint and SolrDispatchFilter on the
server-side of the request. In the bottom of
DataAndAnalysisRun30_anonymized.rtf you find a few conclusions/thoughts.
I believe this is pretty heavy evidence, but please tell me if you do
not agree, and that there is a possible explanation that this is not at
bug in Jetty. Please note that all machines in my multi-machine setup
are running as Xen VMs on top of XenServer on top of a single physical
machine, a 40GB RAM and 8 CPU-core machine, but it has also been seen on
other hardware.
Do the mixed up requests all belong to the same session?
Hmmm, Im not sure what you mean by session. HTTP is state- and
session-less. Which kind of "sessions" do you have in mind?
Any way you can zip your application + jetty setup and attach it to a
bugzilla? Then describe what kind of requests we should generate to
reproduce the issue. If you don't want to share it to the public,
please create the bugzilla anyhow and send me the zip personally. We
really need to have a test case to investigate if this a jetty issue
or not.
You should know that I work as a consultant for a company that do very
very very secret stuff. I am not allowed to reveal anything about what
we do. I cannot send you any of our code without having to anonymize it
completely - and that is practically impossible. I cant share more with
you, than I can share with the public - and that is not a lot. But as
you will also see from RuinedRequestFlow.png the request that goes wrong
is actually sent between two instances of Solr running on top of Jetty,
and you can download Solr source code if you want. But it is "our
application" that feeds data into the Solr-cluster and it is "our
application" that does the search-requests into the Solr-cluster (our
application is so to say the "laptop" on RuinedRequestFlow.png). Due the
the high confidentially-level in the company I had to modify the
loggings in DataAndAnalysisRun30_anonymized.rtf a little bit. I had to
replace all occurences of <3-char-string>_<another-3-char-string> with
xxx_yyy, because the <3-char-string>_<another-3-char-string> might
reveal a little fraction about what my company is doing. Besides that
the loggings are completely untouched.
The "test" which reveals this problem is a
big-distributed-system-high-load-test with (a.o.) focus on data
integrety. Basically it loads 2 mio documents (that we know the exact
content of) into the Solr cluster and afterwards it makes queries into
Solr for those documents - traversing all documents and making sure that
what is in and can be fetched from Solr is the exact 2 mio documents
feed into it. After solving a few bugs in Solr this is actually now the
case - this (part of the) test is now green. EXCEPT for once in a while
where the test seems not to be green - and that is because Solr is not
responding correctly to one (or a few) of the many request made during
this traversing - and that is because of the bug in question.
It is a good as impossible for me to ever give you "this test" and all
the code, automated distributed setting up and configuring of involved
software (Solr, ZooKeeper, "our application" etc.). If the two of us do
not get anywhere with other attempts, I will spend time (if my boss
allows) trying to create a smaller "application/setup" which recreates
the problem and which I can send to you. But it seems like a very big
task to me, because I really do not know what I can cut and what is
important for the bug to occur. Therefore I, again, encourage you to
consider my suggested approach, where you/we come up with some logging
(or other stuff like thread sync'ing etc.) to add to the code (Jetty -
or Solr or anything else for that matter), I run another round of my
test and share logs and observations with you. This way we hopefully can
get closer to what happens, and maybe later create a smaller
application/setup where the problem can be reproduced for shorter
turnaround on suggested solutions.
Well thats it for now. A large amount of information to look into, but I
have tried to cut it down to the important stuff - you dont want the
GB's of logging etc. I have been traversing :-)
Cheers,
Thomas
Cheers, Per Steffensen
On 10/25/12 1:18 PM, Per Steffensen wrote:
Thomas Becker skrev:
Hi Per,
that's as expected and good. So we know that it's not the layer
communicating to the network causing the issue. I knew that you use
a blocking connector as you told me in the first mail when you said,
that you added debug information to:
org.eclipse.jetty.io.bio.StreamEndPoint which is only used by the
blocking connector.
Later today I'll have a closer look at this and maybe try to write
up some test cases that reproduce this.
Please also consider comming up with some logging I can add before
reproducing the problem. Then I can send you this logging for further
analysis.
Cheers,
Thomas
_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-dev
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5"
metadata-complete="true"
>
<!-- Uncomment if you are trying to use a Resin version before 3.0.19.
Their XML implementation isn't entirely compatible with Xerces.
Below are the implementations to use with Sun's JVM.
<system-property javax.xml.xpath.XPathFactory=
"com.sun.org.apache.xpath.internal.jaxp.XPathFactoryImpl"/>
<system-property javax.xml.parsers.DocumentBuilderFactory=
"com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl"/>
<system-property javax.xml.parsers.SAXParserFactory=
"com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl"/>
-->
<!-- People who want to hardcode their "Solr Home" directly into the
WAR File can set the JNDI property here...
-->
<!--
<env-entry>
<env-entry-name>solr/home</env-entry-name>
<env-entry-value>/put/your/solr/home/here</env-entry-value>
<env-entry-type>java.lang.String</env-entry-type>
</env-entry>
-->
<!-- Any path (name) registered in solrconfig.xml will be sent to that filter -->
<filter>
<filter-name>SolrRequestFilter</filter-name>
<filter-class>org.apache.solr.servlet.SolrDispatchFilter</filter-class>
<!-- If you are wiring Solr into a larger web application which controls
the web context root, you will probably want to mount Solr under
a path prefix (app.war with /app/solr mounted into it, for example).
You will need to put this prefix in front of the SolrDispatchFilter
url-pattern mapping too (/solr/*), and also on any paths for
legacy Solr servlet mappings you may be using.
For the Admin UI to work properly in a path-prefixed configuration,
the admin folder containing the resources needs to be under the app context root
named to match the path-prefix. For example:
.war
xxx
js
main.js
-->
<!--
<init-param>
<param-name>path-prefix</param-name>
<param-value>/xxx</param-value>
</init-param>
-->
</filter>
<filter-mapping>
<!--
NOTE: When using multicore, /admin JSP URLs with a core specified
such as /solr/coreName/admin/stats.jsp get forwarded by a
RequestDispatcher to /solr/admin/stats.jsp with the specified core
put into request scope keyed as "org.apache.solr.SolrCore".
It is unnecessary, and potentially problematic, to have the SolrDispatchFilter
configured to also filter on forwards. Do not configure
this dispatcher as <dispatcher>FORWARD</dispatcher>.
-->
<filter-name>SolrRequestFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<servlet>
<servlet-name>Zookeeper</servlet-name>
<servlet-class>org.apache.solr.servlet.ZookeeperInfoServlet</servlet-class>
</servlet>
<servlet>
<servlet-name>LoadAdminUI</servlet-name>
<servlet-class>org.apache.solr.servlet.LoadAdminUiServlet</servlet-class>
</servlet>
<!-- Remove in Solr 5.0 -->
<!-- This sends SC_MOVED_PERMANENTLY (301) for resources that changed in 4.0 -->
<servlet>
<servlet-name>RedirectOldAdminUI</servlet-name>
<servlet-class>org.apache.solr.servlet.RedirectServlet</servlet-class>
<init-param>
<param-name>destination</param-name>
<param-value>${context}/#/</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>RedirectOldZookeeper</servlet-name>
<servlet-class>org.apache.solr.servlet.RedirectServlet</servlet-class>
<init-param>
<param-name>destination</param-name>
<param-value>${context}/zookeeper</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>RedirectLogging</servlet-name>
<servlet-class>org.apache.solr.servlet.RedirectServlet</servlet-class>
<init-param>
<param-name>destination</param-name>
<param-value>${context}/#/~logging</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>RedirectOldAdminUI</servlet-name>
<url-pattern>/admin/</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>RedirectOldAdminUI</servlet-name>
<url-pattern>/admin</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>RedirectOldZookeeper</servlet-name>
<url-pattern>/zookeeper.jsp</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>RedirectLogging</servlet-name>
<url-pattern>/logging</url-pattern>
</servlet-mapping>
<!-- Servlet Mapping -->
<servlet-mapping>
<servlet-name>Zookeeper</servlet-name>
<url-pattern>/zookeeper</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>LoadAdminUI</servlet-name>
<url-pattern>/admin.html</url-pattern>
</servlet-mapping>
<mime-mapping>
<extension>.xsl</extension>
<!-- per http://www.w3.org/TR/2006/PR-xslt20-20061121/ -->
<mime-type>application/xslt+xml</mime-type>
</mime-mapping>
<welcome-file-list>
<welcome-file>admin.html</welcome-file>
</welcome-file-list>
</web-app>
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.solr.servlet;
import java.io.IOException;
import java.io.Writer;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.io.OutputStreamWriter;
import java.io.ByteArrayInputStream;
import java.nio.charset.Charset;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.WeakHashMap;
import org.apache.solr.handler.ContentStreamHandlerBase;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.xml.sax.InputSource;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.solr.common.SolrException;
import org.apache.solr.common.util.NamedList;
import org.apache.solr.common.util.SimpleOrderedMap;
import org.apache.solr.common.cloud.CloudState;
import org.apache.solr.common.cloud.Slice;
import org.apache.solr.common.cloud.ZkNodeProps;
import org.apache.solr.common.cloud.ZkStateReader;
import org.apache.solr.common.params.CommonParams;
import org.apache.solr.common.partialerrors.PartialErrors;
import org.apache.solr.util.FastWriter;
import org.apache.solr.common.util.ContentStreamBase;
import org.apache.solr.core.*;
import org.apache.solr.request.*;
import org.apache.solr.response.BinaryQueryResponseWriter;
import org.apache.solr.response.QueryResponseWriter;
import org.apache.solr.response.SolrQueryResponse;
import org.apache.solr.servlet.cache.HttpCacheHeaderUtil;
import org.apache.solr.servlet.cache.Method;
/**
* This filter looks at the incoming URL maps them to handlers defined in solrconfig.xml
*
* @since solr 1.2
*/
public class SolrDispatchFilter implements Filter
{
final Logger log = LoggerFactory.getLogger(SolrDispatchFilter.class);
protected volatile CoreContainer cores;
protected String pathPrefix = null; // strip this from the beginning of a path
protected String abortErrorMessage = null;
protected final Map<SolrConfig, SolrRequestParsers> parsers = new WeakHashMap<SolrConfig, SolrRequestParsers>();
protected final SolrRequestParsers adminRequestParser;
private static final Charset UTF8 = Charset.forName("UTF-8");
public SolrDispatchFilter() {
try {
adminRequestParser = new SolrRequestParsers(new Config(null,"solr",new InputSource(new ByteArrayInputStream("<root/>".getBytes("UTF-8"))),"") );
} catch (Exception e) {
//unlikely
throw new SolrException(SolrException.ErrorCode.SERVER_ERROR,e);
}
}
public void init(FilterConfig config) throws ServletException
{
log.info("SolrDispatchFilter.init()");
CoreContainer.Initializer init = createInitializer();
try {
// web.xml configuration
this.pathPrefix = config.getInitParameter( "path-prefix" );
this.cores = init.initialize();
log.info("user.dir=" + System.getProperty("user.dir"));
}
catch( Throwable t ) {
// catch this so our filter still works
log.error( "Could not start Solr. Check solr/home property and the logs");
SolrCore.log( t );
}
log.info("SolrDispatchFilter.init() done");
}
public CoreContainer getCores() {
return cores;
}
/** Method to override to change how CoreContainer initialization is performed. */
protected CoreContainer.Initializer createInitializer() {
return new CoreContainer.Initializer();
}
public void destroy() {
if (cores != null) {
cores.shutdown();
cores = null;
}
}
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
if( abortErrorMessage != null ) {
((HttpServletResponse)response).sendError( 500, abortErrorMessage );
return;
}
if (this.cores == null) {
((HttpServletResponse)response).sendError( 403, "Server is shutting down" );
return;
}
CoreContainer cores = this.cores;
SolrCore core = null;
SolrQueryRequest solrReq = null;
if( request instanceof HttpServletRequest) {
HttpServletRequest req = (HttpServletRequest)request;
HttpServletResponse resp = (HttpServletResponse)response;
String subReqGUID = req.getParameter("SubRequestGUID");
StringBuilder niceInfo = null;
if (subReqGUID != null) {
niceInfo = new StringBuilder("Nice info received-request");
SolrCore.NICE_INFO_THREAD_LOCAL.set(niceInfo);
niceInfo.append(" ,servletreq.SubRequestGUID == ").append(subReqGUID);
String wtServletReq = req.getParameter(CommonParams.WT);
niceInfo.append(" ,servletreq.WT == ").append(wtServletReq);
if (wtServletReq == null) {
for (Map.Entry<String, String[]> paramEntry : req.getParameterMap().entrySet()) {
niceInfo.append(" ,").append(paramEntry.getKey()).append(" == ");
String[] values = paramEntry.getValue();
for (int i = 0; i < values.length; i++) {
if (i > 0) niceInfo.append("#");
niceInfo.append(values[i]);
}
}
}
}
SolrRequestHandler handler = null;
String corename = "";
try {
// put the core container in request attribute
req.setAttribute("org.apache.solr.CoreContainer", cores);
String path = req.getServletPath();
if( req.getPathInfo() != null ) {
// this lets you handle /update/commit when /update is a servlet
path += req.getPathInfo();
}
if( pathPrefix != null && path.startsWith( pathPrefix ) ) {
path = path.substring( pathPrefix.length() );
}
// check for management path
String alternate = cores.getManagementPath();
if (alternate != null && path.startsWith(alternate)) {
path = path.substring(0, alternate.length());
}
// unused feature ?
int idx = path.indexOf( ':' );
if( idx > 0 ) {
// save the portion after the ':' for a 'handler' path parameter
path = path.substring( 0, idx );
}
// Check for the core admin page
if( path.equals( cores.getAdminPath() ) ) {
handler = cores.getMultiCoreHandler();
solrReq = adminRequestParser.parse(null,path, req);
handleAdminRequest(req, response, handler, solrReq);
return;
}
else {
//otherwise, we should find a core from the path
idx = path.indexOf( "/", 1 );
if( idx > 1 ) {
// try to get the corename as a request parameter first
corename = path.substring( 1, idx );
core = cores.getCore(corename);
if (core != null) {
path = path.substring( idx );
}
}
if (core == null) {
if (!cores.isZooKeeperAware() ) {
core = cores.getCore("");
}
}
}
if (core == null && cores.isZooKeeperAware()) {
// we couldn't find the core - lets make sure a collection was not specified instead
core = getCoreByCollection(cores, corename, path);
if (core != null) {
// we found a core, update the path
path = path.substring( idx );
} else {
// try the default core
core = cores.getCore("");
}
// TODO: if we couldn't find it locally, look on other nodes
}
// With a valid core...
if( core != null ) {
final SolrConfig config = core.getSolrConfig();
// get or create/cache the parser for the core
SolrRequestParsers parser = null;
parser = parsers.get(config);
if( parser == null ) {
parser = new SolrRequestParsers(config);
parsers.put(config, parser );
}
// Determine the handler from the url path if not set
// (we might already have selected the cores handler)
if( handler == null && path.length() > 1 ) { // don't match "" or "/" as valid path
handler = core.getRequestHandler( path );
// no handler yet but allowed to handle select; let's check
if( handler == null && parser.isHandleSelect() ) {
if( "/select".equals( path ) || "/select/".equals( path ) ) {
solrReq = parser.parse( core, path, req );
String qt = solrReq.getParams().get( CommonParams.QT );
handler = core.getRequestHandler( qt );
if( handler == null ) {
throw new SolrException( SolrException.ErrorCode.BAD_REQUEST, "unknown handler: "+qt);
}
if( qt != null && qt.startsWith("/") && (handler instanceof ContentStreamHandlerBase)) {
//For security reasons it's a bad idea to allow a leading '/', ex: /select?qt=/update see SOLR-3161
//There was no restriction from Solr 1.4 thru 3.5 and it's not supported for update handlers.
throw new SolrException( SolrException.ErrorCode.BAD_REQUEST, "Invalid Request Handler ('qt'). Do not use /select to access: "+qt);
}
}
}
}
// With a valid handler and a valid core...
if( handler != null ) {
// if not a /select, create the request
if( solrReq == null ) {
solrReq = parser.parse( core, path, req );
}
final Method reqMethod = Method.getMethod(req.getMethod());
HttpCacheHeaderUtil.setCacheControlHeader(config, resp, reqMethod);
// unless we have been explicitly told not to, do cache validation
// if we fail cache validation, execute the query
if (config.getHttpCachingConfig().isNever304() ||
!HttpCacheHeaderUtil.doCacheHeaderValidation(solrReq, req, reqMethod, resp)) {
SolrQueryResponse solrRsp = new SolrQueryResponse();
/* even for HEAD requests, we need to execute the handler to
* ensure we don't get an error (and to make sure the correct
* QueryResponseWriter is selected and we get the correct
* Content-Type)
*/
SolrRequestInfo.setRequestInfo(new SolrRequestInfo(solrReq, solrRsp));
this.execute( req, handler, solrReq, solrRsp );
HttpCacheHeaderUtil.checkHttpCachingVeto(solrRsp, resp, reqMethod);
// add info to http headers
//TODO: See SOLR-232 and SOLR-267.
/*try {
NamedList solrRspHeader = solrRsp.getResponseHeader();
for (int i=0; i<solrRspHeader.size(); i++) {
((javax.servlet.http.HttpServletResponse) response).addHeader(("Solr-" + solrRspHeader.getName(i)), String.valueOf(solrRspHeader.getVal(i)));
}
} catch (ClassCastException cce) {
log.log(Level.WARNING, "exception adding response header log information", cce);
}*/
QueryResponseWriter responseWriter = core.getQueryResponseWriter(solrReq);
writeResponse(solrRsp, response, responseWriter, solrReq, reqMethod);
}
return; // we are done with a valid handler
}
}
log.debug("no handler or core retrieved for " + path + ", follow through...");
}
catch (Throwable ex) {
sendError( (HttpServletResponse)response, ex );
return;
}
finally {
try {
if( solrReq != null ) {
solrReq.close();
}
if (core != null) {
core.close();
}
SolrRequestInfo.clearRequestInfo();
if (subReqGUID != null) {
niceInfo.append(" ,cleared-req-info");
}
} finally {
if (subReqGUID != null) {
log.warn(niceInfo.toString());
}
}
}
}
// Otherwise let the webapp handle the request
chain.doFilter(request, response);
}
private SolrCore getCoreByCollection(CoreContainer cores, String corename, String path) {
String collection = corename;
ZkStateReader zkStateReader = cores.getZkController().getZkStateReader();
CloudState cloudState = zkStateReader.getCloudState();
Map<String,Slice> slices = cloudState.getSlices(collection);
if (slices == null) {
return null;
}
// look for a core on this node
Set<Entry<String,Slice>> entries = slices.entrySet();
SolrCore core = null;
done:
for (Entry<String,Slice> entry : entries) {
// first see if we have the leader
ZkNodeProps leaderProps = cloudState.getLeader(collection, entry.getKey());
if (leaderProps != null) {
core = checkProps(cores, path, leaderProps);
}
if (core != null) {
break done;
}
// check everyone then
Map<String,ZkNodeProps> shards = entry.getValue().getShards();
Set<Entry<String,ZkNodeProps>> shardEntries = shards.entrySet();
for (Entry<String,ZkNodeProps> shardEntry : shardEntries) {
ZkNodeProps zkProps = shardEntry.getValue();
core = checkProps(cores, path, zkProps);
if (core != null) {
break done;
}
}
}
return core;
}
private SolrCore checkProps(CoreContainer cores, String path,
ZkNodeProps zkProps) {
String corename;
SolrCore core = null;
if (cores.getZkController().getNodeName().equals(zkProps.get(ZkStateReader.NODE_NAME_PROP))) {
corename = zkProps.get(ZkStateReader.CORE_NAME_PROP);
core = cores.getCore(corename);
}
return core;
}
private void handleAdminRequest(HttpServletRequest req, ServletResponse response, SolrRequestHandler handler,
SolrQueryRequest solrReq) throws IOException {
SolrQueryResponse solrResp = new SolrQueryResponse();
final NamedList<Object> responseHeader = new SimpleOrderedMap<Object>();
solrResp.add("responseHeader", responseHeader);
NamedList toLog = solrResp.getToLog();
toLog.add("webapp", req.getContextPath());
toLog.add("path", solrReq.getContext().get("path"));
toLog.add("params", "{" + solrReq.getParamString() + "}");
handler.handleRequest(solrReq, solrResp);
SolrCore.setResponseHeaderValues(handler, solrReq, solrResp);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < toLog.size(); i++) {
String name = toLog.getName(i);
Object val = toLog.getVal(i);
sb.append(name).append("=").append(val).append(" ");
}
QueryResponseWriter respWriter = SolrCore.DEFAULT_RESPONSE_WRITERS.get(solrReq.getParams().get(CommonParams.WT));
if (respWriter == null) respWriter = SolrCore.DEFAULT_RESPONSE_WRITERS.get("standard");
writeResponse(solrResp, response, respWriter, solrReq, Method.getMethod(req.getMethod()));
}
private void writeResponse(SolrQueryResponse solrRsp, ServletResponse response,
QueryResponseWriter responseWriter, SolrQueryRequest solrReq, Method reqMethod)
throws IOException {
boolean sendResponse = true;
Exception e;
if ((e = solrRsp.getException()) != null) {
sendResponse = sendError((HttpServletResponse) response, e);
}
if (sendResponse) {
// Now write it out
final String ct = responseWriter.getContentType(solrReq, solrRsp);
// don't call setContentType on null
if (null != ct) response.setContentType(ct);
if (Method.HEAD != reqMethod) {
if (responseWriter instanceof BinaryQueryResponseWriter) {
BinaryQueryResponseWriter binWriter = (BinaryQueryResponseWriter) responseWriter;
binWriter.write(response.getOutputStream(), solrReq, solrRsp);
} else {
String charset = ContentStreamBase.getCharsetFromContentType(ct);
Writer out = (charset == null || charset.equalsIgnoreCase("UTF-8"))
? new OutputStreamWriter(response.getOutputStream(), UTF8)
: new OutputStreamWriter(response.getOutputStream(), charset);
out = new FastWriter(out);
responseWriter.write(out, solrReq, solrRsp);
out.flush();
}
}
}
//else http HEAD request, nothing to write out, waited this long just to get ContentType
}
protected int getErrorInfo(Throwable ex, NamedList info) {
int code=500;
if( ex instanceof SolrException ) {
code = ((SolrException)ex).code();
}
String msg = null;
for (Throwable th = ex; th != null; th = th.getCause()) {
msg = th.getMessage();
if (msg != null) break;
}
if(msg != null) {
info.add("msg", msg);
}
// For any regular code, don't include the stack trace
if( code == 500 || code < 100 ) {
StringWriter sw = new StringWriter();
ex.printStackTrace(new PrintWriter(sw));
SolrException.log(log, null, ex);
info.add("trace", sw.toString());
// non standard codes have undefined results with various servers
if( code < 100 ) {
log.warn( "invalid return code: "+code );
code = 500;
}
}
info.add("code", new Integer(code));
return code;
}
protected void execute( HttpServletRequest req, SolrRequestHandler handler, SolrQueryRequest sreq, SolrQueryResponse rsp) {
// a custom filter could add more stuff to the request before passing it on.
// for example: sreq.getContext().put( "HttpServletRequest", req );
// used for logging query stats in SolrCore.execute()
sreq.getContext().put( "webapp", req.getContextPath() );
sreq.getCore().execute( handler, sreq, rsp );
}
protected boolean sendError(HttpServletResponse response, Throwable ex) throws IOException {
if (ex instanceof PartialErrors) {
((SolrException)ex).encodeTypeInHttpServletResponse(response);
response.setStatus(((SolrException)ex).code(), ex.getMessage());
return true;
} else {
int code=500;
String trace = "";
if( ex instanceof SolrException ) {
((SolrException)ex).encodeTypeInHttpServletResponse(response);
code = ((SolrException)ex).code();
}
String msg = null;
for (Throwable th = ex; th != null; th = th.getCause()) {
msg = th.getMessage();
if (msg != null) break;
}
// For any regular code, don't include the stack trace
if( code == 500 || code < 100 ) {
StringWriter sw = new StringWriter();
ex.printStackTrace(new PrintWriter(sw));
trace = "\n\n"+sw.toString();
SolrException.log(log, null, ex);
// non standard codes have undefined results with various servers
if( code < 100 ) {
log.warn( "invalid return code: "+code );
code = 500;
}
}
response.sendError( code, msg + trace );
return false;
}
}
//---------------------------------------------------------------------
//---------------------------------------------------------------------
/**
* Set the prefix for all paths. This is useful if you want to apply the
* filter to something other then /*, perhaps because you are merging this
* filter into a larger web application.
*
* For example, if web.xml specifies:
*
* <filter-mapping>
* <filter-name>SolrRequestFilter</filter-name>
* <url-pattern>/xxx/*</url-pattern>
* </filter-mapping>
*
* Make sure to set the PathPrefix to "/xxx" either with this function
* or in web.xml.
*
* <init-param>
* <param-name>path-prefix</param-name>
* <param-value>/xxx</param-value>
* </init-param>
*
*/
public void setPathPrefix(String pathPrefix) {
this.pathPrefix = pathPrefix;
}
public String getPathPrefix() {
return pathPrefix;
}
}
package org.eclipse.jetty.io.bio;
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import java.io.*;
import java.net.SocketTimeoutException;
import java.nio.ByteBuffer;
import org.eclipse.jetty.io.Buffer;
import org.eclipse.jetty.io.ByteArrayBuffer;
import org.eclipse.jetty.io.EndPoint;
import org.eclipse.jetty.io.nio.DirectNIOBuffer;
import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.Logger;
public class StreamEndPoint
implements EndPoint
{
private static final Logger LOG = Log.getLogger(StreamEndPoint.class);
public StreamEndPoint(InputStream in, OutputStream out)
{
_in = in;
_out = out;
}
public boolean isBlocking()
{
return true;
}
public boolean blockReadable(long millisecs)
throws IOException
{
return true;
}
public boolean blockWritable(long millisecs)
throws IOException
{
return true;
}
public boolean isOpen()
{
return _in != null;
}
public final boolean isClosed()
{
return !isOpen();
}
public void shutdownOutput()
throws IOException
{
_oshut = true;
if(_ishut && _out != null)
_out.close();
}
public boolean isInputShutdown()
{
return _ishut;
}
public void shutdownInput()
throws IOException
{
_ishut = true;
if(_oshut && _in != null)
_in.close();
}
public boolean isOutputShutdown()
{
return _oshut;
}
public void close()
throws IOException
{
if(_in != null)
_in.close();
_in = null;
if(_out != null)
_out.close();
_out = null;
}
protected void idleExpired()
throws IOException
{
if(_in != null)
_in.close();
}
public int fill(Buffer buffer)
throws IOException
{
if(_ishut)
return -1;
if(_in == null)
return 0;
int space = buffer.space();
if(space <= 0)
if(buffer.hasContent())
return 0;
else
throw new IOException("FULL");
try
{
int filled = buffer.readFrom(_in, space);
if (buffer instanceof DirectNIOBuffer) {
ByteBuffer dublicateBB = ((DirectNIOBuffer)buffer).getByteBuffer().duplicate();
dublicateBB.rewind();
byte[] bb = new byte[dublicateBB.remaining()];
dublicateBB.get(bb);
StringBuffer sb = new StringBuffer("*** Read " + filled + " from DirectNIOBuffer - total read now:\n");
sb.append(new String(bb, 0, buffer.length(), "UTF-8"));
LOG.debug(sb.toString());
} else if (buffer instanceof ByteArrayBuffer) {
byte[] bb = ((ByteArrayBuffer)buffer).array();
StringBuffer sb = new StringBuffer("*** Read " + filled + " form ByteArrayBuffer - total read now:\n");
sb.append(new String(bb, 0, buffer.length(), "UTF-8"));
LOG.debug(sb.toString());
}
if(filled < 0)
shutdownInput();
return filled;
}
catch(SocketTimeoutException e)
{
idleExpired();
}
return -1;
}
public int flush(Buffer buffer)
throws IOException
{
if(_oshut)
return -1;
if(_out == null)
return 0;
int length = buffer.length();
if(length > 0)
buffer.writeTo(_out);
buffer.clear();
return length;
}
public int flush(Buffer header, Buffer buffer, Buffer trailer)
throws IOException
{
int len = 0;
if(header != null)
{
int tw = header.length();
if(tw > 0)
{
int f = flush(header);
len = f;
if(f < tw)
return len;
}
}
if(buffer != null)
{
int tw = buffer.length();
if(tw > 0)
{
int f = flush(buffer);
if(f < 0)
return len <= 0 ? f : len;
len += f;
if(f < tw)
return len;
}
}
if(trailer != null)
{
int tw = trailer.length();
if(tw > 0)
{
int f = flush(trailer);
if(f < 0)
return len <= 0 ? f : len;
len += f;
}
}
return len;
}
public String getLocalAddr()
{
return null;
}
public String getLocalHost()
{
return null;
}
public int getLocalPort()
{
return 0;
}
public String getRemoteAddr()
{
return null;
}
public String getRemoteHost()
{
return null;
}
public int getRemotePort()
{
return 0;
}
public Object getTransport()
{
return null;
}
public InputStream getInputStream()
{
return _in;
}
public void setInputStream(InputStream in)
{
_in = in;
}
public OutputStream getOutputStream()
{
return _out;
}
public void setOutputStream(OutputStream out)
{
_out = out;
}
public void flush()
throws IOException
{
if(_out != null)
_out.flush();
}
public int getMaxIdleTime()
{
return _maxIdleTime;
}
public void setMaxIdleTime(int timeMs)
throws IOException
{
_maxIdleTime = timeMs;
}
InputStream _in;
OutputStream _out;
int _maxIdleTime;
boolean _ishut;
boolean _oshut;
}

{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf360
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\paperw11900\paperh16840\margl1440\margr1440\vieww33100\viewh20040\viewkind0
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\f0\fs24 \cf0 Problematic GUID: e42fcab9-e1f3-4ecc-aba6-21137a3f0176\
\
\fs40 Sent out of Apache HTTP framework on client-side (from solr-logs on machine 3 in my multiple-machine setup)
\fs24 \
FINE: >> "SubRequestGUID=e42fcab9-e1f3-4ecc-aba6-21137a3f0176&df=content&rows=10010&start=0&q=timestamp%3A%5B1330372801000+TO+1330410252000+%5D+AND+timestamp%3A%5B1330369200000+TO+*%5D&distrib=false&collection=xxx_yyy_2012_03%2Cxxx_yyy_2012_02&EDRSolrSearchComponent_DISABLE=true&ids=e4627ecd-c5bc-44d8-b691-1ad2bf1e5ad2%2Cdad279ca-0a01-426e-ab63-0662b0a894f1%2Cxxx_yyy_2012_02_971556025906_971509657562_1572_1%2Ca65585bd-01c1-4c73-9c7d-3a80967fed14%2C028d9eae-e116-4aeb-8506-9b8f1357fb00%2Cab644aae-30ca-46f6-bf6b-c6deb7851dcf%2C7980a181-58cb-4f53-bfdc-86ccddcfc0bd%2Cxxx_yyy_2012_02_971564979146_971563846159_3860_1%2Cef1d7149-fed8-4ec6-9d61-7c57efb72d7c%2Cxxx_yyy_2012_02_971502879730_971503288676_4152_1%2Cbe72d6eb-4fac-45a6-9f9a-bd6fed4c35e1%2Cxxx_yyy_2012_02_971502966188_971504686750_2194_1%2C19b21f2f-fc88-4dd0-b6fd-a120ff008d2d%2Cxxx_yyy_2012_02_971501325815_971567135310_8023_1%2Caa996070-328a-45ff-9c5e-1875c1e42115%2Cxxx_yyy_2012_02_971508027520_971559354369_9158_1%2Cxxx_yyy_2012_02_971557836021_971559428121_781_1%2Cfcd72ed6-b95e-4d79-a8c5-5a6f1abc7caf%2Cd060e80e-686a-48b2-adee-66d5d52ba31a%2Cxxx_yyy_2012_02_971551476494_971558645511_5783_1%2Cxxx_yyy_2012_02_971550920150_971500349829_8961_1%2C8ebe1d4c-3779-4128-aebc-81df81b2b228%2Cb61e5fa1-30c4-40fe-8d5c-3da8dd89bd29%2Cxxx_yyy_2012_02_97148349058_97147261515_7568_1%2Cxxx_yyy_2012_02_97149574263_971509961907_7267_1%2Cxxx_yyy_2012_02_971554854717_971555625104_3523_1%2Cxxx_yyy_2012_02_97144919158_97149151286_7866_1%2Cxxx_yyy_2012_02_971563742135_97144809726_3044_1%2Cxxx_yyy_2012_02_97149998750_971564377581_9013_1%2Cee4d8b2f-1afa-4b2d-8623-a598257c323a%2Cxxx_yyy_2012_02_97145893910_971552811426_5329_1%2Cxxx_yyy_2012_02_971556780419_971565623600_5244_1%2Cf5e8c84d-4dba-445d-a4b1-da62f1914a6e%2Cxxx_yyy_2012_02_971557064072_971568944116_9460_1%2Cxxx_yyy_2012_02_97141652555_971567877256_4590_1%2Cxxx_yyy_2012_02_97144323510_97147519544_668_1%2Cd49cb9d2-ae69-433a-a4c4-f8dc7f37b5ac%2C0093e2b2-47ba-4353-83d4-998d2f1cc1e4%2Cxxx_yyy_2012_02_971564735642_971551517642_6748_1%2Caaa64052-fcc4-44dc-b471-4e3fa465e188%2C9a0480be-b4ca-4a01-9aa9-999a673be95d%2Cxxx_yyy_2012_02_971564569035_971504334929_3398_1%2C95966a05-5de8-48fd-9375-b1623832c660%2Cxxx_yyy_2012_02_971559602446_97147139341_5230_1%2C59e74a71-f738-42b5-987b-d15a8ffade1f%2Cxxx_yyy_2012_02_971506059593_97149653060_6631_1%2C587f58be-f2c0-417d-b5da-13f7e962a58d%2Cf08eb72d-0df4-41b1-8d06-340829d8ca96%2C1a875d77-13ec-4de5-85bb-312b14abd09a%2Cdb9f4305-6dbb-4b70-87db-ba8e54c695ae%2Cea90487e-5df0-42ac-aa0d-ef1120916d97%2Ccabc51da-abbc-469d-b5b3-42d83c9aceee%2Cxxx_yyy_2012_02_97149467066_971506255685_8199_1%2Cxxx_yyy_2012_02_97140231049_971560837242_1485_1%2Cdaac4f60-8266-41a6-b045-67df75d649e2%2C8291f37a-0f3a-475f-8fea-6b745f770b99%2Cxxx_yyy_2012_02_971501255225_971550872692_9620_1%2Cxxx_yyy_2012_02_971507959531_97142732214_5988_1%2Cc0b7b5e4-bc2b-4839-8c6a-b45f62440da3%2Cxxx_yyy_2012_02_971568258671_97145631080_6592_1%2Cd7df8995-bd4a-46ea-bc1e-55ccf1590733%2C689a4878-cbc8-4c11-b54d-9be03ba50075%2Cxxx_yyy_2012_02_97149451483_971550526915_402_1%2C1c002780-1ddd-49b0-ba2e-4f4e43a52582%2Ca06ae937-8520-45d8-a66c-93b1911120a6%2Cxxx_yyy_2012_02_971567458567_971557168584_5137_1%2Cxxx_yyy_2012_02_971504957677_97149946040_5580_1%2Cxxx_yyy_2012_02_971500819623_971552457652_242_1%2C57b7f8e3-3130-4a8c-84a4-c86585cfcc55%2Cxxx_yyy_2012_02_971568609410_97140192617_4872_1%2Cf51dc95b-fc62-41b4-82c9-dbb5aa3054a0%2C1910afef-80a8-42b0-a902-bd3e99af27e5%2C566df0a9-7ec7-4939-8a6e-4870916cd1f1%2C70c20bf6-26a8-4316-9a40-ecd5f3218a76%2Cfbccfead-4adf-4925-adbb-fc26c907acb0%2Cdc8d9a26-325f-47ef-980c-18e563c3abb3%2Cxxx_yyy_2012_02_971551441540_97149695223_690_1%2Cxxx_yyy_2012_02_971555799132_97146392889_5111_1%2Cxxx_yyy_2012_02_971507989393_971557524496_249_1%2Cxxx_yyy_2012_02_971507687053_971509096950_5020_1%2Cc67619ec-0665-4f4c-ba20-21173923a22a%2Cxxx_yyy_2012_02_97147404855_971568319568_709_1%2C083ba072-7ad0-4b82-a9c8-2f0744e37c96%2Cxxx_yyy_2012_02_971559747993_971551775138_7706_1%2C6231af00-a4a7-4837-ba66-ae23ad12352b%2Cxxx_yyy_2012_02_971561986379_971551946361_3509_1%2Cxxx_yyy_2012_02_971559662094_97146025901_3739_1%2Cxxx_yyy_2012_02_971506922371_971569609885_9494_1%2C30c54cd1-f60e-470e-9b08-361355763fa7%2Cxxx_yyy_2012_02_97141639156_971508715703_8262_1%2Cxxx_yyy_2012_02_971556824655_971502556595_673_1%2Cxxx_yyy_2012_02_971553521942_97143474825_6534_1%2Cdce52595-6baf-4a5d-a11c-817c030ca94b%2C92d27c48-40fb-4c01-ac68-4636ec459df0%2Cff5e136d-27a9-4973-959c-03b2d848cb26%2Cxxx_yyy_2012_02_971504326455_971505681441_6875_1%2Ce7b2cbe2-7020-4564-ab0e-2e5f2f5ed300%2C76da9728-e8b6-49f8-80fd-a3a9564aed30%2C901f19b9-7243-415b-9bfd-ad9d9bc982d8%2Cxxx_yyy_2012_02_97141039168_971509347329_4877_1%2C5bcbc58c-c05d-420c-9a1a-a35d4a13f208%2C5742dc6c-391c-49dd-9237-53daeeb9f17a%2C2ce00052-a469-40fd-a56e-329d2d6805ce%2C8f0bb56d-a008-4f1d-ac15-bd1773a2eac5%2C5e92d5b4-fe94-4383-8f52-4530799c533c%2Cxxx_yyy_2012_02_97146274636_971567944398_2366_1%2C106856ca-3658-4eb5-ba04-4e45b012e374%2Cd1194a87-156e-41b3-820f-7c9dec7aed58%2C2cfe92ae-7c44-479b-a207-7479dcad53d7%2C2055f1c7-7c30-483b-bff3-9fd26a390e09%2Cxxx_yyy_2012_02_4520886023_971501356998_561_1%2C815a0eae-fac3-4065-9bca-52169fc30a14%2Cxxx_yyy_2012_02_971507759584_971503384342_3658_1%2Cxxx_yyy_2012_02_971501842104_97145307039_9656_1%2Cxxx_yyy_2012_02_971558320893_971509890998_4939_1%2Cxxx_yyy_2012_02_971506005968_971506588937_7504_1%2C979e7a91-959c-4f0b-95a0-3b054f387608%2Cxxx_yyy_2012_02_971509552731_97146770822_317_1%2Cxxx_yyy_2012_02_971503274845_971550250568_5593_1%2C358cb74c-c375-43a1-a06e-05d7738f7792%2Cxxx_yyy_2012_02_97143686827_97141458309_9072_1%2C342fd7ce-58be-41a2-a9a2-0b2275bde319%2C63b8db80-2325-4847-a06d-925c6561a8a2%2Cxxx_yyy_2012_02_97141732066_971501140388_6541_1%2Ca569a168-adbb-4344-a222-8546aca64c6d%2Cxxx_yyy_2012_02_4555112417_971556701765_7275_1%2Cxxx_yyy_2012_02_97141511933_971554059912_8187_1%2C262d5b42-ce5b-421e-bb62-4129877ef942%2C32c65555-f186-44cd-9b17-756af9383311%2Cxxx_yyy_2012_02_971566203967_97141720114_7377_1%2Cde34b718-259a-428b-980e-6d7a741faac3%2Cxxx_yyy_2012_02_971568422361_971504996774_1986_1%2C516e7df3-581c-47ca-8747-a114d808ae87%2Cxxx_yyy_2012_02_971550052469_971558377392_4028_1%2Cba077555-c79c-4a3c-9606-ed10e3a5c1fd%2Cxxx_yyy_2012_02_971501344536_97149114453_9153_1%2Cc4506d96-2a29-475f-8fa5-29f1d302b23c%2Cxxx_yyy_2012_02_97144662763_971506388727_5622_1%2Cc73fecb2-55f0-4839-9468-da2d1c047049%2Cxxx_yyy_2012_02_971507432980_971502919312_7569_1%2C2364f1dd-5556-43b6-9d0f-991cbbfa5dbb%2Cxxx_yyy_2012_02_97145415010_971568327166_2762_1%2C37479838-3e7b-4a57-80f3-ae2b001836e4%2Cxxx_yyy_2012_02_97140488387_971504977946_6377_1%2Cxxx_yyy_2012_02_4544165601_971566593454_5560_1%2Cxxx_yyy_2012_02_971509311734_971500141795_4610_1%2C6a2a2519-b0d6-4ec5-884b-b87885e8e446%2C2624c499-a372-4ebc-b56e-8c12012a035c%2C7175e9de-df7b-42ed-96ed-34c0d82b6968%2Cxxx_yyy_2012_02_971561018163_971561586011_4083_1%2Cxxx_yyy_2012_02_971556557552_971550540899_5323_1%2C95ee1a62-8737-42fd-9e06-8a333d939799%2C58c1192d-06f4-4235-a0d5-e7ac007178a8%2C422264a4-439e-4077-afce-16a92aaba112%2Cxxx_yyy_2012_02_97148442959_4550278162_9566_1%2Cxxx_yyy_2012_02_971567421124_971560657062_5086_1%2C80b8faf8-36f8-425a-8a77-8c6d9d617afa%2Cb8dda84c-7f05-49dd-995a-34f0c796632c%2Cxxx_yyy_2012_02_971560045996_97147078651_5155_1%2C8b543786-69fa-467f-88ae-c9a786300128%2Ce175d23d-a7e6-4e72-a658-f07178600c46%2C1b17e2e2-82ba-431f-aa9d-08e5df5e5571%2C1fc4e419-c7c9-4008-909f-f4ab210cdc58%2Cxxx_yyy_2012_02_971553233987_971567751556_8351_1%2Cxxx_yyy_2012_02_97143805271_971556330581_5401_1%2Cxxx_yyy_2012_02_97147443344_971557630190_7002_1%2C0cd5ea72-7d3c-4484-ad7b-03f826b505d6%2C738a3593-4c9d-40a1-b3c0-0cdea5b85e16%2Caab87edc-03d6-4576-a367-cca6a12037e4%2Cxxx_yyy_2012_02_971557350251_97141729585_3161_1%2Cb78b11d5-12fa-4e70-aec2-9dea72c8093e%2Cxxx_yyy_2012_02_971502144887_97147870612_9973_1%2Cxxx_yyy_2012_02_971559546367_97147586005_4438_1%2Ce984e00a-d9b3-4fcf-9a23-b514d7903b21%2C125f40cf-d693-49aa-b8e7-208ee901509d%2Cxxx_yyy_2012_02_971559588388_971502922116_9844_1%2Cxxx_yyy_2012_02_971557367913_971559755791_9160_1%2Cc30bd901-ae2e-4752-9f9e-6b6fd8423730%2C9012b41e-baaa-42ad-ac4a-c7b36aaa5773%2C7fdbd3c8-eadd-4311-a06a-a5f3e19a82d5%2Cxxx_yyy_2012_02_97149820983_971509096464_5322_1%2Cxxx_yyy_2012_02_971507811433_971559006364_2516_1%2Cxxx_yyy_2012_02_971565731598_971504119956_1921_1%2Ce01814b2-a170-43dc-91ab-e52592b7152b%2Cxxx_yyy_2012_02_971552835555_971569223490_464_1%2C06192fa6-60fa-4dfe-9ac3-1b272dc48c94%2Cxxx_yyy_2012_02_97141308310_971555535855_9337_1%2C94a18ae9-1538-4fe0-bf9b-73eee25fb830%2Ce64979da-40ad-4238-b145-98efe0a09dc4%2Cbddfdad9-50d5-4967-82b9-c80d525272d1%2Cxxx_yyy_2012_02_971509923071_4538327708_2781_1%2C74a4e449-aa92-4a99-9e6a-7d394f624b70%2Cxxx_yyy_2012_02_4532435408_971503736441_8729_1%2C205f2aed-8135-48d0-9576-3b58d7988b19%2C95d43d24-5483-40c9-9fc6-bbf6597c60da%2Cxxx_yyy_2012_02_971509019211_971555698403_6879_1%2Cxxx_yyy_2012_02_971567112075_971509943560_1597_1%2Cb52fc6a6-be95-4c21-966e-619b4e9066af%2C9da04f2f-6d7d-41b7-b99c-f4b1b071d7a6%2C54025b5e-edfd-49f3-9296-4766b26452fe%2Cced90acf-dea3-4457-b4c9-c50dc4ff1efd%2Cdc2f8e3d-13aa-4a37-8e5e-2ab1a55b13a2%2Cxxx_yyy_2012_02_971505348915_971503801523_9665_1%2Cxxx_yyy_2012_02_97140166197_971505051890_9938_1%2Cxxx_yyy_2012_02_971553568041_97148682421_882_1%2Cxxx_yyy_2012_02_971568933111_971563386647_6375_1%2C52ff6e6d-400d-4cc3-a0c9-34a7a5202441%2Cxxx_yyy_2012_02_971554166203_971508509537_3353_1%2Cxxx_yyy_2012_02_971553838966_971506530263_5076_1%2C227bb540-3074-48f7-98fe-2c4f91dcb607%2C3f1ec5d4-7286-4dc9-bc8e-be5a9a6c53b8%2Cf02182ff-1f68-412d-835e-f008f8d5df14%2C0ca4b4b9-6f89-403e-9476-a582324d2b7e%2Cxxx_yyy_2012_02_971507236537_97143468714_815_1%2Cxxx_yyy_2012_02_97142592710_97142052229_9701_1%2Cxxx_yyy_2012_02_971507516829_971555367762_3426_1%2Cxxx_yyy_2012_02_97146288430_971551437778_7152_1%2Cab8a7af1-027c-46fa-94f2-356da786faa2%2Cxxx_yyy_2012_02_971506665093_971553365092_648_1%2Cb3823efe-c8f5-4960-a772-422c1f9f8939%2Cxxx_yyy_2012_02_4573124308_97142364863_9800_1%2Cxxx_yyy_2012_02_97147754390_971553964494_3908_1%2Cxxx_yyy_2012_02_971556118943_4544404011_9638_1%2Cbdc43302-8ea3-487f-846e-55680c82bd7c%2Cb50fb566-cd7d-4f8f-a5f6-b96d15e45817%2C5b80cc10-f88b-4a56-905e-3be9437803ae%2Cfe94029d-d409-4cf7-b8d7-577c5d89a65a%2Cxxx_yyy_2012_02_971561960124_971567610697_9301_1%2Cxxx_yyy_2012_02_971504816490_971559476181_5821_1%2Cf0a4bac4-ad17-45e2-8f09-0255a91311e3%2Cxxx_yyy_2012_02_971508010552_971569394396_8540_1%2Cfbb14b0d-a650-47f1-9e61-3b1d2b374a8c%2Cxxx_yyy_2012_02_971502848444_971553694032_4097_1%2C41e30b47-592f-4b65-8595-8e0e514af3bf%2C8bd1cafa-b56a-433f-9ffd-c771f0b904e2%2C7644c2fe-287a-4ee8-8ffb-46cb42c0bace%2Cxxx_yyy_2012_02_971554749088_97148332706_2660_1%2Cxxx_yyy_2012_02_971566203365_97144329061_3406_1%2Cxxx_yyy_2012_02_971506337998_971500395193_8557_1%2C6ee78806-015f-4d8e-a067-772912b61489%2C1ed2ae21-51a5-4408-8fc4-ed90a8588357%2Cxxx_yyy_2012_02_971551040499_971560712439_7361_1%2Cd32acfe6-80f5-4f4a-9905-8baddcdb816e%2Cxxx_yyy_2012_02_4575326412_971500895992_1571_1%2Cxxx_yyy_2012_02_97140641306_971506712431_6426_1%2Cxxx_yyy_2012_02_97141078349_971506396071_4890_1%2Cxxx_yyy_2012_02_971567648691_971567558171_6203_1%2Cxxx_yyy_2012_02_971501101007_971556627078_4727_1%2Cxxx_yyy_2012_02_971567244781_971553874928_4342_1%2Cxxx_yyy_2012_02_971507703593_4559777109_7305_1%2C5936c58f-39d5-4357-979a-d85647abeac2%2C3c7c220c-7a9e-4763-8f3d-81bcc9733d42%2Cxxx_yyy_2012_02_971500119969_971563093399_9073_1%2Cxxx_yyy_2012_02_97144532053_4548248677_2219_1%2Cxxx_yyy_2012_02_971550687475_971560293315_5210_1%2Cxxx_yyy_2012_02_971501587930_4527919026_7763_1%2Cxxx_yyy_2012_02_97148591650_971558959086_2438_1%2Ca5f5c850-6cbb-47fa-8e0d-87275999aa39%2Cxxx_yyy_2012_02_971502721556_971505689720_2827_1%2Cxxx_yyy_2012_02_971502434407_971503322244_5267_1%2Cxxx_yyy_2012_02_971563992962_97140860496_8292_1%2C735dbc8d-89e2-4544-9751-9386ecb799cf%2Cxxx_yyy_2012_02_971558545715_971557634050_9613_1%2Cxxx_yyy_2012_02_971507701918_971501852969_6467_1%2C11ed1f3a-4eb3-4ea5-9460-876bf251db64%2Cxxx_yyy_2012_02_971558478744_971507758485_3295_1%2C23850494-3007-4453-a5e8-562e84265ac5%2Cxxx_yyy_2012_02_971507695942_971553272513_6530_1%2Cxxx_yyy_2012_02_97142082304_971550575825_3520_1%2Cxxx_yyy_2012_02_971556775174_4558237840_283_1%2Cxxx_yyy_2012_02_971508552721_97148865958_8228_1%2Ca2e4cfcd-563b-4bea-8b1a-7854272cac14%2Cea976ec2-6dd5-431c-86e6-300838e4cf66%2Cxxx_yyy_2012_02_971558836774_971504340195_875_1%2C0304481c-e096-4a39-8bb1-c3a4c5b0c412%2Cxxx_yyy_2012_02_971556265002_971560351692_4800_1%2Cxxx_yyy_2012_02_4577637534_971561482519_4549_1%2C7f48b0e8-0967-438d-93e3-4bb870b04009%2Cxxx_yyy_2012_02_4561239905_971502879866_5554_1%2Cxxx_yyy_2012_02_971558409066_971551261264_8717_1%2Cccaa7054-13ea-4991-8d03-5c420a3422db%2Cxxx_yyy_2012_02_971500569359_971565141887_7221_1%2Cxxx_yyy_2012_02_971560676093_971563914076_7754_1%2C99217c23-e29f-4bfe-afc9-0cd4b386eaa7%2Cxxx_yyy_2012_02_4581391033_971568283648_8257_1%2Cccaf294e-cecd-46d8-a50e-abed336cf7f9%2Cxxx_yyy_2012_02_971567744698_971555085487_1669_1%2Cxxx_yyy_2012_02_4558096265_971567951990_867_1%2Cxxx_yyy_2012_02_971509114776_97147066485_3206_1%2Cxxx_yyy_2012_02_971554082296_971564776792_861_1%2C78e56df3-d2f9-408d-938c-80096d3e9908%2Cxxx_yyy_2012_02_971551211031_971507042356_6371_1%2C6ad7dec3-93ed-4444-a5b0-d7d3f06844c9%2C50079246-f756-4112-9168-e8c226a7146e%2Cd92d9e5e-7d99-4d82-84be-e417e5d71852%2Cxxx_yyy_2012_02_97148754403_971562178526_9883_1%2Cxxx_yyy_2012_02_971552602701_971565163062_2710_1%2C2fee7b92-45b8-40f6-886a-c27c1a7bed31%2Cxxx_yyy_2012_02_4556844129_971561963851_8815_1%2C3cdc508c-0a9b-480a-8b53-85f24e8c4d15%2C1f211386-9c1a-464d-80cf-30583c7a0770%2Ca4d3346d-9cb5-42eb-87fc-b9ccecb9724b%2Cxxx_yyy_2012_02_97140002634_971508615115_6142_1%2Cxxx_yyy_2012_02_971560097180_97148648768_9061_1%2Cxxx_yyy_2012_02_97143698283_97148272367_6941_1%2C4fd733f8-3fe5-4765-a338-dfdd55a8f9db%2Cxxx_yyy_2012_02_971502699911_971555365447_6564_1%2Cxxx_yyy_2012_02_971560246630_4561852531_9397_1%2Cxxx_yyy_2012_02_971567330524_971551190500_8873_1%2Cd39a110d-8fc3-48ab-95b7-ee22e35516c1%2Cxxx_yyy_2012_02_971569854207_971501789899_2323_1%2Cxxx_yyy_2012_02_971559959149_97149493156_1794_1%2C01c0c903-cd0f-4b32-b23c-167cd1b1f089%2Cxxx_yyy_2012_02_971500702676_97146926301_3794_1%2Cxxx_yyy_2012_02_971503924850_971557267779_1801_1%2C217e28f4-dcdd-4e93-bf08-60138ea788fe%2C3dddac23-bb29-4b93-9135-b15277c36048%2C4ef3baf5-9d90-4ceb-99d9-aa43a8f8021f%2Cxxx_yyy_2012_02_971561297844_97143248521_4748_1%2Cxxx_yyy_2012_02_97145899815_971565191976_9569_1%2C05f48bf7-7087-481d-876a-0065467b7803%2Cxxx_yyy_2012_02_97145959375_971569812831_5132_1%2C4a88a729-f3a9-419a-8e1f-3a6a452c79ce%2C5a7a7ca1-d487-49b2-93d0-aef89b9ac348%2Cxxx_yyy_2012_02_971504598805_971501082574_3341_1%2Cxxx_yyy_2012_02_971503512854_971559238786_5919_1%2Cxxx_yyy_2012_02_971503275845_97142783999_636_1%2Cxxx_yyy_2012_02_971557231613_971565831843_5063_1%2C11dab8c8-ea4c-4229-9784-3c18830d2858%2Cxxx_yyy_2012_02_97140801353_971509927002_6168_1%2Cxxx_yyy_2012_02_97142111722_971561576933_8833_1%2Cxxx_yyy_2012_02_971503565876_971504276940_2063_1%2C7772509d-d751-4a30-bd63-d675c63ea76d%2Cxxx_yyy_2012_02_971558306406_97140668924_9995_1%2Cxxx_yyy_2012_02_971501958979_971507946495_1471_1%2Ca27e7e4b-0705-45e1-8a18-25b680e3c2a3%2C42150355-4cba-4468-9546-724c46d08a4a%2Cxxx_yyy_2012_02_97141916203_97148189194_837_1%2Cxxx_yyy_2012_02_971506774433_971557363367_4_1%2C86a1e988-3aec-4a14-932c-c5eb1b0828e6%2Cxxx_yyy_2012_02_971500947525_971500595693_4221_1%2C8dbe4068-7e52-4da8-8b90-7de700161f2d%2Cxxx_yyy_2012_02_971505724999_97147559328_1821_1%2C1c41b0a9-a94c-4309-a6aa-020e0e6e6a81%2Cf19c5058-963b-4ee7-93ca-1dd4bd15c516%2C22577f59-7c27-42c8-ad2f-f2a925cf29c0%2Cxxx_yyy_2012_02_97146487833_971508510549_4204_1%2Cxxx_yyy_2012_02_4577380079_97141624230_3257_1%2C79b39456-401b-4870-aa07-e5f59703e84e%2C92503cae-681c-4876-8958-8dd6cf941e3a%2C227e6dc1-be01-4e8f-ada0-41c1511cce19%2Cxxx_yyy_2012_02_971506348576_97143246399_9891_1%2Cxxx_yyy_2012_02_971559830815_971507883680_4670_1%2Cxxx_yyy_2012_02_971501759307_97145956772_3854_1%2Ce7a22f20-987c-445b-b1e6-0c2227ad34c9%2C64041f62-8f49-4ed8-953e-3da0c41609b7%2Cxxx_yyy_2012_02_4530079658_971508374028_4309_1%2Cf85707fc-b4d3-4e4f-96b9-1986cf40fad1%2C74a722b0-a3ee-434d-9e53-405109cf29c3%2Cxxx_yyy_2012_02_971506182617_97147717526_3791_1%2Cxxx_yyy_2012_02_971562699878_971505984310_13_1%2Cxxx_yyy_2012_02_97144066341_971507241968_7217_1%2Cxxx_yyy_2012_02_971565580505_971501528489_4952_1%2Cf8213645-8b39-4833-9fb4-9187ce604ae1%2C6e3412ae-733e-4980-862f-0421c84c0b8e%2Cxxx_yyy_2012_02_971565985658_971564570092_6487_1%2Cxxx_yyy_2012_02_97147916732_971569132200_5162_1%2C8112023b-df6f-445d-baf1-7e01746d0c87%2Cxxx_yyy_2012_02_971561243407_971559042019_590_1%2Cxxx_yyy_2012_02_971564879449_971504928680_1457_1%2C85b1ffe3-0160-4d6d-ab14-3522cb4519eb%2C98114dbe-6733-4718-b6c5-f358f6019160%2C749827a9-809d-4e04-8ff0-f368d4040d03%2Cxxx_yyy_2012_02_97148870771_4556597995_6520_1%2C4f433fba-f777-4fb9-afaa-67b7af231b2e%2Cxxx_yyy_2012_02_971505927187_97145873045_9309_1%2Cd4dd1a88-93f7-482f-bd37-654ed510ff65%2Cxxx_yyy_2012_02_971555961238_971500683902_4677_1%2Cxxx_yyy_2012_02_971562291348_971567627146_1833_1%2Cxxx_yyy_2012_02_971551293074_97148383083_7178_1%2C4ec330fc-3e99-42fb-8181-032f86a35e03%2Cb23f2c56-5e2b-4c79-81ae-cfeef3d89146%2Cb1452f75-9ae7-427a-b8d5-3f321a59cd56%2Cxxx_yyy_2012_02_971559411625_971559930787_5591_1%2Ca7737a8c-aa61-4aad-a1eb-7490d906554a%2Cxxx_yyy_2012_02_971501128911_971504616106_1836_1%2C6b2c2a6b-9478-4e56-a963-82a4cf2d3122%2C0ae006a8-12ee-4d90-b30d-b365de0389f3%2Cxxx_yyy_2012_02_971559271353_4532365220_6743_1%2Ccb906d11-7fe1-4068-a426-b4d03589808e%2Cxxx_yyy_2012_02_971500358517_971551143871_5268_1%2C549c09df-5ce5-4667-9c3a-c2c801e666e7%2Cxxx_yyy_2012_02_971567119755_4541942732_485_1%2Cda59cea9-a286-49ec-840e-c62394ec4b2e%2Cxxx_yyy_2012_02_971556983895_971568001953_4456_1%2Cxxx_yyy_2012_02_97144674647_971560326565_4747_1%2Cc9c2e1d9-4a97-4d19-a03c-786025a782de%2Cxxx_yyy_2012_02_971568674692_971507078283_2391_1%2Cxxx_yyy_2012_02_97140146842_4552672621_5492_1%2Cxxx_yyy_2012_02_971500907727_971564173080_6325_1%2Cxxx_yyy_2012_02_971551528534_971561761006_7396_1%2C351a525d-b83f-4992-8b60-d9c665b01df7%2C642e26df-918a-49b9-86d0-203a786070e1%2C74fde7e1-2c77-406c-8eaf-68b6759dcaf0%2Ceaf776d9-fb12-4b08-85fd-83fb6e7b03e7%2Cd56a65dd-34b8-444d-8dd4-c7c0be554ccb%2C0afb398f-e28b-43de-9b4e-1efb55db4cae%2C2cecb63e-f460-480a-a161-97032746a1ef%2C87f46c8d-9f82-4f15-b4ed-df9e9674b672%2Cxxx_yyy_2012_02_971502295404_971558858142_5067_1%2Cad5e5fca-96b8-4850-b174-940b84653eca%2Cf37f3a05-7277-457f-88a3-d17215e2a9c4%2Cc74e4b3e-7ba2-42d6-89f6-69b6715cd4a9%2C0720c921-ad42-42ff-a2ed-9a64f86d5869%2Ce04b36a9-a86d-49ad-a5d4-ac8c4ae40c67%2C0d1eb8ea-61ad-4331-a8d9-7eefaa24cbb8%2Cc85e48c8-3662-447d-b2c3-20e871e75404%2Cxxx_yyy_2012_02_97143754307_971559496670_1027_1%2Caaf4fc08-aa78-4d19-94bd-17c25e342997%2C4c99b858-6d90-46b4-91fb-755eeba8819c%2C4e38e211-291b-4956-aeef-41887bf26db2%2Cb858783c-21dd-43ad-9bc1-58c59a577727%2C1550478b-93a2-4a58-9a35-872893f60289%2Cxxx_yyy_2012_02_971565800209_97147353755_5384_1%2Cxxx_yyy_2012_02_971556245066_971551238159_1824_1%2Cedc8ea60-ba2c-4002-98d6-005a81bf154d%2Cf62f285e-e9f9-4a28-ae37-9c9da8046799%2Cxxx_yyy_2012_02_971555457428_97142003623_1354_1%2C41f166e8-dd7c-41db-9f6d-6d97496b9b48%2Cxxx_yyy_2012_02_971504910531_971507042459_4356_1%2Cxxx_yyy_2012_02_4561441405_971560226611_6403_1%2Cxxx_yyy_2012_02_971508177984_97146473532_1082_1%2C0c14dab8-ced7-4047-9f1e-fd5559476a97%2Cxxx_yyy_2012_02_971562820782_971506114202_3501_1%2C367adfa1-d039-4300-b6ec-ca3b5b112e5e%2Cxxx_yyy_2012_02_971501365497_971553766528_2278_1%2Ca5bb194c-d785-40d8-98c4-47bfb16a357f%2C4cc97f1f-45e1-4316-aa49-33acf320e031%2Ca52d0dd3-b094-43f2-980a-ded4aff618e3%2C11f0ebd4-62fb-45c0-af6c-9f79c3fca620%2Cxxx_yyy_2012_02_971507224330_971562630728_6027_1%2C2b6c73d0-4f8e-411f-b937-d63f1c17e67b%2Cxxx_yyy_2012_02_4532924893_97143741614_1065_1%2Cxxx_yyy_2012_02_97143561913_97140408533_5302_1%2Cxxx_yyy_2012_02_97146335947_971562292226_857_1%2Cxxx_yyy_2012_02_971561754192_971508445468_8176_1%2C87c0c091-8072-4a0a-917d-a94aba7b1dcb%2Cxxx_yyy_2012_02_971569044461_971564181030_9591_1%2C48c30bf9-06e7-4b42-96bd-268bafe35b63%2Cxxx_yyy_2012_02_4526046956_97146332947_9780_1%2Cxxx_yyy_2012_02_97148860939_971506368327_621_1%2Cxxx_yyy_2012_02_971553849153_971507963885_7611_1%2Cxxx_yyy_2012_02_97146321694_97140007073_6804_1%2Cxxx_yyy_2012_02_971505233393_971550969744_8651_1%2C38386f52-3127-476f-b7bc-01ba589269e1%2Cxxx_yyy_2012_02_971508177864_971565361084_3843_1%2Cxxx_yyy_2012_02_97143472806_97140722651_7523_1%2Cxxx_yyy_2012_02_971503755507_97144841378_4382_1%2Cxxx_yyy_2012_02_971564563956_97143815651_3459_1%2Cec78d4a3-eaee-4d2b-82fd-a969c2c7b9ef%2C5f01527a-1975-488f-856b-18b4697b20d3%2Cxxx_yyy_2012_02_97145093769_971504258795_3839_1%2Cxxx_yyy_2012_02_971552424093_971563356360_1790_1%2Cxxx_yyy_2012_02_97144317260_971566989099_9776_1%2Cxxx_yyy_2012_02_97141811685_97143858012_1348_1%2Ca74ae293-c28e-4e63-959a-ca2c746ba480%2Cb82c51d1-342d-4633-acd8-3890ef29f9ef%2C1c8d0ccb-6c6d-4677-8079-0337f638f5a1%2Cxxx_yyy_2012_02_971562713502_971563295946_2283_1%2C0531865b-5d80-4620-82f0-57ad4781d60d%2C8306b691-ff45-4f80-99ab-a65535a8ee72%2Cxxx_yyy_2012_02_971551179217_971509354353_1473_1%2Cc8552350-ebd5-47cf-a9b5-17703dcdfc3c%2Cxxx_yyy_2012_02_971552755895_971502660060_8633_1%2C9b67f2b8-11e2-409d-9bc6-33e9d523d529%2C5afd1f98-457a-410f-94d6-3cb794dca714%2C171f635b-46e4-4a08-be22-a496db0c67c2%2Cxxx_yyy_2012_02_97147039725_971503482150_9103_1%2C6e42c423-1091-4ba8-91ef-d6758eb24f3a%2Cxxx_yyy_2012_02_971562620762_971508515209_2072_1%2Cxxx_yyy_2012_02_971561159083_97142229994_2488_1%2Cf6af79ed-2716-4ddb-8818-566f020817da%2Cxxx_yyy_2012_02_97140251920_971562722673_7013_1%2Cabc5086f-8ad5-460a-a7df-5c7022822f8c%2C37544d64-f5fb-4774-a703-c4e81c848b00%2Cccba04e3-b97a-47ca-843d-570be7ac962d%2Cxxx_yyy_2012_02_97142140593_97148661738_6583_1%2Cxxx_yyy_2012_02_971505400018_971562729096_4770_1%2Cxxx_yyy_2012_02_971503675282_971556965768_5998_1%2Cf332d9b7-2d72-448a-8c43-bf0f702a840b%2Cxxx_yyy_2012_02_971550162690_971554352721_3954_1%2Cfe032890-66c3-4c5d-880f-e22c7095e656%2C6e764f2d-d4d0-4f5f-8bf6-ac52c56c455d%2Cxxx_yyy_2012_02_971503663672_971559914357_1906_1%2Cxxx_yyy_2012_02_971561368968_4534307094_9163_1%2C6595f133-2c9d-48bc-9104-82e0b83292c8%2Cxxx_yyy_2012_02_971558920880_971568727508_7771_1%2Cxxx_yyy_2012_02_971564117900_4540979760_6064_1%2Cf39e5fbe-47e9-48fb-bad9-b77538ac238e%2Cxxx_yyy_2012_02_971565851201_971563312468_6657_1%2C0ef791ac-6b6e-4346-8dbe-b0c8bc994f08%2Ceed81ab0-68e0-40c2-afb7-4faf08659012%2Cxxx_yyy_2012_02_971506903022_971563180170_7334_1%2Ccff64735-b5fc-47cb-8681-45f4ae2c3968%2Cxxx_yyy_2012_02_971566490946_97142149137_6864_1%2Cxxx_yyy_2012_02_4575535049_971550573028_9304_1%2Cxxx_yyy_2012_02_971569385780_971555085631_5530_1%2C9752a29f-f410-4969-ba43-2503b28559fc%2Cf5f57e90-1d25-4663-b4b6-0f3ef148fb4e%2Cxxx_yyy_2012_02_97147098963_971554254066_9176_1%2Cxxx_yyy_2012_02_971560644461_971509492836_3106_1%2Cxxx_yyy_2012_02_971509220054_971556700188_7227_1%2C0c1dd655-6020-4488-9951-e17697cc8bec%2Cfb968560-b466-44fd-b995-1646ebf4639d%2C9ed3d309-f501-4fc0-948e-b5860417adab%2Cxxx_yyy_2012_02_4551800896_971555029916_6271_1%2Cxxx_yyy_2012_02_971508336280_971560295058_2151_1%2Cfe997a8c-fd3e-4227-a79a-0a08569dc6a1%2C08fcd791-7fad-4495-beb2-797bd535bcc3%2Cxxx_yyy_2012_02_97146675275_97143721321_745_1%2Cb6594d8a-960b-4d6f-b4de-b55a6350b233%2C821f3432-ca67-4029-bd99-99d7f677eb4d%2Cxxx_yyy_2012_02_97147252324_97147258150_5858_1%2Cxxx_yyy_2012_02_971564042367_97144683141_1746_1%2C53bf4268-855b-4f17-b3f6-91e915fbb5eb%2Cbc3d7517-fa80-4ed3-9ed7-b909b9b9dc7c%2Cxxx_yyy_2012_02_97149299786_971554283383_7070_1%2Cf634f3c5-b005-4ad8-a0b2-d1e2f4fec897%2Cxxx_yyy_2012_02_971506429720_971552865103_6509_1%2Cxxx_yyy_2012_02_971504823147_971500149026_5607_1%2Cxxx_yyy_2012_02_971566381488_971569972253_4606_1%2Cxxx_yyy_2012_02_971562617803_971564390259_4502_1%2Cxxx_yyy_2012_02_971502591972_4532520372_5010_1%2Cxxx_yyy_2012_02_971567111176_971500674140_5215_1%2C28f1d4e2-f374-48f6-bd62-e050a5f3cce4%2Cxxx_yyy_2012_02_97149522627_97142150625_7345_1%2Cd740ec00-cacc-4f51-83fb-b4c59e32a062%2C547d198a-921d-489e-b8fb-135ec8d5f072%2Cfefcb6af-2d07-42e8-a7c5-7e13a817409f%2Cb3eee743-52ca-411a-81d5-5c60479cadc2%2Cxxx_yyy_2012_02_97141500360_971569625490_7436_1%2Cxxx_yyy_2012_02_971555343479_971552031452_6958_1%2C2697a77e-15b6-4fd5-95fe-c835631ebe1f%2C775c7cfd-b3f5-4599-a8f8-ef1498ab08a5%2Cxxx_yyy_2012_02_97140188159_971500262237_4295_1%2Cb664cf4b-862e-4ca6-9aca-d414dbcb5d29%2Cafef2a37-bd14-423c-880f-b044fc361f4d%2Cxxx_yyy_2012_02_971554575948_971554798595_4317_1%2Cc0f3a5a7-5d26-4a38-8dbc-d7af53d226d7%2Cxxx_yyy_2012_02_971508996499_971556034309_9223_1%2C0ec4924b-103b-435d-b232-6246f0938961%2Cxxx_yyy_2012_02_97147461503_971507095268_9018_1%2Ca49219d3-6793-4019-8399-ea7d29c18741%2C27f532c2-783f-445e-96c9-962f555df1db%2Cc277d389-dcea-4fec-a784-4f39e94a69f5%2Cxxx_yyy_2012_02_971502225655_971551954529_3882_1%2Ca77ebe6e-506f-4d97-891a-ae3399dc0f41%2Cxxx_yyy_2012_02_971506012088_971557563766_5869_1%2C16a3a3d0-0679-49ef-8793-63c64bceafc0%2Cxxx_yyy_2012_02_971550238100_971556792441_5740_1%2Ca6486430-e97e-427d-b6f1-4498eef2b594%2C4aecc5df-32fd-4d21-b8de-f8bb26fe10d0%2Cxxx_yyy_2012_02_971557174354_971507357163_7203_1%2Cxxx_yyy_2012_02_971561166470_971557383920_4729_1%2C201d6486-a4a1-4fa7-8ccf-19cddcd0f7c8%2Cxxx_yyy_2012_02_971505169652_971559067695_1811_1%2Cxxx_yyy_2012_02_97145198803_971552748954_332_1%2Cxxx_yyy_2012_02_971552272420_97149184330_5006_1%2Cxxx_yyy_2012_02_971507057513_971567698854_2706_1%2Cxxx_yyy_2012_02_971554017570_971550642591_9985_1%2Cxxx_yyy_2012_02_97144794076_97146650735_4943_1%2C67940025-6a00-439e-967f-62aad9bd1747%2C553a5eb1-4b2f-40bc-b7f9-e90dcc40eed8%2C73ce1d20-9022-4a2b-a0b7-f79c8866a081%2Cxxx_yyy_2012_02_97146852289_971552165346_1470_1%2Cxxx_yyy_2012_02_971556702854_971506075333_228_1%2Cxxx_yyy_2012_02_971566987973_971564914576_1856_1%2Cxxx_yyy_2012_02_971501490191_97142076198_1717_1%2Cxxx_yyy_2012_02_971562707904_97146559998_2145_1%2Cxxx_yyy_2012_02_971559774547_4528508495_6435_1%2C01214561-a7e3-499b-90b2-6b79d3435ec2%2C652b6fb4-42c5-4315-aa2b-be6627a1ca1c%2Ce015d654-dd3b-4eee-8ea0-cff04a67287a%2Cxxx_yyy_2012_02_971566445103_971558366223_9099_1%2Cxxx_yyy_2012_02_97148990555_97140304375_6297_1%2Cxxx_yyy_2012_02_971567920714_971562473084_9194_1%2C0ab3d2f6-68e3-49cb-9bcd-4cc0c348b843%2Cb2f777fc-5449-4864-84e6-f290adb1be5e%2C127f4a80-0299-4e74-85d8-9b04fd0c7cc6%2Cxxx_yyy_2012_02_971503827307_971568877432_8990_1%2Cxxx_yyy_2012_02_97140733432_971560251181_5239_1%2Ceb520a2f-74ec-4f5b-9177-ceab598ac7f4%2Cxxx_yyy_2012_02_971557551870_97140978616_2825_1%2Cxxx_yyy_2012_02_971552832662_971557836801_5103_1%2C306cdaa3-3c5e-457c-bcee-369c522e9ce5%2Cxxx_yyy_2012_02_971508209337_971563096715_7931_1%2C69850a2f-e3a2-4ab8-b5ee-a39b32802ec0%2Cxxx_yyy_2012_02_971567313029_971561602144_1094_1%2C1e58c2a1-6a72-47b6-84d7-cc98a54c9b23%2Cxxx_yyy_2012_02_971501321156_971505563520_3847_1%2Cxxx_yyy_2012_02_97149252334_97142326997_6193_1%2C6ac7203b-951b-441f-8994-8554b422122e%2C03b0a00b-d023-4efa-b7e6-fee25aafebc3%2C9c76bfd0-873f-468c-b7c6-5a6fd7415419%2C728ba604-70f4-401c-b784-cf88d600be76%2C0bbd3ebc-eebb-44fd-a264-8f21d22908d5%2C6f48ae50-9500-461b-af9d-14d0833c9cc9%2Cxxx_yyy_2012_02_971558646318_971562805567_8611_1%2Cfcc2f39f-9d82-4771-8240-fcd72656bafe%2Cxxx_yyy_2012_02_4550255029_97146836652_4372_1%2Cxxx_yyy_2012_02_971569709425_971565575208_6521_1%2Cxxx_yyy_2012_02_971504029822_971507927292_5695_1%2Cxxx_yyy_2012_02_971564905120_97143741016_7204_1%2Cxxx_yyy_2012_02_971553911654_971563673752_3500_1%2C5b8da0ee-87bb-44e1-ba7c-00c0db283212%2C26dc8166-618b-4324-8aed-d08c9517f6ca%2Cd99c160d-3811-4df8-bb28-ffa256da43a9%2Cf04a585c-b810-479a-bf9c-11bb9a9ded6a%2Cxxx_yyy_2012_02_971557766716_971505997625_2303_1%2Cxxx_yyy_2012_02_971566440274_971558951532_4206_1%2Cxxx_yyy_2012_02_971554520650_971505338569_4274_1%2C91a27606-e9d9-41d3-b5a0-98796ddf8f13%2C5ca70a14-2e57-4c41-b16b-6bc2292ff3e8%2Cxxx_yyy_2012_02_97141306556_97147664254_2846_1%2Cb27361d1-0925-494a-8a35-46c5bb2876e1%2Cxxx_yyy_2012_02_97143600368_971563135182_7023_1%2C61dc4145-d286-4601-8b3c-06b206ee29ba%2Cxxx_yyy_2012_02_971505608246_97149090696_6174_1%2Cc53f1617-fe6a-4eba-b465-466cf6e334ba%2C24f120df-16e6-4d54-81d4-056c85ec8f95%2Cb9e74957-73e7-496d-954f-693d6823bfda%2Caec6ef9e-8584-4c6a-9ccf-faaf892e758f%2Cxxx_yyy_2012_02_971557137265_971500150729_6759_1%2Cxxx_yyy_2012_02_97147539818_971503860115_6449_1%2C0d1154c4-2982-4950-b1f4-24fe9dc85de6%2Cc2be0258-d47c-4a95-b87d-7265543a8764%2Ce8ac316e-48ce-4726-923f-c619ba7e1f50%2Cxxx_yyy_2012_02_971500238029_97143004820_5801_1%2Cxxx_yyy_2012_02_971564388239_971559153725_7602_1%2C1498620a-9942-472d-bffb-e129c15090b6%2Cxxx_yyy_2012_02_97147197396_971501109125_1171_1%2Cxxx_yyy_2012_02_971558352429_971561197555_3783_1%2Cxxx_yyy_2012_02_971556611365_971562718782_7546_1%2Cxxx_yyy_2012_02_971507550306_97148509117_3522_1%2Cxxx_yyy_2012_02_4574405050_971501782333_2913_1%2Cxxx_yyy_2012_02_971560976418_97142093356_8501_1%2Cxxx_yyy_2012_02_971552555281_971559656042_6731_1%2C5113c66d-fb0b-4f4d-94a2-e0a7244dd096%2Cxxx_yyy_2012_02_971555566469_971505241561_7230_1%2Cxxx_yyy_2012_02_971561715168_971507112741_5951_1%2Ca39b1d7a-e674-4b4c-b27b-387756032426%2Cxxx_yyy_2012_02_971505228157_97142794107_5907_1%2Cxxx_yyy_2012_02_971505574788_971566945025_8229_1%2C138288cd-19b9-48ae-ab02-49c3b6410f9b%2Cxxx_yyy_2012_02_97143730799_971553230546_7008_1%2Cxxx_yyy_2012_02_971557219445_971509478999_8247_1%2C55dea9bb-245e-49f7-b9b6-85e1600006b9%2C6b987310-3485-4000-a350-e00628f8fd31%2Cxxx_yyy_2012_02_971562183127_971566229462_3458_1%2Cxxx_yyy_2012_02_971555289577_971551904458_1320_1%2Cxxx_yyy_2012_02_971502957532_971504958514_2258_1%2Cxxx_yyy_2012_02_971557278859_971557822936_3275_1%2C164ce725-a349-4237-8255-c6f3949958eb%2Cb90f2321-052b-43ca-984f-abc55c8e6bf1%2C827de9e1-e965-4959-b0ba-c1acfbb4fa1c%2C524cff6a-a5cc-4daa-a4b3-074c59259f11%2C6a0dd466-6b1d-4f3f-a883-5dee5a4a1285%2Cb4dbd421-b534-48e5-af7f-ebd9de079fe1%2Cc0840039-6232-472f-9ed3-96ec90053f5d%2C48c5437f-b18a-4ea0-bfd3-2cb08f903bfd%2Cxxx_yyy_2012_02_971506092676_4528988671_3385_1%2Cf5e041cf-d624-41b4-8a63-d6502954b2f5%2Ce2a3e7ad-62c2-4119-a7dc-c139579620de%2Cb2932dcf-be5c-4cad-af4e-876b2543c113%2Cxxx_yyy_2012_02_97146408849_97145920584_711_1%2Cxxx_yyy_2012_02_971568057354_971560581400_5309_1%2Ca6c37b72-1794-4561-a1c9-e3f4f962781b%2Cxxx_yyy_2012_02_97148486007_971507885528_5130_1%2Cxxx_yyy_2012_02_971508057377_971560311468_2882_1%2Cxxx_yyy_2012_02_971501436729_971558464141_794_1%2Cxxx_yyy_2012_02_971560762297_971568944699_1243_1%2C8c1dd343-2320-49da-9367-a8df43b565e8%2Cxxx_yyy_2012_02_971557525139_971563210531_3451_1%2Cxxx_yyy_2012_02_971557541097_971563138824_5556_1%2Cxxx_yyy_2012_02_971509724204_971564575468_6348_1%2C33b57418-cfc4-471a-a054-29413f28a81c%2Cb2332ca7-d6c5-4134-a540-59aa70b6bce4%2C807f4a71-f033-4ff5-9bff-ae7509c77c66%2Ccd97bc9c-814f-45a5-a034-a5b5efb05597%2C67396269-80e6-4941-89a0-f3062255c49f%2Cefe1d287-4ba7-45b6-be4f-28b134ab3ea0%2Cxxx_yyy_2012_02_971555081311_97143700742_2664_1%2Cxxx_yyy_2012_02_971564648257_971565592689_6915_1%2C7b88687b-a968-402b-9fc8-0d58067d3f0a%2C13fb46a5-d4b5-47a3-8a40-8c76f8ae07c0%2Cxxx_yyy_2012_02_97140694425_971506489292_2729_1%2Ceb6b88e3-f6be-473d-afa6-0073293435e9%2Cxxx_yyy_2012_02_971550664169_971561089228_2486_1%2Cxxx_yyy_2012_02_97148629324_971506231404_776_1%2Cxxx_yyy_2012_02_971502707351_97140420447_9112_1%2Cxxx_yyy_2012_02_97148579525_971500036449_4454_1%2Cxxx_yyy_2012_02_97141805693_4547350466_1080_1%2Cxxx_yyy_2012_02_4555351142_97146853475_527_1%2C76016827-be7e-4b5a-97b5-44164e7a1970%2Cxxx_yyy_2012_02_971502291898_97148678153_5539_1%2Cc642c7fd-3d94-49f7-8368-16d08e2c06e0%2Cxxx_yyy_2012_02_971550260118_971508289560_9663_1%2Cxxx_yyy_2012_02_971501989355_971552101654_9668_1%2Cxxx_yyy_2012_02_971505875031_97142460986_2627_1%2Ca5b9d73d-aeaa-49c2-8935-f955e9926713%2C0bfa5dac-d2f4-4596-97f3-b4dcdd57d24e%2Ce01220af-df06-49e3-bbd1-78aeee4b5756%2Cxxx_yyy_2012_02_971501773914_97144839219_4601_1%2Cxxx_yyy_2012_02_971565107117_97147359051_1026_1%2C5f4b266c-d4f3-4d30-9c18-dcf2448b4c5a%2Cxxx_yyy_2012_02_971509081683_971551971121_7313_1%2Cabe618e7-3032-4169-8bda-ba09e315638a%2C539da780-7c8f-42e2-8168-412b1d92913e%2Ccce38d00-c2d5-4e75-b037-0c4b7e3b725b%2Cxxx_yyy_2012_02_97145920836_971505712626_850_1%2Cxxx_yyy_2012_02_971508502414_97140732974_2983_1%2Cxxx_yyy_2012_02_4532704457_971506955791_772_1%2Cxxx_yyy_2012_02_971502078418_971501314172_8606_1%2Ca4f96a89-c5ec-4347-8557-4e27dc8357de%2Cxxx_yyy_2012_02_971566902291_97146286636_4689_1%2Cxxx_yyy_2012_02_971551405791_4579920475_8191_1%2Cxxx_yyy_2012_02_971552673378_971502766001_7249_1%2Cxxx_yyy_2012_02_971560473612_971554991901_2233_1%2Cxxx_yyy_2012_02_971507763967_971550692108_2730_1%2Cxxx_yyy_2012_02_971551796105_971569310871_1556_1%2Cxxx_yyy_2012_02_971507257346_971553963903_3726_1%2Cxxx_yyy_2012_02_971504497262_971508194601_7128_1%2C810fe870-7a6e-45be-ab8d-536f77f1efb2%2C7cc4ff7e-9724-4806-a1c7-d1de48bb6106%2Cxxx_yyy_2012_02_97146661226_97145144005_4168_1%2Cxxx_yyy_2012_02_97143622728_971559543654_6162_1%2C20155f70-f38e-432d-bd24-98f8551748d7%2C74e4bcf6-71b3-451b-a607-4235508a0889%2Caab66d10-3fd6-4f39-89c9-ebb3b16548ac%2Cxxx_yyy_2012_02_971505494920_97146708901_6829_1%2C081ca5ec-20ed-4d31-873c-4a7771c84281%2Cxxx_yyy_2012_02_971564016859_971562450179_2962_1%2Cxxx_yyy_2012_02_971560487983_971503006876_1147_1%2Cxxx_yyy_2012_02_971509638310_971564911150_3621_1%2C6eb46fb3-1da6-4a35-a5a1-e1a8f4b63889%2C559e8110-db17-4f5c-8554-fce2a6e18c98%2C05f7a036-0db9-45df-aa1c-3df5fd60c187%2C87a4343d-ca25-4bdb-a594-59a3faddc76b%2Cxxx_yyy_2012_02_971561371556_97141102854_8373_1%2Cxxx_yyy_2012_02_971558016476_97148673793_7980_1%2C38308fa1-c92a-4d8e-82c8-51a61d5f0c4e%2Cbe3bdcd2-7aed-4a35-9af3-94f4598ec11d%2Cxxx_yyy_2012_02_97149063979_971557387665_1011_1%2C47bc64c7-cebc-467e-b0a5-1b7c588e0085%2Cd68fab50-3faf-440c-81e0-3a25bdb6ccfd%2Cxxx_yyy_2012_02_971506605479_971553495443_236_1%2Cxxx_yyy_2012_02_971560933210_97143452277_2665_1%2Cxxx_yyy_2012_02_97140704707_971555050550_723_1%2Cxxx_yyy_2012_02_4587965023_971569493392_3970_1%2Cxxx_yyy_2012_02_971559846862_97147555321_9593_1%2Cxxx_yyy_2012_02_971566742687_97141184276_4564_1%2Ce1737981-0e1c-41fb-a78a-249f2df63b2b%2C677c4894-6c6c-43a6-a396-92644b819e00%2Cxxx_yyy_2012_02_971568236554_971563496441_4403_1%2Cxxx_yyy_2012_02_971558726958_971504447316_6963_1%2C5de6b6ef-007a-49ed-a58a-2ef44a7c69e7%2Cxxx_yyy_2012_02_971562716442_971568774945_5503_1%2Cb6719741-dd82-46b1-a5ac-e56a9d110f4d%2Cxxx_yyy_2012_02_97142024820_971501762992_8689_1%2C1d6cb54d-b67c-49cd-8796-a3e8e2c771b8%2Cfa0529bb-e543-4182-9e2d-9a7d77896fec%2Cxxx_yyy_2012_02_97141498492_971556883763_4542_1%2Cxxx_yyy_2012_02_97143435810_971564217241_5074_1%2C1ddfc886-bf90-4745-be50-352729e2816d%2C90c8287e-f676-4b00-9cfc-d83413254588%2Cxxx_yyy_2012_02_971553061353_971567713949_9836_1%2Cxxx_yyy_2012_02_971551460953_971504329265_8172_1%2C27b0cc70-51f3-419a-9715-6065ef79118a%2Cxxx_yyy_2012_02_971500759125_4596574298_5763_1%2Cda8d7717-36ab-405b-b0be-db9a91cf045e%2Cxxx_yyy_2012_02_971555072953_971563192383_6754_1%2C91f9593b-e279-4424-be5d-653a67543c7e%2Cxxx_yyy_2012_02_971554113208_971558166060_3691_1%2Cxxx_yyy_2012_02_971569867739_971560884854_9530_1%2Cxxx_yyy_2012_02_971504856503_971562625009_8837_1%2Cxxx_yyy_2012_02_971505427982_971559398851_1006_1%2C9e7ee51d-0762-47dd-9fcb-2c180a91e85c%2Cxxx_yyy_2012_02_971550896067_971560112120_4685_1%2Cxxx_yyy_2012_02_97141707380_97141728991_8992_1%2C47612d91-e8ac-469e-bc2a-a64b95818d67%2Cxxx_yyy_2012_02_4545031938_97145747126_9862_1%2Cxxx_yyy_2012_02_971507019241_971554628579_1154_1%2Ca056436a-cd67-40dd-9cbd-1b17b4bbeb21%2Cxxx_yyy_2012_02_971501339165_97148402139_1728_1%2Cxxx_yyy_2012_02_97145563640_971556879110_5264_1%2Cb3b42bbe-8a5d-498d-aed2-b4b3d9257ba9%2C9bf96f00-4339-4e7c-990f-325e9622863f%2Cd1f440e9-1659-40d1-8378-69073178a6f6%2Cxxx_yyy_2012_02_971563497770_971509036607_7402_1%2Cdc25d88d-bb0f-40b5-9a4b-3e71c02e96a7%2Cxxx_yyy_2012_02_971504056019_971553034240_1860_1%2Cxxx_yyy_2012_02_971558265338_971560448985_6976_1%2Cxxx_yyy_2012_02_971557293427_971501070615_9288_1%2Cxxx_yyy_2012_02_971565709088_971556387113_5982_1%2Cd236ff4b-3c48-4f9c-afe6-b8c8c742ea6a%2Cxxx_yyy_2012_02_97149855354_971560509818_1182_1%2Cxxx_yyy_2012_02_971509673867_971561819859_2872_1%2C09da0ea6-c938-4d4f-b166-9de3c09355be%2Cxxx_yyy_2012_02_971504951732_97145890850_2113_1%2C20456c76-494a-4ec9-9e37-8ebb7ab9c785%2Cxxx_yyy_2012_02_971506830138_971562342126_941_1%2C8118d881-5d3f-4d72-b968-7561b954f03e%2Cxxx_yyy_2012_02_971553119663_971568405985_7199_1%2Cdb2f81dc-4449-4ffc-a2ee-d671e3e5ebe5%2Cxxx_yyy_2012_02_971508025064_971564365682_7282_1%2Cxxx_yyy_2012_02_971558119806_971560982239_4137_1%2Cxxx_yyy_2012_02_97148958212_97149773493_3516_1&isShard=true&shard.url=machine-4%3A8983%2Fsolr%2Fxxx_yyy_2012_02_slice10_shard1%2F&NOW=1330721790916&wt=javabin&version=2"\
\
\fs40 Received on low-level/socket level in Jetty on server-side - StreamEndPoint.fill logging (from Jetty stderr-logs on machine 4 in my multiple-machine setup)\
1
\fs24 \
2012-03-03 00:56:31.173:DBUG:oejib.StreamEndPoint:*** Read 6144 form ByteArrayBuffer - total read now:|POST /solr/xxx_yyy_2012_02_slice10_shard1/select HTTP/1.1<|Content-Charset: UTF-8<|Content-Type: application/x-www-form-urlencoded; charset=UTF-8<|User-Agent: Solr[org.apache.solr.client.solrj.impl.HttpSolrServer] 1.0<|Content-Length: 37040<|Host: machine-4:8983<|Connection: Keep-Alive<|<|SubRequestGUID=e42fcab9-e1f3-4ecc-aba6-21137a3f0176&df=content&rows=10010&start=0&q=timestamp%3A%5B1330372801000+TO+1330410252000+%5D+AND+timestamp%3A%5B1330369200000+TO+*%5D&distrib=false&collection=xxx_yyy_2012_03%2Cxxx_yyy_2012_02&EDRSolrSearchComponent_DISABLE=true&ids=e4627ecd-c5bc-44d8-b691-1ad2bf1e5ad2%2Cdad279ca-0a01-426e-ab63-0662b0a894f1%2Cxxx_yyy_2012_02_971556025906_971509657562_1572_1%2Ca65585bd-01c1-4c73-9c7d-3a80967fed14%2C028d9eae-e116-4aeb-8506-9b8f1357fb00%2Cab644aae-30ca-46f6-bf6b-c6deb7851dcf%2C7980a181-58cb-4f53-bfdc-86ccddcfc0bd%2Cxxx_yyy_2012_02_971564979146_971563846159_3860_1%2Cef1d7149-fed8-4ec6-9d61-7c57efb72d7c%2Cxxx_yyy_2012_02_971502879730_971503288676_4152_1%2Cbe72d6eb-4fac-45a6-9f9a-bd6fed4c35e1%2Cxxx_yyy_2012_02_971502966188_971504686750_2194_1%2C19b21f2f-fc88-4dd0-b6fd-a120ff008d2d%2Cxxx_yyy_2012_02_971501325815_971567135310_8023_1%2Caa996070-328a-45ff-9c5e-1875c1e42115%2Cxxx_yyy_2012_02_971508027520_971559354369_9158_1%2Cxxx_yyy_2012_02_971557836021_971559428121_781_1%2Cfcd72ed6-b95e-4d79-a8c5-5a6f1abc7caf%2Cd060e80e-686a-48b2-adee-66d5d52ba31a%2Cxxx_yyy_2012_02_971551476494_971558645511_5783_1%2Cxxx_yyy_2012_02_971550920150_971500349829_8961_1%2C8ebe1d4c-3779-4128-aebc-81df81b2b228%2Cb61e5fa1-30c4-40fe-8d5c-3da8dd89bd29%2Cxxx_yyy_2012_02_97148349058_97147261515_7568_1%2Cxxx_yyy_2012_02_97149574263_971509961907_7267_1%2Cxxx_yyy_2012_02_971554854717_971555625104_3523_1%2Cxxx_yyy_2012_02_97144919158_97149151286_7866_1%2Cxxx_yyy_2012_02_971563742135_97144809726_3044_1%2Cxxx_yyy_2012_02_97149998750_971564377581_9013_1%2Cee4d8b2f-1afa-4b2d-8623-a598257c323a%2Cxxx_yyy_2012_02_97145893910_971552811426_5329_1%2Cxxx_yyy_2012_02_971556780419_971565623600_5244_1%2Cf5e8c84d-4dba-445d-a4b1-da62f1914a6e%2Cxxx_yyy_2012_02_971557064072_971568944116_9460_1%2Cxxx_yyy_2012_02_97141652555_971567877256_4590_1%2Cxxx_yyy_2012_02_97144323510_97147519544_668_1%2Cd49cb9d2-ae69-433a-a4c4-f8dc7f37b5ac%2C0093e2b2-47ba-4353-83d4-998d2f1cc1e4%2Cxxx_yyy_2012_02_971564735642_971551517642_6748_1%2Caaa64052-fcc4-44dc-b471-4e3fa465e188%2C9a0480be-b4ca-4a01-9aa9-999a673be95d%2Cxxx_yyy_2012_02_971564569035_971504334929_3398_1%2C95966a05-5de8-48fd-9375-b1623832c660%2Cxxx_yyy_2012_02_971559602446_97147139341_5230_1%2C59e74a71-f738-42b5-987b-d15a8ffade1f%2Cxxx_yyy_2012_02_971506059593_97149653060_6631_1%2C587f58be-f2c0-417d-b5da-13f7e962a58d%2Cf08eb72d-0df4-41b1-8d06-340829d8ca96%2C1a875d77-13ec-4de5-85bb-312b14abd09a%2Cdb9f4305-6dbb-4b70-87db-ba8e54c695ae%2Cea90487e-5df0-42ac-aa0d-ef1120916d97%2Ccabc51da-abbc-469d-b5b3-42d83c9aceee%2Cxxx_yyy_2012_02_97149467066_971506255685_8199_1%2Cxxx_yyy_2012_02_97140231049_971560837242_1485_1%2Cdaac4f60-8266-41a6-b045-67df75d649e2%2C8291f37a-0f3a-475f-8fea-6b745f770b99%2Cxxx_yyy_2012_02_971501255225_971550872692_9620_1%2Cxxx_yyy_2012_02_971507959531_97142732214_5988_1%2Cc0b7b5e4-bc2b-4839-8c6a-b45f62440da3%2Cxxx_yyy_2012_02_971568258671_97145631080_6592_1%2Cd7df8995-bd4a-46ea-bc1e-55ccf1590733%2C689a4878-cbc8-4c11-b54d-9be03ba50075%2Cxxx_yyy_2012_02_97149451483_971550526915_402_1%2C1c002780-1ddd-49b0-ba2e-4f4e43a52582%2Ca06ae937-8520-45d8-a66c-93b1911120a6%2Cxxx_yyy_2012_02_971567458567_971557168584_5137_1%2Cxxx_yyy_2012_02_971504957677_97149946040_5580_1%2Cxxx_yyy_2012_02_971500819623_971552457652_242_1%2C57b7f8e3-3130-4a8c-84a4-c86585cfcc55%2Cxxx_yyy_2012_02_971568609410_97140192617_4872_1%2Cf51dc95b-fc62-41b4-82c9-dbb5aa3054a0%2C1910afef-80a8-42b0-a902-bd3e99af27e5%2C566df0a9-7ec7-4939-8a6e-4870916cd1f1%2C70c20bf6-26a8-4316-9a40-ecd5f3218a76%2Cfbccfead-4adf-4925-adbb-fc26c907acb0%2Cdc8d9a26-325f-47ef-980c-18e563c3abb3%2Cxxx_yyy_2012_02_971551441540_97149695223_690_1%2Cxxx_yyy_2012_02_971555799132_97146392889_5111_1%2Cxxx_yyy_2012_02_971507989393_971557524496_249_1%2Cxxx_yyy_2012_02_971507687053_971509096950_5020_1%2Cc67619ec-0665-4f4c-ba20-21173923a22a%2Cxxx_yyy_2012_02_97147404855_971568319568_709_1%2C083ba072-7ad0-4b82-a9c8-2f0744e37c96%2Cxxx_yyy_2012_02_971559747993_971551775138_7706_1%2C6231af00-a4a7-4837-ba66-ae23ad12352b%2Cxxx_yyy_2012_02_971561986379_971551946361_3509_1%2Cxxx_yyy_2012_02_971559662094_97146025901_3739_1%2Cxxx_yyy_2012_02_971506922371_971569609885_9494_1%2C30c54cd1-f60e-470e-9b08-361355763fa7%2Cxxx_yyy_2012_02_97141639156_971508715703_8262_1%2Cxxx_yyy_2012_02_971556824655_971502556595_673_1%2Cxxx_yyy_2012_02_971553521942_97143474825_6534_1%2Cdce52595-6baf-4a5d-a11c-817c030ca94b%2C92d27c48-40fb-4c01-ac68-4636ec459df0%2Cff5e136d-27a9-4973-959c-03b2d848cb26%2Cxxx_yyy_2012_02_971504326455_971505681441_6875_1%2Ce7b2cbe2-7020-4564-ab0e-2e5f2f5ed300%2C76da9728-e8b6-49f8-80fd-a3a9564aed30%2C901f19b9-7243-415b-9bfd-ad9d9bc982d8%2Cxxx_yyy_2012_02_97141039168_971509347329_4877_1%2C5bcbc58c-c05d-420c-9a1a-a35d4a13f208%2C5742dc6c-391c-49dd-9237-53daeeb9f17a%2C2ce00052-a469-40fd-a56e-329d2d6805ce%2C8f0bb56d-a008-4f1d-ac15-bd1773a2eac5%2C5e92d5b4-fe94-4383-8f52-4530799c533c%2Cxxx_yyy_2012_02_97146274636_971567944398_2366_1%2C106856ca-3658-4eb5-ba04-4e45b012e374%2Cd1194a87-156e-41b3-820f-7c9dec7aed58%2C2cfe92ae-7c44-479b-a207-7479dcad53d7%2C2055f1c7-7c30-483b-bff3-9fd26a390e09%2Cxxx_yyy_2012_02_4520886023_971501356998_561_1%2C815a0eae-fac3-4065-9bca-52169fc30a14%2Cxxx_yyy_2012_02_971507759584_971503384342_3658_1%2Cxxx_yyy_2012_02_971501842104_97145307039_9656_1%2Cxxx_yyy_2012_02_971558320893_971509890998_4939_1%2Cxxx_yyy_2012_02_971506005968_971506588937_7504_1%2C979e7a91-959c-4f0b-95a0-3b054f387608%2Cxxx_yyy_2012_02_971509552731_97146770822_317_1%2Cxxx_yyy_2012_02_971503274845_971550250568_5593_1%2C358cb74c-c375-43a1-a06e-05d7738f7792%2Cxxx_yyy_2012_02_97143686827_97141458309_9072_1%2C342fd7ce-58be-41a2-a9a2-0b2275bde319%2C63b8db80-2325-4847-a06d-925c6561a8a2%2Cxxx_yyy_2012_02_97141732066_971501140388_6541_1%2Ca569a168-adbb-4344-a222-8546aca64c6d%2Cxxx_yyy_2012_02_4555112417_971556701765_7275_1%2Cxxx_y\
\
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\fs40 \cf0 2
\fs24 \
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\cf0 2012-03-03 00:56:31.174:DBUG:oejib.StreamEndPoint:*** Read 14418 form ByteArrayBuffer - total read now:|yy_2012_02_97141511933_971554059912_8187_1%2C262d5b42-ce5b-421e-bb62-4129877ef942%2C32c65555-f186-44cd-9b17-756af9383311%2Cxxx_yyy_2012_02_971566203967_97141720114_7377_1%2Cde34b718-259a-428b-980e-6d7a741faac3%2Cxxx_yyy_2012_02_971568422361_971504996774_1986_1%2C516e7df3-581c-47ca-8747-a114d808ae87%2Cxxx_yyy_2012_02_971550052469_971558377392_4028_1%2Cba077555-c79c-4a3c-9606-ed10e3a5c1fd%2Cxxx_yyy_2012_02_971501344536_97149114453_9153_1%2Cc4506d96-2a29-475f-8fa5-29f1d302b23c%2Cxxx_yyy_2012_02_97144662763_971506388727_5622_1%2Cc73fecb2-55f0-4839-9468-da2d1c047049%2Cxxx_yyy_2012_02_971507432980_971502919312_7569_1%2C2364f1dd-5556-43b6-9d0f-991cbbfa5dbb%2Cxxx_yyy_2012_02_97145415010_971568327166_2762_1%2C37479838-3e7b-4a57-80f3-ae2b001836e4%2Cxxx_yyy_2012_02_97140488387_971504977946_6377_1%2Cxxx_yyy_2012_02_4544165601_971566593454_5560_1%2Cxxx_yyy_2012_02_971509311734_971500141795_4610_1%2C6a2a2519-b0d6-4ec5-884b-b87885e8e446%2C2624c499-a372-4ebc-b56e-8c12012a035c%2C7175e9de-df7b-42ed-96ed-34c0d82b6968%2Cxxx_yyy_2012_02_971561018163_971561586011_4083_1%2Cxxx_yyy_2012_02_971556557552_971550540899_5323_1%2C95ee1a62-8737-42fd-9e06-8a333d939799%2C58c1192d-06f4-4235-a0d5-e7ac007178a8%2C422264a4-439e-4077-afce-16a92aaba112%2Cxxx_yyy_2012_02_97148442959_4550278162_9566_1%2Cxxx_yyy_2012_02_971567421124_971560657062_5086_1%2C80b8faf8-36f8-425a-8a77-8c6d9d617afa%2Cb8dda84c-7f05-49dd-995a-34f0c796632c%2Cxxx_yyy_2012_02_971560045996_97147078651_5155_1%2C8b543786-69fa-467f-88ae-c9a786300128%2Ce175d23d-a7e6-4e72-a658-f07178600c46%2C1b17e2e2-82ba-431f-aa9d-08e5df5e5571%2C1fc4e419-c7c9-4008-909f-f4ab210cdc58%2Cxxx_yyy_2012_02_971553233987_971567751556_8351_1%2Cxxx_yyy_2012_02_97143805271_971556330581_5401_1%2Cxxx_yyy_2012_02_97147443344_971557630190_7002_1%2C0cd5ea72-7d3c-4484-ad7b-03f826b505d6%2C738a3593-4c9d-40a1-b3c0-0cdea5b85e16%2Caab87edc-03d6-4576-a367-cca6a12037e4%2Cxxx_yyy_2012_02_971557350251_97141729585_3161_1%2Cb78b11d5-12fa-4e70-aec2-9dea72c8093e%2Cxxx_yyy_2012_02_971502144887_97147870612_9973_1%2Cxxx_yyy_2012_02_971559546367_97147586005_4438_1%2Ce984e00a-d9b3-4fcf-9a23-b514d7903b21%2C125f40cf-d693-49aa-b8e7-208ee901509d%2Cxxx_yyy_2012_02_971559588388_971502922116_9844_1%2Cxxx_yyy_2012_02_971557367913_971559755791_9160_1%2Cc30bd901-ae2e-4752-9f9e-6b6fd8423730%2C9012b41e-baaa-42ad-ac4a-c7b36aaa5773%2C7fdbd3c8-eadd-4311-a06a-a5f3e19a82d5%2Cxxx_yyy_2012_02_97149820983_971509096464_5322_1%2Cxxx_yyy_2012_02_971507811433_971559006364_2516_1%2Cxxx_yyy_2012_02_971565731598_971504119956_1921_1%2Ce01814b2-a170-43dc-91ab-e52592b7152b%2Cxxx_yyy_2012_02_971552835555_971569223490_464_1%2C06192fa6-60fa-4dfe-9ac3-1b272dc48c94%2Cxxx_yyy_2012_02_97141308310_971555535855_9337_1%2C94a18ae9-1538-4fe0-bf9b-73eee25fb830%2Ce64979da-40ad-4238-b145-98efe0a09dc4%2Cbddfdad9-50d5-4967-82b9-c80d525272d1%2Cxxx_yyy_2012_02_971509923071_4538327708_2781_1%2C74a4e449-aa92-4a99-9e6a-7d394f624b70%2Cxxx_yyy_2012_02_4532435408_971503736441_8729_1%2C205f2aed-8135-48d0-9576-3b58d7988b19%2C95d43d24-5483-40c9-9fc6-bbf6597c60da%2Cxxx_yyy_2012_02_971509019211_971555698403_6879_1%2Cxxx_yyy_2012_02_971567112075_971509943560_1597_1%2Cb52fc6a6-be95-4c21-966e-619b4e9066af%2C9da04f2f-6d7d-41b7-b99c-f4b1b071d7a6%2C54025b5e-edfd-49f3-9296-4766b26452fe%2Cced90acf-dea3-4457-b4c9-c50dc4ff1efd%2Cdc2f8e3d-13aa-4a37-8e5e-2ab1a55b13a2%2Cxxx_yyy_2012_02_971505348915_971503801523_9665_1%2Cxxx_yyy_2012_02_97140166197_971505051890_9938_1%2Cxxx_yyy_2012_02_971553568041_97148682421_882_1%2Cxxx_yyy_2012_02_971568933111_971563386647_6375_1%2C52ff6e6d-400d-4cc3-a0c9-34a7a5202441%2Cxxx_yyy_2012_02_971554166203_971508509537_3353_1%2Cxxx_yyy_2012_02_971553838966_971506530263_5076_1%2C227bb540-3074-48f7-98fe-2c4f91dcb607%2C3f1ec5d4-7286-4dc9-bc8e-be5a9a6c53b8%2Cf02182ff-1f68-412d-835e-f008f8d5df14%2C0ca4b4b9-6f89-403e-9476-a582324d2b7e%2Cxxx_yyy_2012_02_971507236537_97143468714_815_1%2Cxxx_yyy_2012_02_97142592710_97142052229_9701_1%2Cxxx_yyy_2012_02_971507516829_971555367762_3426_1%2Cxxx_yyy_2012_02_97146288430_971551437778_7152_1%2Cab8a7af1-027c-46fa-94f2-356da786faa2%2Cxxx_yyy_2012_02_971506665093_971553365092_648_1%2Cb3823efe-c8f5-4960-a772-422c1f9f8939%2Cxxx_yyy_2012_02_4573124308_97142364863_9800_1%2Cxxx_yyy_2012_02_97147754390_971553964494_3908_1%2Cxxx_yyy_2012_02_971556118943_4544404011_9638_1%2Cbdc43302-8ea3-487f-846e-55680c82bd7c%2Cb50fb566-cd7d-4f8f-a5f6-b96d15e45817%2C5b80cc10-f88b-4a56-905e-3be9437803ae%2Cfe94029d-d409-4cf7-b8d7-577c5d89a65a%2Cxxx_yyy_2012_02_971561960124_971567610697_9301_1%2Cxxx_yyy_2012_02_971504816490_971559476181_5821_1%2Cf0a4bac4-ad17-45e2-8f09-0255a91311e3%2Cxxx_yyy_2012_02_971508010552_971569394396_8540_1%2Cfbb14b0d-a650-47f1-9e61-3b1d2b374a8c%2Cxxx_yyy_2012_02_971502848444_971553694032_4097_1%2C41e30b47-592f-4b65-8595-8e0e514af3bf%2C8bd1cafa-b56a-433f-9ffd-c771f0b904e2%2C7644c2fe-287a-4ee8-8ffb-46cb42c0bace%2Cxxx_yyy_2012_02_971554749088_97148332706_2660_1%2Cxxx_yyy_2012_02_971566203365_97144329061_3406_1%2Cxxx_yyy_2012_02_971506337998_971500395193_8557_1%2C6ee78806-015f-4d8e-a067-772912b61489%2C1ed2ae21-51a5-4408-8fc4-ed90a8588357%2Cxxx_yyy_2012_02_971551040499_971560712439_7361_1%2Cd32acfe6-80f5-4f4a-9905-8baddcdb816e%2Cxxx_yyy_2012_02_4575326412_971500895992_1571_1%2Cxxx_yyy_2012_02_97140641306_971506712431_6426_1%2Cxxx_yyy_2012_02_97141078349_971506396071_4890_1%2Cxxx_yyy_2012_02_971567648691_971567558171_6203_1%2Cxxx_yyy_2012_02_971501101007_971556627078_4727_1%2Cxxx_yyy_2012_02_971567244781_971553874928_4342_1%2Cxxx_yyy_2012_02_971507703593_4559777109_7305_1%2C5936c58f-39d5-4357-979a-d85647abeac2%2C3c7c220c-7a9e-4763-8f3d-81bcc9733d42%2Cxxx_yyy_2012_02_971500119969_971563093399_9073_1%2Cxxx_yyy_2012_02_97144532053_4548248677_2219_1%2Cxxx_yyy_2012_02_971550687475_971560293315_5210_1%2Cxxx_yyy_2012_02_971501587930_4527919026_7763_1%2Cxxx_yyy_2012_02_97148591650_971558959086_2438_1%2Ca5f5c850-6cbb-47fa-8e0d-87275999aa39%2Cxxx_yyy_2012_02_971502721556_971505689720_2827_1%2Cxxx_yyy_2012_02_971502434407_971503322244_5267_1%2Cxxx_yyy_2012_02_971563992962_97140860496_8292_1%2C735dbc8d-89e2-4544-9751-9386ecb799cf%2Cxxx_yyy_2012_02_971558545715_971557634050_9613_1%2Cxxx_yyy_2012_02_971507701918_971501852969_6467_1%2C11ed1f3a-4eb3-4ea5-9460-876bf251db64%2Cxxx_yyy_2012_02_971558478744_971507758485_3295_1%2C23850494-3007-4453-a5e8-562e84265ac5%2Cxxx_yyy_2012_02_971507695942_971553272513_6530_1%2Cxxx_yyy_2012_02_97142082304_971550575825_3520_1%2Cxxx_yyy_2012_02_971556775174_4558237840_283_1%2Cxxx_yyy_2012_02_971508552721_97148865958_8228_1%2Ca2e4cfcd-563b-4bea-8b1a-7854272cac14%2Cea976ec2-6dd5-431c-86e6-300838e4cf66%2Cxxx_yyy_2012_02_971558836774_971504340195_875_1%2C0304481c-e096-4a39-8bb1-c3a4c5b0c412%2Cxxx_yyy_2012_02_971556265002_971560351692_4800_1%2Cxxx_yyy_2012_02_4577637534_971561482519_4549_1%2C7f48b0e8-0967-438d-93e3-4bb870b04009%2Cxxx_yyy_2012_02_4561239905_971502879866_5554_1%2Cxxx_yyy_2012_02_971558409066_971551261264_8717_1%2Cccaa7054-13ea-4991-8d03-5c420a3422db%2Cxxx_yyy_2012_02_971500569359_971565141887_7221_1%2Cxxx_yyy_2012_02_971560676093_971563914076_7754_1%2C99217c23-e29f-4bfe-afc9-0cd4b386eaa7%2Cxxx_yyy_2012_02_4581391033_971568283648_8257_1%2Cccaf294e-cecd-46d8-a50e-abed336cf7f9%2Cxxx_yyy_2012_02_971567744698_971555085487_1669_1%2Cxxx_yyy_2012_02_4558096265_971567951990_867_1%2Cxxx_yyy_2012_02_971509114776_97147066485_3206_1%2Cxxx_yyy_2012_02_971554082296_971564776792_861_1%2C78e56df3-d2f9-408d-938c-80096d3e9908%2Cxxx_yyy_2012_02_971551211031_971507042356_6371_1%2C6ad7dec3-93ed-4444-a5b0-d7d3f06844c9%2C50079246-f756-4112-9168-e8c226a7146e%2Cd92d9e5e-7d99-4d82-84be-e417e5d71852%2Cxxx_yyy_2012_02_97148754403_971562178526_9883_1%2Cxxx_yyy_2012_02_971552602701_971565163062_2710_1%2C2fee7b92-45b8-40f6-886a-c27c1a7bed31%2Cxxx_yyy_2012_02_4556844129_971561963851_8815_1%2C3cdc508c-0a9b-480a-8b53-85f24e8c4d15%2C1f211386-9c1a-464d-80cf-30583c7a0770%2Ca4d3346d-9cb5-42eb-87fc-b9ccecb9724b%2Cxxx_yyy_2012_02_97140002634_971508615115_6142_1%2Cxxx_yyy_2012_02_971560097180_97148648768_9061_1%2Cxxx_yyy_2012_02_97143698283_97148272367_6941_1%2C4fd733f8-3fe5-4765-a338-dfdd55a8f9db%2Cxxx_yyy_2012_02_971502699911_971555365447_6564_1%2Cxxx_yyy_2012_02_971560246630_4561852531_9397_1%2Cxxx_yyy_2012_02_971567330524_971551190500_8873_1%2Cd39a110d-8fc3-48ab-95b7-ee22e35516c1%2Cxxx_yyy_2012_02_971569854207_971501789899_2323_1%2Cxxx_yyy_2012_02_971559959149_97149493156_1794_1%2C01c0c903-cd0f-4b32-b23c-167cd1b1f089%2Cxxx_yyy_2012_02_971500702676_97146926301_3794_1%2Cxxx_yyy_2012_02_971503924850_971557267779_1801_1%2C217e28f4-dcdd-4e93-bf08-60138ea788fe%2C3dddac23-bb29-4b93-9135-b15277c36048%2C4ef3baf5-9d90-4ceb-99d9-aa43a8f8021f%2Cxxx_yyy_2012_02_971561297844_97143248521_4748_1%2Cxxx_yyy_2012_02_97145899815_971565191976_9569_1%2C05f48bf7-7087-481d-876a-0065467b7803%2Cxxx_yyy_2012_02_97145959375_971569812831_5132_1%2C4a88a729-f3a9-419a-8e1f-3a6a452c79ce%2C5a7a7ca1-d487-49b2-93d0-aef89b9ac348%2Cxxx_yyy_2012_02_971504598805_971501082574_3341_1%2Cxxx_yyy_2012_02_971503512854_971559238786_5919_1%2Cxxx_yyy_2012_02_971503275845_97142783999_636_1%2Cxxx_yyy_2012_02_971557231613_971565831843_5063_1%2C11dab8c8-ea4c-4229-9784-3c18830d2858%2Cxxx_yyy_2012_02_97140801353_971509927002_6168_1%2Cxxx_yyy_2012_02_97142111722_971561576933_8833_1%2Cxxx_yyy_2012_02_971503565876_971504276940_2063_1%2C7772509d-d751-4a30-bd63-d675c63ea76d%2Cxxx_yyy_2012_02_971558306406_97140668924_9995_1%2Cxxx_yyy_2012_02_971501958979_971507946495_1471_1%2Ca27e7e4b-0705-45e1-8a18-25b680e3c2a3%2C42150355-4cba-4468-9546-724c46d08a4a%2Cxxx_yyy_2012_02_97141916203_97148189194_837_1%2Cxxx_yyy_2012_02_971506774433_971557363367_4_1%2C86a1e988-3aec-4a14-932c-c5eb1b0828e6%2Cxxx_yyy_2012_02_971500947525_971500595693_4221_1%2C8dbe4068-7e52-4da8-8b90-7de700161f2d%2Cxxx_yyy_2012_02_971505724999_97147559328_1821_1%2C1c41b0a9-a94c-4309-a6aa-020e0e6e6a81%2Cf19c5058-963b-4ee7-93ca-1dd4bd15c516%2C22577f59-7c27-42c8-ad2f-f2a925cf29c0%2Cxxx_yyy_2012_02_97146487833_971508510549_4204_1%2Cxxx_yyy_2012_02_4577380079_97141624230_3257_1%2C79b39456-401b-4870-aa07-e5f59703e84e%2C92503cae-681c-4876-8958-8dd6cf941e3a%2C227e6dc1-be01-4e8f-ada0-41c1511cce19%2Cxxx_yyy_2012_02_971506348576_97143246399_9891_1%2Cxxx_yyy_2012_02_971559830815_971507883680_4670_1%2Cxxx_yyy_2012_02_971501759307_97145956772_3854_1%2Ce7a22f20-987c-445b-b1e6-0c2227ad34c9%2C64041f62-8f49-4ed8-953e-3da0c41609b7%2Cxxx_yyy_2012_02_4530079658_971508374028_4309_1%2Cf85707fc-b4d3-4e4f-96b9-1986cf40fad1%2C74a722b0-a3ee-434d-9e53-405109cf29c3%2Cxxx_yyy_2012_02_971506182617_97147717526_3791_1%2Cxxx_yyy_2012_02_971562699878_971505984310_13_1%2Cxxx_yyy_2012_02_97144066341_971507241968_7217_1%2Cxxx_yyy_2012_02_971565580505_971501528489_4952_1%2Cf8213645-8b39-4833-9fb4-9187ce604ae1%2C6e3412ae-733e-4980-862f-0421c84c0b8e%2Cxxx_yyy_2012_02_971565985658_971564570092_6487_1%2Cxxx_yyy_2012_02_97147916732_971569132200_5162_1%2C8112023b-df6f-445d-baf1-7e01746d0c87%2Cxxx_yyy_2012_02_971561243407_971559042019_590_1%2Cxxx_yyy_2012_02_971564879449_971504928680_1457_1%2C85b1ffe3-0160-4d6d-ab14-3522cb4519eb%2C98114dbe-6733-4718-b6c5-f358f6019160%2C749827a9-809d-4e04-8ff0-f368d4040d03%2Cxxx_yyy_2012_02_97148870771_4556597995_6520_1%2C4f433fba-f777-4fb9-afaa-67b7af231b2e%2Cxxx_yyy_2012_02_971505927187_97145873045_9309_1%2Cd4dd1a88-93f7-482f-bd37-654ed510ff65%2Cxxx_yyy_2012_02_971555961238_971500683902_4677_1%2Cxxx_yyy_2012_02_971562291348_971567627146_1833_1%2Cxxx_yyy_2012_02_971551293074_97148383083_7178_1%2C4ec330fc-3e99-42fb-8181-032f86a35e03%2Cb23f2c56-5e2b-4c79-81ae-cfeef3d89146%2Cb1452f75-9ae7-427a-b8d5-3f321a59cd56%2Cxxx_yyy_2012_02_971559411625_971559930787_5591_1%2Ca7737a8c-aa61-4aad-a1eb-7490d906554a%2Cxxx_yyy_2012_02_971501128911_971504616106_1836_1%2C6b2c2a6b-9478-4e56-a963-82a4cf2d3122%2C0ae006a8-12ee-4d90-b30d-b365de0389f3%2Cxxx_yyy_2012_02_971559271353_4532365220_6743_1%2Ccb906d11-7fe1-4068-a426-b4d03589808e%2Cxxx_yyy_2012_02_971500358517_971551143871_5268_1%2C549c09df-5ce5-4667-9c3a-c2c801e666e7%2Cxxx_yyy_2012_02_971567119755_4541942732_485_1%2Cda59cea9-a286-49ec-840e-c62394ec4b2e%2Cxxx_yyy_2012_02_971556983895_971568001953_4456_1%2Cxxx_yyy_2012_02_97144674647_971560326565_4747_1%2Cc9c2e1d9-4a97-4d19-a03c-786025a782de%2Cxxx_yyy_2012_02_971568674692_971507078283_2391_1%2Cxxx_yyy_2012_02_97140146842_4552672621_5492_1%2Cxxx_yyy_2012_02_971500907727_971564173080_6325_1%2Cxxx_yyy_2012_02_971551528534_971561761006_7396_1%2C351a525d-b83f-4992-8b60-d9c665b01df7%2C642e26df-918a-49b9-86d0-203a786070e1%2C74fde7e1-2c77-406c-8eaf-68b6759dcaf0%2Ceaf776d9-fb12-4b08-85fd-83fb6e7b03e7%2Cd56a65dd-34b8-444d-8dd4-c7c0be554ccb%2C0afb398f-e28b-43de-9b4e-1efb55db4cae%2C2cecb63e-f460-480a-a161-97032746a1ef%2C87f46c8d-9f82-4f15-b4ed-df9e9674b672%2Cxxx_yyy_2012_02_971502295404_971558858142_5067_1%2Cad5e5fca-96b8-4850-b174-940b84653eca%2Cf37f3a05-7277-457f-88a3-d17215e2a9c4%2Cc74e4b3e-7ba2-42d6-89f6-69b6715cd4a9%2C0720c921-ad42-42ff-a2ed-9a64f86d5869%2Ce04b36a9-a86d-49ad-a5d4-ac8c4ae40c67%2C0d1eb8ea-61ad-4331-a8d9-7eefaa24cbb8%2Cc85e48c8-3662-447d-b2c3-20e871e75404%2Cxxx_yyy_2012_02_97143754307_971559496670_1027_1%2Caaf4fc08-aa78-4d19-94bd-17c25e342997%2C4c99b858-6d90-46b4-91fb-755eeba8819c%2C4e38e211-291b-4956-aeef-41887bf26db2%2Cb858783c-21dd-43ad-9bc1-58c59a577727%2C1550478b-93a2-4a58-9a35-872893f60289%2Cxxx_yyy_2012_02_971565800209_97147353755_5384_1%2Cxxx_yyy_2012_02_971556245066_971551238159_1824_1%2Cedc8ea60-ba2c-4002-98d6-005a81bf154d%2Cf62f285e-e9f9-4a28-ae37-9c9da8046799%2Cxxx_yyy_2012_02_971555457428_97142003623_1354_1%2C41f166e8-dd7c-41db-9f6d-6d97496b9b48%2Cxxx_yyy_2012_02_971504910531_971507042459_4356_1%2Cxxx_yyy_2012_02_4561441405_971560226611_6403_1%2Cxxx_yyy_2012_02_971508177984_97146473532_1082_1%2C0c14dab8-ced7-4047-9f1e-fd5559476a97%2Cxxx_yyy_2012_02_971562820782_971506114202_3501_1%2C367adfa1-d039-4300-b6ec-ca3b5b112e5e%2Cxxx_yyy_2012_02_971501365497_971553766528_2278_1%2Ca5bb194c-d785-40d8-98c4-47bfb16a357f%2C4cc97f1f-45e1-4316-aa49-33acf320e031%2Ca52d0dd3-b094-43f2-980a-ded4aff618e3%2C11f0ebd4-62fb-45c0-af6c-9f79c3fca620%2Cxxx_yyy_2012_02_971507224330_971562630728_6027_1%2C2b6c73d0-4f8e-411f-b937-d63f1c17e67b%2Cxxx_yyy_2012_02_4532924893_97143741614_1065_1%2Cxxx_yyy_2012_02_97143561913_97140408533_5302_1%2Cxxx_yyy_2012_02_97146335947_971562292226_857_1%2Cxxx_yyy_2012_02_971561754192_971508445468_8176_1%2C87c0c091-8072-4a0a-917d-a94aba7b1dcb%2Cxxx_yyy_2012_02_971569044461_971564181030_9591_1%2C48c30bf9-06e7-4b42-96bd\
\
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\fs40 \cf0 3
\fs24 \
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\cf0 2012-03-03 00:56:31.175:DBUG:oejib.StreamEndPoint:*** Read 10136 form ByteArrayBuffer - total read now:|-268bafe35b63%2Cxxx_yyy_2012_02_4526046956_97146332947_9780_1%2Cxxx_yyy_2012_02_97148860939_971506368327_621_1%2Cxxx_yyy_2012_02_971553849153_971507963885_7611_1%2Cxxx_yyy_2012_02_97146321694_97140007073_6804_1%2Cxxx_yyy_2012_02_971505233393_971550969744_8651_1%2C38386f52-3127-476f-b7bc-01ba589269e1%2Cxxx_yyy_2012_02_971508177864_971565361084_3843_1%2Cxxx_yyy_2012_02_97143472806_97140722651_7523_1%2Cxxx_yyy_2012_02_971503755507_97144841378_4382_1%2Cxxx_yyy_2012_02_971564563956_97143815651_3459_1%2Cec78d4a3-eaee-4d2b-82fd-a969c2c7b9ef%2C5f01527a-1975-488f-856b-18b4697b20d3%2Cxxx_yyy_2012_02_97145093769_971504258795_3839_1%2Cxxx_yyy_2012_02_971552424093_971563356360_1790_1%2Cxxx_yyy_2012_02_97144317260_971566989099_9776_1%2Cxxx_yyy_2012_02_97141811685_97143858012_1348_1%2Ca74ae293-c28e-4e63-959a-ca2c746ba480%2Cb82c51d1-342d-4633-acd8-3890ef29f9ef%2C1c8d0ccb-6c6d-4677-8079-0337f638f5a1%2Cxxx_yyy_2012_02_971562713502_971563295946_2283_1%2C0531865b-5d80-4620-82f0-57ad4781d60d%2C8306b691-ff45-4f80-99ab-a65535a8ee72%2Cxxx_yyy_2012_02_971551179217_971509354353_1473_1%2Cc8552350-ebd5-47cf-a9b5-17703dcdfc3c%2Cxxx_yyy_2012_02_971552755895_971502660060_8633_1%2C9b67f2b8-11e2-409d-9bc6-33e9d523d529%2C5afd1f98-457a-410f-94d6-3cb794dca714%2C171f635b-46e4-4a08-be22-a496db0c67c2%2Cxxx_yyy_2012_02_97147039725_971503482150_9103_1%2C6e42c423-1091-4ba8-91ef-d6758eb24f3a%2Cxxx_yyy_2012_02_971562620762_971508515209_2072_1%2Cxxx_yyy_2012_02_971561159083_97142229994_2488_1%2Cf6af79ed-2716-4ddb-8818-566f020817da%2Cxxx_yyy_2012_02_97140251920_971562722673_7013_1%2Cabc5086f-8ad5-460a-a7df-5c7022822f8c%2C37544d64-f5fb-4774-a703-c4e81c848b00%2Cccba04e3-b97a-47ca-843d-570be7ac962d%2Cxxx_yyy_2012_02_97142140593_97148661738_6583_1%2Cxxx_yyy_2012_02_971505400018_971562729096_4770_1%2Cxxx_yyy_2012_02_971503675282_971556965768_5998_1%2Cf332d9b7-2d72-448a-8c43-bf0f702a840b%2Cxxx_yyy_2012_02_971550162690_971554352721_3954_1%2Cfe032890-66c3-4c5d-880f-e22c7095e656%2C6e764f2d-d4d0-4f5f-8bf6-ac52c56c455d%2Cxxx_yyy_2012_02_971503663672_971559914357_1906_1%2Cxxx_yyy_2012_02_971561368968_4534307094_9163_1%2C6595f133-2c9d-48bc-9104-82e0b83292c8%2Cxxx_yyy_2012_02_971558920880_971568727508_7771_1%2Cxxx_yyy_2012_02_971564117900_4540979760_6064_1%2Cf39e5fbe-47e9-48fb-bad9-b77538ac238e%2Cxxx_yyy_2012_02_971565851201_971563312468_6657_1%2C0ef791ac-6b6e-4346-8dbe-b0c8bc994f08%2Ceed81ab0-68e0-40c2-afb7-4faf08659012%2Cxxx_yyy_2012_02_971506903022_971563180170_7334_1%2Ccff64735-b5fc-47cb-8681-45f4ae2c3968%2Cxxx_yyy_2012_02_971566490946_97142149137_6864_1%2Cxxx_yyy_2012_02_4575535049_971550573028_9304_1%2Cxxx_yyy_2012_02_971569385780_971555085631_5530_1%2C9752a29f-f410-4969-ba43-2503b28559fc%2Cf5f57e90-1d25-4663-b4b6-0f3ef148fb4e%2Cxxx_yyy_2012_02_97147098963_971554254066_9176_1%2Cxxx_yyy_2012_02_971560644461_971509492836_3106_1%2Cxxx_yyy_2012_02_971509220054_971556700188_7227_1%2C0c1dd655-6020-4488-9951-e17697cc8bec%2Cfb968560-b466-44fd-b995-1646ebf4639d%2C9ed3d309-f501-4fc0-948e-b5860417adab%2Cxxx_yyy_2012_02_4551800896_971555029916_6271_1%2Cxxx_yyy_2012_02_971508336280_971560295058_2151_1%2Cfe997a8c-fd3e-4227-a79a-0a08569dc6a1%2C08fcd791-7fad-4495-beb2-797bd535bcc3%2Cxxx_yyy_2012_02_97146675275_97143721321_745_1%2Cb6594d8a-960b-4d6f-b4de-b55a6350b233%2C821f3432-ca67-4029-bd99-99d7f677eb4d%2Cxxx_yyy_2012_02_97147252324_97147258150_5858_1%2Cxxx_yyy_2012_02_971564042367_97144683141_1746_1%2C53bf4268-855b-4f17-b3f6-91e915fbb5eb%2Cbc3d7517-fa80-4ed3-9ed7-b909b9b9dc7c%2Cxxx_yyy_2012_02_97149299786_971554283383_7070_1%2Cf634f3c5-b005-4ad8-a0b2-d1e2f4fec897%2Cxxx_yyy_2012_02_971506429720_971552865103_6509_1%2Cxxx_yyy_2012_02_971504823147_971500149026_5607_1%2Cxxx_yyy_2012_02_971566381488_971569972253_4606_1%2Cxxx_yyy_2012_02_971562617803_971564390259_4502_1%2Cxxx_yyy_2012_02_971502591972_4532520372_5010_1%2Cxxx_yyy_2012_02_971567111176_971500674140_5215_1%2C28f1d4e2-f374-48f6-bd62-e050a5f3cce4%2Cxxx_yyy_2012_02_97149522627_97142150625_7345_1%2Cd740ec00-cacc-4f51-83fb-b4c59e32a062%2C547d198a-921d-489e-b8fb-135ec8d5f072%2Cfefcb6af-2d07-42e8-a7c5-7e13a817409f%2Cb3eee743-52ca-411a-81d5-5c60479cadc2%2Cxxx_yyy_2012_02_97141500360_971569625490_7436_1%2Cxxx_yyy_2012_02_971555343479_971552031452_6958_1%2C2697a77e-15b6-4fd5-95fe-c835631ebe1f%2C775c7cfd-b3f5-4599-a8f8-ef1498ab08a5%2Cxxx_yyy_2012_02_97140188159_971500262237_4295_1%2Cb664cf4b-862e-4ca6-9aca-d414dbcb5d29%2Cafef2a37-bd14-423c-880f-b044fc361f4d%2Cxxx_yyy_2012_02_971554575948_971554798595_4317_1%2Cc0f3a5a7-5d26-4a38-8dbc-d7af53d226d7%2Cxxx_yyy_2012_02_971508996499_971556034309_9223_1%2C0ec4924b-103b-435d-b232-6246f0938961%2Cxxx_yyy_2012_02_97147461503_971507095268_9018_1%2Ca49219d3-6793-4019-8399-ea7d29c18741%2C27f532c2-783f-445e-96c9-962f555df1db%2Cc277d389-dcea-4fec-a784-4f39e94a69f5%2Cxxx_yyy_2012_02_971502225655_971551954529_3882_1%2Ca77ebe6e-506f-4d97-891a-ae3399dc0f41%2Cxxx_yyy_2012_02_971506012088_971557563766_5869_1%2C16a3a3d0-0679-49ef-8793-63c64bceafc0%2Cxxx_yyy_2012_02_971550238100_971556792441_5740_1%2Ca6486430-e97e-427d-b6f1-4498eef2b594%2C4aecc5df-32fd-4d21-b8de-f8bb26fe10d0%2Cxxx_yyy_2012_02_971557174354_971507357163_7203_1%2Cxxx_yyy_2012_02_971561166470_971557383920_4729_1%2C201d6486-a4a1-4fa7-8ccf-19cddcd0f7c8%2Cxxx_yyy_2012_02_971505169652_971559067695_1811_1%2Cxxx_yyy_2012_02_97145198803_971552748954_332_1%2Cxxx_yyy_2012_02_971552272420_97149184330_5006_1%2Cxxx_yyy_2012_02_971507057513_971567698854_2706_1%2Cxxx_yyy_2012_02_971554017570_971550642591_9985_1%2Cxxx_yyy_2012_02_97144794076_97146650735_4943_1%2C67940025-6a00-439e-967f-62aad9bd1747%2C553a5eb1-4b2f-40bc-b7f9-e90dcc40eed8%2C73ce1d20-9022-4a2b-a0b7-f79c8866a081%2Cxxx_yyy_2012_02_97146852289_971552165346_1470_1%2Cxxx_yyy_2012_02_971556702854_971506075333_228_1%2Cxxx_yyy_2012_02_971566987973_971564914576_1856_1%2Cxxx_yyy_2012_02_971501490191_97142076198_1717_1%2Cxxx_yyy_2012_02_971562707904_97146559998_2145_1%2Cxxx_yyy_2012_02_971559774547_4528508495_6435_1%2C01214561-a7e3-499b-90b2-6b79d3435ec2%2C652b6fb4-42c5-4315-aa2b-be6627a1ca1c%2Ce015d654-dd3b-4eee-8ea0-cff04a67287a%2Cxxx_yyy_2012_02_971566445103_971558366223_9099_1%2Cxxx_yyy_2012_02_97148990555_97140304375_6297_1%2Cxxx_yyy_2012_02_971567920714_971562473084_9194_1%2C0ab3d2f6-68e3-49cb-9bcd-4cc0c348b843%2Cb2f777fc-5449-4864-84e6-f290adb1be5e%2C127f4a80-0299-4e74-85d8-9b04fd0c7cc6%2Cxxx_yyy_2012_02_971503827307_971568877432_8990_1%2Cxxx_yyy_2012_02_97140733432_971560251181_5239_1%2Ceb520a2f-74ec-4f5b-9177-ceab598ac7f4%2Cxxx_yyy_2012_02_971557551870_97140978616_2825_1%2Cxxx_yyy_2012_02_971552832662_971557836801_5103_1%2C306cdaa3-3c5e-457c-bcee-369c522e9ce5%2Cxxx_yyy_2012_02_971508209337_971563096715_7931_1%2C69850a2f-e3a2-4ab8-b5ee-a39b32802ec0%2Cxxx_yyy_2012_02_971567313029_971561602144_1094_1%2C1e58c2a1-6a72-47b6-84d7-cc98a54c9b23%2Cxxx_yyy_2012_02_971501321156_971505563520_3847_1%2Cxxx_yyy_2012_02_97149252334_97142326997_6193_1%2C6ac7203b-951b-441f-8994-8554b422122e%2C03b0a00b-d023-4efa-b7e6-fee25aafebc3%2C9c76bfd0-873f-468c-b7c6-5a6fd7415419%2C728ba604-70f4-401c-b784-cf88d600be76%2C0bbd3ebc-eebb-44fd-a264-8f21d22908d5%2C6f48ae50-9500-461b-af9d-14d0833c9cc9%2Cxxx_yyy_2012_02_971558646318_971562805567_8611_1%2Cfcc2f39f-9d82-4771-8240-fcd72656bafe%2Cxxx_yyy_2012_02_4550255029_97146836652_4372_1%2Cxxx_yyy_2012_02_971569709425_971565575208_6521_1%2Cxxx_yyy_2012_02_971504029822_971507927292_5695_1%2Cxxx_yyy_2012_02_971564905120_97143741016_7204_1%2Cxxx_yyy_2012_02_971553911654_971563673752_3500_1%2C5b8da0ee-87bb-44e1-ba7c-00c0db283212%2C26dc8166-618b-4324-8aed-d08c9517f6ca%2Cd99c160d-3811-4df8-bb28-ffa256da43a9%2Cf04a585c-b810-479a-bf9c-11bb9a9ded6a%2Cxxx_yyy_2012_02_971557766716_971505997625_2303_1%2Cxxx_yyy_2012_02_971566440274_971558951532_4206_1%2Cxxx_yyy_2012_02_971554520650_971505338569_4274_1%2C91a27606-e9d9-41d3-b5a0-98796ddf8f13%2C5ca70a14-2e57-4c41-b16b-6bc2292ff3e8%2Cxxx_yyy_2012_02_97141306556_97147664254_2846_1%2Cb27361d1-0925-494a-8a35-46c5bb2876e1%2Cxxx_yyy_2012_02_97143600368_971563135182_7023_1%2C61dc4145-d286-4601-8b3c-06b206ee29ba%2Cxxx_yyy_2012_02_971505608246_97149090696_6174_1%2Cc53f1617-fe6a-4eba-b465-466cf6e334ba%2C24f120df-16e6-4d54-81d4-056c85ec8f95%2Cb9e74957-73e7-496d-954f-693d6823bfda%2Caec6ef9e-8584-4c6a-9ccf-faaf892e758f%2Cxxx_yyy_2012_02_971557137265_971500150729_6759_1%2Cxxx_yyy_2012_02_97147539818_971503860115_6449_1%2C0d1154c4-2982-4950-b1f4-24fe9dc85de6%2Cc2be0258-d47c-4a95-b87d-7265543a8764%2Ce8ac316e-48ce-4726-923f-c619ba7e1f50%2Cxxx_yyy_2012_02_971500238029_97143004820_5801_1%2Cxxx_yyy_2012_02_971564388239_971559153725_7602_1%2C1498620a-9942-472d-bffb-e129c15090b6%2Cxxx_yyy_2012_02_97147197396_971501109125_1171_1%2Cxxx_yyy_2012_02_971558352429_971561197555_3783_1%2Cxxx_yyy_2012_02_971556611365_971562718782_7546_1%2Cxxx_yyy_2012_02_971507550306_97148509117_3522_1%2Cxxx_yyy_2012_02_4574405050_971501782333_2913_1%2Cxxx_yyy_2012_02_971560976418_97142093356_8501_1%2Cxxx_yyy_2012_02_971552555281_971559656042_6731_1%2C5113c66d-fb0b-4f4d-94a2-e0a7244dd096%2Cxxx_yyy_2012_02_971555566469_971505241561_7230_1%2Cxxx_yyy_2012_02_971561715168_971507112741_5951_1%2Ca39b1d7a-e674-4b4c-b27b-387756032426%2Cxxx_yyy_2012_02_971505228157_97142794107_5907_1%2Cxxx_yyy_2012_02_971505574788_971566945025_8229_1%2C138288cd-19b9-48ae-ab02-49c3b6410f9b%2Cxxx_yyy_2012_02_97143730799_971553230546_7008_1%2Cxxx_yyy_2012_02_971557219445_971509478999_8247_1%2C55dea9bb-245e-49f7-b9b6-85e1600006b9%2C6b987310-3485-4000-a350-e00628f8fd31%2Cxxx_yyy_2012_02_971562183127_971566229462_3458_1%2Cxxx_yyy_2012_02_971555289577_971551904458_1320_1%2Cxxx_yyy_2012_02_971502957532_971504958514_2258_1%2Cxxx_yyy_2012_02_971557278859_971557822936_3275_1%2C164ce725-a349-4237-8255-c6f3949958eb%2Cb90f2321-052b-43ca-984f-abc55c8e6bf1%2C827de9e1-e965-4959-b0ba-c1acfbb4fa1c%2C524cff6a-a5cc-4daa-a4b3-074c59259f11%2C6a0dd466-6b1d-4f3f-a883-5dee5a4a1285%2Cb4dbd421-b534-48e5-af7f-ebd9de079fe1%2Cc0840039-6232-472f-9ed3-96ec90053f5d%2C48c5437f-b18a-4ea0-bfd3-2cb08f903bfd%2Cxxx_yyy_2012_02_971506092676_4528988671_3385_1%2Cf5e041cf-d624-41b4-8a63-d6502954b2f5%2Ce2a3e7ad-62c2-4119-a7dc-c139579620de%2Cb2932dcf-be5c-4cad-af4e-876b2543c113%2Cxxx_yyy_2012_02_97146\
\
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\fs40 \cf0 4
\fs24 \
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\cf0 2012-03-03 00:56:31.182:DBUG:oejib.StreamEndPoint:*** Read 6632 form ByteArrayBuffer - total read now:|408849_97145920584_711_1%2Cxxx_yyy_2012_02_971568057354_971560581400_5309_1%2Ca6c37b72-1794-4561-a1c9-e3f4f962781b%2Cxxx_yyy_2012_02_97148486007_971507885528_5130_1%2Cxxx_yyy_2012_02_971508057377_971560311468_2882_1%2Cxxx_yyy_2012_02_971501436729_971558464141_794_1%2Cxxx_yyy_2012_02_971560762297_971568944699_1243_1%2C8c1dd343-2320-49da-9367-a8df43b565e8%2Cxxx_yyy_2012_02_971557525139_971563210531_3451_1%2Cxxx_yyy_2012_02_971557541097_971563138824_5556_1%2Cxxx_yyy_2012_02_971509724204_971564575468_6348_1%2C33b57418-cfc4-471a-a054-29413f28a81c%2Cb2332ca7-d6c5-4134-a540-59aa70b6bce4%2C807f4a71-f033-4ff5-9bff-ae7509c77c66%2Ccd97bc9c-814f-45a5-a034-a5b5efb05597%2C67396269-80e6-4941-89a0-f3062255c49f%2Cefe1d287-4ba7-45b6-be4f-28b134ab3ea0%2Cxxx_yyy_2012_02_971555081311_97143700742_2664_1%2Cxxx_yyy_2012_02_971564648257_971565592689_6915_1%2C7b88687b-a968-402b-9fc8-0d58067d3f0a%2C13fb46a5-d4b5-47a3-8a40-8c76f8ae07c0%2Cxxx_yyy_2012_02_97140694425_971506489292_2729_1%2Ceb6b88e3-f6be-473d-afa6-0073293435e9%2Cxxx_yyy_2012_02_971550664169_971561089228_2486_1%2Cxxx_yyy_2012_02_97148629324_971506231404_776_1%2Cxxx_yyy_2012_02_971502707351_97140420447_9112_1%2Cxxx_yyy_2012_02_97148579525_971500036449_4454_1%2Cxxx_yyy_2012_02_97141805693_4547350466_1080_1%2Cxxx_yyy_2012_02_4555351142_97146853475_527_1%2C76016827-be7e-4b5a-97b5-44164e7a1970%2Cxxx_yyy_2012_02_971502291898_97148678153_5539_1%2Cc642c7fd-3d94-49f7-8368-16d08e2c06e0%2Cxxx_yyy_2012_02_971550260118_971508289560_9663_1%2Cxxx_yyy_2012_02_971501989355_971552101654_9668_1%2Cxxx_yyy_2012_02_971505875031_97142460986_2627_1%2Ca5b9d73d-aeaa-49c2-8935-f955e9926713%2C0bfa5dac-d2f4-4596-97f3-b4dcdd57d24e%2Ce01220af-df06-49e3-bbd1-78aeee4b5756%2Cxxx_yyy_2012_02_971501773914_97144839219_4601_1%2Cxxx_yyy_2012_02_971565107117_97147359051_1026_1%2C5f4b266c-d4f3-4d30-9c18-dcf2448b4c5a%2Cxxx_yyy_2012_02_971509081683_971551971121_7313_1%2Cabe618e7-3032-4169-8bda-ba09e315638a%2C539da780-7c8f-42e2-8168-412b1d92913e%2Ccce38d00-c2d5-4e75-b037-0c4b7e3b725b%2Cxxx_yyy_2012_02_97145920836_971505712626_850_1%2Cxxx_yyy_2012_02_971508502414_97140732974_2983_1%2Cxxx_yyy_2012_02_4532704457_971506955791_772_1%2Cxxx_yyy_2012_02_971502078418_971501314172_8606_1%2Ca4f96a89-c5ec-4347-8557-4e27dc8357de%2Cxxx_yyy_2012_02_971566902291_97146286636_4689_1%2Cxxx_yyy_2012_02_971551405791_4579920475_8191_1%2Cxxx_yyy_2012_02_971552673378_971502766001_7249_1%2Cxxx_yyy_2012_02_971560473612_971554991901_2233_1%2Cxxx_yyy_2012_02_971507763967_971550692108_2730_1%2Cxxx_yyy_2012_02_971551796105_971569310871_1556_1%2Cxxx_yyy_2012_02_971507257346_971553963903_3726_1%2Cxxx_yyy_2012_02_971504497262_971508194601_7128_1%2C810fe870-7a6e-45be-ab8d-536f77f1efb2%2C7cc4ff7e-9724-4806-a1c7-d1de48bb6106%2Cxxx_yyy_2012_02_97146661226_97145144005_4168_1%2Cxxx_yyy_2012_02_97143622728_971559543654_6162_1%2C20155f70-f38e-432d-bd24-98f8551748d7%2C74e4bcf6-71b3-451b-a607-4235508a0889%2Caab66d10-3fd6-4f39-89c9-ebb3b16548ac%2Cxxx_yyy_2012_02_971505494920_97146708901_6829_1%2C081ca5ec-20ed-4d31-873c-4a7771c84281%2Cxxx_yyy_2012_02_971564016859_971562450179_2962_1%2Cxxx_yyy_2012_02_971560487983_971503006876_1147_1%2Cxxx_yyy_2012_02_971509638310_971564911150_3621_1%2C6eb46fb3-1da6-4a35-a5a1-e1a8f4b63889%2C559e8110-db17-4f5c-8554-fce2a6e18c98%2C05f7a036-0db9-45df-aa1c-3df5fd60c187%2C87a4343d-ca25-4bdb-a594-59a3faddc76b%2Cxxx_yyy_2012_02_971561371556_97141102854_8373_1%2Cxxx_yyy_2012_02_971558016476_97148673793_7980_1%2C38308fa1-c92a-4d8e-82c8-51a61d5f0c4e%2Cbe3bdcd2-7aed-4a35-9af3-94f4598ec11d%2Cxxx_yyy_2012_02_97149063979_971557387665_1011_1%2C47bc64c7-cebc-467e-b0a5-1b7c588e0085%2Cd68fab50-3faf-440c-81e0-3a25bdb6ccfd%2Cxxx_yyy_2012_02_971506605479_971553495443_236_1%2Cxxx_yyy_2012_02_971560933210_97143452277_2665_1%2Cxxx_yyy_2012_02_97140704707_971555050550_723_1%2Cxxx_yyy_2012_02_4587965023_971569493392_3970_1%2Cxxx_yyy_2012_02_971559846862_97147555321_9593_1%2Cxxx_yyy_2012_02_971566742687_97141184276_4564_1%2Ce1737981-0e1c-41fb-a78a-249f2df63b2b%2C677c4894-6c6c-43a6-a396-92644b819e00%2Cxxx_yyy_2012_02_971568236554_971563496441_4403_1%2Cxxx_yyy_2012_02_971558726958_971504447316_6963_1%2C5de6b6ef-007a-49ed-a58a-2ef44a7c69e7%2Cxxx_yyy_2012_02_971562716442_971568774945_5503_1%2Cb6719741-dd82-46b1-a5ac-e56a9d110f4d%2Cxxx_yyy_2012_02_97142024820_971501762992_8689_1%2C1d6cb54d-b67c-49cd-8796-a3e8e2c771b8%2Cfa0529bb-e543-4182-9e2d-9a7d77896fec%2Cxxx_yyy_2012_02_97141498492_971556883763_4542_1%2Cxxx_yyy_2012_02_97143435810_971564217241_5074_1%2C1ddfc886-bf90-4745-be50-352729e2816d%2C90c8287e-f676-4b00-9cfc-d83413254588%2Cxxx_yyy_2012_02_971553061353_971567713949_9836_1%2Cxxx_yyy_2012_02_971551460953_971504329265_8172_1%2C27b0cc70-51f3-419a-9715-6065ef79118a%2Cxxx_yyy_2012_02_971500759125_4596574298_5763_1%2Cda8d7717-36ab-405b-b0be-db9a91cf045e%2Cxxx_yyy_2012_02_971555072953_971563192383_6754_1%2C91f9593b-e279-4424-be5d-653a67543c7e%2Cxxx_yyy_2012_02_971554113208_971558166060_3691_1%2Cxxx_yyy_2012_02_971569867739_971560884854_9530_1%2Cxxx_yyy_2012_02_971504856503_971562625009_8837_1%2Cxxx_yyy_2012_02_971505427982_971559398851_1006_1%2C9e7ee51d-0762-47dd-9fcb-2c180a91e85c%2Cxxx_yyy_2012_02_971550896067_971560112120_4685_1%2Cxxx_yyy_2012_02_97141707380_97141728991_8992_1%2C47612d91-e8ac-469e-bc2a-a64b95818d67%2Cxxx_yyy_2012_02_4545031938_97145747126_9862_1%2Cxxx_yyy_2012_02_971507019241_971554628579_1154_1%2Ca056436a-cd67-40dd-9cbd-1b17b4bbeb21%2Cxxx_yyy_2012_02_971501339165_97148402139_1728_1%2Cxxx_yyy_2012_02_97145563640_971556879110_5264_1%2Cb3b42bbe-8a5d-498d-aed2-b4b3d9257ba9%2C9bf96f00-4339-4e7c-990f-325e9622863f%2Cd1f440e9-1659-40d1-8378-69073178a6f6%2Cxxx_yyy_2012_02_971563497770_971509036607_7402_1%2Cdc25d88d-bb0f-40b5-9a4b-3e71c02e96a7%2Cxxx_yyy_2012_02_971504056019_971553034240_1860_1%2Cxxx_yyy_2012_02_971558265338_971560448985_6976_1%2Cxxx_yyy_2012_02_971557293427_971501070615_9288_1%2Cxxx_yyy_2012_02_971565709088_971556387113_5982_1%2Cd236ff4b-3c48-4f9c-afe6-b8c8c742ea6a%2Cxxx_yyy_2012_02_97149855354_971560509818_1182_1%2Cxxx_yyy_2012_02_971509673867_971561819859_2872_1%2C09da0ea6-c938-4d4f-b166-9de3c09355be%2Cxxx_yyy_2012_02_971504951732_97145890850_2113_1%2C20456c76-494a-4ec9-9e37-8ebb7ab9c785%2Cxxx_yyy_2012_02_971506830138_971562342126_941_1%2C8118d881-5d3f-4d72-b968-7561b954f03e%2Cxxx_yyy_2012_02_971553119663_971568405985_7199_1%2Cdb2f81dc-4449-4ffc-a2ee-d671e3e5ebe5%2Cxxx_yyy_2012_02_971508025064_971564365682_7282_1%2Cxxx_yyy_2012_02_971558119806_971560982239_4137_1%2Cxxx_yyy_2012_02_97148958212_97149773493_3516_1&isShard=true&shard.url=machine-4%3A8983%2Fsolr%2Fxxx_yyy_2012_02_slice10_shard1%2F&NOW=1330721790916&wt=javabin&version=2\
\
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\fs40 \cf0 5
\fs24 \
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\cf0 2012-03-03 00:56:31.202:DBUG:oejib.StreamEndPoint:*** Read 16384 form ByteArrayBuffer - total read now:|fec-91b4-43c2-9e4f-8a83ae502221%2C3cca677d-04b4-4ce1-b83e-609c3ac9e28c%2C4d48b38b-14cb-4c9f-9786-d34a3b170e51%2Cf37fce52-3487-4cb0-8ced-07087adb0b34%2Cxxx_yyy_2012_02_971559739986_971566796871_5507_1%2Cb18cd178-0292-4ecf-bcc3-7a090e3a466a%2Cxxx_yyy_2012_02_971553270957_971556297914_8983_1%2Ca1c8135e-6615-4480-b171-64bfd0d684b8%2C26d94166-5af8-4d0f-b731-f8698d9409df%2Ca96d86ef-35bc-4f05-bbec-c0e947685d82%2Cxxx_yyy_2012_02_971502345457_971557849726_9713_1%2Cxxx_yyy_2012_02_971503665656_97149143822_8345_1%2Cxxx_yyy_2012_02_971568260397_971504851075_948_1%2Cxxx_yyy_2012_02_971507783880_97145108911_3335_1%2Cxxx_yyy_2012_02_971505487697_971502268046_2877_1%2Cxxx_yyy_2012_02_971556378245_971551658968_2621_1%2Cxxx_yyy_2012_02_971554620645_971506213179_3052_1%2Cxxx_yyy_2012_02_97140030422_971503481755_576_1%2C7620a0d0-1cfb-4242-a087-eb758822e28e%2Cxxx_yyy_2012_02_971563970255_97141267905_9060_1%2Cdc5c696a-b0db-4aab-92cb-66a9634a291b%2Cxxx_yyy_2012_02_97144834743_971554241645_1561_1%2Cxxx_yyy_2012_02_971553125794_971554022265_5298_1%2C54322161-5bb5-4d76-a018-05d4636bd6e9%2Cc5cc5cef-de5c-4604-a999-c87e87a825c1%2Cc97f7aeb-630b-428c-8226-0d24fe767e4a%2Cc01f8d37-5821-484c-8519-85f832758af7%2Ccb68b80f-37c2-459e-a0b9-d34009f3fb91%2Cxxx_yyy_2012_02_97148246610_971561568664_3570_1%2C5ff17208-8d32-4e1e-b93b-3310bae8d305%2Cxxx_yyy_2012_02_4560288502_971550347016_9424_1%2C364fd87f-5225-4ba7-a6a4-22d69a0686b4%2Cxxx_yyy_2012_02_971557995378_971559940784_3265_1%2C2a98e5ba-e5c9-4d6c-a2ee-8dbe918016b9%2C3c892292-991c-4b8a-a85b-8592bba58d27%2C18ec985b-c3da-4ead-bd79-4aca88a43920%2Cxxx_yyy_2012_02_971503015972_97146432682_1295_1%2Cxxx_yyy_2012_02_97144748013_97143289462_8749_1%2Cxxx_yyy_2012_02_971504632109_971567875244_6497_1%2Cxxx_yyy_2012_02_97146730959_971501129474_1847_1%2Cxxx_yyy_2012_02_971562900396_971569518377_990_1%2Cxxx_yyy_2012_02_97148154720_971559047217_4470_1%2Ccb5ce880-9e43-49ab-b5d1-83540fbcd203%2Cxxx_yyy_2012_02_971553213741_971568523239_4418_1%2Cxxx_yyy_2012_02_97147242409_97141986317_1265_1%2Cdf0b03c8-3179-4b3d-86e5-c8e766be48e4%2Cxxx_yyy_2012_02_971555887972_971565628740_2822_1%2C0fc5edf4-b47f-4ecb-8b6f-98d1a99d6358%2Cxxx_yyy_2012_02_971556792459_971559226637_7574_1%2Cxxx_yyy_2012_02_971551303563_971563360713_7340_1%2C675fc1ac-4028-4b4c-98c2-016fdc257e06%2C0d2b8baf-332f-4dee-9443-2a2a5af8e72f%2C7effa45a-d889-4642-8f28-c9adc107b79f%2C57ff641d-95cf-469a-9cef-8697921d14be%2Ca07e3bbd-1b5b-4847-9829-ac38d8880026%2Cxxx_yyy_2012_02_971559325821_971564737704_6852_1%2Cxxx_yyy_2012_02_4543407453_97141171680_1793_1%2Cxxx_yyy_2012_02_971552196685_971506910384_4426_1%2C2d28d879-ccc9-41ae-99a8-9776029a54f8%2C227a6e73-fd3d-449c-abbb-55c8561de6f6%2C635dcad1-df04-4524-a9be-506315617dcf%2Cxxx_yyy_2012_02_97149124767_971502158205_1690_1%2Cxxx_yyy_2012_02_971507401996_971551306955_6459_1%2Cxxx_yyy_2012_02_971507572235_971555184737_7279_1%2Cxxx_yyy_2012_02_97148025381_971560063488_5595_1%2Cb496a0c1-2d5a-41a0-9474-5eb25ee009c3%2C0bb9f884-7392-4d16-8082-cd15e2b5db56%2Cda029e39-b25b-4380-904e-2902228559d6%2Cxxx_yyy_2012_02_4538767069_971506071113_1490_1%2C4a0c936f-be05-4850-8e50-a4276ab90d53%2Cxxx_yyy_2012_02_971561433857_4562082198_7350_1%2Cxxx_yyy_2012_02_971504412155_971565307636_2659_1%2Cxxx_yyy_2012_02_97146479388_971505180970_4070_1%2C46269a43-caf0-4243-9e2d-a797b65b4225%2Cxxx_yyy_2012_02_971563218122_971500227162_782_1%2C457f1e62-0b81-481e-b905-48dc01b21ed3%2Cxxx_yyy_2012_02_971502597791_971554897911_1016_1%2C6a165b83-004e-4769-b1c3-0839e2a3abec%2Ca54b735f-bc4b-4ea6-83af-109ee6df532d%2Cxxx_yyy_2012_02_971568149925_971505350398_4449_1%2Ca9f1386b-3dae-4969-aee2-5c62de13b42b%2Cxxx_yyy_2012_02_971563631708_971550567237_3890_1%2Cbddbc4fd-0e61-40f2-8695-dea0a028bc6d%2Cd8856d27-ccd6-4eb8-835a-9476e20c567a%2C5802e288-e44c-4094-a65d-65d8cbc54d2a%2Cxxx_yyy_2012_02_971503799094_971562479366_6308_1%2Cxxx_yyy_2012_02_97146486816_97140010084_8347_1%2Cxxx_yyy_2012_02_971551257783_971504000026_8361_1%2C05c458ea-d840-44a6-bc17-c080b4ffed21%2Cxxx_yyy_2012_02_971504223965_971569387185_7423_1%2C8e0c5097-ec15-4022-b7f3-b7ddb0a48aff%2C519c63ce-5911-44a2-9e22-1b15310da16c%2Cxxx_yyy_2012_02_971569855365_97147234220_1422_1%2Cxxx_yyy_2012_02_971507054746_971563893291_111_1%2Cxxx_yyy_2012_02_97144059394_971565067005_9150_1%2Ca5075cab-dff8-475e-a38a-e789d4ce20c0%2C0582a038-0c5f-4644-80ee-cc81e4e5dc7e%2Cbff812cd-bff3-4e05-9c22-2012e05fde10%2Cxxx_yyy_2012_02_971553431684_971508717198_6654_1%2Cxxx_yyy_2012_02_971560032184_97144104800_6123_1%2Cxxx_yyy_2012_02_971508575365_97144187932_3614_1%2Cdc00f9b9-bec4-400c-9d4c-6ef7580dac16%2Cf444f16e-0a88-4c0f-b24c-c361de4bb5f7%2C1d51feb8-5bb1-4d99-9763-bdbbb848755f%2C96b6418d-d096-4433-9cc1-e20b85db5bb5%2Cxxx_yyy_2012_02_971557879916_971550507512_635_1%2Cxxx_yyy_2012_02_971502810199_97145878024_8993_1%2Cxxx_yyy_2012_02_971507433559_971566335940_9829_1%2C3a234ad6-4ebc-413a-a53a-9c34765938ad%2Cxxx_yyy_2012_02_971503004550_971557331961_4579_1%2Cxxx_yyy_2012_02_971560435558_971561434327_9146_1%2C204fc872-1390-4aa1-9630-322beb208175%2C127d27f8-27c7-45a7-a879-c71c2a700b5c%2C257b66aa-3b33-470b-84cd-aad020383620%2C897d5750-0197-4dd6-a2b7-011bec766f80%2Cdc66a717-b0aa-4cf3-835a-8adcea8257a9%2C0a276658-2aa5-4234-8362-e2b5b4e3726c%2Cxxx_yyy_2012_02_97140185630_971560886576_3219_1%2Cxxx_yyy_2012_02_971506876925_971557149718_1061_1%2Cxxx_yyy_2012_02_971554759804_971501370549_5778_1%2Cc4d74f10-fdc0-4c6f-9436-a05e62766c3a%2Cxxx_yyy_2012_02_971505068767_4531682989_62_1%2C9da3e986-89e7-4683-875a-404e1ad6d9a8%2Cxxx_yyy_2012_02_97148922240_971501691481_4014_1%2C87c3378d-2b6c-4d34-a52b-689ffda0fcc9%2Cxxx_yyy_2012_02_971563220999_971556721247_8201_1%2C6b7e8e1e-8d51-48c0-a3d9-929b571616d7%2Cxxx_yyy_2012_02_97149820411_971501059569_3612_1%2Cxxx_yyy_2012_02_971558491598_971563542689_2410_1%2Cxxx_yyy_2012_02_971550777385_971503552077_4737_1%2Cxxx_yyy_2012_02_971500010963_97141491668_5105_1%2Cxxx_yyy_2012_02_971551275186_971568395526_9811_1%2Cxxx_yyy_2012_02_97149724586_971505864444_3927_1%2C4e1cffbc-7e98-47ef-96e9-360c116e3c1c%2Cfa37c29f-d96b-49c6-bac3-a3f947c065b0%2Cxxx_yyy_2012_02_97140608466_97142982235_4175_1%2Cxxx_yyy_2012_02_971558755799_97144670636_4016_1%2Cbdf48316-447d-47ea-acdd-fa5d37454b1f%2C5ee98725-504d-47fb-908c-c1bfdd55848c%2Ce91a3b30-4597-49f6-ae3b-a19ba965ebb6%2C2660fbc4-3748-4409-9525-036a39461c5e%2Cxxx_yyy_2012_02_97145438045_971501264974_5877_1%2Ce07dbfac-7daa-4631-964e-0282003c1b0e%2Cxxx_yyy_2012_02_971567523549_971562666797_7680_1%2Cxxx_yyy_2012_02_971562000902_971569431107_5912_1%2Cba4e94b1-44e6-470b-ba38-1f1b0e1755b8%2Cf850532b-89ab-4120-8ea8-6a5ec2a70606%2C26aae7cf-7b4a-4911-b460-ffd3c1ceeb63%2Cbd74fbfd-eab6-4a80-a7a4-38a7c30f68c3%2C4ca38f79-0136-401f-abee-7c5e9d0dfa46%2Cxxx_yyy_2012_02_971560263287_971553392043_8539_1%2Cb4ad4e62-00c2-47eb-9dce-4f23bd08808e%2Cxxx_yyy_2012_02_971565307445_971552359769_2828_1%2Cxxx_yyy_2012_02_971500530825_971501182575_5275_1%2Cf9abd25f-87fe-4e3a-b30e-8bf29f7b3131%2Cxxx_yyy_2012_02_971553401223_971557162409_817_1%2Cd802ef09-dc2e-4531-984f-4c97eaa24bed%2C7d62144e-d185-43c4-945e-bfcf6d148f41%2C12a7b79a-6add-437c-b113-c2db37ec9588%2Cxxx_yyy_2012_02_971503791638_971502557671_8020_1%2C9a41a091-fd34-4265-9fd4-06292ba9f536%2Cd45aef7c-03f1-4b11-8635-913565e24661%2Cxxx_yyy_2012_02_97140489921_4531046975_5504_1%2Cae0e0c4b-a6c4-41a1-9e44-d6a747520eb9%2Cxxx_yyy_2012_02_971566624794_971506244290_4177_1%2Cxxx_yyy_2012_02_971555410727_97143117944_261_1%2C6aaa75ca-6456-48ef-b2fc-19a434860273%2Cxxx_yyy_2012_02_4558833536_971558857997_6165_1%2Cxxx_yyy_2012_02_971504116761_971569041334_7040_1%2C6ff86901-839f-43ae-9dc9-d28585288962%2Cxxx_yyy_2012_02_971559690846_97143935148_2977_1%2Cxxx_yyy_2012_02_971509745083_971551556130_63_1%2C3cbbe67d-ace7-4b2c-a735-38d2b499ac09%2Cxxx_yyy_2012_02_97149724721_971500536991_4878_1%2Cxxx_yyy_2012_02_971568434899_4522987829_7347_1%2Cxxx_yyy_2012_02_971557129591_971509284561_8849_1%2Cxxx_yyy_2012_02_971506032796_971563685622_5939_1%2C77ff8de5-eb32-4521-b863-138235c764ee%2Cxxx_yyy_2012_02_97148741208_971552646688_6960_1%2C509a8899-ee07-4a79-a63a-b92b10f2f408%2Cxxx_yyy_2012_02_971560169417_971569467254_2907_1%2Cxxx_yyy_2012_02_97140910601_971507012402_6799_1%2C44fd4b98-3810-461b-b948-904f0f934179%2Ced58d30c-cde7-4d5b-9a30-0bc26f856a07%2C0320cb87-dfd8-4518-ae12-93c28c8c0370%2Cxxx_yyy_2012_02_971508308157_97148852898_609_1%2C4adba462-a6e0-4d11-ba7f-ec618cc9c0a1%2Cxxx_yyy_2012_02_971552060723_971555635208_3068_1%2C872d6250-2b49-4015-8c11-8301f2113db9%2C7e1455c6-a08a-4082-a976-53d462f3ac9a%2Cxxx_yyy_2012_02_97146493143_971555852023_8838_1%2Cxxx_yyy_2012_02_971562762594_97147751108_6512_1%2Ca28893b5-8af7-4ef6-b415-5650afda6daf%2Cxxx_yyy_2012_02_971505145133_971556804697_4757_1%2Cxxx_yyy_2012_02_971554564893_971557041939_325_1%2Cxxx_yyy_2012_02_97141698668_971506832371_9520_1%2C1ab047f0-ff17-49b5-b937-f3e42badcd97%2C1b189d8b-543b-4417-9657-1f159023ee80%2Cf96bec71-8928-4745-afe3-ca1365b4f1d7%2Cxxx_yyy_2012_02_971566790273_4544028434_5224_1%2Cxxx_yyy_2012_02_971556325495_971552096908_9466_1%2Cxxx_yyy_2012_02_971504288429_971503362531_2458_1%2Cxxx_yyy_2012_02_97147711885_971562507142_512_1%2Cxxx_yyy_2012_02_971500609765_971501561655_8928_1%2C2203d36b-1ed5-4e9e-bb13-659beffba4d6%2Cxxx_yyy_2012_02_97140295903_971556434759_7354_1%2Cxxx_yyy_2012_02_971553446673_971566698546_6874_1%2Cxxx_yyy_2012_02_971551195578_971556938606_5203_1%2C8b804195-54b9-4b55-94ac-047852124ad8%2C033eb827-51d8-4581-ba9f-05b6d1572347%2Ce2d9359b-e43e-415e-9152-0c4b852ddcd0%2Cxxx_yyy_2012_02_97147492436_971566702224_5551_1%2Cxxx_yyy_2012_02_971563872612_971505155515_4045_1%2Cxxx_yyy_2012_02_97142319753_4565631584_7454_1%2Ce8c5b392-dc95-46ad-a2b4-8ac733118b4f%2Cda54316a-932d-4b8b-b33c-902ef15fc9a1%2Cc7116f8c-0694-4e62-b1f1-976af85343a8%2Cxxx_yyy_2012_02_97144630963_971504469644_4463_1%2Cxxx_yyy_2012_02_971559755974_971503283975_4464_1%2C256f8579-b683-4a8a-895d-3ba04822e9a2%2Cxxx_yyy_2012_02_4545103578_971507245698_833_1%2Cxxx_yyy_2012_02_971553864097_971566640530_1494_1%2Cxxx_yyy_2012_02_971557865441_97144659421_7163_1%2C26a57a6a-1893-40c4-857a-ef7fcd17f632%2C1616ba9c-0aa4-48d8-b15c-2df06519ad31%2Cc35b7826-dd45-4226-8eec-1a3b86389564%2C33a69ff6-d714-4899-b83b-351d2026d84a%2Cxxx_yyy_2012_02_4575328118_971550507640_8788_1%2C7424cac4-e49f-478d-99f7-78d879e24f81%2Cxxx_yyy_2012_02_97149507505_971508809978_2760_1%2Cxxx_yyy_2012_02_97140139205_97142803965_8049_1%2Cxxx_yyy_2012_02_971561945308_971551402784_3250_1%2Cxxx_yyy_2012_02_97149946389_97142155630_6700_1%2Cc6541342-b1f7-4d91-ad8c-65f06ebdaf0a%2Cxxx_yyy_2012_02_971550104697_97146844560_4787_1%2Cxxx_yyy_2012_02_971508203665_97141431333_5541_1%2Cxxx_yyy_2012_02_971505653024_971503144018_4904_1%2Cxxx_yyy_2012_02_971563674902_971550692960_7085_1%2Cxxx_yyy_2012_02_971507018735_971564255414_680_1%2C47f8e563-0593-48fb-a51e-52ea03d140d2%2C682cae82-cfe9-4126-a429-a6abe17dfd19%2Cxxx_yyy_2012_02_971567913880_97142816399_1740_1%2Cxxx_yyy_2012_02_971501953353_971569940505_4442_1%2Cxxx_yyy_2012_02_971569485101_97147430375_4343_1%2Cxxx_yyy_2012_02_971559862313_971555898212_1533_1%2Cea6cbeca-3021-4527-8146-d6c8060e2985%2Cxxx_yyy_2012_02_971552981355_97147992295_1774_1%2Cxxx_yyy_2012_02_4560220320_971567765581_8842_1%2Cc3908fba-811f-464a-8e7f-c579ae49976e%2C712fff1e-0ca2-48d6-8da8-c071f21f516e%2Cxxx_yyy_2012_02_971558187039_971506922427_9641_1%2Cxxx_yyy_2012_02_97145725545_971566980319_8412_1%2Ce7b10830-28a6-4e2d-a14f-ad3cb2284c9b%2C09e63f25-8627-43a5-abea-350e4f0d11dc%2Cxxx_yyy_2012_02_97149292336_971564984492_8498_1%2C3a6ae5dd-7a19-4c63-9906-10b0cd2575c4%2Cxxx_yyy_2012_02_4559431009_971561692380_3628_1%2Cxxx_yyy_2012_02_97146104159_971560409718_5762_1%2C4fef85d8-cc63-4875-87c1-35aadd9d75cb%2Cxxx_yyy_2012_02_971564252908_971560836876_9229_1%2Cxxx_yyy_2012_02_971553911017_971506211854_768_1%2Cxxx_yyy_2012_02_971559647858_97146377528_8372_1%2Cxxx_yyy_2012_02_97143113096_971501825552_43_1%2Cb1991d67-21d5-4cd7-a995-84d6c72f121c%2Cxxx_yyy_2012_02_971503240201_971564091477_3008_1%2Ca56c5734-e836-4d65-b6e2-cdebf28357df%2Cxxx_yyy_2012_02_4555896484_97144532314_7379_1%2Cxxx_yyy_2012_02_971551404575_97145252652_4394_1%2Cxxx_yyy_2012_02_971564497678_4573798401_3637_1%2C07dad5da-d5f8-421d-82d9-3690e8d6388b%2C28fbbd76-e27d-44d1-be6a-78b8b54108a0%2Ca718462e-8648-4f00-8541-436a5b96cf3e%2C92c53dc7-a8d4-494c-a24c-8774ee9767d7%2Cf01aeb37-e00d-4901-9afd-2eaa8629d3fd%2Cae45bf30-9d46-4fd0-bfe4-a38a4be77a3b%2Cxxx_yyy_2012_02_971505144321_97140657139_8635_1%2Cef745dc3-140d-4bda-9f79-e6d558a5e0c8%2Cxxx_yyy_2012_02_971568457158_97147020781_7452_1%2Cf5a8c600-a5d8-4bea-b82c-82f1fe18d012%2Cxxx_yyy_2012_02_97149798296_971568761828_9296_1%2C3ef85a84-5ffe-4b2d-9a03-081c6e56e055%2C42657f2f-03e9-46a4-bd5b-b5435b116741%2Cxxx_yyy_2012_02_97141477792_971561530610_8982_1%2Cd7f66653-ae1f-4de5-afee-6f427abab6c3%2Ca53c820b-04cd-452b-b46c-7ac8d5d4fa41%2Cxxx_yyy_2012_02_97142530762_971501213044_7973_1%2C6a165d09-6520-4737-97cc-171f37e72348%2Cf8a41432-6fd6-4e1e-88f7-8b39135a1d43%2Cf3702189-0484-43c1-aa79-199d0eebcdff%2Cf3f56bce-dfbe-4221-a2df-1bc47109f5f3%2C9508cca1-e819-4a19-815a-400a96627051%2C1a11b3f3-60f9-4f57-8438-b80d87f4b80d%2C4ae46275-66be-4916-9f8f-03bd820271ea%2Cxxx_yyy_2012_02_971566207206_97142205719_9365_1%2C79a028fc-2b03-4dac-9d50-0ad90183b30b%2Cxxx_yyy_2012_02_97140701482_971550404629_3482_1%2Ce3b3f03c-972a-4623-a8c5-af4787a2e12e%2Cc046495d-d42e-47d3-95d9-3a0c5c278b08%2Cxxx_yyy_2012_02_971509899800_971556667593_8866_1%2Cxxx_yyy_2012_02_971564555311_971501399000_8582_1%2Cxxx_yyy_2012_02_971562276619_4541546318_7567_1%2Cxxx_yyy_2012_02_971567681487_971506242787_6898_1%2Cxxx_yyy_2012_02_971505090984_971504882989_9477_1%2Cxxx_yyy_2012_02_97145027629_971568830169_3317_1%2Cxxx_yyy_2012_02_97141029680_971501537762_4017_1%2C74f9b675-2b7d-471a-a3f0-7c16a8e276c3%2C0b49b5a8-0b4e-4ba0-b13c-b9ef9bbc4097%2C5d4aa93d-811b-47ce-9c23-1a1781d2e52b%2Cab5672f8-ed23-4c24-8d10-1112e0237af3%2Cxxx_yyy_2012_02_971560296969_971563787768_2581_1%2Cxxx_yyy_2012_02_971555516199_97140485866_45_1%2Ca26ebac0-5876-46a1-9fa9-ccefb4ddd71f%2C20ce0168-bdb6-4420-9b33-eb68ebde3d00%2Ccb3ea33a-2252-4bcd-8a7c-273952f09bc6%2Cxxx_yyy_2012_02_971500844060_97143063901_5956_1%2Cxxx_yyy_2012_02_971562026462_97148661967_632_1%2Cxxx_yyy_2012_02_971550384376_971501935262_5381_1%2Cxxx_yyy_2012_02_971556356905_4532260812_7154_1%2Cxxx_yyy_2012_02_971500548368_971563053571_7167_1%2Cxxx_yyy_2012_02_971562320380_971554968376_8016_1%2Cxxx_yyy_2012_02_971505812120_971561819758_1859_1%2Cxxx_yyy_2012_02_971508588286_971556731824_2652_1%2C5d059b44-da7a-4f72-b353-51446df57045%2Cxxx_yyy_2012_02_971502604682_971565242875_8741_1%2Cxxx_yyy_2012_02_971500917079_971508810558_2_1%2Cxxx_yyy_2012_02_971556996283_971553312742_9972_1%2C2b1508f2-2e94-401a-975d-2b0879c05cec%2Ce39b6f57-299a-4d09-8b6c-8076f14e2380%2Cxxx_yyy_2012_02_971569473565_971501630180_9208_1%2Cb2ff9975-8b6f-4f31-aabf-60f4de5a0c49%2Cdb53b928-0d6a-49a7-be4f-a886e6a7ca90%2C520cea3f-2e1f-4ed7-b5c8-fa44dd398bc3%2C0abf6988-d674-47f1-98cd-2fc0dcbe0a19%2Cxxx_yyy_2012_02_4576307305_4546312256_2686_1%2C8df4a5b8-69db-44fc-a804-cd5a946adba5%2Cxxx_yyy_2012_02_971558682547_971502574064_1765_1%2Cxxx_yyy_2012_02_971568200200_971507958332_4041_1%2Cfb3d7907-248d-41be-b25b-bab3175e0fff%2Cxxx_yyy_2012_02_97143119201_97149612817_1729_1%2Cxxx_yyy_2012_02_971569284139_971506608588_3955_1%2C017bf819-58ee-4a20-9b79-459d3db8a740%2Cd6bf1ef2-a558-4e54-8940-188d22a4a728%2Caa423334-f82c-4e60-a51c-5806d34bcfc2%2Cxxx_yyy_2012_02_97149255882_971500664588_4790_1%2Cb2196923-976b-4def-b65e-a8b8654d5d31%2C2065c567-aa77-4226-9054-fe4f44ed5c8c%2Ca511de54-e115-47f5-b968-89305a597931%2C0267c74e-75bc-42e3-a919-5d070789d3b7%2Cxxx_yyy_2012_02_971506754134_971554816579_6612_1%2C88c12784-9df4-4fe8-a39a-293cfc1f7727%2C0e25bfa4-85e1-4eea-9f3f-82aaaacfd5e0%2Cxxx_yyy_2012_02_971562083721_97146724252_7900_1%2Cxxx_yyy_2012_02_97148385553_971559516617_8237_1%2Cxxx_yyy_2012_02_971558383042_97143639340_9997_1%2C27ca8b92-e8b7-4b81-a9d7-fd15841aa9c7%2Cd9ab0106-fc75-42b6-bcd7-4d6b80437aa9%2Cxxx_yyy_2012_02_971500274449_971502626853_6660_1%2Cxxx_yyy_2012_02_4545254377_97140476301_2381_1%2Cef39eab1-1a90-4d72-adc1-0247b3da857d%2C8e345039-51ff-4fbd-94d9-c622e86801f5%2Cxxx_yyy_2012_02_971553206970_971500611207_3511_1%2Ce76c21d3-abeb-428c-ac65-72f03c4d40b0%2Cxxx_yyy_2012_02_971567604740_97140792896_2377_1%2Cxxx_yyy_2012_02_971561275286_971503863154_7422_1%2C61fbe9fb-8198-4617-8617-a3378bf24c71%2C0be13e37-3fe7-4675-af6c-f3f99d226c94%2C6a708d49-8da7\
\
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\fs42 \cf0 Handed over from Jetty to Solr on server-side - SolrDispatchFilter logging
\fs40 (from solr-logs on machine 4 in my multiple-machine setup)
\fs24 \
WARNING: Nice info received-request ,servletreq.SubRequestGUID == e42fcab9-e1f3-4ecc-aba6-21137a3f0176 ,servletreq.WT == null ,df == content ,start == 0 ,q == timestamp:[1330372801000 TO 1330410252000 ] AND timestamp:[1330369200000 TO *] ,SubRequestGUID == e42fcab9-e1f3-4ecc-aba6-21137a3f0176 ,ids == e4627ecd-c5bc-44d8-b691-1ad2bf1e5ad2,dad279ca-0a01-426e-ab63-0662b0a894f1,xxx_yyy_2012_02_971556025906_971509657562_1572_1,a65585bd-01c1-4c73-9c7d-3a80967fed14,028d9eae-e116-4aeb-8506-9b8f1357fb00,ab644aae-30ca-46f6-bf6b-c6deb7851dcf,7980a181-58cb-4f53-bfdc-86ccddcfc0bd,xxx_yyy_2012_02_971564979146_971563846159_3860_1,ef1d7149-fed8-4ec6-9d61-7c57efb72d7c,xxx_yyy_2012_02_971502879730_971503288676_4152_1,be72d6eb-4fac-45a6-9f9a-bd6fed4c35e1,xxx_yyy_2012_02_971502966188_971504686750_2194_1,19b21f2f-fc88-4dd0-b6fd-a120ff008d2d,xxx_yyy_2012_02_971501325815_971567135310_8023_1,aa996070-328a-45ff-9c5e-1875c1e42115,xxx_yyy_2012_02_971508027520_971559354369_9158_1,xxx_yyy_2012_02_971557836021_971559428121_781_1,fcd72ed6-b95e-4d79-a8c5-5a6f1abc7caf,d060e80e-686a-48b2-adee-66d5d52ba31a,xxx_yyy_2012_02_971551476494_971558645511_5783_1,xxx_yyy_2012_02_971550920150_971500349829_8961_1,8ebe1d4c-3779-4128-aebc-81df81b2b228,b61e5fa1-30c4-40fe-8d5c-3da8dd89bd29,xxx_yyy_2012_02_97148349058_97147261515_7568_1,xxx_yyy_2012_02_97149574263_971509961907_7267_1,xxx_yyy_2012_02_971554854717_971555625104_3523_1,xxx_yyy_2012_02_97144919158_97149151286_7866_1,xxx_yyy_2012_02_971563742135_97144809726_3044_1,xxx_yyy_2012_02_97149998750_971564377581_9013_1,ee4d8b2f-1afa-4b2d-8623-a598257c323a,xxx_yyy_2012_02_97145893910_971552811426_5329_1,xxx_yyy_2012_02_971556780419_971565623600_5244_1,f5e8c84d-4dba-445d-a4b1-da62f1914a6e,xxx_yyy_2012_02_971557064072_971568944116_9460_1,xxx_yyy_2012_02_97141652555_971567877256_4590_1,xxx_yyy_2012_02_97144323510_97147519544_668_1,d49cb9d2-ae69-433a-a4c4-f8dc7f37b5ac,0093e2b2-47ba-4353-83d4-998d2f1cc1e4,xxx_yyy_2012_02_971564735642_971551517642_6748_1,aaa64052-fcc4-44dc-b471-4e3fa465e188,9a0480be-b4ca-4a01-9aa9-999a673be95d,xxx_yyy_2012_02_971564569035_971504334929_3398_1,95966a05-5de8-48fd-9375-b1623832c660,xxx_yyy_2012_02_971559602446_97147139341_5230_1,59e74a71-f738-42b5-987b-d15a8ffade1f,xxx_yyy_2012_02_971506059593_97149653060_6631_1,587f58be-f2c0-417d-b5da-13f7e962a58d,f08eb72d-0df4-41b1-8d06-340829d8ca96,1a875d77-13ec-4de5-85bb-312b14abd09a,db9f4305-6dbb-4b70-87db-ba8e54c695ae,ea90487e-5df0-42ac-aa0d-ef1120916d97,cabc51da-abbc-469d-b5b3-42d83c9aceee,xxx_yyy_2012_02_97149467066_971506255685_8199_1,xxx_yyy_2012_02_97140231049_971560837242_1485_1,daac4f60-8266-41a6-b045-67df75d649e2,8291f37a-0f3a-475f-8fea-6b745f770b99,xxx_yyy_2012_02_971501255225_971550872692_9620_1,xxx_yyy_2012_02_971507959531_97142732214_5988_1,c0b7b5e4-bc2b-4839-8c6a-b45f62440da3,xxx_yyy_2012_02_971568258671_97145631080_6592_1,d7df8995-bd4a-46ea-bc1e-55ccf1590733,689a4878-cbc8-4c11-b54d-9be03ba50075,xxx_yyy_2012_02_97149451483_971550526915_402_1,1c002780-1ddd-49b0-ba2e-4f4e43a52582,a06ae937-8520-45d8-a66c-93b1911120a6,xxx_yyy_2012_02_971567458567_971557168584_5137_1,xxx_yyy_2012_02_971504957677_97149946040_5580_1,xxx_yyy_2012_02_971500819623_971552457652_242_1,57b7f8e3-3130-4a8c-84a4-c86585cfcc55,xxx_yyy_2012_02_971568609410_97140192617_4872_1,f51dc95b-fc62-41b4-82c9-dbb5aa3054a0,1910afef-80a8-42b0-a902-bd3e99af27e5,566df0a9-7ec7-4939-8a6e-4870916cd1f1,70c20bf6-26a8-4316-9a40-ecd5f3218a76,fbccfead-4adf-4925-adbb-fc26c907acb0,dc8d9a26-325f-47ef-980c-18e563c3abb3,xxx_yyy_2012_02_971551441540_97149695223_690_1,xxx_yyy_2012_02_971555799132_97146392889_5111_1,xxx_yyy_2012_02_971507989393_971557524496_249_1,xxx_yyy_2012_02_971507687053_971509096950_5020_1,c67619ec-0665-4f4c-ba20-21173923a22a,xxx_yyy_2012_02_97147404855_971568319568_709_1,083ba072-7ad0-4b82-a9c8-2f0744e37c96,xxx_yyy_2012_02_971559747993_971551775138_7706_1,6231af00-a4a7-4837-ba66-ae23ad12352b,xxx_yyy_2012_02_971561986379_971551946361_3509_1,xxx_yyy_2012_02_971559662094_97146025901_3739_1,xxx_yyy_2012_02_971506922371_971569609885_9494_1,30c54cd1-f60e-470e-9b08-361355763fa7,xxx_yyy_2012_02_97141639156_971508715703_8262_1,xxx_yyy_2012_02_971556824655_971502556595_673_1,xxx_yyy_2012_02_971553521942_97143474825_6534_1,dce52595-6baf-4a5d-a11c-817c030ca94b,92d27c48-40fb-4c01-ac68-4636ec459df0,ff5e136d-27a9-4973-959c-03b2d848cb26,xxx_yyy_2012_02_971504326455_971505681441_6875_1,e7b2cbe2-7020-4564-ab0e-2e5f2f5ed300,76da9728-e8b6-49f8-80fd-a3a9564aed30,901f19b9-7243-415b-9bfd-ad9d9bc982d8,xxx_yyy_2012_02_97141039168_971509347329_4877_1,5bcbc58c-c05d-420c-9a1a-a35d4a13f208,5742dc6c-391c-49dd-9237-53daeeb9f17a,2ce00052-a469-40fd-a56e-329d2d6805ce,8f0bb56d-a008-4f1d-ac15-bd1773a2eac5,5e92d5b4-fe94-4383-8f52-4530799c533c,xxx_yyy_2012_02_97146274636_971567944398_2366_1,106856ca-3658-4eb5-ba04-4e45b012e374,d1194a87-156e-41b3-820f-7c9dec7aed58,2cfe92ae-7c44-479b-a207-7479dcad53d7,2055f1c7-7c30-483b-bff3-9fd26a390e09,xxx_yyy_2012_02_4520886023_971501356998_561_1,815a0eae-fac3-4065-9bca-52169fc30a14,xxx_yyy_2012_02_971507759584_971503384342_3658_1,xxx_yyy_2012_02_971501842104_97145307039_9656_1,xxx_yyy_2012_02_971558320893_971509890998_4939_1,xxx_yyy_2012_02_971506005968_971506588937_7504_1,979e7a91-959c-4f0b-95a0-3b054f387608,xxx_yyy_2012_02_971509552731_97146770822_317_1,xxx_yyy_2012_02_971503274845_971550250568_5593_1,358cb74c-c375-43a1-a06e-05d7738f7792,xxx_yyy_2012_02_97143686827_97141458309_9072_1,342fd7ce-58be-41a2-a9a2-0b2275bde319,63b8db80-2325-4847-a06d-925c6561a8a2,xxx_yyy_2012_02_97141732066_971501140388_6541_1,a569a168-adbb-4344-a222-8546aca64c6d,xxx_yyy_2012_02_4555112417_971556701765_7275_1,xxx_yyy_2012_02_97141511933_971554059912_8187_1,262d5b42-ce5b-421e-bb62-4129877ef942,32c65555-f186-44cd-9b17-756af9383311,xxx_yyy_2012_02_971566203967_97141720114_7377_1,de34b718-259a-428b-980e-6d7a741faac3,xxx_yyy_2012_02_971568422361_971504996774_1986_1,516e7df3-581c-47ca-8747-a114d808ae87,xxx_yyy_2012_02_971550052469_971558377392_4028_1,ba077555-c79c-4a3c-9606-ed10e3a5c1fd,xxx_yyy_2012_02_971501344536_97149114453_9153_1,c4506d96-2a29-475f-8fa5-29f1d302b23c,xxx_yyy_2012_02_97144662763_971506388727_5622_1,c73fecb2-55f0-4839-9468-da2d1c047049,xxx_yyy_2012_02_971507432980_971502919312_7569_1,2364f1dd-5556-43b6-9d0f-991cbbfa5dbb,xxx_yyy_2012_02_97145415010_971568327166_2762_1,37479838-3e7b-4a57-80f3-ae2b001836e4,xxx_yyy_2012_02_97140488387_971504977946_6377_1,xxx_yyy_2012_02_4544165601_971566593454_5560_1,xxx_yyy_2012_02_971509311734_971500141795_4610_1,6a2a2519-b0d6-4ec5-884b-b87885e8e446,2624c499-a372-4ebc-b56e-8c12012a035c,7175e9de-df7b-42ed-96ed-34c0d82b6968,xxx_yyy_2012_02_971561018163_971561586011_4083_1,xxx_yyy_2012_02_971556557552_971550540899_5323_1,95ee1a62-8737-42fd-9e06-8a333d939799,58c1192d-06f4-4235-a0d5-e7ac007178a8,422264a4-439e-4077-afce-16a92aaba112,xxx_yyy_2012_02_97148442959_4550278162_9566_1,xxx_yyy_2012_02_971567421124_971560657062_5086_1,80b8faf8-36f8-425a-8a77-8c6d9d617afa,b8dda84c-7f05-49dd-995a-34f0c796632c,xxx_yyy_2012_02_971560045996_97147078651_5155_1,8b543786-69fa-467f-88ae-c9a786300128,e175d23d-a7e6-4e72-a658-f07178600c46,1b17e2e2-82ba-431f-aa9d-08e5df5e5571,1fc4e419-c7c9-4008-909f-f4ab210cdc58,xxx_yyy_2012_02_971553233987_971567751556_8351_1,xxx_yyy_2012_02_97143805271_971556330581_5401_1,xxx_yyy_2012_02_97147443344_971557630190_7002_1,0cd5ea72-7d3c-4484-ad7b-03f826b505d6,738a3593-4c9d-40a1-b3c0-0cdea5b85e16,aab87edc-03d6-4576-a367-cca6a12037e4,xxx_yyy_2012_02_971557350251_97141729585_3161_1,b78b11d5-12fa-4e70-aec2-9dea72c8093e,xxx_yyy_2012_02_971502144887_97147870612_9973_1,xxx_yyy_2012_02_971559546367_97147586005_4438_1,e984e00a-d9b3-4fcf-9a23-b514d7903b21,125f40cf-d693-49aa-b8e7-208ee901509d,xxx_yyy_2012_02_971559588388_971502922116_9844_1,xxx_yyy_2012_02_971557367913_971559755791_9160_1,c30bd901-ae2e-4752-9f9e-6b6fd8423730,9012b41e-baaa-42ad-ac4a-c7b36aaa5773,7fdbd3c8-eadd-4311-a06a-a5f3e19a82d5,xxx_yyy_2012_02_97149820983_971509096464_5322_1,xxx_yyy_2012_02_971507811433_971559006364_2516_1,xxx_yyy_2012_02_971565731598_971504119956_1921_1,e01814b2-a170-43dc-91ab-e52592b7152b,xxx_yyy_2012_02_971552835555_971569223490_464_1,06192fa6-60fa-4dfe-9ac3-1b272dc48c94,xxx_yyy_2012_02_97141308310_971555535855_9337_1,94a18ae9-1538-4fe0-bf9b-73eee25fb830,e64979da-40ad-4238-b145-98efe0a09dc4,bddfdad9-50d5-4967-82b9-c80d525272d1,xxx_yyy_2012_02_971509923071_4538327708_2781_1,74a4e449-aa92-4a99-9e6a-7d394f624b70,xxx_yyy_2012_02_4532435408_971503736441_8729_1,205f2aed-8135-48d0-9576-3b58d7988b19,95d43d24-5483-40c9-9fc6-bbf6597c60da,xxx_yyy_2012_02_971509019211_971555698403_6879_1,xxx_yyy_2012_02_971567112075_971509943560_1597_1,b52fc6a6-be95-4c21-966e-619b4e9066af,9da04f2f-6d7d-41b7-b99c-f4b1b071d7a6,54025b5e-edfd-49f3-9296-4766b26452fe,ced90acf-dea3-4457-b4c9-c50dc4ff1efd,dc2f8e3d-13aa-4a37-8e5e-2ab1a55b13a2,xxx_yyy_2012_02_971505348915_971503801523_9665_1,xxx_yyy_2012_02_97140166197_971505051890_9938_1,xxx_yyy_2012_02_971553568041_97148682421_882_1,xxx_yyy_2012_02_971568933111_971563386647_6375_1,52ff6e6d-400d-4cc3-a0c9-34a7a5202441,xxx_yyy_2012_02_971554166203_971508509537_3353_1,xxx_yyy_2012_02_971553838966_971506530263_5076_1,227bb540-3074-48f7-98fe-2c4f91dcb607,3f1ec5d4-7286-4dc9-bc8e-be5a9a6c53b8,f02182ff-1f68-412d-835e-f008f8d5df14,0ca4b4b9-6f89-403e-9476-a582324d2b7e,xxx_yyy_2012_02_971507236537_97143468714_815_1,xxx_yyy_2012_02_97142592710_97142052229_9701_1,xxx_yyy_2012_02_971507516829_971555367762_3426_1,xxx_yyy_2012_02_97146288430_971551437778_7152_1,ab8a7af1-027c-46fa-94f2-356da786faa2,xxx_yyy_2012_02_971506665093_971553365092_648_1,b3823efe-c8f5-4960-a772-422c1f9f8939,xxx_yyy_2012_02_4573124308_97142364863_9800_1,xxx_yyy_2012_02_97147754390_971553964494_3908_1,xxx_yyy_2012_02_971556118943_4544404011_9638_1,bdc43302-8ea3-487f-846e-55680c82bd7c,b50fb566-cd7d-4f8f-a5f6-b96d15e45817,5b80cc10-f88b-4a56-905e-3be9437803ae,fe94029d-d409-4cf7-b8d7-577c5d89a65a,xxx_yyy_2012_02_971561960124_971567610697_9301_1,xxx_yyy_2012_02_971504816490_971559476181_5821_1,f0a4bac4-ad17-45e2-8f09-0255a91311e3,xxx_yyy_2012_02_971508010552_971569394396_8540_1,fbb14b0d-a650-47f1-9e61-3b1d2b374a8c,xxx_yyy_2012_02_971502848444_971553694032_4097_1,41e30b47-592f-4b65-8595-8e0e514af3bf,8bd1cafa-b56a-433f-9ffd-c771f0b904e2,7644c2fe-287a-4ee8-8ffb-46cb42c0bace,xxx_yyy_2012_02_971554749088_97148332706_2660_1,xxx_yyy_2012_02_971566203365_97144329061_3406_1,xxx_yyy_2012_02_971506337998_971500395193_8557_1,6ee78806-015f-4d8e-a067-772912b61489,1ed2ae21-51a5-4408-8fc4-ed90a8588357,xxx_yyy_2012_02_971551040499_971560712439_7361_1,d32acfe6-80f5-4f4a-9905-8baddcdb816e,xxx_yyy_2012_02_4575326412_971500895992_1571_1,xxx_yyy_2012_02_97140641306_971506712431_6426_1,xxx_yyy_2012_02_97141078349_971506396071_4890_1,xxx_yyy_2012_02_971567648691_971567558171_6203_1,xxx_yyy_2012_02_971501101007_971556627078_4727_1,xxx_yyy_2012_02_971567244781_971553874928_4342_1,xxx_yyy_2012_02_971507703593_4559777109_7305_1,5936c58f-39d5-4357-979a-d85647abeac2,3c7c220c-7a9e-4763-8f3d-81bcc9733d42,xxx_yyy_2012_02_971500119969_971563093399_9073_1,xxx_yyy_2012_02_97144532053_4548248677_2219_1,xxx_yyy_2012_02_971550687475_971560293315_5210_1,xxx_yyy_2012_02_971501587930_4527919026_7763_1,xxx_yyy_2012_02_97148591650_971558959086_2438_1,a5f5c850-6cbb-47fa-8e0d-87275999aa39,xxx_yyy_2012_02_971502721556_971505689720_2827_1,xxx_yyy_2012_02_971502434407_971503322244_5267_1,xxx_yyy_2012_02_971563992962_97140860496_8292_1,735dbc8d-89e2-4544-9751-9386ecb799cf,xxx_yyy_2012_02_971558545715_971557634050_9613_1,xxx_yyy_2012_02_971507701918_971501852969_6467_1,11ed1f3a-4eb3-4ea5-9460-876bf251db64,xxx_yyy_2012_02_971558478744_971507758485_3295_1,23850494-3007-4453-a5e8-562e84265ac5,xxx_yyy_2012_02_971507695942_971553272513_6530_1,xxx_yyy_2012_02_97142082304_971550575825_3520_1,xxx_yyy_2012_02_971556775174_4558237840_283_1,xxx_yyy_2012_02_971508552721_97148865958_8228_1,a2e4cfcd-563b-4bea-8b1a-7854272cac14,ea976ec2-6dd5-431c-86e6-300838e4cf66,xxx_yyy_2012_02_971558836774_971504340195_875_1,0304481c-e096-4a39-8bb1-c3a4c5b0c412,xxx_yyy_2012_02_971556265002_971560351692_4800_1,xxx_yyy_2012_02_4577637534_971561482519_4549_1,7f48b0e8-0967-438d-93e3-4bb870b04009,xxx_yyy_2012_02_4561239905_971502879866_5554_1,xxx_yyy_2012_02_971558409066_971551261264_8717_1,ccaa7054-13ea-4991-8d03-5c420a3422db,xxx_yyy_2012_02_971500569359_971565141887_7221_1,xxx_yyy_2012_02_971560676093_971563914076_7754_1,99217c23-e29f-4bfe-afc9-0cd4b386eaa7,xxx_yyy_2012_02_4581391033_971568283648_8257_1,ccaf294e-cecd-46d8-a50e-abed336cf7f9,xxx_yyy_2012_02_971567744698_971555085487_1669_1,xxx_yyy_2012_02_4558096265_971567951990_867_1,xxx_yyy_2012_02_971509114776_97147066485_3206_1,xxx_yyy_2012_02_971554082296_971564776792_861_1,78e56df3-d2f9-408d-938c-80096d3e9908,xxx_yyy_2012_02_971551211031_971507042356_6371_1,6ad7dec3-93ed-4444-a5b0-d7d3f06844c9,50079246-f756-4112-9168-e8c226a7146e,d92d9e5e-7d99-4d82-84be-e417e5d71852,xxx_yyy_2012_02_97148754403_971562178526_9883_1,xxx_yyy_2012_02_971552602701_971565163062_2710_1,2fee7b92-45b8-40f6-886a-c27c1a7bed31,xxx_yyy_2012_02_4556844129_971561963851_8815_1,3cdc508c-0a9b-480a-8b53-85f24e8c4d15,1f211386-9c1a-464d-80cf-30583c7a0770,a4d3346d-9cb5-42eb-87fc-b9ccecb9724b,xxx_yyy_2012_02_97140002634_971508615115_6142_1,xxx_yyy_2012_02_971560097180_97148648768_9061_1,xxx_yyy_2012_02_97143698283_97148272367_6941_1,4fd733f8-3fe5-4765-a338-dfdd55a8f9db,xxx_yyy_2012_02_971502699911_971555365447_6564_1,xxx_yyy_2012_02_971560246630_4561852531_9397_1,xxx_yyy_2012_02_971567330524_971551190500_8873_1,d39a110d-8fc3-48ab-95b7-ee22e35516c1,xxx_yyy_2012_02_971569854207_971501789899_2323_1,xxx_yyy_2012_02_971559959149_97149493156_1794_1,01c0c903-cd0f-4b32-b23c-167cd1b1f089,xxx_yyy_2012_02_971500702676_97146926301_3794_1,xxx_yyy_2012_02_971503924850_971557267779_1801_1,217e28f4-dcdd-4e93-bf08-60138ea788fe,3dddac23-bb29-4b93-9135-b15277c36048,4ef3baf5-9d90-4ceb-99d9-aa43a8f8021f,xxx_yyy_2012_02_971561297844_97143248521_4748_1,xxx_yyy_2012_02_97145899815_971565191976_9569_1,05f48bf7-7087-481d-876a-0065467b7803,xxx_yyy_2012_02_97145959375_971569812831_5132_1,4a88a729-f3a9-419a-8e1f-3a6a452c79ce,5a7a7ca1-d487-49b2-93d0-aef89b9ac348,xxx_yyy_2012_02_971504598805_971501082574_3341_1,xxx_yyy_2012_02_971503512854_971559238786_5919_1,xxx_yyy_2012_02_971503275845_97142783999_636_1,xxx_yyy_2012_02_971557231613_971565831843_5063_1,11dab8c8-ea4c-4229-9784-3c18830d2858,xxx_yyy_2012_02_97140801353_971509927002_6168_1,xxx_yyy_2012_02_97142111722_971561576933_8833_1,xxx_yyy_2012_02_971503565876_971504276940_2063_1,7772509d-d751-4a30-bd63-d675c63ea76d,xxx_yyy_2012_02_971558306406_97140668924_9995_1,xxx_yyy_2012_02_971501958979_971507946495_1471_1,a27e7e4b-0705-45e1-8a18-25b680e3c2a3,42150355-4cba-4468-9546-724c46d08a4a,xxx_yyy_2012_02_97141916203_97148189194_837_1,xxx_yyy_2012_02_971506774433_971557363367_4_1,86a1e988-3aec-4a14-932c-c5eb1b0828e6,xxx_yyy_2012_02_971500947525_971500595693_4221_1,8dbe4068-7e52-4da8-8b90-7de700161f2d,xxx_yyy_2012_02_971505724999_97147559328_1821_1,1c41b0a9-a94c-4309-a6aa-020e0e6e6a81,f19c5058-963b-4ee7-93ca-1dd4bd15c516,22577f59-7c27-42c8-ad2f-f2a925cf29c0,xxx_yyy_2012_02_97146487833_971508510549_4204_1,xxx_yyy_2012_02_4577380079_97141624230_3257_1,79b39456-401b-4870-aa07-e5f59703e84e,92503cae-681c-4876-8958-8dd6cf941e3a,227e6dc1-be01-4e8f-ada0-41c1511cce19,xxx_yyy_2012_02_971506348576_97143246399_9891_1,xxx_yyy_2012_02_971559830815_971507883680_4670_1,xxx_yyy_2012_02_971501759307_97145956772_3854_1,e7a22f20-987c-445b-b1e6-0c2227ad34c9,64041f62-8f49-4ed8-953e-3da0c41609b7,xxx_yyy_2012_02_4530079658_971508374028_4309_1,f85707fc-b4d3-4e4f-96b9-1986cf40fad1,74a722b0-a3ee-434d-9e53-405109cf29c3,xxx_yyy_2012_02_971506182617_97147717526_3791_1,xxx_yyy_2012_02_971562699878_971505984310_13_1,xxx_yyy_2012_02_97144066341_971507241968_7217_1,xxx_yyy_2012_02_971565580505_971501528489_4952_1,f8213645-8b39-4833-9fb4-9187ce604ae1,6e3412ae-733e-4980-862f-0421c84c0b8e,xxx_yyy_2012_02_971565985658_971564570092_6487_1,xxx_yyy_2012_02_97147916732_971569132200_5162_1,8112023b-df6f-445d-baf1-7e01746d0c87,xxx_yyy_2012_02_971561243407_971559042019_590_1,xxx_yyy_2012_02_971564879449_971504928680_1457_1,85b1ffe3-0160-4d6d-ab14-3522cb4519eb,98114dbe-6733-4718-b6c5-f358f6019160,749827a9-809d-4e04-8ff0-f368d4040d03,xxx_yyy_2012_02_97148870771_4556597995_6520_1,4f433fba-f777-4fb9-afaa-67b7af231b2e,xxx_yyy_2012_02_971505927187_97145873045_9309_1,d4dd1a88-93f7-482f-bd37-654ed510ff65,xxx_yyy_2012_02_971555961238_971500683902_4677_1,xxx_yyy_2012_02_971562291348_971567627146_1833_1,xxx_yyy_2012_02_971551293074_97148383083_7178_1,4ec330fc-3e99-42fb-8181-032f86a35e03,b23f2c56-5e2b-4c79-81ae-cfeef3d89146,b1452f75-9ae7-427a-b8d5-3f321a59cd56,xxx_yyy_2012_02_971559411625_971559930787_5591_1,a7737a8c-aa61-4aad-a1eb-7490d906554a,xxx_yyy_2012_02_971501128911_971504616106_1836_1,6b2c2a6b-9478-4e56-a963-82a4cf2d3122,0ae006a8-12ee-4d90-b30d-b365de0389f3,xxx_yyy_2012_02_971559271353_4532365220_6743_1,cb906d11-7fe1-4068-a426-b4d03589808e,xxx_yyy_2012_02_971500358517_971551143871_5268_1,549c09df-5ce5-4667-9c3a-c2c801e666e7,xxx_yyy_2012_02_971567119755_4541942732_485_1,da59cea9-a286-49ec-840e-c62394ec4b2e,xxx_yyy_2012_02_971556983895_971568001953_4456_1,xxx_yyy_2012_02_97144674647_971560326565_4747_1,c9c2e1d9-4a97-4d19-a03c-786025a782de,xxx_yyy_2012_02_971568674692_971507078283_2391_1,xxx_yyy_2012_02_97140146842_4552672621_5492_1,xxx_yyy_2012_02_971500907727_971564173080_6325_1,xxx_yyy_2012_02_971551528534_971561761006_7396_1,351a525d-b83f-4992-8b60-d9c665b01df7,642e26df-918a-49b9-86d0-203a786070e1,74fde7e1-2c77-406c-8eaf-68b6759dcaf0,eaf776d9-fb12-4b08-85fd-83fb6e7b03e7,d56a65dd-34b8-444d-8dd4-c7c0be554ccb,0afb398f-e28b-43de-9b4e-1efb55db4cae,2cecb63e-f460-480a-a161-97032746a1ef,87f46c8d-9f82-4f15-b4ed-df9e9674b672,xxx_yyy_2012_02_971502295404_971558858142_5067_1,ad5e5fca-96b8-4850-b174-940b84653eca,f37f3a05-7277-457f-88a3-d17215e2a9c4,c74e4b3e-7ba2-42d6-89f6-69b6715cd4a9,0720c921-ad42-42ff-a2ed-9a64f86d5869,e04b36a9-a86d-49ad-a5d4-ac8c4ae40c67,0d1eb8ea-61ad-4331-a8d9-7eefaa24cbb8,c85e48c8-3662-447d-b2c3-20e871e75404,xxx_yyy_2012_02_97143754307_971559496670_1027_1,aaf4fc08-aa78-4d19-94bd-17c25e342997,4c99b858-6d90-46b4-91fb-755eeba8819c,4e38e211-291b-4956-aeef-41887bf26db2,b858783c-21dd-43ad-9bc1-58c59a577727,1550478b-93a2-4a58-9a35-872893f60289,xxx_yyy_2012_02_971565800209_97147353755_5384_1,xxx_yyy_2012_02_971556245066_971551238159_1824_1,edc8ea60-ba2c-4002-98d6-005a81bf154d,f62f285e-e9f9-4a28-ae37-9c9da8046799,xxx_yyy_2012_02_971555457428_97142003623_1354_1,41f166e8-dd7c-41db-9f6d-6d97496b9b48,xxx_yyy_2012_02_971504910531_971507042459_4356_1,xxx_yyy_2012_02_4561441405_971560226611_6403_1,xxx_yyy_2012_02_971508177984_97146473532_1082_1,0c14dab8-ced7-4047-9f1e-fd5559476a97,xxx_yyy_2012_02_971562820782_971506114202_3501_1,367adfa1-d039-4300-b6ec-ca3b5b112e5e,xxx_yyy_2012_02_971501365497_971553766528_2278_1,a5bb194c-d785-40d8-98c4-47bfb16a357f,4cc97f1f-45e1-4316-aa49-33acf320e031,a52d0dd3-b094-43f2-980a-ded4aff618e3,11f0ebd4-62fb-45c0-af6c-9f79c3fca620,xxx_yyy_2012_02_971507224330_971562630728_6027_1,2b6c73d0-4f8e-411f-b937-d63f1c17e67b,xxx_yyy_2012_02_4532924893_97143741614_1065_1,xxx_yyy_2012_02_97143561913_97140408533_5302_1,xxx_yyy_2012_02_97146335947_971562292226_857_1,xxx_yyy_2012_02_971561754192_971508445468_8176_1,87c0c091-8072-4a0a-917d-a94aba7b1dcb,xxx_yyy_2012_02_971569044461_971564181030_9591_1,48c30bf9-06e7-4b42-96bd-268bafe35b63,xxx_yyy_2012_02_4526046956_97146332947_9780_1,xxx_yyy_2012_02_97148860939_971506368327_621_1,xxx_yyy_2012_02_971553849153_971507963885_7611_1,xxx_yyy_2012_02_97146321694_97140007073_6804_1,xxx_yyy_2012_02_971505233393_971550969744_8651_1,38386f52-3127-476f-b7bc-01ba589269e1,xxx_yyy_2012_02_971508177864_971565361084_3843_1,xxx_yyy_2012_02_97143472806_97140722651_7523_1,xxx_yyy_2012_02_971503755507_97144841378_4382_1,xxx_yyy_2012_02_971564563956_97143815651_3459_1,ec78d4a3-eaee-4d2b-82fd-a969c2c7b9ef,5f01527a-1975-488f-856b-18b4697b20d3,xxx_yyy_2012_02_97145093769_971504258795_3839_1,xxx_yyy_2012_02_971552424093_971563356360_1790_1,xxx_yyy_2012_02_97144317260_971566989099_9776_1,xxx_yyy_2012_02_97141811685_97143858012_1348_1,a74ae293-c28e-4e63-959a-ca2c746ba480,b82c51d1-342d-4633-acd8-3890ef29f9ef,1c8d0ccb-6c6d-4677-8079-0337f638f5a1,xxx_yyy_2012_02_971562713502_971563295946_2283_1,0531865b-5d80-4620-82f0-57ad4781d60d,8306b691-ff45-4f80-99ab-a65535a8ee72,xxx_yyy_2012_02_971551179217_971509354353_1473_1,c8552350-ebd5-47cf-a9b5-17703dcdfc3c,xxx_yyy_2012_02_971552755895_971502660060_8633_1,9b67f2b8-11e2-409d-9bc6-33e9d523d529,5afd1f98-457a-410f-94d6-3cb794dca714,171f635b-46e4-4a08-be22-a496db0c67c2,xxx_yyy_2012_02_97147039725_971503482150_9103_1,6e42c423-1091-4ba8-91ef-d6758eb24f3a,xxx_yyy_2012_02_971562620762_971508515209_2072_1,xxx_yyy_2012_02_971561159083_97142229994_2488_1,f6af79ed-2716-4ddb-8818-566f020817da,xxx_yyy_2012_02_97140251920_971562722673_7013_1,abc5086f-8ad5-460a-a7df-5c7022822f8c,37544d64-f5fb-4774-a703-c4e81c848b00,ccba04e3-b97a-47ca-843d-570be7ac962d,xxx_yyy_2012_02_97142140593_97148661738_6583_1,xxx_yyy_2012_02_971505400018_971562729096_4770_1,xxx_yyy_2012_02_971503675282_971556965768_5998_1,f332d9b7-2d72-448a-8c43-bf0f702a840b,xxx_yyy_2012_02_971550162690_971554352721_3954_1,fe032890-66c3-4c5d-880f-e22c7095e656,6e764f2d-d4d0-4f5f-8bf6-ac52c56c455d,xxx_yyy_2012_02_971503663672_971559914357_1906_1,xxx_yyy_2012_02_971561368968_4534307094_9163_1,6595f133-2c9d-48bc-9104-82e0b83292c8,xxx_yyy_2012_02_971558920880_971568727508_7771_1,xxx_yyy_2012_02_971564117900_4540979760_6064_1,f39e5fbe-47e9-48fb-bad9-b77538ac238e,xxx_yyy_2012_02_971565851201_971563312468_6657_1,0ef791ac-6b6e-4346-8dbe-b0c8bc994f08,eed81ab0-68e0-40c2-afb7-4faf08659012,xxx_yyy_2012_02_971506903022_971563180170_7334_1,cff64735-b5fc-47cb-8681-45f4ae2c3968,xxx_yyy_2012_02_971566490946_97142149137_6864_1,xxx_yyy_2012_02_4575535049_971550573028_9304_1,xxx_yyy_2012_02_971569385780_971555085631_5530_1,9752a29f-f410-4969-ba43-2503b28559fc,f5f57e90-1d25-4663-b4b6-0f3ef148fb4e,xxx_yyy_2012_02_97147098963_971554254066_9176_1,xxx_yyy_2012_02_971560644461_971509492836_3106_1,xxx_yyy_2012_02_971509220054_971556700188_7227_1,0c1dd655-6020-4488-9951-e17697cc8bec,fb968560-b466-44fd-b995-1646ebf4639d,9ed3d309-f501-4fc0-948e-b5860417adab,xxx_yyy_2012_02_4551800896_971555029916_6271_1,xxx_yyy_2012_02_971508336280_971560295058_2151_1,fe997a8c-fd3e-4227-a79a-0a08569dc6a1,08fcd791-7fad-4495-beb2-797bd535bcc3,xxx_yyy_2012_02_97146675275_97143721321_745_1,b6594d8a-960b-4d6f-b4de-b55a6350b233,821f3432-ca67-4029-bd99-99d7f677eb4d,xxx_yyy_2012_02_97147252324_97147258150_5858_1,xxx_yyy_2012_02_971564042367_97144683141_1746_1,53bf4268-855b-4f17-b3f6-91e915fbb5eb,bc3d7517-fa80-4ed3-9ed7-b909b9b9dc7c,xxx_yyy_2012_02_97149299786_971554283383_7070_1,f634f3c5-b005-4ad8-a0b2-d1e2f4fec897,xxx_yyy_2012_02_971506429720_971552865103_6509_1,xxx_yyy_2012_02_971504823147_971500149026_5607_1,xxx_yyy_2012_02_971566381488_971569972253_4606_1,xxx_yyy_2012_02_971562617803_971564390259_4502_1,xxx_yyy_2012_02_971502591972_4532520372_5010_1,xxx_yyy_2012_02_971567111176_971500674140_5215_1,28f1d4e2-f374-48f6-bd62-e050a5f3cce4,xxx_yyy_2012_02_97149522627_97142150625_7345_1,d740ec00-cacc-4f51-83fb-b4c59e32a062,547d198a-921d-489e-b8fb-135ec8d5f072,fefcb6af-2d07-42e8-a7c5-7e13a817409f,b3eee743-52ca-411a-81d5-5c60479cadc2,xxx_yyy_2012_02_97141500360_971569625490_7436_1,xxx_yyy_2012_02_971555343479_971552031452_6958_1,2697a77e-15b6-4fd5-95fe-c835631ebe1f,775c7cfd-b3f5-4599-a8f8-ef1498ab08a5,xxx_yyy_2012_02_97140188159_971500262237_4295_1,b664cf4b-862e-4ca6-9aca-d414dbcb5d29,afef2a37-bd14-423c-880f-b044fc361f4d,xxx_yyy_2012_02_971554575948_971554798595_4317_1,c0f3a5a7-5d26-4a38-8dbc-d7af53d226d7,xxx_yyy_2012_02_971508996499_971556034309_9223_1,0ec4924b-103b-435d-b232-6246f0938961,xxx_yyy_2012_02_97147461503_971507095268_9018_1,a49219d3-6793-4019-8399-ea7d29c18741,27f532c2-783f-445e-96c9-962f555df1db,c277d389-dcea-4fec-a784-4f39e94a69f5,xxx_yyy_2012_02_971502225655_971551954529_3882_1,a77ebe6e-506f-4d97-891a-ae3399dc0f41,xxx_yyy_2012_02_971506012088_971557563766_5869_1,16a3a3d0-0679-49ef-8793-63c64bceafc0,xxx_yyy_2012_02_971550238100_971556792441_5740_1,a6486430-e97e-427d-b6f1-4498eef2b594,4aecc5df-32fd-4d21-b8de-f8bb26fe10d0,xxx_yyy_2012_02_971557174354_971507357163_7203_1,xxx_yyy_2012_02_971561166470_971557383920_4729_1,201d6486-a4a1-4fa7-8ccf-19cddcd0f7c8,xxx_yyy_2012_02_971505169652_971559067695_1811_1,xxx_yyy_2012_02_97145198803_971552748954_332_1,xxx_yyy_2012_02_971552272420_97149184330_5006_1,xxx_yyy_2012_02_971507057513_971567698854_2706_1,xxx_yyy_2012_02_971554017570_971550642591_9985_1,xxx_yyy_2012_02_97144794076_97146650735_4943_1,67940025-6a00-439e-967f-62aad9bd1747,553a5eb1-4b2f-40bc-b7f9-e90dcc40eed8,73ce1d20-9022-4a2b-a0b7-f79c8866a081,xxx_yyy_2012_02_97146852289_971552165346_1470_1,xxx_yyy_2012_02_971556702854_971506075333_228_1,xxx_yyy_2012_02_971566987973_971564914576_1856_1,xxx_yyy_2012_02_971501490191_97142076198_1717_1,xxx_yyy_2012_02_971562707904_97146559998_2145_1,xxx_yyy_2012_02_971559774547_4528508495_6435_1,01214561-a7e3-499b-90b2-6b79d3435ec2,652b6fb4-42c5-4315-aa2b-be6627a1ca1c,e015d654-dd3b-4eee-8ea0-cff04a67287a,xxx_yyy_2012_02_971566445103_971558366223_9099_1,xxx_yyy_2012_02_97148990555_97140304375_6297_1,xxx_yyy_2012_02_971567920714_971562473084_9194_1,0ab3d2f6-68e3-49cb-9bcd-4cc0c348b843,b2f777fc-5449-4864-84e6-f290adb1be5e,127f4a80-0299-4e74-85d8-9b04fd0c7cc6,xxx_yyy_2012_02_971503827307_971568877432_8990_1,xxx_yyy_2012_02_97140733432_971560251181_5239_1,eb520a2f-74ec-4f5b-9177-ceab598ac7f4,xxx_yyy_2012_02_971557551870_97140978616_2825_1,xxx_yyy_2012_02_971552832662_971557836801_5103_1,306cdaa3-3c5e-457c-bcee-369c522e9ce5,xxx_yyy_2012_02_971508209337_971563096715_7931_1,69850a2f-e3a2-4ab8-b5ee-a39b32802ec0,xxx_yyy_2012_02_971567313029_971561602144_1094_1,1e58c2a1-6a72-47b6-84d7-cc98a54c9b23,xxx_yyy_2012_02_971501321156_971505563520_3847_1,xxx_yyy_2012_02_97149252334_97142326997_6193_1,6ac7203b-951b-441f-8994-8554b422122e,03b0a00b-d023-4efa-b7e6-fee25aafebc3,9c76bfd0-873f-468c-b7c6-5a6fd7415419,728ba604-70f4-401c-b784-cf88d600be76,0bbd3ebc-eebb-44fd-a264-8f21d22908d5,6f48ae50-9500-461b-af9d-14d0833c9cc9,xxx_yyy_2012_02_971558646318_971562805567_8611_1,fcc2f39f-9d82-4771-8240-fcd72656bafe,xxx_yyy_2012_02_4550255029_97146836652_4372_1,xxx_yyy_2012_02_971569709425_971565575208_6521_1,xxx_yyy_2012_02_971504029822_971507927292_5695_1,xxx_yyy_2012_02_971564905120_97143741016_7204_1,xxx_yyy_2012_02_971553911654_971563673752_3500_1,5b8da0ee-87bb-44e1-ba7c-00c0db283212,26dc8166-618b-4324-8aed-d08c9517f6ca,d99c160d-3811-4df8-bb28-ffa256da43a9,f04a585c-b810-479a-bf9c-11bb9a9ded6a,xxx_yyy_2012_02_971557766716_971505997625_2303_1,xxx_yyy_2012_02_971566440274_971558951532_4206_1,xxx_yyy_2012_02_971554520650_971505338569_4274_1,91a27606-e9d9-41d3-b5a0-98796ddf8f13,5ca70a14-2e57-4c41-b16b-6bc2292ff3e8,xxx_yyy_2012_02_97141306556_97147664254_2846_1,b27361d1-0925-494a-8a35-46c5bb2876e1,xxx_yyy_2012_02_97143600368_971563135182_7023_1,61dc4145-d286-4601-8b3c-06b206ee29ba,xxx_yyy_2012_02_971505608246_97149090696_6174_1,c53f1617-fe6a-4eba-b465-466cf6e334ba,24f120df-16e6-4d54-81d4-056c85ec8f95,b9e74957-73e7-496d-954f-693d6823bfda,aec6ef9e-8584-4c6a-9ccf-faaf892e758f,xxx_yyy_2012_02_971557137265_971500150729_6759_1,xxx_yyy_2012_02_97147539818_971503860115_6449_1,0d1154c4-2982-4950-b1f4-24fe9dc85de6,c2be0258-d47c-4a95-b87d-7265543a8764,e8ac316e-48ce-4726-923f-c619ba7e1f50,xxx_yyy_2012_02_971500238029_97143004820_5801_1,xxx_yyy_2012_02_971564388239_971559153725_7602_1,1498620a-9942-472d-bffb-e129c15090b6,xxx_yyy_2012_02_97147197396_971501109125_1171_1,xxx_yyy_2012_02_971558352429_971561197555_3783_1,xxx_yyy_2012_02_971556611365_971562718782_7546_1,xxx_yyy_2012_02_971507550306_97148509117_3522_1,xxx_yyy_2012_02_4574405050_971501782333_2913_1,xxx_yyy_2012_02_971560976418_97142093356_8501_1,xxx_yyy_2012_02_971552555281_971559656042_6731_1,5113c66d-fb0b-4f4d-94a2-e0a7244dd096,xxx_yyy_2012_02_971555566469_971505241561_7230_1,xxx_yyy_2012_02_971561715168_971507112741_5951_1,a39b1d7a-e674-4b4c-b27b-387756032426,xxx_yyy_2012_02_971505228157_97142794107_5907_1,xxx_yyy_2012_02_971505574788_971566945025_8229_1,138288cd-19b9-48ae-ab02-49c3b6410f9b,xxx_yyy_2012_02_97143730799_971553230546_7008_1,xxx_yyy_2012_02_971557219445_971509478999_8247_1,55dea9bb-245e-49f7-b9b6-85e1600006b9,6b987310-3485-4000-a350-e00628f8fd31,xxx_yyy_2012_02_971562183127_971566229462_3458_1,xxx_yyy_2012_02_971555289577_971551904458_1320_1,xxx_yyy_2012_02_971502957532_971504958514_2258_1,xxx_yyy_2012_02_971557278859_971557822936_3275_1,164ce725-a349-4237-8255-c6f3949958eb,b90f2321-052b-43ca-984f-abc55c8e6bf1,827de9e1-e965-4959-b0ba-c1acfbb4fa1c,524cff6a-a5cc-4daa-a4b3-074c59259f11,6a0dd466-6b1d-4f3f-a883-5dee5a4a1285,b4dbd421-b534-48e5-af7f-ebd9de079fe1,c0840039-6232-472f-9ed3-96ec90053f5d,48c5437f-b18a-4ea0-bfd3-2cb08f903bfd,xxx_yyy_2012_02_971506092676_4528988671_3385_1,f5e041cf-d624-41b4-8a63-d6502954b2f5,e2a3e7ad-62c2-4119-a7dc-c139579620de,b2932dcf-be5c-4cad-af4e-876b2543c113,xxx_yyy_2012_02_97146408849_97145920584_711_1,xxx_yyy_2012_02_971568057354_971560581400_5309_1,a6c37b72-1794-4561-a1c9-e3f4f962781b,xxx_yyy_2012_02_97148486007_971507885528_5130_1,xxx_yyy_2012_02_971508057377_971560311468_2882_1,xxx_yyy_2012_02_971501436729_971558464141_794_1,xxx_yyy_2012_02_971560762297_971568944699_1243_1,8c1dd343-2320-49da-9367-a8df43b565e8,xxx_yyy_2012_02_971557525139_971563210531_3451_1,xxx_yyy_2012_02_971557541097_971563138824_5556_1,xxx_yyy_2012_02_971509724204_971564575468_6348_1,33b57418-cfc4-471a-a054-29413f28a81c,b2332ca7-d6c5-4134-a540-59aa70b6bce4,807f4a71-f033-4ff5-9bff-ae7509c77c66,cd97bc9c-814f-45a5-a034-a5b5efb05597,67396269-80e6-4941-89a0-f3062255c49f,efe1d287-4ba7-45b6-be4f-28b134ab3ea0,xxx_yyy_2012_02_971555081311_97143700742_2664_1,xxx_yyy_2012_02_971564648257_971565592689_6915_1,7b88687b-a968-402b-9fc8-0d58067d3f0a,13fb46a5-d4b5-47a3-8a40-8c76f8ae07c0,xxx_yyy_2012_02_97140694425_971506489292_2729_1,eb6b88e3-f6be-473d-afa6-0073293435e9,xxx_yyy_2012_02_971550664169_971561089228_2486_1,xxx_yyy_2012_02_97148629324_971506231404_776_1,xxx_yyy_2012_02_971502707351_97140420447_9112_1,xxx_yyy_2012_02_97148579525_971500036449_4454_1,xxx_yyy_2012_02_97141805693_4547350466_1080_1,xxx_yyy_2012_02_4555351142_97146853475_527_1,76016827-be7e-4b5a-97b5-44164e7a1970,xxx_yyy_2012_02_971502291898_97148678153_5539_1,c642c7fd-3d94-49f7-8368-16d08e2c06e0,xxx_yyy_2012_02_971550260118_971508289560_9663_1,xxx_yyy_2012_02_971501989355_971552101654_9668_1,xxx_yyy_2012_02_971505875031_97142460986_2627_1,a5b9d73d-aeaa-49c2-8935-f955e9926713,0bfa5dac-d2f4-4596-97f3-b4dcdd57d24e,e01220af-df06-49e3-bbd1-78aeee4b5756,xxx_yyy_2012_02_971501773914_97144839219_4601_1,xxx_yyy_2012_02_971565107117_97147359051_1026_1,5f4b266c-d4f3-4d30-9c18-dcf2448b4c5a,xxx_yyy_2012_02_971509081683_971551971121_7313_1,abe618e7-3032-4169-8bda-ba09e315638a,539da780-7c8f-42e2-8168-412b1d92913e,cce38d00-c2d5-4e75-b037-0c4b7e3b725b,xxx_yyy_2012_02_97145920836_971505712626_850_1,xxx_yyy_2012_02_971508502414_97140732974_2983_1,xxx_yyy_2012_02_4532704457_971506955791_772_1,xxx_yyy_2012_02_971502078418_971501314172_8606_1,a4f96a89-c5ec-4347-8557-4e27dc8357de,xxx_yyy_2012_02_971566902291_97146286636_4689_1,xxx_yyy_2012_02_971551405791_4579920475_8191_1,xxx_yyy_2012_02_971552673378_971502766001_7249_1,xxx_yyy_2012_02_971560473612_971554991901_2233_1,xxx_yyy_2012_02_971507763967_971550692108_2730_1,xxx_yyy_2012_02_971551796105_971569310871_1556_1,xxx_yyy_2012_02_971507257346_971553963903_3726_1,xxx_yyy_2012_02_971504497262_971508194601_7128_1,810fe870-7a6e-45be-ab8d-536f77f1efb2,7cc4ff7e-9724-4806-a1c7-d1de48bb6106,xxx_yyy_2012_02_97146661226_97145144005_4168_1,xxx_yyy_2012_02_97143622728_971559543654_6162_1,20155f70-f38e-432d-bd24-98f8551748d7,74e4bcf6-2_97148025381_971560063488_5595_1,b496a0c1-2d5a-41a0-9474-5eb25ee009c3,0bb9f884-7392-4d16-8082-cd15e2b5db56,da029e39-b25b-4380-904e-2902228559d6,xxx_yyy_2012_02_4538767069_971506071113_1490_1,4a0c936f-be05-4850-8e50-a4276ab90d53,xxx_yyy_2012_02_971561433857_4562082198_7350_1,xxx_yyy_2012_02_971504412155_971565307636_2659_1,xxx_yyy_2012_02_97146479388_971505180970_4070_1,46269a43-caf0-4243-9e2d-a797b65b4225,xxx_yyy_2012_02_971563218122_971500227162_782_1,457f1e62-0b81-481e-b905-48dc01b21ed3,xxx_yyy_2012_02_971502597791_971554897911_1016_1,6a165b83-004e-4769-b1c3-0839e2a3abec,a54b735f-bc4b-4ea6-83af-109ee6df532d,xxx_yyy_2012_02_971568149925_971505350398_4449_1,a9f1386b-3dae-4969-aee2-5c62de13b42b,xxx_yyy_2012_02_971563631708_971550567237_3890_1,bddbc4fd-0e61-40f2-8695-dea0a028bc6d,d8856d27-ccd6-4eb8-835a-9476e20c567a,5802e288-e44c-4094-a65d-65d8cbc54d2a,xxx_yyy_2012_02_971503799094_971562479366_6308_1,xxx_yyy_2012_02_97146486816_97140010084_8347_1,xxx_yyy_2012_02_971551257783_971504000026_8361_1,05c458ea-d840-44a6-bc17-c080b4ffed21,xxx_yyy_2012_02_971504223965_971569387185_7423_1,8e0c5097-ec15-4022-b7f3-b7ddb0a48aff,519c63ce-5911-44a2-9e22-1b15310da16c,xxx_yyy_2012_02_971569855365_97147234220_1422_1,xxx_yyy_2012_02_971507054746_971563893291_111_1,xxx_yyy_2012_02_97144059394_971565067005_9150_1,a5075cab-dff8-475e-a38a-e789d4ce20c0,0582a038-0c5f-4644-80ee-cc81e4e5dc7e,bff812cd-bff3-4e05-9c22-2012e05fde10,xxx_yyy_2012_02_971553431684_971508717198_6654_1,xxx_yyy_2012_02_971560032184_97144104800_6123_1,xxx_yyy_2012_02_971508575365_97144187932_3614_1,dc00f9b9-bec4-400c-9d4c-6ef7580dac16,f444f16e-0a88-4c0f-b24c-c361de4bb5f7,1d51feb8-5bb1-4d99-9763-bdbbb848755f,96b6418d-d096-4433-9cc1-e20b85db5bb5,xxx_yyy_2012_02_971557879916_971550507512_635_1,xxx_yyy_2012_02_971502810199_97145878024_8993_1,xxx_yyy_2012_02_971507433559_971566335940_9829_1,3a234ad6-4ebc-413a-a53a-9c34765938ad,xxx_yyy_2012_02_971503004550_971557331961_4579_1,xxx_yyy_2012_02_971560435558_971561434327_9146_1,204fc872-1390-4aa1-9630-322beb208175,127d27f8-27c7-45a7-a879-c71c2a700b5c,257b66aa-3b33-470b-84cd-aad020383620,897d5750-0197-4dd6-a2b7-011bec766f80,dc66a717-b0aa-4cf3-835a-8adcea8257a9,0a276658-2aa5-4234-8362-e2b5b4e3726c,xxx_yyy_2012_02_97140185630_971560886576_3219_1,xxx_yyy_2012_02_971506876925_971557149718_1061_1,xxx_yyy_2012_02_971554759804_971501370549_5778_1,c4d74f10-fdc0-4c6f-9436-a05e62766c3a,xxx_yyy_2012_02_971505068767_4531682989_62_1,9da3e986-89e7-4683-875a-404e1ad6d9a8,xxx_yyy_2012_02_97148922240_971501691481_4014_1,87c3378d-2b6c-4d34-a52b-689ffda0fcc9,xxx_yyy_2012_02_971563220999_971556721247_8201_1,6b7e8e1e-8d51-48c0-a3d9-929b571616d7,xxx_yyy_2012_02_97149820411_971501059569_3612_1,xxx_yyy_2012_02_971558491598_971563542689_2410_1,xxx_yyy_2012_02_971550777385_971503552077_4737_1,xxx_yyy_2012_02_971500010963_97141491668_5105_1,xxx_yyy_2012_02_971551275186_971568395526_9811_1,xxx_yyy_2012_02_97149724586_971505864444_3927_1,4e1cffbc-7e98-47ef-96e9-360c116e3c1c,fa37c29f-d96b-49c6-bac3-a3f947c065b0,xxx_yyy_2012_02_97140608466_97142982235_4175_1,xxx_yyy_2012_02_971558755799_97144670636_4016_1,bdf48316-447d-47ea-acdd-fa5d37454b1f,5ee98725-504d-47fb-908c-c1bfdd55848c,e91a3b30-4597-49f6-ae3b-a19ba965ebb6,2660fbc4-3748-4409-9525-036a39461c5e,xxx_yyy_2012_02_97145438045_971501264974_5877_1,e07dbfac-7daa-4631-964e-0282003c1b0e,xxx_yyy_2012_02_971567523549_971562666797_7680_1,xxx_yyy_2012_02_971562000902_971569431107_5912_1,ba4e94b1-44e6-470b-ba38-1f1b0e1755b8,f850532b-89ab-4120-8ea8-6a5ec2a70606,26aae7cf-7b4a-4911-b460-ffd3c1ceeb63,bd74fbfd-eab6-4a80-a7a4-38a7 ,distrib == false ,collection == xxx_yyy_2012_03,xxx_yyy_2012_02 ,EDRSolrSearchComponent_DISABLE == true ,rows == 10010 ,solrqueryrequest.WT == null ,default-writer used == org.apache.solr.response.XMLResponseWriter ,cleared-req-info\
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\cf0 \
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\fs40 \cf0 Note that if you concat the actual data in 1) - 4) of the StreamEndPoint.fill logging above, you will get the exact same full request as was sent from the client (see the request under "Sent out of Apache HTTP framework on client-side" above). Conclusion - it is very likely that data is correctly received in StreamEndPoint.fills. Also note that if you concat the actual data in 1) - 3) of the StreamEndPoint.fill logging plus the first X chars in 4) of the StreamEndPoint.fill logging plus the chars after the X first chars in 5) of the StreamEndPoint.fill logging, you will get a request that would parse up to the exact request received in the HttpServletRequest handed over from Jetty to SolrDispatchFilter (see the request under "
\fs42 Handed over from Jetty to Solr on server-side - SolrDispatchFilter logging
\fs40 " above). Conclusion - the request actually consisting of 1) - 4) of the StreamEndPoint.fill logging is somehow mixed up by Jetty to contain 1) - 3) plus the first part of 4) and the last part of 5) before handed over to SolrDispatchFilter. \
I expect that 4) and 5) share the same byte-array and that 5) is allowed to write in this array (and partly did so) while the request consisting of 1) - 4) has not been read yet by higher parts for Jetty for parsing into HttpServletRequest - but that is really just guessing.
\fs24 \
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural
\cf0 \
}