diff --git a/doc/mk-coverage-html b/doc/mk-coverage-html
--- a/doc/mk-coverage-html
+++ b/doc/mk-coverage-html
@@ -1,403 +1,405 @@
 #! /usr/bin/env python
 
 from __future__ import division, print_function
 
 """\
 %prog <file.json> [<file.json> ...]
 
 TODO:
  - do Rivet lookup in this script, not the JSON-maker
  - get and write year of publication in table
 """
 
 import argparse
 ap = argparse.ArgumentParser(usage=__doc__)
 ap.add_argument("JSONFILES", metavar="file", nargs="+",
                 help="JSON Inspire xref file to read")
 ap.add_argument("-r", "--ranking", dest="RANKFILES", metavar="file", action="append", default=[],
                 help="lists of Inspire IDs to exclude, suppress, and highlight")
 ap.add_argument("-R", "--reverse", dest="REVERSE", action="store_true", default=False,
                 help="show list *reverse* ordered in Inspire ID")
 ap.add_argument("-s", "--only-searches", dest="ONLYSEARCHES", action="store_true", default=False,
                 help="only show search analyses")
 ap.add_argument("-S", "--no-searches", dest="NOSEARCHES", action="store_true", default=False,
                 help="exclude search analyses")
 ap.add_argument("-i", "--only-heavyion", dest="ONLYHEAVYION", action="store_true", default=False,
                 help="only show heavy ion analyses")
 ap.add_argument("-I", "--no-heavyion", dest="NOHEAVYION", action="store_true", default=False,
                 help="exclude heavy ion analyses")
 ap.add_argument("-o", "--outfile", dest="OUTFILE", default=None,
                 help="output HTML filename")
 ap.add_argument("--basename", dest="BASENAME", default="rivet-coverage",
                 help="the base name for output files [default=%(default)s]")
 ap.add_argument("--update-ranking", dest="UPDATERANK", action="store_true", default=False,
                 help="update the per-experiment ranking files")
 ap.add_argument("-v", "--verbose", dest="VERBOSE", action="store_true", default=False,
                 help="print debug info to the terminal")
 args = ap.parse_args()
 
 
 import datetime
 now = datetime.datetime.now()
 
 ## Experiment (grouping) names and regex patterns
 import re
 EXPTS = ["ALICE", "ATLAS", "CMS", "LHCb", "B-factories", "HERA", "Other"]
 EXPT_PATTS = ["ALICE", "ATLAS", "CMS", "LHCb", "BABAR|BELLE", "H1|ZEUS"]
 EXPT_REOBJS = [re.compile(patt, re.I) for patt in EXPT_PATTS]
 
 ## Add the rivet Python module build dir(s) to the Python module path, then import
 import os, sys
 pybuild = os.path.abspath(os.path.join(os.getcwd(), "..", "pyext", "build"))
 pydirs = [os.path.join(pybuild, d) for d in os.listdir(pybuild)
           if re.match(r"lib\..*-.*-%d\.%d" % (sys.version_info[0], sys.version_info[1]), d)]
 sys.path = pydirs + sys.path
 import rivet
 
 ## Add info file locations
 from glob import glob
 dirpatt = os.path.join(os.getcwd(), "..", "analyses", "plugin*")
 for d in glob(dirpatt):
     #print(d)
     rivet.addAnalysisDataPath(os.path.abspath(d))
 
 ## Rivet analyses to cross-reference
 ranas = {}
 for aname in rivet.AnalysisLoader.analysisNames():
     ana = rivet.AnalysisLoader.getAnalysis(aname)
     # TODO: all anas *should* have an Inspire ID...
     try:
         # print(aname, ":", ana.inspireId(), ":")
         ranas.setdefault(int(ana.inspireId()), []).append(ana.name())
     except:
         pass
 
 
 ## Read data from JSON files
 records = {}
 import json
 for jsonfile in args.JSONFILES:
     with open(jsonfile) as jf:
         recs = json.load(jf)
         if args.VERBOSE:
             print("Reading {} records from {}".format(len(recs), jsonfile))
         records.update(recs)
 records = {int(k) : v for k, v in records.items()}
 if args.VERBOSE:
     print("Read total of {} records".format(len(records)))
 
 
 ## Read Inspire IDs from ranking files
 blacklist, greylist, hotlist = [], [], []
 assigned = {}
 for rankfilestr in args.RANKFILES:
     for rankfile in rankfilestr.split(" "):
         with open(rankfile) as rf:
             if args.VERBOSE:
                 print("Reading rankings from {}".format(rankfile))
             for line in rf:
                 line = line.strip()
                 if not line or line.startswith("#"):
                     continue
                 tokens = line.split()
                 ins = int(tokens[0])
                 code = tokens[1]
                 if code == "X":
                     blacklist.append(ins)
                 elif code == "?":
                     greylist.append(ins)
                 elif code == "!":
                     hotlist.append(ins)
                 # Detect an optional assigned email address
                 last = tokens[-1]
                 if "@" in last:
                     if last.startswith("<") and last.endswith(">"):
                         last = last[1:-1]
                     assigned[ins] = last
 
 
 ## Add rankings/tags to the record
 for ins, rec in records.items():
 
     ## Sanitise title and experiment
     rec[0] = (rec[0] or "[NO TITLE]").replace("\n", " ")
     rec[1] = (rec[1] or "UNKNOWN").upper().split()[0].strip()
 
     ## Ranking
     code = "default"
     if ins in ranas:
         code = "rivet"
     elif ins in greylist:
         code = "grey"
     elif ins in blacklist:
         code = "black"
     elif ins in hotlist:
         code = "hot"
 
     ## Tags
     import re
     title = rec[0] or ""
     if "search" in title.lower():
         code += " search"
     if any(re.search(x, title) is not None for x in ["Pb", "Xe", "Au", "U+U", "gold", "lead[ ,$]", "heavy[- ]ion"]):
         code += " heavyion"
 
     rm = False
     rm |= args.ONLYSEARCHES and not "search" in code
     rm |= args.NOSEARCHES and "search" in code
     rm |= args.ONLYHEAVYION and not "heavyion" in code
     rm |= args.NOHEAVYION and "heavyion" in code
 
     if rm:
         del records[ins]
     else:
         rec.append(code)
 
 
 ## Group and count records by experiment (and update rank file if requested)
 ex_records = {}
 ex_ntots, ex_ndefaults, ex_nurgents, ex_nwanteds, ex_ntargets, ex_nrivets = {}, {}, {}, {}, {}, {}
 for iex, ex in enumerate(EXPTS):
 
     ## Name matching
     if ex != "Other":
         ex_records[ex] = {ins : rec for ins, rec in records.items()
                           if EXPT_REOBJS[iex].match(rec[1])}
     else:
         ex_records[ex] = {ins : rec for ins, rec in records.items()
                           if not any(reobj.match(rec[1]) for reobj in EXPT_REOBJS)}
 
     ## Count matches
     ex_ntots[ex] = len(ex_records[ex])
     ex_nrivets[ex] = len([ins for ins, rec in ex_records[ex].items() if "rivet" in rec[-1]])
     ex_ndefaults[ex] = len([ins for ins, rec in ex_records[ex].items() if "default" in rec[-1]])
     ex_nurgents[ex] = len([ins for ins, rec in ex_records[ex].items() if "hot" in rec[-1]])
     ex_nwanteds[ex] = ex_ndefaults[ex] + ex_nurgents[ex]
     ex_ntargets[ex] = ex_nwanteds[ex] + ex_nrivets[ex]
 
     if args.VERBOSE:
         print(ex, "#urgent/#wanted =", ex_nurgents[ex], "/", ex_nwanteds[ex])
 
     if args.UPDATERANK:
         if args.ONLYSEARCHES or args.NOSEARCHES or args.ONLYHEAVYION or args.NOHEAVYION:
             print("Won't update rank lists while search/HI/experiment filtering is enabled")
             sys.exit(1)
         rfname = "{}-{}.rank".format(args.BASENAME, ex.lower())
         print("Writing updated rank file to {}".format(rfname))
         syms = { "default" : ".", "rivet" : ".", "grey" : "?", "black" : "X", "hot" : "!" }
         with open(rfname, "w") as rf:
             for ins, rec in sorted(ex_records[ex].items()):
+                if ins == 885104:
+                    print(ins, rec, rec[-1])
                 rankcode = rec[-1].split()[0]
                 # line = u"{} {} {}\n".format(ins.encode("UTF-8"), syms[code], rec[3].encode("UTF-8"))
                 line = u"{} {} {}".format(ins, syms[rankcode], rec[0])
                 # print(assigned.get(ins))
                 if ins in assigned:
                     #print(ins, rec[0], assigned[ins])
                     line += "  <{}>".format(assigned[ins])
                 line += "\n"
                 rf.write(line.encode("UTF-8"))
 
 ntot = len(records)
 nrivet = len([ins for ins, rec in records.items() if "rivet" in rec[-1]])
 ndefault = len([ins for ins, rec in records.items() if "default" in rec[-1]])
 nurgent = len([ins for ins, rec in records.items() if "hot" in rec[-1]])
 nwanted = ndefault + nurgent
 ntarget = nwanted + nrivet
 
 
 ## Register filter strings
 excls = []
 if args.ONLYSEARCHES:
     excls.append("searches only")
 if args.NOSEARCHES:
     excls.append("no searches")
 if args.ONLYHEAVYION:
     excls.append("heavy ion only")
 if args.NOHEAVYION:
     excls.append("no heavy ion")
 
 
 ## Web page rendering
 import html
 OUT = html.HTML("html")
 
 title = "Rivet analysis coverage"
 exclstr = " ({})".format(", ".join(excls)) if excls else ""
 title += exclstr
 
 head = OUT.head(newlines=True)
 head.meta(charset="utf-8")
 head.title(title)
 head.link("", rel="stylesheet", href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css")
 head.script("MathJax.Hub.Config({ tex2jax: {inlineMath: [['$','$']]} });", type="text/x-mathjax-config")
 head.script("", type="text/javascript", src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-MML-AM_CHTML", async="async")
 head.script("", type="text/javascript", src="https://code.jquery.com/jquery-3.3.1.js", integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=", crossorigin="anonymous")
 head.script("", type="text/javascript", src="https://code.jquery.com/ui/1.12.1/jquery-ui.js", integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30=", crossorigin="anonymous")
 head.script("""
 $(document).ready( function(){
   $("#blacktoggle").click( function(){
     var b = $("#blacktoggle"); var t = b.text();
     b.text(t.indexOf("Show") != -1 ? t.replace("Show", "Hide") : t.replace("Hide", "Show") );
     $(".black").toggle(100);
   });
   $("#greytoggle").click( function(){
     var b = $("#greytoggle"); var t = b.text();
     b.text(t.indexOf("Show") != -1 ? t.replace("Show", "Hide") : t.replace("Hide", "Show") );
     $(".grey").toggle(100);
   });
   $("#tabs").tabs();
 });
 """)
 
 style = head.style(newlines="True")
 style += "html { font-family: sans; font-size: large; color: #333; }"
 style += "body { padding: 2em; }"
 style += "table { margin: 2em 0 2em 0; border: 0; border-collapse: collapse; text-align: left; }"
 style += "table.list { border-top: 3px solid black; border-bottom: 3px solid black; }"
 style += "table.list thead { border-bottom: 1px solid #333; }"
 style += "table.key { border: 1px solid #333; margin: 0; }"
 style += "td { padding: 15px; }"
 style += "tr.ana { border-top: 1px solid #ccc; }"
 style += "tr.ana td { padding-bottom: 1em; padding-top: 1em; }"
 style += "a { color: #339; }"
 style += "button { margin: 1em; }"
 # style += ".row { margin: 1em 0 3em 0; }"
 # style += ".row:after { content: ''; display: table; clear: both; }"
 # style += ".col { float: left; width: 50%; }"
 style += "button { border: none; margin: 0 1em 1em 0; border-radius: 1ex; color: #333; background: #ddf; padding: 1ex; }"
 style += "button:hover { background: #cce; }"
 style += "button:active { color: white; }"
 style += "#tabs { border: 0; }"
 style += ".rivet { background: #cfc; }"
 style += ".hot { background: #fbb; }"
 style += ".default { background: #fee; }"
 style += ".grey { color: #666; background: #ddd; font-size: normal; display: none; }"
 style += ".grey a { color: #669; }"
 style += ".black { color: #eee; background: #333; display: none; }"
 style += ".black a { color: #99c; }"
 style += ".hot.assigned { background: repeating-linear-gradient(135deg, #fbb, #fbb 10px, #bd7 10px, #bd7 20px); }"
 style += ".default.assigned { background: repeating-linear-gradient(135deg, #fee, #fee 10px, #de9 10px, #de9 20px); }"
 style += ".grey.assigned { background: repeating-linear-gradient(135deg, #ddd, #ddd 10px, #dfd 10px, #dfd 20px); }"
 
 body = OUT.html.body(newlines=True)
 body.h1(title)
 body.p().b("Rivet analyses exist for {}/{} papers = {:.0f}%. {} priority analyses required.".format(nrivet, ntarget, 100*nrivet/ntarget, nurgent))
 body.p("Total number of Inspire papers scanned = {}, at {}".format(ntot, now.strftime("%Y-%m-%d")))
 
 body.p("Breakdown by identified experiment (in development):")
 t = body.table(klass="list")
 th = t.thead(newlines=True)
 r = th.tr(klass="thead")
 r.td().b("Key")
 for ex in EXPTS:
     r.td().b(ex)
 #
 tb = t.tbody(newlines=True)
 r = tb.tr(klass="default")
 r.td().b("Rivet wanted (total):")
 for ex in EXPTS:
     r.td("{}".format(ex_nwanteds[ex]))
 #
 r = tb.tr(klass="hot")
 r.td().b("Rivet REALLY wanted:")
 for ex in EXPTS:
     r.td("{}".format(ex_nurgents[ex]))
 r = tb.tr(klass="rivet")
 #
 r.td().b("Rivet provided:")
 for ex in EXPTS:
     # txt = "{}".format(ex_nrivets[ex])
     # if ex_ntargets[ex]:
     #     txt += "<span style=\"color: #666\"> / {:d} = </span> {:.0f}%".format(ex_ntargets[ex], 100*ex_nrivets[ex]/ex_ntargets[ex])
     # r.td(txt)
     b = r.td().b("{}".format(ex_nrivets[ex]))
     if ex_ntargets[ex]:
         b.span("/{:d} = ".format(ex_ntargets[ex]), style="color: #777")
         b += "{:.0f}%".format(100*ex_nrivets[ex]/ex_ntargets[ex])
 
 body.button("Show greylist", id="greytoggle")
 body.button("Show blacklist", id="blacktoggle")
 
 #body.input(klass="search", placeholder="Search")
 #body.button("Sort by name", klass="sort", data-sort="name")
 
 tabs = body.div(id="tabs")
 u = tabs.ul()
 for ex in EXPTS:
     u.li().a(ex, href="#{}expt".format(ex.lower()))
 for ex in EXPTS:
     d = tabs.div(id="{}expt".format(ex.lower()))
     t = d.table(klass="list").tbody(newlines=True)
     for i, (ins, rec) in enumerate(sorted(ex_records[ex].items(), reverse=args.REVERSE)):
 
         expt = rec[1]
         code = rec[-1]
         if ins in assigned:
             code += " assigned"
         if expt:
             code += " {}expt".format(expt.lower())
         cell = t.tr(klass=code+" ana", newlines=True).td(newlines=False)
         # Title
         summ = u""
         summ += u"{}: {}".format(expt, rec[0])
         cell.span().b(summ)
 
         ## Inspire ID and report numbers
         p = cell.p()
         p.span("Inspire ID: {} ".format(ins))
         if rec[4]:
             p.span("arXiv ID: {} ".format(rec[4]))
         if rec[7]:
             p.span(u" Report IDs: " + u", ".join(rec[7]))
 
         ## Links
         p = cell.span("Links: ")
         ## Inspire
         p.a("Inspire", href="http://inspirehep.net/record/{}".format(ins)) # Inspire
         p += " "
         ## DOI
         if rec[2]:
             p.a("DOI/journal", href="http://dx.doi.org/{}".format(rec[2]))
             p += " "
         ## CDS
         if rec[3]:
             p.a("CDS", href="https://cds.cern.ch/record/{}".format(rec[3]))
             p += " "
         ## arXiv
         if rec[4]:
             p.a("arXiv", href="https://arxiv.org/abs/{}".format(rec[4]))
             p += " "
         ## HepData
         if rec[5]:
             p.a("HepData", href="https://hepdata.net/record/{}".format(rec[5]))
             p += " "
         ## Rivet
         if ins in ranas:
             anas = u", ".join(ranas[ins])
             p += " "
             p.a(anas, href="https://rivet.hepforge.org/analyses/{}.html".format(ranas[ins][0]))
         ## In-progress/assignment
         if ins in assigned:
             p += " "
             p.a("IN PROGRESS: assigned to {}".format(assigned[ins]), href="mailto:{}".format(assigned[ins]))
 
 
 ## Time-created footer
 body.p("Generated at {}".format(now.strftime("%c")))
 body.p("Generated from JSON files extracted from Inspire ({} papers in total):".format(ntot))
 body.p(", ".join(args.JSONFILES), style="font-family: monospace; font-size: smaller")
 
 
 ## Write out
 outfile = args.OUTFILE
 if not outfile:
     outfile = args.BASENAME
     exclparts = [e.replace(" ", "") for e in excls]
     if exclparts:
         outfile += "-" + "-".join(exclparts)
 if not outfile.endswith(".html"):
     outfile += ".html"
 print("Writing output to {} {}".format(outfile, exclstr))
 with open(outfile, "wb") as hf:
     a = unicode(OUT)
     hf.write(a.encode("UTF-8"))
diff --git a/doc/mk-coverage-htmls b/doc/mk-coverage-htmls
--- a/doc/mk-coverage-htmls
+++ b/doc/mk-coverage-htmls
@@ -1,13 +1,15 @@
 #! /usr/bin/env bash
 
 RANKFILES=$(echo *.rank)
 BASECMD='./mk-coverage-html inspire-*.json -r "$RANKFILES" -R'
-UPDATE= #'--update-ranking'
+UPDATE='--update-ranking'
 VERB= #"-v"
 
 eval "$BASECMD $UPDATE $VERB"
-eval "$BASECMD -SI $VERB"
-eval "$BASECMD -S $VERB"
-eval "$BASECMD -I $VERB"
-eval "$BASECMD -s $VERB"
-eval "$BASECMD -i $VERB"
+if [[ -z "$UPDATE" ]]; then
+    eval "$BASECMD -SI $VERB"
+    eval "$BASECMD -S $VERB"
+    eval "$BASECMD -I $VERB"
+    eval "$BASECMD -s $VERB"
+    eval "$BASECMD -i $VERB"
+fi
diff --git a/doc/rivet-coverage-alice.rank b/doc/rivet-coverage-alice.rank
--- a/doc/rivet-coverage-alice.rank
+++ b/doc/rivet-coverage-alice.rank
@@ -1,237 +1,257 @@
+355998 X Letter of Intent for A Large Ion Collider Experiment
+432654 X The forward muon spectrometer of ALICE
+483568 X ALICE technical design report: Detector for high momentum PID
+516635 X ALICE technical design report: Photon multiplicity detector (PMD)
+517332 X ALICE technical design report of the photon spectrometer (PHOS)
+517333 X ALICE technical design report of the zero degree calorimeter (ZDC)
+517334 X ALICE technical design report of the inner tracking system (ITS)
+541209 X ALICE: Technical design report of the time projection chamber
+541223 X ALICE technical design report of the time-of-flight system (TOF)
+599839 X ALICE: Addendum to the technical design report of the time of flight system (TOF)
+660490 X ALICE technical design report on forward detectors: FMD, T0 and V0
+666602 X ALICE: Physics performance report, volume I
+794183 X ALICE electromagnetic calorimeter technical design report
+796251 X The ALICE experiment at the CERN LHC
+838352 X First proton-proton collisions at the LHC as observed with the ALICE detector: Measurement of the charged particle pseudorapidity density at s**(1/2) = 900-GeV
+839506 X Performance of prototypes for the ALICE electromagnetic calorimeter
 841752 X Alignment of the ALICE Inner Tracking System with cosmic-ray tracks
 852264 . Charged-particle multiplicity measurement in proton-proton collisions at $\sqrt{s}=7$ TeV with ALICE at LHC
 852450 . Charged-particle multiplicity measurement in proton-proton collisions at $\sqrt{s}=0.9$ and 2.36 TeV with ALICE at LHC
 859610 ! Midrapidity antiproton-to-proton ratio in pp collisions at $\sqrt{s} = 0.9$ and $7$~TeV measured by the ALICE experiment
 860416 . Transverse momentum spectra of charged particles in proton-proton collisions at $\sqrt{s} = 900$~GeV with ALICE at the LHC
 860477 . Two-pion Bose-Einstein correlations in $pp$ collisions at $\sqrt{s}=900$ GeV
 864292 . ALICE EMCal Physics Performance Report
 877821 . Charged-particle multiplicity density at mid-rapidity in central Pb-Pb collisions at $\sqrt{s_{NN}} = 2.76$ TeV
 877822 ! Elliptic flow of charged particles in Pb-Pb collisions at 2.76 TeV
 879583 ? Suppression of Charged Particle Production at Large Transverse Momentum in Central Pb-Pb Collisions at $\sqrt{s_{NN}} =$ 2.76 TeV
 880049 . Centrality dependence of the charged-particle multiplicity density at mid-rapidity in Pb-Pb collisions at $\sqrt{s_{NN}}=2.76$ TeV
 881474 . Strange particle production in proton-proton collisions at sqrt(s) = 0.9 TeV with ALICE at the LHC
 881884 . Two-pion Bose-Einstein correlations in central Pb-Pb collisions at $\sqrt{{s}_{NN}} =$ 2.76 TeV
 884741 . Femtoscopy of $pp$ collisions at $\sqrt{s}=0.9$ and 7 TeV at the LHC with two-pion Bose-Einstein correlations
-885104 ! Production of pions, kaons and protons in $pp$ collisions at $\sqrt{s}= 900$ GeV with ALICE at the LHC
+885104 . Production of pions, kaons and protons in $pp$ collisions at $\sqrt{s}= 900$ GeV with ALICE at the LHC
 897764 . Rapidity and transverse momentum dependence of inclusive J$/\psi$ production in $pp$ collisions at $\sqrt{s} = 7$ TeV
 900651 ! Higher harmonic anisotropic flow measurements of charged particles in Pb-Pb collisions at $\sqrt{s_{NN}}$=2.76 TeV
 927105 . Harmonic decomposition of two-particle angular correlations in Pb-Pb collisions at $\sqrt{s_{NN}}=$ 2.76 TeV
 930312 . Particle-yield modification in jet-like azimuthal di-hadron correlations in Pb-Pb collisions at $\sqrt{s_{NN}} = 2.76$ TeV
 944730 . $J/\psi$ polarization in $pp$ collisions at $\sqrt{s}=7$ TeV
 944757 . Measurement of charm production at central rapidity in proton-proton collisions at $\sqrt{s} = 7$ TeV
 1080735 ! Underlying Event measurements in $pp$ collisions at $\sqrt{s}=0.9$ and 7 TeV with the ALICE experiment at the LHC
 1080945 ! Light vector meson production in $pp$ collisions at $\sqrt{s}=7$ TeV
 1084331 ? Measurement of Event Background Fluctuations for Charged Particle Jet Reconstruction in Pb-Pb collisions at $\sqrt{s_{NN}} = 2.76$ TeV
 1084981 . Heavy flavour decay muon production at forward rapidity in proton–proton collisions at $\sqrt{s} =$ 7 TeV
 1088222 . $J/\psi$ suppression at forward rapidity in Pb-Pb collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1088833 ! $J/\psi$ Production as a Function of Charged Particle Multiplicity in $pp$ Collisions at $\sqrt{s} = 7$ TeV
 1093488 . Suppression of high transverse momentum D mesons in central Pb-Pb collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1093519 ? Measurement of the Cross Section for Electromagnetic Dissociation with Neutron Emission in Pb-Pb Collisions at $\sqrt{s_{NN}}$ = 2.76 TeV
 1094079 . Inclusive $J/\psi$ production in $pp$ collisions at $\sqrt{s} = 2.76$ TeV
 1097057 X Multi-strange baryon production in $pp$ collisions at $\sqrt{s} = 7$ TeV with ALICE
 1115186 . Transverse sphericity of primary charged particles in minimum bias proton-proton collisions at $\sqrt{s}=0.9$, 2.76 and 7 TeV
 1115187 ? Measurement of charm production at central rapidity in proton-proton collisions at $\sqrt{s}=2.76$ TeV
 1115824 ? Measurement of electrons from semileptonic heavy-flavour hadron decays in pp collisions at \sqrt{s} = 7 TeV
 1116147 . Neutral pion and $\eta$ meson production in proton-proton collisions at $\sqrt{s}=0.9$ TeV and $\sqrt{s}=7$ TeV
 1116150 . Anisotropic flow of charged hadrons, pions and (anti-)protons measured at high transverse momentum in Pb-Pb collisions at $\sqrt{s_{NN}}$=2.76 TeV
 1116251 ! Measurement of prompt $J/\psi$ and beauty hadron production cross sections at mid-rapidity in $pp$ collisions at $\sqrt{s} = 7$ TeV
 1116417 ! Production of muons from heavy flavour decays at forward rapidity in pp and Pb-Pb collisions at $\sqrt {s_{NN}}$ = 2.76 TeV
 1117885 ? $K^0_s-K^0_s$ correlations in $pp$ collisions at $\sqrt{s}=7$ TeV from the LHC ALICE experiment
 1121161 . Charge separation relative to the reaction plane in Pb-Pb collisions at $\sqrt{s_{NN}}= 2.76$ TeV
 1123802 ? Net-Charge Fluctuations in Pb-Pb collisions at $\sqrt{s}_{NN} = 2.76$ TeV
 1126962 . Measurement of electrons from beauty hadron decays in $pp$ collisions at $\sqrt{s}=7$ TeV
 1126963 . $D_{s}^+$ meson production at central rapidity in proton--proton collisions at $\sqrt{s}=7$ TeV
 1126966 . Pion, Kaon, and Proton Production in Central Pb--Pb Collisions at $\sqrt{s_{NN}} = 2.76$ TeV
 1127497 . Centrality Dependence of Charged Particle Production at Large Transverse Momentum in Pb--Pb Collisions at $\sqrt{s_{\rm{NN}}} = 2.76$ TeV
 1181770 . Measurement of inelastic, single- and double-diffraction cross sections in proton--proton collisions at the LHC with ALICE
 1182213 ? Production of $K^*(892)^0$ and $\phi(1020)$ in $pp$ collisions at $\sqrt{s}=7$ TeV
 1185785 ? Coherent $J/\psi$ photoproduction in ultra-peripheral Pb-Pb collisions at $\sqrt{s_{NN}} = 2.76$ TeV
 1190545 ! Pseudorapidity density of charged particles in $p$ + Pb collisions at $\sqrt{s_{NN}}=5.02$ TeV
 1190895 . Transverse momentum distribution and nuclear modification factor of charged particles in $p$-Pb collisions at $\sqrt{s_{NN}}=5.02$ TeV
 1206610 . Long-range angular correlations on the near and away side in $p$-Pb collisions at $\sqrt{s_{NN}}=5.02$ TeV
 1208696 . Charged kaon femtoscopic correlations in $pp$ collisions at $\sqrt{s}=7$ TeV
 1210881 ! Measurement of the inclusive differential jet cross section in $pp$ collisions at $\sqrt{s} = 2.76$ TeV
 1211186 . Charge correlations using the balance function in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV
 1215085 ! Centrality determination of Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV with ALICE
 1222333 ! Centrality dependence of $\pi$, K, p production in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV
 1225273 . J/Psi Elliptic Flow in Pb-Pb Collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
 1225979 . Centrality dependence of the pseudorapidity density distribution for charged particles in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
 1232206 . Charmonium and $e^+e^-$ pair photoproduction at mid-rapidity in ultra-peripheral Pb-Pb collisions at $\sqrt{s_{\rm NN}}$=2.76 TeV
 1232209 ! Mid-rapidity anti-baryon to baryon ratios in pp collisions at $\sqrt{s}$ = 0.9, 2.76 and 7 TeV measured by ALICE
 1233087 . D meson elliptic flow in non-central Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76TeV
 1238451 X Performance of the ALICE VZERO system
 1238980 . Directed Flow of Charged Particles at Midrapidity Relative to the Spectator Plane in Pb-Pb Collisions at $\sqrt{s_{NN}}$=2.76 TeV
 1241422 ! Energy Dependence of the Transverse Momentum Distributions of Charged Particles in pp Collisions Measured by ALICE
 1241423 ! Multiplicity dependence of the average transverse momentum in pp, p-Pb, and Pb-Pb collisions at the LHC
 1241570 . Multiplicity dependence of two-particle azimuthal correlations in pp collisions at the LHC
 1242302 . Long-range angular correlations of $\rm \pi$, K and p in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV
 1243863 . $K^0_S$ and $\Lambda$ production in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV
 1243865 . Multi-strange baryon production at mid-rapidity in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV
 1244523 . Multiplicity Dependence of Pion, Kaon, Proton and Lambda Production in p-Pb Collisions at $\sqrt{s_{NN}}$ = 5.02 TeV
 1251898 . $J/\psi$ production and nuclear effects in p-Pb collisions at $\sqrt{S_{NN}}$ = 5.02 TeV
 1262523 . Two- and three-pion quantum statistics correlations in Pb-Pb collisions at $\sqrt{{s}_{NN}} =$ 2.76 TeV at the CERN Large Hadron Collider
 1263062 . Centrality, rapidity and transverse momentum dependence of $J/\psi$ suppression in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$=2.76 TeV
 1263194 . Measurement of charged jet suppression in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV
 1276299 . Production of charged pions, kaons and protons at large transverse momenta in pp and Pb–Pb collisions at $\sqrt{s_{\rm NN}}$ =2.76 TeV
 1281831 X Performance of the ALICE Experiment at the CERN LHC
 1285950 . Measurement of quarkonium production at forward rapidity in $pp$ collisions at $\sqrt{s} = 7$ TeV
 1288320 . $K^*(892)^0$ and $ϕ(1020)$ production in Pb-Pb collisions at $\sqrt{s{NN}}$ = 2.76 TeV
 1288705 ? Freeze-out radii extracted from three-pion cumulants in pp, p–Pb and Pb–Pb collisions at the LHC
 1294934 . Measurement of visible cross sections in proton-lead collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV in van der Meer scans with the ALICE detector
 1294938 . Azimuthal anisotropy of D meson production in Pb-Pb collisions at $\sqrt{s_{\rm NN}} = 2.76$ TeV
 1295687 . Transverse momentum dependence of inclusive primary charged-particle production in p-Pb collisions at $\sqrt{s_\mathrm{{NN}}}=5.02~\text {TeV}$
 1296081 . Measurement of prompt $D$-meson production in $p-Pb$ collisions at $\sqrt{s_{NN}}$ = 5.02 TeV
 1296306 . Neutral pion production at midrapidity in pp and Pb-Pb collisions at $\sqrt{s_{{\mathrm {NN}}}}= 2.76\,{\mathrm {TeV}}$
 1296307 . Suppression of $\psi$(2S) production in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV
 1296860 ! Measurement of electrons from semileptonic heavy-flavor hadron decays in $pp$ collisions at $\sqrt{s} = 2.76$ TeV
 1296861 ! Beauty production in pp collisions at $\sqrt{s}$ = 2.76 TeV measured via semi-electronic decays
 1297101 ! Suppression of $\Upsilon (1S)$ at forward rapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}} = 2.76$ TeV
 1297103 . Elliptic flow of identified hadrons in Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV
 1300038 . Multiparticle azimuthal correlations in p -Pb and Pb-Pb collisions at the CERN Large Hadron Collider
 1300380 . Production of $\Sigma(1385)^{\pm}$ and $\Xi(1530)^{0}$ in proton-proton collisions at $\sqrt{s}=$ 7 TeV
 1301858 . Multiplicity dependence of jet-like two-particle correlation structures in p–Pb collisions at $\sqrt{s_{NN}}$=5.02 TeV
 1303903 . Exclusive $\mathrm{J/}\psi$ photoproduction off protons in ultra-peripheral p-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV
 1305020 . Upgrade of the ALICE Experiment: Letter Of Intent
 1305021 . Technical Design Report for the Upgrade of the ALICE Inner Tracking System
 1307102 . Event-by-event mean ${p}_{\mathbf {T}}$ fluctuations in pp and Pb-Pb collisions at the LHC
 1321022 ! Production of inclusive $\Upsilon$(1S) and $\Upsilon$(2S) in p-Pb collisions at $\mathbf{\sqrt{s_{{\rm NN}}} = 5.02}$ TeV
 1328629 . Charged jet cross sections and properties in proton-proton collisions at $\sqrt{s}=7$ TeV
 1328669 . Inclusive photon production at forward rapidities in proton-proton collisions at $\sqrt{s}$ = 0.9, 2.76 and 7 TeV
 1335350 ! Centrality dependence of particle production in p-Pb collisions at $\sqrt{s_{\rm NN} }$= 5.02 TeV
 1342496 ! Forward-backward multiplicity correlations in pp collisions at $ \sqrt{s} $ = 0.9, 2.76 and 7 TeV
 1342499 . Two-pion femtoscopy in p-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV
 1343112 . Measurement of jet suppression in central Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
 1346963 . Measurement of charged jet production cross sections and nuclear modification in p-Pb collisions at $\sqrt{s_\rm{NN}} = 5.02$ TeV
 1351451 . Measurement of dijet $k_T$ in p–Pb collisions at $\sqrt{s}_{NN}$=5.02 TeV
 1355544 . Rapidity and transverse-momentum dependence of the inclusive J/$\psi$ nuclear modification factor in p-Pb collisions at $ \sqrt{s_{N\ N}} =$ 5.02 TeV
 1357206 . Coherent ρ$^{0}$ photoproduction in ultra-peripheral Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV
 1357424 . Measurement of pion, kaon and proton production in proton–proton collisions at $\sqrt{s} = 7$ TeV
 1364887 . Inclusive, prompt and non-prompt J/$\psi$ production at mid-rapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
 1366028 . Measurement of charm and beauty production at central rapidity versus charged-particle multiplicity in proton-proton collisions at $ \sqrt{s}=7 $ TeV
 1376027 . Measurement of jet quenching with semi-inclusive hadron-jet distributions in central Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV
 1377363 . Centrality dependence of high-p$_{T}$ D meson suppression in Pb-Pb collisions at $ \sqrt{s_{\mathrm{N}\mathrm{N}}}=2.76 $ TeV
 1377750 . Centrality dependence of the nuclear modification factor of charged pions, kaons, and protons in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV
 1377753 X Search for weakly decaying $\overline{\Lambda\mathrm{n}}$ and $\Lambda\Lambda $ exotic bound states in central Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
 1379971 . One-dimensional pion, kaon, and proton femtoscopy in Pb-Pb collisions at $\sqrt{s_{\rm {NN}}}$ =2.76 TeV
 1379977 . Forward-central two-particle correlations in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV
 1380192 . Differential studies of inclusive J/ψ and ψ(2S) production at forward rapidity in Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV
 1380193 . Centrality dependence of inclusive J/ψ production in p-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=5.02 $ TeV
 1380234 . $^{3}_{\Lambda}\mathrm H$ and $^{3}_{\bar{\Lambda}} \overline{\mathrm H}$ production in Pb-Pb collisions at $\sqrt{s_{\rm NN}} =$ 2.76 TeV
 1380453 . $\phi$-meson production at forward rapidity in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV and in pp collisions at $\sqrt{s}$ = 2.76 TeV
 1380491 . Production of light nuclei and anti-nuclei in pp and Pb-Pb collisions at energies available at the CERN Large Hadron Collider
 1382591 . Elliptic flow of muons from heavy-flavour hadron decays at forward rapidity in Pb–Pb collisions at $\sqrt{s_{\rm NN}}= 2.76$ TeV
 1384270 . Event shape engineering for inclusive spectra and elliptic flow in Pb-Pb collisions at $\sqrt{s_\rm{NN}}=2.76$ TeV
 1384807 . Centrality dependence of pion freeze-out radii in Pb-Pb collisions at $\sqrt{s}_{NN}=$ 2.76 TeV
 1385276 . Study of cosmic ray events with high muon multiplicity using the ALICE detector at the CERN Large Hadron Collider
 1388181 . Precision measurement of the mass difference between light nuclei and anti-nuclei
 1388730 . Coherent $\psi$(2S) photo-production in ultra-peripheral Pb Pb collisions at $\sqrt{s}_{\rm NN}$ = 2.76 TeV
 1394580 . Transverse momentum dependence of D-meson production in Pb-Pb collisions at $ \sqrt{{\mathrm{s}}_{\mathrm{NN}}}=$ 2.76  TeV
 1394672 . Multiplicity and transverse momentum evolution of charge-dependent correlations in pp, p–Pb, and Pb–Pb collisions at the LHC
 1394675 . Measurement of D$_{s}^{+}$ production and nuclear modification factor in Pb-Pb collisions at $ \sqrt{{\mathrm{s}}_{\mathrm{NN}}}=$ 2.76 TeV
-1394676 ! Centrality evolution of the charged-particle pseudorapidity density over a broad pseudorapidity range in Pb-Pb collisions at $\sqrt{s_{\rm NN}} =$ 2.76 TeV
+1394676 . Centrality evolution of the charged-particle pseudorapidity density over a broad pseudorapidity range in Pb-Pb collisions at $\sqrt{s_{\rm NN}} =$ 2.76 TeV
 1394677 ! Direct photon production in Pb-Pb collisions at $\sqrt{s_\rm{NN}} =$ 2.76 TeV
 1394678 . Azimuthal anisotropy of charged jet production in $\sqrt{s_{\rm NN}}$ = 2.76 TeV Pb-Pb collisions
 1394682 . Measurement of electrons from heavy-flavour hadron decays in p-Pb collisions at $\sqrt{s_{\rm NN}} =$ 5.02 TeV
 1394854 . Charged-particle multiplicities in proton–proton collisions at $\sqrt{s} = 0.9$ to 8 TeV
 1395099 . Inclusive quarkonium production at forward rapidity in pp collisions at $\sqrt{s}=8$ TeV
 1395253 . Pseudorapidity and transverse-momentum distributions of charged particles in proton–proton collisions at $\sqrt s=$ 13 TeV
 1395296 . Measurement of an excess in the yield of $J/\psi$ at very low $p_{\rm T}$ in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
 1410144 . Charge-dependent flow and the search for the chiral magnetic wave in Pb-Pb collisions at $\sqrt{s_{\rm NN}} =$ 2.76 TeV
 1410589 . Centrality dependence of the charged-particle multiplicity density at midrapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV
 1411084 ! Multi-strange baryon production in p-Pb collisions at $\sqrt{s_\mathbf{NN}}=5.02$ TeV
 1411653 . Multipion Bose-Einstein correlations in pp,p -Pb, and Pb-Pb collisions at energies available at the CERN Large Hadron Collider
 1415274 . Multiplicity dependence of charged pion, kaon, and (anti)proton production at large transverse momentum in p-Pb collisions at $\mathbf{\sqrt{{\textit s}_{\rm NN}}}$ = 5.02 TeV
 1418181 . Production of K$^{*}$ (892)$^{0}$ and $\phi $ (1020) in p–Pb collisions at $\sqrt{s_{{\text {NN}}}}$ = 5.02 TeV
 1419244 . Anisotropic flow of charged particles in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV
 1419249 X Particle identification in ALICE: a Bayesian approach
 1423072 . Measurement of D-meson production versus multiplicity in p-Pb collisions at $ \sqrt{{\mathrm{s}}_{\mathrm{NN}}}=5.02 $ TeV
 1426826 . Centrality dependence of $\mathbf{\psi}$(2S) suppression in p-Pb collisions at $\mathbf{\sqrt{{\textit s}_{\rm NN}}}$ = 5.02 TeV
 1427026 . Centrality dependence of charged jet production in p–Pb collisions at $\sqrt{s_\mathrm{NN}}$ = 5.02 TeV
 1427723 . Measurement of transverse energy at midrapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}} = 2.76$ TeV
 1452590 . Correlated event-by-event fluctuations of flow harmonics in Pb-Pb collisions at $\sqrt{s_{_{\rm NN}}}=2.76$ TeV
 1456145 . Pseudorapidity dependence of the anisotropic flow of charged particles in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV
 1464839 . Measurement of azimuthal correlations of D mesons and charged particles in pp collisions at $\sqrt{s}=7$ TeV and p-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV
 1465513 ! $D$-meson production in $p$-Pb collisions at $\sqrt{s_{\rm NN}}=$5.02 TeV and in pp collisions at $\sqrt{s}=$7 TeV
 1466626 . Elliptic flow of electrons from heavy-flavour hadron decays at mid-rapidity in Pb-Pb collisions at $ \sqrt{{\mathrm{s}}_{\mathrm{NN}}}=2.76 $ TeV
 1471285 . Higher harmonic flow coefficients of identified hadrons in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
-1471838 ! Enhanced production of multi-strange hadrons in high-multiplicity proton-proton collisions
+1471838 . Enhanced production of multi-strange hadrons in high-multiplicity proton-proton collisions
 1472319 . J/$\psi$ suppression at forward rapidity in Pb-Pb collisions at $\mathbf{\sqrt{s_{{\rm NN}}} = 5.02}$ TeV
 1483164 . Jet-like correlations with neutral pion triggers in pp and central Pb–Pb collisions at 2.76 TeV
 1486391 . Measurement of electrons from beauty-hadron decays in p-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=5.02 $ TeV and Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV
 1487545 . Anomalous evolution of the near-side jet peak shape in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
 1487546 . Evolution of the longitudinal and azimuthal structure of the near-side jet peak in Pb-Pb collisions at $\sqrt{s_{\rm NN}} = 2.76$ TeV
 1487727 . Measurement of the production of high-$p_{\rm T}$ electrons from heavy-flavour hadron decays in Pb-Pb collisions at $\mathbf{\sqrt{\it s_{\rm{NN}}}}$ = 2.76 TeV
 1491202 . Determination of the event collision time with the ALICE detector at the LHC
 1496634 . W and Z boson production in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV
-1507090 ! Centrality dependence of the pseudorapidity density distribution for charged particles in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV
-1507157 ! Insight into particle production mechanisms via angular correlations of identified particles in pp collisions at $\sqrt{\mathrm{s}}=7$  TeV
+1507090 . Centrality dependence of the pseudorapidity density distribution for charged particles in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV
+1507157 . Insight into particle production mechanisms via angular correlations of identified particles in pp collisions at $\sqrt{\mathrm{s}}=7$  TeV
 1510878 . Production of $\Sigma(1385)^{\pm}$ and $\Xi(1530)^{0}$ in p-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV
 1511864 . K$^{*}(892)^{0}$ and $\phi(1020)$ meson production at high transverse momentum in pp and Pb-Pb collisions at $\sqrt{s_\mathrm{NN}}$ = 2.76 TeV
 1511865 . Energy dependence of forward-rapidity $\mathrm {J}/\psi $ and $\psi \mathrm {(2S)}$ production in pp collisions at the LHC
 1511870 . Measurement of D-meson production at mid-rapidity in pp collisions at ${\sqrt{s}=7}$  TeV
 1512107 . First measurement of jet mass in Pb–Pb and p–Pb collisions at the LHC
 1512110 . Production of ${\pi ^0}$ and $\eta $ mesons up to high transverse momentum in pp collisions at 2.76 TeV
 1512297 . Production of muons from heavy-flavour hadron decays in p-Pb collisions at $\mathbf{\sqrt{{\textit s}_{NN}} = 5.02}$ TeV
 1512303 . Azimuthally differential pion femtoscopy in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV
 1512772 . Flow dominance and factorization of transverse momentum correlations in Pb-Pb collisions at the LHC
 1589286 . J/$\psi$ production as a function of charged-particle pseudorapidity density in p-Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV
 1599396 . Linear and non-linear flow modes in Pb-Pb collisions at $\sqrt{s_{\rm NN}} =$ 2.76 TeV
 1599554 . Measuring K$^0_{\rm S}$K$^{\rm \pm}$ interactions using Pb-Pb collisions at ${\sqrt{s_{\rm NN}}=2.76}$ TeV
 1608612 . $D$-meson azimuthal anisotropy in midcentral Pb-Pb collisions at $\mathbf{\sqrt{s_{\rm NN}}=5.02}$ TeV
 1610453 . Searches for transverse momentum dependent flow vector fluctuations in Pb-Pb and p-Pb collisions at the LHC
 1611301 . Measurement of deuteron spectra and elliptic flow in Pb–Pb collisions at $\sqrt{s_{\mathrm {NN}}}$ = 2.76 TeV at the LHC
+1614069 X ALICE: Physics performance report, volume II
 1614477 ! Charged-particle multiplicity distributions over a wide pseudorapidity range in proton-proton collisions at $\sqrt{s}=$ 0.9, 7, and 8 TeV
 1620477 . $\pi ^{0}$ and $\eta $ meson production in proton-proton collisions at $\sqrt{s}=8$ TeV
 1621591 . Systematic studies of correlations between different order flow harmonics in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
 1621809 . Kaon femtoscopy in Pb-Pb collisions at $\sqrt{s_{\rm{NN}}}$ = 2.76 TeV
 1622554 X The ALICE Transition Radiation Detector: construction, operation, and performance
 1623558 . Constraining the magnitude of the Chiral Magnetic Effect with Event Shape Engineering in Pb-Pb collisions at $\sqrt{s_\mathrm{NN}}$ = 2.76 TeV
 1623907 . J/$\psi$ elliptic flow in Pb-Pb collisions at $\sqrt{s_\mathrm{NN}}=5.02$ TeV
 1624550 . Search for collectivity with azimuthal J/$\psi$-hadron correlations in high multiplicity p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 and 8.16 TeV
 1625294 . Production of deuterons, tritons, $^{3}$He nuclei and their antinuclei in pp collisions at $\mathbf{\sqrt{{\textit s}}}$ = 0.9, 2.76 and 7 TeV
 1631788 . Production of $^{4}$He and $^{4}\overline{\textrm{He}}$ in Pb-Pb collisions at $\sqrt{s_{\mathrm{NN}}}$ = 2.76 TeV at the LHC
 1632046 . Longitudinal asymmetry and its effect on pseudorapidity distributions in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV
 1639439 . Measurement of Z$^0$-boson production at large rapidities in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV
 1642729 . First measurement of $\Xi_{\rm c}^0$ production in pp collisions at $\mathbf{\sqrt{s}}$ = 7 TeV
 1643642 . Constraints on jet quenching in p-Pb collisions at $\mathbf{\sqrt{s_{NN}}}$ = 5.02 TeV measured by the event-activity dependence of semi-inclusive hadron-jet distributions
 1644609 . Relative particle yield fluctuations in Pb-Pb collisions at ${\mathbf{\sqrt{s_{\rm NN}}=2.76}}$ TeV
 1645239 . $\Lambda_{\rm c}^+$ production in pp collisions at $\sqrt{s} = 7$ TeV and in p-Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV
 1649235 . Neutral pion and $\eta$ meson production in p-Pb collisions at $\sqrt{s_\mathrm{NN}} = 5.02$ TeV
 1652829 . Prompt and non-prompt $\hbox {J}/\psi $ production and nuclear modification at mid-rapidity in p–Pb collisions at $\mathbf{\sqrt{{ s}_{\text {NN}}}= 5.02}$  TeV
 1657384 ! Transverse momentum spectra and nuclear modification factors of charged particles in pp, p-Pb and Pb-Pb collisions at the LHC
 1662651 . Neutral pion and $\eta$ meson production at mid-rapidity in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV
 1664312 . Direct photon production at low transverse momentum in proton-proton collisions at $\mathbf{\sqrt{s}=2.76}$ and 8 TeV
 1664538 . Azimuthally-differential pion femtoscopy relative to the third harmonic event plane in Pb-Pb collisions at $\mathbf{\sqrt{\textit{s}_{_{\rm NN}}}}$ = 2.76 TeV
 1666817 . Energy dependence and fluctuations of anisotropic flow in Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=5.02 $ and 2.76 TeV
 1669805 . $\phi$ meson production at forward rapidity in Pb-Pb collisions at $\sqrt{s_\mathrm{NN}}=2.76$ TeV
 1669819 ! Measurement of D$^{0}$, D$^{+}$, D$^{*+}$ and D$_{s}^{+}$ production in Pb-Pb collisions at $ \sqrt{{\mathrm{s}}_{\mathrm{NN}}}=5.02 $ TeV
 1671792 . Anisotropic flow in Xe-Xe collisions at $\mathbf{\sqrt{s_{\rm{NN}}} = 5.44}$ TeV
-1672756 ! Centrality and pseudorapidity dependence of the charged-particle multiplicity density in Xe-Xe collisions at $\sqrt{s_{\rm NN}}$ = 5.44 TeV
+1672756 ! Centrality and pseudorapidity dependence of the charged-particle multiplicity density in Xe–Xe collisions at $\sqrt{s_{\rm NN}}$ =5.44TeV
 1672765 . Two particle differential transverse momentum and number density correlations in p-Pb and Pb-Pb at the LHC
-1672788 ! Dielectron and heavy-quark production in inelastic and high-multiplicity proton-proton collisions at $\sqrt{s_{\rm NN}}$ = 13 TeV
+1672788 ! Dielectron and heavy-quark production in inelastic and high-multiplicity proton–proton collisions at $\sqrt {s_{NN}}=$ 13TeV
 1672789 ! Direct photon elliptic flow in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
 1672790 . Transverse momentum spectra and nuclear modification factors of charged particles in Xe-Xe collisions at $\sqrt{s_{\rm NN}}$ = 5.44 TeV
 1672792 ! Dielectron production in proton-proton collisions at $ \sqrt{s}=7 $ TeV
 1672798 . $\Upsilon$ suppression at forward rapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV
 1672800 . Inclusive J/$\psi$ production in Xe–Xe collisions at $\sqrt{s_{\rm NN}}$ = 5.44 TeV
 1672801 . Measurement of the inclusive J/ $\psi $ polarization at forward rapidity in pp collisions at $\mathbf {\sqrt{s} = 8}$  TeV
 1672806 . Suppression of $\Lambda(1520)$ resonance production in central Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
 1672807 . Inclusive J/$\psi$ production at forward and backward rapidity in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 8.16 TeV
 1672811 . Measurements of low-p$_{T}$ electrons from semileptonic heavy-flavour hadron decays at mid-rapidity in pp and Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV
 1672812 . Azimuthal anisotropy of heavy-flavour decay electrons in p-Pb collisions at $ \sqrt{s_{\rm NN}}$ = 5.02 TeV
 1672822 ! Anisotropic flow of identified particles in Pb-Pb collisions at $ {\sqrt{s}}_{\mathrm{NN}}=5.02 $ TeV
 1672860 . Production of the $\rho$(770)${^{0}}$ meson in pp and Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
 1672884 X Particle identification studies with a full-size 4-GEM prototype for the ALICE TPC upgrade
 1672944 ? Analysis of the apparent nuclear modification in peripheral Pb-Pb collisions at 5.02 TeV
 1675759 . p-p, p-$\Lambda$ and $\Lambda$-$\Lambda$ correlations studied via femtoscopy in pp reactions at $\sqrt{s}$ = 7 TeV
 1680638 . Measurement of dielectron production in central Pb-Pb collisions at $\sqrt{{\textit{s}}_{\mathrm{NN}}}$ = 2.76 TeV
 1682990 . Medium modification of the shape of small-radius jets in central Pb-Pb collisions at $\sqrt{s_{\mathrm {NN}}} = 2.76\,\rm{TeV}$
 1684320 ! Multiplicity dependence of light-flavor hadron production in pp collisions at $\sqrt{s}$ = 7 TeV
 1693305 . Energy dependence of exclusive $J/\psi$ photoproduction off protons in ultra-peripheral p-Pb collisions at $\sqrt{s_{\rm{NN}}}$ = 5.02 TeV
 1693308 ! Charged jet cross section and fragmentation in proton-proton collisions at $\sqrt{s}$ = 7 TeV
 1695028 . Measuring K$^0_{\rm S}$K$^{\rm{\pm}}$ interactions using pp collisions at $\sqrt{s}=7$ TeV
 1695334 . Event-shape engineering for the D-meson elliptic flow in mid-central Pb-Pb collisions at $\sqrt{s_{\rm NN}} =5.02$ TeV
 1696315 . $\Lambda_\mathrm{c}^+$ production in Pb-Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV
 1704923 ! Jet fragmentation transverse momentum measurements from di-hadron correlations in $\sqrt{s}$ = 7 TeV pp and $\sqrt{s_{\rm{NN}}}$ = 5.02 TeV p-Pb collisions
 1706006 . Study of J/$\psi$ azimuthal anisotropy at forward rapidity in Pb-Pb collisions at $\sqrt{{\textit s}_{\rm NN}}$ = 5.02 TeV
 1706753 . Charged-particle pseudorapidity density at mid-rapidity in p-Pb collisions at $\sqrt{s_{\rm{NN}}}$ = 8.16 TeV
+1710095 X Real-time data processing in the ALICE High Level Trigger at the LHC
+1714695 . Event-shape and multiplicity dependence of freeze-out radii in pp collisions at $\sqrt{{\textit s}}=7$ TeV
+1716440 . Measurement of ${\rm D^0}$, ${\rm D^+}$, ${\rm D^{*+}}$ and ${{\rm D^+_s}}$ production in pp collisions at $\mathbf{\sqrt{{\textit s}}~=~5.02~TeV}$ with ALICE
diff --git a/doc/rivet-coverage-atlas.rank b/doc/rivet-coverage-atlas.rank
--- a/doc/rivet-coverage-atlas.rank
+++ b/doc/rivet-coverage-atlas.rank
@@ -1,820 +1,880 @@
+386786 X ATLAS: Technical proposal for a general-purpose p p experiment at the Large Hadron Collider at CERN
+428084 X Results from a combined test of an electromagnetic liquid argon calorimeter with a hadronic scintillating tile calorimeter
+432292 X ATLAS computing technical proposal
+432293 X ATLAS calorimeter performance Technical Design Report
+453692 X Evaluation of FERMI readout of the ATLAS tilecal prototype
+487239 X ATLAS pixel detector: Technical design report
+499087 X Hadronic shower development in iron scintillator tile calorimetry
+511648 X ATLAS: Detector and physics performance technical design report. Volume 1
+511649 X ATLAS: Detector and physics performance technical design report. Volume 2
+533464 X Results from a new combined test of an electromagnetic liquid argon calorimeter with a hadronic scintillating-tile calorimeter
+554879 X Hadron energy reconstruction for the ATLAS calorimetry in the framework of the nonparametrical method
+561708 X A precise measurement of 180-GeV muon energy losses in iron
+589123 X Performance of the ATLAS hadronic end-cap calorimeter in beam tests
+606576 X Performance of the ATLAS electromagnetic calorimeter barrel module 0
+607033 X Performance of the ATLAS electromagnetic calorimeter end-cap module 0
+653972 X Hadronic calibration of the ATLAS liquid argon end-cap calorimeter in the pseudorapidity region 1.6 < |$\eta$| < 1.8 in beam tests
+655549 X A step towards a computing grid for the LHC experiments: ATLAS data challenge 1
+683219 X Position resolution and particle identification with the ATLAS EM calorimeter
+693583 X Construction, assembly and tests of the ATLAS electromagnetic barrel calorimeter
+750044 X The ATLAS semiconductor tracker end-cap module
+754384 X Integration of the Trigger and Data Acquisition systems in ATLAS
+776511 X System test of the ATLAS muon spectrometer in the H8 beam at the CERN SPS
+780935 X The ATLAS Transition Radiation Tracker (TRT) proportional drift tube: Design and performance
+780936 X The ATLAS TRT barrel detector
+796888 X The ATLAS Experiment at the CERN Large Hadron Collider
+807220 X Design, construction and installation of the ATLAS hadronic barrel scintillator-tile calorimeter
+810300 X Expected Performance of the ATLAS Experiment - Detector, Trigger and Physics
+811858 X The optical instrumentation of the ATLAS tile calorimeter
+826359 X The trigger for early running
+826361 X Physics performance studies and strategy of the electron and photon trigger selection
+838589 X Statistical combination of several important standard model Higgs boson search channels
+840027 X Readiness of the ATLAS Liquid Argon Calorimeter for LHC Collisions
+841506 X Reconstruction of low-mass electron pairs
+841507 X Reconstruction of photon conversions
+841508 X Reconstruction and identification of photons
+841509 X Reconstruction and identification of electrons
+841510 X Calibration and performance of the electromagnetic calorimeter
 846365 X Drift Time Measurement in the ATLAS Liquid Argon Electromagnetic Calorimeter using Cosmic Muons
-849050 ! Charged-particle multiplicities in $pp$ interactions at $\sqrt{s}=900$ GeV measured with the ATLAS detector at the LHC
+849050 . Charged-particle multiplicities in $pp$ interactions at $\sqrt{s}=900$ GeV measured with the ATLAS detector at the LHC
 853395 X The ATLAS Inner Detector commissioning and calibration
 856179 X The ATLAS Simulation Infrastructure
 856566 X Performance of the ATLAS Detector using First Collision Data
 859286 X Commissioning of the ATLAS Muon Spectrometer with Cosmic Rays
 863749 X Readiness of the ATLAS Tile Calorimeter for LHC collisions
 865423 ? Search for New Particles in Two-Jet Final States in 7 TeV Proton-Proton Collisions with the ATLAS Detector at the LHC
 871366 . Measurement of inclusive jet and dijet cross sections in proton-proton collisions at 7 TeV centre-of-mass energy with the ATLAS detector
 871487 ? Search for quark contact interactions in dijet angular distributions in $pp$ collisions at $\sqrt{s}=7$ TeV measured with the ATLAS detector
 872570 . Measurement of the $W \to \ell\nu$ and $Z/\gamma^* \to \ell\ell$ production cross sections in proton-proton collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector
 874862 X Study of energy response and resolution of the ATLAS barrel calorimeter to hadrons of energies from 20-GeV to 350-GeV
 878496 X Studies of the performance of the ATLAS detector using cosmic-ray muons
 878733 ? Observation of a Centrality-Dependent Dijet Asymmetry in Lead-Lead Collisions at $\sqrt{s_{NN}}=2.77$ TeV with the ATLAS Detector at the LHC
 879407 . Measurement of underlying event characteristics using charged particles in pp collisions at $\sqrt{s} = 900 GeV$ and 7 TeV with the ATLAS detector
 880002 . Measurement of the top quark-pair production cross section with ATLAS in pp collisions at $\sqrt{s}=7$ TeV
 881812 ? Search for Diphoton Events with Large Missing Transverse Energy in 7 TeV Proton-Proton Collisions with the ATLAS Detector
 882098 . Charged-particle multiplicities in pp interactions measured with the ATLAS detector at the LHC
 882463 . Measurement of the inclusive isolated prompt photon cross section in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 882519 . Measurement of the centrality dependence of J/ψ yields and observation of Z production in lead–lead collisions with the ATLAS detector at the LHC
 882534 . Measurement of the production cross section for W-bosons in association with jets in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
-882984 ! Study of Jet Shapes in Inclusive Jet Production in $pp$ Collisions at $\sqrt{s}=7$ TeV using the ATLAS Detector
+882984 . Study of Jet Shapes in Inclusive Jet Production in $pp$ Collisions at $\sqrt{s}=7$ TeV using the ATLAS Detector
 884120 X Luminosity Determination in $pp$ Collisions at $\sqrt{s}=7$ TeV Using the ATLAS Detector at the LHC
 886505 ? Search for Massive Long-lived Highly Ionising Particles with the ATLAS Detector at the LHC
 889431 ? Search for supersymmetry using final states with one lepton, jets, and missing transverse momentum with the ATLAS detector in $\sqrt{s}=7$ TeV $pp$
 889546 . Measurement of Dijet Azimuthal Decorrelations in $pp$ Collisions at $\sqrt{s}=7$ TeV
 890749 . Search for squarks and gluinos using final states with jets and missing transverse momentum with the ATLAS detector in $\sqrt{s}=7$ TeV proton-proton collisions
 891737 ? Search for high-mass states with one lepton plus missing transverse momentum in proton-proton collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector
 891834 . Measurements of underlying-event properties using neutral and charged particles in $pp$ collisions at 900 GeV and 7 TeV with the ATLAS detector at the LHC
 892044 ? Search for stable hadronising squarks and gluinos with the ATLAS experiment at the LHC
 892704 . Measurement of the $W$ charge asymmetry in the $W \to \mu \nu$ decay mode in $pp$ collisions at $\sqrt s=7$ TeV with the ATLAS detector
 893264 ? Search for New Physics in Dijet Mass and Angular Distributions in pp Collisions at $\sqrt{s} = 7$ TeV Measured with the ATLAS Detector
 893493 ? Search for supersymmetry in $pp$ collisions at $\sqrt{s}=7$TeV in final states with missing transverse momentum and $b$-jets
 894358 ? Search for a heavy particle decaying into an electron and a muon with the ATLAS detector in $\sqrt{s}=7$ TeV $pp$ collisions at the LHC
 894576 ? Search for high mass dilepton resonances in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS experiment
 894578 . Search for supersymmetric particles in events with lepton pairs and large missing transverse momentum in $\sqrt{s}=7$ TeV proton-proton collisions with the ATLAS experiment
 894579 ? Search for an excess of events with an identical flavour lepton pair and significant missing transverse momentum in $\sqrt{s}=7$ TeV proton-proton collisions with the ATLAS detector
 894867 . Measurement of the Inelastic Proton-Proton Cross-Section at $\sqrt{s}=7$ TeV with the ATLAS Detector
 896268 . Measurement of the differential cross-sections of inclusive, prompt and non-prompt $J/\psi$ production in proton-proton collisions at $\sqrt{s}=7$ TeV
 897002 . Search for pair production of first or second generation leptoquarks in proton-proton collisions at $\sqrt{s}=7$ TeV using the ATLAS detector at the LHC
 897028 ? Search for Contact Interactions in Dimuon Events from $pp$ Collisions at $\sqrt{s}=7$ TeV with the ATLAS Detector
 897330 . Measurement of the $W W$ cross section in $\sqrt{s}=7$ TeV $pp$ collisions with ATLAS
 913039 ? Measurement of Wgamma and Zgamma production in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS Detector
 913576 X Limits on the production of the Standard Model Higgs Boson in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 914491 . Search for heavy long-lived charged particles with the ATLAS detector in $pp$ collisions at $\sqrt{s}=$ 7 TeV
 915920 . Search for new phenomena with the monojet and missing transverse momentum signature using the ATLAS detector in $\sqrt{s}=7$ TeV proton-proton collisions
 915921 . Measurement of the $\Upsilon$(1S) production cross-section in $pp$ collisions at $\sqrt{s}=$ 7 TeV in ATLAS
 916832 . Measurement of the isolated di-photon cross-section in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 916840 ? Search for Diphoton Events with Large Missing Transverse Energy with 36 pb$^{-1}$ of 7 TeV Proton-Proton Collision Data with the {ATLAS} Detector
 917526 . Measurement of dijet production with a veto on additional central jet activity in $pp$ collisions at $\sqrt{s}=7$ TeV using the ATLAS detector
 917599 . Measurement of multi-jet cross sections in proton-proton collisions at a 7 TeV center-of-mass energy
 917931 . Measurement of the transverse momentum distribution of Z/γ⁎ bosons in proton–proton collisions at $\sqrt{s}$=7 TeV with the ATLAS detector
 919017 . Properties of jets measured from tracks in proton-proton collisions at center-of-mass energy $\sqrt{s}=7$ TeV with the ATLAS detector
 920199 . Search for neutral MSSM Higgs bosons decaying to $\tau^{+}\tau^-$ pairs in proton-proton collisions at $\sqrt{s}=$ 7 TeV with the ATLAS detector
 921594 . Measurement of the inclusive isolated prompt photon cross-section in $pp$ collisions at $\sqrt{s}=$ 7 TeV using 35 pb$^{-1}$ of ATLAS data
 921596 . Inclusive search for same-sign dilepton signatures in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 922291 ? Search for a heavy gauge boson decaying to a charged lepton and a neutrino in 1 fb$^{-1}$ of $pp$ collisions at $\sqrt{s}=$ 7 TeV using the ATLAS detector
 922410 . Search for dilepton resonances in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 922601 . Measurement of the Z to tau tau Cross Section with the ATLAS Detector
 924315 . Measurement of the top quark pair production cross section in $pp$ collisions at $\sqrt{s}=7$ TeV in dilepton final states with ATLAS
 924669 . Measurement of the $W \to \tau \nu_\tau$ cross section in $pp$ collisions at $\sqrt{s}=$7 TeV with the ATLAS experiment
 924848 . A measurement of the ratio of the $W$ and $Z$ cross sections with exactly one associated jet in $pp$ collisions at $\sqrt{s}=$7 TeV with ATLAS
 925052 ? Search for a heavy Standard Model Higgs boson in the channel $H \to ZZ \to \ell^+ \ell^− q \bar q$ using the ATLAS detector
 925553 X Performance of Missing Transverse Momentum Reconstruction in Proton-Proton Collisions at 7 TeV with ATLAS
 925716 . Search for the Standard Model Higgs boson in the two photon decay channel with the ATLAS detector at the LHC
 925720 . Measurement of the pseudorapidity and transverse momentum dependence of the elliptic flow of charged particles in lead-lead collisions at $\sqrt{s_{NN}}=2.76$ TeV with the ATLAS detector
 925723 . Measurement of the centrality dependence of the charged particle pseudorapidity distribution in lead-lead collisions at $\sqrt{s_{NN}}=2.76$ TeV with the ATLAS detector
 925932 . Measurement of the Transverse Momentum Distribution of $W$ Bosons in $pp$ Collisions at $\sqrt{s}=7$ TeV with the ATLAS Detector
 925933 . Search for New Physics in the Dijet Mass Distribution using 1 fb$^{-1}$ of $pp$ Collision Data at $\sqrt{s}=$7 TeV collected by the ATLAS Detector
 926145 . Measurements of the electron and muon inclusive cross-sections in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 926641 . Measurement of the cross section for the production of a $W$ boson in association with $b^-$ jets in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 926666 . Measurement of the cross-section for $b$-jets produced in association with a $Z$ boson at $\sqrt{s}=$ 7 TeV with the ATLAS detector
 927046 ? Search for displaced vertices arising from decays of new heavy particles in 7 TeV pp collisions at ATLAS
 927405 . Search for a heavy neutral particle decaying into an electron and a muon using 1 fb$^{-1}$ of ATLAS data
 927504 . Search for a Standard Model Higgs boson in the $H -> ZZ -> l^+l^-v\nu^-$ decay channel with the ATLAS detector
 927667 ? Search for the Higgs boson in the $H -> WW -> lvjj$ decay channel in pp collisions at sqrt{s} = 7 TeV with the ATLAS detector
 928224 . Search for New Phenomena in $t\bar{t}$ Events With Large Missing Transverse Momentum in Proton-Proton Collisions at $\sqrt{s}=7$ TeV with the ATLAS Detector
 928289 . Measurement of the inclusive $W^\pm$ and Z/gamma cross sections in the electron and muon decay channels in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 929691 . Measurement of the jet fragmentation function and transverse profile in proton-proton collisions at a center-of-mass energy of 7 TeV with the ATLAS detector
 929699 . Search for the Standard Model Higgs boson in the decay channel H→ZZ$^{(⁎)}$→4ℓ with the ATLAS detector
 930002 . Search for squarks and gluinos using final states with jets and missing transverse momentum with the ATLAS detector in $\sqrt{s}=7$ TeV proton-proton collisions
 930005 . Search for supersymmetry in final states with jets, missing transverse momentum and one isolated lepton in $\sqrt{s} = 7$ TeV pp collisions using 1 $fb^{-1}$ of ATLAS data
 930220 . Measurement of the inclusive and dijet cross-sections of $b^-$ jets in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 930968 X Performance of the ATLAS Trigger System in 2010
 939504 . Search for new phenomena in final states with large jet multiplicities and missing transverse momentum using $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector
 939560 . Search for Massive Colored Scalars in Four-Jet Final States in $\sqrt{s}=7$ TeV proton-proton collisions with the ATLAS Detector
 940010 X Electron performance measurements with the ATLAS detector using the 2010 LHC proton-proton collision data
 941539 ? Measurement of the $Z Z$ production cross section and limits on anomalous neutral triple gauge couplings in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 943401 . Searches for supersymmetry with the ATLAS detector using final states with two leptons and missing transverse momentum in $\sqrt{s}=7$ TeV proton-proton collisions
 943402 X A study of the material in the ATLAS inner detector using secondary hadronic interactions
 943969 . Search for strong gravity signatures in same-sign dimuon final states using the ATLAS detector at the LHC
 944826 . Kshort and $\Lambda$ production in $pp$ interactions at $\sqrt{s}=0.9$ and 7 TeV measured with the ATLAS detector at the LHC
 945498 . Measurement of the production cross section for Z/gamma* in association with jets in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 946427 . Search for diphoton events with large missing transverse momentum in fb$^{-1}$ of 7 TeV proton–proton collision data with the ATLAS detector
 954993 . Measurement of the $W^\pm Z$ production cross section and limits on anomalous triple gauge couplings in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1080740 . Search for extra dimensions using diphoton events in 7 TeV proton–proton collisions with the ATLAS detector
 1080891 . Search for the Higgs boson in the $H \to$ WW(*) $\to \ell_\nu\ell_\nu$ decay channel in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1081556 . Search for production of resonant states in the photon-jet mass distribution using $pp$ collisions at $\sqrt{s}=7$ TeV collected by the ATLAS detector
 1081778 ? Search for scalar bottom quark pair production with the ATLAS detector in $pp$ Collisions at $\sqrt{s}=7$ TeV
 1081998 ? Search for contact interactions in dilepton events from $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1082009 . Measurement of $D^{*+/-}$ meson production in jets from pp collisions at sqrt(s) = 7 TeV with the ATLAS detector
 1082275 . Search for first generation scalar leptoquarks in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1082461 X Observation of a new $\chi_b$ state in radiative transitions to $\Upsilon(1S)$ and $\Upsilon(2S)$ at ATLAS
 1082928 . Search for heavy vector-like quarks coupling to light quarks in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1082936 . Measurement of inclusive jet and dijet production in $pp$ collisions at $\sqrt{s}=7$ TeV using the ATLAS detector
 1082939 X Jet energy measurement with the ATLAS detector in proton-proton collisions at $\sqrt{s}=7$ TeV
 1083313 . Search for anomalous production of prompt like-sign muon pairs and constraints on physics beyond the Standard Model with the ATLAS detector
 1083318 . Study of jets produced in association with a $W$ boson in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1083794 . Measurement of the top quark pair production cross-section with ATLAS in the single lepton channel
 1084540 . Rapidity gap cross sections measured with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV
 1084697 ? Search for excited leptons in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1085980 . Search for decays of stopped, long-lived particles from 7 TeV pp collisions with the ATLAS detector
 1088223 X Combined search for the Standard Model Higgs boson using up to 4.9 fb$^{-1}$ of $pp$ collision data at $\sqrt{s}=7$ TeV with the ATLAS detector at the LHC
 1088224 X Search for the Standard Model Higgs boson in the diphoton decay channel with 4.9 fb$^{-1}$ of $pp$ collisions at $\sqrt{s}=7$ TeV with ATLAS
 1088225 ? Search for the Standard Model Higgs boson in the decay channel $H \to ZZ^{(*)} \to 4 \ell$ with 4.8 fb$^{-1}$ of $pp$ collision data at $\sqrt{s}=7$ TeV with ATLAS
 1089079 . Search for pair production of a heavy up-type quark decaying to a W boson and a b quark in the lepton+jets channel with the ATLAS detector
 1089152 . Search for pair-produced heavy quarks decaying to Wq in the two-lepton channel at $\sqrt{s}=7$ TeV with the ATLAS detector
 1090055 . Search for anomaly-mediated supersymmetry breaking with the ATLAS detector based on a disappearing-track signature in $pp$ collisions at $\sqrt{s}=7$ TeV
 1090057 . Measurement of the cross section for top-quark pair production in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector using final states with two high-pt leptons
 1090422 . Search for same-sign top-quark production and fourth-generation down-type quarks in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1091070 . Search for down-type fourth generation quarks with the ATLAS detector in events with one lepton and hadronically decaying $W$ bosons
 1091481 . Measurement of the azimuthal ordering of charged hadrons with the ATLAS detector
 1091527 ? Search for FCNC single top-quark production at $\sqrt{s}=7$ TeV with the ATLAS detector
 1092728 . Search for new particles decaying to $Z Z$ using final states with leptons and jets with the ATLAS detector in $\sqrt{s}=7$ TeV proton-proton collisions
 1092978 X Single hadron response measurement and calorimeter jet energy scale uncertainty with the ATLAS detector at the LHC
 1092979 . Search for a light Higgs boson decaying to long-lived weakly-interacting particles in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1093486 . Measurement of the polarisation of $W$ bosons produced with large transverse momentum in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS experiment
 1093733 . Measurement of the azimuthal anisotropy for charged particle production in $\sqrt{s_{NN}}=2.76$ TeV lead-lead collisions with the ATLAS detector
 1093734 . Forward-backward correlations and charged-particle azimuthal distributions in pp interactions using the ATLAS detector
 1093738 . Measurement of the production cross section of an isolated photon associated with jets in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1093739 . Search for second generation scalar leptoquarks in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1094061 . Measurement of inclusive two-particle angular correlations in pp collisions with the ATLAS detector at the LHC
 1094167 X Determination of the strange quark density of the proton from ATLAS measurements of the $W \to \ell \nu$ and $Z \to \ell\ell$ cross sections
 1094169 ? Observation of spin correlation in $t \bar{t}$ events from pp collisions at sqrt(s) = 7 TeV using the ATLAS detector
 1094175 . Measurement of the charge asymmetry in top quark pair production in $pp$ collisions at $\sqrt{s}=7$ TeV using the ATLAS detector
-1094564 ! Jet mass and substructure of inclusive jets in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS experiment
+1094564 . Jet mass and substructure of inclusive jets in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS experiment
 1094568 . Measurement of $t \bar{t}$ production with a veto on additional central jet activity in pp collisions at sqrt(s) = 7 TeV using the ATLAS detector
 1094857 . Search for heavy neutrinos and right-handed $W$ bosons in events with two leptons and jets in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1094859 ? Measurement of the top quark mass with the template method in the $t \bar{t}$ -> lepton + jets channel using ATLAS data
 1094860 . Search for gluinos in events with two same-sign leptons, jets and missing transverse momentum with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV
 1095236 . Search for supersymmetry in $pp$ collisions at $\sqrt{s}=7$ TeV in final states with missing transverse momentum and $b^-$ jets with the ATLAS detector
 1095238 . Measurement of the $W W$ cross section in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector and limits on anomalous gauge couplings
 1095404 . Search for events with large missing transverse momentum, jets, and at least two tau leptons in 7 TeV proton–proton collision data with the ATLAS detector
 1102909 . Search for the decay $B_s^0 \to \mu \mu$ with the ATLAS detector
 1104755 . Search for pair production of a new quark that decays to a Z boson and a bottom quark with the ATLAS detector
 1107731 . Search for resonant $WZ$ production in the $WZ \to \ell \nu \ell^\prime\ell^\prime$ channel in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector
 1110689 . Search for charged Higgs bosons decaying via $H^{+} \to \tau \nu$ in top quark pair events using $pp$ collision data at $\sqrt{s}=7$ TeV with the ATLAS detector
 1111144 . Search for supersymmetry with jets, missing transverse momentum and at least one hadronically decaying $\tau$ lepton in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1111820 . Search for TeV-scale gravity signatures in final states with leptons and jets with the ATLAS detector at $\sqrt{s}=7$ TeV
 1112263 . Search for supersymmetry in events with three leptons and missing transverse momentum in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector
 1112906 . Measurement of $\tau$ polarization in $W -> \tau \nu$ decays with the ATLAS detector in pp collisions at sqrt(s) = 7 TeV
 1112907 ? Search for scalar top quark pair production in natural gauge mediated supersymmetry models with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV
 1113444 ? Search for a fermiophobic Higgs boson in the diphoton decay channel with the ATLAS detector
 1113445 . Search for lepton flavour violation in the emu continuum with the ATLAS detector in $\sqrt{s}=7$ TeV $pp$ collisions at the LHC
 1113597 . Search for tb resonances in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1114034 . Measurement of the top quark pair cross section with ATLAS in $pp$ collisions at $\sqrt{s} =$ 7 TeV using final states with an electron or a muon and a hadronically decaying $\tau$ lepton
 1114314 . Measurement of the W boson polarization in top quark decays with the ATLAS detector
 1114319 . Measurement of $W \gamma$ and $Z \gamma$ production cross sections in $pp$ collisions at $\sqrt{s}=7$ TeV and limits on anomalous triple gauge couplings with the ATLAS detector
 1114487 . Measurement of the $t$-channel single top-quark production cross section in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1115822 . A search for $t\bar{t}$ resonances with the ATLAS detector in 2.05 fb$^{-1}$ of proton-proton collisions at $\sqrt{s}=7$ TeV
 1116151 . Evidence for the associated production of a $W$ boson and a top quark in ATLAS at $\sqrt{s}=7$ TeV
 1116532 . Search for a standard sodel Higgs boson in the H $\to$ ZZ $\to \ell^{+}\ell^{-}\nu \bar{\nu}$ decay channel using 4.7 fb$^{-1}$ of $\sqrt{s} =$ 7 TeV data with the ATLAS detector
 1116876 . A search for flavour changing neutral currents in top-quark decays in $pp$ collision data collected with the ATLAS detector at $\sqrt{s}=7$ TeV
 1117206 . Search for the Standard Model Higgs boson in the $H \to$ WW(*) $\to \ell \nu \ell \nu$ decay mode with 4.7 /fb of ATLAS data at $\sqrt{s}=7$ TeV
 1117704 . Hunt for new phenomena using large jet multiplicities and missing transverse momentum with ATLAS in 4.7 fb$^{-1}$ of $\sqrt{s}=7$ TeV proton-proton collisions
 1117887 ! Measurement of event shapes at large momentum transfer with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV
 1118040 . Search for a standard model Higgs boson in the mass range 200-600 GeV in the $H \to ZZ \to \ell^+ \ell^- q \bar{q}$ decay channel with the ATLAS detector
 1118269 ? Measurement of the b-hadron production cross section using decays to $D^{*}\mu^-X$ final states in pp collisions at sqrt(s) = 7 TeV with the ATLAS detector
-1119557 ! ATLAS Measurements of the Properties of Jets for Boosted Particle Searches
+1119557 . ATLAS Measurements of the Properties of Jets for Boosted Particle Searches
 1120011 . Search for the Standard Model Higgs boson in the $H$ to $\tau^{+} \tau^{-}$ decay mode in $\sqrt{s}=7$ TeV $pp$ collisions with ATLAS
 1120014 . Search for the Higgs boson in the $H \to W W \to$ lnujj decay channel at $\sqrt{s}=7$ TeV with the ATLAS detector
 1120736 ? Search for the Standard Model Higgs boson produced in association with a vector boson and decaying to a $b$-quark pair with the ATLAS detector
 1120741 X Combined search for the Standard Model Higgs boson in $pp$ collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector
 1121875 ? Measurement of the $Λ_b^0$ lifetime and mass in the ATLAS experiment
 1121877 . A search for $t\bar{t}$ resonances in lepton+jets events with highly boosted top quarks collected in $pp$ collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector
 1123116 . Search for top and bottom squarks from gluino pair production in final states with missing transverse energy and at least three b-jets with the ATLAS detector
 1123657 ! Measurements of top quark pair relative differential cross-sections with ATLAS in $pp$ collisions at $\sqrt{s}=7$ TeV
 1124035 ? Search for magnetic monopoles in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector
 1124167 . Measurement of charged-particle event shape variables in $\sqrt{s}=7$ TeV proton-proton interactions with the ATLAS detector
 1124337 X Observation of a new particle in the search for the Standard Model Higgs boson with the ATLAS detector at the LHC
 1125575 . Underlying event characteristics and their dependence on jet size of charged-particle jet events in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1125576 ? Time-dependent angular analysis of the decay $B_{s}^{0} \to J/{\psi\phi}$ and extraction of $\Delta\Gamma_{s}$ and the CP-violating weak phase $\phi_s$ by ATLAS
 1125961 . Search for squarks and gluinos with the ATLAS detector in final states with jets and missing transverse momentum using 4.7 fb$^{-1}$ of $\sqrt{s}=7$ TeV proton-proton collision data
 1126131 . Measurement of $WZ$ production in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1126136 . Search for a supersymmetric partner to the top quark in final states with jets and missing transverse momentum at $\sqrt{s}=7$ TeV with the ATLAS detector
 1126965 . Measurement of the jet radius and transverse momentum dependence of inclusive jet suppression in lead-lead collisions at $\sqrt{s_{NN}}$= 2.76 TeV with the ATLAS detector
 1127331 . Search for direct top squark pair production in final states with one isolated lepton, jets, and missing transverse momentum in $\sqrt{s}=7$ TeV $pp$ collisions using 4.7 $fb^{-1}$ of ATLAS data
 1127504 . Search for new phenomena in the $W W$ to $\ell \nu \ell$' $\nu$' final state in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1127505 . Search for direct slepton and gaugino production in final states with two leptons and missing transverse momentum with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV
 1127601 . Search for direct production of charginos and neutralinos in events with three leptons and missing transverse momentum in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector
 1128464 . Search for light scalar top quark pair production in final states with two leptons with the ATLAS detector in $\sqrt{s}=7$ TeV proton-proton collisions
 1180197 . Further search for supersymmetry at $\sqrt{s}=7$ TeV in final states with jets, missing transverse momentum and isolated leptons with the ATLAS detector
 1183818 . Measurements of the pseudorapidity dependence of the total transverse energy in proton-proton collisions at $\sqrt{s}=7$ TeV with ATLAS
 1184351 ? Search for diphoton events with large missing transverse momentum in 7 TeV proton-proton collision data with the ATLAS detector
 1184943 X Prototype ATLAS IBL Modules using the FE-I4A Front-End Readout Chip
 1184952 . Search for light top squark pair production in final states with leptons and $b^-$ jets with the ATLAS detector in $\sqrt{s}=7$ TeV proton-proton collisions
 1185259 . Search for high-mass resonances decaying to dilepton final states in pp collisions at s**(1/2) = 7-TeV with the ATLAS detector
 1186556 . Search for a heavy top-quark partner in final states with two leptons with the ATLAS detector at the LHC
 1186731 . ATLAS search for a heavy gauge boson decaying to a charged lepton and a neutrino in $pp$ collisions at $\sqrt{s}=7$ TeV
 1186740 . Search for dark matter candidates and large extra dimensions in events with a photon and missing transverse momentum in $pp$ collision data at $\sqrt{s}=7$ TeV with the ATLAS detector
 1188681 . Search for resonant top plus jet production in $t\bar{t}$ + jets events with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV
 1188890 . Search for displaced muonic lepton jets from light Higgs boson decay in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1188891 . Measurement of the flavour composition of dijet events in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1189432 ? Search for Supersymmetry in Events with Large Missing Transverse Momentum, Jets, and at Least One Tau Lepton in 7 TeV Proton-Proton Collision Data with the ATLAS Detector
 1189659 . ATLAS search for new phenomena in dijet mass and angular distributions using $pp$ collisions at $\sqrt{s}=7$ TeV
 1190185 ? Search for direct chargino production in anomaly-mediated supersymmetry breaking models based on a disappearing-track signature in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1190187 . Measurement of $W^+W^-$ production in pp collisions at $\sqrt{s}$=7  TeV with the ATLAS detector and limits on anomalous WWZ and WWγ couplings
 1190891 . Search for R-parity-violating supersymmetry in events with four or more leptons in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector
 1190892 . Search for dark matter candidates and large extra dimensions in events with a jet and missing transverse momentum with the ATLAS detector
 1190896 . Search for anomalous production of prompt like-sign lepton pairs at $\sqrt{s}=7$ TeV with the ATLAS detector
 1191022 . Search for pair production of massive particles decaying into three quarks with the ATLAS detector in $\sqrt{s}=7$ TeV $pp$ collisions at the LHC
 1191023 ? Search for pair-produced massive coloured scalars in four-jet final states with the ATLAS detector in proton-proton collisions at $\sqrt{s}=7$ TeV
 1191430 . Search for doubly-charged Higgs bosons in like-sign dilepton final states at $\sqrt{s}=7$ TeV with the ATLAS detector
 1191898 . Search for pair production of heavy top-like quarks decaying to a high-pT $W$ boson and a $b$ quark in the lepton plus jets final state at $\sqrt{s}$=7 TeV with the ATLAS detector
 1192920 X Jet energy resolution in proton-proton collisions at $\sqrt{s}=7$ TeV recorded in 2010 with the ATLAS detector
 1193044 . Measurement of $Z$ boson Production in Pb+Pb Collisions at $\sqrt{s_{NN}}=2.76$ TeV with the ATLAS Detector
 1193050 . A search for high-mass resonances decaying to $\tau^+\tau^-$ in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1193933 . Search for long-lived, heavy particles in final states with a muon and multi-track displaced vertex in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
+1194610 X Triggering on Long-Lived Neutral Particles in the ATLAS Detector
+1194801 X The ATLAS Trigger/DAQ Authorlist, version 2.0
+1194802 X The ATLAS Trigger/DAQ Authorlist, version 3.1
+1194803 X The ATLAS Trigger/DAQ Authorlist, version 3.0
 1194807 X The ATLAS Trigger/DAQ Authorlist, version 4.0
 1196722 X Muon Detection Based on a Hadronic Calorimeter
+1197250 X The Production and Qualification of Scintillator Tiles for the ATLAS Hadronic Calorimeter
 1197323 ? Search for Extra Dimensions in diphoton events using proton-proton collisions recorded at $\sqrt{s}=7$ TeV with the ATLAS detector at the LHC
 1198341 ? Search for contact interactions and large extra dimensions in dilepton events from $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1198427 ? Search for supersymmetry in events with photons, bottom quarks, and missing transverse momentum in proton–proton collisions at a centre-of-mass energy of 7 TeV with the ATLAS detector
 1199005 ? Searches for heavy long-lived sleptons and R-Hadrons with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV
 1199269 . Measurement of isolated-photon pair production in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1201945 ? Search for resonances decaying into top-quark pairs using fully hadronic decays in $pp$ collisions with ATLAS at $\sqrt{s}=7$ TeV
 1203852 . Measurement of $ZZ$ production in $pp$ collisions at $\sqrt{s}=7$ TeV and limits on anomalous $ZZZ$ and $ZZ\gamma$ couplings with the ATLAS detector
 1204447 . Search for new phenomena in events with three charged leptons at $/sqrt{s}$ = 7 TeV with the ATLAS detector
 1204784 . Measurement of angular correlations in Drell-Yan lepton pairs to probe Z/gamma* boson transverse momentum at sqrt(s)=7 TeV with the ATLAS detector
 1204786 ? Search for the neutral Higgs bosons of the Minimal Supersymmetric Standard Model in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1204991 . Measurement of the ttbar production cross section in the tau+jets channel using the ATLAS detector
 1204994 . Measurement of Upsilon production in 7 TeV pp collisions at ATLAS
 1205881 ? Search for a heavy narrow resonance decaying to $e \mu$, $e \tau$, or $\mu \tau$ with the ATLAS detector in $\sqrt{s}=7$ TeV $pp$ collisions at the LHC
 1207451 ? Search for charged Higgs bosons through the violation of lepton universality in $t\bar{t}$ events using $pp$ collision data at $\sqrt{s}=7$ TeV with the ATLAS experiment
 1208304 ? Observation of Associated Near-Side and Away-Side Long-Range Correlations in $\sqrt{s_{NN}}$=5.02  TeV Proton-Lead Collisions with the ATLAS Detector
 1208548 ? A search for prompt lepton-jets in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1208701 ? Multi-channel search for squarks and gluinos in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector
 1209719 ? Search for single $b^*$-quark production with the ATLAS detector at $\sqrt{s}=7$ TeV
 1210114 X Evaluation of the local hadronic calibration with combined beam-test data for the endcap and forward calorimeters of ATLAS in the pseudorapidity region 2.5 < |eta| < 4.0
 1215605 ? Search for long-lived, multi-charged particles in pp collisions at $\sqrt{s}$=7 TeV using the ATLAS detector
 1216670 . Measurement of hard double-parton interactions in $W(\to l\nu)$+ 2 jet events at $\sqrt{s}$=7 TeV with the ATLAS detector
 1217863 . Measurements of $W \gamma$ and $Z \gamma$ production in $pp$ collisions at $\sqrt{s}$=7  TeV with the ATLAS detector at the LHC
 1217867 . Measurement of kT splitting scales in W->lv events at sqrt(s)=7 TeV with the ATLAS detector
 1219109 . Measurement of the cross-section for W boson production in association with b-jets in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector
 1219797 ? Search for a light charged Higgs boson in the decay channel $H^+ \to c\bar{s}$ in $t\bar{t}$ events using pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector
 1219960 X Improved luminosity determination in pp collisions at sqrt(s) = 7 TeV using the ATLAS detector at the LHC
 1219961 ? Search for WH production with a light Higgs boson decaying to prompt electron-jets in proton-proton collisions at $\sqrt{s}$=7 TeV with the ATLAS detector
 1222129 X Characterisation and mitigation of beam-induced backgrounds observed in the ATLAS detector during the 2011 proton-proton run
 1222326 ? Search for third generation scalar leptoquarks in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector
 1223123 . Measurement with the ATLAS detector of multi-particle azimuthal correlations in p+Pb collisions at $\sqrt{s_{NN}}$ =5.02 TeV
 1223730 X A particle consistent with the Higgs Boson observed with the ATLAS Detector at the Large Hadron Collider
 1228693 ! Measurement of the inclusive jet cross section in pp collisions at sqrt(s)=2.76 TeV and comparison to the inclusive jet cross section at sqrt(s)=7 TeV using the ATLAS detector
 1229502 ? Search for nonpointing photons in the diphoton and $E^{miss}_T$ final state in $\sqrt{s}$=7  TeV proton-proton collisions using the ATLAS detector
 1229507 ? Study of heavy-flavor quarks produced in association with top-quark pairs at $\sqrt{s}=7$  TeV using the ATLAS detector
-1230812 ! Measurement of the production cross section of jets in association with a Z boson in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector
+1230812 . Measurement of the production cross section of jets in association with a Z boson in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector
 1231616 ? Search for resonant diboson production in the WW/WZ→ℓνjj decay channels with the ATLAS detector at $\sqrt{s}$ = 7  TeV
 1232965 X Triggers for displaced decays of long-lived neutral particles in the ATLAS detector
 1233089 ? Search for $t\bar t$ resonances in the lepton plus jets final state with ATLAS using 4.7 fb$^{-1}$ of $pp$ collisions at $\sqrt{s} = 7$ TeV
 1233359 . Measurement of the distributions of event-by-event flow harmonics in lead-lead collisions at = 2.76 TeV with the ATLAS detector at the LHC
 1234228 . Measurement of the high-mass Drell--Yan differential cross-section in pp collisions at sqrt(s)=7 TeV with the ATLAS detector
 1239348 ? Performance of jet substructure techniques for large-$R$ jets in proton-proton collisions at $\sqrt{s}$ = 7 TeV using the ATLAS detector
 1240088 . Measurement of the Azimuthal Angle Dependence of Inclusive Jet Yields in Pb+Pb Collisions at $\sqrt{s_{NN}}=$ 2.76 TeV with the ATLAS detector
 1240670 . Measurement of the differential cross-section of $B^{+}$ meson production in pp collisions at $\sqrt{s}$ = 7 TeV at ATLAS
 1241574 ? Measurements of Higgs boson production and couplings in diboson final states with the ATLAS detector at the LHC
 1241575 X Evidence for the spin-0 nature of the Higgs boson using ATLAS data
 1243158 ? Measurement of the top quark charge in $pp$ collisions at $\sqrt{s} =$ 7 TeV with the ATLAS detector
-1243871 ! Measurement of jet shapes in top-quark pair events at $\sqrt{s}$ = 7 TeV using the ATLAS detector
+1243871 . Measurement of jet shapes in top-quark pair events at $\sqrt{s}$ = 7 TeV using the ATLAS detector
 1244318 . Measurement of Top Quark Polarization in Top-Antitop Events from Proton-Proton Collisions at $\sqrt{s}$ = 7  TeV Using the ATLAS Detector
 1244522 . Dynamics of isolated-photon plus jet production in pp collisions at $\sqrt(s)=7$ TeV with the ATLAS detector
 1246787 ? Search for excited electrons and muons in $\sqrt{s}$=8 TeV proton-proton collisions with the ATLAS detector
 1247060 ? Search for new phenomena in final states with large jet multiplicities and missing transverse momentum at $\sqrt{s}$=8 TeV proton-proton collisions using the ATLAS experiment
 1247462 ? Search for direct third-generation squark pair production in final states with missing transverse momentum and two $b$-jets in $\sqrt{s} =$ 8 TeV $pp$ collisions with the ATLAS detector
 1249597 ? Search for microscopic black holes in a like-sign dimuon final state using large track multiplicity with the ATLAS detector
 1253852 . Search for new phenomena in photon+jet events collected in proton--proton collisions at sqrt(s) = 8 TeV with the ATLAS detector
 1254228 ? Search for dark matter in events with a hadronically decaying W or Z boson and missing transverse momentum in $pp$ collisions at $\sqrt{s} =$ 8 TeV with the ATLAS detector
 1258398 ? Search for charginos nearly mass degenerate with the lightest neutralino based on a disappearing-track signature in pp collisions at  $\sqrt(s)$=8  TeV with the ATLAS detector
 1261966 X Measurement of the mass difference between top and anti-top quarks in pp collisions at $\sqrt(s) = 7$ TeV using the ATLAS detector
 1261968 ? Search for long-lived stopped R-hadrons decaying out-of-time with pp collisions using the ATLAS detector
 1263495 . Measurement of the inclusive isolated prompt photons cross section in pp collisions at $\sqrt{s}=7$  TeV with the ATLAS detector using 4.6  fb$^{−1}$
 1263563 X Mechanical construction and installation of the ATLAS tile calorimeter
 1263762 ? Search for Quantum Black Hole Production in High-Invariant-Mass Lepton$+$Jet Final States Using $pp$ Collisions at $\sqrt{s} =$ 8  TeV and the ATLAS Detector
 1266254 . Measurement of the top quark pair production charge asymmetry in proton-proton collisions at $\sqrt{s}$ = 7 TeV using the ATLAS detector  <james.ferrando@cern.ch>
 1266438 X Standalone vertex finding in the ATLAS muon spectrometer
 1268153 ? Search for a multi-Higgs-boson cascade in $W^+W^−b\bar{b}$ events with the ATLAS detector in pp collisions at $\sqrt{s} = 8$  TeV
 1268975 . Measurement of dijet cross sections in $pp$ collisions at 7 TeV centre-of-mass energy using the ATLAS detector
 1276825 . Measurement of the production cross section of prompt $J/\psi$ mesons in association with a $W^\pm$ boson in $pp$ collisions at $\sqrt{s} =$ 7 TeV with the ATLAS detector
 1279489 . Measurement of the electroweak production of dijets in association with a Z-boson and distributions sensitive to vector boson fusion in proton-proton collisions at $\sqrt{s} =$ 8 TeV using the ATLAS detector
 1281233 ? Search for Higgs boson decays to a photon and a Z boson in pp collisions at $\sqrt{s}$=7 and 8 TeV with the ATLAS detector
 1281236 ? Search for Invisible Decays of a Higgs Boson Produced in Association with a Z Boson in ATLAS
 1282441 . The differential production cross section of the $\phi $ (1020) meson in $\sqrt{s}$ = 7 TeV $pp$ collisions measured with the ATLAS detector
 1282447 . Measurement of the production of a $W$ boson in association with a charm quark in $pp$ collisions at $\sqrt{s} =$ 7 TeV with the ATLAS detector
 1282905 ? Search for direct production of charginos and neutralinos in events with three leptons and missing transverse momentum in $\sqrt{s} =$ 8TeV $pp$ collisions with the ATLAS detector
 1283339 . Measurement of event-plane correlations in $\sqrt{s_{NN}}=2.76$ TeV lead-lead collisions with the ATLAS detector
 1286444 ? Search for direct top-squark pair production in final states with two leptons in pp collisions at $\sqrt{s} =$ 8TeV with the ATLAS detector
 1286622 ? Search for direct top squark pair production in events with a Z boson, b-jets and missing transverse momentum in sqrt(s)=8 TeV pp collisions with the ATLAS detector
 1286761 ? Search for direct production of charginos, neutralinos and sleptons in final states with two leptons and missing transverse momentum in $pp$ collisions at $\sqrt{s} =$ 8 TeV with the ATLAS detector
 1286892 X Measurements of Four-Lepton Production at the Z Resonance in pp Collisions at $\sqrt s=$7 and 8 TeV with ATLAS
 1287055 ? Search for top quark decays $t \to qH$ with $H \to \gamma\gamma$ using the ATLAS detector
 1288061 ? Search for dark matter in events with a Z boson and missing transverse momentum in pp collisions at $\sqrt{s}$=8 TeV with the ATLAS detector
 1288490 X Measurement of the parity-violating asymmetry parameter $\alpha_b$ and the helicity amplitudes for the decay $\Lambda_b^0\to J/\psi+\Lambda^0$ with the ATLAS detector
-1288706 ! Measurement of the low-mass Drell-Yan differential cross section at $\sqrt{s}$ = 7 TeV using the ATLAS detector
+1288706 . Measurement of the low-mass Drell-Yan differential cross section at $\sqrt{s}$ = 7 TeV using the ATLAS detector
 1289059 X Electron reconstruction and identification efficiency measurements with the ATLAS detector using the 2011 LHC proton-proton collision data
 1289225 ? Search for supersymmetry at $\sqrt{s}$=8 TeV in final states with jets and two same-sign leptons or three leptons with the ATLAS detector
 1291133 X Muon reconstruction efficiency and momentum resolution of the ATLAS experiment in proton-proton collisions at $\sqrt{s}$ = 7 TeV in 2010
 1292798 ? Measurement of $\chi_{c1}$ and $\chi_{c2}$ production with $\sqrt{s}$ = 7 TeV $pp$ collisions at ATLAS
 1292799 . Measurement of the cross section of high transverse momentum $Z\rightarrow b\bar{b}$ production in proton--proton collisions at $\sqrt{s}=8 TeV$ with the ATLAS Detector
 1293018 X Operation and performance of the ATLAS semiconductor tracker
 1296250 X Monitoring and data quality assessment of the ATLAS liquid argon calorimeter
 1296260 . Measurement of the centrality and pseudorapidity dependence of the integrated elliptic flow in lead-lead collisions at $\sqrt{s_{\mathrm {NN}}}=2.76$ TeV with the ATLAS detector
 1296830 ? Search for high-mass dilepton resonances in pp collisions at $\sqrt{s}=8$  TeV with the ATLAS detector
 1296834 ? Search for microscopic black holes and string balls in final states with leptons and jets with the ATLAS detector at sqrt(s) = 8 TeV
 1297226 ? Search for supersymmetry in events with four or more leptons in $\sqrt{s}$ = 8 TeV pp collisions with the ATLAS detector
-1298023 ? Evidence for Electroweak Production of $W^{\pm}W^{\pm}jj$ in $pp$ Collisions at $\sqrt{s}=8$ TeV with the ATLAS Detector
+1298023 . Evidence for Electroweak Production of $W^{\pm}W^{\pm}jj$ in $pp$ Collisions at $\sqrt{s}=8$ TeV with the ATLAS Detector
 1298030 X Light-quark and gluon jet discrimination in $pp$ collisions at $\sqrt{s}=7\mathrm {\ TeV}$ with the ATLAS detector
 1298722 ? Search for squarks and gluinos with the ATLAS detector in final states with jets and missing transverse momentum using $\sqrt{s}=8$ TeV proton--proton collision data
 1298805 X Jet energy measurement and its systematic uncertainty in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
-1298811 ! Measurement of the underlying event in jet events from 7 TeV proton-proton collisions with the ATLAS detector
+1298811 . Measurement of the underlying event in jet events from 7 TeV proton-proton collisions with the ATLAS detector
 1299143 ? Search for direct pair production of the top squark in all-hadronic final states in proton-proton collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1300152 . Measurement of inclusive jet charged-particle fragmentation functions in Pb+Pb collisions at $\sqrt{s_{NN}}=2.76$ TeV with the ATLAS detector
 1300647 . Measurement of the $Z/\gamma^*$ boson transverse momentum distribution in $pp$ collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector
 1300650 X Measurement of the Higgs boson mass from the $H\rightarrow \gamma\gamma$ and $H \rightarrow ZZ^{*} \rightarrow 4\ell$ channels with the ATLAS detector using 25 fb$^{-1}$ of $pp$ collision data
 1300821 ? Search for WZ resonances in the fully leptonic channel using pp collisions at sqrt(s) = 8 TeV with the ATLAS detector
 1301558 ? Search For Higgs Boson Pair Production in the $\gamma\gamma b\bar{b}$ Final State using $pp$ Collision Data at $\sqrt{s}=8$ TeV from the ATLAS Detector
 1301856 . Measurement of the $t\bar{t}$ production cross-section using $e\mu $ events with b-tagged jets in pp collisions at $\sqrt{s}$ = 7 and 8  $\,\mathrm{TeV}$ with the ATLAS detector  <neil.warrack@cern.ch>
 1303897 ? Search for the Standard Model Higgs boson decay to $\mu^{+}\mu^{-}$ with the ATLAS detector
 1303898 X A neural network clustering algorithm for the ATLAS silicon pixel detector
 1303905 . Comprehensive measurements of $t$-channel single top-quark production cross sections at $\sqrt{s} = 7$ TeV with the ATLAS detector
 1304288 ? Search for the direct production of charginos, neutralinos and staus in final states with at least two hadronically decaying taus and missing transverse momentum in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1304289 ! Measurements of normalized differential cross sections for $t\bar{t}$ production in pp collisions at $\sqrt{s}=7$  TeV using the ATLAS detector  <neil.warrack@cern.ch>
 1304455 ! Simultaneous measurements of the $t\bar{t}$, $W^+W^-$, and $Z/\gamma^{*}\rightarrow\tau\tau$ production cross-sections in $pp$ collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector
 1304456 ? Search for top squark pair production in final states with one isolated lepton, jets, and missing transverse momentum in $\sqrt s =$8 TeV $pp$ collisions with the ATLAS detector
 1304457 ? Search for strong production of supersymmetric particles in final states with missing transverse momentum and at least three $b$-jets at $\sqrt{s}$= 8 TeV proton-proton collisions with the ATLAS detector
 1304458 ? Search for supersymmetry in events with large missing transverse momentum, jets, and at least one tau lepton in 20 fb$^{-1}$ of $\sqrt{s}=$ 8 TeV proton-proton collision data with the ATLAS detector
 1304459 ? Search for pair-produced third-generation squarks decaying via charm quarks or in compressed supersymmetric scenarios in $pp$ collisions at $\sqrt{s}=8~$TeV with the ATLAS detector
 1304687 ! Measurement of the cross-section of high transverse momentum vector bosons reconstructed as single jets and studies of jet substructure in $pp$ collisions at ${\sqrt{s}}$ = 7 TeV with the ATLAS detector
 1304688 . Measurement of the $ t\overline{t} $ production cross-section as a function of jet multiplicity and jet transverse momentum in 7 TeV proton-proton collisions with the ATLAS detector
 1304691 ? Observation of an Excited $B_c^\pm$ Meson State with the ATLAS Detector
 1305096 ? Search for new phenomena in the dijet mass distribution using $p-p$ collision data at $\sqrt{s}=8$ TeV with the ATLAS detector
 1305098 ? Flavor tagged time-dependent angular analysis of the $B_s \rightarrow J/\psi \phi$ decay and extraction of $\Delta\Gamma$s and the weak phase $\phi_s$ in ATLAS
 1305430 ? Search for contact interactions and large extra dimensions in the dilepton channel using proton-proton collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
-1306294 ! Measurement of differential production cross-sections for a $Z$ boson in association with $b$-jets in 7 TeV proton-proton collisions with the ATLAS detector
+1306294 . Measurement of differential production cross-sections for a $Z$ boson in association with $b$-jets in 7 TeV proton-proton collisions with the ATLAS detector
 1306491 X Measurement of the muon reconstruction performance of the ATLAS detector using 2011 and 2012 LHC proton–proton collision data
-1306615 ! Measurements of fiducial and differential cross sections for Higgs boson production in the diphoton decay channel at $\sqrt{s}=8$ TeV with ATLAS
+1306615 . Measurements of fiducial and differential cross sections for Higgs boson production in the diphoton decay channel at $\sqrt{s}=8$ TeV with ATLAS
 1306619 ! Measurements of spin correlation in top-antitop quark events from proton-proton collisions at $\sqrt{s}=7$ TeV using the ATLAS detector
 1306905 X Electron and photon energy calibration with the ATLAS detector using LHC Run 1 data
 1307103 . Measurement of the production cross-section of $\psi(2S) \to J/\psi ( \to \mu^{+} \mu^{-}) \pi^{+} \pi^{-}$ in pp collisions at $ \sqrt{s} $ = 7 TeV at ATLAS
-1307243 ! Measurements of jet vetoes and azimuthal decorrelations in dijet events produced in $pp$ collisions at $\sqrt{s}=7\,\mathrm{TeV}$ using the ATLAS detector
+1307243 . Measurements of jet vetoes and azimuthal decorrelations in dijet events produced in $pp$ collisions at $\sqrt{s}=7\,\mathrm{TeV}$ using the ATLAS detector
 1307756 . Search for Scalar Diphoton Resonances in the Mass Range $65-600$ GeV with the ATLAS Detector in $pp$ Collision Data at $\sqrt{s}$ = 8 $TeV$
 1308524 ? Search for new particles in events with one lepton and missing transverse momentum in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1308923 ? Search for new resonances in $W\gamma$ and $Z\gamma$ final states in $pp$ collisions at $\sqrt s=8$ TeV with the ATLAS detector
 1309877 ? Search for $W' \rightarrow tb \rightarrow qqbb$ decays in $pp$ collisions at $\sqrt{s}$  = 8 TeV with the ATLAS detector
 1310834 X Performance of the ATLAS muon trigger in pp collisions at $\sqrt{s}=8$ TeV
-1310835 ! Fiducial and differential cross sections of Higgs boson production measured in the four-lepton decay channel in $pp$ collisions at $\sqrt{s}$=8 TeV with the ATLAS detector
+1310835 . Fiducial and differential cross sections of Higgs boson production measured in the four-lepton decay channel in $pp$ collisions at $\sqrt{s}$=8 TeV with the ATLAS detector
 1311487 . Measurement of flow harmonics with multi-particle cumulants in Pb+Pb collisions at $\sqrt{s_{\mathrm {NN}}}=2.76$  TeV with the ATLAS detector
 1311623 . Measurement of the production and lepton charge asymmetry of $W$ bosons in Pb+Pb collisions at $\mathbf {\sqrt{\mathbf {s}_{\mathrm {\mathbf {NN}}}}=2.76\;TeV}$ with the ATLAS detector
 1311990 . Measurements of Higgs boson production and couplings in the four-lepton channel in pp collisions at center-of-mass energies of 7 and 8 TeV with the ATLAS detector
 1312169 ? Search for the lepton flavor violating decay Z→eμ in pp collisions at $\sqrt{s}$  TeV with the ATLAS detector
 1312171 . Measurement of the total cross section from elastic scattering in pp collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1312627 . A measurement of the ratio of the production cross sections for $W$ and $Z$ bosons in association with jets with the ATLAS detector
 1312978 ? Measurement of Higgs boson production in the diphoton decay channel in pp collisions at center-of-mass energies of 7 and 8 TeV with the ATLAS detector
 1313596 ? Search for long-lived neutral particles decaying into lepton jets in proton-proton collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector
 1313597 ? Measurement of the top-quark mass in the fully hadronic decay channel from ATLAS data at $\sqrt{s}=7\mathrm{\,TeV}$
 1315325 . Measurement of long-range pseudorapidity correlations and azimuthal harmonics in $\sqrt{s_{NN}}=5.02$ TeV proton-lead collisions with the ATLAS detector
 1315819 ? Search for $H \to \gamma\gamma$ produced in association with top quarks and constraints on the Yukawa coupling between the top quark and the Higgs boson using data taken at 7 TeV and 8 TeV with the ATLAS detector
-1315949 ! Measurement of distributions sensitive to the underlying event in inclusive Z-boson production in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
+1315949 . Measurement of distributions sensitive to the underlying event in inclusive Z-boson production in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1318334 ? Search for pair and single production of new heavy quarks that decay to a $Z$ boson and a third-generation quark in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1318336 ? Search for nonpointing and delayed photons in the diphoton and missing transverse momentum final state in 8 TeV $pp$ collisions at the LHC using the ATLAS detector
 1318481 ? Search for neutral Higgs bosons of the minimal supersymmetric standard model in pp collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1318483 ? Search for resonant diboson production in the $\mathrm {\ell \ell }q\bar{q}$ final state in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector
 1318484 ? Search for the $b\bar{b}$ decay of the Standard Model Higgs boson in associated $(W/Z)H$ production with the ATLAS detector
-1319490 ! Measurements of the W production cross sections in association with jets with the ATLAS detector
+1319490 . Measurements of the W production cross sections in association with jets with the ATLAS detector
 1319760 ? Search for $s$-channel single top-quark production in proton–proton collisions at $\sqrt s=8$ TeV with the ATLAS detector
 1322381 ? Search for dark matter in events with heavy quarks and missing transverse momentum in $pp$ collisions with the ATLAS detector
 1322383 ? Search for $W' \to t\bar{b}$ in the lepton plus jets final state in proton-proton collisions at a centre-of-mass energy of $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1322568 ? Search for the $X_b$ and other hidden-beauty states in the $\pi^+ \pi^- \Upsilon(1 \rm S)$ channel at ATLAS
 1322928 ? Search for invisible particles produced in association with single-top-quarks in proton-proton collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1324374 . Measurement of the $WW+WZ$ cross section and limits on anomalous triple gauge couplings using final states with one lepton, missing transverse momentum, and two jets with the ATLAS detector at $\sqrt{\rm{s}} = 7$ TeV
 1325553 . Measurement of the inclusive jet cross-section in proton-proton collisions at $ \sqrt{s}=7 $ TeV using 4.5 fb$^{−1}$ of data with the ATLAS detector
 1326409 ? Search for new phenomena in events with a photon and missing transverse momentum in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1326641 . Measurement of three-jet production cross-sections in $pp$ collisions at 7 TeV centre-of-mass energy using the ATLAS detector
 1326911 ? Measurements of the Nuclear Modification Factor for Jets in Pb+Pb Collisions at $\sqrt{s_{\mathrm{NN}}}=2.76$ TeV with the ATLAS Detector
 1327229 . Search for new phenomena in events with three or more charged leptons in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1329957 ? Searches for heavy long-lived charged particles with the ATLAS detector in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1331782 ? Search for anomalous production of prompt same-sign lepton pairs and pair-produced doubly charged Higgs bosons with $ \sqrt{s}=8 $ TeV $pp$ collisions using the ATLAS detector
 1332748 . Measurement of the transverse polarization of $\Lambda$ and $\bar{\Lambda}$ hyperons produced in proton-proton collisions at $\sqrt{s}=7$ TeV using the ATLAS detector
 1333228 ? Observation and measurement of Higgs boson decays to WW$^*$ with the ATLAS detector
 1334140 . Centrality and rapidity dependence of inclusive jet production in $\sqrt{s_\mathrm{NN}} = 5.02$ TeV proton-lead collisions with the ATLAS detector
 1334362 . Measurement of Spin Correlation in Top-Antitop Quark Events and Search for Top Squark Pair Production in pp Collisions at $\sqrt{s}=8$ TeV Using the ATLAS Detector
 1335136 . Observation and measurements of the production of prompt and non-prompt $J/\psi$ mesons in association with a $Z$ boson in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1335266 ? Search for charged Higgs bosons decaying via $H^{\pm} \rightarrow \tau^{\pm}\nu$ in fully hadronic final states using $pp$ collision data at $\sqrt{s} = 8$ TeV with the ATLAS detector
 1335273 X Identification and energy calibration of hadronically decaying tau leptons with the ATLAS experiment in $pp$ collisions at $\sqrt{s}$=8 TeV
 1337472 ? Search for Scalar Charm Quark Pair Production in $pp$ Collisions at $\sqrt{s}=$ 8  TeV with the ATLAS Detector
 1339252 ? Search for Higgs and Z Boson Decays to J/ψγ and ϒ(nS)γ with the ATLAS Detector
 1339376 ? Search for squarks and gluinos in events with isolated leptons, jets and missing transverse momentum at $\sqrt{s}=8$ TeV with the ATLAS detector
 1339624 ? Search for pair-produced long-lived neutral particles decaying in the ATLAS hadronic calorimeter in $pp$ collisions at $\sqrt{s}$ = 8 TeV
 1340321 X Evidence for the Higgs-boson Yukawa coupling to tau leptons with the ATLAS detector
 1341609 ? Search for direct pair production of a chargino and a neutralino decaying to the 125 GeV Higgs boson in $\sqrt{s} = 8$  TeV ${pp}$ collisions with the ATLAS detector
 1341999 . Measurement of the charge asymmetry in dileptonic decays of top quark pairs in $pp$ collisions at $\sqrt{s}=7$ TeV using the ATLAS detector
 1342452 ? Observation of top-quark pair production in association with a photon and measurement of the $t\bar{t}\gamma$ production cross section in pp collisions at $\sqrt{s}=7$ TeV using the ATLAS detector
 1343107 ? Search for new phenomena in final states with an energetic jet and large missing transverse momentum in pp collisions at $\sqrt{s}=$8 TeV with the ATLAS detector
 1345028 ? Search for a CP-odd Higgs boson decaying to Zh in pp collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector
 1345355 ? Search for massive supersymmetric particles decaying to many jets using the ATLAS detector in $pp$ collisions at $\sqrt{s} = 8$ TeV
 1345452 . Differential top-antitop cross-section measurements as a function of observables constructed from final-state particles using pp collisions at $\sqrt{s}=7$ TeV in the ATLAS detector
 1346398 ? A search for high-mass resonances decaying to $\tau^{+}\tau^{-}$ in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1346844 . Two-particle Bose–Einstein correlations in pp collisions at $\mathbf {\sqrt{s} =}$ 0.9 and 7 TeV measured with the ATLAS detector
 1347135 ? Constraints on the off-shell Higgs boson signal strength in the high-mass $ZZ$ and $WW$ final states with the ATLAS detector
 1351760 ? Evidence of Wγγ Production in pp Collisions at s=8  TeV and Limits on Anomalous Quartic Gauge Couplings with the ATLAS Detector
 1351762 ? Search for supersymmetry in events containing a same-flavour opposite-sign dilepton pair, jets, and large missing transverse momentum in $\sqrt{s}=8$  TeV pp collisions with the ATLAS detector
 1351913 X Determination of spin and parity of the Higgs boson in the $WW^*\rightarrow e \nu \mu \nu $ decay channel with the ATLAS detector
 1351916 . Measurement of the forward-backward asymmetry of electron and muon pair-production in $pp$ collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector
 1352819 ? Search for a Charged Higgs Boson Produced in the Vector-Boson Fusion Mode with Decay $H^\pm \to W^\pm Z$ using $pp$ Collisions at $\sqrt{s}=8$  TeV with the ATLAS Experiment
 1352821 ? Search for a Heavy Neutral Particle Decaying to $e\mu$, $e\tau$, or $\mu\tau$ in $pp$ Collisions at $\sqrt{s}=8$ TeV with the ATLAS Detector
 1352826 ? Search for production of $WW/WZ$ resonances decaying to a lepton, neutrino and jets in $pp$ collisions at $\sqrt{s}=8$  TeV with the ATLAS detector
 1353124 ? Search for the Standard Model Higgs boson produced in association with top quarks and decaying into $b\bar{b}$ in pp collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1353390 ? Search for vector-like $B$ quarks in events with one isolated lepton, missing transverse momentum and jets at $\sqrt{s}=$ 8 TeV with the ATLAS detector
 1353391 X Measurement of the top quark mass in the $t\bar{t}\rightarrow \text{ lepton+jets } $ and $t\bar{t}\rightarrow \text{ dilepton } $ channels using $\sqrt{s}=7$   ${\mathrm { TeV}}$ ATLAS data
 1356276 X Combined Measurement of the Higgs Boson Mass in $pp$ Collisions at $\sqrt{s}=7$ and 8 TeV with the ATLAS and CMS Experiments
 1356730 ? Search for a new resonance decaying to a W or Z boson and a Higgs boson in the $\ell \ell / \ell \nu / \nu \nu + b \bar{b}$ final states with the ATLAS detector
 1357199 ? Search for low-scale gravity signatures in multi-jet final states with the ATLAS detector at $ \sqrt{s}=8 $ TeV
 1357594 ? Search for New Phenomena in Dijet Angular Distributions in Proton-Proton Collisions at $\sqrt{s} = 8$ TeV Measured with the ATLAS Detector
 1357991 . Measurement of the correlation between flow harmonics of different order in lead-lead collisions at $\sqrt{s_{NN}}$=2.76 TeV with the ATLAS detector
 1359456 ? Search for long-lived, weakly interacting particles that decay to displaced hadronic jets in proton-proton collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1360282 ? Search for heavy long-lived multi-charged particles in pp collisions at $\sqrt{s}=\;8$  TeV using the ATLAS detector
 1360283 . Measurement of the top pair production cross section in 8 TeV proton-proton collisions using kinematic information in the lepton+jets final state with ATLAS
 1360288 ? Search for invisible decays of the Higgs boson produced in association with a hadronically decaying vector boson in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
-1360290 ! Measurement of charged-particle spectra in Pb+Pb collisions at $\sqrt{{s}_\mathsf{{NN}}} = 2.76$ TeV with the ATLAS detector at the LHC
+1360290 . Measurement of charged-particle spectra in Pb+Pb collisions at $\sqrt{{s}_\mathsf{{NN}}} = 2.76$ TeV with the ATLAS detector at the LHC
 1361912 ? Analysis of events with $b$-jets and a pair of leptons of the same charge in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1362183 ? Search for massive, long-lived particles using multitrack displaced vertices or displaced lepton pairs in pp collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1362490 ? Search for high-mass diphoton resonances in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1364361 . Measurements of the Total and Differential Higgs Boson Production Cross Sections Combining the H→γγ and H→ZZ*→4ℓ Decay Channels at $\sqrt{s}$=8  TeV with the ATLAS Detector
 1367302 ? Search for Higgs bosons decaying to $aa$ in the $\mu\mu\tau\tau$ final state in $pp$ collisions at $\sqrt{s} = $ 8 TeV with the ATLAS experiment
 1370678 ? Search for production of vector-like quark pairs and of four top quarks in the lepton-plus-jets final state in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1373299 ? A search for $ t\overline{t} $ resonances using lepton-plus-jets events in proton-proton collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector
 1373520 ? Search for new light gauge bosons in Higgs boson decays to four-lepton final states in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector at the LHC
 1373747 . Measurement of differential $J/\psi$ production cross sections and forward-backward ratios in p + Pb collisions with the ATLAS detector
 1373912 ? Search for Higgs boson pair production in the $b\bar{b}b\bar{b}$ final state from pp collisions at $\sqrt{s} = 8$ TeVwith the ATLAS detector
 1374218 ? Search for high-mass diboson resonances with boson-tagged jets in proton-proton collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector
 1374488 ? Search for Dark Matter in Events with Missing Transverse Momentum and a Higgs Boson Decaying to Two Photons in $pp$ Collisions at $\sqrt{s}=8$ TeV with the ATLAS Detector
 1374493 ? Search for heavy lepton resonances decaying to a $Z$ boson and a lepton in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1374908 ? Search for type-III Seesaw heavy leptons in $pp$ collisions at $\sqrt{s}= 8$ TeV with the ATLAS Detector
 1376287 X Measurements of the top quark branching ratios into channels with leptons and quarks with the ATLAS detector
 1376482 ? Search for metastable heavy charged particles with large ionisation energy loss in pp collisions at $\sqrt{s} = 8$  TeV using the ATLAS experiment
 1376944 ? Modelling $Z\rightarrow\tau\tau$ processes in ATLAS with $\tau$-embedded $Z\rightarrow\mu\mu$ data
 1376945 . Measurement of colour flow with the jet pull angle in $t\bar{t}$ events using the ATLAS detector at $\sqrt{s}=8$ TeV
 1376946 ? Study of the spin and parity of the Higgs boson in diboson decays with the ATLAS detector
 1377202 ? Search for the associated production of the Higgs boson with a top quark pair in multilepton final states with the ATLAS detector
 1377205 ? Search for heavy Majorana neutrinos with the ATLAS detector in pp collisions at $ \sqrt{s}=8 $ TeV
 1377364 ? Study of (W/Z)H production and Higgs boson couplings using $H \rightarrow WW^{\ast}$ decays with the ATLAS detector
 1377585 . Measurement of exclusive $\gamma\gamma\rightarrow \ell^+\ell^-$ production in proton-proton collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector
 1380180 . Centrality, rapidity and transverse momentum dependence of isolated prompt photon production in lead-lead collisions at $\sqrt{s_{\mathrm{NN}}} = 2.76$ TeV measured with the ATLAS detector
 1380183 ? ATLAS Run 1 searches for direct pair production of third-generation squarks at the Large Hadron Collider
 1380185 . Measurement of the production of neighbouring jets in lead–lead collisions at $\sqrt{s_{\mathrm{NN}}} = 2.76$TeV with the ATLAS detector
 1381766 X Determination of the top-quark pole mass using $ t\overline{t} $ + 1-jet events collected with the ATLAS experiment in 7 TeV pp collisions
 1383128 X Measurements of the Higgs boson production and decay rates and coupling strengths using pp collision data at $\sqrt{s}=7$ and 8 TeV in the ATLAS experiment
 1383883 ? Search for photonic signatures of gauge-mediated supersymmetry in 8 TeV pp collisions with the ATLAS detector
 1383884 X Summary of the searches for squarks and gluinos using $ \sqrt{s}=8 $ TeV pp collisions with the ATLAS experiment at the LHC
 1384120 ? Search for an additional, heavy Higgs boson in the $H\rightarrow ZZ$ decay channel at $\sqrt{s} = 8\;\text{ TeV }$ in $pp$ collision data with the ATLAS detector
 1384272 . $Z$ boson production in $p+$Pb collisions at $\sqrt{s_{NN}}=5.02$ TeV measured with the ATLAS detector
 1385102 X Study of the $B_c^+ \rightarrow J/\psi D_s^+$ and $B_c^+ \rightarrow J/\psi D_s^{*+}$ decays with the ATLAS detector
 1385604 X Measurement of the branching ratio $\Gamma(\Lambda_b^0 \rightarrow \psi(2S)\Lambda^0)/\Gamma(\Lambda_b^0 \rightarrow J/\psi\Lambda^0)$ with the ATLAS detector
 1385880 X Determination of the ratio of $b$-quark fragmentation fractions $f_s/f_d$ in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1386475 . Measurement of the centrality dependence of the charged-particle pseudorapidity distribution in proton–lead collisions at $\sqrt{s_{_\text {NN}}} = 5.02$  TeV with the ATLAS detector
 1387176 . Measurement of transverse energy-energy correlations in multi-jet events in $pp$ collisions at $\sqrt{s} = 7$ TeV using the ATLAS detector and determination of the strong coupling constant $\alpha_{\mathrm{s}}(m_Z)$
 1387509 X Constraints on non-Standard Model Higgs boson interactions in an effective Lagrangian using differential cross sections measured in the $H \rightarrow \gamma\gamma$ decay channel at $\sqrt{s} = 8$TeV with the ATLAS detector
 1388016 ? Search for lepton-flavour-violating H → μτ decays of the Higgs boson with the ATLAS detector
 1388506 ? Searches for scalar leptoquarks in pp collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1389174 ? Search for flavour-changing neutral current top-quark decays to $qZ$ in $pp$ collision data collected with the ATLAS detector at $\sqrt s =8$  TeV
 1389857 X Summary of the ATLAS experiment’s sensitivity to supersymmetry after LHC Run 1 — interpreted in the phenomenological MSSM
 1390114 . Measurements of fiducial cross-sections for $t\bar{t}$ production with one or two additional b-jets in pp collisions at $\sqrt{s}$ =8 TeV using the ATLAS detector
 1391149 ? Search for invisible decays of a Higgs boson using vector-boson fusion in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1391318 ? Search for single top-quark production via flavour-changing neutral currents at 8 TeV with the ATLAS detector
 1391323 ? Search for a high-mass Higgs boson decaying to a $W$ boson pair in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector
 1391509 ? Constraints on new phenomena via Higgs boson couplings and invisible decays with the ATLAS detector
 1392455 . Measurement of the charge asymmetry in top-quark pair production in the lepton-plus-jets final state in pp collision data at $\sqrt{s}=8\,\mathrm TeV{}$ with the ATLAS detector
 1393281 ? Search for pair production of a new heavy quark that decays into a $W$ boson and a light quark in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector
 1393493 ? Searches for Higgs boson pair production in the $hh\to bb\tau\tau, \gamma\gamma WW^*, \gamma\gamma bb, bbbb$ channels with the ATLAS detector
 1393658 . Observation of Long-Range Elliptic Azimuthal Anisotropies in $\sqrt{s}=$13 and 2.76 TeV $pp$ Collisions with the ATLAS Detector
 1393661 X A new method to distinguish hadronically decaying boosted $Z$ bosons from $W$ bosons using the ATLAS detector
 1393662 ? Search for direct top squark pair production in final states with two tau leptons in pp collisions at $\sqrt{s}=8$  TeV with the ATLAS detector
 1393757 ? Search for new phenomena in events with at least three photons collected in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1393758 . Measurement of jet charge in dijet events from $\sqrt{s}$=8  TeV pp collisions with the ATLAS detector
 1393760 . Measurement of the $ t\overline{t}W $ and $ t\overline{t}Z $ production cross sections in pp collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector
 1394161 ? Search for flavour-changing neutral current top quark decays $t\to Hq$ in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1394670 ? Search for the electroweak production of supersymmetric particles in $\sqrt{s}$=8 TeV $pp$ collisions with the ATLAS detector
 1394679 . Measurement of four-jet differential cross sections in $\sqrt{s}=8$ TeV proton-proton collisions using the ATLAS detector
 1394865 . Measurements of four-lepton production in $pp$ collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector
 1395092 ? Search for magnetic monopoles and stable particles with high electric charges in 8 TeV $pp$ collisions with the ATLAS detector
 1397001 ? Search for the production of single vector-like and excited quarks in the $Wt$ final state in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1397635 . Measurement of the production cross-section of a single top quark in association with a $W$ boson at 8 TeV with the ATLAS experiment
 1397636 ? Search for anomalous couplings in the $Wtb$ vertex from the measurement of double differential angular decay rates of single top quarks produced in the $t$-channel with the ATLAS detector
 1397637 . Measurement of the differential cross-section of highly boosted top quarks as a function of their transverse momentum in $\sqrt{s}$ = 8 TeV proton-proton collisions using the ATLAS detector
 1397638 X Performance of pile-up mitigation techniques for jets in $pp$ collisions at $\sqrt{s}=8$  TeV using the ATLAS detector
 1399051 X Identification of boosted, hadronically decaying W bosons and comparisons with ATLAS data taken at $\sqrt{s} = 8$ TeV
 1399193 ? Search for dark matter produced in association with a Higgs boson decaying to two bottom quarks in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector
-1400803 !  Measurement of the correlations between the polar angles of leptons from top quark decays in the helicity basis at $\sqrt{s}=7$TeV using the ATLAS detector
+1400803 ! Measurement of the correlations between the polar angles of leptons from top quark decays in the helicity basis at $\sqrt{s}=7$TeV using the ATLAS detector
 1402356 ! Dijet production in $\sqrt{s}=$ 7 TeV $pp$ collisions with large rapidity gaps at the ATLAS experiment
 1404878 . Measurements of top-quark pair differential cross-sections in the lepton+jets channel in $pp$ collisions at $\sqrt{s}=8$ TeV using the ATLAS detector
 1405096 ? A search for prompt lepton-jets in $pp$ collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector
 1405430 ? Evidence for single top-quark production in the $s$-channel in proton-proton collisions at $\sqrt{s}=$8 TeV with the ATLAS detector using the Matrix Element Method
 1406935 ? Search for the Standard Model Higgs boson produced in association with a vector boson and decaying into a tau pair in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector
 1407478 ! Measurement of the dependence of transverse energy production at large pseudorapidity on the hard-scattering kinematics of proton-proton collisions at $\sqrt{s} = 2.76$ TeV with ATLAS
 1407952 X Performance of $b$-Jet Identification in the ATLAS Experiment
 1408292 ? Search for new phenomena in dijet mass and angular distributions from $pp$ collisions at $\sqrt{s}=$ 13 TeV with the ATLAS detector
 1408516 . Measurement of the transverse momentum and $\phi ^*_{\eta }$ distributions of Drell–Yan lepton pairs in proton–proton collisions at $\sqrt{s}=8$  TeV with the ATLAS detector
 1408744 ? Search for strong gravity in multijet final states produced in pp collisions at $\sqrt{s} =$ 13 TeV using the ATLAS detector at the LHC
 1408878 . Measurement of $D^{*\pm}$, $D^\pm$ and $D_s^\pm$ meson production cross sections in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1409298 . Measurement of the differential cross-sections of prompt and non-prompt production of $J/\psi $ and $\psi (2\mathrm {S})$ in $pp$ collisions at $\sqrt{s} = 7$ and 8 TeV with the ATLAS detector
 1409300 ? Search for charged Higgs bosons in the $H^{\pm} \rightarrow tb$ decay channel in $pp$ collisions at $\sqrt{s}=8 $ TeV using the ATLAS detector
 1409918 ? Combination of searches for $WW$, $WZ$, and $ZZ$ resonances in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector
 1409923 . Measurement of the $ZZ$ Production Cross Section in $pp$ Collisions at $\sqrt{s}$ = 13 TeV with the ATLAS Detector
 1410580 ? Search for new phenomena with photon+jet events in proton-proton collisions at $ \sqrt{s}=13 $ TeV with the ATLAS detector
 1410581 X Reconstruction of hadronic decay products of tau leptons with the ATLAS experiment
 1410588 ! Measurement of the charge asymmetry in highly boosted top-quark pair production in $\sqrt{s} =$ 8 TeV $pp$ collision data collected by the ATLAS experiment
 1415119 X Measurement of the CP-violating phase $\phi_s$ and the $B^0_s$ meson decay width difference with $B^0_s \to J/\psi\phi$ decays in ATLAS
 1415270 ? Probing lepton flavour violation via neutrinoless $\tau\longrightarrow 3\mu$  decays with the ATLAS detector
 1416473 ? A search for an excited muon decaying to a muon and two jets in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1417099 ? A search for top squarks with R-parity-violating decays to all-hadronic final states with the ATLAS detector in $\sqrt{s}$ = 8 TeV proton-proton collisions
 1419070 . Measurement of the charged-particle multiplicity inside jets from $\sqrt{s}=8$ TeV $pp$ collisions with the ATLAS detector
 1419652 . Charged-particle distributions in $\sqrt{s}$ = 13 TeV pp interactions measured with the ATLAS detector at the LHC
 1421648 X Test of CP Invariance in vector-boson fusion production of the Higgs boson using the Optimal Observable method in the ditau decay channel with the ATLAS detector
 1422202 ? Search for single production of vector-like quarks decaying into Wb in pp collisions at $\sqrt{s} = 8$  TeV with the ATLAS detector
 1422612 ? Search for single production of a vector-like quark via a heavy gluon in the $4b$ final state with the ATLAS detector in $pp$ collisions at $\sqrt{s} = 8$ TeV
 1422615 ? Search for new phenomena in final states with large jet multiplicities and missing transverse momentum with ATLAS using $\sqrt{s} =$ 13 TeV proton-proton collisions
 1424838 . Measurement of event-shape observables in $Z \rightarrow \ell ^{+} \ell ^{-}$ events in $pp$ collisions at $\sqrt{s}=$ 7 TeV with the ATLAS detector at the LHC
 1424844 ? Search for supersymmetry at $\sqrt{s}=13$  TeV in final states with jets and two same-sign leptons or three leptons with the ATLAS detector
 1426515 . Measurement of total and differential $W^+W^-$ production cross sections in proton-proton collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector and limits on anomalous triple-gauge-boson couplings
 1426523 . Measurements of $W^\pm Z$ production cross sections in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector and limits on anomalous gauge boson self-couplings
 1426695 . Charged-particle distributions in $pp$ interactions at $\sqrt{s}=$ 8 TeV measured with the ATLAS detector
 1426830 X Topological cell clustering in the ATLAS calorimeters and its performance in LHC Run 1
 1427022 X Identification of high transverse momentum top quarks in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1429662 X Muon reconstruction performance of the ATLAS detector in proton–proton collision data at $\sqrt{s}$ =13 TeV
 1436362 ? Search for resonances in the mass distribution of jet pairs with one or two jets identified as $b$-jets in proton--proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1436495 X Beam-induced and cosmic-ray backgrounds observed in the ATLAS detector during the LHC 2012 proton-proton running period
 1436496 ? Search for charged Higgs bosons produced in association with a top quark and decaying via $H^{\pm} \rightarrow \tau\nu$ using $pp$ collision data recorded at $\sqrt{s} = 13$ TeV by the ATLAS detector
 1436497 . Measurement of $W^{\pm}$ and $Z$-boson production cross sections in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1442359 ? Search for new phenomena in events with a photon and missing transverse momentum in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
-1444991 ! Measurement of fiducial differential cross sections of gluon-fusion production of Higgs bosons decaying to WW$^{∗}$→eνμν with the ATLAS detector at $ \sqrt{s}=8 $ TeV
+1444991 . Measurement of fiducial differential cross sections of gluon-fusion production of Higgs bosons decaying to WW$^{∗}$→eνμν with the ATLAS detector at $ \sqrt{s}=8 $ TeV
 1446750 ? Search for the Standard Model Higgs boson decaying into $ b\overline{b} $ produced in association with top quarks decaying hadronically in pp collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector
 1446983 X Study of the rare decays of $B^0_s$ and $B^0$ into muon pairs from data collected during the LHC Run 1 with the ATLAS detector
 1448101 ? Search for metastable heavy charged particles with large ionization energy loss in pp collisions at $\sqrt{s} = 13$ TeV using the ATLAS experiment
 1448301 . Measurements of $Z\gamma$ and $Z\gamma\gamma$ production in $pp$ collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector
 1449082 . Measurements of the charge asymmetry in top-quark pair production in the dilepton final state at $\sqrt{s}=8$  TeV with the ATLAS detector
 1452557 ? Search for lepton-flavour-violating decays of the Higgs and $Z$ bosons with the ATLAS detector
 1452559 . Search for new phenomena in final states with an energetic jet and large missing transverse momentum in $pp$ collisions at $\sqrt{s}=13$  TeV using the ATLAS detector
 1455739 X Gas gain stabilisation in the ATLAS TRT detector
 1457605 . Measurement of the inclusive isolated prompt photon cross section in pp collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector
 1458270 . Search for squarks and gluinos in final states with jets and missing transverse momentum at $\sqrt{s} =$ 13 TeV with the ATLAS detector
 1458952 ? Search for gluinos in events with an isolated lepton, jets and missing transverse momentum at $\sqrt{s}$ = 13 Te V with the ATLAS detector
 1462258 ? Search for scalar leptoquarks in pp collisions at $\sqrt{s}$ = 13 TeV with the ATLAS experiment
 1463284 . Transverse momentum, rapidity, and centrality dependence of inclusive charged-particle production in $\sqrt{s_{NN}}=5.02$ TeV $p$ + Pb collisions measured by the ATLAS experiment
 1465511 X Measurement of the relative width difference of the $B^0$-$\bar B^0$ system with the ATLAS detector
 1466302 ? Search for pair production of gluinos decaying via stop and sbottom in events with $b$-jets and large missing transverse momentum in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1466778 ? Measurement of the angular coefficients in $Z$-boson events using electron and muon pairs from data taken at $\sqrt{s}=8$ TeV with the ATLAS detector
 1467230 ! Charged-particle distributions at low transverse momentum in $\sqrt{s} = 13$  TeV $pp$ interactions measured with the ATLAS detector at the LHC
-1467454 ! Measurement of the double-differential high-mass Drell-Yan cross section in pp collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector
+1467454 . Measurement of the double-differential high-mass Drell-Yan cross section in pp collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector
 1467455 X Measurement of the photon identification efficiencies with the ATLAS detector using LHC Run-1 data
 1468064 X Measurement of the top quark mass in the $t\bar{t}\to$ dilepton channel from $\sqrt{s}=8$ TeV ATLAS data
 1468065 ? Search for the Standard Model Higgs boson produced by vector-boson fusion and decaying to bottom quarks in $ \sqrt{s}=8 $ TeV pp collisions with the ATLAS detector
 1468067 ? Search for TeV-scale gravity signatures in high-mass final states with leptons and jets with the ATLAS detector at $\sqrt{s}=13$ TeV
 1468068 ? Measurements of the Higgs boson production and decay rates and constraints on its couplings from a combined ATLAS and CMS analysis of the LHC pp collision data at $ \sqrt{s}=7 $ and 8 TeV
 1468167 . Measurement of the Inelastic Proton-Proton Cross Section at $\sqrt{s} = 13$  TeV with the ATLAS Detector at the LHC
 1468168 . Measurement of the $t\bar{t}$ production cross-section using $e\mu$ events with b-tagged jets in pp collisions at $\sqrt{s}$=13 TeV with the ATLAS detector
 1469066 ? Search for resonances in diphoton events at $\sqrt{s}$=13 TeV with the ATLAS detector
 1469069 ? Search for top squarks in final states with one isolated lepton, jets, and missing transverse momentum in $\sqrt{s}=13$ TeV $pp$ collisions with the ATLAS detector
 1469070 ? Search for new resonances in events with one lepton and missing transverse momentum in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1469071 . Measurement of the $W^{\pm}Z$ boson pair-production cross section in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS Detector
 1469452 ? Search for pair production of Higgs bosons in the $b\bar{b}b\bar{b}$ final state using proton--proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1469453 ? Searches for heavy diboson resonances in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1470936 ? Search for heavy long-lived charged $R$-hadrons with the ATLAS detector in 3.2 fb$^{-1}$ of proton--proton collision data at $\sqrt{s} = 13$ TeV
 1471458 X The ATLAS Data Acquisition and High Level Trigger system
 1472089 X The performance of the jet trigger for the ATLAS detector during 2011 data taking
 1472317 . Measurement of forward-backward multiplicity correlations in lead-lead, proton-lead, and proton-proton collisions with the ATLAS detector
 1472323 ? Search for the Higgs boson produced in association with a $W$ boson and decaying to four $b$-quarks via two spin-zero particles in $pp$ collisions at 13 TeV with the ATLAS detector
 1472822 ? Search for bottom squark pair production in proton–proton collisions at $\sqrt{s}=13$  TeV with the ATLAS detector
 1473191 ! Measurement of jet activity in top quark events using the $e\mu$ final state with two $b$-tagged jets in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1473744 ? Search for supersymmetry in a final state containing two photons and missing transverse momentum in $\sqrt{s}$ = 13 TeV $pp$ collisions at the LHC using the ATLAS detector
 1475286 ? Search for Higgs and $Z$ Boson Decays to $\phi\,\gamma$ with the ATLAS Detector
 1475476 ? Search for high-mass new phenomena in the dilepton final state using proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1475477 . Measurement of exclusive $\gamma\gamma\rightarrow W^+W^-$ production and search for exclusive Higgs boson production in $pp$ collisions at $\sqrt{s} = 8$ TeV using the ATLAS detector
 1477027 ? Search for new resonances decaying to a $W$ or $Z$ boson and a Higgs boson in the $\ell^+ \ell^- b\bar b$, $\ell \nu b\bar b$, and $\nu\bar{\nu} b\bar b$ channels with $pp$ collisions at $\sqrt s = 13$ TeV with the ATLAS detector
 1477209 ? Search for squarks and gluinos in events with hadronically decaying tau leptons, jets and missing transverse momentum in proton–proton collisions at $\sqrt{s}=13$  TeV recorded with the ATLAS detector
 1477403 ? Search for heavy resonances decaying to a $Z$ boson and a photon in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1477585 . Measurement of the total cross section from elastic scattering in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1477814 ! Measurement of top quark pair differential cross-sections in the dilepton channel in $pp$ collisions at $\sqrt{s}$ = 7 and 8 TeV with ATLAS  <james.ferrando@desy.de>
 1478190 ? Search for new phenomena in different-flavour high-mass dilepton final states in pp collisions at $\sqrt{s}=13$  Tev with the ATLAS detector
 1478355 ! Measurement of the $b\overline{b}$ dijet cross section in pp collisions at $\sqrt{s} = 7$  TeV with the ATLAS detector
 1478601 X A measurement of the calorimeter response to single hadrons and determination of the jet energy scale uncertainty using LHC Run-1 $pp$-collision data with the ATLAS detector
 1478981 ? Dark matter interpretations of ATLAS searches for the electroweak production of supersymmetric particles in $ \sqrt{s}=8 $ TeV proton-proton collisions
 1478983 ? Search for Minimal Supersymmetric Standard Model Higgs bosons $H/A$ and for a $Z^{\prime}$ boson in the $\tau \tau$ final state produced in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS Detector
 1479760 . Study of hard double-parton scattering in four-jet events in pp collisions at $ \sqrt{s}=7 $ TeV with the ATLAS experiment
 1479947 ? Search for dark matter produced in association with a hadronically decaying vector boson in $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS detector
 1480190 X The Laser calibration of the Atlas Tile Calorimeter during the LHC run 1
 1480365 . Measurement of $W^+W^-$ production in association with one jet in proton--proton collisions at $\sqrt{s} =8$ TeV with the ATLAS detector
 1481187 X Luminosity determination in pp collisions at $\sqrt{s}$ = 8 TeV using the ATLAS detector at the LHC
 1485353 ? Measurement of the $t\bar{t}Z$ and $t\bar{t}W$ production cross sections in multilepton final states using 3.2 fb$^{-1}$ of $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector
 1486394 ? Measurement of the inclusive cross-sections of single top-quark and top-antiquark $t$-channel production in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector
 1486521 X A measurement of material in the ATLAS tracker using secondary hadronic interactions in 7 TeV pp collisions
 1486673 ? Search for dark matter in association with a Higgs boson decaying to $b$-quarks in $pp$ collisions at $\sqrt s=13$ TeV with the ATLAS detector
 1486878 ? Search for anomalous electroweak production of $WW/WZ$ in association with a high-mass dijet system in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1487472 . Measurements of long-range azimuthal anisotropies and associated Fourier coefficients for $pp$ collisions at $\sqrt{s}=5.02$ and $13$ TeV and $p$+Pb collisions at $\sqrt{s_{\mathrm{NN}}}=5.02$ TeV with the ATLAS detector
 1487726 ! Measurement of $W$ boson angular distributions in events with high transverse momentum jets at $\sqrt{s}=$ 8 TeV using the ATLAS detector
 1488580 X Performance of algorithms that reconstruct missing transverse momentum in $\sqrt{s}=$ 8 TeV proton-proton collisions in the ATLAS detector
 1492320 . Search for triboson $W^{\pm }W^{\pm }W^{\mp }$ production in $pp$ collisions at $\sqrt{s}=8$   $\text {TeV}$ with the ATLAS detector
 1494075 ? Measurement of the $ZZ$ production cross section in proton-proton collisions at $\sqrt s =$ 8 TeV using the $ZZ\to\ell^{-}\ell^{+}\ell^{\prime -}\ell^{\prime +}$ and $ZZ\to\ell^{-}\ell^{+}\nu\bar{\nu}$ channels with the ATLAS detector
 1494410 ? Measurements of charge and CP asymmetries in $b$-hadron decays using top-quark events collected by the ATLAS detector in $pp$ collisions at $\sqrt{s}=8$ TeV
 1495026 ? Measurements of $\psi(2S)$ and $X(3872) \to J/\psi\pi^+\pi^-$ production in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector
 1495243 . Measurement of jet activity produced in top-quark events with an electron, a muon and two $b$-tagged jets in the final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1496384 ? Measurement of $W^{\pm}W^{\pm}$ vector-boson scattering and limits on anomalous quartic gauge couplings with the ATLAS detector
 1498566 ? Search for new phenomena in events containing a same-flavour opposite-sign dilepton pair, jets, and large missing transverse momentum in $\sqrt{s}=$ 13 $pp$ collisions with the ATLAS detector
 1499475 . High-$E_{\rm T}$ isolated-photon plus jets production in $pp$ collisions at $\sqrt s=$ 8 TeV with the ATLAS detector
 1500696 X Performance of the ATLAS Trigger System in 2015
 1500997 X Reconstruction of primary vertices at the ATLAS experiment in Run 1 proton–proton collisions at the LHC
 1501691 X Electron efficiency measurements with the ATLAS detector using 2012 LHC proton–proton collision data
 1502345 . Measurement of the W boson polarisation in $t\bar{t}$ events from pp collisions at $\sqrt{s}$ = 8 TeV in the lepton + jets channel with ATLAS
 1502618 . Measurement of the prompt J/ $\psi $ pair production cross-section in pp collisions at $\sqrt{s} = 8$  TeV with the ATLAS detector
 1502620 . Precision measurement and interpretation of inclusive $W^+$ , $W^-$ and $Z/\gamma ^*$ production cross sections with the ATLAS detector
 1502921 . Measurements of top-quark pair to $Z$-boson cross-section ratios at $\sqrt s = 13, 8, 7$ TeV with the ATLAS detector
 1504059 ! Measurements of top-quark pair differential cross-sections in the $e\mu$ channel in $pp$ collisions at $\sqrt{s} = 13$ TeV using the ATLAS detector  <neil.warrack@cern.ch>
 1505422 . Measurements of top quark spin observables in $ t\overline{t} $ events using dilepton final states in $ \sqrt{s}=8 $ TeV pp collisions with the ATLAS detector  <james.ferrando@desy.de>
 1505427 . Measurement of the cross-section for producing a W boson in association with a single top quark in pp collisions at $ \sqrt{s}=13 $ TeV with ATLAS
 1509919 . Measurement of charged-particle distributions sensitive to the underlying event in $ \sqrt{s}=13 $ TeV proton-proton collisions with the ATLAS detector at the LHC
 1510441 . Measurement of the cross section for inclusive isolated-photon production in $pp$ collisions at $\sqrt s=13$ TeV using the ATLAS detector
 1510564 ? Measurement of the $W$-boson mass in pp collisions at $\sqrt{s}=7$ TeV with the ATLAS detector
 1511869 . Measurement of jet fragmentation in Pb+Pb and $pp$ collisions at $\sqrt{{s_\mathrm{NN}}} = 2.76$ TeV with the ATLAS detector at the LHC
 1512305 . Evidence for light-by-light scattering in heavy-ion collisions with the ATLAS detector at the LHC
 1512776 ! Fiducial, total and differential cross-section measurements of $t$-channel single top-quark production in $pp$ collisions at 8 TeV using data collected by the ATLAS detector  <neil.warrack@cern.ch>
 1513473 ! Measurement of the $W^+W^-$ production cross section in $pp$ collisions at a centre-of-mass energy of $\sqrt{s}$ = 13 TeV with the ATLAS experiment
 1514251 . Measurements of the production cross section of a $Z$ boson in association with jets in pp collisions at $\sqrt{s} = 13$  TeV with the ATLAS detector
 1514548 X Performance of the ATLAS Transition Radiation Tracker in Run 1 of the LHC: tracker properties
 1515025 ! Top-quark mass measurement in the all-hadronic $ t\overline{t} $ decay channel at $ \sqrt{s}=8 $ TeV with the ATLAS detector
 1515204 ? Probing the W tb vertex structure in t-channel single-top-quark production and decay in pp collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector
 1515374 . Measurement of the $t\bar{t}$ production cross section in the $\tau$ + jets final state in $pp$ collisions at $\sqrt{s}=8$ TeV using the ATLAS detector
 1517194 . Measurements of electroweak $Wjj$ production and constraints on anomalous gauge couplings with the ATLAS detector
 1519428 ? Search for new phenomena in dijet events using 37 fb$^{-1}$ of $pp$ collision data collected at $\sqrt{s}=$13 TeV with the ATLAS detector
 1519834 X Jet energy scale measurements and their systematic uncertainties in proton-proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1520722 X Jet reconstruction and performance using particle flow with the ATLAS Detector
 1589844 . Measurement of the $k_\mathrm{t}$ splitting scales in $Z \to \ell\ell$ events in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector
 1590025 . Femtoscopy with identified charged pions in proton-lead collisions at $\sqrt{s_{\mathrm{NN}}}=5.02$ TeV with ATLAS
 1591327 . Measurements of integrated and differential cross sections for isolated photon pair production in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1591328 ? Search for dark matter at $\sqrt{s}=13$ TeV in final states containing an energetic photon and large missing transverse momentum with the ATLAS detector
 1596896 X Performance of the ATLAS Track Reconstruction Algorithms in Dense Environments in LHC Run 2
 1597123 ? Search for new phenomena in a lepton plus high jet multiplicity final state with the ATLAS experiment using $ \sqrt{s}=13 $ TeV proton-proton collision data
 1598259 ? Studies of $Z\gamma$ production in association with a high-mass dijet system in $pp$ collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector
 1598265 X Identification and rejection of pile-up jets at high pseudorapidity with the ATLAS detector
 1598613 . Measurement of $b$-hadron pair production with the ATLAS detector in proton-proton collisions at $\sqrt{s}=8$ TeV
 1599077 . Measurement of multi-particle azimuthal correlations in $pp$, $p+$Pb and low-multiplicity Pb$+$Pb collisions with the ATLAS detector
 1599399 ? Search for the dimuon decay of the Higgs boson in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector
 1601647 ? Search for pair production of vector-like top quarks in events with one lepton, jets, and missing transverse momentum in $ \sqrt{s}=13 $ TeV $pp$ collisions with the ATLAS detector
 1602949 ? Measurement of $WW/WZ \to \ell \nu q q^{\prime}$ production with the hadronically decaying boson reconstructed as one or two jets in $pp$ collisions at $\sqrt{s}=8$ TeV with ATLAS, and constraints on anomalous gauge couplings
 1604026 . Measurement of jet fragmentation in 5.02 TeV proton-lead and proton-proton collisions with the ATLAS detector
 1604029 . Measurement of the $ t\overline{t}\gamma $ production cross section in proton-proton collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector
 1604271 ! Measurement of the inclusive jet cross-sections in proton-proton collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector
 1604276 ? Search for supersymmetry in final states with two same-sign or three leptons and jets using 36 fb$^{-1}$ of $\sqrt{s}=13$ TeV $pp$ collision data with the ATLAS detector
 1604888 ? Search for dark matter in association with a Higgs boson decaying to two photons at $\sqrt{s}$ = 13 TeV with the ATLAS detector
 1604889 ? Search for direct top squark pair production in events with a Higgs or $Z$ boson, and missing transverse momentum in $\sqrt{s}=13$ TeV $pp$ collisions with the ATLAS detector
 1605396 ? Search for a new heavy gauge boson resonance decaying into a lepton and missing transverse momentum in 36 fb$^{-1}$ of $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS experiment
 1607896 . Measurement of jet $p_{\mathrm{T}}$ correlations in Pb+Pb and $pp$ collisions at $\sqrt{s_{\mathrm{NN}}}=$ 2.76 TeV with the ATLAS detector
 1608773 ? Search for Dark Matter Produced in Association with a Higgs Boson Decaying to $b\bar b$ using 36 fb$^{-1}$ of $pp$ collisions at $\sqrt s=13$ TeV with the ATLAS Detector
 1608777 ? Search for top quark decays $t\rightarrow qH$, with $H\to\gamma\gamma$, in $\sqrt{s}=13$ TeV $pp$ collisions using the ATLAS detector
 1609250 ? Search for new high-mass phenomena in the dilepton final state using 36 fb$^{−1}$ of proton-proton collision data at $ \sqrt{s}=13 $ TeV with the ATLAS detector
 1609253 . Determination of the strong coupling constant $\alpha _\mathrm {s}$ from transverse energy–energy correlations in multijet events at $\sqrt{s} = 8~\hbox {TeV}$ using the ATLAS detector
 1609258 X Study of the material of the ATLAS inner detector for Run 2 of the LHC
 1609448 . Measurement of detector-corrected observables sensitive to the anomalous production of events with jets and large missing transverse momentum in $pp$ collisions at $\mathbf {\sqrt{s}=13}$  TeV using the ATLAS detector
 1609451 ? Search for pair production of heavy vector-like quarks decaying to high-p$_{T}$ W bosons and b quarks in the lepton-plus-jets final state in pp collisions at $ \sqrt{s}=13 $ TeV with the ATLAS detector
 1609773 ? Search for new phenomena in high-mass diphoton final states using 37 fb$^{-1}$ of proton--proton collisions collected at $\sqrt{s}=13$ TeV with the ATLAS detector
 1610449 X Analysis of the $Wtb$ vertex from the measurement of triple-differential angular decay rates of single top quarks produced in the $t$-channel at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1610451 ? Study of $WW\gamma$ and $WZ\gamma$ production in $pp$ collisions at $\sqrt{s} = 8$ TeV and search for anomalous quartic gauge couplings with the ATLAS experiment
 1610625 ? Search for Heavy Higgs Bosons $A/H$ Decaying to a Top Quark Pair in $pp$ Collisions at $\sqrt{s}=8\text{ }\text{ }\mathrm{TeV}$ with the ATLAS Detector
 1611039 ? Search for heavy resonances decaying to a $W$ or $Z$ boson and a Higgs boson in the $q\bar{q}^{(\prime)}b\bar{b}$ final state in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1613896 ? Searches for the $Z\gamma$ decay mode of the Higgs boson and for new high-mass resonances in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1614149 . Measurements of top-quark pair differential cross-sections in the lepton+jets channel in $pp$ collisions at   $\sqrt{s}=13$ TeV using the ATLAS detector
 1615205 . Search for new phenomena with large jet multiplicities and missing transverse momentum using large-radius jets and flavour-tagging at ATLAS in 13 TeV $pp$ collisions
 1615206 ! Measurement of inclusive and differential cross sections in the $H \rightarrow ZZ^* \rightarrow 4\ell$ decay channel in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1615470 ? Search for direct top squark pair production in final states with two leptons in $\sqrt{s} = 13$ TeV $pp$ collisions with the ATLAS detector
 1615472 X Evidence for the $ H\to b\overline{b} $ decay with the ATLAS detector
 1615757 . Measurement of long-range multiparticle azimuthal correlations with the subevent cumulant method in $pp$ and $p + Pb$ collisions with the ATLAS detector at the CERN Large Hadron Collider
 1615866 ? Measurement of the exclusive $\gamma \gamma \rightarrow \mu^+ \mu^-$ process in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1616092 ? Search for diboson resonances with boson-tagged jets in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1620202 ? Search for the direct production of charginos and neutralinos  in final states with tau leptons in $\sqrt{s} = $ 13 TeV $pp$ collisions with the ATLAS detector
 1620206 ? Search for squarks and gluinos in events with an isolated lepton, jets, and missing transverse momentum at $\sqrt{s}=13$ TeV with the ATLAS detector
 1620694 ? Search for supersymmetry in events with $b$-tagged jets and missing transverse momentum in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1620909 ? Search for an invisibly decaying Higgs boson or dark matter candidates produced in association with a $Z$ boson in $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS detector
 1620910 ? Searches for heavy $ZZ$ and $ZW$ resonances in the $\ell\ell qq$ and $\nu\nu qq$ final states in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1622266 . Measurement of longitudinal flow decorrelations in Pb+Pb collisions at $\sqrt{s_{\text {NN}}}=2.76$ and 5.02 TeV with the ATLAS detector
 1622737 . Measurement of quarkonium production in proton–lead and proton–proton collisions at $5.02~\mathrm {TeV}$ with the ATLAS detector
 1622745 ? Measurement of $\tau $ polarisation in $Z/\gamma ^{*}\rightarrow \tau \tau $ decays in proton–proton collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1623207 ? Search for a scalar partner of the top quark in the jets plus missing transverse momentum final state at $\sqrt{s}$=13 TeV with the ATLAS detector
 1623208 X Direct top-quark decay width measurement in the $t\bar{t}$ lepton+jets channel at $\sqrt{s}$=8 TeV with the ATLAS experiment
 1623908 X Combination of inclusive and differential $ \mathrm{t}\overline{\mathrm{t}} $ charge asymmetry measurements using ATLAS and CMS data at $ \sqrt{s}=7 $ and 8 TeV  <stephen.brown.7@research.gla.ac.uk>
 1624549 ? A search for resonances decaying into a Higgs boson and a new particle $X$ in the $XH \to qqbb$ final state with the ATLAS detector
 1624690 ? Search for additional heavy neutral Higgs and gauge bosons in the ditau final state produced in 36 fb$^{−1}$ of pp collisions at $ \sqrt{s}=13 $ TeV with the ATLAS detector
-1624693 ! Study of ordered hadron chains with the ATLAS detector
-1625109 ? $ZZ \to \ell^{+}\ell^{-}\ell^{\prime +}\ell^{\prime -}$ cross-section measurements and search for anomalous triple gauge couplings in 13 TeV $pp$ collisions with the ATLAS detector
-1626105 ! Measurement of lepton differential distributions and the top quark mass in $t\bar{t}$ production in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
+1624693 . Study of ordered hadron chains with the ATLAS detector
+1625109 . $ZZ \to \ell^{+}\ell^{-}\ell^{\prime +}\ell^{\prime -}$ cross-section measurements and search for anomalous triple gauge couplings in 13 TeV $pp$ collisions with the ATLAS detector
+1626105 . Measurement of lepton differential distributions and the top quark mass in $t\bar{t}$ production in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector
 1627873 . Measurement of the cross-section for electroweak production of dijets in association with a Z boson in pp collisions at $\sqrt {s}$ = 13 TeV with the ATLAS detector
 1627878 ? Search for new phenomena in high-mass final states with a photon and a jet from $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector
 1628411 ? Search for heavy resonances decaying into $WW$ in the $e\nu\mu\nu$ final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1629567 . Measurement of the production cross-section of a single top quark in association with a Z boson in proton–proton collisions at 13 TeV with the ATLAS detector  <stephen.brown.7@research.gla.ac.uk>
 1630632 ? Search for long-lived, massive particles in events with displaced vertices and missing transverse momentum in $\sqrt{s}$ = 13 TeV $pp$ collisions with the ATLAS detector
 1630886 ! Measurement of the Drell-Yan triple-differential cross section in $pp$ collisions at $\sqrt{s} = 8$ TeV
 1630899 ? Search for B-L R -parity-violating top squarks in $\sqrt s$ =13  TeV pp collisions with the ATLAS experiment
 1631641 ? A search for pair-produced resonances in four-jet final states at $\sqrt{s} =$ 13 TeV with the ATLAS detector
 1631642 ? Search for $WW/WZ$ resonance production in $\ell \nu qq$ final states in $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS detector
 1632756 . Measurement of differential cross sections of isolated-photon plus heavy-flavour jet production in pp collisions at $\sqrt{s}=8$ TeV using the ATLAS detector
 1632760 ? Search for doubly charged Higgs boson production in multi-lepton final states with the ATLAS detector using proton–proton collisions at $\sqrt{s}=13\,\text {TeV}$
 1633591 ? Search for dark matter produced in association with bottom or top quarks in $\sqrt{s}=13$ TeV pp collisions with the ATLAS detector
 1634607 ? Search for supersymmetry in final states with missing transverse momentum and multiple $b$-jets in proton-proton collisions at $ \sqrt{s}=13 $ TeV with the ATLAS detector
 1634970 ! Measurement of inclusive jet and dijet cross-sections in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1635273 ! Measurement of differential cross sections and $W^+/W^-$ cross-section ratios for $W$ boson production in association with jets at $\sqrt{s}=8$ TeV with the ATLAS detector
 1635274 ? Search for dark matter and other new phenomena in events with an energetic jet and large missing transverse momentum using the ATLAS detector
 1637587 ! Measurement of the Soft-Drop Jet Mass in pp Collisions at $\sqrt{s} = 13$  TeV with the ATLAS Detector
 1639856 . Search for top-squark pair production in final states with one lepton, jets, and missing transverse momentum using 36 fb$^{−1}$ of $ \sqrt{s}=13 $ TeV pp collision data with the ATLAS detector
 1641076 ! Measurement of differential cross-sections of a single top quark produced in association with a $W$ boson at $\sqrt{s}=13$ TeV with ATLAS  <stephen.brown.7@research.gla.ac.uk>
 1641262 . Search for long-lived charginos based on a disappearing-track signature in pp collisions at $ \sqrt{s}=13 $ TeV with the ATLAS detector
 1641268 ? Measurement of the Higgs boson coupling properties in the $H\rightarrow ZZ^{*} \rightarrow 4\ell$ decay channel at $\sqrt{s}$ = 13 TeV with the ATLAS detector
 1641270 . Search for squarks and gluinos in final states with jets and missing transverse momentum using 36  fb$^{-1}$ of $\sqrt{s}=13$  TeV pp collision data with the ATLAS detector
 1641767 ? Search for exclusive Higgs and $Z$ boson decays to $\phi\gamma$ and $\rho\gamma$ with the ATLAS detector
 1643838 ? Search for heavy ZZ resonances in the $\ell ^+\ell ^-\ell ^+\ell ^-$ and $\ell ^+\ell ^-\nu \bar{\nu }$ final states using proton–proton collisions at $\sqrt{s}= 13$   $\text {TeV}$ with the ATLAS detector
 1643843 ? Search for heavy resonances decaying into a $W$ or $Z$ boson and a Higgs boson in final states with leptons and $b$-jets in 36 fb$^{-1}$ of $\sqrt s = 13$ TeV $pp$ collisions with the ATLAS detector
 1644099 ! Measurement of the inclusive and fiducial $t\bar{t}$ production cross-sections in the lepton+jets channel in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector  <neil.warrack@cern.ch>
 1644367 . Measurement of the production cross section of three isolated photons in $pp$ collisions at $\sqrt{s}$ = 8 TeV using the ATLAS detector
 1644618 ? Search for electroweak production of supersymmetric states in scenarios with compressed mass spectra at $\sqrt{s}=13$ TeV with the ATLAS detector
 1644899 ? Evidence for the associated production of the Higgs boson and a top quark pair with the ATLAS detector
 1644900 ? Search for the standard model Higgs boson produced in association with top quarks and decaying into a $b\bar{b}$ pair in $pp$ collisions at $\sqrt{s}$ = 13  TeV with the ATLAS detector
 1645627 . Measurement of the cross section for isolated-photon plus jet production in $pp$ collisions at $\sqrt s=13$ TeV using the ATLAS detector
 1646686 . Measurements of $t\bar{t}$ differential cross-sections of highly boosted top quarks decaying to all-hadronic final states in $pp$ collisions at $\sqrt{s}=13\,$ TeV using the ATLAS detector
 1649273 . Search for High-Mass Resonances Decaying to $\tau\nu$ in pp Collisions at $\sqrt{s}$=13  TeV with the ATLAS Detector
 1650152 . Search for $W' \rightarrow tb$ decays in the hadronic final state using pp collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1650592 . Search for light resonances decaying to boosted quark pairs and produced in association with a photon or a jet in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1653453 ? Search for a Structure in the $B^0_s \pi^\pm$ Invariant Mass Spectrum with the ATLAS Experiment
 1654357 ? Search for photonic signatures of gauge-mediated supersymmetry in 13 TeV $pp$ collisions with the ATLAS detector
 1654372 ? Search for Higgs boson decays to beyond-the-Standard-Model light bosons in four-lepton events with the ATLAS detector at $\sqrt{s}=13$ TeV
 1654582 ? Measurements of Higgs boson properties in the diphoton decay channel with 36 fb$^{-1}$ of $pp$ collision data at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1654814 ? Search for the Decay of the Higgs Boson to Charm Quarks with the ATLAS Experiment
 1656578 . Measurements of differential cross sections of top quark pair production in association with jets in ${pp}$ collisions at $\sqrt{s}=13$ TeV using the ATLAS detector
 1656834 X Performance of missing transverse momentum reconstruction with the ATLAS detector using proton-proton collisions at $\sqrt{s}$ = 13 TeV
 1658490 X Production and Integration of the ATLAS Insertable B-Layer
 1658902 ? Search for electroweak production of supersymmetric particles in final states with two or three leptons at $\sqrt{s}=13\,$TeV with the ATLAS detector
 1664317 ? Search for pair production of up-type vector-like quarks and for four-top-quark events in final states with multiple $b$-jets with the ATLAS detector
 1664332 ? Search for flavour-changing neutral current top-quark decays $t\to qZ$ in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1664486 ? Search for top squarks decaying to tau sleptons in $pp$ collisions at  $\sqrt{s}= 13$ TeV with the ATLAS detector
 1665234 ? Search for Higgs boson decays into pairs of light (pseudo)scalar particles in the $\gamma\gamma jj$ final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1665828 ? Search for a heavy Higgs boson decaying into a $Z$ boson and another heavy Higgs boson in the $\ell\ell bb$ final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1667040 ? Search for low-mass dijet resonances using trigger-level jets with the ATLAS detector in $pp$ collisions at $\sqrt{s}=13$ TeV
 1667045 ? Search for supersymmetry in events with four or more leptons in $\sqrt{s}=13$ TeV $pp$ collisions with ATLAS
 1667046 ? Search for R-parity-violating supersymmetric particles in multi-jet final states produced in $p$-$p$ collisions at $\sqrt{s} =13$ TeV using the ATLAS detector at the LHC
 1668124 ? Search for pair production of Higgs bosons in the $b\bar{b}b\bar{b}$ final state using proton-proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1670020 ? A search for lepton-flavor-violating decays of the $Z$ boson into a $\tau$-lepton and a light lepton with the ATLAS detector
 1670803 ? Search for heavy particles decaying into top-quark pairs using lepton-plus-jets events in proton–proton collisions at $\sqrt{s} = 13$   $\text {TeV}$ with the ATLAS detector
 1671810 ? Measurements of b-jet tagging efficiency with the ATLAS detector using $ t\overline{t} $ events at $ \sqrt{s}=13 $ TeV
 1672010 ? Search for heavy resonances decaying to a photon and a hadronically decaying $Z/W/H$ boson in $pp$ collisions at $\sqrt{s}=13$ $\mathrm{TeV}$ with the ATLAS detector
 1672099 ? Search for supersymmetry in final states with charm jets and missing transverse momentum in 13 TeV $pp$ collisions with the ATLAS detector
 1672147 ! Measurement of colour flow using jet-pull observables in $t\bar{t}$ events with the ATLAS experiment at $\sqrt{s} = 13\,\hbox {TeV}$
 1672469 ? Prompt and non-prompt $J/\psi $ and $\psi (2\mathrm {S})$ suppression at high transverse momentum in $5.02~\mathrm {TeV}$ Pb+Pb collisions with the ATLAS experiment
 1672475 ? Angular analysis of $B^0_d \rightarrow K^{*}\mu^+\mu^-$ decays in $pp$ collisions at $\sqrt{s}= 8$ TeV with the ATLAS detector
 1672883 ? Search for flavor-changing neutral currents in top quark decays $t\to Hc$ and $t \to Hu$ in multilepton final states in proton-proton collisions at $\sqrt{s}= 13$ TeV with the ATLAS detector
 1672957 ? Measurement of the suppression and azimuthal anisotropy of muons from heavy-flavor decays in Pb+Pb collisions at $\sqrt{s_{\mathrm{NN}}} = 2.76$ TeV with the ATLAS detector
 1672961 ! Measurement of dijet azimuthal decorrelations in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector and determination of the strong coupling
 1673177 ? Measurement of jet fragmentation in Pb+Pb and $pp$ collisions at $\sqrt{s_{NN}} = 5.02$ TeV with the ATLAS detector
 1673184 ? Measurement of the nuclear modification factor for inclusive jets in Pb+Pb collisions at $\sqrt{s_\mathrm{NN}}=5.02$ TeV with the ATLAS detector
 1674532 . Search for resonances in the mass distribution of jet pairs with one or two jets identified as $b$-jets in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1674946 ! Combined measurement of differential and total cross sections in the $H \rightarrow \gamma \gamma$ and the $H \rightarrow ZZ^* \rightarrow 4\ell$ decay channels at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1675352 . Search for new phenomena using the invariant mass distribution of same-flavour opposite-sign dilepton pairs in events with missing transverse momentum in $\sqrt{s}=13$   $\text {Te}\text {V}$ pp collisions with the ATLAS detector
 1676078 ? Measurement of the Higgs boson mass in the $H\rightarrow ZZ^* \rightarrow 4\ell$ and $H \rightarrow \gamma\gamma$ channels with $\sqrt{s}=13$ TeV $pp$ collisions using the ATLAS detector
 1676179 X Observation of Higgs boson production in association with a top quark pair at the LHC with the ATLAS detector
 1676472 . Search for resonant $WZ$ production in the fully leptonic final state in proton-proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1676481 . Search for pair production of heavy vector-like quarks decaying into high-$p_T$ $W$ bosons and top quarks in the lepton-plus-jets final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1676551 ! Search for chargino-neutralino production using recursive jigsaw reconstruction in final states with two or three charged leptons in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1676554 X Operation and performance of the ATLAS Tile Calorimeter in Run 1
 1677389 . Search for pair production of higgsinos in final states with at least three $b$-tagged jets in $\sqrt{s} = 13$ TeV $pp$ collisions using the ATLAS detector
 1677498 ! Probing the quantum interference between singly and doubly resonant top-quark production in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1678484 . Search for the Higgs boson produced in association with a vector boson and decaying into two spin-zero particles in the $H \rightarrow aa \rightarrow 4b$ channel in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1679217 X Observation of centrality-dependent acoplanarity for muon pairs produced via two-photon scattering in Pb+Pb collisions at $\sqrt{s_{\mathrm{NN}}}=5.02$ TeV with the ATLAS detector
 1679959 . Search for pair- and single-production of vector-like quarks in final states with at least one $Z$ boson decaying into a pair of electrons or muons in $pp$ collision data collected with the ATLAS detector at $\sqrt{s} = 13$ TeV
 1680457 . Search for Higgs boson decays into a pair of light bosons in the $bb\mu\mu$ final state in $pp$ collision at $\sqrt{s} = $13 TeV with the ATLAS detector
 1680462 . Searches for exclusive Higgs and $Z$ boson decays into $J/\psi\gamma$, $\psi(2S)\gamma$, and $\Upsilon(nS)\gamma$ at $\sqrt{s}=13$ TeV with the ATLAS detector
 1681154 ? Correlated long-range mixed-harmonic fluctuations measured in $pp$, $p$+Pb and low-multiplicity Pb+Pb collisions with the ATLAS detector
 1682295 . Prompt and non-prompt $J/\psi $ elliptic flow in Pb+Pb collisions at $\sqrt{s_{_\text {NN}}} = 5.02$ Tev with the ATLAS detector
 1682345 . Search for Higgs boson pair production in the $\gamma\gamma b\bar{b}$ final state with 13 TeV $pp$ collision data collected by the ATLAS experiment
 1682785 . Search for lepton-flavor violation in different-flavor, high-mass final states in $pp$ collisions at $\sqrt s=13 $ TeV with the ATLAS detector
 1683114 X A strategy for a general search for new phenomena using data-derived signal regions and its application within the ATLAS experiment
 1683331 . Search for charged Higgs bosons decaying via $H^{\pm} \to \tau^{\pm}\nu_{\tau}$ in the $\tau$+jets and $\tau$+lepton final states with 36 fb$^{-1}$ of $pp$ collision data recorded at $\sqrt{s} = 13$ TeV with the ATLAS experiment
 1683431 . Search for Higgs boson pair production in the $\gamma\gamma WW^{*}$ channel using $pp$ collision data recorded at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1683434 . Search for Higgs bosons produced via vector-boson fusion and decaying into bottom quark pairs in $\sqrt{s} = 13$ $\mathrm{TeV}$ $pp$ collisions with the ATLAS detector
 1683827 X In situ calibration of large-$R$ jet energy and mass in 13 TeV proton-proton collisions with the ATLAS detector
 1684216 . Search for vector-boson resonances decaying to a top quark and bottom quark in the lepton plus jets final state in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector
 1684341 . Search for dark matter in events with a hadronically decaying vector boson and missing transverse momentum in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1684489 . Search for new phenomena in events with same-charge leptons and $b$-jets in $pp$ collisions at $\sqrt{s}= 13$ TeV with the ATLAS detector
-1684645 ? Search for Resonant and Nonresonant Higgs Boson Pair Production in the ${b\bar{b}\tau^+\tau^-}$ Decay Channel in $pp$ Collisions at $\sqrt{s}=13$  TeV with the ATLAS Detector
+1684645 ? Search for resonant and non-resonant Higgs boson pair production in the ${b\bar{b}\tau^+\tau^-}$ decay channel in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1685058 X Constraints on off-shell Higgs boson production and the Higgs boson total width in $ZZ\to4\ell$ and $ZZ\to2\ell2\nu$ final states with the ATLAS detector
 1685207 . Search for pair production of heavy vector-like quarks decaying into hadronic final states in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1685418 . Search for doubly charged scalar bosons decaying into same-sign $W$ boson pairs with the ATLAS detector
-1685420 ? Combination of searches for heavy resonances decaying into bosonic and leptonic final states using 36 fb$^{-1}$ of proton-proton collision data at $\sqrt{s} = 13$ TeV with the ATLAS detector
+1685420 ? Combination of searches for heavy resonances decaying into bosonic and leptonic final states using 36  fb$^{-1}$ of proton-proton collision data at $\sqrt{s} = 13$ TeV with the ATLAS detector
 1685421 ? Combination of the searches for pair-produced vector-like partners of the third-generation quarks at $\sqrt{s} =$ 13 TeV with the ATLAS detector
 1685997 . Search for long-lived particles in final states with displaced dimuon vertices in $pp$ collisions at $\sqrt{s}=$ 13 TeV with the ATLAS detector
 1686365 . Search for charged Higgs bosons decaying into top and bottom quarks at $\sqrt{s}$ = 13 TeV with the ATLAS detector
 1686832 . Search for heavy charged long-lived particles in proton-proton collisions at $\sqrt{s} = 13$ TeV using an ionisation measurement with the \mbox{ATLAS} detector
-1686834 . Measurement of the azimuthal anisotropy of charged particles produced in $\sqrt{s_\mathrm{NN}} = 5.02$ TeV Pb+Pb collisions with the ATLAS detector
+1686834 . Measurement of the azimuthal anisotropy of charged particles produced in $\sqrt{s_{_\text {NN}}}$ = 5.02 TeV Pb+Pb collisions with the ATLAS detector
 1688943 . Search for squarks and gluinos in final states with hadronically decaying $\tau$-leptons, jets, and missing transverse momentum using $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector
 1690929 X Performance of top-quark and $W$-boson tagging with ATLAS in Run 2 of the LHC
 1691634 X Observation of $H \rightarrow b\bar{b}$ decays and $VH$ production with the ATLAS detector
 1691822 X Measurements of gluon-gluon fusion and vector-boson fusion Higgs boson production cross-sections in the $H \to WW^{\ast} \to e\nu\mu\nu$ decay channel in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1692387 . A search for pairs of highly collimated photon-jets in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector
 1694476 . Search for invisible Higgs boson decays in vector boson fusion at $\sqrt{s} = 13$ TeV with the ATLAS detector
-1694678 . Measurement of photon-jet transverse momentum correlations in 5.02 TeV Pb+Pb and $pp$ collisions with ATLAS
-1696330 X Search for heavy Majorana or Dirac neutrinos and right-handed $W$ gauge bosons in final states with two charged leptons and two jets at $\sqrt{s}$ = 13 TeV with the ATLAS detector
+1694678 . Measurement of photon–jet transverse momentum correlations in 5.02 TeV Pb + Pb and $pp$ collisions with ATLAS
+1696330 X Search for heavy Majorana or Dirac neutrinos and right-handed $W$ gauge bosons in final states with two charged leptons and two jets at $ \sqrt{s}=13 $ TeV with the ATLAS detector
 1696805 X Measurement of the top quark mass in the $t\bar{t}\to$ lepton+jets channel from $\sqrt{s}=8$ TeV ATLAS data and combination with previous results
 1697671 X Comparison between simulated and observed LHC beam backgrounds in the ATLAS experiment at ${E_{\textrm {beam}}}$ = 4 TeV
-1698006 ? Measurement of the $Z\gamma\rightarrow\nu\bar{\nu}\gamma$ production cross section in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector and limits on anomalous triple gauge-boson couplings
+1698006 ? Measurement of the $ Z\gamma \to \nu \overline{\nu}\gamma $ production cross section in pp collisions at $ \sqrt{s}=13 $ TeV with the ATLAS detector and limits on anomalous triple gauge-boson couplings
 1698025 X Measurement of the photon identification efficiencies with the ATLAS detector using LHC Run 2 data collected in 2015 and 2016
 1699375 ! Measurements of $W$ and $Z$ boson production in $pp$ collisions at $\sqrt{s}=5.02$ TeV with the ATLAS detector
-1702261 !  Search for the production of a long-lived neutral particle decaying within the ATLAS hadronic calorimeter in association with a $Z$ boson from $pp$ collisions at $\sqrt{s} = 13$ TeV
+1702261 ! Search for the production of a long-lived neutral particle decaying within the ATLAS hadronic calorimeter in association with a $Z$ boson from $pp$ collisions at $\sqrt{s} = 13$ TeV
 1702263 . Search for four-top-quark production in the single-lepton and opposite-sign dilepton final states in pp collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector
 1703139 . Search for Higgs boson pair production in the $b\bar{b}WW^{*}$ decay mode at $\sqrt{s}=13$ TeV with the ATLAS detector
 1704138 ! Search for long-lived particles produced in $pp$ collisions at $\sqrt{s}=13$ TeV that decay into displaced hadronic jets in the ATLAS muon spectrometer
 1704495 ? Cross-section measurements of the Higgs boson decaying into a pair of $\tau$-leptons in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
 1705395 . Study of the hard double-parton scattering contribution to inclusive four-lepton production in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector
 1705396 . Search for Higgs boson pair production in the $WW^{(*)}WW^{(*)}$ decay channel using ATLAS data recorded at $\sqrt{s}=13$ TeV
 1705857 ! Measurements of fiducial and differential cross-sections of $t\bar{t}$ production with additional heavy-flavour jets in proton-proton collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector
 1707015 ! Measurements of inclusive and differential fiducial cross-sections of $t\bar{t}\gamma$ production in leptonic final states at $\sqrt{s}$ = 13 TeV in ATLAS
+1707605 ? Study of the rare decays of $B^0_s$ and $B^0$ mesons into muon pairs using data collected during 2015 and 2016 with the ATLAS detector
+1707957 . Search for heavy long-lived multi-charged particles in proton-proton collisions at $\sqrt{s}$ = 13 TeV using the ATLAS detector
+1707967 X Electron and photon energy calibration with the ATLAS detector using 2015-2016 LHC proton-proton collision data
+1709842 . Search for single production of vector-like quarks decaying into $Wb$ in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
+1711114 ! Properties of $g\rightarrow b\bar{b}$ at small opening angles in $pp$ collisions with the ATLAS detector at $\sqrt{s}=13$ TeV
+1711223 ? Observation of electroweak $W^{\pm}Z$ boson pair production in association with two jets in $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS detector
+1711243 . Search for large missing transverse momentum in association with one top-quark in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
+1711261 . Search for chargino and neutralino production in final states with a Higgs boson and missing transverse momentum at $\sqrt{s} = 13$ TeV with the ATLAS detector
+1711770 . Search for top-quark decays $t \rightarrow Hq$ with 36 fb$^{-1}$ of $pp$ collision data at $\sqrt{s}=13$ TeV with the ATLAS detector
+1713423 . Measurement of the $t\bar{t}Z$ and $t\bar{t}W$ cross sections in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
+1716572 . Search for scalar resonances decaying into $\mu^{+}\mu^{-}$ in events with and without $b$-tagged jets produced in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector
+1717481 . Dijet azimuthal correlations and conditional yields in $pp$ and $p$+Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV with the ATLAS detector
+1717495 ! Measurement of the ratio of cross sections for inclusive isolated-photon production in $pp$ collisions at $\sqrt s = 13$ and $8$ TeV with the ATLAS detector
+1717700 . Search for low-mass resonances decaying into two jets and produced in association with a photon using $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector
+1718132 . Searches for scalar leptoquarks and differential cross-section measurements in dilepton-dijet events in proton-proton collisions at a centre-of-mass energy of $\sqrt{s}$ = 13 TeV with the ATLAS experiment
+1718558 . Search for heavy charged long-lived particles in the ATLAS detector in 31.6 fb$^{-1}$ of proton-proton collision data at $\sqrt{s} = 13$ TeV
+1719200 . Search for long-lived neutral particles in $pp$ collisions at $\sqrt{s}$ = 13 TeV that decay into displaced hadronic jets in the ATLAS calorimeter
+1720078 X Electron reconstruction and identification in the ATLAS experiment using the 2015 and 2016 LHC proton-proton collision data at $\sqrt{s}$ = 13 TeV
diff --git a/doc/rivet-coverage-cms.rank b/doc/rivet-coverage-cms.rank
--- a/doc/rivet-coverage-cms.rank
+++ b/doc/rivet-coverage-cms.rank
@@ -1,848 +1,921 @@
-845323 ! Transverse momentum and pseudorapidity distributions of charged hadrons in pp collisions at $\sqrt{s} = 0.9$ and 2.36 TeV
-855299 ! Transverse-momentum and pseudorapidity distributions of charged hadrons in $pp$ collisions at $\sqrt{s}=7$ TeV
+341521 X CMS: The Compact Muon Solenoid: Letter of intent for a general purpose detector at the LHC
+689016 X The effect of highly ionising particles on the CMS silicon strip tracker
+701526 X The CMS high level trigger
+716207 X Results of the first performance tests of the CMS electromagnetic calorimeter
+754149 X CMS physics technical design report: Addendum on high density QCD with heavy ions
+754150 X CMS expression of interest in the SLHC
+760533 X Synchronization and timing in CMS HCAL
+765060 X CMS technical design report, volume II: Physics performance
+785992 X Design, performance, and calibration of CMS hadron endcap calorimeters
+790370 X Design, performance, and calibration of CMS hadron-barrel calorimeter wedges
+796887 X The CMS Experiment at the CERN LHC
+802051 X Design, performance, and calibration of the CMS Hadron-outer calorimeter
+802057 X Intercalibration of the barrel electromagnetic calorimeter of the CMS experiment at start-up
+811949 X Performance studies of the CMS Strip Tracker before installation
+813070 X Stand-alone Cosmic Muon Reconstruction Before Installation of the CMS Silicon Strip Tracker
+817524 X Alignment of the CMS Silicon Strip Tracker during stand-alone Commissioning
+833863 X Alignment of the CMS Silicon Tracker during Commissioning with Cosmic Rays
+834354 X Performance and Operation of the CMS Electromagnetic Calorimeter
+835485 X Precise Mapping of the Magnetic Field in the CMS Barrel Yoke using Cosmic Rays
+837447 X Alignment of the CMS Muon System with Cosmic-Ray and Beam-Halo Muons
+837451 X Time Reconstruction and Performance of the CMS Electromagnetic Calorimeter
+837452 X Performance Study of the CMS Barrel Resistive Plate Chambers with Cosmic Rays
+837837 X Aligning the CMS Muon Chambers with the Muon Alignment System during an Extended Cosmic Ray Run
+837867 X CMS Data Processing Workflows during an Extended Cosmic Ray Run
+837869 X Commissioning of the CMS Experiment and the Cosmic Run at Four Tesla
+837874 X Performance of the CMS Drift Tube Chambers with Cosmic Rays
+837888 X Performance of CMS Hadron Calorimeter Timing and Synchronization using Test Beam, Cosmic Ray, and LHC Beam Data
+837890 X Identification and Filtering of Uncharacteristic Noise in the CMS Hadron Calorimeter
+837894 X Commissioning of the CMS High-Level Trigger with Cosmic Rays
+837898 X Performance of the CMS Drift-Tube Local Trigger with Cosmic Rays
+837899 X Calibration of the CMS Drift Tube Chambers and Measurement of the Drift Velocity with Cosmic Rays
+837903 X Fine Synchronization of the CMS Muon Drift-Tube Local Trigger using Cosmic Rays
+838158 X Performance of the CMS Hadron Calorimeter with Cosmic Ray Muons and LHC Beam Data
+838159 X Performance of the CMS Cathode Strip Chambers with Cosmic Rays
+838160 X Performance of CMS Muon Reconstruction in Cosmic-Ray Events
+838162 X Commissioning and Performance of the CMS Silicon Strip Tracker with Cosmic Ray Muons
+838341 X Measurement of the Muon Stopping Power in Lead Tungstate
+838349 X Performance of the CMS Level-1 Trigger during Commissioning with Cosmic Ray Muons
+838354 X Commissioning and Performance of the CMS Pixel Tracker with Cosmic Ray Muons
+840945 X Radiation hardness qualification of PbWO(4) scintillation crystals for the CMS Electromagnetic Calorimeter
+845323 . Transverse momentum and pseudorapidity distributions of charged hadrons in pp collisions at $\sqrt{s} = 0.9$ and 2.36 TeV
+855299 . Transverse-momentum and pseudorapidity distributions of charged hadrons in $pp$ collisions at $\sqrt{s}=7$ TeV
 855303 ? First Measurement of Bose-Einstein Correlations in proton-proton Collisions at $\sqrt{s}$ =0.9 and 2.36 TeV at the LHC
 856534 X Measurement of the charge ratio of atmospheric muons with the CMS detector
 857644 ! First Measurement of the Underlying Event Activity at the LHC with $\sqrt{s} = 0.9$ TeV
 861153 X CMS Tracking Performance Results from early LHC Operation
 870473 ! Observation of Long-Range Near-Side Angular Correlations in Proton-Proton Collisions at the LHC
 871540 ? Search for Dijet Resonances in 7 TeV pp Collisions at CMS
 873627 ? Search for Quark Compositeness with the Dijet Centrality Ratio in $pp$ Collisions at $\sqrt{s}=7$ TeV
 874738 ? First Measurement of the Cross Section for Top-Quark Pair Production in Proton-Proton Collisions at $\sqrt{s}=7$ TeV
+875955 X Performance Testing of the CMS Cathode Strip Chambers
+875959 X Track Reconstruction with Cosmic Ray Data at the Tracker Integration Facility
+875975 X Study of Various Photomultiplier Tubes with Muon Beams And Cerenkov Light Produced in Electron Showers
+875985 X Energy Response and Longitudinal Shower Profiles Measured in CMS HCAL and Comparison With Geant4
+875992 X Prospects for Diffractive and Forward Physics at the LHC
 878118 . Prompt and non-prompt $J/\psi$ production in $pp$ collisions at $\sqrt{s}=7$ TeV
 879277 ? Search for Stopped Gluinos in $pp$ collisions at $\sqrt{s}=7$ TeV
 879315 . Charged particle multiplicities in $pp$ interactions at $\sqrt{s}=0.9$, 2.36, and 7 TeV
 879403 . Measurement of the Isolated Prompt Photon Production Cross Section in $pp$ Collisions at $\sqrt{s} = 7$~TeV
 881087 . Measurements of Inclusive $W$ and $Z$ Cross Sections in $pp$ Collisions at $\sqrt{s}=7$ TeV
 881434 ? Search for Microscopic Black Hole Signatures at the Large Hadron Collider
 881885 ? Search for Pair Production of Second-Generation Scalar Leptoquarks in $pp$ Collisions at $\sqrt{s}=7$ TeV
 881886 ? Search for Pair Production of First-Generation Scalar Leptoquarks in $pp$ Collisions at $\sqrt{s}=7$ TeV
 882871 ? Upsilon Production Cross-Section in pp Collisions at $sqrt{s}=7$ TeV
 882963 ? Search for a heavy gauge boson $W$ ' in the final state with an electron and large missing transverse energy in $pp$ collisions at $\sqrt{s}=7$ TeV
 883318 ? Measurement of the $B^+$ Production Cross Section in pp Collisions at $\sqrt{s} = 7$~TeV
 883765 ? Search for Heavy Stable Charged Particles in $pp$ collisions at $\sqrt{s}=7$ TeV
 883771 ? Search for Supersymmetry in pp Collisions at 7 TeV in Events with Jets and Missing Transverse Energy
 884808 . Measurement of Bose-Einstein Correlations in $pp$ Collisions at $\sqrt{s}=0.9$ and 7 TeV
-884811 ? Inclusive b-hadron production cross section with muons in $pp$ collisions at $\sqrt{s} = 7$ TeV
+884811 . Inclusive b-hadron production cross section with muons in $pp$ collisions at $\sqrt{s} = 7$ TeV
 885663 . Dijet Azimuthal Decorrelations in $pp$ Collisions at $\sqrt{s} = 7$~TeV
 886332 . First Measurement of Hadronic Event Shapes in $pp$ Collisions at $\sqrt {s}=7$ TeV
 889010 ! Observation and studies of jet quenching in PbPb collisions at nucleon-nucleon center-of-mass energy = 2.76 TeV
 889175 . Measurement of Dijet Angular Distributions and Search for Quark Compositeness in pp Collisions at $sqrt{s} = 7$ TeV
 889807 . Measurement of $B\bar{B}$ Angular Correlations based on Secondary Vertex Reconstruction at $\sqrt{s}=7$ TeV
 890166 . Strange Particle Production in $pp$ Collisions at $\sqrt{s}=0.9$ and 7 TeV
 890505 ? Search for a Heavy Bottom-like Quark in $pp$ Collisions at $\sqrt{s} = 7$ TeV
 890909 ? Study of Z boson production in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV
 890910 ? Measurement of $W^+ W^-$ production and search for the Higgs boson in pp collisions at $\sqrt s=7$ TeV
 891040 ? Search for a $W^\prime$ boson decaying to a muon and a neutrino in $pp$ collisions at $\sqrt{s} = 7$ TeV
 891470 ? Search for Resonances in the Dilepton Mass Distribution in $pp$ Collisions at $\sqrt(s) = 7$ TeV
 891482 ? Search for Supersymmetry in $pp$ Collisions at $\sqrt{s} = 7$ TeV in Events with Two Photons and Missing Transverse Energy
 891814 ? Search for Physics Beyond the Standard Model in Opposite-Sign Dilepton Events at $\sqrt{s} = 7$ TeV
 892975 . Measurement of the lepton charge asymmetry in inclusive $W$ production in pp collisions at $\sqrt{s} = 7$ TeV
 893512 ? Search for Large Extra Dimensions in the Diphoton Final State at the Large Hadron Collider
 895579 ? Search for Neutral MSSM Higgs Bosons Decaying to Tau Pairs in $pp$ Collisions at $\sqrt{s}=7$ TeV
 895581 ? Measurement of the Inclusive Z Cross Section via Decays to Tau Pairs in $pp$ Collisions at $\sqrt{s}=7$ TeV
 895742 ! Measurement of the differential dijet production cross section in proton-proton collisions at $\sqrt{s}=7$ TeV
 896211 ? Measurement of the $B^0$ production cross section in $pp$ Collisions at $\sqrt{s}=7$ TeV
 896527 ? Search for new physics with same-sign isolated dilepton events with jets and missing transverse energy at the LHC
 896585 . Measurement of the Polarization of W Bosons with Large Transverse Momenta in W+Jets Events at the LHC
 896764 X Charged particle transverse momentum spectra in $pp$ collisions at $\sqrt{s} = 0.9$ and 7 TeV
 899324 . Long-range and short-range dihadron angular correlations in central PbPb collisions at a nucleon-nucleon center of mass energy of 2.76 TeV
 899577 . Measurement of $W\gamma$ and $Z\gamma$ production in $pp$ collisions at $\sqrt{s} = 7$ TeV
 900114 . Search for supersymmetry in events with a lepton, a photon, and large missing transverse energy in $pp$ collisions at $\sqrt{s}=7$ TeV
 901277 . Indications of suppression of excited $\Upsilon$ states in PbPb collisions at $\sqrt{S_{NN}}$ = 2.76 TeV
 901401 . Search for First Generation Scalar Leptoquarks in the e$\nu$jj channel in $pp$ collisions at $\sqrt{s}=$ 7 TeV
 901829 . Measurement of the $t\bar{t}$ production cross section and the top quark mass in the dilepton channel in $pp$ collisions at $\sqrt{s}=7$ TeV
 902309 . Measurement of the Inclusive Jet Cross Section in $pp$ Collisions at $\sqrt{s}=7$ TeV
 912560 . Measurement of the ratio of the 3-jet to 2-jet cross sections in $pp$ collisions at $\sqrt{s} = 7$ TeV
 912697 . Search for physics beyond the standard model using multilepton signatures in $pp$ collisions at $\sqrt{s}=$ 7 TeV
 912706 . Measurement of the Top-antitop Production Cross Section in $pp$ Collisions at $\sqrt{s}=7$ TeV using the Kinematic Properties of Events with Leptons and Jets
 913321 . Search for Same-Sign Top-Quark Pair Production at $\sqrt{s}=7$ TeV and Limits on Flavour Changing Neutral Currents in the Top Sector
 913455 ? Search for Light Resonances Decaying into Pairs of Muons as a Signal of New Physics
 913689 . Measurement of the $t$-channel single top quark production cross section in $pp$ collisions at $\sqrt{s}=7$ TeV
 913831 . Search for Supersymmetry in Events with b Jets and Missing Transverse Momentum at the LHC
 914325 ? Measurement of the Strange $B$ Meson Production Cross Section with J/Psi $\phi$ Decays in $pp$ Collisions at $\sqrt{s}=7$ TeV
 914487 . Search for New Physics with Jets and Missing Transverse Momentum in $pp$ collisions at $\sqrt{s}=7$ TeV
 914953 . Search for New Physics with a Mono-Jet and Missing Transverse Energy in $pp$ Collisions at $\sqrt{s} = 7$ TeV
 915810 X Missing transverse energy performance of the CMS detector
 916908 . Measurement of the Underlying Event Activity at the LHC with $\sqrt{s}= 7$ TeV and Comparison with $\sqrt{s} = 0.9$ TeV
 917436 ? Inclusive search for squarks and gluinos in $pp$ collisions at $\sqrt{s}=7$ TeV
 917583 . A search for excited leptons in $pp$ Collisions at $\sqrt{s}=$ 7 TeV
 917588 . Search for supersymmetry in $pp$ collisions at $\sqrt{s}=7$ TeV in events with a single lepton, jets, and missing transverse momentum
 918745 . Search for Three-Jet Resonances in $pp$ Collisions at $\sqrt{s}=7$ TeV
 919443 X Determination of Jet Energy Calibration and Transverse Momentum Resolution in CMS
 919733 . Dependence on pseudorapidity and centrality of charged hadron production in PbPb collisions at a nucleon-nucleon centre-of-mass energy of 2.76 TeV
 919737 ? Measurement of the Inclusive $W$ and $Z$ Production Cross Sections in $pp$ Collisions at $\sqrt{s}=7$ TeV
 919742 ? Search for Resonances in the Dijet Mass Spectrum from 7 TeV pp Collisions at CMS
 921468 ? Search for B(s) and B to dimuon decays in pp collisions at 7 TeV
 921788 . Measurement of the Drell-Yan Cross Section in $pp$ Collisions at $\sqrt{s}=7$ TeV
 922830 ! Measurement of the Differential Cross Section for Isolated Prompt Photon Production in pp Collisions at 7 TeV
 924377 . Measurement of the $t \bar{t}$ Production Cross Section in $pp$ Collisions at 7 TeV in Lepton + Jets Events Using $b$-quark Jet Identification
 927049 ? Search for Supersymmetry at the LHC in Events with Jets and Missing Transverse Energy
 928282 . Search for a Vector-like Quark with Charge 2/3 in $t$ + $Z$ Events from $pp$ Collisions at $\sqrt{s}=7$ TeV
 929904 X Performance of tau-lepton reconstruction and identification in CMS
 930318 . Forward Energy Flow, Central Charged-Particle Multiplicities, and Pseudorapidity Gaps in W and Z Boson Events from pp Collisions at $\sqrt{s}$ = 7 TeV
 930319 . Measurement of energy flow at large pseudorapidities in $pp$ collisions at $\sqrt{s} = 0.9$ and 7 TeV
 939559 X Measurement of the weak mixing angle with the Drell-Yan process in proton-proton collisions at the LHC
 940012 X Jet Production Rates in Association with $W$ and $Z$ Bosons in $pp$ Collisions at $\sqrt{s}=7$ TeV
 941555 . Measurement of the Rapidity and Transverse Momentum Distributions of $Z$ Bosons in $pp$ Collisions at $\sqrt{s}=7$ TeV
 943720 . Measurement of the Production Cross Section for Pairs of Isolated Photons in $pp$ collisions at $\sqrt{s}=7$ TeV
 944755 . $J/\psi$ and $\psi_{2S}$ production in $pp$ collisions at $\sqrt{s}=7$ TeV
 954992 . Exclusive photon-photon production of muon pairs in proton-proton collisions at $\sqrt{s}=7$ TeV
 1079910 ? Search for signatures of extra dimensions in the diphoton mass spectrum at the Large Hadron Collider
 1082456 . Measurement of the charge asymmetry in top-quark pair production in proton-proton collisions at $\sqrt{s}=7$ TeV
 1084729 . Measurement of isolated photon production in $pp$ and PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1084730 . Centrality dependence of dihadron correlations and azimuthal anisotropy harmonics in PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1085651 ? Suppression of non-prompt $J/\psi$, prompt $J/\psi$, and Y(1S) in PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1087342 . Measurement of the inclusive production cross sections for forward jets and for dijet events with one forward and one central jet in $pp$ collisions at $\sqrt{s}=7$ TeV
 1088226 . Search for a Higgs boson in the decay channel $H$ to ZZ(*) to $q$ qbar $\ell^-$ l+ in $pp$ collisions at $\sqrt{s}=7$ TeV
 1088230 . Search for the standard model Higgs boson decaying into two photons in $pp$ collisions at $\sqrt{s}=7$ TeV
 1088231 . Combined results of searches for the standard model Higgs boson in $pp$ collisions at $\sqrt{s}=7$ TeV
 1088232 . Search for the standard model Higgs boson decaying to $W^+W^−$ in the fully leptonic final state in pp collisions at $\sqrt{s}=7$ TeV
 1088604 . Search for the standard model Higgs boson in the decay channel $H$ to $Z Z$ to 4 leptons in $pp$ collisions at $\sqrt{s}=7$ TeV
 1088823 . Study of high-pT charged particle suppression in PbPb compared to $pp$ collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1089288 . Search for the standard model Higgs boson in the $H$ to $Z Z$ to $\ell \ell \tau \tau$ decay channel in $pp$ collisions at $\sqrt{s}=7$ TeV
 1089334 . Search for the standard model Higgs boson in the $H$ to $Z Z$ to 2 $\ell 2 \nu$ channel in $pp$ collisions at $\sqrt{s}=7$ TeV
 1089399 . Search for large extra dimensions in dimuon and dielectron events in pp collisions at $\sqrt{s} = 7$ TeV
 1089661 . Search for neutral Higgs bosons decaying to tau pairs in $pp$ collisions at $\sqrt{s}=7$ TeV
 1089700 . Search for the standard model Higgs boson decaying to bottom quarks in $pp$ collisions at $\sqrt{s}=7$ TeV
 1089835 . Inclusive $b$-jet production in $pp$ collisions at $\sqrt{s}=7$ TeV
 1090064 . Jet momentum dependence of jet quenching in PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1090423 . Search for quark compositeness in dijet angular distributions from $pp$ collisions at $\sqrt{s}=7$ TeV
 1091050 . Search for microscopic black holes in $pp$ collisions at $\sqrt{s}=7$ TeV
 1093951 . Measurement of the cross section for production of $b b^-$ bar $X$, decaying to muons in $pp$ collisions at $\sqrt{s}=7$ TeV
 1094164 . Search for $B^0_s \to \mu^+ \mu^-$ and $B^0 \to \mu^+ \mu^-$ decays
 1094855 ? Search for heavy, top-like quark pair production in the dilepton final state in $pp$ collisions at $\sqrt{s} = 7$ TeV
 1095503 . Measurement of the top quark pair production cross section in $pp$ collisions at $\sqrt{s} = 7$ TeV in dilepton final states containing a $\tau$
 1102908 . Ratios of dijet production cross sections as a function of the absolute difference in rapidity between jets in proton-proton collisions at $\sqrt{s}=7$ TeV
 1103032 . Search for Dark Matter and Large Extra Dimensions in pp Collisions Yielding a Photon and Missing Transverse Energy
 1104744 . Search for heavy bottom-like quarks in 4.9 inverse femtobarns of $pp$ collisions at $\sqrt{s}=7$ TeV
 1107658 . Measurement of the underlying event in the Drell-Yan process in proton-proton collisions at $\sqrt{s}=7$ TeV
 1107659 . Measurement of the elliptic anisotropy of charged particles produced in PbPb collisions at $\sqrt{s}_{NN}$=2.76 TeV
 1107730 . Measurement of the Z/$\gamma$*+b-jet cross section in pp collisions at $\sqrt{s}$ = 7 TeV
 1107735 . Azimuthal anisotropy of charged particles at high transverse momenta in PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1108144 . Search for Anomalous $t\bar{t}$ Production in the Highly-Boosted All-Hadronic Final State
 1110691 X Measurement of the mass difference between top and antitop quarks
 1111014 . Shape, Transverse Size, and Charged Hadron Multiplicity of Jets in pp Collisions at 7 TeV
 1111141 . Search for physics beyond the standard model in events with a $Z$ boson, jets, and missing transverse energy in $pp$ collisions at $\sqrt{s}=7$ TeV
 1111995 . Search for leptonic decays of $W$ ' bosons in $pp$ collisions at $\sqrt{s}=7$ TeV
 1112169 . Search for anomalous production of multilepton events in $pp$ collisions at $\sqrt{s}=7$ TeV
 1112562 X Observation of a new Xi(b) baryon
 1112986 . Studies of jet quenching using isolated-photon+jet correlations in PbPb and $pp$ collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1113310 . Search for heavy long-lived charged particles in $pp$ collisions at $\sqrt{s}=7$ TeV
 1113442 . Measurement of the $\Lambda_b$ cross section and the $_{\bar{\Lambda}_b}$ to $\Lambda_b$ ratio with $J/\Psi \Lambda$ decays in $pp$ collisions at $\sqrt{s}=7$ TeV
 1114315 . Measurement of the pseudorapidity and centrality dependence of the transverse energy density in PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1115185 . Search for new physics in events with same-sign dileptons and $b$-tagged jets in $pp$ collisions at $\sqrt{s}=7$ TeV
 1116149 . Search for a light charged Higgs boson in top quark decays in $pp$ collisions at $\sqrt{s}=7$ TeV
 1116250 . Measurement of jet fragmentation into charged particles in $pp$ and PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1116412 . Study of $W$ boson production in PbPb and $pp$ collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1116526 . Search for new physics with same-sign isolated dilepton events with jets and missing transverse energy
 1117012 . Search for a $W^\prime$ or Techni-$\rho$ Decaying into $WZ$ in $pp$ Collisions at $\sqrt{s}=7$ TeV
 1117702 . Search for high-mass resonances decaying into τ -lepton pairs in pp collisions at $\sqrt{s}=7$ TeV
 1117706 . Search for narrow resonances in dilepton mass spectra in $pp$ collisions at $\sqrt{s}=7$ TeV
 1118047 . Measurement of the electron charge asymmetry in inclusive $W$ production in $pp$ collisions at $\sqrt{s}=7$ TeV
 1118577 . Search for charge-asymmetric production of W$′$ bosons in $t\bar{t} +$ jet events from pp collisions at $\sqrt{s} =$ 7 TeV
 1118578 . Search for new physics in events with opposite-sign leptons, jets, and missing transverse energy in $pp$ collisions at $\sqrt{s}=7$ TeV
 1118729 X Performance of CMS muon reconstruction in $pp$ collision events at $\sqrt{s}=7$ TeV
 1119567 . Search for dark matter and large extra dimensions in monojet events in $pp$ collisions at $\sqrt{s}=7$ TeV
 1120142 . Search for a light pseudoscalar Higgs boson in the dimuon decay channel in $pp$ collisions at $\sqrt{s}=7$ TeV
 1120732 ! Inclusive and differential measurements of the $t \bar{t}$ charge asymmetry in proton-proton collisions at $\sqrt{s} =$ 7 TeV
 1120733 ? Search for stopped long-lived particles produced in $pp$ collisions at $\sqrt{s}=7$ TeV
 1120997 . Search for new physics with long-lived particles decaying to photons and missing energy in $pp$ collisions at $\sqrt{s}=7$ TeV
 1121375 . Search for a fermiophobic Higgs boson in $pp$ collisions at $\sqrt{s}=7$ TeV
 1121700 . Search for supersymmetry in hadronic final states using MT2 in $pp$ collisions at $\sqrt{s} = 7$ TeV
 1121703 . Search for new physics in the multijet and missing transverse momentum final state in proton-proton collisions at $\sqrt{s} = 7$ TeV
 1121876 ! Measurement of the underlying event activity in $pp$ collisions at $\sqrt{s} = 0.9$ and 7 TeV with the novel jet-area/median approach
 1122035 . A search for a doubly-charged Higgs boson in $pp$ collisions at $\sqrt{s}=7$ TeV
 1122847 . Forward-backward asymmetry of Drell-Yan lepton pairs in $pp$ collisions at $\sqrt{s} = 7$ TeV
 1123117 . Study of the inclusive production of charged pions, kaons, and protons in $pp$ collisions at $\sqrt{s}=0.9$, 2.76, and 7 TeV
 1123507 . Search for pair production of first- and second-generation scalar leptoquarks in $pp$ collisions at $\sqrt{s}= 7$ TeV
 1123803 . Search for heavy Majorana neutrinos in $\mu^{\pm}\mu^{\pm} +$ jets and $e^{\pm}e^{\pm} +$ jets events in pp collisions at $\sqrt{s} =$ 7 TeV
 1124338 X Observation of a new boson at a mass of 125 GeV with the CMS experiment at the LHC
 1125962 . Search for a $W$ ' boson decaying to a bottom quark and a top quark in $pp$ collisions at $\sqrt{s}=7$ TeV
 1125963 . Search for flavor changing neutral currents in top quark decays in pp collisions at 7 TeV
 1127329 . Measurement of the azimuthal anisotropy of neutral pions in PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV
 1127335 . Measurement of the $t\bar{t}$ production cross section in the dilepton channel in $pp$ collisions at $\sqrt{s}=7$ TeV
 1127501 . Observation of sequential Upsilon suppression in PbPb collisions
 1127510 . Search for three-jet resonances in $pp$ collisions at $\sqrt{s}=7$ TeV
 1128019 . Study of the dijet mass spectrum in $pp \to W +$ jets events at $\sqrt{s}=7$ TeV
 1181767 . Search for supersymmetry in events with b-quark jets and missing transverse energy in pp collisions at 7 TeV
 1184341 X Search for pair produced fourth-generation up-type quarks in $pp$ collisions at $\sqrt{s}=7$ TeV with a lepton in the final state
 1184487 . Combined search for the quarks of a sequential fourth generation
 1184938 . Search for exclusive or semi-exclusive photon pair production and observation of exclusive and semi-exclusive electron pair production in $pp$ collisions at $\sqrt{s}=7$ TeV
-1184941 ? Observation of a diffractive contribution to dijet production in proton-proton collisions at $\sqrt{s}=7$ TeV
+1184941 . Observation of a diffractive contribution to dijet production in proton-proton collisions at $\sqrt{s}=7$ TeV
 1185101 X Measurement of the top-quark mass in $t\bar{t}$ events with lepton+jets final states in $pp$ collisions at $\sqrt{s}=7$ TeV
 1185104 X Measurement of the top-quark mass in $t\bar{t}$ events with dilepton final states in $pp$ collisions at $\sqrt{s}=7$ TeV
 1185414 . Measurement of the $Y(1S), Y(2S)$ and $Y(3S)$ polarizations in $pp$ collisions at $\sqrt{s}=7$ TeV
 1185781 . Evidence for associated production of a single top quark and W boson in $pp$ collisions at $\sqrt{s}$ = 7 TeV
 1186381 . Search for a narrow spin-2 resonance decaying to a pair of Z vector bosons in the semileptonic final state
 1186385 . Search for the standard model Higgs boson produced in association with $W$ and $Z$ bosons in $pp$ collisions at $\sqrt{s}=7$ TeV
 1186730 . Search for resonant $t\bar{t}$ production in lepton+jets events in $pp$ collisions at $\sqrt{s}=7$ TeV
 1186734 . Measurement of the single-top-quark $t$-channel cross section in $pp$ collisions at $\sqrt{s}=7$ TeV
 1188683 . Search for electroweak production of charginos and neutralinos using leptonic final states in $pp$ collisions at $\sqrt{s}=7$ TeV
 1189049 . Search for anomalous production of highly boosted $Z$ bosons decaying to $\mu^+ \mu^-$ in proton-proton collisions at $\sqrt{s}=7$ TeV
 1189050 . Measurement of the relative prompt production rate of chi(c2) and chi(c1) in $pp$ collisions at $\sqrt{s}=7$ TeV
 1189663 . Search for heavy lepton partners of neutrinos in proton-proton collisions in the context of the type III seesaw mechanism
 1189815 X Search for supersymmetry in events with photons and low missing transverse energy in $pp$ collisions at $\sqrt{s}=7$ TeV
 1189819 X Search for fractionally charged particles in $pp$ collisions at $\sqrt{s}=7$ TeV
 1189823 X Search for narrow resonances and quantum black holes in inclusive and $b$-tagged dijet mass spectra from $pp$ collisions at $\sqrt{s}=7$ TeV
 1189986 . Search for heavy neutrinos and W[R] bosons with right-handed couplings in a left-right symmetric model in pp collisions at sqrt(s) = 7 TeV
 1189987 . Search for excited leptons in $pp$ collisions at $\sqrt{s}=7$ TeV
 1190671 . Observation of Z decays to four leptons with the CMS detector at the LHC
 1191899 . Observation of long-range near-side angular correlations in proton-lead collisions at the LHC
 1192033 . Search for third-generation leptoquarks and scalar bottom quarks in $pp$ collisions at $\sqrt{s}=7$ TeV
 1192034 . Search for pair production of third-generation leptoquarks and top squarks in $pp$ collisions at $\sqrt{s}=7$ TeV
 1193338 . Measurement of the inelastic proton-proton cross section at $\sqrt{s}=7$ TeV
 1193934 . Search for heavy quarks decaying into a top quark and a $W$ or $Z$ boson using lepton + jets events in $pp$ collisions at $\sqrt{s}$ = 7 TeV
 1193935 . Measurement of the sum of $W W$ and $WZ$ production with $W+$dijet events in $pp$ collisions at $\sqrt{s}=7$ TeV
 1193937 . Search for a non-standard-model Higgs boson decaying to a pair of new light bosons in four-muon final states
 1194120 . Search for supersymmetry in final states with missing transverse energy and 0, 1, 2, or at least 3 b-quark jets in 7 TeV pp collisions using the variable alphaT
 1201946 ! Measurement of differential top-quark pair production cross sections in $pp$ colisions at $\sqrt{s}=7$ TeV
 1202275 X Search in leptonic channels for heavy resonances decaying to long-lived neutral particles
 1202674 X Search for supersymmetry in final states with a single lepton, $b$-quark jets, and missing transverse energy in proton-proton collisions at $\sqrt{s}=7$ TeV
 1202680 X Search for $Z$ ' resonances decaying to $t\bar{t}$ in dilepton+jets final states in $pp$ collisions at $\sqrt{s}=7$ TeV
 1203133 X Identification of b-quark jets with the CMS experiment
 1203307 X Search for new physics in events with photons, jets, and missing transverse energy in $pp$ collisions at $\sqrt{s}=7$ TeV
 1203454 ? Measurement of the $ZZ$ production cross section and search for anomalous couplings in 2 l2l ' final states in $pp$ collisions at $\sqrt{s}=7$ TeV
 1203843 X Search for exotic resonances decaying into $WZ/ZZ$ in $pp$ collisions at $\sqrt{s}=7$ TeV
 1206603 . Search for long-lived particles decaying to photons and missing energy in proton-proton collisions at $\sqrt{s}=7$ TeV
 1206606 . Search for heavy resonances in the W/Z-tagged dijet mass spectrum in pp collisions at 7 TeV
 1208097 X Search for contact interactions in $\mu^+\mu^-$ events in $pp$ collisions at $\sqrt{s}=7$ TeV
 1208702 X Search for heavy narrow dilepton resonances in $pp$ collisions at $\sqrt{s}=7$ TeV and $\sqrt{s}=8$ TeV
 1208703 X Search for new physics in events with same-sign dileptons and $b$ jets in $pp$ collisions at $\sqrt{s}=8$ TeV
 1208812 X Inclusive search for supersymmetry using the razor variables in $pp$ collisions at $\sqrt{s}=7$ TeV
 1208913 . Measurement of the $t\bar{t}$ production cross section in $pp$ collisions at $\sqrt{s}=7$ TeV with lepton + jets final states
 1208923 . Measurements of differential jet cross sections in proton-proton collisions at $\sqrt{s}=7$ TeV with the CMS detector
 1208931 X Study of the Mass and Spin-Parity of the Higgs Boson Candidate Via Its Decays to Z Boson Pairs
 1208988 X Search for supersymmetry in $pp$ collisions at $\sqrt{s}=7$ TeV in events with a single lepton, jets, and missing transverse momentum
 1209556 X Search for supersymmetry in events with opposite-sign dileptons and missing transverse energy using an artificial neural network
 1209721 . Event shapes and azimuthal correlations in $Z$ + jets events in $pp$ collisions at $\sqrt{s}=7$ TeV
 1210032 X Interpretation of Searches for Supersymmetry with simplified Models
 1211187 X Search for physics beyond the standard model in events with $\tau$ leptons, jets, and large transverse momentum imbalance in pp collisions at $\sqrt{s}$ = 7 TeV
 1215317 . Measurement of W+W- and ZZ production cross sections in pp collisions at sqrt(s) = 8 TeV
 1215599 X Search for contact interactions using the inclusive jet $p_T$ spectrum in $pp$ collisions at $\sqrt{s} = 7$ TeV
 1216035 . Measurement of the top-antitop production cross section in the tau+jets channel in pp collisions at sqrt(s) = 7 TeV
 1217551 . Measurement of the $t\bar{t}$ production cross section in the all-jet final state in pp collisions at $\sqrt{s}$ = 7 TeV
 1217552 X Search for pair-produced dijet resonances in four-jet final states in pp collisions at $\sqrt{s}$=7  TeV
 1218021 X Searches for Higgs bosons in pp collisions at sqrt(s) = 7 and 8 TeV in the context of four-generation and fermiophobic models
 1218372 . Study of the underlying event at forward rapidity in pp collisions at $\sqrt{s}$ = 0.9, 2.76, and 7 TeV
 1218995 X Search for new physics in final states with a lepton and missing transverse energy in pp collisions at the LHC
 1219000 X Search for a Higgs boson decaying into a b-quark pair and produced in association with b quarks in proton–proton collisions at 7 TeV
 1219950 X Measurement of the X(3872) production cross section via decays to J/psi pi pi in pp collisions at sqrt(s) = 7 TeV
 1220378 X Search for narrow resonances using the dijet mass spectrum in pp collisions at $\sqrt{s}$=8  TeV
 1222336 . Search for the standard model Higgs boson produced in association with a top-quark pair in pp collisions at the LHC
 1223519 . Search for supersymmetry in hadronic final states with missing transverse energy using the variables $\alpha_T$ and b-quark multiplicity in pp collisions at $\sqrt s=8$ TeV
 1223628 ? Measurement of associated production of vector bosons and top quark-antiquark pairs at sqrt(s) = 7 TeV
 1223729 X A New Boson with a Mass of 125 GeV Observed with the CMS Experiment at the Large Hadron Collider
 1224273 X Observation of a new boson with mass near 125 GeV in pp collisions at $\sqrt{s}$ = 7 and 8 TeV
 1224539 . Studies of jet mass in dijet and W/Z + jet events
 1224805 X Search for microscopic black holes in pp collisions at sqrt(s) = 8 TeV
 1225274 ? Measurement of the $\Upsilon(1S), \Upsilon(2S)$, and $\Upsilon(3S)$ cross sections in pp collisions at $\sqrt{s}$ = 7 TeV
 1225976 X Search for a standard-model-like Higgs boson with a mass in the range 145 to 1000 GeV at the LHC
 1229333 . Measurement of masses in the $t \bar{t}$ system by kinematic endpoints in pp collisions at $\sqrt{s}$ = 7 TeV
 1230936 X Measurement of the $\Lambda_{b}^0$ lifetime in pp collisions at $\sqrt{s} = 7$ TeV
 1230937 ! Measurement of the ratio of the inclusive 3-jet cross section to the inclusive 2-jet cross section in pp collisions at $\sqrt{s}$ = 7 TeV and first determination of the strong coupling constant in the TeV range
 1231738 X Searches for long-lived charged particles in pp collisions at $\sqrt{s}$=7 and 8 TeV
 1231945 . Multiplicity and transverse momentum dependence of two- and four-particle correlations in pPb and PbPb collisions
 1232968 X Search for gluino mediated bottom- and top-squark production in multijet final states in pp collisions at 8 TeV
 1235421 X Study of exclusive two-photon production of $W^+W^-$ in $pp$ collisions at $\sqrt{s} = 7$ TeV and constraints on anomalous quartic gauge couplings
 1235536 ! Measurement of neutral strange particle production in the underlying event in proton-proton collisions at sqrt(s) = 7 TeV
 1236361 ! Measurement of the hadronic activity in events with a Z and two jets and extraction of the cross section for the electroweak production of a Z with two jets in pp collisions at $\sqrt{s}$ = 7 TeV
 1237104 ? Measurement of the $W^+W^-$ Cross section in $pp$ Collisions at $\sqrt{s} = 7$ TeV and Limits on Anomalous $WW\gamma$ and $WWZ$ couplings
 1237915 X Energy Calibration and Resolution of the CMS Electromagnetic Calorimeter in $pp$ Collisions at $\sqrt{s} = 7$ TeV
 1240497 X Search for top squarks in $R$-parity-violating supersymmetry using three or more leptons and b-tagged jets
 1240504 X The performance of the CMS muon detector in proton-proton collisions at sqrt(s) = 7 TeV at the LHC
 1241819 X Determination of the top-quark pole mass and strong coupling constant from the t t-bar production cross section in pp collisions at $\sqrt{s}$ = 7 TeV
 1242440 . Study of the production of charged pions, kaons, and protons in pPb collisions at $\sqrt{s_{NN}} =\  $ 5.02 $\,\text {TeV}$
 1243161 X Measurement of the top-quark mass in all-jets $t\bar{t}$ events in pp collisions at $\sqrt{s}$=7 TeV
 1243425 X Measurement of the B(s) to mu+ mu- branching fraction and search for B0 to mu+ mu- with the CMS Experiment
 1243861 X Search for a Higgs boson decaying into a Z and a photon in pp collisions at sqrt(s) = 7 and 8 TeV
 1244128 ? Measurement of the prompt $J/\psi$ and $\psi$(2S) polarizations in $pp$ collisions at $\sqrt{s}$ = 7 TeV
 1246905 . Search for top-squark pair production in the single-lepton final state in pp collisions at $\sqrt{s}$ = 8 TeV
 1247976 X Angular analysis and branching fraction measurement of the decay $B^0 \to K^{*0} \mu^+\mu^-$
 1249595 . Measurement of the W-boson helicity in top-quark decays from $t\bar{t}$ production in lepton+jets events in pp collisions at $\sqrt{s} =$ 7 TeV
 1251905 ? Measurement of the $W\gamma$ and $Z\gamma$ inclusive cross sections in $pp$ collisions at $\sqrt s=7$  TeV and limits on anomalous triple gauge boson couplings
 1252068 X Search for a new bottomonium state decaying to $\Upsilon(1S)\pi^+\pi^-$ in pp collisions at $\sqrt{s}$ = 8 TeV
 1252719 . Measurement of the production cross section for $Z\gamma \to \nu\bar{\nu}\gamma$ in pp collisions at $\sqrt{s} =$ 7 TeV and limits on $ZZ\gamma$ and $Z\gamma\gamma$ triple gauge boson couplings
 1253367 X Searches for new physics using the $t\bar{t}$ invariant mass distribution in pp collisions at $\sqrt{s}$=8  TeV
 1255647 X Observation of a peaking structure in the $J/\psi \phi$ mass spectrum from $B^{\pm} \to J/\psi \phi K^{\pm}$ decays
 1256590 ! Modification of jet shapes in PbPb collisions at $\sqrt {s_{NN}} = 2.76$ TeV
 1256938 . Measurement of associated W + charm production in pp collisions at $\sqrt{s}$ = 7 TeV
 1256943 . Measurement of the cross section and angular correlations for associated production of a Z boson with b hadrons in pp collisions at $\sqrt{s} =$ 7 TeV
 1257387 X Search for baryon number violation in top-quark decays
 1258128 . Rapidity distributions in exclusive Z + jet and $\gamma$ + jet events in $pp$ collisions at $\sqrt{s}$ = 7 TeV
 1258399 X Search for the standard model Higgs boson produced in association with a W or a Z boson and decaying to bottom quarks
 1261026 . Jet and underlying event properties as a function of charged-particle multiplicity in proton–proton collisions at $\sqrt{s}$ = 7 TeV
 1262319 ! Measurement of the differential and double-differential Drell-Yan cross sections in proton-proton collisions at $\sqrt{s} =$ 7 TeV
 1262804 . Measurement of higher-order harmonic azimuthal anisotropy in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV
 1263658 . Searches for light- and heavy-flavour three-jet resonances in pp collisions at $\sqrt{s} = 8$ TeV
 1264662 . Measurements of $t\bar{t}$ spin correlations and top-quark polarization using dilepton final states in $pp$ collisions at $\sqrt{s}$ = 7 TeV
 1265220 X Search for supersymmetry in pp collisions at $\sqrt{s}$=8 TeV in events with a single lepton, large jet multiplicity, and multiple b jets
 1265512 X Search for pair production of excited top quarks in the lepton + jets final state
 1265659 . Probing color coherence effects in pp collisions at $\sqrt{s}=7\,\text {TeV} $
 1266056 . Measurement of the triple-differential cross section for photon+jets production in proton-proton collisions at $\sqrt{s}$=7 TeV
 1266257 . Search for new physics in events with same-sign dileptons and jets in pp collisions at $\sqrt{s}$ = 8 TeV
 1266766 X Inclusive search for a vector-like T quark with charge $\frac{2}{3}$ in pp collisions at $\sqrt{s}$ = 8 TeV
 1267508 X Measurement of Higgs boson production and properties in the WW decay channel with leptonic final states
 1268151 X Studies of azimuthal dihadron correlations in ultra-central PbPb collisions at $\sqrt{s_{NN}} =$ 2.76 TeV
 1268328 X Search for top-quark partners with charge 5/3 in the same-sign dilepton final state
 1268812 X Search for top squark and higgsino production using diphoton Higgs boson decays
 1269437 X Search for Flavor-Changing Neutral Currents in Top-Quark Decays $t \to Zq$ in $pp$ Collisions at $\sqrt{s}=8$  TeV
 1269454 X Evidence of b-Jet Quenching in PbPb Collisions at $\sqrt{s_{NN}}=2.76$  TeV
 1272842 X Measurement of the properties of a Higgs boson in the four-lepton final state
 1272853 . Study of double parton scattering using W + 2-jet events in proton-proton collisions at $\sqrt{s}$ = 7 TeV
 1273570 ? Measurement of the muon charge asymmetry in inclusive $pp \to W+X$ production at $\sqrt s =$ 7 TeV and an improved determination of light parton distribution functions
 1273571 X Event activity dependence of Y(nS) production in $\sqrt{s_{NN}}$=5.02 TeV pPb and $\sqrt{s}$=2.76 TeV pp collisions
 1273574 . Measurement of four-jet production in proton-proton collisions at $\sqrt{s}=7$  TeV
 1273578 ! Measurement of the production cross section for a W boson and two b jets in pp collisions at $\sqrt{s}$=7 TeV
 1275617 . Measurement of the $t \bar{t}$ production cross section in the dilepton channel in pp collisions at $\sqrt{s}$ = 8 TeV
 1276827 X Observation of the associated production of a single top quark and a $W$ boson in $pp$ collisions at $\sqrt s = $8 TeV
 1278063 . Studies of dijet transverse momentum balance and pseudorapidity distributions in pPb collisions at $\sqrt{s_{\mathrm{NN}}} = 5.02$ $\,\text {TeV}$
 1278199 X Evidence for the 125 GeV Higgs boson decaying to a pair of $\tau$ leptons
 1278857 X Evidence for the direct decay of the 125 GeV Higgs boson to fermions
 1280200 ? Measurement of inclusive W and Z boson production cross sections in pp collisions at $\sqrt{s}$ = 8 TeV
 1280529 ! Measurement of the production cross sections for a Z boson and one or more b jets in pp collisions at sqrt(s) = 7 TeV
 1280718 X Search for W' $\to $ tb decays in the lepton + jets final state in pp collisions at $\sqrt{s}$ = 8 TeV
 1281538 . Measurements of the $t\bar{t}$ charge asymmetry using the dilepton decay channel in pp collisions at $\sqrt{s} =$ 7 TeV
 1281837 X Search for new physics in the multijet and missing transverse momentum final state in proton-proton collisions at $\sqrt{s}$= 8 TeV
 1285228 X Alignment of the CMS tracker with LHC and cosmic ray data
 1285492 . Measurement of WZ and ZZ production in pp collisions at $\sqrt{s} = 8\,\text {TeV} $ in final states with b-tagged jets
 1287736 ? Measurement of the t-channel single-top-quark production cross section and of the $\mid V_{tb} \mid$ CKM matrix element in pp collisions at $\sqrt{s}$= 8 TeV
 1288709 X Search for invisible decays of Higgs bosons in the vector boson fusion and associated ZH production modes
 1289223 ? Measurement of the ratio $\mathcal B(t \to Wb)/\mathcal B(t \to Wq)$ in pp collisions at $\sqrt{s}$ = 8 TeV
 1290126 ! Measurement of jet multiplicity distributions in $\mathrm {t}\overline{\mathrm {t}}$ production in pp collisions at $\sqrt{s} = 7\,\text {TeV} $
 1291135 X Search for $WW \gamma$ and $WZ \gamma$ production and constraints on anomalous quartic gauge couplings in $pp$ collisions at $\sqrt s =$ 8 TeV
 1291940 X Search for anomalous production of events with three or more leptons in $pp$ collisions at $\sqrt(s) =$ 8 TeV
 1294140 . Measurement of pseudorapidity distributions of charged particles in proton-proton collisions at $\sqrt{s}$ = 8 TeV by the CMS and TOTEM experiments
 1294937 X Search for massive resonances in dijet systems containing jets tagged as W or Z boson decays in pp collisions at $ \sqrt{s} $ = 8 TeV
 1296080 X Search for massive resonances decaying into pairs of boosted bosons in semi-leptonic final states at $\sqrt{s} =$ 8 TeV
 1296082 X Constraints on the Higgs boson width from off-shell production and decay to Z-boson pairs
 1296259 X Search for top-squark pairs decaying into Higgs or Z bosons in pp collisions at $\sqrt{s}$=8 TeV
 1296262 X Search for supersymmetry with razor variables in pp collisions at $\sqrt{s}$=7  TeV
 1298029 X Description and performance of track and primary-vertex reconstruction with the CMS tracker
 1298393 ! Measurement of differential cross sections for the production of a pair of isolated photons in pp collisions at $\sqrt{s}=7\,\text {TeV} $
 1298508 X Searches for electroweak production of charginos, neutralinos, and sleptons decaying to leptons and W, Z, and Higgs bosons in pp collisions at 8 TeV
 1298512 X Search for jet extinction in the inclusive jet-$p_t$ spectrum from proton-proton collisions at $\sqrt s =$ 8 TeV
 1298807 . Measurement of the $pp \to ZZ$ production cross section and constraints on anomalous triple gauge couplings in four-lepton final states at $\sqrt s=$8 TeV
 1298810 ! Measurement of the ratio of inclusive jet cross sections using the anti-$k_T$ algorithm with radius parameters R=0.5 and 0.7 in pp collisions at $\sqrt{s}=7$  TeV
 1298812 . Measurement of prompt $J/\psi$ pair production in pp collisions at $ \sqrt{s} $ = 7 Tev
 1299142 . Measurement of jet fragmentation in PbPb and pp collisions at $\sqrt{s_{NN}}=2.76$ TeV
+1299490 X CMS data and workflow management system
 1300149 X Radiation background with the CMS RPCs at the LHC
 1301560 X Search for excited quarks in the $\gamma +$jet final state in proton–proton collisions at $\sqrt s=8$ TeV
 1303894 . Differential cross section measurements for the production of a W boson in association with jets in proton–proton collisions at $\sqrt s=7$ TeV
 1303895 X CMS RPC muon detector performance with 2010-2012 LHC data
 1303904 . Measurement of top quark-antiquark pair production in association with a W or Z boson in pp collisions at $\sqrt{s} = 8$ $\,\text {TeV}$
 1304454 X Observation of the diphoton decay of the Higgs boson and measurement of its properties
 1305624 . Study of hadronic event-shape variables in multijet final states in pp collisions at sqrt(s) = 7 TeV
 1306289 X Search for new resonances decaying via WZ to leptons in proton-proton collisions at $\sqrt s =$ 8 TeV
 1306295 X Search for heavy neutrinos and $\mathrm {W}$ bosons with right-handed couplings in proton-proton collisions at $\sqrt{s} = 8\,\text {TeV} $
 1307759 . Measurement of the $t \bar t$ production cross section in $pp$ collisions at $\sqrt s = 8$ TeV in dilepton final states containing one $\tau$ lepton
 1309874 X Search for pair production of third-generation scalar leptoquarks and top squarks in proton–proton collisions at $\sqrt{s}$=8 TeV
 1310104 X Search for the associated production of the Higgs boson with a top-quark pair
 1310653 X Search for physics beyond the standard model in final states with a lepton and missing transverse energy in proton-proton collisions at sqrt(s) = 8 TeV
 1310737 . Measurements of jet multiplicity and differential production cross sections of $Z +$ jets events in proton-proton collisions at $\sqrt{s} =$ 7 TeV
 1310838 X Search for neutral MSSM Higgs bosons decaying to a pair of tau leptons in pp collisions
 1311223 X Search for dark matter, extra dimensions, and unparticles in monojet events in proton–proton collisions at $\sqrt{s} = 8$ TeV
 1315820 X Searches for electroweak neutralino and chargino production in channels with Higgs, Z, and W bosons in pp collisions at 8 TeV
 1315947 . Long-range two-particle correlations of strange hadrons with charged particles in pPb and PbPb collisions at LHC energies
 1317640 ? Search for Displaced Supersymmetry in events with an electron and a muon with large impact parameters
 1318344 ? Measurement of the production cross section ratio $\sigma$(Xb2(1P)) / $\sigma$(Xb1(1P) in pp collisions at $\sqrt s $ = 8 TeV
 1318946 X Search for Standard Model Production of Four Top Quarks in the Lepton + Jets Channel in pp Collisions at $\sqrt{s}$ = 8 TeV
 1320560 X Search for Monotop Signatures in Proton-Proton Collisions at $\sqrt s =$ 8 TeV
 1320561 ? Measurement of the W boson helicity in events with a single reconstructed top quark in pp collisions at $ \sqrt{s}=8 $ TeV
 1320775 ? Measurement of Prompt $\psi(2S) \to J/\psi$ Yield Ratios in Pb-Pb and $p-p$ Collisions at $\sqrt {s_{NN}}=$ 2.76  TeV
 1321537 X Searches for heavy Higgs bosons in two-Higgs-doublet models and for $t→ch$ decay using multilepton and diphoton final states in $pp$ collisions at 8 TeV
 1321687 . Measurement of electroweak production of two jets in association with a Z boson in proton-proton collisions at $\sqrt{s}=8\,\text {TeV}$
 1322563 X Identification techniques for highly boosted W bosons that decay into hadrons
 1322726 ? Study of Z production in PbPb and pp collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV in the dimuon and dielectron decay channels
 1323075 X Measurement of the ratio of the production cross sections times branching fractions of $B_{c}^{\pm} \to J/\psi \pi^{\pm}$ and $B^{\pm} \to J/\psi K^{\pm}$ and $\mathcal{B}(B_{c}^{\pm} \to J/\psi \pi^{\pm}\pi^{\pm}\pi^{\mp})/\mathcal{B}(B_{c}^{\pm} \to J/\psi \pi^{\pm})$ in pp collisions at $\sqrt{s} =$ 7 TeV
 1323393 X CMS RPC tracker muon reconstruction
 1323444 X Study of vector boson scattering and search for new physics in events with two same-sign leptons and two jets
 1323624 X Search for a standard model-like Higgs boson in the $μ^+μ^−$ and $e^+e^−$ decay channels at the LHC
 1323630 X Constraints on parton distribution functions and extraction of the strong coupling constant from the inclusive jet cross section in pp collisions at $\sqrt{s} = 7$ $\,\text {TeV}$
 1325549 X Search for new phenomena in monophoton final states in proton-proton collisions at $\sqrt s =$ 8 TeV
 1325798 X Performance of the CMS missing transverse momentum reconstruction in pp data at $\sqrt{s}$ = 8 TeV
 1326189 X CMS RPC commissioning of the existing detector during the long shutdown
 1327224 . Search for quark contact interactions and extra spatial dimensions using dijet angular distributions in proton–proton collisions at $\sqrt s =$ 8 TeV
 1327726 X Constraints on the spin-parity and anomalous HVV couplings of the Higgs boson in proton collisions at 7 and 8 TeV
 1328493 X Observation of the rare $B^0_s\to\mu^+\mu^-$ decay from the combined analysis of CMS and LHCb data
 1328962 . Measurement of the cross section ratio $\sigma_\mathrm{t \bar{t} b \bar{b}} / \sigma_\mathrm{t \bar{t}  jj }$ in pp collisions at $\sqrt{s}$ = 8 TeV
 1329620 ? Search for disappearing tracks in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1329792 ? Search for Long-Lived Neutral Particles Decaying to Quark-Antiquark Pairs in Proton-Proton Collisions at $\sqrt{s} =$ 8 TeV
 1329959 ? Search for long-lived particles that decay into final states containing two electrons or two muons in proton-proton collisions at $\sqrt{s} =$ 8 TeV
 1330294 ? Search for stealth supersymmetry in events with jets, either photons or leptons, and low missing transverse momentum in pp collisions at 8 TeV
 1332509 ! Measurements of differential and double-differential Drell-Yan cross sections in proton-proton collisions at 8 TeV
 1332746 ! Measurement of the inclusive 3-jet production differential cross section in proton–proton collisions at 7 TeV and determination of the strong coupling constant in the TeV range
 1334141 ? Searches for supersymmetry based on events with b jets and four W bosons in pp collisions at 8 TeV
 1335131 ? Search for physics beyond the standard model in dilepton mass spectra in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1335501 ? Search for pair-produced resonances decaying to jet pairs in proton–proton collisions at $\sqrt{s} =$ 8 TeV
 1335811 X Precise determination of the mass of the Higgs boson and tests of compatibility of its couplings with the standard model predictions using proton collisions at 7 and 8 $\,\text {TeV}$
 1340084 ? Search for resonances and quantum black holes using dijet mass spectra in proton-proton collisions at $\sqrt{s} =$ 8 TeV
 1340696 ? Search for heavy Majorana neutrinos in $\mu^\pm \mu^\pm+$ jets events in proton-proton collisions at $\sqrt{s}$ = 8 TeV
 1340699 ? Search for Decays of Stopped Long-Lived Particles Produced in Proton–Proton Collisions at $\sqrt{s}= 8\,\text {TeV} $
 1341039 X Measurement of the ratio $B(B^0_s \to J/\psi f_0(980))$ / $B(B^0_s \to J/\psi \phi(1020))$ in pp collisions at $\sqrt s$ = 7 TeV
 1342266 ? Measurements of the $\Upsilon$(1S), $\Upsilon$(2S), and $\Upsilon$(3S) differential cross sections in pp collisions at $\sqrt{s} =$ 7 TeV
 1342447 ? Search for Supersymmetry Using Razor Variables in Events with $b$-Tagged Jets in $pp$ Collisions at $\sqrt{s} =$ 8 TeV
 1343506 X Search for a Standard Model Higgs Boson Produced in Association with a Top-Quark Pair and Decaying to Bottom Quarks Using a Matrix Element Method
 1343509 X Constraints on the pMSSM, AMSB model and on other models from the search for long-lived charged particles in proton-proton collisions at sqrt(s) = 8 TeV
 1343791 X Performance of Electron Reconstruction and Selection with the CMS Detector in Proton-Proton Collisions at √s = 8  TeV
 1343792 X Performance of Photon Reconstruction and Identification with the CMS Detector in Proton-Proton Collisions at sqrt(s) = 8 TeV
 1345023 ? Measurement of J/ψ and ψ(2S) Prompt Double-Differential Cross Sections in pp Collisions at $\sqrt{s}$=7  TeV
 1345027 X Searches for Supersymmetry using the M$_{T2}$ Variable in Hadronic Events Produced in pp Collisions at 8 TeV
 1345159 . Distributions of Topological Observables in Inclusive Three- and Four-Jet Events in pp Collisions at sqrt(s) = 7 TeV
 1345160 X Search for Narrow High-Mass Resonances in Proton–Proton Collisions at $\sqrt{s}$ = 8 TeV Decaying to a Z and a Higgs Boson
 1345262 X Evidence for Collective Multiparticle Correlations in p-Pb Collisions
 1345263 ? Nuclear Effects on the Transverse Momentum Spectra of Charged Particles in pPb Collisions at $\sqrt{s_{_\mathrm {NN}}} =5.02$ TeV
 1345354 ? Measurement of the Zγ Production Cross Section in pp Collisions at 8 TeV and Search for Anomalous Triple Gauge Boson Couplings
 1345823 ? Search for Physics Beyond the Standard Model in Events with Two Leptons, Jets, and Missing Transverse Momentum in pp Collisions at sqrt(s) = 8 TeV
 1346512 ? Search for Lepton-Flavour-Violating Decays of the Higgs Boson
 1346843 . Study of Final-State Radiation in Decays of Z Bosons Produced in $pp$ Collisions at 7 TeV
 1347386 . Evidence for transverse momentum and pseudorapidity dependent event plane fluctuations in PbPb and pPb collisions
 1348542 X Search for vector-like T quarks decaying to top quarks and Higgs bosons in the all-hadronic channel using jet substructure
 1352128 X Search for resonant pair production of Higgs bosons decaying to two bottom quark–antiquark pairs in proton–proton collisions at 8 TeV
 1353393 X Measurements of the $\mathrm{Z}$ $\mathrm{Z}$ production cross sections in the $2\mathrm{l} 2\nu $ channel in proton–proton collisions at $\sqrt{s} = 7$ and $8~\mathrm{TeV} $ and combined constraints on triple gauge couplings
 1353541 ? Study of W boson production in pPb collisions at $\sqrt{s_{\mathrm{NN}}} =$ 5.02 TeV
 1356728 ? Searches for third-generation squark production in fully hadronic final states in proton-proton collisions at $ \sqrt{s} = 8$ TeV
 1356998 . Measurement of diffraction dissociation cross sections in pp collisions at $\sqrt{s}$ = 7 TeV
 1357201 ? Search for Third-Generation Scalar Leptoquarks in the t$\tau$ Channel in Proton-Proton Collisions at $\sqrt{s}$ = 8 TeV
 1357982 X Search for a Higgs boson in the mass range from 145 to 1000 GeV decaying to a pair of W or Z bosons
 1359293 ? Search for the production of dark matter in association with top-quark pairs in the single-lepton final state in proton-proton collisions at sqrt(s) = 8 TeV
 1359450 ! Measurement of the Z boson differential cross section in transverse momentum and rapidity in proton–proton collisions at 8 TeV
 1359451 ? Angular coefficients of Z bosons produced in pp collisions at $\sqrt{s}$ = 8 TeV and decaying to $\mu^+ \mu^-$ as a function of transverse momentum and rapidity
 1362177 X Search for a pseudoscalar boson decaying into a Z boson and the 125 GeV Higgs boson in $ℓ^+ℓ^−b\overline{b}$ final states
 1367339 X Trapping in proton irradiated p$^+$-n-n$^+$ silicon sensors at fluences anticipated at the HL-LHC outer tracker
 1369161 X Impact of low-dose electron irradiation on $n^{+}p$ silicon strip sensors
 1370682 . Measurement of the differential cross section for top quark pair production in pp collisions at $\sqrt{s} = 8\,\text {TeV} $
 1372730 ? Comparison of the Z/$\gamma$$^{∗}$ + jets to $\gamma$ + jets cross sections in pp collisions at $ \sqrt{s}=8 $ TeV
 1373745 X Search for neutral color-octet weak-triplet scalar particles in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1373914 X A search for pair production of new light bosons decaying into muons
 1374219 X Search for the standard model Higgs boson produced through vector boson fusion and decaying to $b \overline{b}$
 1374621 X Search for a massive resonance decaying into a Higgs boson and a W or Z boson in hadronic final states in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1375026 X Search for diphoton resonances in the mass range from 150 to 850 GeV in pp collisions at $\sqrt{s} =$ 8 TeV
 1375314 X Search for resonant $t \bar t$ production in proton-proton collisions at $\sqrt s=$ 8  TeV
 1380177 X Search for neutral MSSM Higgs bosons decaying into a pair of bottom quarks
 1380605 . Production of leading charged particles and leading charged-particle jets at small transverse momenta in pp collisions at sqrt(s) = 8 TeV
 1380907 X Search for exotic decays of a Higgs boson into undetectable particles and one or more photons
 1382346 ? Search for supersymmetry with photons in pp collisions at $\sqrt{s}$=8  TeV
 1382587 ? Search for a Higgs boson decaying into $\gamma^* \gamma \to \ell \ell \gamma$ with low dilepton mass in pp collisions at $\sqrt s = $ 8 TeV
 1382590 ! Inclusive and differential measurements of the $t\overline{t}$ charge asymmetry in pp collisions at $\sqrt{s} =$ 8 TeV
 1382594 ? Measurement of the ${{\mathrm{W} }^{+} }\mathrm{W}^{-} $ cross section in pp collisions at $\sqrt{s} =$ 8 TeV and limits on anomalous gauge couplings
 1384119 . Pseudorapidity distribution of charged hadrons in proton-proton collisions at $\sqrt{s}$ = 13 TeV
 1384772 X Limits on the Higgs boson lifetime and width from its decay to four charged leptons
 1385104 ? Search for pair-produced vectorlike B quarks in proton-proton collisions at $\sqrt{s}$=8  TeV
 1385107 . Measurement of the underlying event activity using charged-particle jets in proton-proton collisions at sqrt(s) = 2.76 TeV
 1385111 X Measurement of the CP-violating weak phase $\phi_s$ and the decay width difference $\Delta \Gamma_s$ using the B$_s^0 \to J/\psi\phi$(1020) decay channel in pp collisions at $\sqrt{s}=$ 8 TeV
 1385600 X Angular analysis of the decay $B^0 \to K^{*0} \mu^+ \mu^-$ from pp collisions at $\sqrt  s = 8$ TeV
 1386851 ? Search for supersymmetry in events with a photon, a lepton, and missing transverse momentum in pp collisions at $\sqrt s=$ 8 TeV
 1386854 ? Search for neutral MSSM Higgs bosons decaying to $\mu^{+} \mu^{-}$ in pp collisions at $ \sqrt{s} =$ 7 and 8 TeV
 1388178 . Measurement of the charge asymmetry in top quark pair production in pp collisions at $\sqrt(s) =$ 8 TeV using a template method
 1388363 ? Search for W' decaying to tau lepton and neutrino in proton-proton collisions at $\sqrt(s) =$ 8 TeV
 1390110 ? Study of B Meson Production in p$+$Pb Collisions at $\sqrt{s_{NN}}=5.02$  TeV Using Exclusive Hadronic Decays
 1391140 ? Search for supersymmetry in the vector-boson fusion topology in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1391146 ? Search for a charged Higgs boson in pp collisions at $ \sqrt{s}=8 $ TeV
 1391147 ! Measurement of differential cross sections for Higgs boson production in the diphoton decay channel in pp collisions at $\sqrt{s}=8\,\text {TeV} $
 1393257 ? Search for pair production of first and second generation leptoquarks in proton-proton collisions at $\sqrt{s}$ = 8  TeV
 1393258 ? Search for single production of scalar leptoquarks in proton-proton collisions at $\sqrt{s} = 8$ $TeV$
 1393261 . Measurement of the inelastic cross section in proton–lead collisions at $\sqrt {s_{NN}}=$ 5.02 TeV
 1393269 X Measurement of the top quark mass using proton-proton data at ${\sqrt{(s)}}$ = 7 and 8 TeV
 1393276 ? Search for vector-like charge 2/3 T quarks in proton-proton collisions at sqrt(s) = 8 TeV
 1394163 ? Search for $W' \to tb$ in proton-proton collisions at $\sqrt{s} = $ 8 TeV
 1394164 ? Measurement of the $\mathrm{t}\overline{{\mathrm{t}}}$ production cross section in the all-jets final state in pp collisions at $\sqrt{s}=8$ $\,\text {TeV}$
 1395094 X Search for the production of an excited bottom quark decaying to $tW$ in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1395096 X Search for the associated production of a Higgs boson with a single top quark in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1395457 . Measurement of transverse momentum relative to dijet systems in PbPb and pp collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV
 1396140 X Observation of top quark pairs produced in association with a vector boson in pp collisions at $ \sqrt{s}=8 $ TeV
 1396141 X Searches for a heavy scalar boson H decaying to a pair of 125 GeV Higgs bosons hh or for a heavy pseudoscalar boson A decaying to Zh, in the final states with $h \to \tau \tau$
 1397173 ! Measurement of long-range near-side two-particle angular correlations in pp collisions at $\sqrt s =$13 TeV
 1397174 . Measurement of $\mathrm {t}\overline{\mathrm {t}}$ production with additional jet activity, including $\mathrm {b}$ quark jets, in the dilepton decay channel using pp collisions at $\sqrt{s} =$ 8 TeV
 1397180 . Transverse momentum spectra of inclusive b jets in pPb collisions at $\sqrt{s_{NN}} = $ 5.02 TeV
 1397832 X Search for a light charged Higgs boson decaying to $ \mathrm{c}\overline{\mathrm{s}} $ in pp collisions at $ \sqrt{s}=8 $ TeV
 1398582 ? Measurement of the top quark pair production cross section in proton-proton collisions at $\sqrt(s) =$ 13 TeV
 1399359 X Search for a very light NMSSM Higgs boson produced in decays of the 125 GeV scalar boson and decaying into $\tau$ leptons in pp collisions at $\sqrt{s}=8$ TeV
 1400805 X Reconstruction and identification of τ lepton decays to hadrons and ν$_τ$ at CMS
 1402803 ? Search for Excited Leptons in Proton-Proton Collisions at $\sqrt{s}$ = 8 TeV
 1403169 . Measurement of Top Quark Polarisation in T-Channel Single Top Quark Production
 1403990 X Search for a Low-Mass Pseudoscalar Higgs Boson Produced in Association with a $b\bar{b}$ Pair in $pp$ Collisions at $\sqrt{s} =$ 8 TeV
 1404159 X Search for Anomalous Single Top Quark Production in Association with a Photon in $pp$ Collisions at $ \sqrt{s}=8 $ TeV
 1405439 ? Measurement of Spin Correlations in $t\bar{t}$ Production using the Matrix Element Method in the Muon+Jets Final State in $pp$ Collisions at $\sqrt{s} =$ 8 TeV
 1407148 ? Search for dark matter and unparticles produced in association with a Z boson in proton-proton collisions at $\sqrt s=$ 8  TeV
 1407839 X Event generator tunes obtained from underlying event and multiparton scattering measurements
 1407955 ? Search for narrow resonances decaying to dijets in proton-proton collisions at $\sqrt(s) =$ 13 TeV
 1410826 ! Measurement of the inclusive jet cross section in pp collisions at $\sqrt{s} = 2.76\,\text {TeV}$
 1410832 . Study of Z boson production in pPb collisions at $\sqrt {s_{NN}} = 5.02$ TeV
 1411443 ? Search for supersymmetry in events with soft leptons, low jet multiplicity, and missing transverse energy in proton–proton collisions at $\sqrt{s}$=8 TeV
 1411454 ! Measurement of differential and integrated fiducial cross sections for Higgs boson production in the four-lepton decay channel in pp collisions at $ \sqrt{s}=7 $ and 8 TeV
 1412059 . Correlations between jets and charged particles in PbPb and pp collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV
 1413748 . Measurements of t t-bar spin correlations and top quark polarization using dilepton final states in pp collisions at sqrt(s) = 8 TeV
 1414605 . Measurement of inclusive jet production and nuclear modifications in pPb collisions at $\sqrt{s_{_\mathrm {NN}}} =$ 5.02 TeV
 1415949 ? Forward–backward asymmetry of Drell–Yan lepton pairs in pp collisions at $\sqrt{s} = 8$ $\,\mathrm{TeV}$
 1416821 ? Search for massive WH resonances decaying into the $\ell \nu \mathrm{b} \overline{\mathrm{b}} $ final state at $\sqrt{s}=8$ $~\text {TeV}$
 1416827 ! Azimuthal decorrelation of jets widely separated in rapidity in pp collisions at $ \sqrt{s}=7 $ TeV
 1420551 ? Search for supersymmetry in pp collisions at sqrt(s) = 8 TeV in final states with boosted W bosons and b jets using razor variables
 1420556 ? Search for direct pair production of scalar top quarks in the single- and dilepton channels in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1421644 X Combined search for anomalous pseudoscalar HVV couplings in VH(H $\to b \bar b$) production and H $\to$ VV decay
 1421645 ? Search for R-parity violating decays of a top squark in proton-proton collisions at $\sqrt{s}$ = 8 TeV
 1421646 . Measurement of dijet azimuthal decorrelation in pp collisions at $\sqrt{s}=8\,\mathrm{TeV} $
 1422778 ? Search for supersymmetry in the multijet and missing transverse momentum final state in pp collisions at 13 TeV
 1423069 ? Measurement of the $ \mathrm{ Z } \gamma \rightarrow \nu \bar{\nu} \gamma$ production cross section in pp collisions at $\sqrt{s}=$ 8 TeV and limits on anomalous $ \mathrm{ ZZ } \gamma$ and $ \mathrm{Z} \gamma \gamma$ trilinear gauge boson couplings
 1424833 ? Search for heavy resonances decaying to two Higgs bosons in final states containing four b quarks
 1424834 ! Search for supersymmetry in electroweak production with photons and large missing transverse energy in pp collisions at $\sqrt s = 8$ TeV
 1424842 ? Measurements of the $\mathrm{t}\overline{\mathrm{t}}$ production cross section in lepton+jets final states in pp collisions at 8 $\,\text {TeV}$ and ratio of 8 to 7  $\,\text {TeV}$ cross sections
 1425690 ? Search for direct pair production of supersymmetric top quarks decaying to all-hadronic final states in pp collisions at $\sqrt{s} = 8\;\text {TeV} $
 1426517 ! Measurement of the differential cross section and charge asymmetry for inclusive $\mathrm {p}\mathrm {p}\rightarrow \mathrm {W}^{\pm }+X$ production at ${\sqrt{s}} = 8$ TeV
 1426525 X Search for heavy Majorana neutrinos in e$^{±}$e$^{±}$+ jets and e$^{±}$ $\mu^{±}$+ jets events in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1426692 ? Measurement of the t-tbar production cross section in the e-mu channel in proton-proton collisions at sqrt(s) = 7 and 8 TeV
 1426696 X Search for s channel single top quark production in pp collisions at $ \sqrt{s}=7 $ and 8 TeV
 1426828 . $\Upsilon(\mathrm{nS})$ polarizations versus particle multiplicity in pp collisions at $\sqrt{s} =$ 7 TeV
 1426832 ? Search for neutral resonances decaying into a Z boson and a pair of b jets or $\tau$ leptons
 1427411 ? Search for new physics with the M$_{T2}$ variable in all-jets final states produced in pp collisions at $ \sqrt{s}=13 $ TeV
 1430578 X Physics motivations and expected performance of the CMS muon system upgrade with triple-GEM detectors
 1430892 . Measurements of $t \bar t$ charge asymmetry using dilepton final states in pp collisions at $\sqrt s=8$ TeV
 1430902 X Measurement of the top quark mass using charged particles in pp collisions at $\sqrt s =$ 8 TeV
 1431986 ? Search for two Higgs bosons in final states containing two photons and two bottom quarks in proton-proton collisions at 8 TeV
 1436367 . Search for dark matter particles in proton-proton collisions at $ \sqrt{s}=8 $ TeV using the razor variables
 1448100 X Evidence for exclusive $\gamma\gamma \to W^+ W^-$ production and constraints on anomalous quartic gauge couplings in $pp$ collisions at $ \sqrt{s}=7 $ and 8 TeV
 1448302 ? Search for lepton flavour violating decays of heavy resonances and quantum black holes to an e$\mu$ pair in proton-proton collisions at $\sqrt{s}$ = 8 TeV
 1449080 . Pseudorapidity dependence of long-range two-particle correlations in $p$Pb collisions at $\sqrt {s_{NN}}=$ 5.02 TeV
 1454081 ? Search for narrow resonances in dijet final states at $\sqrt(s)=$ 8 TeV with the novel CMS technique of data scouting
 1454211 . Measurement of the integrated and differential $t \bar t$ production cross sections for high-$p_t$ top quarks in $pp$ collisions at $\sqrt s =$ 8 TeV
 1456795 X Search for Higgs boson off-shell production in proton-proton collisions at 7 and 8 TeV and derivation of constraints on its total decay width
 1456935 . Search for new physics in same-sign dilepton events in proton–proton collisions at $\sqrt{s} = 13\,\text {TeV} $
 1459051 . Measurement of the double-differential inclusive jet cross section in proton–proton collisions at $\sqrt{s} = 13\,\text {TeV} $
 1459054 ? Search for supersymmetry in pp collisions at $ \sqrt{s}=13 $ TeV in the single-lepton final state using the sum of masses of large-radius jets
 1464834 . Multiplicity and rapidity dependence of strange hadron production in pp, pPb, and PbPb collisions at the LHC
 1464840 ? Coherent $J/\psi$ photoproduction in ultra-peripheral PbPb collisions at $\sqrt {s_{NN}} =$ 2.76 TeV with the CMS experiment
 1466293 ? Search for top squark pair production in compressed-mass-spectrum scenarios in proton-proton collisions at $\sqrt{s}$ = 8 TeV using the $\alpha_T$ variable
 1466294 . Measurement of the W boson helicity fractions in the decays of top quark pairs to lepton $+$ jets final states produced in pp collisions at $\sqrt s=$ 8TeV
 1466301 ? Search for Dark Matter and Supersymmetry with a Compressed Mass Spectrum in the Vector Boson Fusion Topology in Proton-Proton Collisions at $\sqrt{s} =$ 8  TeV
 1467450 X High rate, fast timing Glass RPC for the high $\eta$ CMS muon detectors
 1467451 . Measurement of the transverse momentum spectrum of the Higgs boson produced in pp collisions at $ \sqrt{s}=8 $ TeV using $H \to WW$ decays
 1469062 X Phenomenological MSSM interpretation of CMS searches in pp collisions at sqrt(s) = 7 and 8 TeV
 1469073 ? Search for Resonant Production of High-Mass Photon Pairs in Proton-Proton Collisions at $\sqrt s$ =8 and 13 TeV
 1471281 ! Measurement of the transverse momentum spectra of weak vector bosons produced in proton-proton collisions at $ \sqrt{s}=8 $ TeV
-1471287 ? Evidence for collectivity in pp collisions at the LHC
+1471287 . Evidence for collectivity in pp collisions at the LHC
 1472314 ? Searches for $R$-parity-violating supersymmetry in $pp $collisions at $\sqrt(s) =$ 8 TeV in final states with 0-4 leptons
 1473674 . Measurement of the differential cross sections for top quark pair production as a function of kinematic event variables in pp collisions at $\sqrt s$=7 and 8 TeV
 1473675 ? Search for new physics in final states with two opposite-sign, same-flavor leptons, jets, and missing transverse momentum in pp collisions at sqrt(s) = 13 TeV
 1475003 X Observation of the decay $B^+ \to \psi(2S) \phi(1020) K^+$ in pp collisions at $\sqrt s =$ 8 TeV
 1475472 X Search for lepton flavour violating decays of the Higgs boson to $e \tau$ and $e \mu$ in proton–proton collisions at $\sqrt s=$ 8 TeV
 1475475 X Jet energy scale and resolution in the CMS experiment in pp collisions at 8 TeV
 1477207 ? Search for dark matter in proton-proton collisions at 8 TeV with missing transverse momentum and vector boson tagged jets
 1477805 X Measurement of the WZ production cross section in pp collisions at $\sqrt(s) =$ 13 TeV
 1477806 . Measurement of electroweak production of a W boson and two forward jets in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1478600 X Measurement of the ZZ production cross section and Z $\to \ell^+\ell^-\ell'^+\ell'^-$ branching fraction in pp collisions at $\sqrt s$=13 TeV
 1479163 ? Search for new phenomena in events with high jet multiplicity and low missing transverse momentum in proton–proton collisions at $\sqrt{s}=8$ TeV
 1480862 X Measurement of the mass of the top quark in decays with a $J/\psi$ meson in pp collisions at 8 TeV
 1483165 X Dose rate effects in the radiation damage of the plastic scintillators of the CMS Hadron Endcap Calorimeter
 1484162 ! Measurement of the production cross section of a W boson in association with two b jets in pp collisions at $\sqrt{s} = 8{\,\mathrm{{TeV}}} $
 1485195 ! Measurement of the total and differential inclusive $B^+$ hadron cross sections in pp collisions at $\sqrt{s}$ = 13 TeV
 1485699 X The CMS trigger system
 1485701 . Decomposing transverse momentum balance contributions for quenched jets in PbPb collisions at $ \sqrt{s_{\mathrm{N}\;\mathrm{N}}}=2.76 $ TeV
 1485702 ? Search for high-mass diphoton resonances in proton–proton collisions at 13 TeV and combination with 8 TeV search
 1486238 . Studies of inclusive four-jet production with two $b$-tagged jets in proton-proton collisions at 7 TeV
 1487277 . Measurement and QCD analysis of double-differential inclusive jet cross sections in pp collisions at $ \sqrt{s}=8 $ TeV and cross section ratios to 2.76 and 7 TeV
 1487278 . Measurement of inclusive jet cross sections in $pp$ and PbPb collisions at $\sqrt{s_{NN}}=$ 2.76 TeV
 1487279 ? Search for narrow resonances in dilepton mass spectra in proton-proton collisions at $\sqrt{s}$ = 13 TeV and combination with 8 TeV data
 1487288 X Measurement of the WZ production cross section in pp collisions at $\sqrt{s} = 7$ and 8 $\,\text{TeV}$ and search for anomalous triple gauge couplings at $\sqrt{s} = 8\,\text{TeV} $
 1488103 ? Inclusive search for supersymmetry using razor variables in pp collisions at $\sqrt s=$ 13  TeV
 1488280 ? Search for long-lived charged particles in proton-proton collisions at $\sqrt s=$ 13  TeV
 1488581 ? Search for supersymmetry in events with one lepton and multiple jets in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1489183 ? Observation of charge-dependent azimuthal correlations in $p$-Pb collisions and its implication for the search for the chiral magnetic effect
 1489189 . Suppression and azimuthal anisotropy of prompt and nonprompt ${\mathrm{J}}/\psi $ production in PbPb collisions at $\sqrt{{s_{_{\text {NN}}}}} =2.76$ $\,\mathrm{TeV}$
 1489193 ? Cross section measurement of $t$-channel single top quark production in pp collisions at $\sqrt s =$ 13 TeV
 1490903 ? Search for high-mass Z$\gamma$ resonances in $\mathrm{ e }^{+}\mathrm{ e }^{-}\gamma $ and $ \mu^{+}\mu^{-}\gamma$ final states in proton-proton collisions at $\sqrt{s} =$ 8 and 13 TeV
 1491379 X Search for anomalous Wtb couplings and flavour-changing neutral currents in t-channel single top quark production in pp collisions at $\sqrt{s} =$ 7 and 8 TeV
 1491950 . Measurement of differential cross sections for top quark pair production using the lepton+jets final state in proton-proton collisions at 13 TeV
 1491953 . Measurements of differential cross sections for associated production of a W boson and jets in proton-proton collisions at $\sqrt{s} =$ 8 TeV
 1492316 X Search for top quark decays via Higgs-boson-mediated flavor-changing neutral currents in pp collisions at $ \sqrt{s}=8 $ TeV
 1492317 ? Search for electroweak production of charginos in final states with two τ leptons in pp collisions at $ \sqrt{s}=8 $ TeV
 1492321 ? Search for R-parity violating supersymmetry with displaced vertices in proton-proton collisions at $\sqrt{s}$ = 8 TeV
 1494067 X Observation of $\Upsilon$(1S) pair production in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1494580 ? Search for heavy resonances decaying into a vector boson and a Higgs boson in final states with charged leptons, neutrinos, and b quarks
 1495025 ? Searches for invisible decays of the Higgs boson in pp collisions at $\sqrt{s}$ = 7, 8, and 13 TeV
 1495237 X Measurement of the mass difference between top quark and antiquark in pp collisions at $\sqrt{s} = 8$ TeV
 1495423 ? A search for new phenomena in pp collisions at $\sqrt{s} = 13\,\text {TeV} $ in final states with missing transverse momentum and at least one jet using the $\alpha _{\mathrm {T}}$ variable
 1495840 . Relative Modification of Prompt ψ(2S) and J/ψ Yields from pp to PbPb Collisions at $\sqrt{s_{NN}}=5.02$ TeV
 1495866 ! Suppression of $\Upsilon(1S), \Upsilon(2S)$ and $\Upsilon(3S)$ production in PbPb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV
 1496050 . Charged-particle nuclear modification factors in PbPb and pPb collisions at $ \sqrt{s_{\mathrm{N}\;\mathrm{N}}}=5.02 $ TeV
 1497514 ? Search for dijet resonances in proton–proton collisions at $\sqrt{s}$ = 13 TeV and constraints on dark matter and other models
 1497519 ! Measurements of differential production cross sections for a Z boson in association with jets in pp collisions at $ \sqrt{s}=8 $ TeV
 1497736 . Measurement of the $t\bar{t}$ production cross section using events in the e$\mu$ final state in pp collisions at $\sqrt{s} =$ 13 TeV
 1499471 ! Measurements of the associated production of a Z boson and b jets in pp collisions at ${\sqrt{s}} = 8\,\text {TeV} $
 1499476 ? Search for heavy resonances decaying to tau lepton pairs in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1499477 ? Search for supersymmetry in events with photons and missing transverse energy in pp collisions at 13 TeV
 1500513 X Search for CP violation in $ t\overline{t} $ production and decay in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1501681 ? Search for single production of a heavy vector-like T quark decaying to a Higgs boson and a top quark with a lepton and jets in the final state
 1501683 ? Search for heavy neutrinos or third-generation leptoquarks in final states with two hadronically decaying $\tau$ leptons and two jets in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1502925 ? Searches for pair production of third-generation squarks in $\sqrt{s}=13$ $\,\text {TeV}$ pp collisions
 1504209 ? Search for electroweak production of a vector-like quark decaying to a top quark and a Higgs boson using boosted topologies in fully hadronic final states
 1507091 . Measurements of the charm jet cross section and nuclear modification factor in pPb collisions at $\sqrt{{s}_{NN}}$ = 5.02 TeV
 1507094 X Search for massive resonances decaying into WW, WZ or ZZ bosons in proton-proton collisions at $\sqrt{s} = $ 13 TeV
 1507095 ? Measurement of electroweak-induced production of W$\gamma$ with two jets in pp collisions at $ \sqrt{s}=8 $ TeV and constraints on anomalous quartic gauge couplings
 1507096 ? Search for heavy gauge W' boson in events with an energetic lepton and large missing transverse momentum at $ \sqrt{s} = $ 13 TeV
 1507303 ? Search for high-mass $\mathrm{ Z }\gamma$ resonances in proton-proton collisions at $\sqrt{s}=$ 8 and 13 TeV using jet substructure techniques
 1507892 ? Search for leptophobic Z′ bosons decaying into four-lepton final states in proton–proton collisions at $\sqrt s$ =8TeV
 1508171 ? Search for supersymmetry in the all-hadronic final state using top quark tagging in pp collisions at $\sqrt s = 13$ TeV
 1508172 X Mechanical stability of the CMS strip tracker measured with a laser alignment system
 1508173 ? Search for light bosons in decays of the 125 GeV Higgs boson in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1508174 ? Search for dark matter and unparticles in events with a Z boson and missing transverse momentum in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1510260 ! Measurement of the $t \bar t$ production cross section using events with one lepton and at least one jet in pp collisions at $\sqrt{s}$  = 13 TeV
 1510442 ? Search for new phenomena with multiple charged leptons in proton–proton collisions at $\sqrt{s}= 13$ $\,\text {TeV}$
 1510567 ? Search for single production of vector-like quarks decaying to a Z boson and a top or a bottom quark in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1511277 ? Search for single production of vector-like quarks decaying into a b quark and a W boson in proton-proton collisions at $\sqrt s =$ 13 TeV
 1511284 . Measurement of the inclusive energy spectrum in the very forward direction in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1511868 . Azimuthal anisotropy of charged particles with transverse momentum up to 100 GeV/ c in PbPb collisions at $\sqrt {s}_{{NN}}$=5.02 TeV
 1512112 ! Study of Jet Quenching with $Z+\text{jet}$ Correlations in Pb-Pb and $pp$ Collisions at ${\sqrt{s}}_{NN}=5.02\text{ }\text{ }\mathrm{TeV}$
 1512295 . Search for associated production of a Z boson with a single top quark and for tZ flavour-changing interactions in pp collisions at $ \sqrt{s}=8 $ TeV
 1512296 ? Measurement of prompt and nonprompt $\mathrm{J}/{\psi }$ production in $\mathrm {p}\mathrm {p}$ and $\mathrm {p}\mathrm {Pb}$ collisions at $\sqrt{s_{\mathrm {NN}}} =5.02\,\text {TeV} $
 1512924 ? Measurement of the cross section for electroweak production of Z$\gamma$ in association with two jets and constraints on anomalous quartic gauge couplings in proton–proton collisions at $\sqrt{s} = 8$ TeV
 1513926 X The Triple GEM Detector Control System for CMS forward muon spectrometer upgrade
 1514542 X Search for standard model production of four top quarks in proton-proton collisions at $\sqrt{s}$ = 13 TeV
 1516191 ! Measurement of double-differential cross sections for top quark pair production in pp collisions at $\sqrt{s} = 8$ $\,\text {TeV}$ and impact on parton distribution functions  <neil.warrack@cern.ch>
 1516193 ? Search for dark matter produced with an energetic jet or a hadronically decaying W or Z boson at $ \sqrt{s}=13 $ TeV
 1516412 X Measurement of the top quark mass using single top quark events in proton-proton collisions at $\sqrt{s}= 8$  TeV
 1517191 ? Search for third-generation scalar leptoquarks and heavy right-handed neutrinos in final states with two tau leptons and two jets in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1517496 ? Search for associated production of dark matter with a Higgs boson decaying to $ \mathrm{b}\overline{\mathrm{b}} $ or $\gamma \gamma$ at $ \sqrt{s}=13$ TeV
 1518145 X Search for anomalous couplings in boosted $\mathrm{ WW/WZ }\to\ell\nu\mathrm{ q \bar{q} }$ production in proton-proton collisions at $\sqrt{s} =$ 8 TeV
-1518399 ! Measurement of the jet mass in highly boosted ${\mathrm{t}}\overline{\mathrm{t}}$ events from pp collisions at $\sqrt{s}=8$ $\,\text {TeV}$
+1518399 . Measurement of the jet mass in highly boosted ${\mathrm{t}}\overline{\mathrm{t}}$ events from pp collisions at $\sqrt{s}=8$ $\,\text {TeV}$
 1518400 ? Search for a heavy resonance decaying to a top quark and a vector-like top quark at $ \sqrt{s}=13 $ TeV
 1519995 . Search for new physics with dijet angular distributions in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1589287 ? Measurements of the pp $\to W\gamma\gamma$ and pp $\to Z\gamma\gamma$ cross sections and limits on anomalous quartic gauge couplings at $ \sqrt{s}=8 $ TeV
 1591147 ? Search for $ \mathrm{t}\overline{\mathrm{t}} $ resonances in highly boosted lepton+jets and fully hadronic final states in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1593762 X Measurement of the top quark mass in the dileptonic $t\bar{t}$ decay channel using the mass observables $M_{b\ell}$, $M_{T2}$, and $M_{b\ell\nu}$ in pp collisions at $\sqrt{s}=8$ TeV
 1594731 ? Search for physics beyond the standard model in events with two leptons of same sign, missing transverse momentum, and jets in proton–proton collisions at $\sqrt{s} = 13\,\text {TeV} $
 1594909 . Search for supersymmetry in multijet events with missing transverse momentum in proton-proton collisions at 13 TeV
 1598036 ? Search for black holes in high-multiplicity final states in proton-proton collisions at $ \sqrt{s}=$13 TeV
 1598460 ! Measurement of the triple-differential dijet cross section in proton-proton collisions at $\sqrt{s}=8\,\text {TeV} $ and constraints on parton distribution functions
 1598467 X Search for Charged Higgs Bosons Produced via Vector Boson Fusion and Decaying into a Pair of $W$ and $Z$ Bosons Using $pp$ Collisions at $\sqrt{s}=13\text{ }\text{ }\mathrm{TeV}$
 1599400 ? Search for new phenomena with the $M_{\mathrm {T2}}$ variable in the all-hadronic final state produced in proton–proton collisions at $\sqrt{s} = 13$ $\,\text {TeV}$
 1599402 ? Search for Supersymmetry in $pp$ Collisions at $\sqrt{s}=13\text{ }\text{ }\mathrm{TeV}$ in the Single-Lepton Final State Using the Sum of Masses of Large-Radius Jets
 1599548 ? Measurement of the ${B}^{\pm}$ Meson Nuclear Modification Factor in Pb-Pb Collisions at $\sqrt{{s}_{NN}}=5.02\text{ }\text{ }\mathrm{TeV}$
 1601294 X Combination of searches for heavy resonances decaying to WW, WZ, ZZ, WH, and ZH boson pairs in proton–proton collisions at $\sqrt{s}=8$ and 13 TeV
 1601505 ! Measurements of $t\bar{t}$ cross sections in association with $b$ jets and inclusive jets and their ratio using dilepton final states in pp collisions at $\sqrt{s}$ = 13 TeV
 1601645 ? Search for Low Mass Vector Resonances Decaying to Quark-Antiquark Pairs in Proton-Proton Collisions at $\sqrt{s}=13\text{ }\text{ }\mathrm{TeV}$
 1601901 X Search for top quark partners with charge 5/3 in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1603635 ? Search for dark matter produced in association with heavy-flavor quark pairs in proton-proton collisions at $\sqrt{s}=13$ TeV
 1604273 ? Search for pair production of vector-like T and B quarks in single-lepton final states using boosted jet substructure in proton-proton collisions at  $\sqrt{s}=13$ TeV
 1604886 ? Search for new physics in the monophoton final state in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1605124 ? Searches for W′ bosons decaying to a top quark and a bottom quark in proton-proton collisions at 13 TeV
 1605128 ? Search for top squark pair production in pp collisions at $ \sqrt{s}=13 $ TeV using single lepton events
 1605397 X Particle-flow reconstruction and global event description with the CMS detector
-1605749 ! Measurements of jet charge with dijet events in pp collisions at $\sqrt{s}=8$ TeV
+1605749 . Measurements of jet charge with dijet events in pp collisions at $\sqrt{s}=8$ TeV
 1605750 ? Suppression of Excited $\Upsilon$ States Relative to the Ground State in Pb-Pb Collisions at $\sqrt{s_\mathrm{NN}}$=5.02 TeV
 1607560 ? Measurement of the semileptonic $ \mathrm{t}\overline{\mathrm{t}} $ + γ production cross section in pp collisions at $ \sqrt{s}=8 $ TeV  <neil.warrack@cern.ch>
 1607561 . Exclusive and semi-exclusive pi+pi- production in proton-proton collisions at sqrt(s) = 7 TeV
 1607793 ? Search for a heavy composite Majorana neutrino in the final state with two leptons and two quarks at $\sqrt{s}=13$ TeV
 1608161 ? Search for electroweak production of charginos and neutralinos in WH events in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1608162 X Measurements of properties of the Higgs boson decaying into the four-lepton final state in pp collisions at $ \sqrt{s}=13 $ TeV
 1608166 ! Measurement of charged pion, kaon, and proton production in proton-proton collisions at $\sqrt{s}=13$ TeV
 1608383 X Search for Higgs boson pair production in the $bb\tau\tau$ final state in proton-proton collisions at $\sqrt{(}s)=8\text{ }\text{ }\mathrm{TeV}$
 1608386 X Constraints on anomalous Higgs boson couplings using production and decay information in the four-lepton final state
 1608556 X P-Type Silicon Strip Sensors for the new CMS Tracker at HL-LHC
 1608774 ? Search for heavy resonances that decay into a vector boson and a Higgs boson in hadronic final states at $\sqrt{s} = 13$ $\,\text {TeV}$
 1609262 ? Search for Higgs boson pair production in events with two bottom quarks and two tau leptons in proton–proton collisions at $\sqrt s$ =13TeV
 1609449 ? Search for direct production of supersymmetric partners of the top quark in the all-jets final state in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1609450 ? Search for natural supersymmetry in events with top quark pairs and photons in pp collisions at $\sqrt{s} =$ 8 TeV
-1610623 ! Measurement of the differential cross sections for the associated production of a $W$ boson and jets in proton-proton collisions at $\sqrt{s}=13$ TeV
+1610623 . Measurement of the differential cross sections for the associated production of a $W$ boson and jets in proton-proton collisions at $\sqrt{s}=13$ TeV
 1610629 ? Search for supersymmetry in events with at least one photon, missing transverse momentum, and large transverse event activity in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1611299 ? Search for the pair production of third-generation squarks with two-body decays to a bottom or charm quark and a neutralino in proton–proton collisions at $\sqrt{s}$ = 13 TeV
 1611300 X Search for a light pseudoscalar Higgs boson produced in association with bottom quarks in pp collisions at $ \sqrt{s}=8 $ TeV
 1613900 X Observation of the Higgs boson decay to a pair of $\tau$ leptons with the CMS detector
+1614070 X CMS Physics
 1614320 ? Search for single production of a vector-like T quark decaying to a Z boson and a top quark in proton-proton collisions at $\sqrt s$ = 13 TeV
 1614482 X Constraints on the chiral magnetic effect using charge-dependent azimuthal correlations in $p\mathrm{Pb}$ and PbPb collisions at the CERN Large Hadron Collider
 1614779 ? Search for vectorlike light-flavor quark partners in proton-proton collisions at $\sqrt s$ =8  TeV
 1615207 ? Measurement of vector boson scattering and constraints on anomalous quartic couplings from events with four leptons and two jets in proton–proton collisions at $\sqrt{s}=$ 13 TeV
 1615780 . Measurement of prompt $D^0$ meson azimuthal anisotropy in Pb-Pb collisions at $\sqrt{{s}_{NN}}$ = 5.02 TeV
 1615868 ? Search for resonant and nonresonant Higgs boson pair production in the $ \mathrm{b}\overline{\mathrm{b}}\mathit{\ell \nu \ell \nu } $ final state in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1616207 . Nuclear modification factor of D$^0$ mesons in PbPb collisions at  $\sqrt{s_\mathrm{NN}} = 5.02$ TeV
 1616497 ? Search for massive resonances decaying into $WW$, $WZ$, $ZZ$, $qW$, and $qZ$ with dijet final states at $\sqrt{s}=13\text{ }\text{ }\mathrm{TeV}$
 1618346 . Principal-component analysis of two-particle azimuthal correlations in PbPb and $p\text{Pb}$ collisions at CMS
 1620050 ! Measurement of normalized differential $ \mathrm{t}\overline{\mathrm{t}} $ cross sections in the dilepton channel from pp collisions at $ \sqrt{s}=13 $ TeV  <neil.warrack@cern.ch>
 1620205 X Search for Evidence of the Type-III Seesaw Mechanism in Multilepton Final States in Proton-Proton Collisions at $\sqrt{s}=13\text{ }\text{ }\mathrm{TeV}$
 1620470 ? Search for heavy resonances decaying to a top quark and a bottom quark in the lepton+jets final state in proton–proton collisions at 13 TeV
 1620518 . Challenges to the chiral magnetic wave using charge-dependent azimuthal anisotropies in pPb and PbPb collisions at $\sqrt{\smash[b]{s_{_{\mathrm{NN}}}}} = $ 5.02 TeV
 1620905 ! Measurement of the Splitting Function in $pp$ and Pb-Pb Collisions at $\sqrt{s_{_{\mathrm{NN}}}} =$ 5.02 TeV
 1621281 ? Search for supersymmetry with Higgs boson to diphoton decays using the razor variables at $\sqrt{s} = $ 13 TeV
 1623562 ? Search for Higgsino pair production in $pp$ collisions at $\sqrt{s}$ = 13  TeV in final states with large missing transverse momentum and two Higgs bosons decaying via $H \to b \bar b$
 1624165 ! Search for electroweak production of charginos and neutralinos in multilepton final states in proton-proton collisions at $\sqrt{s}=$ 13 TeV  <andy.buckley@cern.ch>
 1624166 ? Inclusive search for a highly boosted Higgs boson decaying to a bottom quark-antiquark pair
 1624170 X Observation of electroweak production of same-sign W boson pairs in the two jet and two same-sign lepton final state in proton-proton collisions at $\sqrt{s} = $ 13 TeV
 1624694 X Observation of top quark production in proton-nucleus collisions
 1625108 X Evidence for the Higgs boson decay to a bottom quark–antiquark pair
 1625296 ? Measurements of the $\mathrm {p}\mathrm {p}\rightarrow \mathrm{Z}\mathrm{Z}$ production cross section and the $\mathrm{Z}\rightarrow 4\ell $ branching fraction, and constraints on anomalous triple gauge couplings at $\sqrt{s} = 13\,\text {TeV} $
 1625745 ! Search for new phenomena in final states with two opposite-charge, same-flavor leptons, jets, and missing transverse momentum in pp collisions at $ \sqrt{s}=13 $ TeV
 1625783 X Brightness and uniformity measurements of plastic scintillator tiles at the CERN H2 test beam
 1626103 ? Observation of Correlated Azimuthal Anisotropy Fourier Harmonics in $pp$ and $p+Pb$ Collisions at the LHC
 1627612 ? Search for supersymmetry in events with one lepton and multiple jets exploiting the angular correlation between the lepton and the missing transverse momentum in proton-proton collisions at $\sqrt{s} = $ 13 TeV
 1628094 ? Search for low mass vector resonances decaying into quark-antiquark pairs in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1628648 ? Search for pair production of vector-like quarks in the bW$\overline{\mathrm{b}}$W channel from proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1629153 ! Study of dijet events with a large rapidity gap between the two leading jets in pp collisions at $\sqrt{s}=7$ $\,\text {TeV}$
 1629160 ? Measurement of angular parameters from the decay $\mathrm{B}^0 \to \mathrm{K}^{*0} \mu^+ \mu^-$ in proton-proton collisions at $\sqrt{s} = $ 8 TeV
 1630635 ? Search for a massive resonance decaying to a pair of Higgs bosons in the four b quark final state in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1631982 ! Pseudorapidity and transverse momentum dependence of flow harmonics in pPb and PbPb collisions
 1631985 ! Measurement of differential cross sections in the kinematic angular variable $\phi^*$ for inclusive Z boson production in pp collisions at $\sqrt{s}=$ 8 TeV
 1632444 X Measurement of b hadron lifetimes in pp collisions at $\sqrt{s} =$ 8 TeV
 1632447 ? Search for supersymmetry in events with at least three electrons or muons, jets, and missing transverse momentum in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1632453 ! Pseudorapidity distributions of charged hadrons in proton-lead collisions at $\sqrt{s_{_\mathrm{NN}}} =$ 5.02 and 8.16 TeV
 1633423 X Search for standard model production of four top quarks with same-sign and multilepton final states in proton–proton collisions at $\sqrt{s} = 13\,\text {TeV} $
 1633431 ? Measurement of quarkonium production cross sections in pp collisions at $\sqrt{s}=$ 13 TeV
 1633588 ? Search for supersymmetry in proton-proton collisions at 13 TeV using identified top quarks
 1633763 ! Search for new physics in events with a leptonically decaying Z boson and a large transverse momentum imbalance in proton–proton collisions at $\sqrt{s} $ = 13 $\,\text {TeV}$
 1634253 ? Search for top squarks and dark matter particles in opposite-charge dilepton final states at $\sqrt{s}=$ 13 TeV
 1634835 . Measurement of associated Z + charm production in proton-proton collisions at $\sqrt{s} = $ 8 TeV
 1634843 . Measurement of the cross section for top quark pair production in association with a W or Z boson in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1635271 ? Measurement of the inclusive $ \mathrm{t}\overline{\mathrm{t}} $ cross section in pp collisions at $ \sqrt{s}=5.02 $ TeV using final states with at least one charged lepton
 1635889 . Measurement of the underlying event activity in inclusive Z boson production in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1635891 X Search for ZZ resonances in the 2$\ell$2$\nu$ final state in proton-proton collisions at 13 TeV
 1635896 ? Search for excited quarks of light and heavy flavor in $\gamma +$ jet final states in proton–proton collisions at $\sqrt{s} =$ 13TeV
 1636197 . Non-Gaussian elliptic-flow fluctuations in PbPb collisions at $\sqrt{\smash[b]{s_{_\text{NN}}}} = 5.02$ TeV
 1637580 ? Search for gauge-mediated supersymmetry in events with at least one photon and missing transverse momentum in pp collisions at $\sqrt{s} = $ 13 TeV
 1638988 ? Search for new long-lived particles at $\sqrt{s} =$ 13 TeV
 1638996 . Study of jet quenching with isolated-photon+jet correlations in PbPb and pp collisions at $\sqrt{s_{_{\mathrm{NN}}}} =$ 5.02 TeV
 1639443 ? Search for pair production of excited top quarks in the lepton + jets final state
 1641267 ? Constraints on the double-parton scattering cross section from same-sign W boson pair production in proton-proton collisions at $ \sqrt{s}=8 $ TeV
 1641762 ? Search for new physics in final states with an energetic jet or a hadronically decaying $W$ or $Z$ boson and transverse momentum imbalance at $\sqrt{s}=13\text{ }\text{ }\mathrm{TeV}$
 1641763 ? Search for the flavor-changing neutral current interactions of the top quark and the Higgs boson which decays into a pair of b quarks at $\sqrt{s}=$ 13 TeV
 1642230 ? Measurement of the associated production of a single top quark and a Z boson in pp collisions at $\sqrt{s} =$ TeV
 1642233 ? Search for Z$\gamma$ resonances using leptonic and hadronic final states in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1643640 ! Azimuthal correlations for inclusive 2-jet, 3-jet, and 4-jet events in pp collisions at $\sqrt{s}= $ 13 TeV
 1643829 X Search for the X(5568) state decaying into $\mathrm{B}^{0}_{\mathrm{s}}\pi^{\pm}$ in proton-proton collisions at $\sqrt{s} = $ 8 TeV
 1644362 X Identification of heavy-flavour jets with the CMS detector in pp collisions at 13 TeV
 1644363 ? Search for lepton flavour violating decays of the Higgs boson to $\mu\tau$ and e$\tau$ in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1644364 . Bose-Einstein correlations in $pp, p\mathrm{Pb}$, and PbPb collisions at $\sqrt{{s}_{NN}}=0.9-7$ TeV
 1644788 ? Search for Physics Beyond the Standard Model in Events with High-Momentum Higgs Bosons and Missing Transverse Momentum in Proton-Proton Collisions at 13 TeV
 1644901 ! Search for $R$-parity violating supersymmetry in pp collisions at $\sqrt{s} = $ 13 TeV using b jets in a final state with a single lepton, many jets, and high sum of large-radius jet masses  <andy.buckley@cern.ch>
 1644903 . Measurement of prompt and nonprompt charmonium suppression in $\text {PbPb}$ collisions at 5.02 $\,\text {Te}\text {V}$
 1645246 ? Electroweak production of two jets in association with a Z boson in proton–proton collisions at $\sqrt{s}= $ 13 $\,\text {TeV}$
 1645630 ? Search for decays of stopped exotic long-lived particles produced in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1646260 . Search for new physics in events with two soft oppositely charged leptons and missing transverse momentum in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1646584 X Radioactive source calibration test of the CMS Hadron Endcap Calorimeter test wedge with Phase I upgrade electronics
 1647562 . Measurement of the $\mathrm{Z}\gamma^{*} \to \tau\tau$ cross section in pp collisions at $\sqrt{s} = $ 13 TeV and validation of $\tau$ lepton analysis techniques
 1647947 ! Combined search for electroweak production of charginos and neutralinos in proton-proton collisions at $\sqrt{s} =$ 13 TeV
-1648162 ! Observation of medium induced modifications of jet fragmentation in PbPb collisions using isolated-photon-tagged jets
+1648162 ! Observation of Medium-Induced Modifications of Jet Fragmentation in Pb-Pb Collisions at $\sqrt{s_{NN}}=$ 5.02  TeV Using Isolated Photon-Tagged Jets
 1650462 . Search for dark matter in events with energetic, hadronically decaying top quarks and missing transverse momentum at $ \sqrt{s}=13 $ TeV
 1652833 . Comparing transverse momentum balance of b jet pairs in pp and PbPb collisions at $ \sqrt{s_{\mathrm{NN}}}=5.02 $ TeV
 1653123 . Search for lepton-flavor violating decays of heavy resonances and quantum black holes to eμ final states in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1653127 . Search for single production of vector-like quarks decaying to a b quark and a Higgs boson
 1653451 . Search for natural and split supersymmetry in proton-proton collisions at $ \sqrt{s}=13 $ TeV in final states with jets and missing transverse momentum
 1653948 . Measurement of the inelastic proton-proton cross section at $ \sqrt{s}=13 $ TeV
 1653954 . Search for heavy neutral leptons in events with three charged leptons in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1654926 ? Measurement of the $\Lambda_b$ polarization and angular parameters in $\Lambda_b\to J/\psi\, \Lambda$ decays from pp collisions at $\sqrt{s}=$ 7 and 8 TeV
 1655968 . Search for narrow resonances in the b-tagged dijet mass spectrum in proton-proton collisions at $\sqrt{s} =$ 8 TeV
 1656983 X Quality control for the first large areas of triple-GEM chambers for the CMS endcaps
 1657397 . Search for a heavy resonance decaying to a pair of vector bosons in the lepton plus merged jet final state at $ \sqrt{s}=13 $ TeV
 1658057 . Jet properties in PbPb and pp collisions at $ \sqrt{s_{\mathrm{N}\;\mathrm{N}}}=5.02 $ TeV
 1659106 . Search for third-generation scalar leptoquarks decaying to a top quark and a $\tau$ lepton at $\sqrt{s}=$ 13 TeV
 1662008 X Test beam demonstration of silicon microstrip modules with transverse momentum discrimination for the future CMS tracking detector
 1662081 . Measurements of differential cross sections of top quark pair production as a function of kinematic event variables in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1662083 . Search for a heavy resonance decaying into a Z boson and a vector boson in the $ \nu \overline{\nu}\mathrm{q}\overline{\mathrm{q}} $ final state
 1662293 X Observation of proton-tagged, central (semi)exclusive production of high-mass lepton pairs in pp collisions at 13 TeV with the CMS-TOTEM precision proton spectrometer
 1662661 X Evidence for associated production of a Higgs boson with a top quark pair in final states with electrons, muons, and hadronically decaying $\tau$ leptons at $\sqrt{s} =$ 13 TeV
 1662926 ! Search for high-mass resonances in dilepton final states in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1663234 ? Search for additional neutral MSSM Higgs bosons in the $\tau\tau$ final state in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1663385 X Search for $\mathrm{t}\overline{\mathrm{t}}$H production in the all-jet final state in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1663452 . Search for new physics in dijet angular distributions using proton–proton collisions at $\sqrt{s}=$ 13 TeV and constraints on dark matter and other models
 1663958 . Measurement of differential cross sections for the production of top quark pairs and of additional jets in lepton+jets events from pp collisions at $\sqrt{s} =$ 13 TeV
 1664330 . Search for a heavy resonance decaying into a Z boson and a Z or W boson in 2ℓ2q final states at $ \sqrt{s}=13 $ TeV
 1665226 . Search for a heavy right-handed W boson and a heavy neutrino in events with two same-flavor leptons and two jets at $\sqrt{s}=$ 13 TeV
 1665228 ! Search for high-mass resonances in final states with a lepton and missing transverse momentum at $ \sqrt{s}=13 $ TeV
 1666019 . Search for a new scalar resonance decaying to a pair of Z bosons in proton-proton collisions at $\sqrt{s}=13 $ TeV
 1666824 X Observation of $\mathrm{t\overline{t}}$H production
 1666825 X Measurements of Higgs boson properties in the diphoton decay channel in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1667189 X Search for $\mathrm{t\overline{t}}$H production in the $H\to\mathrm{b\overline{b}}$ decay channel with leptonic $\mathrm{t\overline{t}}$ decays in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1667449 X Performance of the CMS muon detector and muon reconstruction with proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1667854 ! Measurement of differential cross sections for Z boson production in association with jets in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1669245 . Search for disappearing tracks as a signature of new long-lived particles in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1670168 ! Elliptic flow of charm and strange hadrons in high-multiplicity pPb collisions at $\sqrt{s_{_\mathrm{NN}}} =$ 8.16 TeV
 1671499 X Measurement of the top quark mass with lepton+jets final states using $\mathrm {p}$ $\mathrm {p}$ collisions at $\sqrt{s}=13\,\text {TeV} $
 1672011 . Measurement of prompt $\psi$(2S) production cross sections in proton-lead and proton-proton collisions at $\sqrt{s_{_\mathrm{NN}}}=$ 5.02 TeV
 1672941 X Constraining gluon distributions in nuclei using dijets in proton-proton and proton-lead collisions at $\sqrt{s_{_\mathrm{NN}}} =$ 5.02 TeV
 1672962 ! Measurement of the groomed jet mass in PbPb and pp collisions at $ \sqrt{s_{\mathrm{NN}}}=5.02 $ TeV
 1672970 . Search for vector-like T and B quark pairs in final states with leptons at $\sqrt{s} =$ 13 TeV
 1673011 . Search for an exotic decay of the Higgs boson to a pair of light pseudoscalars in the final state of two muons and two $\tau$ leptons in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1673197 . Search for top squarks decaying via four-body or chargino-mediated modes in single-lepton final states in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1673362 . Search for black holes and sphalerons in high-multiplicity final states in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1674077 ? Measurement of the production cross section for single top quarks in association with W bosons in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1674529 . Measurement of nuclear modification factors of $\Upsilon$(1S), $\Upsilon$(2S), and $\Upsilon$(3S) mesons in PbPb collisions at $\sqrt{s_{_\mathrm{NN}}} =$ 5.02 TeV
 1674926 . Search for an exotic decay of the Higgs boson to a pair of light pseudoscalars in the final state with two b quarks and two $\tau$ leptons in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1674927 X Constraints on models of scalar and vector leptoquarks decaying to a quark and a neutrino at $\sqrt{s}=$ 13 TeV
 1675256 X Observation of the $\chi_\mathrm{b1}$(3P) and $\chi_\mathrm{b2}$(3P) and measurement of their masses
 1675818 ? Search for beyond the standard model Higgs bosons decaying into a $\mathrm{b\overline{b}}$ pair in pp collisions at $\sqrt{s} =$ 13 TeV
 1676092 ? Search for Higgs boson pair production in the $\gamma\gamma\mathrm{b\overline{b}}$ final state in pp collisions at $\sqrt{s}=$ 13 TeV
 1676212 ? Angular analysis of the decay B$^+$$\to$ K$^+\mu^+\mu^-$ in proton-proton collisions at $\sqrt{s} =$ 8 TeV
 1676214 . Search for narrow and broad dijet resonances in proton-proton collisions at $ \sqrt{s}=13 $ TeV and constraints on dark matter mediators and other new particles
 1676216 ? Measurement of the weak mixing angle using the forward-backward asymmetry of Drell-Yan events in pp collisions at 8 TeV
 1676219 . Search for pair-produced resonances each decaying into at least four quarks in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1677275 ? Search for a singly produced third-generation scalar leptoquark decaying to a $\tau$ lepton and a bottom quark in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1677276 . Search for resonant pair production of Higgs bosons decaying to bottom quark-antiquark pairs in proton-proton collisions at 13 TeV
 1677496 ? Observation of the Z$\to\psi\ell^+\ell^-$ decay in pp collisions at $\sqrt{s}=$ 13 TeV
 1677677 . Search for dark matter produced in association with a Higgs boson decaying to $\gamma\gamma$ or $\tau^+\tau^-$ at $\sqrt{s} =$ 13 TeV
 1677887 ? Measurements of properties of the Higgs boson decaying to a W boson pair in pp collisions at $\sqrt{s}=$ 13 TeV
 1677905 . Search for supersymmetric partners of electrons and muons in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1678088 . Search for the decay of a Higgs boson in the $\ell\ell\gamma$ channel in proton-proton collisions at $\sqrt{s} =$ 13 TeV
-1680021 . Search for heavy Majorana neutrinos in same-sign dilepton channels in proton-proton collisions at $\sqrt{s} =$ 13 TeV
-1680022 ! Measurement of differential cross sections for Z boson pair production in association with jets at $\sqrt{s}=$ 8 and 13 TeV
+1680021 . Search for heavy Majorana neutrinos in same-sign dilepton channels in proton-proton collisions at $ \sqrt{s}=13 $ TeV
+1680022 ! Measurement of differential cross sections for Z boson pair production in association with jets at $\sqrt{s} =$ 8 and 13 TeV
 1680298 X RPC upgrade project for CMS Phase II
 1680318 . Measurement of charged particle spectra in minimum-bias events from proton–proton collisions at $\sqrt{s}=13\,\text {TeV} $
 1680459 ! Measurement of differential cross sections for inclusive isolated-photon and photon+jets production in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1681016 . Search for supersymmetry in events with a $\tau$ lepton pair and missing transverse momentum in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1681435 ! Study of the underlying event in top quark pair production in pp collisions at 13 TeV
-1681436 . Search for heavy resonances decaying into a vector boson and a Higgs boson in final states with charged leptons, neutrinos and b quarks at $\sqrt{s}=$ 13 TeV
+1681436 . Search for heavy resonances decaying into a vector boson and a Higgs boson in final states with charged leptons, neutrinos and b quarks at $ \sqrt{s}=13 $ TeV
 1681748 ! Measurement of inclusive and differential Higgs boson production cross sections in the diphoton decay channel in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1682069 X Precision measurement of the structure of the CMS inner tracking system using nuclear interactions
-1682495 ! Measurements of the differential jet cross section as a function of the jet mass in dijet events from proton-proton collisions at $ \sqrt{s}=13 $ TeV
-1682776 . Search for the Higgs boson decaying to two muons in proton-proton collisions at $\sqrt{s}=$ 13 TeV
+1682495 . Measurements of the differential jet cross section as a function of the jet mass in dijet events from proton-proton collisions at $ \sqrt{s}=13 $ TeV
+1682776 . Search for the Higgs boson decaying to two muons in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1682779 . Search for dark matter particles produced in association with a top quark pair at $\sqrt{s} =$ 13 TeV
 1683312 . Searches for pair production of charginos and top squarks in final states with two oppositely charged leptons in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1684340 . Search for a W' boson decaying to a $\tau$ lepton and a neutrino in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1685054 . Search for narrow H$\gamma$ resonances in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1685201 . Search for resonances in the mass spectrum of muon pairs produced in association with b quark jets in proton-proton collisions at $\sqrt{s} =$ 8 and 13 TeV
 1685232 . Search for production of Higgs boson pairs in the four b quark final state using large-area jets in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1685235 . Search for heavy resonances decaying into two Higgs bosons or into a Higgs boson and a W or Z boson in proton-proton collisions at 13 TeV
 1685989 . Search for pair-produced resonances decaying to quark pairs in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1685992 . Search for long-lived particles with displaced vertices in multijet events in proton-proton collisions at $\sqrt{s}= $13 TeV
-1686000 ! Evidence for the associated production of a single top quark and a photon in proton-proton collisions at $\sqrt{s}=$ 13 TeV <andy.buckley@cern.ch>
+1686000 ! Evidence for the associated production of a single top quark and a photon in proton-proton collisions at $\sqrt{s}=$ 13 TeV  <andy.buckley@cern.ch>
 1686833 . Search for an $L_{\mu}-L_{\tau}$ gauge boson using Z$\to4\mu$ events in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1687544 . Search for pair production of second-generation leptoquarks at $\sqrt{s}=$ 13 TeV
 1688938 . Search for a charged Higgs boson decaying to charm and bottom quarks in proton-proton collisions at $ \sqrt{s}=8 $ TeV
-1690148 ! Measurement of jet substructure observables in $\mathrm{t\overline{t}}$ events from proton-proton collisions at $\sqrt{s}=$ 13TeV
+1690148 . Measurement of jet substructure observables in $\mathrm{t\overline{t}}$ events from proton-proton collisions at $\sqrt{s}=$ 13TeV
 1691854 X Observation of Higgs boson decay to bottom quarks
 1692558 ? Charged-particle nuclear modification factors in XeXe collisions at $ \sqrt{s_{\mathrm{NN}}} = 5.44 $ TeV
 1692559 . Search for physics beyond the standard model in high-mass diphoton events from proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1693412 X Performance of reconstruction and identification of $\tau$ leptons decaying to hadrons and $\nu_\tau$ in pp collisions at $\sqrt{s}=$ 13 TeV
 1693614 X Studies of ${\mathrm {B}} ^{*{\mathrm {s}}2}(5840)^0 $ and ${\mathrm {B}} _{{\mathrm {s}}1}(5830)^0 $ mesons including the observation of the ${\mathrm {B}} ^{*{\mathrm {s}}2}(5840)^0 \rightarrow {\mathrm {B}} ^0 \mathrm {K} ^0_{\mathrm {S}} $ decay in proton-proton collisions at $\sqrt{s}=8\,\text {TeV} $
 1693616 . Search for the associated production of the Higgs boson and a vector boson in proton-proton collisions at $\sqrt{s}=$ 13 TeV via Higgs boson decays to $\tau$ leptons
 1694380 . Search for invisible decays of a Higgs boson produced through vector boson fusion in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1694381 . Search for leptoquarks coupled to third-generation quarks in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1695278 . Jet shapes of isolated photon-tagged jets in PbPb and pp collisions at $\sqrt{s_\mathrm{NN}} =$ 5.02 TeV
 1695301 . Search for single production of vector-like quarks decaying to a top quark and a W boson in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1696325 . Measurement of exclusive $\Upsilon$ photoproduction from protons in pPb collisions at $\sqrt{s_\mathrm{NN}} =$ 5.02 TeV
 1696402 X Fast timing measurement for CMS RPC Phase-II upgrade
 1696607 X Combined measurements of Higgs boson couplings in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1696608 ! Search for new physics in final states with a single photon and missing transverse momentum in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1696868 . Observation of prompt J/$\psi$ meson elliptic flow in high-multiplicity pPb collisions at $\sqrt{s_\mathrm{NN}} =$ 8.16 TeV
 1697570 . Search for top quark partners with charge 5/3 in the same-sign dilepton and single-lepton final states in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1697571 . Measurement of B$^0_\mathrm{s}$ meson production in pp and PbPb collisions at $\sqrt{s_\mathrm{NN}} =$ 5.02 TeV
 1697838 . Evidence for light-by-light scattering and searches for axion-like particles in ultraperipheral PbPb collisions at $\sqrt{s_\mathrm{NN}} =$ 5.02 TeV
 1698385 . Centrality and pseudorapidity dependence of the transverse energy density in pPb collisions at $\sqrt{s_\mathrm{NN}}=$ 5.02 TeV
 1698822 . Search for resonant $\mathrm{t \bar{t}}$ production in proton-proton collisions at $\sqrt{s}=$ 13 TeV
-1700167 . Search for pair-produced three-jet resonances in proton-proton collisions at $\sqrt{s}=$ 13 TeV
+1700167 . Search for pair-produced three-jet resonances in proton-proton collisions at $\sqrt s$ =13  TeV
 1700173 . Search for new particles decaying to a jet and an emerging jet
-1700175 . Search for rare decays of Z and Higgs bosons to J$/\psi$ and a photon in proton-proton collisions at $\sqrt{s}=$ 13 TeV
+1700175 . Search for rare decays of Z and Higgs bosons to J$/\psi$ and a photon in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1700575 . Studies of beauty suppression via nonprompt D$^0$ mesons in PbPb collisions at $\sqrt{s_\mathrm{NN}}=$ 5.02 TeV
 1700756 . Search for low-mass resonances decaying into bottom quark-antiquark pairs in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1700771 . Search for nonresonant Higgs boson pair production in the $\mathrm{b\overline{b}b\overline{b}}$ final state at $\sqrt{s} =$ 13 TeV
-1701612 ! Event shape variables measured using multijet final states in proton-proton collisions at $\sqrt{s} =$ 13 TeV
+1701612 ! Event shape variables measured using multijet final states in proton-proton collisions at $ \sqrt{s}=13 $ TeV
 1701635 . Search for heavy neutrinos and third-generation leptoquarks in hadronic states of two $\tau$ leptons and two jets in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1702163 . Search for pair production of first-generation scalar leptoquarks at $\sqrt{s}=$ 13 TeV
 1702433 . Search for excited leptons in $\ell\ell\gamma$ final states in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1703980 . Search for dark matter produced in association with a Higgs boson decaying to a pair of bottom quarks in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1703993 ! Measurements of $\mathrm{t\overline{t}}$ differential cross sections in proton-proton collisions at $\sqrt{s}=$ 13 TeV using events containing two leptons
 1704130 . Search for a W' boson decaying to a vector-like quark and a top or bottom quark in the all-jets final state
 1704319 . Search for long-lived particles decaying into displaced jets in proton-proton collisions at $\sqrt{s}=$ 13 TeV
 1704494 . Search for a standard model-like Higgs boson in the mass range between 70 and 110 GeV in the diphoton final state in proton-proton collisions at $\sqrt{s}=$ 8 and 13 TeV
 1704939 ? Combination of searches for Higgs boson pair production in proton-proton collisions at $\sqrt{s} = $ 13 TeV
 1704945 . Search for associated production of a Higgs boson and a single top quark in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1704953 . Search for resonant production of second-generation sleptons with same-sign dimuon events in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1704960 . Search for dark matter in events with a leptoquark and missing transverse momentum in proton-proton collisions at 13 TeV
 1705068 . Measurement of associated production of a W boson and a charm quark in proton-proton collisions at $\sqrt{s} =$ 13 TeV
 1706172 . A search for pair production of new light bosons decaying into muons in proton-proton collisions at 13 TeV
+1706262 X Layout and Assembly Technique of the GEM Chambers for the Upgrade of the CMS First Muon Endcap Station
 1706995 . Measurement of inclusive very forward jet cross sections in proton-lead collisions at $\sqrt{s_\mathrm{NN}}=$ 5.02 TeV
+1708516 . Search for supersymmetry in events with a photon, a lepton, and missing transverse momentum in proton-proton collisions at $\sqrt{s} =$ 13 TeV
+1708620 ! Measurement of the energy density as a function of pseudorapidity in proton-proton collisions at $\sqrt{s}=$ 13 TeV
+1709180 . Observation of single top quark production in association with a Z boson in proton-proton collisions at $\sqrt{s} =$ 13 TeV
+1709317 . Search for an exotic decay of the Higgs boson to a pair of light pseudoscalars in the final state with two muons and two b quarks in pp collisions at 13 TeV
+1709318 ! Inclusive search for supersymmetry in pp collisions at $\sqrt{s}=$ 13 TeV using razor variables and boosted object identification in zero and one lepton final states
+1709330 ! Measurement and interpretation of differential cross sections for Higgs boson production at $\sqrt{s}=$ 13 TeV
+1709333 . Search for a heavy resonance decaying to a top quark and a vector-like top quark in the lepton+jets final state in pp collisions at $\sqrt{s} =$ 13 TeV
+1711231 . Search for contact interactions and large extra dimensions in the dilepton mass spectra from proton-proton collisions at $\sqrt{s}=$ 13 TeV
+1711260 . Search for vector-like quarks in events with two oppositely charged leptons and jets in proton-proton collisions at $\sqrt{s} =$ 13 TeV
+1711625 ! Measurement of the differential Drell-Yan cross section in proton-proton collisions at $\sqrt{s} =$ 13 TeV
+1711626 . Measurement of the $\mathrm{t}\overline{\mathrm{t}}$ production cross section, the top quark mass, and the strong coupling constant using dilepton events in pp collisions at $\sqrt{s}=$ 13 TeV
+1711672 ? Measurement of the top quark mass in the all-jets final state at $\sqrt{s}=$ 13 TeV and combination with the lepton+jets channel
+1712372 . Search for the pair production of light top squarks in the e$^{\pm}\mu^{\mp}$ final state in proton-proton collisions at $\sqrt{s}$ = 13 TeV
+1712378 . Search for dark matter produced in association with a single top quark or a top quark pair in proton-proton collisions at $\sqrt{s}=$ 13 TeV
+1712708 ? Measurements of the Higgs boson width and anomalous HVV couplings from on-shell and off-shell production in the four-lepton final state
+1712748 . Measurement of the single top quark and antiquark production cross sections in the $t$ channel and their ratio in proton-proton collisions at $\sqrt{s}=$ 13 TeV
+1713417 ! Measurements of the pp$\to$WZ inclusive and differential production cross section and constraints on charged anomalous triple gauge couplings at $\sqrt{s} =$ 13 TeV
+1713565 . Measurement of electroweak WZ boson production and search for new physics in WZ $+$ two jets events in pp collisions at $\sqrt{s} =$ 13 TeV
+1716137 . Search for supersymmetry in events with a photon, jets, b-jets, and missing transverse momentum in proton-proton collisions at 13 TeV
+1716441 . Charged-particle angular correlations in XeXe collisions at $\sqrt{s_{_\mathrm{NN}}}=$ 5.44 TeV
+1717867 ? Search for W boson decays to three charged pions
+1718338 ? Observation of two excited B$^+_\mathrm{c}$ states and measurement of the B$^+_\mathrm{c}$(2S) mass in pp collisions at $\sqrt{s} =$ 13 TeV
+1718344 . Measurement of exclusive $\rho^0$(770) photoproduction in ultraperipheral pPb collisions at $\sqrt{s_\mathrm{NN}} =$ 5.02 TeV
+1719334 ! Pseudorapidity distributions of charged hadrons in xenon-xenon collisions at $\sqrt{s_\mathrm{NN}} =$ 5.44 TeV
+1719955 ! Azimuthal separation in nearly back-to-back jet topologies in inclusive 2- and 3-jet events in pp collisions at $\sqrt{s}=$ 13 TeV
diff --git a/doc/rivet-coverage-lhcb.rank b/doc/rivet-coverage-lhcb.rank
--- a/doc/rivet-coverage-lhcb.rank
+++ b/doc/rivet-coverage-lhcb.rank
@@ -1,458 +1,469 @@
+480267 X LHCb technical proposal
+571461 X LHCb online system technical design report: Data acquisition and experiment control
+796248 X The LHCb Detector at the LHC
+840887 X Roadmap for selected key measurements of LHCb
 865584 . Prompt $K^0_s$ production in $pp$ collisions at $\sqrt{s}=0.9~\rm{TeV}$
 867355 . Measurement of $\sigma(pp \to b \bar{b} X)$ at $\sqrt{s}=7~\rm{TeV}$ in the forward region
 886284 ? First observation of $B^0_s \to J/\psi f_0(980)$ decays
 886536 ? First observation of $\bar{B}^0_s \to D_{s2}^{*+} X \mu^-\bar{\nu}$ decays
 891233 ? Measurement of $J/\psi$ production in $pp$ collisions at $\sqrt{s}=7~\rm{TeV}$
 892495 ? Search for the rare decays $B^0_s \to \mu^+\mu^-$ and $B^0 \to \mu^+\mu^-$
 914506 . Determination of $f_s/f_d$ for $7~\rm{TeV}$ $pp$ collisions and a measurement of the branching fraction of the decay $B_d\to D^-K^+$
 917009 . Measurement of $V^0$ production ratios in $pp$ collisions at $\sqrt{s} = 0.9$ and $7~\rm{TeV}$
 919315 . Measurement of the inclusive $\phi$ cross-section in $pp$ collisions at $\sqrt{s}=$ 7 TeV
 926280 X Observation of $J/\psi$ pair production in $pp$ collisions at $\sqrt{s}=7 TeV$
 930219 . Measurements of the Branching fractions for $B_{(s)} \to D_{(s)}\pi\pi\pi$ and $\Lambda_b^0 \to \Lambda_c^+\pi\pi\pi$
 930417 ? Search for the lepton number violating decays $B^{+}\to \pi^- \mu^+ \mu^+$ and $B^{+}\to K^- \mu^+ \mu^+$
 939619 X Absolute luminosity measurements with the LHCb detector at the LHC
 940142 X First observation of the decay $\bar{B}^0_s \to D^0 K^{*0}$ and a measurement of the ratio of branching fractions $\frac{{\cal B}(\bar{B}^0_s \to D^0 K^{*0})}{{\cal B}(\bar{B}^0 \to D^0 \rho^0)}$
 940366 X Search for CP violation in $D^{+} \to K^{-}K^{+}\pi^{+}$ decays
 944152 . Measurement of the effective $B^0_s\rightarrow K^+K^-$ lifetime
 945381 . Measurement of $b$-hadron production fractions in $7~\rm{TeV}$ pp collisions
 946440 X First observation of the decay $B^0_s \to K^{*0} \bar{K}^{*0}$
 1079920 ? Evidence for CP violation in time-integrated $D^0 \to h^-h^+$ decay rates
 1080385 . Search for the rare decays $B^0_s \to \mu^+ \mu^-$ and $B^0 \to \mu^+ \mu^-$
 1081268 . Measurement of the CP violating phase $\phi_s$ in $\bar{B}^0_s \to J/\psi f_0(980)$
 1081275 . Measurement of the CP-violating phase $\phi_s$ in the decay $B^0_s\to J/\psi \phi$
 1081581 . Differential branching fraction and angular analysis of the decay $B^{0} \to K^{*0} \mu^+ \mu^-$
 1082063 . Measurement of the $B^0_s - \bar{B}^0_s$ oscillation frequency $\Delta m_s$ in $B^0_s \to D_s^-(3) \pi$ decays
 1082327 . Measurement of mixing and CP violation parameters in two-body charm decays
 1082328 . Observation of $B_s \to J/\psi f^\prime_2(1525)$ in $J/\psi K^+K^-$ final states
 1082369 . Measurement of charged particle multiplicities in $pp$ collisions at ${\sqrt{s} =7}$TeV in the forward region
 1082449 . Measurement of $b$-hadron masses
 1082706 . Observation of $X(3872) $ production in $pp$ collisions at $\sqrt{s}=7$ TeV
 1085516 . First observation of the decays $\bar{B}^0 \to D^{+} K^{-} \pi^{+} \pi^{-}$ and $B^{-} \to D^0 K^{-} \pi^{+} \pi^{-}$
 1085982 ? Searches for Majorana neutrinos in $B^-$ decays
 1087907 . Measurement of the cross-section ratio $\sigma(\chi_{c2})/\sigma(\chi_{c1})$ for prompt $\chi_c$ production at $\sqrt{s}=7$ TeV
 1089837 . Determination of the sign of the decay width difference in the $B_s$ system
 1089993 . Measurement of the $B^\pm$ production cross-section in $pp$ collisions at $\sqrt{s}=7$ TeV
 1090061 . Opposite-side flavour tagging of B mesons at the LHCb experiment
 1090150 . Search for the $X(4140)$ state in $B^+ \to J/\psi \phi K^+$ decays
 1090895 X First evidence of direct  $C\!P$ violation in charmless two-body decays of $B^0_s$ mesons
 1090962 . Measurement of the ratio of branching fractions $\mathcal{B}(B^0\to K^{*0}\gamma)/\mathcal{B}(B_s^0\to\phi\gamma)$
 1091071 . Measurement of Upsilon production in pp collisions at $\sqrt{s}$ = 7 TeV
 1094045 . Measurements of the branching fractions and $C\!P$ asymmetries of $B^{\pm} \to J\!/\!\psi\, \pi^{\pm}$ and $B^{\pm} \to \psi(2S) \pi^{\pm}$ decays
 1094080 . Observation of CP violation in $B^\pm \to DK^\pm$ decays
 1094383 . Strong constraints on the rare decays $B_s \to \mu^+ \mu^-$ and $B^0 \to \mu^+ \mu^-$
 1097092 . First observation of the decay $B_c^+ \to J/\psi \pi^+\pi^-\pi^+$
 1104751 . Measurements of the branching fractions of the decays $B^{0}_{s} \to D^{\mp}_{s} K^{\pm} $ and $B^{0}_{s} \to D^{-}_{s} \pi^{+}$
 1104754 X Measurement of $\psi(2S)$ meson production in pp collisions at $\sqrt{s}$=7 TeV
 1107645 . Measurement of the ratio of prompt $\chi_{c}$ to $J/\psi$ production in $pp$ collisions at $\sqrt{s}=7$ TeV
 1107729 . Inclusive $W$ and $Z$ production in the forward region at $\sqrt{s} = 7$ TeV
 1110692 X Measurement of the polarization amplitudes and triple product asymmetries in the $B_s^0 \to \phi\phi$ decay
 1112264 X Analysis of the resonant components in $B_s \to J/\psi\pi^+\pi^-$
 1112268 X Measurement of the CP-violating phase $\phi_s$ in $\overline{B}^0_s \to J/\psi\pi^+\pi^-$ decays
 1113593 ? Measurement of the $D_s^+ - D_s^-$ production asymmetry in 7 TeV $pp$ collisions
 1113594 X Measurement of relative branching fractions of B decays to $\psi(2S)$ and $J/\psi$ mesons
 1113595 X Measurement of the $B_s^0\to J/\psi K_S^0$ branching fraction
 1113596 X Observation of double charm production involving open charm in pp collisions at $\sqrt{s}$ = 7 TeV
 1114752 . Measurement of the isospin asymmetry in $B \to K^{(*)}\mu^+\mu^-$ decays
 1114753 . Observation of excited $\Lambda_b^0$ baryons
 1118162 . Measurement of $b$-hadron branching fractions for two-body decays into charmless charged hadrons
 1119400 . Measurement of prompt hadron production ratios in $pp$ collisions at $\sqrt{s} = $ 0.9 and 7 TeV
 1121120 X Measurement of the $B_s$ effective lifetime in the $J/\psi f_0(980)$ final state
 1123797 X Observation of $B^0 \to \bar{D}^0 K^+ K^-$ and evidence of $B^0_s \to \bar{D}^0 K^+ K^-$
 1123798 . Measurement of the effective $B_s^0 \rightarrow K^+ K^-$ lifetime
 1123799 . Study of $D_{sJ}$ decays to $D^+K^0_S$ and $D^0K^+$ final states in $pp$ collisions
 1125853 X Measurement of the $B^0_s \rightarrow J/\psi \bar{K}^{*0}$ branching fraction and angular amplitudes
 1127719 . Implications of LHCb measurements and future prospects
 1184177 . Measurement of the fraction of $\Upsilon(1S)$ originating from $\chi_b(1P)$ decays in $pp$ collisions at $\sqrt{s} = 7$ TeV
 1184178 . Measurement of the ratio of branching fractions $BR(B_0 \to K^{\star 0} \gamma)/BR(B_{s0} \to \phi \gamma)$ and the direct CP asymmetry in $B_0 \to K^{\star 0} \gamma$
 1186389 . Search for the rare decay $K_S \to \mu^+ \mu^-$
 1186557 . Differential branching fraction and angular analysis of the $B^{+} \rightarrow K^{+}\mu^{+}\mu^{-}$ decay
 1188009 . Measurements of $B_c^+$ production and mass with the $B_c^+ \to J/\psi \pi^+$ decay
 1188164 . A model-independent Dalitz plot analysis of $B^\pm \to D K^\pm$ with $D \to K^0_{\rm S} h^+h^-$ ($h=\pi, K$) decays and constraints on the CKM angle $\gamma$
 1189187 . First evidence for the annihilation decay mode $B^{+} \to D_{s}^{+} \phi$
 1189991 . Evidence for the decay $B^0\to J/\psi \omega$ and measurement of the relative branching fractions of $B^0_s$ meson decays to $J/\psi\eta$ and $J/\psi\eta^{'}$
 1189993 . First observation of the decay $B^{+} \rightarrow \pi^{+} \mu^{+} \mu^{-}$
 1190679 X Measurement of the D+/- production asymmetry in 7 TeV pp collisions
 1190893 X Measurement of the $C\!P$ asymmetry in $B^0 \to K^{*0} \mu^+ \mu^-$ decays
 1192922 . A study of the $Z$ production cross-section in $pp$ collisions at $\sqrt{s} = 7$ TeV using tau final states
 1193340 . Measurement of the $B^0$--$\bar B^0$ oscillation frequency $\Delta m_d$ with the decays $B^0 \to D^- \pi^+$ and $B^0 \to J\ \psi K^{*0}$
 1198431 X Observation of $D^0 - \overline{D}^0$ oscillations
 1199002 X First observation of the decays $\bar{B}^0_{(s)}\to D_s^+K^-\pi^+\pi^-$ and $\bar{B}^0_s\to D_{s1}(2536)^+\pi^-$
 1202279 X First Evidence for the Decay $B_s^0 \to \mu^+ \mu^-$
 1203846 X First observation of the decay $B_{s2}^*(5840)^0 \to B^{*+} K^-$ and studies of excited $B^0_s$ mesons
 1203851 X Measurement of the time-dependent $CP$ asymmetry in $B^0 \to J/\psi K^0_{\rm S}$ decays
 1205646 . Measurement of $J/\psi$ production in $pp$ collisions at $\sqrt{s}=2.76$ TeV
 1208102 . Measurement of the cross-section for $Z \to e^+e^-$ production in $pp$ collisions at $\sqrt{s}=7$ TeV
 1208105 . Measurement of the forward energy flow in $pp$ collisions at $\sqrt{s}=7$ TeV
 1208305 . Measurement of CP observables in $B^0 \to D K^{*0}$ with $D \to K^+ K^-$
 1215607 . Measurement of the fragmentation fraction ratio $f_{s}/f_{d}$ and its dependence on $B$ meson kinematics
 1215769 ? Analysis of the resonant components in $B^¯+0 \to J/\psi\pi^+\pi^-$
 1216886 . Exclusive $J/\psi$ and $\psi$(2S) production in pp collisions at $ \sqrt{s} = 7$ TeV
 1217726 X Measurement of the $\Lambda_b^0$, $\Xi_b^-$ and $\Omega_b^-$ baryon masses
 1217862 X Amplitude analysis and the branching fraction measurement of $\bar{B}^0_s \to J/\psi K^+K^-$
 1218996 . Prompt charm production in pp collisions at sqrt(s)=7 TeV
 1220792 ? Measurements of the $\Lambda_b^0 \to J/\psi \Lambda$ decay amplitudes and the $\Lambda_b^0$ polarisation in $pp$ collisions at $\sqrt{s} = 7$ TeV
 1221043 . First observations of $\bar{B}_s^0 \to D^+D^-$, $D_s^+D^-$ and $D^0\bar{D}^0$ decays
 1221245 X Determination of the X(3872) meson quantum numbers
 1221248 X Observations of $B^0_s \rightarrow\psi(2S)\eta$ and $B^0_{(s)}\rightarrow\psi(2S)\pi^+\pi^-$ decays
 1221251 . Search for the decay $B_s^0 \to D^{*\mp} \pi^\pm$
 1222505 X Search for rare $B^0_{(s)}\rightarrow \mu^+ \mu^- \mu^+ \mu^-$ decays
 1222846 X Observation of the decay $B_c^+ \to \psi(2S)\pi^+$
 1223327 X Search for direct CP violation in D0 -> h- h+ modes using semileptonic B decays
 1224274 X Observation of the suppressed ADS modes $B^\pm \to [\pi^\pm K^\mp \pi^+\pi^-]_D K^\pm$ and $B^\pm \to [\pi^\pm K^\mp \pi^+\pi^-]_D \pi^\pm$
 1224542 X Search for CP violation in D+ -> phi pi+ and Ds+ -> Ks pi+ decays
 1225663 . Study of $B^0 \to D^{*-} \pi^+ \pi^- \pi^+$ and $B^0 \to D^{*-}K^+\pi^-\pi^+$ decays
 1225786 X First measurement of the CP-violating phase in $B_s^0 \to \phi \phi$ decays
 1225787 . Measurements of the branching fractions of $B^{+} \to p \bar p K^{+}$ decays
 1227655 . Limits on neutral Higgs boson production in the forward region in $pp$ collisions at $\sqrt{s} = 7$ TeV
 1227656 X Measurement of CP violation and the $B^0_s$ meson decay width difference with $B^0_s$ → $J/ψK^+K^-$ and $B^0_s$ → $J/ψπ^+π^-$ decays
 1227805 X Measurement of the $B^0 \rightarrow K^{*0}e^+e^-$ branching fraction at low dilepton mass
 1228504 . Measurement of the effective B_s^0 -> J/{\psi} K_S^0 lifetime
 1228505 X Searches for violation of lepton flavour and baryon number in tau lepton decays at LHCb
 1228506 . Observation of $B^+_c \rightarrow J/\psi D_s^+$ and $B^+_c \rightarrow J/\psi D_s^{*+}$ decays
 1228694 . Precision measurement of the $B^{0}_{s}$-$\bar{B}^{0}_{s}$ oscillation frequency with the decay $B^{0}_{s}\rightarrow D^{-}_{s}\pi^{+}$
 1229496 X First observation of $CP$ violation in the decays of $B^0_s$ mesons
 1229503 X Measurement of the branching fractions of the decays $B^0_s \to \overline{D}^0K^-\pi^+$ and $B^0 \to \overline{D}^0K^+\pi^-$
 1229504 X Differential branching fraction and angular analysis of the decay $B^{0} \to K^{*0} \mu^{+}\mu^{-}$
 1229506 X Search for D+(s) to pi+ mu+ mu- and D+(s) to pi- mu+ mu+ decays
 1230340 X Precision measurement of D meson mass differences
 1230344 . Production of J/psi and Upsilon mesons in pp collisions at sqrt(s) = 8 TeV
 1232503 X Measurement of the CKM angle $\gamma$ from a combination of $B^{\pm} \to Dh^{\pm}$ analyses
 1232507 X Differential branching fraction and angular analysis of the decay $B_s^0\to\phi\mu^{+}\mu^{-}$
 1235028 X Search for the rare decay $D^0 \to \mu^+ \mu^-$
 1235731 X Observation of $B^0_s\rightarrow\chi_{c1}\phi$ decay and study of $B^0\rightarrow\chi_{c1,2}K^{*0}$ decays
 1237228 X Measurement of CP violation in the phase space of $B^{\pm} \to K^{\pm} \pi^{+} \pi^{-}$ and $B^{\pm} \to K^{\pm} K^{+} K^{-}$ decays
 1237918 X First observation of the decay $B_s^0 \rightarrow \phi \bar{K}^{*0}$
 1238106 ? Measurement of the differential branching fraction of the decay $\Lambda_b^0\rightarrow\Lambda\mu^+\mu^-$
 1238809 . Measurement of B meson production cross-sections in proton-proton collisions at $\sqrt{s}$ = 7 TeV
 1239158 . Searches for $B^0_{(s)} \to J/\psi p\bar{p}$ and $B^+ \to J/\psi p\bar{p}\pi^+$ decays
 1240498 X First observation of the decay $B_{c}^{+}\to J/\psi K^+$
 1242008 X Precision measurement of the $\Lambda_b$ baryon lifetime
 1242126 ? Measurement of the polarization amplitudes  in $B^0 \to J/\psi K^{*}(892)^0$ decays
 1242869 . Measurement of the relative rate of prompt $\chi_{c0}$, $\chi_{c1}$ and $\chi_{c2}$ production at $\sqrt{s}=7$TeV
 1243156 . Study of $D_J$ meson decays to $D^+\pi^-$, $D^0 \pi^+$ and $D^{*+}\pi^-$ final states in pp collision
 1243421 X Search for the lepton-flavor violating decays $B^0_s \rightarrow e^{\pm}\mu^{\mp}$ and $B^0 \rightarrow e^{\pm} \mu^{\mp}$
 1243424 X Measurement of the $B^0_s \to \mu^+ \mu^-$ branching fraction and search for $B^0 \to \mu^+ \mu^-$ decays at the LHCb experiment
 1244131 . Studies of the decays $B^+ \to p \bar p h^+$ and observation of $B^+ \to \kern 0.1em\bar{\kern -0.1em\Lambda}(1520)p$
 1244315 . Measurement of $J/\psi$ polarization in $pp$ collisions at $\sqrt{s}=7$ TeV
 1245025 X Observation of a resonance in $B^+ \to K^+ \mu^+\mu^-$ decays at low recoil
 1245030 . Study of $B_{(s)}^0 \to K_{\rm S}^0 h^{+} h^{\prime -}$ decays with first observation of $B_{s}^0 \to K_{\rm S}^0 K^{\pm} \pi^{\mp}$ and $B_{s}^0 \to K_{\rm S}^0 \pi^{+} \pi^{-}$
 1246367 X First evidence for the two-body charmless baryonic decay $B^0 \to p \bar{p}$
 1246368 . Measurement of the flavour-specific CP-violating asymmetry $a_{sl}^s$ in $B_s^0$ decays
 1246783 X Branching fraction and CP asymmetry of the decays $B^+ \to K_{\rm \scriptscriptstyle S}^0 \pi^+$ and $B^+ \to K_{\rm \scriptscriptstyle S}^0 K^+$
 1246784 . Observation of $B^0_s$-$\bar{B}^0_s$ mixing and measurement of mixing frequencies using semileptonic B decays
 1246785 . Measurement of the $CP$ asymmetry in $B^+ \rightarrow K^+ \mu^+ \mu^-$ decays
 1246901 . First measurement of time-dependent $C\!P$ violation in $B^0_s \to K^+K^-$ decays
 1247054 . Measurement of Form-Factor-Independent Observables in the Decay $B^{0} \to K^{*0} \mu^+ \mu^-$
 1247810 . Model-independent search for $CP$ violation in $D^{0} \to K^{-}K^{+}\pi^{-}\pi^{+}$ and $D^{0} \to \pi^{-}\pi^{+}\pi^{+}\pi^{-}$ decays
 1250004 . Observation of the Decay $B^+_c → B^0_sπ^+$
 1250005 . Observation of the decay $B_s^0\to\bar{D}^0\phi$
 1251062 X First observation of $\bar B^0 \to J/\psi K^+K^-$ and search for $\bar B^0 \to J/\psi\phi$ decays
 1251899 . Study of $J/\psi$ production and cold nuclear matter effects in $pPb$ collisions at $\sqrt{s_{NN}} = 5$ TeV
 1252556 X Observation of the decay $B_c \rightarrow J/\psi K^+ K^- \pi^+ $
 1254225 ? Measurement of the charge asymmetry in $B^{\pm}\rightarrow \phi K^{\pm}$ and search for $B^{\pm}\rightarrow \phi \pi^{\pm}$ decays
 1255432 X Measurement of $D^0–\bar D^0$ Mixing Parameters and Search for $CP$ Violation Using $D^0 \to K^+ \pi^-$ Decays
 1257611 . Observation of $\bar{B}_{(s)} \to J/\psi f_1$(1285) Decays and Measurement of the $f_1$(1285) Mixing Angle
 1257744 . Search for the decay $D_0 \to \pi^+ \pi^- \mu^+ \mu^-$
 1257745 X Search for the doubly charmed baryon $\Xi_{cc}^+$
 1261027 . Measurement of CP violation in the phase space of $B^{\pm} \rightarrow K^{+} K^{-} \pi^{\pm}$ and $B^{\pm} \rightarrow \pi^{+} \pi^{-} \pi^{\pm}$ decays
 1262317 . Measurements of indirect CP asymmetries in $D^0\to K^-K^+$ and $D^0\to\pi^-\pi^+$ decays
 1262699 . Search for CP violation in the decay $D^+ \to \pi^-\pi^+\pi^+$
 1262703 . Study of forward Z + jet production in pp collisions at $\sqrt{s} = 7$ TeV
 1265071 . Studies of beauty baryon decays to $D^0 p h^-$ and $\Lambda_c^+ h^-$ final states
 1267510 X Measurement of the $\bar{B}_s^0\to D_s^-D_s^+$ and $\bar{B}_s^0\to D^-D_s^+$ effective lifetimes
 1277075 . Observation of associated production of a Z boson with a D meson in the forward region
 1277076 . Updated measurements of exclusive $J/\psi$ and $\psi$(2S) production cross-sections in pp collisions at $\sqrt{s}=7$ TeV
 1278342 X Search for Majorana neutrinos in $B^- \to \pi^+\mu^-\mu^-$ decays
 1278863 X Measurement of the $B_c^+$ meson lifetime using $B_c^+ \to J\!/\!\psi \mu^+ \nu_{\mu} X$ decays
 1280069 X Searches for $\Lambda^0_{b}$ and $\Xi^{0}_{b}$ decays to $K^0_{\rm S} p \pi^{-}$ and $K^0_{\rm S}p K^{-}$ final states with first observation of the $\Lambda^0_{b} \rightarrow K^0_{\rm S}p \pi^{-}$ decay
 1280929 . Measurement of $\Upsilon$ production in $pp$ collisions at $\sqrt{s}=2.76$ TeV
 1280930 X Measurements of the $B^+, B^0, B^0_s$ meson and $\Lambda^0_b$ baryon lifetimes
 1281231 X A study of CP violation in $B^{\pm} \to DK^{\pm}$ and $B^{\pm} \to D\pi^{\pm}$ decays with $D \to K_S^0K^{\pm}\pi^{\mp}$ final states
 1281685 . Measurement of charged particle multiplicities and densities in $pp$ collisions at $\sqrt{s}=7\;$TeV in the forward region
 1282444 X Precision measurement of the ratio of the $\Lambda^0_b$ to $\overline{B}^0$ lifetimes
 1282445 X Measurement of resonant and CP components in $\bar{B}_s^0\to J/\psi\pi^+\pi^-$ decays
 1282900 X Observation of Photon Polarization in the b→sγ Transition
 1283844 ? Measurement of $\psi(2S)$ polarisation in $pp$ collisions at $\sqrt{s}=7$ TeV
 1285485 X Measurement of polarization amplitudes and CP asymmetries in $B^0 \to \phi K^*(892)^0$
 1285949 . Study of beauty hadron decays into pairs of charm hadrons
 1287928 X Differential branching fractions and isospin asymmetries of $B \to K^{(*)} \mu^+ \mu^-$ decays
 1287929 X Angular analysis of charged and neutral $B \to K \mu^+\mu^-$  decays
 1288066 X Evidence for the decay $X(3872)\rightarrow\psi(2S)\gamma$
 1288067 X Evidence for the decay $B_c^+ \rightarrow J/\psi 3\pi^+ 2\pi^-$
 1288881 X Observation of the resonant character of the $Z(4430)^-$ state
 1291939 X Measurement of the resonant and CP components in $\overline{B}^0\to J/\psi \pi^+\pi^-$ decays
 1294766 X Measurement of the $\Xi_b^-$ and $\Omega_b^-$ baryon lifetimes
 1295690 ? Measurement of $CP$ asymmetry in $D^0 \rightarrow K^- K^+$ and $D^0 \rightarrow \pi^- \pi^+$ decays
 1295905 X Observation of the $B_s^0 \to J/\psi K_s^0 K^\pm \pi^\mp$ decay
 1296831 X Measurement of the CP-violating phase $\phi_s$ in $\overline{B}^0_s\rightarrow J/\psi \pi^+\pi^-$ decays
 1297230 . Study of $\Upsilon$ production and cold nuclear matter effects in $p$Pb collisions at $\sqrt{s_{NN}}$=5 TeV
 1298273 . Study of the kinematic dependences of $\Lambda_{b}^{0}$ production in pp collisions and a measurement of the $\Lambda_{b}^{0} \to \Lambda_{c}^{+}$ $\pi^{-}$ branching fraction
 1298392 X Precision measurement of the mass and lifetime of the $\Xi_b^0$ baryon
 1298985 X Observation of the $\Lambda_b^0 \rightarrow J/\psi p \pi^-$ decay
 1299995 X Search for CP violation in $D^{\pm}\rightarrow K^0_{\mathrm{S}} K^{\pm}$ and $D^{\pm}_{s}\rightarrow K^0_{\mathrm{S}} \pi^{\pm}$ decays
 1300150 X Observation of $Z$ production in proton-lead collisions at LHCb
 1301220 . First measurement of the charge asymmetry in beauty-quark pair production
 1303108 X Test of lepton universality using $B^{+}\rightarrow K^{+}\ell^{+}\ell^{-}$ decays
 1303541 X Effective lifetime measurements in the $B_s^0 → K^+K^− , B^0 → K^+π^−$ and $B_s^0 → π^+K^−$ decays
 1305287 X Measurement of the ratio of $B_c^+$ branching fractions to $J/\psi\pi^+$ and $J/\psi\mu^+\nu_\mu$
 1305288 X Measurement of CP violation in $B_s^0 \to \phi \phi$ decays
 1307246 X Measurement of the $\bar B_s^0$ meson lifetime in $D_s^+\pi^-$ decays
 1307247 X Evidence for CP Violation in $B^+\to p \overline p K^+$ Decays
 1307250 ? Observation of charmonium pairs produced exclusively in $pp$ collisions
 1307415 X Measurement of CP asymmetry in $B^0_s \rightarrow D^{\mp}_s K^{\pm}$ decays
 1307418 X Measurement of $CP$ violation and constraints on the CKM angle $\gamma$ in $B^{\pm}\rightarrow D K^{\pm}$ with $D \rightarrow K_S^0 \pi^+ \pi^-$ decays
 1308733 X Observation of overlapping spin-1 and spin-3 $\bar{D}^0 K^-$ resonances at mass $2.86 {\rm GeV}/c^2$
 1308736 X Observation of $B^0_s \to K^{*\pm}K^\mp$ and evidence for $B^0_s \to K^{*-}\pi^+$ decays
 1308737 X Dalitz plot analysis of $B_s^0 \rightarrow \bar{D}^0 K^- \pi^+$ decays
 1308738 . Study of $\chi _{{\mathrm {b}}}$ meson production in $\mathrm {p} $ $\mathrm {p} $ collisions at $\sqrt{s}=7$ and $8{\mathrm {\,TeV}} $ and observation of the decay $\chi _{{\mathrm {b}}}\mathrm {(3P)} \rightarrow \Upsilon \mathrm {(3S)} {\gamma } $
 1308922 X Measurement of CP violation parameters in $B^0 \to DK^{*0}$ decays
 1309439 ? Measurement of the $\bar{B}^0-B^0$ and $\bar{B}^0_s-B^0_s$ production asymmetries in $pp$ collisions at $\sqrt{s}=7$ TeV
 1309880 X First observation of a baryonic $B_c^+$ decay
 1309881 X Measurement of $C\!P$ asymmetries in the decays $B^0 \rightarrow K^{*0} \mu^+ \mu^-$ and $B^+ \rightarrow K^{+} \mu^+ \mu^-$
 1309994 X First observations of the rare decays $B^+\!\rightarrow K^+\pi^+\pi^-\mu^+\mu^-$ and $B^+\rightarrow\phi K^+\mu^+\mu^-$
 1309999 . Measurement of the track reconstruction efficiency at LHCb
 1310000 X Search for $CP$ violation using $T$-odd correlations in $D^0 \to K^+K^-\pi^+\pi^-$ decays
 1310654 X Measurement of the CKM angle $\gamma$ using $B^\pm \to D K^\pm$ with $D \to K^0_{\rm S} \pi^+\pi^-, K^0_{\rm S} K^+ K^-$ decays
 1311488 ! Measurement of the forward $W$ boson cross-section in $pp$ collisions at $\sqrt{s} = 7 {\rm \, TeV}$
 1311489 X Determination of $\gamma$ and −2$\beta_s$ from charmless two-body decays of beauty mesons
 1311994 X Measurements of $CP$ violation in the three-body phase space of charmless $B^{\pm}$ decays
 1315113 X Measurement of the $\chi_b(3P)$ mass and of the relative rate of $\chi_{b1}(1P)$ and $\chi_{b2}(1P)$ production
 1316329 ? Measurement of the $\eta_c (1S)$ production cross-section in proton-proton collisions via the decay $\eta_c (1S) \rightarrow p \bar{p}$
 1317237 X Measurement of the $CP$-violating phase $\phi_s$ in $\bar{B}^{0}_{s}\to D_{s}^{+}D_{s}^{-}$ decays
 1319484 X Search for the lepton flavour violating decay τ$^{−}$ → μ$^{−}$ μ$^{+}$ μ$^{−}$
 1319485 X Precision Measurement of the Mass and Lifetime of the $\Xi_b^-$ Baryon
 1319487 X Measurement of the semileptonic $CP$ asymmetry in $B^0-\overline{B}{}^0$ mixing
 1319638 X Precision luminosity measurements at LHCb
 1322386 X Search for CP violation in $D^0 \to \pi^− \pi^+ \pi^0$ decays with the energy test
 1325983 X Study of $\eta-\eta^{\prime}$ mixing from measurement of $B^0_{(s)} \rightarrow J/\psi \eta^{(\prime)}$~decay rates
 1326136 ! Measurement of the Z+b-jet cross-section in pp collisions at $ \sqrt{s} $ = 7 TeV in the forward region
 1326411 X Measurement of the CP-violating phase $\beta$ in $B^0\rightarrow J/\psi \pi^+\pi^-$ decays and limits on penguin effects
 1327230 X Measurement of $B_c^+$ production in proton-proton collisions at $\sqrt{s}=8$ TeV
 1327481 X Precision measurement of $CP$ violation in $B_s^0 \to J/\psi K^+K^-$ decays
 1328624 X Observation of two new $\Xi_b^-$ baryon resonances
 1329958 X Measurement of the lifetime of the $B_c^+$ meson using the $B_c^+\rightarrow J/\psi\pi^+$ decay mode
 1333223 . Measurement of the inelastic pp cross-section at a centre-of-mass energy of $ \sqrt{s} $ = 7 TeV
 1333397 . Search for long-lived particles decaying to jet pairs
 1335135 . LHCb Detector Performance
 1335137 X Study of the rare $B_s^0$ and $B^0$ decays into the $\pi^+\pi^-\mu^+\mu^-$ final state
 1335499 X Determination of the branching fractions of B$_{S}^{0} \to$ D$_{S}^{∓}$ K$^{∓}$ and B$^{0}\to$  D$_{S}^{−}$ K$^{+}$
 1338587 X Angular analysis of the $B^{0} \to K^{*0} e^{+} e^{−}$ decay in the low-q$^{2}$ region
 1341286 X Measurement of indirect $CP$ asymmetries in $D^0\rightarrow K^-K^+$ and $D^0\rightarrow \pi^-\pi^+$ decays using semileptonic $B$ decays
 1343514 X Precise measurements of the properties of the $B_1(5721)^{0,+}$ and $B^\ast_2(5747)^{0,+}$ states and observation of $B^{+,0}\pi^{-,+}$ mass structures
 1347133 . Measurement of forward $\rm Z\rightarrow e^+e^-$ production at $\sqrt{s}=8$ TeV
 1351449 X First observation and amplitude analysis of the $B^{-}\to D^{+}K^{-}\pi^{-}$ decay
 1353388 X Measurement of $CP$ asymmetries and polarisation fractions in $B_s^0 \rightarrow K^{*0}\bar{K}{}^{*0}$ decays
 1355373 X Measurement of the time-dependent CP asymmetries in $B_s^0\rightarrow J/\psi K_{\rm S}^0$
 1355375 X Measurement of $CP$ violation in $B^0 \rightarrow J/\psi K^0_S$ decays
 1355376 X Observation of the decay $\overline{B}_s^0 \rightarrow \psi(2S) K^+ \pi^-$
 1355377 X Differential branching fraction and angular analysis of $\Lambda^{0}_{b} \rightarrow \Lambda \mu^+\mu^-$ decays
 1355552 X Observation of the $B^0_s\to\eta'\eta'$ decay
 1356281 X Observation of the $B^0 \to \rho^0 \rho^0$ decay from an amplitude analysis of $B^0 \to (\pi^+\pi^-)(\pi^+\pi^-)$ decays
 1357203 X First observation and measurement of the branching fraction for the decay $B^0_s \to D_s^{*\mp} K^{\pm}$
 1358215 X Determination of the quark coupling strength $|V_{ub}|$ using baryonic decays
 1362487 X A study of $CP$ violation in $B^\mp \rightarrow Dh^\mp$ ($h=K,\pi$) with the modes $D \rightarrow K^\mp \pi^\pm \pi^0$, $D \rightarrow \pi^+\pi^-\pi^0$ and $D \rightarrow K^+K^-\pi^0$
 1364718 X Quantum numbers of the $X(3872)$ state and orbital angular momentum in its $\rho^0 J\psi$ decay
 1365284 X Identification of beauty and charm quark jets at LHCb
 1367298 X Amplitude analysis of $B^0 \rightarrow \bar{D}^0 K^+ \pi^-$ decays
 1367305 X Search for the decay $ {B}_s^0\to {\overline{D}}^0{f}_0(980) $
 1367306 X Dalitz plot analysis of $B^0 \to \overline{D}^0 \pi^+\pi^-$ decays
 1369996 X Search for the $\Lambda^0_b \rightarrow \Lambda \eta^\prime$ and $\Lambda^0_b \rightarrow \Lambda \eta$ decays with the LHCb detector
 1370436 ! Study of $W$ boson production in association with beauty and charm
 1373300 ! Measurement of the forward $Z$ boson production cross-section in $pp$ collisions at $\sqrt{s}=7$ TeV
 1373302 X Study of $B^{-}\to DK^-\pi^+\pi^-$ and $B^-\to D\pi^-\pi^+\pi^-$ decays and determination of the CKM angle $\gamma$
 1373746 . Measurement of the exclusive Υ production cross-section in pp collisions at $ \sqrt{s}=7 $ TeV and 8 TeV
 1374216 . First observation of top quark production in the forward region
 1380182 X Measurement of the ratio of branching fractions $\mathcal{B}(\bar{B}^0 \to D^{*+}\tau^{-}\bar{\nu}_{\tau})/\mathcal{B}(\bar{B}^0 \to D^{*+}\mu^{-}\bar{\nu}_{\mu})$
 1380184 X First observation of the decay B$_{s}^{0}$  → K$_{S}^{0}$ K$^{∗}$(892)$^{0}$ at LHCb
 1380188 X Angular analysis and differential branching fraction of the decay $B^0_s\to\phi\mu^+\mu^-$
 1380452 . Search for long-lived heavy charged particles using a ring imaging Cherenkov technique at LHCb
 1382595 X Observation of $J/\psi p$ Resonances Consistent with Pentaquark States in $\Lambda_b^0 \to J/\psi K^- p$ Decays
 1382599 X Measurement of the branching fraction ratio $\mathcal{B}(B_c^+ \rightarrow \psi(2S)\pi^+)/\mathcal{B}(B_c^+ \rightarrow J/\psi \pi^+)$
 1384027 . Till Moritz Karbach, Scientific Legacy
 1385321 X $B$ flavour tagging using charm decays at the LHCb experiment
 1386473 X Measurement of the $B_s^0 \to \phi \phi$ branching fraction and search for the decay $B^0 \to \phi \phi$
 1388185 X Search for hidden-sector bosons in $B^0 \!\to K^{*0}\mu^+\mu^-$ decays
 1389705 X Measurement of the time-integrated $CP$ asymmetry in $D^0 \to K^0_S K^0_S$ decays
 1391317 . Study of the production of $\Lambda_b^0$ and $\overline{B}^0$ hadrons in $pp$ collisions and first measurement of the $\Lambda_b^0\rightarrow J/\psi pK^-$ branching fraction
 1391324 X Measurement of CP violation parameters and polarisation fractions in $ {\mathrm{B}}_{\mathrm{s}}^0\to \mathrm{J}/\psi {\overline{\mathrm{K}}}^{\ast 0} $ decays
 1391325 X First measurement of the differential branching fraction and $C\!P$ asymmetry of the $B^\pm\to\pi^\pm\mu^+\mu^-$ decay
 1391511 . Measurement of forward $J/\psi$ production cross-sections in $pp$ collisions at $\sqrt{s}=13$ TeV
 1392456 . Forward production of $\Upsilon$ mesons in $pp$ collisions at $\sqrt{s}=7$ and 8TeV
 1394391 X Studies of the resonance structure in $D^0\to K^0_S K^{\pm}\pi^{\mp}$ decays
 1394859 ! Measurement of the forward-backward asymmetry in $Z/\gamma^{\ast} \rightarrow \mu^{+}\mu^{-}$ decays and determination of the effective weak mixing angle
 1396327 X Model-independent measurement of mixing parameters in D$^{0}$ → K$_{S}^{0}$ π$^{+}$π$^{−}$ decays
 1396331 . Measurements of prompt charm production cross-sections in $pp$ collisions at $ \sqrt{s}=13 $ TeV
 1396563 X Model-independent confirmation of the $Z(4430)^-$ state
 1397639 X Evidence for the strangeness-changing weak decay $\Xi_b^-\to\Lambda_b^0\pi^-$
 1398352 X Search for the rare decays $B^{0}\to J/\psi \gamma$ and $B^{0}_{s} \to J/\psi \gamma$
 1399056 ! Production of associated Y and open charm hadrons in pp collisions at $ \sqrt{s}=7 $ and 8 TeV via double parton scattering
 1401225 X First observation of the decay $D^{0}\rightarrow K^{-}\pi^{+}\mu^{+}\mu^{-}$ in the $\rho^{0}$-$\omega$ region of the dimuon mass spectrum
 1406555 . Measurement of forward W and Z boson production in $pp$ collisions at $ \sqrt{s}=8 $ TeV
 1407482 X Search for the lepton-flavour violating decay $D^0 \to e^\pm\mu^\mp$
 1407486 . Measurements of long-range near-side angular correlations in $\sqrt{s_{\text{NN}}}=5$TeV proton-lead collisions in the forward region
 1408740 X First observation of the rare $B^{+}\to D^{+} K^{+} \pi^{-}$ decay
 1409497 X Angular analysis of the $B^{0} \to K^{*0} \mu^{+} \mu^{-}$ decay using 3 fb$^{-1}$ of integrated luminosity
 1414195 X Study of D$_{sJ}^{(*) +}$ mesons decaying to D$^{∗ +}$ K$_S^0$ and D$^{*0}$ K$^{+}$ final states
 1416176 X Observation of the $B_s^0 \rightarrow J/\psi \phi \phi$ decay
 1418182 . Study of $\psi(2S)$ production and cold nuclear matter effects in pPb collisions at $\sqrt{s_{NN}}=5~\mathrm{TeV}$
 1420555 X Measurement of the difference of time-integrated CP asymmetries in $D^0 \rightarrow K^{-} K^{+} $ and $D^0 \rightarrow \pi^{-} \pi^{+} $ decays
 1420702 X Constraints on the unitarity triangle angle $\gamma$ from Dalitz plot analysis of $B^0 \to D K^+ \pi^-$ decays
 1423070 X First observation of $D^0-\bar D^0$ oscillations in $D^0\to K^+\pi^-\pi^+\pi^-$ decays and measurement of the associated coherence parameters
 1423074 X A new algorithm for identifying the flavour of $B_s^0$ mesons at LHCb
 1423299 X Measurement of the $B_{s}^{0} \rightarrow D_{s}^{(*)+}D_{s}^{(*)-}$ branching fractions
 1425547 X Observations of $\Lambda_b^0 \to \Lambda K^+\pi^-$ and $\Lambda_b^0 \to \Lambda K^+K^-$ decays and searches for other $\Lambda_b^0$ and $\Xi_b^0$ decays to $\Lambda h^+h^{\prime -}$ final states
 1426694 X Observation of $B^0_s\to\bar{D}^0 K^0_S$ and evidence for $B^0_s\to\bar{D}^{*0} K^0_S$ decays
 1426827 X Observation of the $\Lambda_b^0\to\Lambda\phi$ decay
 1427724 X Search for violations of Lorentz invariance and $ CPT$ symmetry in $ B^0_{(s)}$ mixing
 1432696 X Observation of $ \Lambda_b^0 \to \psi(2S)pK^-$ and $ \Lambda_b^0 \to J/\psi \pi^+ \pi^- pK^-$ decays and a measurement of the $\Lambda_b^0$ baryon mass
 1432698 X Search for $B_c^+$ decays to the $p\bar p\pi^+$ final state
 1436488 X Measurement of $C\!P$ observables in $B^\pm \rightarrow D K^\pm$ and $B^\pm \rightarrow D \pi^\pm$ with two- and four-body $D$ decays
 1444339 X Measurement of the mass and lifetime of the $\Omega_b^-$ baryon
 1444343 X Model-independent measurement of the CKM angle $\gamma$ using $B^0 \to D K^{\ast 0}$ decays with $D \to K_{S}^{0} \pi^{+} \pi^{-}$ and $K_{S}^{0} K^{+} K^{-}$
 1445118 X A precise measurement of the $B^0$ meson oscillation frequency
 1446752 X Measurement of the properties of the $\Xi_b^{*0}$ baryon
 1449086 X Model-independent evidence for $J/\psi p$ contributions to $\Lambda_b^0\to J/\psi p K^-$ decays
 1454404 . Measurement of forward $W$ and $Z$ boson production in association with jets in proton-proton collisions at $\sqrt{s}=8$ TeV
 1455783 X Measurement of the CKM angle $\gamma$ using $B^0 \rightarrow D K^{*0}$ with $D \rightarrow K^0_S \pi^+ \pi^-$ decays
 1466441 X Measurement of the $CP$ asymmetry in $B_s^0-\overline{B}{}_s^0$ mixing
 1469448 X Measurements of the S-wave fraction in $B^{0}\rightarrow K^{+}\pi^{-}\mu^{+}\mu^{-}$ decays and the $B^{0}\rightarrow K^{\ast}(892)^{0}\mu^{+}\mu^{-}$ differential branching fraction
 1471725 X Evidence for exotic hadron contributions to $\Lambda_b^0 \to J/\psi p \pi^-$ decays
 1472310 X Observation of $J/\psi\phi$ structures consistent with exotic states from amplitude analysis of $B^+\to J/\psi \phi K^+$ decays
 1472311 X Amplitude analysis of $B^+\to J/\psi \phi K^+$ decays
 1477400 X Study of $B_c^+$ decays to the $K^+K^-\pi^+$ final state and evidence for the decay $B_c^+\to\chi_{c0}\pi^+$
 1477402 X Measurement of the $B_{s}^{0} \rightarrow J/\psi \eta$ lifetime
 1477405 X Observation of $\eta_{c}(2S) \to p \bar p$ and search for $X(3872) \to p \bar p$ decays
 1477581 . Measurement of the forward Z boson production cross-section in pp collisions at $\sqrt{s} = 13$ TeV
 1477804 X Measurement of the ratio of branching fractions $\mathcal{B}(B_{c}^{+} \to J/\psi K^{+})/\mathcal{B}(B_{c}^{+} \to J/\psi\pi^{+})$
 1478792 X Search for Structure in the $B_s^0\pi^\pm$ Invariant Mass Spectrum
 1479164 X Amplitude analysis of $B^{-} \to D^{+} \pi^{-} \pi^{-}$ decays
 1479452 X Search for the suppressed decays $B^{+}\rightarrow K^{+}K^{+}\pi^{-}$ and $B^{+}\rightarrow \pi^{+}\pi^{+}K^{-}$
 1479453 . Measurement of forward $W\to e\nu$ production in $pp$ collisions at $\sqrt{s}=8\,$TeV
 1481810 X First study of the CP -violating phase and decay-width difference in $B_s^0\to\psi(2S)\phi$ decays
 1482943 X Measurement of $CP$ violation in $B^0 \!\rightarrow D^+ D^-$ decays
 1485571 ? First experimental study of photon polarization in radiative $B^{0}_{s}$ decays
 1486230 X Search for Higgs-like bosons decaying into long-lived exotic particles
 1486676 X Differential branching fraction and angular moments analysis of the decay $B^0 \to K^+ \pi^- \mu^+ \mu^-$ in the $K^*_{0,2}(1430)^0$ region
 1487273 X Measurement of matter-antimatter differences in beauty baryon decays
 1489630 X Observation of $B^+\rightarrow J/\psi 3\pi^+ 2\pi^-$ and $B^+\rightarrow \psi(2S) \pi^+\pi^+\pi^-$ decays
 1490663 . Measurements of prompt charm production cross-sections in pp collisions at $ \sqrt{s}=5 $ TeV
 1491381 X Search for the $C\!P$-violating strong decays $\eta \to \pi^+\pi^-$ and $\eta^\prime(958) \to \pi^+\pi^-$
 1492324 X Observation of the decay $B^0_s \to \phi\pi^+\pi^-$ and evidence for $B^0 \to \phi\pi^+\pi^-$
 1492731 X New algorithms for identifying the flavour of ${\mathrm {B}} ^0$ mesons using pions and protons
 1494582 . Measurement of forward $t\overline{t}$, $W+b\overline{b}$ and $W+c\overline{c}$ production in $pp$ collisions at $\sqrt{s}=8$ TeV
 1494585 X Observation of the annihilation decay mode $B^{0}\to K^{+}K^{-}$
 1495235 X Measurement of $CP$ asymmetry in $D^0\rightarrow K^-K^+$ decays
 1496635 X Measurement of the CKM angle $\gamma$ from a combination of LHCb results
 1499047 X Measurements of charm mixing and $C\!P$ violation using $D^0 \to K^\pm \pi^\mp$ decays
 1499874 X Search for decays of neutral beauty mesons into four muons
 1499877 X Evidence for the two-body charmless baryonic decay $ {B}^{+}\to p\overline{\varLambda} $
 1501678 X Search for massive long-lived particles decaying semileptonically in the LHCb detector
 1502093 X Observation of the decay $\Xi_b^- \to p K^-K^-$
 1502914 X Search for $CP$ violation in the phase space of $D^0\rightarrow\pi^+\pi^-\pi^+\pi^-$ decays
 1504058 ! Measurement of the $b$-quark production cross-section in 7 and 13 TeV $pp$ collisions
 1504948 X Measurement of the ratio of branching fractions and difference in $CP$ asymmetries of the decays $B^+\to J/\psi\pi^+$ and $B^+\to J/\psi K^+$
 1505172 X Measurement of the phase difference between short- and long-distance amplitudes in the $B^{+}\to K^{+}\mu^{+}\mu^{-}$ decay
 1505591 X Observation of $B_{c}^{+} \to J/\psi D^{(*)} K^{(*)}$ decays
 1505592 . Measurement of the J/$\psi$ pair production cross-section in pp collisions at $ \sqrt{s}=13 $ TeV
 1505730 X Search for long-lived scalar particles in $B^+ \to K^+ \chi (\mu^+\mu^-)$ decays
 1506403 X Search for the $B^{0}_{s} \to \eta^{\prime}\phi$ decay
 1508166 X Observation of $B_{c}^{+} \rightarrow D^{0} K^{+}$ decays
 1508167 X Measurement of $CP$ asymmetries in $D^{\pm}\rightarrow \eta^{\prime} \pi^{\pm}$ and $D_s^{\pm}\rightarrow \eta^{\prime} \pi^{\pm}$ decays
 1509507 . Study of J/ψ Production in Jets
 1509918 X Observation of the $\varXi^{-}_{b}\to J/\psi\varLambda K^{-}$ decay
 1509922 X Measurement of the $B^{\pm}$ production asymmetry and the $CP$ asymmetry in $B^{\pm} \to J/\psi K^{\pm}$ decays
 1511124 X Study of the $D^0 p$ amplitude in $\Lambda_b^0\to D^0 p \pi^-$ decays
 1511285 X Observation of the suppressed decay $\Lambda^{0}_{b}\rightarrow p\pi^{-}\mu^{+}\mu^{-}$
 1514549 X Measurement of the $C\!P$ violation parameter $A_\Gamma$ in $D^0 \to K^+K^-$ and $D^0 \to \pi^+\pi^-$ decays
 1515201 X Observation of the decay $B_{s}^{0} \to \eta_{c} \phi$ and evidence for $B_{s}^{0} \to \eta_{c} \pi^{+} \pi^{-} $
 1515507 X Observation of the decay $\Lambda^0_b \to p K^- \mu^+ \mu^-$ and a search for $C\!P$ violation
 1516410 X Search for the decays $B_s^0\to\tau^+\tau^-$ and $B^0\to\tau^+\tau^-$
 1517483 X Observation of five new narrow $\Omega_c^0$ states decaying to $\Xi_c^+ K^-$
 1517782 X Measurement of the $B^0_s\to\mu^+\mu^-$ branching fraction and effective lifetime and search for $B^0\to\mu^+\mu^-$ decays
 1519165 . Measurement of $B^0$, $B^0_s$, $B^+$ and $\Lambda^0_b$ production asymmetries in 7 and 8 TeV proton-proton collisions
 1594907 X Observation of the $B^+ \to D^{*-}K^+\pi^+$ decay
 1596892 X Observation of the decays $\Lambda_b^0 \to \chi_{c1} p K^-$ and $\Lambda_b^0 \to \chi_{c2} p K^-$
 1596893 . First observation of a baryonic $B_s^0$ decay
 1596902 X Resonances and $CP$ violation in $B_s^0$ and $\overline{B}_s^0 \to J/\psi K^+K^-$ decays in the mass region above the $\phi(1020)$
 1597124 X Observation of charmless baryonic decays $B^0_{(s)} \to p \bar{p} h^+ h^{\prime-}$
 1598757 X Measurement of $B^{0}_{s}$ and $D^{-}_{s}$ meson lifetimes
 1599846 X Test of lepton universality with $B^{0} \rightarrow K^{*0}\ell^{+}\ell^{-}$ decays
 1600787 . Updated search for long-lived particles decaying to jet pairs
 1602477 X Improved limit on the branching fraction of the rare decay ${{K} ^0_{\mathrm { \scriptscriptstyle S}}} \rightarrow \mu ^+\mu ^-$
 1606204 ? Study of charmonium production in ${b}$-hadron decays and first evidence for the decay ${{{B}} ^0_{{s}}} \!\rightarrow \phi \phi \phi $
 1606329 ? Prompt and nonprompt J/$\psi$ production and nuclear modification in $p$Pb collisions at $\sqrt{s_{\text{NN}}}= 8.16$ TeV
 1608879 X Observation of the doubly charmed baryon $\Xi_{cc}^{++}$
 1608881 . Updated branching fraction measurements of $B^0_{(s)} \to K_{\mathrm{\scriptscriptstyle S}}^0 h^+ h^{\prime -}$ decays
 1609255 X Study of prompt D$^{0}$ meson production in $p$Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=5 $ TeV
 1611681 X Observation of $D^0$ meson decays to $\pi^+\pi^-\mu^+\mu^-$ and $K^+K^-\mu^+\mu^-$ final states
 1614076 . Framework TDR for the LHCb Upgrade
 1617762 X Search for Baryon-Number Violating ${\mathrm{\Xi}}_{b}^{0}$ Oscillations
 1617765 ! Study of $b\bar{b}$ correlations in high energy proton-proton collisions
 1618003 X Measurement of $CP$ observables in $B^\pm \to D^{(*)} K^\pm$ and $B^\pm \to D^{(*)} \pi^\pm$ decays
 1620479 X Measurement of the ratio of the $B^0 \to D^{*-} \tau^+ \nu_{\tau}$ and $B^0 \to D^{*-} \mu^+ \nu_{\mu}$ branching fractions using three-prong $\tau$-lepton decays
 1621592 X First Observation of the Rare Purely Baryonic Decay $B^0\to p\bar p$
 1621596 . Measurement of the $\Upsilon$ polarizations in $pp$ collisions at $\sqrt{s}=7$ and 8 TeV
 1621810 X Bose-Einstein correlations of same-sign charged pions in the forward region in $pp$ collisions at $\sqrt{s}$ = 7 TeV
 1621811 X Measurement of the shape of the $\Lambda_b^0\to\Lambda_c^+ \mu^- \overline{\nu}_{\mu}$ differential decay rate
 1622743 X First observation of forward $Z \rightarrow b \bar{b}$ production in $pp$ collisions at $\sqrt{s}=8$ TeV
 1623025 X Measurement of $CP$ violation in $B^0\rightarrow J/\psi K^0_\mathrm{S}$ and $B^0\rightarrow\psi(2S) K^0_\mathrm{S}$ decays
 1623210 X $\chi_{c1}$ and $\chi_{c2}$ Resonance Parameters with the Decays $\chi_{c1,c2}\to J/\psi\mu^+\mu^-$
 1624171 X Measurement of $CP$ observables in $B^{\pm} \rightarrow D K^{*\pm}$ decays using two- and four-body $D$ final states
 1629161 . Search for Dark Photons Produced in 13 TeV $pp$ Collisions
 1629971 X Search for the lepton-flavour violating decays B$_{(s)}^{0} \to e^{\pm}\mu^{\mp}$
 1630633 . Measurement of the $B^{\pm}$ production cross-section in pp collisions at $\sqrt{s} =$ 7 and 13 TeV
 1634432 X Measurements of the branching fractions of $\Lambda_{c}^{+} \rightarrow p \pi^{-} \pi^{+}$, $\Lambda_{c}^{+} \rightarrow p K^{-} K^{+}$, and $\Lambda_{c}^{+} \rightarrow p \pi^{-} K^{+}$
 1634841 . Test of Lepton Flavor Universality by the measurement of the $B^0 \to D^{*-} \tau^+ \nu_{\tau}$ branching fraction using three-prong $\tau$ decays
 1636196 X Measurement of branching fractions of charmless four-body $\Lambda_b^0$ and $\Xi_b^0$ decays
 1636198 X Measurement of the ratio of branching fractions $\mathcal{B}(B_c^+\,\to\,J/\psi\tau^+\nu_\tau)$/$\mathcal{B}(B_c^+\,\to\,J/\psi\mu^+\nu_\mu)$
 1636199 X First observation of $B^{+} \to D_s^{+}K^{+}K^{-}$ decays and a search for $B^{+} \to D_s^{+}\phi$ decays
 1642234 X Updated determination of $D^0$-$\overline{D}{}^0$ mixing and CP violation parameters with $D^0\to K^+\pi^-$ decays
 1642726 X Search for excited $B_{c}^{+}$ states
 1643022 X Search for $B_c^+$ decays to two charm mesons
 1644103 X A measurement of the $CP$ asymmetry difference in $\varLambda_{c}^{+} \to pK^{-}K^{+}$ and $p\pi^{-}\pi^{+}$ decays
 1644370 X Measurement of $CP$ asymmetry in $B_s^0 \to D_s^{\mp} K^{\pm}$ decays
 1644610 . Search for the rare decay $\Lambda_{c}^{+} \to p\mu^+\mu^-$
 1644616 X Search for weakly decaying $b$-flavored pentaquarks
 1644790 X Evidence for the rare decay $\Sigma^+ \to p \mu^+ \mu^-$
 1644791 X Studies of the resonance structure in $D^{0} \rightarrow K^\mp \pi ^\pm \pi ^\pm \pi ^\mp $ decays
 1644897 X First measurement of the $CP$-violating phase $\phi_s^{d\overline{d}}$ in $B_s^0\to(K^+\pi^-)(K^-\pi^+)$ decays
 1644906 . Amplitude analysis of the decay $\overline{B}^0 \to K_{S}^0 \pi^+ \pi^-$ and first observation of the CP asymmetry in $\overline{B}^0 \to K^{*}(892)^- \pi^+$
 1662483 ! Measurement of forward top pair production in the dilepton channel in $pp$ collisions at $\sqrt{s}=13$ TeV
 1665223 ! Measurement of the inelastic $pp$ cross-section at a centre-of-mass energy of 13 TeV
 1665225 X Measurement of the $CP$ asymmetry in $B^-\to D_s^-D^0$ and $B^-\to D^-D^0$ decays
 1668916 X Evidence for the decay $ {B}_S^0\to {\overline{K}}^{\ast 0}{\mu}^{+}{\mu}^{-} $
 1670013 . Measurement of $\Upsilon$ production in $pp$ collisions at $\sqrt{s}$= 13 TeV
 1670022 X Observation of the decay $\Lambda_b^0 \to \Lambda_c^+ p \overline{p} \pi^-$
 1672368 X Measurement of $CP$ violation in $B^{0}\rightarrow D^{\mp}\pi^{\pm}$ decays
 1672471 . Search for CP violation using triple product asymmetries in $\Lambda^{0}_{b}\to pK^{-}\pi^{+}\pi^{-}$, $\Lambda^{0}_{b}\to pK^{-}K^{+}K^{-}$ and $\Xi^{0}_{b}\to pK^{-}K^{-}\pi^{+}$ decays
 1673686 . Measurement of $C\!P$ asymmetries in two-body $B_{(s)}^{0}$-meson decays to charged pions and kaons
 1674704 . Search for a dimuon resonance in the $\Upsilon$ mass region
 1674835 X Observation of a new $\Xi_b^-$ resonance
 1674916 X Measurement of $D_s^{\pm}$ production asymmetry in $pp$ collisions at $\sqrt{s} =7$ and 8 TeV
 1676225 X Measurement of the CKM angle $\gamma$ using $B^\pm\to DK^\pm$ with $D\to K_\text{S}^0\pi^+\pi^-$, $K_\text{S}^0K^+K^-$ decays
 1676395 X Measurement of the time-integrated $CP$ asymmetry in $D^0 \rightarrow K^0_S K^0_S$ decays
 1676811 X Measurement of the Lifetime of the Doubly Charmed Baryon $\Xi_{cc}^{++}$
 1677283 . Central exclusive production of $J/\psi$ and $\psi(2S)$ mesons in $pp$ collisions at $\sqrt{s}=13~$TeV
 1677775 . Measurement of $Z\rightarrow\tau^+\tau^-$ production in proton-proton collisions at $\sqrt{s} = 8$ TeV
 1679066 . Observation of the decay $\Lambda^0_b\rightarrow\psi(2S)p\pi^-$
 1679857 . Search for beautiful tetraquarks in the $\Upsilon(1S)\mu^+\mu^-$ invariant-mass spectrum
 1680225 . Observation of the decay $ {\overline{B}}_s^0\to {\chi}_{c2}{K}^{+}{K}^{-} $ in the ϕ mass region
 1680229 . Measurement of Angular and CP Asymmetries in $D^0\to\pi^+\pi^-\mu^+\mu^-$ and $D^0\to K^+K^-\mu^+\mu^-$ decays
 1681011 . First Observation of the Doubly Charmed Baryon Decay $\Xi_{cc}^{++}\rightarrow \Xi_{c}^{+}\pi^{+}$
 1681144 . Measurement of the $\Omega_c^0$ baryon lifetime
 1681145 . Observation of the decay $B_s^0 \to \overline{D}^0 K^+ K^-$
 1681146 . Observation of $B_s^0 \to \overline{D}^{*0} \phi$ and search for $B^0 \to \overline{D}^0 \phi$ decays
 1682900 . Search for $C\!P$ violation in $\Lambda^0_b \to p K^-$ and $\Lambda^0_b \to p \pi^-$ decays
 1684260 . Measurement of the relative $B^{-} \!\rightarrow D^{0} / D^{*0} / D^{**0} \mu^{-} \overline{\nu}_\mu$ branching fractions using $B^{-}$ mesons from $\overline{B}{}_{s2}^{*0}$ decays
 1684712 . Angular moments of the decay $\Lambda_b^0 \rightarrow \Lambda \mu^{+} \mu^{-}$ at low hadronic recoil
-1688924 . Measurement of antiproton production in ${\rm p He}$ collisions at $\sqrt{s_{NN}}=110$ GeV
+1688924 . Measurement of Antiproton Production in ${\rm p He}$ Collisions at $\sqrt{s_{NN}}=110$ GeV
 1690146 . Search for lepton-flavour-violating decays of Higgs-like bosons
-1691586 . Physics case for an LHCb Upgrade II - Opportunities in flavour physics, and beyond, in the HL-LHC era
+1691586 X Physics case for an LHCb Upgrade II - Opportunities in flavour physics, and beyond, in the HL-LHC era
 1692810 . Prompt $\Lambda^+_c$ production in $p\mathrm{Pb}$ collisions at $\sqrt{s_{NN}} = 5.02$ TeV
-1694807 . Observation of two resonances in the $\Lambda_b^0 \pi^\pm$ systems and precise measurement of $\Sigma_b^\pm$ and $\Sigma_b^{*\pm}$ properties
-1694990 . Evidence for an $\eta_c(1S) \pi^-$ resonance in $B^0 \to \eta_c(1S) K^+\pi^-$ decays
+1694807 ? Observation of Two Resonances in the $\Lambda_b^0 \pi^\pm$ Systems and Precise Measurement of $\Sigma_b^\pm$ and $\Sigma_b^{*\pm}$ properties
+1694990 ? Evidence for an $\eta _c(1S) \pi ^-$ resonance in $B^0 \rightarrow \eta _c(1S) K^+\pi ^-$ decays
 1697372 . Measurement of the branching fractions of the decays $D^+\rightarrow K^-K ^+K^+$, $D^+\rightarrow \pi^-\pi^+K^+$ and $D^+_s\rightarrow \pi^-K^+K^+$
-1698962 . Measurement of the charm-mixing parameter $y_{CP}$
+1698962 . Measurement of the Charm-Mixing Parameter $y_{CP}$
 1699106 . Study of $\Upsilon$ production in $p$Pb collisions at $\sqrt{s_{NN}}=8.16$ TeV
 1699199 . First measurement of charm production in fixed-target configuration at the LHC
-1704426 . Search for $CP$ violation through an amplitude analysis of $D^0 \rightarrow K^+ K^- \pi^+ \pi^-$ decays
+1704426 X Search for $CP$ violation through an amplitude analysis of $D^0 \rightarrow K^+ K^- \pi^+ \pi^-$ decays
+1709439 . Search for the rare decay $B^{+} \rightarrow {\mu}^{+}{\mu}^{-}{\mu}^{+}{\nu}_{{\mu}}$
+1709948 X Measurement of the branching fraction and $C\!P$ asymmetry in $B^{+}\rightarrow J/\psi \rho^{+}$ decays
+1709949 . Study of the $B^0\to \rho(770)^0 K^*(892)^0$ decay with an amplitude analysis of $B^0\to (\pi^+\pi^-) (K^+\pi^-)$ decays
+1714780 . Model-independent observation of exotic contributions to $B^0\to J/\psi K^+\pi^-$ decays
+1714986 . Observation of the doubly Cabibbo-suppressed decay $\Xi_{c}^{+}\to p\phi$
+1716259 X Measurement of the mass and production rate of $\Xi_b^-$ baryons
+1718851 . Measurement of the ratio of branching fractions of the decays $\Lambda^0_b\!\to\psi(2S) \Lambda$ and $\Lambda^0_b\!\to J/\psi \Lambda$
diff --git a/doc/rivet-coverage-other.rank b/doc/rivet-coverage-other.rank
--- a/doc/rivet-coverage-other.rank
+++ b/doc/rivet-coverage-other.rank
@@ -1,588 +1,2362 @@
-841618 . Measurement of the branching fractions and the invariant mass distributions for $\tau^- \to h^-h^+h^-\nu_{\tau}$ decays
-841764 . Measurement of Leading Neutron Production in Deep-Inelastic Scattering at HERA
-842635 . Search for Charged Lepton Flavor Violation in Narrow Upsilon Decays
+19342 X ALEPH: Technical Report 1983
+28223 . Determination of B(D(s)+ ---> phi pi+) via observations of D(s)+ ---> phi l+ neutrino
+29006 . Study of D0 decays into final states with a pi0 or eta
+29927 . Measurement of the inclusive B* cross-section above the Upsilon (4S)
+30059 . Inclusive chi(2 p) production in upsilon (3s) decay
+30428 . Inclusive and exclusive decays of B mesons to final states including charm and charmonium mesons
+31222 . Observation of the decay xi(c)0 ---> omega- K+
+32611 . Shape studies of quark jets versus gluon jets at s**(1.2) = 10-GeV
+32918 . Measurement of tau decays involving eta mesons
+32919 X A Measurement of the tau lepton lifetime
+34244 X A Measurement of the tau lepton mass
+35358 . The $D \to \pi\pi$ branching fractions
+35359 . Measurement of the ratio B (D+ ---> pi0 lepton+ neutrino) / B (D+ ---> anti-K0 lepton+ neutrino)
+35360 . Observation of the charmed Baryon Sigma (c)+ and measurement of the isospin mass splittings of the Sigma(c)
+35361 . Measurement of exclusive Lambda(c) decays with a Sigma+ in the final state
+35362 . Measurement of the decay tau- ---> pi- pi+ pi- 2 pi0 tau-neutrino
+36023 . Measurement of exclusive semileptonic decays of D mesons
+36414 . Search for exclusive b ---> u transitions in hadronic decays of B mesons involving D(s)+ and D(s)*+ mesons
+37303 . Precision measurement of the D(s)+* - D(s)+ mass difference
+37565 . Exclusive hadronic B decays to charm and charmonium final states
+37661 . A Measurement of the branching fraction $\mathcal{B} (\tau^- \to h^- \pi^0 \nu_{\tau})$
+40577 . Study of flavor tagged baryon production in B decay
+191563 . A Precision Measurement of the $\Upsilon^\prime$ Meson Mass
+282041 . A Determination of the Properties of the Neutral Intermediate Vector Boson $Z^0$
+282645 . Mass Limits for Scalar Muons, Scalar Electrons and Winos from e+ e- Collisions near S**(1/2) = 91 GeV
+282821 . Measurement of the $Z^0$ Mass and Width with the OPAL Detector at LEP
+282904 . Determination of the Number of Light Neutrino Species
+282905 . Measurement of the Mass and Width of the $Z^0$ Particle from Multi - Hadronic Final States Produced in $e^{+} e^{-}$ Annihilations
+283146 . Measurement of the Decay of the $\Z^0$ Into Lepton Pairs
+283354 . Properties of Hadronic Events in e$^{+} $e$^{-}$ Annihilation at $S^{(1/2)}=91$-{GeV}
+283355 . Determination of the Leptonic Branching Ratios of the $Z$
+283470 . Measurement of $g$(a) and $g(V$), the Neutral Current Coupling Constants to Leptons
+283729 . Search for the Neutral Higgs Boson from Z0 Decay
+283730 . Search for Supersymmetric Particles Using Acoplanar Charged Particle Pairs From $\Z^0$ Decays
+283783 . A Study of Jet Production Rates and a Test of QCD on the Z0 Resonance
+283784 . A Search for the Top and $b^\prime$ Quarks in Hadronic $\Z^0$ Decays
+284406 . A Search for New Quarks and Leptons From $\Z^0$ Decay
+284407 . Search for Excited Leptons in $\Z^0$ Decay
+284409 . Search for Neutral Higgs Bosons From Supersymmetry in $Z$ Decays
+284411 . A Precise Determination of the Number of Families With Light Neutrinos and of the $Z$ Boson Partial Widths
+285181 . Mass Limits for a Standard Model Higgs Boson in $e^+ e^-$ Collisions at {LEP}
+285182 . A SEARCH FOR NEW CHARGED HEAVY LEPTONS WITH THE OPAL DETECTOR AT LEP
+285183 . A Search for Acoplanar Pairs of Leptons or Jets in $\Z^0$ Decays: Mass Limits on Supersymmetric Particles
+286423 . Measurement of $\Z^0$ Decays to Hadrons and a Precise Determination of the Number of Neutrino Species
+294474 . A Direct Search for New Charged Heavy Leptons at {LEP}
+294521 . Search for the Neutral Higgs Boson From $\Z^0$ Decay in the Higgs Mass Range Between 11-{GeV} and 24-{GeV}
+294576 . A MEASUREMENT OF THE Z0 LEPTONIC PARTIAL WIDTHS AND THE FORWARD - BACKWARD ASYMMETRY
+294808 . A Combined Analysis of the Hadronic and Leptonic Decays of the $\Z^0$
+294809 . A Study of the Reaction $e^+ e^- \to \gamma \gamma$ at {LEP}
+294894 . Study of Hadronic Decays of the $\Z^0$ Boson
+294934 . ALEPH: A detector for electron-positron annnihilations at LEP
+294982 . A Search for Pair Produced Charged Higgs Bosons in $\Z^0$ Decays
+295040 . Measurement of $\Z^0 \to b \bar{b}$ Decay Properties
+295102 . Search for Decays of the $\Z^0$ Into a Photon and a Pseudoscalar Meson
+295407 . A Search for Technipions and Charged Higgs Bosons at {LEP}
+295500 . Study of the Leptonic Decays of the $Z^0$ Boson
+295501 . A Precise Measurement of the $Z$ Resonance Parameters Through Its Hadronic Decays
+295503 . Search for Heavy Charged Scalars in $\Z^0$ Decays
+295613 . A Measurement of Global Event Shape Distributions in the Hadronic Decays of the $\Z^0$
+295615 . Search for the $T$ and b$^\prime$ Quarks in Hadronic Decays of the Z$^0$ Boson
+295617 . Search for Light Neutral Higgs Particles Produced in $\Z^0$ Decays
+295622 . Search for Excited Leptons at {LEP}
+296041 . Evidence for Final State Photons in Multi - Hadronic Decays of the $\Z^0$
+296185 . Heavy Flavor Production in $Z$ Decays
+296294 . Search for Neutralino Production in Z Decays
+296473 . Search for pair production of neutral Higgs bosons in Z0 decays
+296525 . Search for a very light Higgs boson in Z decays
+296526 . Limits on neutral heavy lepton production from Z0 decay
+296722 . Study of the decays D0 ---> K anti-K, pi anti-pi
+296997 . Search for scalar quarks in $Z^0$ decays
+296998 . A Study of intermittency in hadronic Z0 decays
+297139 . Analysis of Z0 couplings to charged leptons
+297170 . Search for the neutral higgs boson in $Z^0$ decay
+297171 . Mass limits for excited electrons and muons from Z0 decay
+297172 . A Determination of electroweak parameters from Z0 ---> mu+ mu- (gamma)
+297561 . A Study of angular correlations in 4-jet final states of hadronic Z0 decays
+297562 . A Direct search for neutralino production at LEP
+297564 . A Study of coherence of soft gluons in hadron jets
+297697 . A Search for sleptons and gauginos in Z0 decays
+297698 . A Comparison of jet production rates on the Z0 resonance to perturbative QCD
+297895 . Searches for neutral Higgs bosons in e+ e- collisions at LEP
+297902 . Exclusive and inclusive semileptonic decays of B mesons to D mesons
+297910 . Searches for the standard Higgs boson
+297934 . Study of K* production in tau decay
+298078 . Determination of alpha-s from jet multiplicities measured on the Z0 resonance
+298079 . A Precision measurement of the number of neutrino species
+298080 . A Test of QCD based on four jet events from Z0 decays
+298223 . Measurement of the Lambda(c) decay asymmetry parameter
+298414 . Measurement of electroweak parameters from Z decays into Fermion pairs
+298611 . Inclusive production of the charmed baryon Lambda(c) from e+ e- annihilations at s**(1/2) = 10.55-GeV
+298642 . The OPAL detector at LEP
+298682 . Limits on a light Higgs boson in e+ e- collisions at LEP
+298707 . A Measurement of energy correlations and a determination of alpha-s (M2 (Z0)) in e+ e- annihilations at s**(1/2) = 91-GeV
+298839 . Search for excited neutrinos in Z decay
+298840 . DELPHI results on the Z0 resonance parameters through its hadronic and leptonic decay modes
+298841 . A Measurement of the partial width of the Z0 boson into b quark pairs
+298843 . Test of QED in e+ e- ---> gamma gamma at LEP
+298845 . Search for excited taus from Z0 decay
+299248 . Search for the neutral Higgs bosons of the minimal supersymmetric standard model from Z0 decays
+299250 . A Search for heavy charged and neutral leptons from Z0 decays
+299253 . A Determination of electroweak parameters from Z0 decays into charged leptons
+299393 . Search for pair produced stable singly charged heavy particles in Z0 decays
+299521 . Charged multiplicity and rapidity distributions in Z0 hadronic decays
+299781 . A Measurement of the $\Z^0$ Leptonic Partial Widths and the Vector and Axial Vector Coupling Constants.
+299833 . A Study of the recombination scheme dependence of jet production rates and of alpha-s (m(Z0)) in hadronic Z0 decays
+299835 . A Search for lepton flavor violation in Z0 decays
+300161 . Energy-energy correlations in hadronic final states from Z0 decays
+300162 . Measurement of the partial width of the decay of the Z0 into charm quark pairs
+300179 . The DELPHI detector at LEP
+300283 . Search for the minimal standard model Higgs boson in e+ e- collisions at LEP
+300437 . Search for the charged Higgs boson in Z0 decay
+300438 . Search for a low mass neutral Higgs boson in Z0 decay
+300439 . Search for excited neutrinos from Z0 decays
+301654 . Search for Higgs bosons using the Delphi detector
+301656 . Search for nonstandard Z0 decays in two particle final states
+301657 . Charged particle multiplicity distributions in Z0 hadronic decays
+301659 . Experimental study of the triple gluon vertex
+301661 . Measurement of the strong coupling constant alpha-s from global event shape variables of hadronic Z decays
+301901 . A Measurement of the Z0 ---> b anti-b forward - backward asymmetry
+301905 . A Measurement of B0 - anti-B0 mixing in Z0 decays
+302586 . A Direct measurement of the Z0 invisible width by single photon counting
+302587 . Measurement of the cross-sections of the reactions e+ e- ---> gamma gamma and e+ e- ---> gamma gamma gamma at LEP
+302769 . Measurement of B - anti-B mixing at the Z
+302770 . Measurement of the B hadron lifetime
+302771 . Measurement of alpha-s from the structure of particle clusters produced in hadronic Z decays
+302936 . Search for low mass Higgs bosons produced in Z0 decays
+314056 . Searches for the standard Higgs boson produced in the reaction e+ e- ---> H0 Z*
+314060 . Study of continuum D*+ spin alignment
+314333 . A Model independent observation of the string effect using quark tagging at LEP
+314407 . Measurement of the inclusive production of neutral pions and charged particles on the Z0 resonance
+314410 . Measurements of Z0 ---> b anti-b decays and the semileptonic branching ratio Br (b ---> lepton X)
+314418 . Measurement of electroweak parameters from hadronic and leptonic decays of the $Z^0$
+314476 . Measurement of charge asymmetry in hadronic Z decays
+314601 . A Study of heavy flavor production using muons in hadronic Z0 decays
+314619 . A Study of the reaction e+ e- ---> mu+ mu- around the Z0 pole
+314631 . Intermittency in hadronic decays of the Z0
+314875 . Search for a new weakly interacting particle
+315054 . Charged particle pair production associated with a lepton pair in Z decays: Indication of an excess in the tau channel
+315060 . A Study of D*+- production in Z0 decays
+315061 . A Search for scalar leptoquarks in Z0 decays
+315181 . Measurement of baryon production in B meson decay
+315182 . Unusual decay modes of D0 and D+ mesons
+315269 . Measurement of the $Z^0$ line shape parameters and the electroweak couplings of charged leptons
+315516 . Measurement of the ratio B (D0 ---> K*- e+ electron-neutrino) / B (D0 ---> K- e+ electron-neutrino)
+315952 . Search for leptoquarks in Z0 decays
+315953 . Search for narrow high mass resonances in radiative decays of the Z0
+315954 . A Test of QCD based on three jet events from Z0 decays
+316148 . Measurement of the forward - backward asymmetry in Z ---> b anti-b and Z ---> c anti-c
+316151 . A Study of K0(s) production in Z0 decays
+316154 . A Measurement of the electroweak couplings of up and down type quarks using final state photons in hadronic z0 decays
+316780 . Measurement of isolated photon production in hadronic Z decays
+316781 . Measurement of the polarization of tau leptons produced in Z decays
+316872 . A Direct observation of quark - gluon jet differences at LEP
+317141 . Improved measurements of electroweak parameters from $Z$ decays into fermion pairs
+317142 . Measurement of three jet distributions sensitive to the gluon spin in e+ e- annihilations at S**(1/2) = 91-GeV
+317143 . Measurement of branching ratios and tau polarization from tau ---> e neutrino anti-neutrino , tau ---> mu neutrino anti-neutrino, and tau ---> pi (K) neutrino decays at LEP
+317166 . Observation of J / psi production in multi - hadronic Z0 decays
+317492 . Search for the neutral Higgs bosons of the MSSM and other two doublet models
+317493 . Determination of $Z^0$ resonance parameters and couplings from its hadronic and leptonic decays
+317507 . Search for excited charged leptons in Z0 decays
+317508 . A Study of Bose-Einstein correlations in e+ e- annihilations at LEP
+317747 . Measurements of semileptonic branching fractions of B mesons at the Upsilon (4S) resonance
+317781 . Decay mode independent search for a light Higgs boson and new scalars
+317816 . Study of orientation of three jet events in Z0 hadronic decays using the DELPHI detector
+317825 . The reaction e+ e- ---> gamma gamma (gamma) at Z0 energies
+318142 . A Measurement of the lifetime of the tau lepton
+318145 . An Investigation into intermittency
+318149 . Production and decay of charmed mesons at the Z resonance
+318230 . Decay properties of tau leptons measured at the Z0 resonance
+318231 . Measurement of the lifetime of B hadrons and a determination of |V(cb)|
+318981 . Measurement of the strong coupling constant alpha-s for bottom quarks at the Z0 resonance
+318982 . Search for lepton flavor violation in Z0 decays
+319519 . Searches for new particles in $Z$ decays using the ALEPH detector
+319520 . Measurement of the charged particle multiplicity distribution in hadronic Z decays
+319665 . Search for scalar leptoquarks from Z0 decays
+319666 . A Search for neutral Higgs particles in Z0 decays
+319667 . Measurement of the average lifetime of B hadrons
+319668 . Measurement of the absolute luminosity with the ALEPH detector
+319673 . Measurement of the tau lepton lifetime
+319674 . A Measurement of photon radiation in lepton pair events from Z0 decays
+319773 . Two-body D(s)+ decays to eta pi+, eta-prime pi+, eta rho+, eta-prime rho+, phi rho+
+321190 . A Study of charged particle multiplicities in hadronic decays of the Z0
+321191 . Measurement of the average B hadron lifetime in Z0 decays
+321348 . The Electronic branching ratio of the tau lepton
+321380 . A Study of Bose-Einstein correlations in e+ e- annihilation at 91-GeV
+321409 . Study of final state photons in hadronic Z0 decay and limits on new phenomena
+321656 . Measurement of B0 - anti-B0 mixing in hadronic Z0 decays
+321657 . An Improved measurement of alpha-s (M (Z0)) using energy correlations with the OPAL detector at LEP
+321997 . The CLEO-II detector
+322027 . Properties of multi - hadronic events with a final state photon at s**(1/2) = M (Z0)
+322198 . Measurement of tau branching ratios
+322262 . Searches for heavy neutrinos from Z decays
+322324 . Multiplicity dependence of mean transverse momentum in e+ e- annihilations at LEP energies
+322380 . Search for free gluons in hadronic Z0 decays
+322483 . Electroweak parameters of the $Z^0$ resonance and the Standard Model: the LEP Collaborations
+322497 . A Measurement of sin**2 theta(W) from the charge asymmetry of hadronic events at the Z0 peak
+322498 . A Measurement of the b anti-b forward backward asymmetry using the semileptonic decay into muons
+322503 . Production of strange particles in the hadronic decays of the Z0
+322548 . Evidence for b baryons in Z decays
+324035 . Charged particle multiplicity distributions in restricted rapidity intervals in Z0 hadronic decays.
+324176 . A Direct determination of the number of light neutrino families from e+ e- ---> neutrino anti-neutrino gamma at LEP
+324427 . Determination of alpha-s from energy-energy correlations measured on the Z0 resonance.
+324428 . Search for the neutral Higgs boson.
+332616 . Measurement of the tau lepton lifetime
+332687 . Measurement of the Z0 branching fraction to b quark pairs using the boosted sphericity product
+332851 . Test of CP invariance in e+ e- ---> Z0 ---> tau+ tau- and a limit on the weak dipole moment of the tau lepton
+333079 . A Global determination of $\alpha^- s$ (M(z0) ) at LEP
+333127 . Evidence for the triple gluon vertex from measurements of the QCD color factors in Z decay into four jets
+333272 . Determination of alpha(s) in second order QCD from hadronic Z decays
+333300 . Evidence for b flavored baryon production in Z0 decays at LEP
+333330 . A measurement of electron production in hadronic Z0 decays and a determination of GAMMA (Z0 --> b anti-b)
+333334 . Measurement of alpha-s in hadronic Z decays using all orders resummed predictions
+334186 . A Test of higher order electroweak theory in Z0 decays to two leptons with an associated pair of charged particles
+334322 . Search for a very light CP odd neutral Higgs boson of the MSSM
+334323 . Measurement of B - anti-B mixing at the Z using a jet charge method
+334473 . Measurement of the tau topological branching ratios at LEP
+334575 . Measurement of the production rates of eta and eta-prime in hadronic Z decays
+334577 . Properties of hadronic Z decays and test of QCD generators
+334947 . A Study of the decays of tau leptons produced on the Z resonance at LEP
+334948 . Charged particle multiplicity distributions for fixed number of jets in Z0 hadronic decays
+334951 . Determination of alpha-s from hadronic event shapes measured on the Z0 resonance
+334952 . Search for the neutral Higgs boson at LEP
+334954 . Studies of hadronic event structure and comparisons with QCD models at the Z0 resonance
+335147 . A Study of two particle momentum correlations in hadronic Z0 decays
+335149 . Measurement of the partial width of the Z0 into b anti-b final states using their semileptonic decays
+335153 . Bose-Einstein correlations in the hadronic decays of the Z0
+335385 . Exclusive chi (2P) production in upsilon (3S) decay
+336121 . D / s+ decays to eta pi+ and eta-prime' pi+.
+336122 . D / s+ decays to eta rho+, eta-prime rho+, and Phi rho+.
+336178 . An Improved measurement of $B^0$ - $\bar{B}^0$ mixing in $Z^0$ decays
+336180 . Measurement of inclusive eta production in hadronic decays of the Z0
+336183 . Observation of the semileptonic decays of B(s) and LAMBDA(b) hadrons at LEP
+336313 . Isospin mass splittings from precision measurements of D* - D mass differences
+336317 . Measurement of the D* (2010) branching fractions
+336748 . Lepton asymmetry measurements in anti-B ---> D* l- anti-neutrino and implications for V-A and the form-factors
+336768 . Evidence for $B_s^0$ meson production in $Z^0$ decays
+336771 . A Measurement of strange baryon production in hadronic Z0 decays
+336772 . Inclusive neutral vector meson production in hadronic Z0 decays
+336774 . A Measurement of the forward - backward charge asymmetry in hadronic decays of the Z0
+336900 . A Test of quantum electrodynamics in the reaction e+ e- ---> gamma gamma (gamma)
+336901 . Inclusive J production in Z0 decays
+338067 . Updated measurement of the average B hadron lifetime
+338069 . Multiplicity fluctuations in hadronic final states from the decay of the Z0
+339089 . Measurement of the e+ e- --> b anti-b and e+ e- --> c anti-c forward backward asymmetries at the Z0 resonance
+339090 . Determination of the number of light neutrino species
+339091 . Isolated hard photon emission in hadronic Z0 decays
+339092 . A Measurement of tau polarization in Z0 decays
+339093 . A Search for doubly charged Higgs production in Z0 decays
+339094 . Evidence for the existence of the strange $b$ flavored meson $B_s^0$ in $Z^0$ decays
+339967 . A Measurement of the b baryon lifetime
+340583 . Measurements of mean lifetime and branching fractions of b hadrons decaying to J / psi
+340878 . Searches for nonminimal Higgs bosons in Z0 decays
+340879 . Search for isosinglet neutral heavy leptons in Z0 decays
+340880 . High mass photon pairs in lepton+ lepton- gamma gamma events at LEP
+341237 . A Study of K0(s) K0(s) Bose-Einstein correlations in hadronic Z0 decays
+341556 . Measurement of prompt photon production in hadronic Z decays
+341557 . Search for CP violation in Z ---> tau tau
+341560 . A Measurement of B meson production and lifetime using D lepton- events in Z0 decays
+341561 . Classification of the hadronic decays of the Z0 into b and c quark pairs using a neural network
+341573 . Search for nonminimal Higgs bosons in Z0 decays
+341723 . Measurement of the b ---> tau- anti-tau-neutrino X branching ratio
+341725 . A Precise measurement of the tau lepton lifetime
+342625 . Measurement of the tau lepton electronic branching fraction
+342627 . Tau decays with one charged particle plus multiple pi0s
+342628 . Study of D0 decays into anti-K0 and anti-K*0
+342630 . A Search for tau- ---> gamma mu: A Test of lepton number conservation
+342631 . A Search for exclusive b ---> u semileptonic decays of B mesons
+342766 . A Measurement of K*+- (892) production in hadronic Z0 decays
+342768 . A Study of the electric charge distributions of quark and gluon jets in hadronic Z0 decays
+342800 . Measurement of inclusive production of light meson resonances in hadronic decays of the Z0
+342801 . A Search for lepton flavor violation in Z0 decays
+342978 . Tests of factorization with hadronic B meson decays
+342980 . Search for color suppressed B meson decays
+343082 . QCD coherence studies using two particle azimuthal correlations
+343083 . A Study of $B^0$ - $\bar{B}^0$ mixing using semileptonic decays of $B$ hadrons produced from $Z^0$
+343181 . Studies of strong and electroweak interactions using final state photon emission in hadronic Z0 decays
+343700 . Search for particles with unexpected mass and charge in Z decays
+344328 . Search for anomalous production of single photon events in e+ e- annihilations at the Z resonance
+344329 . Determination of quark electroweak couplings from direct photon production in hadronic Z decays
+344940 . PHENIX experiment at RHIC
+344944 . STAR: Conceptual design report for the Solenoidal Tracker at RHIC
+346625 . PHENIX: Preliminary conceptual design report
+352696 . Precision measurements of the neutral current from hadron and lepton production at LEP
+352710 . Inclusive measurement of B mesons semileptonic branching fractions
+352789 . A Study of differences between quark and gluon jets using vertex tagging of quark jets
+352823 . Production and decay of the D(s1)+ (2536)
+353222 . A Limit on the tau-neutrino mass
+353460 . Evidence for chain - like production of strange baryon pairs in jets
+353461 . Measurement of the B0 and B+ lifetimes
+353690 . Measurement of the strong coupling constant using tau decays
+353999 . A Measurement of the tau lifetime
+354000 . Measurement of the tau lifetime
+354144 . Measurement of the anti-B0 and B- meson lifetimes
+354146 . Measurement of the tau polarization at the Z resonance
+354187 . Measurement of gamma (Z0 ---> b anti-b) / gamma (z0 ---> hadrons) using leptons
+354188 . A Determination of alpha-s (M (Z0)) at LEP using resummed QCD calculations
+354226 . Two measurements of B0 anti-B0 mixing
+354295 . Results from the L3 experiment at LEP
+354296 . A Search for the neutral Higgs boson at LEP
+354297 . Search for contact interactions in the reactions $e^{+} e^{-} \to \ell^+ \ell^-$ and $e^{+} e^{-} \to \gamma \gamma$
+354298 . Update of electroweak parameters from $Z$ decays
+354481 . Study of the decays lambda(c)+ ---> xi0 K+, lambda(c)+ ---> sigma+ K+ K- and lambda(c)+ ---> xi- K+ pi+
+354482 . Measurement of the triple gluon vertex from four - jet events at LEP
+354483 . Measurement of lambda(b) production and lifetime in Z0 hadronic decays
+354909 . Determination of alpha-s using the next-to-leading log approximation of QCD
+355095 . Evidence for penguins: First observation of B ---> K* (892) gamma
+355488 . Search for narrow vector resonances in the $Z$ mass range
+355489 . Search for a $Z^\prime$ at the $Z$ resonance
+355490 . Measurement of Gamma (b anti-b) / Gamma (had) from hadronic decays of the Z
+355926 . Search for anomalous production of high mass photon pairs in e+ e- collisions at LEP
+355935 . Determination of alpha-s for b quarks at the Z0 resonance
+355937 . Determination of alpha-s from the scaling violation in the fragmentation functions in e+ e- annihilation
+356001 . Analysis of hadronic transitions in upsilon (3S) decays
+356097 . The Forward - backward asymmetry of e+ e- ---> b anti-b and e+ e- ---> c anti-c using leptons in hadronic Z0 decays
+356098 . A Measurement of Gamma (Z0 ---> b anti-b) / Gamma (Z0 ---> hadrons) using an impact parameter technique
+356099 . Search for massive, unstable photinos that violate R-parity
+356100 . Measurement of the average b hadron lifetime in Z0 decays
+356730 . Search for high mass photon pairs in e+ e- ---> f anti-f gamma gamma (f = e, mu, tau, neutrino, q) at LEP
+356731 . An Experimental study of gamma gamma ---> hadrons at LEP
+356732 . A Measurement of D meson production in Z0 hadronic decays
+356733 . A Measurement of the mean lifetimes of charged and neutral B hadrons
+356734 . Search for Z0 decays to two leptons and a charged particle - anti-particle pair
+357422 . Search for the Standard Model Higgs boson
+357423 . Search for a nonminimal Higgs boson produced in the reaction $e^{+} e^{-} \to$ h $Z^{*}$
+357424 . Measurement of the b hadron lifetime with the dipole method
+357602 . Observation of B0 decay to two charmless mesons
+357603 . First measurement of Gamma (D(s)+ ---> mu+ neutrino) / gamma (D(s)+ ---> phi pi+)
+357742 . Measurement of the B(s)0 lifetime
+357748 . Measurement of the $B^0$ - $\bar{B}^0$ mixing, Gamma (Z0 $\to b \bar{b}$) / Gamma (Z0 $\to$ hadrons) and semileptonic branching ratios for $b$ flavored hadrons in hadronic z0 decays
+357751 . Observation of the time dependence of B(d)0 - anti-B(d)0 mixing
+357822 . First measurement of the B(S) meson mass
+357910 . Improved measurements of the neutral current from hadron and lepton production at LEP
+357912 . A test of the flavor independence of the strong interaction for five flavors
+357937 . A Precise measurement of Gamma ($Z \to b \bar{b}$) / Gamma ($Z \to$ hadrons)
+357938 . Measurement of the ratio Gamma (b anti-b) / Gamma (hadron) using event shape variables
+357941 . A Direct measurement of the invisible width of the Z from single photon counting
+358007 . Measurement of the absolute branching fraction for D0 ---> K- pi+
+358413 . A Measurement of the average lifetime of b flavored baryons
+358414 . A Study of muon pair production and evidence for tau pair production in photon-photon collisions at LEP
+358416 . A Measurement of the forward - backward asymmetry of e+ e- ---> c anti-c and e+ e- ---> b anti-b at center-of-mass energies on and near the Z0 peak using D*+- mesons
+358509 . Measurement of charmless semileptonic decays of B mesons
+358510 . Measurement of cross-section for gamma gamma ---> p anti-p
+358527 . Determination of the effective electroweak mixing angle from Z decay
+358528 . Inclusive search for the charmless radiative decay of the b quark (b ---> s gamma)
+358862 . Measurement of Gamma (Z0 ---> b anti-b) / Gamma (Z0 ---> hadrons) using impact parameters and leptons
+358863 . Measurement of the photon structure function F2 (gamma) in the reaction e+ e- ---> e+ e- + hadrons at LEP
+359316 . Measurement of two photon production of the chi(c2)
+359401 . Studies of charged particle multiplicity in b quark events
+359459 . Limits on the production of scalar leptoquarks from Z0 decays at LEP
+360334 . An S matrix analysis of the Z resonance
+360335 . Search for lepton flavor violation in Z decays
+360336 . Measurement of the average lifetime of b hadrons
+360337 . Chi(c) production in hadronic Z decays
+360342 . Multiplicity and transverse momentum correlations in multi - hadronic final states in e+ e- interactions at S**(1/2) = 91.2-GeV
+360637 . Production rate and decay lifetime measurements of B(s)0 mesons at LEP using D(s) and phi mesons
+360638 . Production of Lambda and Lambda anti-Lambda correlations in the hadronic decays of the Z0
+360639 . Correlation measurements in Z ---> tau+ tau- and the tau-neutrino helicity
+360703 . Observation of Lambda(c)+ decays to Lambda pi+ pi0, Sigma0 pi+, Sigma0 pi+ pi0, and Sigma0 pi- pi+ pi+
+360925 . Search for B0 decays to two charged leptons
+361356 . Observation of inclusive B decays to the charmed baryons Sigma(c)++ and Sigma(c)0
+361358 . Observation of D0 ---> K+ pi-
+363186 . Measurement of eta(c) production in untagged two photon collisions at LEP
+363188 . A Study of four fermion processes at LEP
+363280 . Production of charmed mesons in Z decays
+363342 . Measurement of the $B_s^0$ lifetime
+363343 . An Investigation of $B_d^0$ and $B_s^0$ oscillation
+363727 . Measurement of the B0 - anti-B0 mixing using the average electric charge of hadron jets in Z0 decays
+371608 . Observation of a new charmed strange meson
+371609 . Luminosity measurement with the CLEO-II detector
+371610 . Measurement of the branching fraction for D+ ---> K- pi+ pi+
+371611 . Study of the decay lambda(c)+ ---> Lambda lepton+ lepton-neutrino
+371612 . A Measurement of B (D(s)+ ---> phi lepton+ neutrino) / b (D(s)+ ---> phi pi+)
+372141 . Invariant mass dependence of particle correlations in hadronic final states from the decay of the Z0
+372142 . Interference of neutral kaons in the hadronic decays of the Z0
+372143 . Study of hard scattering processes in multi - hadron production from gamma gamma collisions at LEP
+372144 . Measurements of the line shape of the $Z^0$ and determination of electroweak parameters from its hadronic and leptonic decays
+372230 . Two photon production of charged pion and kaon pairs
+372231 . Measurement of Cabibbo suppressed decays of the tau lepton
+372349 . Production and decay of D$_1$(2420)$^0$ and D$_2^*$(2460)$^0$
+372770 . Measurement of the tau- ---> h- pi0 tau-neutrino and tau- ---> h- >= 2 pi0 tau-neutrino branching ratios
+372771 . Measurement of the time dependence of B(d)0 <---> anti-B(d)0 mixing using a jet charge technique
+372772 . Measurement of the production rates of charged hadrons in e+ e- annihilation at the Z0
+372997 . A Study of mean subjet multiplicities in two and three jet hadronic Z0 decays
+372999 . Search for the minimal Standard Model Higgs boson
+373000 . QCD studies using a cone based jet finding algorithm for $e^{+} e^{-}$ collisions at LEP
+373112 . A Measurement of the $B_s^0$ meson mass
+373113 . A Precision measurement of the average lifetime of B hadrons
+373114 . Improved measurements of cross-sections and asymmetries at the Z0 resonance
+373116 . Measurement of the e+ e- ---> gamma gamma (gamma) cross-section at LEP energies
+373119 . Heavy flavor production and decay with prompt leptons in the ALEPH detector
+373120 . Heavy quark tagging with leptons in the ALEPH detector
+373121 . $Z$ production cross-sections and lepton pair forward - backward asymmetries
+373188 . Study of the five charged pion decay of the tau lepton
+373751 . One prong tau decays into charged kaons
+373752 . K0 production in one prong tau decays
+374340 . Semileptonic branching fractions of charged and neutral B mesons
+374394 . Measurement of the anti-B ---> D* lepton anti-neutrino branching fractions and |V(cb)|
+374451 . Search for the standard model Higgs boson in Z0 decays
+374452 . Measurement of the $B^0$ - $\bar{B}^0$ mixing parameter in DELPHI
+374696 . Measurement of cross-sections and leptonic forward - backward asymmetries at the z pole and determination of electroweak parameters
+374698 . Measurement of inclusive production of neutral hadrons from Z decays
+374700 . Measurement of the inclusive B ---> tau-neutrino X branching ratio
+375060 . Production of K0 and Lambda in hadronic Z decays
+375061 . A Measurement of A(b)(FB) in lifetime tagged heavy flavor Z decays
+375479 . Observation of mono - jet events and tentative interpretation
+375574 . Observation of exclusive decays of $B$ mesons at LEP
+375575 . Search for a scalar top quark using the OPAL detector
+375579 . Measurement of the time dependence of B(d)0 <---> anti-B(d)0 mixing using leptons and D*+- mesons
+375599 . Measurement of Gamma (Z0 ---> b anti-b) / Gamma (Z0 ---> hadrons) using a double tagging method
+375600 . Determination of an upper limit for the mass of the tau-neutrino at LEP
+375601 . Measurements of the inclusive branching ratios of tau leptons to K0(s) and charged K* (892)
+375621 . Search for Neutral Higgs Bosons in the Minimal Supersymmetric Extension of the Standard Model
+375622 . Measurement of single photon production in e+ e- collisions near the Z0 resonance
+375720 . First measurement of the inclusive rate for the radiative penguin decay $b \to s \gamma$
+375789 . Search for pair produced heavy scalars in Z0 decays
+375790 . Charged kaon production in tau decays at LEP
+375961 . Search for rare hadronic B decays
+375963 . A Study of radiative muon pair events at $Z^0$ energies and limits on an additional $Z^\prime$ gauge boson
+375965 . J / psi production in the hadronic decays of the Z
+376525 . Upsilon (1s) ---> gamma + noninteracting particles
+376541 . Measurement of the tau lepton polarization and its forward - backward asymmetry from Z0 decays
+376812 . Search for exclusive charmless hadronic B decays
+376814 . A Search for B ---> tau-neutrino
+376816 . A Constraint on |V(td) / V(ts)| from B ---> rho (omega) gamma / B ---> K* gamma
+376841 . The Inclusive decay B ---> eta X
+376843 . Inclusive decays of $B$ mesons to charmonium
+376848 . Evidence for exclusive B decays to final states containing a charmed baryon
+376849 . Search for CP violation in D0 decay
+376850 . Search for D0 ---> K+ pi- pi0
+376851 . Measurement of the tau lepton lifetime
+376852 . Pi- pi+ energy correlation in tau pair events
+376855 . Observation of tau decays with two neutral kaons
+376857 . A Study of jet production rates in the four flavor continuum and a test of QCD
+376858 . Measurement of hadronic spectral moments in tau decays and a determination of alpha-s
+376863 . Measurements of B ---> D(s)+ X decays
+376874 . A Study of baryon production in B decay: Search for semileptonic decays of B mesons to charmed baryons and the first observation of Xi(c) production in B decay
+376875 . Measurement of the form-factors for anti-B0 ---> D*+ lepton- anti-neutrino
+376876 . Measurement of the branching ratio of B ---> X e neutrino with lepton tags
+377106 . Measurement of the B0 - anti-B0 mixing parameter and the Z ---> b anti-b forward - backward asymmetry
+377110 . Search for B ---> K lepton+ lepton- and B ---> K* lepton+ lepton- decays
+377111 . Observation of D1+ (2430) and D2*+ (2470)
+377112 . New decay modes of the Lambda(c)+ charm baryon
+377113 . Measurement of the ratios B (D(s)+ ---> eta lepton+ neutrino) / B (D(s)+ ---> phi lepton+ neutrino) and B (D(s)+ ---> eta-prime lepton+ neutrino) / B (D(s)+ ---> phi lepton+ neutrino)
+377114 . Form-factor ratio measurement in Lambda(c)+ ---> Lambda e+ electron-neutrino
+377115 . Measurement of B (tau- ---> h- h+ h- (pi0) tau-neutrino)
+377116 . Study of the decays tau- ---> K(s)0 h- (pi0) tau-neutrino
+377117 . Measurement of B (tau- ---> tau-neutrino K- K0) and b (tau- ---> tau-neutrino K- K0 pi0)
+377118 . Measurement of the branching ratio for Upsilon (1S) ---> tau+ tau-
+377119 . Search for neutrinoless decays of the tau lepton
+377120 . First observation of Xi(c)+ ---> Xi0 e+ electron-neutrino and a measurement of the Xi(c)+ / Xi(c)0 lifetime ratio
+377121 . Measurement of the ratios of form-factors in the decay D(s)+ ---> phi e+ electron-neutrino
+377122 . Observation of B ---> psi pi decays
+377273 . Updated measurement of the tau lifetime
+377274 . A Measurement of the QCD color factor ratios C(A) / C(F) and T(F) / C(F) from angular correlations in four jet events
+377392 . Measurement of the b ---> tau- anti-tau-neutrino X inclusive / exclusive branching ratios
+377393 . Measurement of the branching fraction for Upsilon (1S) ---> tau+ tau-
+377487 . Production characteristics of K0 and light meson resonances in hadronic decays of the Z0
+377489 . Measurement of the Gamma (b anti-b) / Gamma (hadron) branching ratio of the Z by double hemisphere tagging
+377490 . Measurement of time dependent B(d)0 - anti-B(d)0 mixing
+378295 X The L3 silicon microvertex detector
+378319 . Observation of D1+ (2420) and D2*+ (2460)
+379212 . Determination of event shape distributions and alpha-s(b) from Z0 ---> b anti-b events at LEP
+380423 . Measurement of the b ---> tau- anti-tau-neutrino X branching ratio and an upper limit on B- ---> tau- anti-tau-neutrino
+380424 . Study of the four fermion final state at the Z resonance
+381044 . A Measurement of tau polarization at LEP
+381046 . B* production in Z decays at LEP
+381075 . Energy and particle flow in three jet and radiative two jet events from hadronic Z decays
+381167 . A Test of CP invariance in Z0 ---> tau+ tau- using optimal observables
+381617 . Performance of the ALEPH detector at LEP
+381645 . Search for CP violation in the decay Z ---> tau+ tau-
+381665 . A Study of D*+ pi- production in semileptonic B decay
+381696 . Observation of excited baryon states decaying to Lambda(c)+ pi+ pi-
+381699 . First measurement of the rate for the inclusive radiative penguin decay $b \to  s \gamma$
+382035 . Measurement of the forward - backward asymmetry of e+ e- ---> Z ---> b anti-b using prompt leptons and a lifetime tag
+382036 . First evidence of hard scattering processes in single tagged gamma gamma collisions
+382038 . Measurement of exclusive branching fractions of hadronic one space prong tau decays
+382058 . Study of the subjet structure of quark and gluon jets
+382179 . Inclusive pi+-, K+- and (p, anti-p) differential cross-sections at the Z resonance
+382181 . Measurement of the forward - backward asymmetry of charm and bottom quarks at the Z pole using D*+- mesons
+382185 . Observations of pi - B charge - flavor correlations and resonant B pi and B K production
+382187 . Search for anomalous Z --> gamma gamma gamma events at LEP
+382207 . Michel parameters and tau-neutrino helicity from decay correlations in Z --> tau+ tau-
+382208 . Observation of orbitally excited B mesons
+382219 . A Measurement of the production of D*+- mesons on the Z0 resonance
+382221 . Inclusive decays of $B$ mesons to charmonium
+382284 . Search for heavy neutral Higgs bosons in two doublet models
+382285 . First measurement of the strange quark asymmetry at the Z0 peak
+382382 . Measurement of energetic single photon production at LEP
+392228 . New decay modes of the Lambda(c)+ charm baryon
+392257 . Production of charged particles, K0(s), K+-, p and Lambda in Z --> b anti-b events and in the decay of b hadrons
+392342 . Form-factor ratio measurement in Lambda(c)+ ---> Lambda e+ electron-neutrino
+392480 . A Study of charm meson production in semileptonic B decays
+392529 . Measurement of the weak charged current structure in semileptonic b hadron decays at the Z peak
+392530 . Measurement of Gamma ($b \bar{b}$) / Gamma (hadrons) using impact parameter measurements and lepton identification
+392538 . Measurement of the leptonic branching ratios of the tau lepton
+392704 . Measurement of the decay asymmetry parameters in Lambda(c)+ ---> Lambda pi+ and Lambda(c)+ ---> Sigma+ pi0
+392864 . A Study of $B$ meson oscillations using dilepton events
+392865 . An Upper limit for the tau-neutrino mass from tau --> 5 pi (pi0) tau-neutrino decays
+392889 . Comparisons of the properties of final state photons in hadronic Z0 decays with predictions from matrix element calculations
+392892 . Search for neutralinos in $Z$ decays
+392978 . Search for supersymmetric particles with R-parity violation in $Z$ decays
+393292 . Improved measurements of the $B^0$ and $B^{+}$ meson lifetimes
+393293 . An Improved measurement of the $B_s^0$ lifetime
+393413 . Improved tau polarization measurement
+393414 . Measurement of the hadronic decay current in tau- --> pi- pi- pi+ tau-neutrino
+393416 . Test of the flavor independence of alpha-s
+393503 . The Production of neutral kaons in Z0 decays and their Bose-Einstein correlations
+393504 . Search for heavy charged particles and for particles with anomalous charge in $e^{+} e^{-}$ collisions at LEP
+393519 . A Study of jet production rates in the four flavor continuum and a test of QCD
+393522 . Measurement of the ratio of branching fractions B (D0 ---> pi- e+ electron-neutrino) / B (D0 ---> K- e+ electron-neutrino)
+393792 . Production of strange B baryons decaying into Xi-+ - lepton-+ pairs at LEP
+393793 . Measurements of the tau polarization in Z0 decays
+393953 . A Measurement of charged particle multiplicity in Z0 --> c anti-c and Z0 --> b anti-b events
+393954 . Inclusive strange vector and tensor meson production in hadronic Z0 decays
+394052 . Inclusive measurements of the K+- and p / anti-p production in hadronic Z0 decays
+394246 . A Search for B ---> lepton anti-lepton-neutrino
+394354 . Tests of QED at LEP energies using e+ e- --> gamma gamma (gamma) and e+ e- --> lepton+ lepton- gamma gamma
+394355 . A Search for lepton flavor violating Z0 decays
+394716 . Strange baryon production in Z hadronic decays
+394752 . Measurement of the D*+- cross-section in two photon collisions at LEP
+394753 . The Forward - backward asymmetry for charm quarks at the Z pole
+394959 . A Measurement of the forward - backward asymmetry of e+ e- --> b anti-b by applying a jet charge algorithm to lifetime tagged events
+394960 . A Measurement of the Lambda(b)0 lifetime
+394961 . Evidence for gluon interference in hadronic Z decays
+395025 . One prong tau decays with neutral kaons
+395026 . B* production in Z decays
+395029 . Lifetimes of charged and neutral B hadrons using event topology
+395030 . A Measurement of $B^{+}$ and $B^0$ lifetimes using $\bar{D} \ell^+$ events
+395032 . Lifetime and production rate of beauty baryons from Z decays
+395371 . A Study of QCD structure constants and a measurement of alpha-s (M(Z0)) at LEP using event shape observables
+395372 . Measurement of the tau- ---> h- h+ h- tau-neutrino and tau- ---> h- h+ h- >= 1 pi0 tau-neutrino branching ratios
+395432 . Search for CP violation in D0 decay
+395450 . Measurement of the longitudinal, transverse and asymmetry fragmentation functions at LEP
+395451 . Measurement of the multiplicity of charm quark pairs from gluons in hadronic Z0 decays
+395842 . Observation of short range three particle correlations in e+ e- annihilations at LEP energies
+396179 . A Model independent measurement of quark and gluon jet properties and differences
+396397 . Investigation of the string effect using final state photons
+396398 . Measurements of the $b$ baryon lifetime
+396711 . Measurement of alpha-s from tau decays
+396884 . A Measurement of the photon structure function F2(gamma) at an average Q**2 of 12-GeV**2/c**4
+396889 . Measurements of the charged particle multiplicity distribution in restricted rapidity intervals
+396895 . Limit on B(s)0 oscillation using a jet charge method
+397145 . Search for exclusive charmless B meson decays with the DELPHI detector at LEP
+397391 . Study of prompt photon production in hadronic Z0 decays
+397395 . Measurement of the average $b$ baryon lifetime and the product branching ratio f ($b \to Lambda_b$ ) x BR (Lambda($b$) $\to \Lambda \ell^-$ anti-neutrino $X^{)}$
+397664 . Search for exclusive charmless hadronic B decays
+397665 . Observation of the Cabibbo suppressed charmed baryon decay lambda(c)+ ---> p phi
+397770 . Observation of a narrow state decaying into Xi(c)+ pi-
+397787 . Observation of the Xi(c)+ charmed baryon decays to Sigma+ K- pi+, Sigma+ anti-K*0, and Lambda K- pi+ pi+
+397788 . Observation of the isospin violating decay D(s)*+ ---> D(s)+ pi0
+397789 . Measurements of the ratios B (D(s)+ ---> eta lepton+ neutrino) / B (D(s)+ ---> phi lepton+ neutrino) and B (D(s)+ ---> eta-prime lepton+ neutrino) / B (D(s)+ ---> phi lepton+ neutrino)
+398193 . First measurement of the quark to photon fragmentation function
+398194 . Measurement of D(s)+ meson production in Z decays and of the anti-B(s)0 lifetime
+398195 . Measurement of alpha-s from scaling violations in fragmentation functions in e+ e- annihilation
+398228 . The Inclusive decay B --- eta X
+398317 . Inclusive production of neutral vector mesons in hadronic Z decays
+398319 . Measurement of the effective b quark fragmentation function at the Z resonance
+398320 . Delta++ production in hadronic Z0 decays
+398321 . A Measurement of the tau leptonic branching fractions
+398322 . Upper limits on the branching ratios tau --> mu gamma and tau --> e gamma
+398339 . A Measurement of the |V(cb)| from anti-B(0) --> D*+- lepton- anti-lepton-neutrino
+398426 . Production of excited beauty states in Z decays
+398498 . Study of the K(s)0 K(s)0 final state in two photon collisions
+399737 . Measurement of Delta++ (1232) production in hadronic Z decays
+399990 . A Comparison of $b$ and ($u d s^{)}$ quark jets to gluon jets
+400001 . Search for neutral charmless B decays at LEP
+400574 . Search for the decays B(d)0 --> gamma gamma and B(s)0 --> gamma gamma
+400623 . Measurements of the decays tau- ---> h- h+ h- tau-neutrino and tau- ---> h- h+ h- pi0 tau-neutrino
+400812 . A Study of b quark fragmentation into B0 and B+ mesons at LEP
+400822 . Measurement of the $B_s$ 0 lifetime and production rate with $D_s - \ell^+$ combinations in $Z$ decays
+400823 . Measurement of the tau lepton lifetime
+401100 . Measurement of inclusive pi0 production in hadronic Z0 decays
+401102 . Tau leptonic branching ratios
+401274 . Measurements of the B semileptonic branching fraction with lepton tags
+401554 . A Precise measurement of the average $b$ hadron lifetime
+401599 . Measurements of B ---> D(s)+ X decays
+401601 . Measurement of the tau- ---> e- anti-electron-neutrino tau-neutrino branching ratio
+401603 . Tau hadronic branching ratios
+401612 . Search for promptly produced heavy quarkonium states in hadronic Z decays
+401961 . Measurements of the inclusive semielectronic D0 branching fraction
+402178 . A Precise measurement of the tau lepton lifetime
+402487 . $J/\psi$ and $\psi^\prime$ production in hadronic $Z^0$ decays
+402488 . Test of the exponential decay law at short decay times using $\tau$ leptons
+402895 . Measurement of Lambda(b) polarization in Z decays
+403254 . Energy dependence of the differences between the quark and gluon jet fragmentation
+403296 . Tau decays into three charged leptons and two neutrinos
+403297 . Measurement of the form-factors for anti-B0 ---> D*+ lepton- anti-neutrino
+404106 . Measurement of the heavy quark forward - backward asymmetries and average $B$ mixing using leptons in multi - hadronic events
+404273 . Study of B ---> psi rho
+404562 . Quark and gluon jet properties in symmetric three jet events
+404590 . Observation of new decay modes of the charmed strange baryon Xi(c)+
+404602 . Measurement of eta production in two and three jet events from hadronic Z decays at LEP
+404603 . Search for excited leptons in e+ e annihilation at s**(1/2) = 130-GeV - 140-GeV
+404604 . Measurement of hadron and lepton pair production at 130-GeV < $\sqrt{s}$ < 140-GeV at LEP
+404605 . Search for a narrow resonance in Z0 decays into hadrons and isolated photons
+404811 . Performance of the DELPHI detector
+404814 . Search for charged Higgs bosons using the OPAL detector at LEP
+404815 . Observation of Upsilon production in hadronic Z0 decays
+404916 . Study of the structure of hadronic events and determination of alpha-s at s**(1/2) = 130-GeV and 136-GeV
+415407 . Limits on flavor changing neutral currents in D0 meson decays
+415408 . Decays of tau leptons to final states containing K(s)0 mesons
+415409 . First observation of the decay tau- ---> K- eta tau-neutrino
+415612 . Measurement of the branching fraction for D(s)- ---> phi pi-
+415744 . Charged particle multiplicity in e+ e-interactions at s**(1/2) = 130-GeV
+415745 . Measurement of Lambda polarization from Z decays
+415746 . Search for new phenomena using single photon events in the DELPHI detector at LEP
+415889 . Physics with ARGUS
+415895 . A Measurement of B (D0 ---> K- pi+ pi0) / B (D0 ---> K- pi+)
+415897 . Analysis of D0 ---> K anti-K X decays
+415900 . Measurement of the B(d)0 oscillation frequency using kaons, leptons and jet charge
+416097 . Updated precision measurement of the average lifetime of B hadrons
+416098 . Production of SIGMA0 and OMEGA- in Z decays
+416099 . Determination of |V(cb)| from the semileptonic decay B0 --> D*- lepton - neutrino
+416100 . Improved measurement of the $\bar{B}^0$ and $B^{-}$ meson lifetimes
+416101 . Search for supersymmetric particles in e+ e- collisions of center-of-mass energies of 130-GeV and 136-GeV
+416137 . Determination of sin**2 theta(w)(eff) using jet charge measurements in hadronic Z decays
+416141 . Search for exclusive decays of the LAMBDA(b) baryon and measurement of its mass
+416142 . Measurement of the partial decay width R(b) sup(0) = GAMMA (b anti-b) / GAMMA(had) of the Z with the DELPHI detector at LEP
+416351 . Improved measurement of the lifetime of the tau lepton
+416353 . Topological search for the production of neutralinos and scalar particles
+416354 . Search for chargino and neutralino production using the OPAL detector at s**(1/2) = 130-GEV - 136-GeV at LEP
+416357 . Determination of the average lifetime of b baryons
+416471 . Observation of an excited charmed baryon decaying into Xi(c)0 pi+
+416741 . First measurement of f2-prime (1525) production in Z0 hadronic decays
+416744 . Measurement of muon pair production at 50-GeV < s**(1/2) < 86-GeV at LEP
+416745 . Measurement of cross-sections and asymmetries in e+ e- collisions at 130-GeV - 140-GeV center-of-mass energy
+417261 . Study of the B(s)0 anti-B(s)0 oscillation frequency using D(s)- lepton+ combinations in Z decays
+417265 . Mean lifetime of the B(s)0 meson
+417266 . Measurement of the mass of the Lambda(b) baryon
+418003 . Search for supersymmetric particles at 130-GeV < $\sqrt{s}$ < 140-GeV at LEP
+418006 . Upper limit on the tau-neutrino mass from tau --> 3 h tau-neutrino decays
+418007 . QCD studies with e+ e- annihilation data at 130-GeV and 136-GeV
+418010 . A Study of four fermion final states with high multiplicity at LEP
+418011 . Measurements with photonic events in e+ e- collisions at center-of-mass energies of 130-GeV - 140-GeV
+418087 . Search for unstable sequential neutral and charged heavy leptons in e+ e- annihilation at s**(1/2) = 130-GeV and 136-GeV
+418329 . First study of the interference between initial and final state radiation at the Z resonance
+418417 . Measurement of the Michel parameters and the average tau-neutrino helicity from tau decays in e+ e- ---> tau+ tau-
+418418 . Kaon interference in the hadronic decays of the Z0
+418420 . A Study of single and multi - photon production in e+ e- collisions at center-of-mass energies of 130-GeV and 136-GeV
+418421 . Four jet final state production in e+ e- collisions at center-of-mass energies of 130-GeV and 136-GeV
+418663 . Search for new particles in hadronic events with isolated photons
+418664 . Observation of multiple hard photon final states at s**(1/2) = 130-GeV - 140-GeV at LEP
+418665 . Measurement of the branching ratios b --> e neutrino X, mu neutrino X, tau-neutrino X and neutrino X
+418670 . A Study of charm hadron production in Z0 ---> c anti-c and Z0 ---> b anti-b decays at LEP
+418937 . Search for anomalous production of single photons at $\sqrt{s}$ = 130-GeV and 136-GeV
+418939 . Study of radiative leptonic events with hard photons and search for excited charged leptons at S**(1/2) = 130-GeV - 136-GeV
+419905 . Measurement of the b forward - backward asymmetry and mixing using high p(T) leptons
+419908 . Prompt J / psi production in hadronic Z0 decays
+419909 . A First measurement of the Lambda anti-Lambda and Lambda Lambda (anti-Lambda anti-Lambda) spin compositions in hadronic Z0 decays
+419911 . Search for the lightest chargino at s**(1/2) = 130-GeV and 136-GeV in DELPHI
+419912 . Search for high mass gamma gamma resonances in e+ e ---> lepton+ lepton- gamma gamma, neutrino anti-neutrino gamma gamma and q anti-q gamma gamma at LEP-1
+420342 . Mass limit for the standard model Higgs boson with the full LEP-1 ALEPH data sample
+420343 . Measurement of the B(d)0 meson oscillation frequency
+420345 . A Measurement of the $B_d^0$ oscillation frequency using leptons and $D^{*+-}$ mesons
+420348 . Search for CP violation in the decay Z --> b anti-b g
+420527 . Strange b baryon production and lifetime in Z decays
+420528 . Measurement of inclusive K*0 (892), Phi (1020) and K(2)*0 (1430) production in hadronic Z decays
+420645 . Mass limit for the lightest neutralino
+420673 . Search for heavy lepton pair production in e+ e- collisions at center-of-mass energies of 130-GeV and 136-GeV
+420727 . Measurement of the tau lepton lifetime
+420961 . Observation of exclusive B decays to final states containing a charmed baryon
+420962 . First measurement of the B ---> pi lepton neutrino and B ---> rho (omega) lepton neutrino branching fractions
+421545 . Study of rare b decays with the DELPHI detector at LEP
+421546 . Studies of QCD in e+ e- ---> hadrons at E(cm) = 130-GeV and 136-GeV
+421548 . Transverse momentum correlations in hadronic Z decays
+421549 . Search for excited leptons at 130-GeV - 140-GeV
+421550 . Four fermion production in e+ e- collisions at center-of-mass energies of 130-GeV and 136-GeV
+421552 . Measurement of hadron and lepton pair production from $e^{+} e^{-}$ annihilation at center-of-mass energies of 130-GeV and 136-GeV
+421560 . Search for charginos and neutralinos with R-parity violation at s**(1/2) = 130-GeV and 136-GeV
+421561 . Production of orbitally excited charm mesons in semileptonic B decays
+421562 . Search for neutral Higgs boson production through the process e+ e- --> Z* H0
+421815 . A Precise measurement of the tau polarization and its forward - backward asymmetry at LEP
+421816 . Multiplicity dependence of Bose-Einstein correlations in hadronic Z0 decays
+421817 . Search for unstable neutral and charged heavy leptons in e+ e- collisions at s**(1/2) = 130-GeV and 136-GeV
+421818 . Search for excited leptons in e+ e- collisions at s**(1/2) = 130-GeV and 136-GeV
+421976 . Searches for supersymmetric particles and anomalous four jet production at $\sqrt{s}$ = 130-GeV and 136-GeV at LEP
+421977 . Sigma+, Sigma0 and Sigma- hyperon production in hadronic Z0 decays
+421978 . Strange baryon production in hadronic Z0 decays
+421984 . A Study of tau decays involving eta and omega mesons
+421985 . Improved measurement of the B(d)0 - anti-B(d)0 oscillation frequency
+421994 . Search for neutralinos, scalar leptons and scalar quarks in e+ e- interactions at s**(1/2) = 130-GeV and 136-GeV.
+421995 . A Measurement of the charm and bottom forward - backward asymmetries using D mesons at LEP
+421997 . Test of the four fermion contact interaction in e+ e- collisions at 130-GeV - 140-GeV
+423034 . Observation of charmless hadronic b decays
+423486 . Test of QCD analytic predictions for the multiplicity ratio between gluon and quark jets
+423574 . Measurement of the branching fraction of the radiative decay tau- ---> mu- anti-muon-neutrino tau-neutrino gamma
+423696 . Charm counting in b decays
+423697 . Search for neutral Higgs bosons in $Z^0$ decays using the OPAL detector at LEP
+424070 . Measurement of the lifetime of the tau lepton
+424112 . Tuning and test of fragmentation models based on identified particles and precision event shape data
+424575 . Observation of two excited charmed baryons decaying into Lambda(c)+ pi+-
+424628 . Search for lepton flavor number violating Z0 decays
+424629 . Measurement of event shape and inclusive distributions at S**(1/2) = 130-GeV and 136-GeV
+424630 . An Upper limit for Br (Z0 ---> g g g) from symmetric three jet Z0 hadronic decays
+424635 . Inclusive jet production in photon-photon collisions at $\sqrt{s}$ = 130-GeV and 136-GeV
+424636 . Search for chargino and neutralino production in $e^{+} e^{-}$ collisions at $\sqrt{s}$ = 161-GeV
+424637 . Search for scalar top and scalar bottom quarks using the OPAL detector at LEP
+425065 . A Measurement of the average bottom hadron lifetime
+425066 . Search for excited leptons in e+ e- collisions at s**(1/2) = 161-GeV
+425120 . A Search for nonresonant B+ ---> h+ h- h+ decays
+425121 . Search for phi mesons in tau lepton decay
+425319 . Search for unstable neutral and charged heavy leptons in e+ e- collisions at S**(1/2) = 161-GeV
+425320 . Measurement of the mass of the $W$ boson in $e^{+} e^{-}$ collisions at $S^{(1/2)}$ = 161-GeV
+425867 . Search for exclusive $B$ decays to $J/\psi$ and $\eta$ or $\pi^0$ with the L3 detector
+425868 . Search for neutral $B$ meson decays to two charged leptons
+425927 . Measurement of the direct photon spectrum in upsilon (1s) decays
+425943 . Measurements of |V(cb)|, form-factors and branching fractions in the decays anti-B0 ---> D*+ lepton- anti-lepton-neutrino and anti-B0 ---> D+ lepton- anti-lepton-neutrino
+426207 . Measurement of the QED longitudinal structure function of the photon using azimuthal correlations at LEP
+426208 . Photonic events with large missing energy in e+ e- collisions at s**(1/2) = 161-GeV
+426209 . Analysis of hadronic final states and the photon structure function F2 (gamma) in deep inelastic electron - photon scattering at LEP
+426210 . Production of fermion pair events in e+ e- collisions at 161-GeV center-of-mass energy
+426231 . Experimental test of lepton universality in tau decay
+426233 . Search for neutrinoless tau decays: tau ---> e gamma and tau ---> mu gamma
+426505 . Search for pair production of heavy objects in 4 jet events at s**(1/2) = 130-GeV - 136-GeV
+426506 . A Precise measurement of the B(d)0 meson lifetime using a new technique
+426799 . Search for the standard model Higgs boson in e+ e- collisions at s**(1/2) = 161-GeV
+426800 . A Measurement of |V(cb)| using anti-B0 ---> D*+ lepton- anti-lepton-neutrino decays
+427104 . An Improved measurement of R($b$) using a double tagging method
+427105 . Search for excited leptons in e+ e- collisions at s**(1/2) = 161-GeV
+427106 . Study of the weak charged hadronic current in b decays
+427107 . Measurement of inclusive omega and eta-prime production in hadronic Z decays
+427130 . Measurement of the semileptonic branching fraction of inclusive b baryon decays to Lambda
+427131 . Inclusive production of neutral pions in hadronic Z decays
+427323 . Search for B ---> mu anti-muon-neutrino gamma and B ---> e anti-electron-neutrino gamma
+428072 . Studies of quantum chromodynamics with the ALEPH detector
+428073 X The Forward muon detector of L3
+428162 . Search for the B(c) Meson
+428163 . Search for neutral heavy leptons produced in Z decays
+428178 . A Measurement of alpha-s from the scaling violation in e+ e- annihilation
+428179 . Search for stable heavy charged particles in e+ e- collisions at s**(1/2) = 130-GeV to 136-GeV, 161-GeV and 172-GeV
+428228 . Identified particles in quark and gluon jets
+428245 . A Measurement of the Michel parameters in leptonic decays of the tau
+428274 . Search for charged scalar leptons using the OPAL detector at s**(1/2) = 161-GeV
+428470 . Measurement of D(s)- ---> tau- anti-tau-neutrino and a new limit for B- ---> tau- anti-tau-neutrino
+428492 . Search for CP violation in Z0 ---> tau+ tau- and an upper limit on the weak dipole moment of the tau lepton
+428493 . B* production in Z0 decays
+439530 . Study of gluon versus quark fragmentation in Upsilon --> g g gamma and e+ e- --> q anti-q gamma events at s**(1/2) = 10-GeV
+439560 . Analyses of D+ --> K(S)0 K+ and D+ ---> K(S)0 pi+
+439745 . Lambda anti-lambda production in two photon interactions at CLEO
+439746 . Tau-neutrino helicity from h+- energy correlations
+439797 . The Topology dependence of charged particle multiplicities in three jet events
+440051 . A Measurement of the QCD color factors and a limit on the light gluino
+440102 . Measurement of the triple gauge boson coupling $\alpha$ (w $\phi^{)}$ from $W^{+} W^{-}$ production in $e^{+} e^{-}$ collisions at $\sqrt{s}$ = 161-GeV
+440103 . Study of phi (1020), D*+- and B* spin alignment in hadronic Z0 decays
+440104 . Measurements of the b quark forward - backward asymmetry around the Z0 peak using jet charge and vertex charge
+440217 . Measurement and interpretation of the $W$ pair cross-section in $e^{+} e^{-}$ interactions at 161-GeV
+440218 . Study of the muon pair production at center-of-mass energies from 20-GeV to 136-GeV with the ALEPH detector
+440388 . Study of the B0 semileptonic decay spectrum at the Upsilon (4s) resonance
+440407 . Search for excited leptons in e+ e- annihilation at s**(1/2) = 161-GeV
+440408 . Pair production of $W$ bosons in $e^{+} e^{-}$ interactions at $\sqrt{s}$ = 161-GeV
+440588 . Measurement of the spectral functions of vector current hadronic tau decays
+440589 . Measurement of the tau lepton lifetime with the three-dimensional impact parameter method
+440717 . Measurement of the decay amplitudes and branching fractions of $b \to J/\psi K^{*}$ and $b \to J/\psi K$ decays
+440721 . QCD studies with e+ e- annihilation data at 161-GeV
+440724 . A Measurement of R(b) using a lifetime mass tag
+440725 . A Measurement of R(b) using mutually exclusive tags
+440904 . Measurement of the neutron spin structure function g1(n) with a polarized He-3 internal target
+440969 . The Inclusive decays B --> D X and B --> D* X
+441040 . A Measurement of the hadronic decay current and the tau-neutrino helicity in tau- ---> pi- pi- pi+ tau-neutrino
+441187 . Measurement of the branching fraction for D0 ---> K- pi+
+441188 . Measurement of the $W$ mass in $e^{+} e^{-}$ collisions at production threshold
+441189 . Rapidity correlations in Lambda baryon and proton production in hadronic Z0 decays
+441326 . Limit on the two photon production of the glueball candidate f(J) (2220) at CLEO
+441373 . Search for the $B_c$ meson in hadronic $Z$ decays
+441553 . Studies of the Cabibbo suppressed decays d+ ---> pi0 lepton+ neutrino and d+ ---> eta e+ electron-neutrino
+441608 . Measurement of correlations between pions from different Ws in e+ e ---> W+ W- events
+441927 . Production of Single $W$ Bosons at LEP
+442224 . Measurement of the transverse spin correlation in Z --> tau+ tau- decays
+442338 . Search for neutrinoless tau decays involving pi0 or eta mesons
+442539 . Search for the Decays B0 ---> D*+ D*-
+442600 . Production of P wave charm and charm - strange mesons in hadronic $Z^0$ decays
+442601 . A Study of $B$ meson oscillations using hadronic $Z^0$ decays containing leptons
+442880 . Measurement of the multiplicity of gluons splitting to bottom quark pairs in hadronic Z0 decays
+442909 . Observation of the decay D(s)+ ---> omega pi+
+442910 . First observation of inclusive B decays to the charmed strange baryons Xi(c)0 and Xi(c)+
+443012 . A Study of the reaction e+ e- ---> mu+ mu- gamma (ISR) at LEP and search for new physics at annihilation energies near 80-GeV
+443150 . Determination of the Michel parameters and the tau-neutrino helicity in tau decay
+443356 . Measurement of the transverse spin correlations in the decay Z ---> tau+ tau-
+443562 . Measurement of $B_d^0$ - $\bar{B}_d$ 0 oscillations
+443563 . QCD studies and determination of alpha-s in e+ e- collisions at s**(1/2) = 161-GeV and 172-GeV
+443564 . Production of e, mu and tau pairs in untagged two photon collisions at LEP
+443565 . Inclusive $J/\psi$, $\psi^\prime$ and chi($c$) production in hadronic $Z$ decays
+443566 . Cross-section of hadron production in gamma gamma collisions at LEP
+443568 . Search for scalar top and scalar bottom quarks at $\sqrt{s}$ = 170-GeV - 172-GeV in $e^{+} e^{-}$ collisions
+443704 . Measurement of the anti-B ---> D lepton anti-neutrino partial width and form-factor parameters
+443800 . An Upper limit on the branching ratio for tau decays into seven charged particles
+443801 . K(s)0 and Lambda production in quark and gluon jets at LEP
+443802 . Measurement of hadron and lepton pair production at 161-GeV < s**(1/2) < 172-GeV at LEP
+443827 . A New upper limit on the decay eta --> e+ e-
+443920 . Search for sleptons in e+ e- collisions at center-of-mass energies of 161-GeV and 172-GeV
+444150 . Measurement of the spin density matrix for the rho0, K*0 (892) and phi produced in Z0 decays
+444151 . Search for anomalous four jet events in e+ e- annihilation at s**(1/2) = 130-GeV to 172-GeV
+444313 . Search for pair production of longlived heavy charged particles in e+ e- annihilation
+444680 . Observation of charge ordering in particle production in hadronic Z0 decay
+444744 . A New measurement of b ---> D* pi branching fractions
+444745 . First observation of tau ---> 3 pi eta tau-neutrino and tau ---> f1 pi tau-neutrino decays
+444980 . Three-prong $\tau$ decays with charged kaons
+444981 . Search for the Standard Model Higgs boson in e+ e- collisions at s**(1/2) = 161-GeV, 170-GeV and 172-GeV
+445190 . An Updated study of B meson oscillations using dilepton events
+445324 . Measurement of $W$ pair cross-sections in $e^{+} e^{-}$ interactions at $\sqrt{s}$ = 172-GeV and $W$ decay branching fractions
+445325 . Resonance formation in the pi+ pi- pi0 final state in two photon collisions
+445326 . Measurement of the branching fractions and forward - backward asymmetries of the Z0 into light quarks
+445331 . Search for the neutral Higgs bosons of the MSSM in e+ e- collisions at s**(1/2) from 130-GeV to 172-GeV
+445351 . A Measurement of the total cross-section for e+ e- ---> hadrons at s**(1/2) = 10.52-GeV
+445600 . Study of the decay tau- --> 2 pi- pi+ 3 pi0 tau-neutrino
+445685 . Search for the decay tau- ---> 4 pi- 3 pi+ (pi0) tau-neutrino
+445998 . Study of hadronic events and measurements of alpha-s between 30-GeV and 91-GeV
+445999 . Search for heavy neutral and charged leptons in e+ e- annihilation at s**(1/2) = 161-GeV and s**(1/2) = 172-GeV
+446000 . Single and multiphoton events with missing energy in e+ e- collisions at 161-GeV < s**(1/2) < 172-GeV
+446001 . Hard photon production at s**(1/2) = 161-GeV and 172-GeV at LEP
+446002 . $\upsilon$ production in $Z$ decays
+446031 . Measurements of the meson - photon transition form-factors of light pseudoscalar mesons at large momentum transfer
+446590 . Search for new physics in energetic single photon production in $e^{+} e^{-}$ annihilation at the $Z$ resonance
+446670 . Search for the standard model Higgs boson in e+ e- interactions at 161-GeV <= s**(1/2) <= 172-GeV
+446671 . Search for chargino and neutralino production at $\sqrt{s}$ = 170-GeV and 172-GeV at LEP
+446672 . Measurement of the quark to photon fragmentation function through the inclusive production of prompt photons in hadronic Z0 decays
+446673 . Measurement of the Q**2 evolution of the photon structure function F2(gamma)
+446719 . Searches for scalar top and scalar bottom quarks at LEP-2
+446783 . Missing mass spectra in hadronic events from e+ e- collisions at s**(1/2) = 161-GeV - 172-GeV and limits on invisible Higgs decay
+446939 . Updated measurement of the tau lepton lifetime
+446940 . Measurement of the W pair cross-section in e+ e- collisions at 172-GeV
+447145 . Measurement of f(c ---> D*+ X), f(b ---> D*+ X) and Gamma (c anti-c) / Gamma (hadronic) using D*+- mesons
+447146 . Spin alignment of leading K*(892)0 mesons in hadronic Z0 decays
+447148 . Search for neutral and charged Higgs bosons in e+ e- collisions at s**(1/2) = 161-GeV and 172-GeV
+447185 . A Measurement of the $B_s^0$ lifetime using reconstructed $D_s$ - mesons
+447186 . Tests of the standard model and constraints on new physics from measurements of fermion pair production at 130-GeV to 172-GeV at LEP
+447187 . Measurement of the photon structure function F(2)**gamma at low x
+447188 . Polarization and forward - backward asymmetry of Lambda baryons in hadronic Z0 decays
+447214 . Measurements of mass, width and gauge couplings of the $W$ boson at LEP
+447353 . Search for R-parity breaking sneutrino exchange at LEP
+447377 . Multiplicity distributions of gluon and quark jets and tests of QCD analytic predictions
+447559 . Search for color suppressed B hadronic decay processes with CLEO
+447626 . Investigation of semileptonic B meson decay to P wave charm mesons
+447944 . Neutral current four fermion production in e+ e- interactions at 130-GeV <= s**(1/2) <= 172-GeV
+447945 . Measurement of eta-prime (958) formation in two photon collisions at LEP-1
+448033 . Multiphoton final states in e+ e- collisions at s**(1/2) = 130-GeV - 172-GeV
+448034 . Search for the standard model higgs boson in e+ e- collisions at s**(1/2) = 161-GeV - 172-GeV
+448093 . Measurement of the $W$ boson mass and $W^{+} W^{-}$ production and decay properties in $e^{+} e^{-}$ collisions at $\sqrt{s}$ = 172-GeV
+448153 . Search for charginos, neutralinos and gravitinos at LEP
+448154 . Measurement of the $B$ baryon lifetime and branching fractions in $Z$ decays
+448370 . Measurement of the quark and gluon fragmentation functions in Z0 hadronic decays
+448436 . Measurement of the triple gluon vertex from double quark tagged four jet events
+448664 . Search for a massive di-photon resonance at S**(1/2) = 91-GeV - 172-GeV
+448725 . Measurement of triple gauge boson couplings from $W^{+} W^{-}$ production at $S^{(1/2)}$ = 172-GeV
+448729 . Search for unstable heavy and excited leptons in e+ e- collisions at S**(1/2) = 170-GeV - 172-GeV
+448977 . Search for B(s)0 anti-B(s)0 oscillations
+449077 . Searches for supersymmetry in the photon(s) plus missing energy channels at s**(1/2) = 161-GeV and 172-GeV
+449290 . Charged particle multiplicity in e+ e- ---> q anti-q events at 161-GeV and 172-GeV and from the decay of the W boson
+449346 . Search for inclusive $b \to s \ell^+$ lepton-
+449533 . Search for anomalous production of dilepton events with missing transverse momentum in e+ e- collisions at s**(1/2) = 161-GeV and 172-GeV
+449592 . Search for charged Higgs bosons in e+ e- collisions at center-of-mass energies from 130-GeV to 172-GeV
+449593 . Measurement of the average lifetime of $b$ hadrons in $Z$ decays
+449594 . Search for scalar leptons, charginos and neutralinos in $e^{+} e^{-}$ collisions at $\sqrt{s}$ = 161-GeV to 172-GeV
+449730 . Searches for charginos and neutralinos in $e^{+} e^{-}$ collisions at $\sqrt{s}$ = 161-GeV and 172-GeV
+450214 . Flavor - specific inclusive B decays to charm
+450757 . Search for anomalous production of photonic events with missing energy in e+ e- collisions at s**(1/2) = 130-GeV to 172-GeV
+450758 . An Upper limit on the tau-neutrino mass from three-prong and five-prong tau decays
+450872 . m(b) at M(Z)
+451207 . Observation of exclusive two-body B decays to kaons and pions
+451265 . Observation of the radiative decay D*+ ---> D+ gamma
+451957 . Study of semileptonic decays of B mesons to charmed baryons
+452028 . New limits for neutrinoless tau decays
+452178 . Search for supersymmetry with a dominant R-parity violating L L anti-E coupling in e+ e- collisions at center-of-mass energies of 130-GeV to 172-GeV
+452243 . Improved measurement of the pseudoscalar decay constant f(D(s))
+452500 . Search for charged Higgs bosons in e+ e- collisions at S**(1/2) = 172-GeV
+452511 . Measurement of Branching ratio (D0 ---> K- pi+) using partial reconstruction of anti-B ---> D*+ X lepton- anti-neutrino
+453111 . Measurement of the one prong hadronic tau branching ratios at LEP
+453112 . A Measurement of the semileptonic branching ratio BR(b-baryon ---> p lepton anti-neutrino X) and a study of inclusive pi+-, K+-, (p,anti-p) production in Z decays
+453113 . Four jet final state production in e+ e- collisions at center-of-mass energies ranging from 130-GeV to 184-GeV
+453114 . Study of $B^0_{s}$ oscillations and lifetime using fully reconstructed $D_s$ - decays
+453267 . Measurement of the W pair cross-section and of the W mass in e+ e- interactions at 172-GeV
+453422 X The DELPHI Silicon Tracker at LEP-2
+453423 . Measurement of Trilinear Gauge Couplings in $e^{+} e^-$ Collisions at 161-GeV and 172-GeV
+453562 . Measurements of the $B_s^0$ and $\Lambda_b^0$ lifetimes
+453563 . Search for charged Higgs bosons in $e^{+} e^{-}$ collisions at $S^{(1/2)}$ = 130-GeV - 172-GeV
+453756 . Measurement of the $W$ mass by direct reconstruction in $e^{+} e^{-}$ collisions at 172-GeV
+453757 . Measurement of triple gauge boson couplings at 172-GeV
+453758 . K0(S) production in tau decays
+453761 . Local multiplicity fluctuations in hadronic Z decay
+458432 . Searches for R-parity violating supersymmetry at LEP-2
+465947 . Measurement of the branching fractions of lambda(c)+ ---> p anti-K n (pion)
+465971 . Search for the decay b ---> D(2536)+ X
+465983 . Search for the $B_c$ meson in hadronic $Z^0$ decays
+466173 . Measurement of the branching ratios for the decays of D+(s) to eta pi+, eta-prime pi+, eta rho+, and eta-prime rho+
+466208 . Two-body B meson decays to eta and eta-prime Observation of B ---> eta-prime K
+466503 . Investigation of CP violation in $B^0 \to J/\psi K^0_{S}$ decays at LEP
+466841 . Measurement of the inclusive charmless and double charm B branching ratios
+466883 . Determination of the production rate of D*0 mesons and of the ratio V / (V+P) in Z0 ---> c anti-c decays
+467092 . Production of f(0)(980), f(2)(1270) and phi(1020) in hadronic Z0 decay
+467093 . Measurement of the spectral functions of axial - vector hadronic tau decays and determination of alpha(S)(M**2(tau))
+467224 . A Study of the hadronic resonance structure in the decay tau ---> 3 pi neutrino(tau)
+467225 . Measurements of the structure of quark and gluon jets in hadronic Z decays
+467226 . Resonant structure and flavor tagging in the B pi+- system using fully reconstructed B decays
+467256 . Search for an excess in the production of four jet events from e+ e- collisions at S**(1/2) = 130-GeV - 184-GeV
+467572 . Measurement of the weak dipole moments of the tau lepton
+467577 . Angular multiplicity fluctuations in hadronic Z decays and comparison to QCD models and analytical calculations
+467595 . Continuum charged D* spin alignment at S**(1/2) = 10.5-GeV
+467596 . First observation of the Cabibbo suppressed decay B+ ---> anti-D0 K+
+467632 . Search for evidence of compositeness at LEP I
+467642 . The Hadronic transitions Upsilon(2S) ---> Upsilon(1S)
+467821 . Measurement of the B0(d) - anti-B0(d) oscillation frequency
+467927 . Investigation of the splitting of quark and gluon jets
+467928 . Determination of the number of light neutrino species from single photon production at LEP
+467929 . Measurement of tau polarization at LEP
+467931 . First evidence for a charm radial excitation, D*-prime
+468097 . Measurement of the mass splittings between the b anti-b Chi(b,j)(1P) states
+468177 . Measurement of the charged particle multiplicity of weakly decaying B hadrons
+468272 . Search for new physics phenomena in fermion pair production at LEP
+468273 . Observation of doubly charmed B decays at LEP
+468378 . Observation of B+ ---> omega K+ and search for related B decay modes
+468441 . A Search for neutral Higgs bosons in the MSSM and models with two scalar field doublets
+468442 . An Upper limit on the anomalous magnetic moment of the tau lepton
+468444 . Radiative decay modes of the D0 meson
+468524 . Search for stable and longlived massive charged particles in e+ e- collisions at s**(1/2) = 130-GeV - 183-GeV
+468671 . Determination of A-b(FB) using jet charge measurements in Z decays
+468747 . A Limit on the mass of the neutrino(tau)
+468852 . Measurement of the fraction of hadronic Z decays into charm quark pairs
+468854 . Measurement of the anomalous magnetic and electric dipole moments of the tau lepton
+468980 . The PHENIX experiment at RHIC
+469365 . A Measurement of the inclusive b ---> s gamma branching ratio
+469368 . Search for the standard model Higgs boson in e+ e- interactions at S**(1/2) = 183-GeV
+469887 . Observation of high momentum eta-prime production in B decay
+469981 . Spin physics with the PHENIX detector system
+470419 . Photon and light meson production in hadronic Z0 decays
+470677 . Single photon and multiphoton production in $e^{+} e^{-}$ collisions at a center-of-mass energy of 183-GeV
+470732 . Production of K0(S) and Lambda in quark and gluon jets from Z0 decay
+470826 . Search for neutral Higgs bosons of the minimal supersymmetric standard model in $e^{+} e^{-}$ interactions at $\sqrt{s}$ = 130-GeV - 183-GeV
+470842 . First search for CP violation in tau lepton decay
+470997 . Photon structure functions and azimuthal correlations of lepton pairs in tagged gamma gamma collisions
+471053 . Determination of |V(ub)| from the measurement of the inclusive charmless semileptonic branching ratio of b hadrons
+471065 . Further search for the two photon production of the glueball candidate f(J)(2220)
+471502 . Beam induced nuclear depolarization in a gaseous polarized hydrogen target
+471557 . Scalar quark searches in $e^{+} e^{-}$ collisions at $S^{(1/2)}$ = 181-GeV - 184-GeV
+471558 . Search for sleptons in e+ e- collisions at center-of-mass energies up to 184-GeV
+471582 . The HERMES spectrometer
+471655 . An Upper limit for the tau-neutrino mass from tau --> 5 pi+- tau-neutrino decays
+472242 . Bose-Einstein correlations of three charged pions in hadronic Z0 decays
+472637 . Measurements of flavor dependent fragmentation functions in Z0 --> q anti-q events
+472638 . Measurement of tau branching ratios to five charged hadrons
+472639 . Inclusive production of charged hadrons and K0(S) mesons in photon-photon collisions
+472640 . Multiphoton production in e+ e- collisions at S**(1/2) = 183-GeV
+472641 . Search for Higgs bosons and new particles decaying into two photons at S**(1/2) = 183-GeV
+472642 . Study of anomalous $Z Z \gamma$ and $Z \gamma \gamma$ couplings at LEP
+472643 . Measurement of the inclusive charmless semileptonic branching fraction of beauty hadrons and a determination of |V(ub)| at LEP
+472644 . Study of the hadronic photon structure function F(2)**gamma at LEP
+472645 . Production of single $W$ bosons in $e^{+} e^{-}$ interactions at 130-GeV <= $S^{(1/2)}$ <= 183-GeV and limits on anomalous $W W \gamma$ couplings
+472952 . Measurement of the e+ e- ---> gamma gamma (gamma) cross-section at the LEP energies
+472953 . Test of CP invariance in Z ---> mu+ mu- gamma decay
+472954 . The Forward - backward asymmetry for charm quarks at the Z
+472955 . Measurement of the strong coupling constant alpha(s) and the vector and axial vector spectral functions in hadronic tau decays
+472956 . Measurement of the Michel parameters in leptonic tau decays
+473345 . The Flavor asymmetry of the light quark sea from semiinclusive deep inelastic scattering
+473409 . pi+-, K+-, p and anti-p production in Z0 ---> q anti-q, Z0 ---> b anti-b, Z0 ---> u anti-u, d anti-d, s anti-s
+473410 . Measurement of radiative Bhabha and quasireal Compton scattering
+473411 . A Measurement of the gluon splitting rate into b anti-b pairs in hadronic Z decays
+473421 . Measurement of the proton spin structure function g1(p) with a pure hydrogen target
+473699 . Tests of the standard model and constraints on new physics from measurements of fermion pair production at 183-GeV at LEP
+473700 . Search for scalar top and scalar bottom quarks at $S^{(1/2)}$ = 183-GeV at LEP
+473701 . Production of chi (c2) mesons in photon-photon collisions at LEP
+473948 . Search for B0(s) oscillations using inclusive lepton events
+474009 . Dijet production in photon-photon collisions at $S^{(1/2)}$ (ee) = 161-GeV and 172-GeV
+474010 . A Study of parton fragmentation in hadronic Z0 decays using Lambda anti-Lambda correlations
+474011 . Study of D0 anti-D0 mixing and D0 doubly Cabibbo suppressed decays
+474012 . Measurement of the average polarization of b baryons in hadronic Z0 decays
+474013 . First measurement of Z / gamma* production in Compton scattering of quasireal photons
+474025 . First observation of upsilon(1S) ---> gamma pi pi
+474662 . Measurement of |V(cs)| using W decays at LEP-2
+474663 . Measurement of $W$ pair cross-sections in $e^{+} e^{-}$ interactions at $S^{(1/2)}$ = 183-GeV and $W$ decay branching fractions
+474664 . Search for acoplanar lepton pair events in e+ e- collisions at S**(1/2) = 161-GeV, 172-GeV and 183-GeV
+474665 . Measurement of the Michel parameters and the average tau-neutrino helicity from tau decays at LEP
+474666 . Measurement of the longitudinal cross-section using the direction of the thrust axis in hadronic events at LEP
+474676 . Upsilon dipion transitions at energies near the upsilon(4S)
+476321 . First observation of the decay tau- ---> K*- eta tau-neutrino
+476388 . Determination of the deep inelastic contribution to the generalized Gerasimov-Drell-Hearn integral for the proton and neutron
+476583 . Upper limit on the lifetime difference of shortlived and longlived $B^0_{s}$ mesons
+476784 . Measurement of the effective weak mixing angle by jet charge asymmetry in hadronic decays of the Z boson
+476785 . Searches for scalar top and scalar bottom quarks in e+ e- interactions at 161-GeV less than equal to S**(1/2) less than equal to 183-GeV
+476786 . A Measurement of R(b) using a double tagging method
+477045 . Search for chargino and neutralino production at S**(1/2) = 181-GeV - 184-GeV at LEP
+477517 . Measurement of the semileptonic branching ratio of charm hadrons produced in Z0 ---> c anti-c decays
+477626 . Search for anomalous photonic events with missing energy in e+ e- collisions at S**(1/2) = 130-GeV, 136-GeV and 183-GeV
+477680 . Study of three prong hadronic tau decays with charged kaons
+477802 . Search for scalar fermions and longlived scalar leptons at center-of-mass energies of 130-GeV to 172-GeV
+477803 . Two particle angular correlations in e+ e- interactions compared with QCD predictions
+477804 . Search for pair produced neutralinos in events with photons and missing energy from $e^{+} e^{-}$ collisions at $S^{(1/2)}$ = 130-GeV to 183-GeV
+477805 . Search for the standard model Higgs boson at the LEP-2 collider near S**(1/2) = 183-GeV
+477806 . Searches for the neutral Higgs bosons of the MSSM in $e^+e^-$ collisions at center-of-mass energies of 181-GeV to 184-GeV
+477807 . Search for supersymmetry with a dominant R-parity violating LQ $\bar{D}$ coupling in $e^{+} e^{-}$ collisions at center-of-mass energies of 130-GeV to 172-GeV
+477808 . QCD results from studies of hadronic events produced in e+ e- annihilations at S**(1/2) = 183-GeV
+477809 . Search for charged Higgs bosons in e+ e- collisions at center-of-mass energies between 130-GeV and 183-GeV
+477810 . Single and multiphoton events with missing energy in e+ e- collisions at S**(1/2) = 183-GeV
+478185 . Measurement of the e+ e- --> Z ---> b anti-b forward - backward asymmetry and the B0 anti-B0 mixing parameter using prompt leptons
+478217 . Observation of two narrow states decaying into xi+(c) gamma and xi0(c) gamma
+478475 . Search for exclusive rare baryonic decays of B mesons
+478903 . Search for composite and exotic fermions at LEP-2
+478904 . Search for lightest neutralino and stau pair production in light gravitino scenarios with stau NLSP
+478905 . A Search for heavy stable and longlived squarks and sleptons in e+ e- collisions at energies from 130-GeV to 183-GeV
+478947 . Observation of a coherence length effect in exclusive rho0 electroproduction
+479051 . $W^{+} W^{-}$ production and triple gauge boson couplings at LEP energies up to 183-GeV
+479052 . The Q**2 evolution of the hadronic photon structure function F(2)gamma at LEP
+479332 . Search for Higgs bosons in $e^{+} e^{-}$ collisions at 183-GeV
+479334 . First observation of the decay B0 ---> D*+ D*-
+479567 . Bose-Einstein correlations in $e^+e^- \to W^+W^-$ at 172-GeV and 183-GeV
+479888 . Measurement of the B ---> D lepton neutrino branching fractions and form-factor
+480435 . Search for Leptoquarks and FCNC in $e^{+} e^{-}$ annihilations at $S^{(1/2)}$ = 183-GeV
+480437 . Search for charginos, neutralinos and gravitinos in e$^+$ e$^-$ interactions at $\sqrt s$ = 183 GeV
+480439 . Measurement of triple gauge W W gamma couplings at LEP-2 using photonic events
+480847 . A Measurement of the tau- ---> e- anti-neutrino(e) neutrino(tau) branching ratio
+480942 . A Measurement of the product branching ratio f(b ---> Lambda(b)) x BR(Lambda(b) ---> Lambda X) in Z0 decays
+481162 . A Precise measurement of the partial decay width ratio R(b)**0 = Gamma(b anti-b) / Gamma(had)
+481163 . Inclusive charm production in two photon collisions at LEP
+481164 . chi(c2) formation in two photon collisions at LEP
+481759 . Analysis of transverse momentum correlations in hadronic Z decays
+481760 . Measurement of A(FB)(b anti-b) in hadronic Z decays using a jet charge technique
+482054 . Search for baryon and lepton number violating Z0 decays
+482170 . Measurement of the $B^{+}$ and $B^0$ lifetimes and search for CP($T$) violation using reconstructed secondary vertices
+482314 . Color reconnection studies in e+ e- ---> W+ W- at S**(1/2) = 183-GeV
+482345 . Measurement of the $W$ mass and width in $e^{+} e^{-}$ collisions at 183-GeV
+482477 . Study of neutral current four fermion and Z Z production in e+ e- collisions at S**(1/2) = 183-GeV
+482478 . Measurement of the cross-section for the process gamma* gamma* ---> hadrons at LEP
+482479 . Heavy quarkonium production in $Z$ decays
+482521 . Searches for R-parity violating decays of gauginos at 183-GeV at LEP
+482650 . Study of the four-jet anomaly observed at LEP center-of-mass energies of 130-GeV and 136-GeV
+482816 . Measurement of inclusive rho0, f(0)(980), f(2)(1270), K*0(2)(1430) and f-prime(2)(1525) production in Z0 decays
+494867 . Search for baryon and lepton number violating decays of the tau lepton
+495087 . Measurement of charm meson lifetimes
+495313 . Intermittency and correlations in hadronic Z0 decays
+495314 . Hadronic structure in the decay tau- ---> tau-neutrino pi- pi0 pi0 and the sign of the tau-neutrino helicity
+495378 . Measurements of the QED structure of the photon
+495411 . Search for charged Higgs bosons in $e^{+} e^{-}$ collisions at $S^{(1/2)}$ = 181-GeV - 184-GeV
+495413 . Search for invisible Higgs boson decays in e+ e- collisions at center-of-mass energies up to 184-GeV
+495414 . The Scale dependence of the hadron multiplicity in quark and gluon jets and a precise determination of C(A) / C(F)
+495462 . Measurement and interpretation of fermion pair production at LEP energies from 130-GeV to 172-GeV
+495463 . Search for neutral Higgs bosons in e+ e- collisions at S**(1/2) = 183-GeV
+495464 . Measurement of the forward backward asymmetry of c and b quarks at the Z pole using reconstructed D mesons
+495805 . Search for charginos and neutralinos in $e^{+} e^{-}$ collisions at center-of-mass energies near 183-GeV and constraints on the MSSM parameter space
+495806 . Measurement of mass and width of the $W$ boson at LEP
+496399 . Search for scalar leptons in e+ e- collisions at S**(1/2) = 183-GeV
+496400 . Search for R-parity violating chargino and neutralino decays in e+ e- collisions up to S**(1/2) = 183-GeV
+496586 . One prong tau decays with kaons
+496587 . Study of tau decays involving kaons, spectral functions and determination of the strange quark mass
+496755 . Experimental properties of gluon and quark jets from a point source
+497105 . Measurement of W pair production in e+ e- collisions at 183-GeV
+497256 . Search for charginos nearly mass - degenerate with the lightest neutralino
+497260 . Measurement of the $W$ mass in $e^{+} e^{-}$ collisions at 183-GeV
+497623 . Search for scalar top and scalar bottom quarks at S**(1/2) = 189-GeV at LEP
+498072 . Study of fermion pair production in $e^{+} e^{-}$ collisions at 130-GeV to 183-GeV
+498246 . Test of the flavor independence of alpha(s) using next-to-leading order calculations for heavy quarks
+498282 . Measurement of the lifetime of $b$ - baryons
+498297 . Search for R-parity violating decays of scalar fermions at LEP
+499180 . Search for supersymmetry with R-parity violating L L anti-E couplings at S**(1/2) = 183-GeV
+499181 . W pair production cross-section and W branching fractions in e+ e- interactions at 183-GeV
+499182 . Measurements of the leptonic branching fractions of the tau
+499183 . Energy dependence of event shapes and of alpha(s) at LEP-2
+499542 . Measurement of an elongation of the pion source in $Z$ decays
+499917 . Measurement of the hadronic photon structure function at LEP-1 for (Q**2) values between 9.9-GeV**2 and 284-GeV**2
+500042 . Multiplicity fluctuations in one-dimensional and two-dimensional angular intervals compared with analytic QCD calculations
+500781 . Measurement of B ---> rho lepton neutrino decay and |V(ub)|
+501369 . Formation of the $eta_c$ in two photon collisions at LEP
+501417 . Evidence of new states decaying into Xi(c)* pi
+501453 . Energy dependence of inclusive spectra in e+ e- annihilation
+501454 . Search for the Higgs boson in events with isolated photons at LEP-2
+501455 . A Search for invisible Higgs bosons produced in e+ e- interactions at LEP-2 energies
+501456 . Measurements of the trilinear gauge boson couplings W W V (V = gamma,Z) in e+ e- collisions at 183-GeV
+501457 . Measurements of the Z partial decay width into c anti-c and multiplicity of charm quarks per b decay
+501458 . Determination of P(c ---> D*+) and BR(c ---> lepton+) at LEP-1
+501487 . Limit on tau-neutrino mass from tau- ---> pi- pi+ pi- pi0 tau-neutrino
+502312 . Flavor decomposition of the polarized quark distributions in the nucleon from inclusive and semiinclusive deep inelastic scattering
+502548 . Total hadronic cross-section of photon-photon interactions at LEP
+502683 . Measurements of inclusive semileptonic branching fractions of b hadrons in Z0 decays
+502747 . Search for heavy neutral and charged leptons in $e^{+} e^{-}$ annihilation at $S^{(1/2)}$ = 183-GeV and 189-GeV
+502748 . Search for charged Higgs bosons at LEP-2
+502749 . Search for Standard Model Higgs boson in $e^{+} e^{-}$ interactions at $S^{(1/2)}$ = 189-GeV
+502750 . A Study of spin alignment of rho(770)+- and omega(782) mesons in hadronic Z0 decays
+503551 . A Study of single $W$ production in $e^{+} e^{-}$ collisions at $S^{(1/2)}$ = 161-GeV to 183-GeV
+503784 . Measurement of the spin asymmetry in the photoproduction of pairs of high p(T) hadrons at HERMES
+504104 . Measurement of the rate of b anti-b b anti-b events in hadronic Z decays and the extraction of the gluon splitting into b anti-b
+504106 . Search for heavy isosinglet neutrinos in $e^{+} e^{-}$ annihilation at 130-GeV less than $S^{(1/2)}$ less than 189-GeV
+504107 . Measurement of the mass of the W boson using direct reconstruction at S**(1/2) = 183-GeV
+504170 . Determination of the LEP center-of-mass energy from Z gamma events
+504325 . Rare decays of the eta-prime
+504671 . Observation of radiative leptonic decay of the tau lepton
+504672 . Charged track multiplicity in $B$ meson decay
+504716 . Search for R-parity violating decays of supersymmetric particles in $e^{+} e^{-}$ collisions at center-of-mass energies near 183-GeV
+504733 . Search for Higgs bosons and other massive states decaying into two photons in e+ e- collisions at 189-GeV
+504734 . A Study of B0(S) meson oscillation using hadronic Z0 decays containing leptons
+504780 . Multiphoton production in e+ e- collisions at S**(1/2) = 189-GeV
+504923 . Measurement of the production rate of charm quark pairs from gluons in hadronic Z0 decays
+504924 . Search for neutral Higgs bosons in e+ e- collisions at S**(1/2) approximately equals 189-GeV
+504988 . Search for pair produced leptoquarks in $e^{+} e^{-}$ interactions at $S^{(1/2)}$ approximately = 183-GeV
+504989 . Tests of the standard model and constraints on new physics from measurements of fermion pair production at 189-GeV at LEP
+504990 . Observation of a broad L = 1 c anti-q state in B- ---> D*+ pi- pi- at CLEO
+505110 . A Study of three prong tau decays with charged kaons
+505111 . First observation of the decay B ---> J / psi phi K
+505115 . Charmless hadronic B decays to exclusive final states with a K*, rho, omega, or phi meson
+505116 . Two-body B meson decays to eta and eta-prime: Observation of B ---> eta K*
+505168 . b ---> s gamma branching fraction and CP asymmetry
+505170 . Resonant structure of tau ---> three pi pi0 neutrino(tau) and tau ---> omega pi neutrino(tau) decays
+505171 . Update of the search for the neutrinoless decay tau ---> muon gamma
+505173 . Measurement of charge asymmetries in charmless hadronic $B$ decay
+505174 . Structure functions in the decay tau-+ ---> pi-+ pi0 pi0 neutrino(tau)
+505219 . Study of charmless hadronic B decays into the final states K pi, pi pi, and K K, with the first observation of B ---> pi+ pi- and B ---> K0 pi0
+505220 . Search for D0 - anti-D0 mixing
+505281 . Measurement of inclusive $D^{*+-}$ production in two photon collisions at LEP
+506060 . Measurement of the Z resonance parameters at LEP
+506982 . Measurement of the spectroscopy of orbitally excited $B$ mesons at LEP
+506983 . Search for low scale gravity effects in $e^{+} e^{-}$ collisions at LEP
+507422 . Study of charm production in Z decays
+507531 . Inclusive production of pi0, eta, eta-prime (958), K0(S) and lambda in two jet and three jet events from hadronic Z decays
+507735 . Search for an invisibly decaying Higgs boson in e+ e- collisions at 189-GeV
+507736 . A Direct measurement of |V(cs)| in hadronic W decays using a charm tag
+507737 . Measurement of R($b$) and Br($b \to$ lepton neutrino $X$) at LEP using double tag methods
+507738 . Search for charged Higgs bosons in $e^{+} e^{-}$ collisions at $\sqrt{s}$ = 189-GeV
+507739 . Study of $Z$ Boson Pair Production in $e^{+} e^{-}$ collisions at LEP at $S^{(1/2)}$ = 189-GeV
+507821 . Observation of radiative leptonic decay of the tau lepton
+507867 . Search for chargino pair production in scenarios with gravitino LSP and stau NLSP at S**(1/2) approximately equal to 183-GeV at LEP
+507874 . Search for chargino and neutralino production at S**(1/2) = 189-GeV at LEP
+507875 . Search for anomalous production of acoplanar di-lepton events in e+ e- collisions at S**(1/2) = 183-GeV and 189-GeV
+508076 . Search for scalar leptons in $e^{+} e^{-}$ collisions at $\sqrt{S}$ = 189-GeV
+508077 . Search for charginos and neutralinos in $e^{+} e^{-}$ collisions at $\sqrt{S}$ = 189-GeV
+508078 . Measurement of triple gauge boson couplings of the $W$ boson at LEP
+508079 . Single and multiphoton events with missing energy in $e^{+} e^{-}$ collisions at $\sqrt{S}$ - 189-GeV
+508408 . Searches for scalar quarks in $e^{+} e^{-}$ interactions at $\sqrt{S}$ = 189-GeV
+508409 . Search for excited leptons at $\sqrt{S}$ = 189-GeV
+508559 . The DIRC detector at BaBar
+508944 . Hadronic structure in the decay tau- ---> pi- pi0 neutrino(tau)
+509037 . Search for neutral Higgs bosons of the minimal supersymmetric standard model in $e^{+} e^{-}$ interactions at $\sqrt{S}$ = 189-GeV
+509099 . Search for extra dimensions in boson and fermion pair production in $e^{+} e^{-}$ interactions at LEP
+509175 . Update of the search for the neutrinoless decay tau ---> muon gamma
+509241 . Measurement of the e+ e- ---> Z Z production cross-section at center-of-mass energies of 183-GeV and 189-GeV
+509270 . Observation of a single spin azimuthal asymmetry in semiinclusive pion electro production
+509391 . Precision luminosity for Z0 line shape measurements with a silicon tungsten calorimeter
+509394 . Measurement of the $W^{+} W^{-} \gamma$ cross-section and first direct limits on anomalous electroweak quartic gauge couplings
+509396 . Nuclear effects on R = $\sigma_L$ / $\sigma_T$ in deep inelastic scattering
+509441 . Measurement of the strange quark forward backward asymmetry around the Z0 peak
+509442 . Searches for sleptons and squarks in e+ e- collisions at 189-GeV
+509581 . Direct observation of longitudinally polarized $W^\pm$ bosons
+510061 . Measurement of the probability of gluon splitting into charmed quarks in hadronic $Z$ decays
+510115 . Measurement of longitudinal spin transfer to Lambda hyperons in deep inelastic lepton scattering
+510272 . Search for the glueball candidates f(0)(1500) and f(J)(1710) in gamma gamma collisions
+510530 . Tau decays with neutral kaons
+510531 . Inclusive production of D*+- mesons in photon-photon collisions at S**(1/2)(ee) = 183-GeV and 189-GeV and a first measurement of F**gamma(2,c)
+511099 . Measurement of the gluon fragmentation function and a comparison of the scaling violation in gluon and quark jets
+511443 . A Precise measurement of the tau polarization at LEP-1
+511452 . Upper limit for the decay $B^{-} \to \tau^{-}$ anti-neutrino ($\tau$) and measurement of the $b \to \tau$ anti-neutrino ($\tau$) $X$ branching ratio
+511453 . Two-dimensional analysis of the Bose-Einstein correlations in e+ e- annihilation at the Z0 peak
+512426 . Study of exclusive radiative B meson decays
+512428 . Two-body B meson decays to eta and eta-prime: Observation of B ---> eta K*
+512778 . Search for the decay anti-B0 ---> D*0 gamma
+513270 . Bose-Einstein correlations in W pair decays
+513272 . Search for gauge mediated SUSY breaking topologies at $S^{(1/2)}$ similar to 189-GeV
+513319 . Fermi-Dirac Correlations in lambda pairs in hadronic Z decays
+513336 . Leading particle production in light flavor jets
+513337 . QCD analyses and determinations of alpha(s) in e+ e- annihilation at energies between 35-GeV and 189-GeV
+513338 . Search for unstable heavy and excited leptons at LEP 2
+513379 . Search for D0 - anti-D0 mixing
+513397 . Hard photon production and tests of QED at LEP
+513475 . Search for new physics in rare B decays
+513476 . QCD studies with e+ e- annihilation data at 172-GeV - 189-GeV
+513607 . Measurements of R(b), A**b(FB), and A**c(FB) in e+ e- collisions at 130-GeV - 189-GeV
+513614 . Lambda(b) polarization in Z0 decays at LEP
+513615 . Measurement of the anti-B ---> D* pi lepton anti-neutrino(lepton) branching fraction
+513676 . Measurement of hadron and lepton pair production at 130-GeV less than $\sqrt{S}$ less than 189-GeV at LEP
+514804 X The STAR time projection chamber
+522656 . Consistent measurements of alpha(s) from precise oriented event shape distributions
+522755 . Measurement of charge asymmetries in charmless hadronic in b meson decays
+522756 . Study of two-body B decays to kaons and pions: Observation of B ---> pi+ pi-, B ---> K+- pi0, and B ---> K0 pi0 decays
+522777 . Measurement of the B0 and B+ meson masses from B0 ---> psi(psi-prime) K0(s) and B+ ---> psi(psi-prime) K+ decays
+523127 . Bose-Einstein correlations in K+- K+- pairs from Z0 decays into two hadronic jets
+523690 . Measurement of angular distributions and R = sigma(L) / sigma(T) in diffractive electroproduction of rho0 mesons
+523920 . Measurement of the running of the fine structure constant
+523921 . Measurement of the $e^{+} e^{-} \to Z \gamma \gamma$ cross-section and determination of quartic gauge boson couplings at LEP
+523976 . Search for charginos with a small mass difference with the lightest supersymmetric particle at $\sqrt{S}$ = 189-GeV
+524027 . Measurements of cross-sections and forward backward asymmetries at the $Z$ resonance and determination of electroweak parameters
+524306 . Transverse and longitudinal Bose Einstein correlations in hadronic Z0 decays
+524449 . Study of the decays $B^0 \to D^{*}$ + $D^{*-}$
+524450 . Inclusive $\sigma^{+}$ and $\sigma^0$ production in hadronic $Z$ decays
+524526 . Search for CP violation in $B^\pm \to J/\psi K^\pm$ and $B^\pm \to \psi_{2S} K^\pm$ decays
+524679 . Determination of |V(ub)| / |V(cb)| with DELPHI at LEP
+524682 . Search for the neutral Higgs bosons of the standard model and the MSSM in e+ e- collisions at S**(1/2) = 189-GeV
+524688 . Search for supersymmetric particles in scenarios with a gravitino LSP and stau NLSP
+524693 . Hadronization properties of b quarks compared to light quarks in e$^+$ e$^-$ $\to \overline {qq}$ from 183-GeV to 200-GeV
+524694 . Inclusive Sigma- and Lambda(1520) production in hadronic Z decays
+524695 . Search for charginos in e+ e- interactions at S**(1/2) = 189-GeV
+524696 . Identified charged particles in quark and gluon jets
+524800 . Measurement of |V(cb)| using anti-B0 ---> D*+ lepton- anti-neutrino decays
+524845 . Z boson pair production in e+ e- collisions at S**(1/2) = 183-GeV and 189-GeV
+525025 . Measurement of the lifetime of the $\tau$ lepton
+525384 . A Study of the decay width difference in the $B^0_{s} - \bar{B}^0_s$ system using $\phi \phi$ correlations
+525697 . Measurement of B(Lambda+(c) ---> p K- pi+)
+525698 . Resonance structure of tau- ---> K- pi+ pi- nu(tau) decays
+525764 . Measurement of the photon structure function at high $Q^{2}$ at LEP
+525809 . Search for an invisibly decaying Higgs boson in $e^{+} e^{-}$ collisions at $\sqrt{S}$ = 183-GeV - 189-GeV
+526164 . Charged and identified particles in the hadronic decay of W bosons and in e+ e- ---> q anti-q from 130-GeV to 200-GeV
+526166 . Measurement of the $W$ mass and width in $e^{+} e^{-}$ collisions at 189-GeV
+526222 . W pair production cross-section and W branching fractions in e+ e- interactions at 189-GeV
+526223 . Searches for neutral Higgs bosons in e+ e- collisions around s**(1/2) = 189-GeV
+526550 . Exclusive leptoproduction of rho0 mesons from hydrogen at intermediate virtual photon energies
+526554 . Measurements of charm fragmentation into D*+(s) and D+(s) in e+ e- annihilations at S**(1/2) = 10.5-GeV
+526644 . Study of exclusive two-body $B^0$ meson decays to charmonium
+526692 . Measurement of the product branching fraction b(c ---> theta(c) X) B(theta(c) ---> Lambda X)
+526776 . Photonic events with missing energy in e+ e- collisions at S**(1/2) = 189-GeV
+526854 . A Measurement of the tau mass and the first CPT test with tau leptons
+526928 . Precise measurement of $B^0 \bar{B}^0$ mixing parameters at the $\Upsilon$(4S)
+527337 . Measurements of the $b \bar{b}$ production cross-section and forward backward asymmetry at center-of-mass energies above the $Z$ pole at LEP
+527338 . Search for anomalous $Z Z \gamma$ and $Z \gamma \gamma$ couplings in the process $e^{+} e^{-} \to Z \gamma$ at LEP
+527492 . Measurement of W pair production in e+ e- collisions at 189-GeV
+527605 . Cross-sections and leptonic forward backward asymmetries from the Z0 running of LEP
+527692 . Search for manifestations of new physics in fermion pair production at LEP
+527988 . QCD studies in $e^{+} e^{-}$ annihilation from 30-GeV to 189-GeV
+528176 . Measurement of the relative branching fraction of upsilon(4S) to charged and neutral B meson pairs
+528371 . Study of charmless hadronic B meson decays to pseudoscalar vector final states
+528729 . B ---> D* pi+ pi- pi- pi0, D(*) omega pi- and the observation of a wide 1- omega pi- enhancement at 1418-MeV
+529158 . Measurements of the mass, total width and two photon partial width of the eta(c) meson
+529575 . Production of single $W$ bosons at $\sqrt{S}$ = 189-GeV and measurement of $W W \gamma$ gauge couplings
+529576 . Determination of $\gamma / Z$ interference in $e^{+} e^{-}$ annihilation at LEP
+529847 . Measurement and interpretation of fermion-pair production at LEP energies of 183-GeV and 189-GeV
+529850 . Update of the search for charginos nearly mass-degenerate with the lightest neutralino
+529857 . Study of B decays to charmonium states B ---> eta(c) K and B ---> chi(c0) K
+529859 . Searches for prompt light gravitino signatures in e+ e- collisions at S**(1/2) = 189-GeV
+529896 . First measurement of the inclusive branching ratio of b hadrons to phi mesons in Z0 decays
+529897 . Search for trilinear neutral gauge boson couplings in $Z^-$ gamma production at $S^{(1/2)}$ = 189-GeV at LEP
+529898 . Multiplicities of pi0, eta, K0 and of charged particles in quark and gluon jets
+529899 . Measurement of the low x behavior of the photon structure function F(2)gamma
+530069 . Search for gamma gamma decays of a Higgs boson produced in association with a fermion pair in e+ e- collisions at LEP
+530544 . Two Higgs doublet model and model independent interpretation of neutral Higgs boson searches
+530545 . First observation of the Sigma*+(c) baryon and a new measurement of the Sigma+(c) mass
+530546 . Search for decays of $B^0$ mesons into pairs of leptons: $B^0 \to e^{+} e^{-}$, $B^0 \to$ muon+ muon- and $B^0 \to e^\pm$ muon-+
+530788 . Study of (chi(c1) ) and (chi(c2) ) meson production in $B$ meson decays
+530789 . Observation of the Omega 0(c) charmed baryon at CLEO
+530791 . Observation of new states decaying into Lambda(c)+ pi- pi+
+530792 . Evidence of new states decaying into Xi-prime(c) pi
+530861 . Determination of the B ---> D* l nu decay width and |V(cb)|
+530949 . Search for a scalar top almost degenerate with the lightest neutralino in e+ e- collisions at s**(1/2) up to 202-GeV
+530950 . Search for charged Higgs bosons in e+ e- collisions at energies up to S**(1/2) = 189-GeV
+530957 . A Search for B ---> tau nu
+531457 . Search for a Higgs boson decaying into two photons in $e^{+} e^{-}$ interactions at $\sqrt{S}$ = 189-GeV
+531468 . A Measurement of the b quark mass from hadronic Z decays
+531470 . Measurements of B ---> D(*)(S)+ D+(*) branching fractions
+531507 . Measurement of the $\bar{B}^0$ and $B^{-}$ meson lifetimes
+531568 . Rapidity-rank structure of p anti-p pairs in hadronic Z0 decays
+531570 . Measurement of the $W^{+} W^{-} \gamma$ cross-section and direct limits on anomalous quartic gauge boson couplings at LEP
+531571 . Search for anomalous couplings in the Higgs sector at LEP
+531668 . Measurement of Bose-Einstein correlations in $e^{+} e^{-} \to W^{+} W^{-}$ at $\sqrt{S}$ approximately = 189-GeV
+531766 . Measurement of the $W$ pair production cross-section and $W$ decay branching fractions in $e^{+} e^{-}$ interactions at $\sqrt{S}$ = 189-GeV
+531853 X Investigation of inclusive CP asymmetries in B0 decays
+531949 . The Q**2 dependence of the generalized Gerasimov-Drell-Hearn integral for the proton
+532734 . Observation of B --> K+- pi0 and B --> K0 pi0, and evidence for B --> pi+ pi-
+532903 . Search for charged Higgs bosons in $e^{+} e^{-}$ collisions at center center-of-mass energies up to 202-GeV
+532904 . First observation of the decays B0 ---> D*- p anti-p pi+ and B0 ---> D*-p anti-n
+533108 . A Study of one prong tau decays with a charged kaon
+533109 . Measurement of the mass and width of the $W$ boson in $e^{+} e^{-}$ collisions at 189-GeV
+533110 . W+ W- production cross-section and W branching fractions in e+ e- collisions at 189-GeV
+533111 . A Measurement of the rate of charm production in $W$ decays
+533112 . Measurement of $W$ boson polarizations and CP violating triple gauge couplings from $W^{+} W^{-}$ production at LEP
+533113 . Measurement of triple gauge boson couplings from $W^{+} W^{-}$ production at LEP energies up to 189-GeV
+533360 . Search for single top production in e+ e- collisions at s**(1/2) = 189-GeV - 202-GeV
+533414 . Elliptic flow in Au + Au collisions at (S(NN))**(1/2) = 130 GeV
+533575 . Search for direct CP violation in cascade hyperon decay
+533916 . Study of chi(c1) and chi(c2) meson production in $B$ meson decays
+533961 . Study of the CP asymmetry of $B^0 \to J/\psi K^0_{S}$ decays in ALEPH
+534257 . Determination of the e+ e- --> gamma gamma (gamma) cross-section at centre-of-mass energies ranging from 189-GeV to 202-GeV
+534258 . Limits on the masses of supersymmetric particles at s**(1/2) = 189-GeV
+534435 . Study of $Z$ boson pair production in $e^{+} e^{-}$ interactions at $\sqrt{s}$ = 192-GeV - 202-GeV
+534657 . Measurement of the $B^0$ lifetime and oscillation frequency using $\bar{B}^0 \to D^{*+} \ell^{-}$ anti-neutrino decays
+534887 . Measurements of BR (b ---> tau- anti-nu(tau) X) and BR (b ---> tau- anti-nu(tau) D*+- X) and upper limits on BR (B- ---> tau- anti-nu(tau)) and BR (b---> s nu anti-nu)
+535016 . Study of tau decays to six pions and neutrino
+535059 . Production rates of b anti-b quark pairs from gluons and b anti-b b anti-b events in hadronic Z0 decays
+535061 . Investigation of the decay of orbitally excited B mesons and first measurement of the branching ratio BR(B*(J) ---> B*pi(X))
+535112 . Observation of the Omega0(c) charmed baryon at CLEO
+535113 . Study of $B \to \psi_{2S} K$ and $B \to \psi_{2S}$ K*(892) decays
+535180 . Study of B0(S) anti-B0(S) oscillations and B0(S) lifetimes using hadronic decays of B0(S) mesons
+535290 . Search for a scalar bottom quark with mass 3.5-GeV - 4.5-GeV/c**2
+535620 . Searches for neutral Higgs bosons in e+ e- collisions at center-of-mass energies from 192-GeV to 202-GeV
+535683 . Search for the sgoldstino at s**(1/2) from 189-GeV to 202-GeV
+535805 . Bounds on the CP asymmetry in $b \to s \gamma$ decays
+535988 . Observation of new states decaying into Lambda+(c) pi- pi+
+536138 . Search for R-parity violating decays of supersymmetric particles in $e^{+} e^{-}$ collisions at center-of-mass energies from 189-GeV to 202-GeV
+536266 . Charged multiplicities in Z decays into u, d, and s quarks
+536690 . Light resonances in $K^0_{S} K^\pm \pi^\mp$ and $\eta \pi^{+} \pi^{-}$ final states in $\gamma \gamma$ collisions at LEP
+536692 . $K^0_{S} K^0_{S}$ final state in two photon collisions and implications for glueballs
+536816 . Higgs candidates in $e^{+} e^{-}$ interactions at $\sqrt{s}$ = 206.6-GeV
+536864 . Search for R-parity violating decays of supersymmetric particles in $e^{+} e^{-}$ collisions at $\sqrt{s}$ = 189-GeV
+536865 . A search for invisible Higgs bosons produced in e+ e- interactions up to s**(1/2) = 189-GeV
+536902 . Observation of an excess in the search for the standard model Higgs boson at ALEPH
+536904 . Search for supersymmetric particles in $e^{+} e^{-}$ collisions at $\sqrt{s}$ up to 202-GeV and mass limit for the lightest neutralino
+536906 . Measurement of the Lambda+(c) lifetime
+537026 . A Study of $B_s$ meson oscillation using $D_s$ - lepton correlations
+537154 . Dalitz analysis of the decay D0 ---> K- pi+ pi0
+537232 . Search for excited leptons in $e^{+} e^{-}$ interactions at $\sqrt{s}$ = 192-GeV to 202-GeV
+537234 . Measurements of the cross-sections for open charm and beauty production in $\gamma \gamma$ collisions at $\sqrt{s}$ = 189-GeV to 202-GeV
+537236 . A Measurement of the decay asymmetry parameters in Xi0(c) ---> Xi- pi+
+537913 . Photon events with missing energy at s**(1/2) = 183-GeV to 189-GeV
+538107 . Search for neutral Higgs bosons of the minimal supersymmetric standard model in $e^{+} e^{-}$ interactions at $\sqrt{s}$ = 192-GeV - 202-GeV
+538108 . Precise determination of the Z resonance parameters at LEP: 'Zedometry'
+538109 . Search for the standard model Higgs boson in $e^{+} e^{-}$ collisions at $\sqrt{s}$ up to 202-GeV
+538110 . Evidence of new states decaying into Xi-prime(c) pi
+539006 . Hadron formation in deep inelastic positron scattering in a nuclear environment
+539090 . Search for CP violation in $D^0 \to K^0_{S} \pi^0$ and $D^0 \to \pi^0 \pi^0$ and $D^0 \to K^0_{S} K^0_{S}$ decays
+539140 . Centrality dependence of charged particle multiplicity in Au - Au collisions at S(NN)**(1/2) = 130-GeV
+539640 . Measurement of the Z Z cross-section in e+ e- interactions at 183-GeV - 189-GeV
+539641 . Search for neutralino pair production at s**(1/2) = 189-GeV
+539642 . Study of dimuon production in photon-photon collisions and measurement of QED photon structure functions at LEP
+539860 . Search for the standard model Higgs boson in e+ e- collisions at s**(1/2) approximately = 192-GeV - 209-GeV
+539946 . Measurement of the charm production cross-section in $\gamma \gamma$ collisions at LEP
+540015 . Search for spontaneous R-parity violation at s**(1/2) = 183-GeV and 189-GeV
+540208 . Search for sleptons in e+ e- collisions at s**(1/2) = 183-GeV to 189-GeV
+540344 . Search for the standard model Higgs boson at LEP in the year 2000
+540660 . Search for SUSY with R-parity violating LL anti-E couplings at s**(1/2) = 189-GeV
+540730 . Search for R-parity violation with a anti-U anti-D anti-D coupling at x**(1/2) = 189-GeV
+540871 . Search for supersymmetric partners of top and bottom quarks at s**(1/2) = 189-GeV
+540888 . Search for heavy stable and longlived particles in e+ e- collisions at s**(1/2) = 189-GeV
+541614 . A Study of the Lorentz structure in tau decays
+541615 . Measurement of the $B^0_{s}$ lifetime and study of $B^0_{s} - \bar{B}^0_s$ oscillations using $D_s \ell$ events
+551926 . Bounds on the CP asymmetry in like sign dileptons from $B^0 \bar{B}^0$ meson decays
+552245 . A Search for charmless B ---> V V decays
+552270 . Observation of B ---> phi K and B ---> phi K*
+552446 . A Simultaneous measurement of the QCD color factors and the strong coupling
+552447 . A Search for a narrow radial excitation of the D*+- meson
+552541 . Correlated Lambda+(c) anti-Lambda-(c) production in e+ e- annihilations at s**(1/2) = 10.5-GeV
+552759 . Mixing and CP violation in the decay of neutral $D$ mesons at CLEO
+552760 . First measurement of Gamma (D*+)
+552995 . Measurement of the $\tau$ branching fractions into leptons
+552996 . Study of the $e^{+} e^{-} \to Z \gamma \gamma \to q \bar{q} \gamma \gamma$ process at LEP
+552997 . Total cross-section in $\gamma \gamma$ collisions at LEP
+553236 . Double spin asymmetry in the cross-section for exclusive rho0 production in lepton - proton scattering
+553305 . Update of the search for supersymmetric particles in scenarios with gravitino LSP and sleptons NLSP
+553351 . Measurement of trilinear gauge boson couplings WWV, (V = Z, gamma) in e+ e- collisions at 189-GeV
+553945 . Measurement of the branching ratio for D(s)- ---> tau- anti-nu(tau) decays
+554175 . First observation of anti-B ---> D(*) rho-prime-, rho-prime- ---> omega pi-
+554458 . Search for $B^0 \to \pi^0 \pi^0$ decay
+554583 . Precision neutral current asymmetry parameter measurements from the tau polarization at LEP
+554660 . Multiplicity of charged and neutral pions in deep inelastic scattering of 27.5-GeV positrons on hydrogen
+554953 . Single spin azimuthal asymmetries in electroproduction of neutral pions in semiinclusive deep inelastic scattering
+555068 . Search for CP violation in tau ---> pi pi0 nu(tau) decay
+555429 . Search for a fermiophobic Higgs at LEP-2
+555430 . Measurement of V(cb) from the decay process anti-B0 ---> D*+ lepton- anti-neutrino
+555574 . Measurement of triple gauge boson couplings at LEP energies up to 189-GeV
+555603 . Measurement of the mid-rapidity transverse energy distribution from s(NN)**(1/2) = 130-GeV Au + Au collisions at RHIC
+555653 . Measurement of the tau polarization at LEP
+555718 . Experimental investigation of the two photon widths of the chi(c0) and the chi(c2) mesons
+555818 . Midrapidity anti-proton to proton ratio from Au + Au collisions at s(NN)**(1/2) = 130-GeV
+555901 . Measurement of the mass and width of the $W$ boson in $e^{+} e^{-}$ collisions at $\sqrt{s}$ = 189-GeV
+556050 . Rate measurement of D0 ---> K+ pi- pi0 and constraints on D0 - anti-D0 mixing
+556769 . Determination of the b quark mass at the Z mass scale
+556817 . A Measurement of the tau topological branching ratios
+557084 . First observation of anti-B0 ---> D*0 pi+ pi+ pi- pi- decays
+557178 . Measurement of the semileptonic b branching fractions and average b mixing parameter in Z decays
+557534 . Search for the decay B+ ---> D*+ K0(S)
+557690 X Overview of PHENIX results from the first RHIC run
+557767 . Multiplicity distribution and spectra of negatively charged hadrons in Au+Au collisions at s(NN)**(1/2) = 130-GeV
+557820 . Search for single leptoquark and squark production in electron photon scattering at $\sqrt{s_{ee}}$ = 189-GeV at LEP
+557934 . Search for the familon via B+- ---> pi+- X0, B+- ---> K+- X0, and B0 ---> K0(S)X0 decays
+558327 . Study of the fragmentation of b quarks into B mesons at the Z peak
+558372 . Measurement of the Michel parameters and the nu/tau helicity in tau lepton decays
+558407 . Improved upper limits on the FCNC decays $B \to K \ell^{+} \ell^{-}$ and $B \to$ K*(892) $\ell^{+} \ell^{-}$
+558570 . Measurement of the beam spin azimuthal asymmetry associated with deeply virtual Compton scattering
+559609 . Identified particle elliptic flow in Au + Au collisions at s(NN)**(1/2) = 130-GeV
+559673 . Search for heavy isosinglet neutrino in $e^{+} e^{-}$ annihilation at LEP
+559674 . Search for heavy neutral and charged leptons in $e^{+} e^{-}$ annihilation at LEP
+559675 . Measurement of |V(ub)| using b hadron semileptonic decay
+559769 . Search for the decay Upsilon(1s) ---> gamma eta-prime
+559836 . Measurement of A**b(FB) using inclusive b hadron decays
+559861 . Pion interferometry of s(NN)**(1/2) = 130-GeV Au+Au collisions at RHIC
+559968 . Measurement of the Xi(c)+ lifetime
+560306 . Angular analysis of the muon pair asymmetry at LEP I
+560307 . Measurement of Z / gamma* production in Compton scattering of quasi-real photons
+560354 . Standard model Higgs boson with the L3 experiment at LEP
+560355 . Measurement of the topological branching fractions of the $\tau$ lepton at LEP
+560550 . Single intermediate vector boson production in e+ e- collisions at s**(1/2) = 183-GeV and 189-GeV
+560962 . Inclusive semileptonic branching ratios of b hadrons produced in Z decays
+561192 . First measurement of Gamma(D*+)
+561371 X CLEO-c and CESR-c: A New frontier of weak and strong interactions
+561380 . Evidence for the decay D0 ---> K* pi- pi+ pi-
+561580 . Measurement of the branching ratio for the process b ---> tau- anti-nu(tau) X
+561581 . Branching fraction and photon energy spectrum for $b \to s \gamma$
+561582 . Hadronic mass moments in inclusive semileptonic B meson decays
+561876 . Anti-deuteron and anti-He-3 production in s(NN)**(1/2) = 130-GeV Au+Au collisions
+561965 . First measurement of Gamma(D*+) and precision measurement of m(D*+) - m(D0)
+562409 . Suppression of hadrons with large transverse momentum in central Au+Au collisions at $\sqrt{s_{NN}}$ = 130-GeV
+562543 . Search for lepton flavor violation in e+ e- collisions at s**(1/2) = 189-GeV - 209-GeV
+563334 . Bose-Einstein correlations of neutral and charged pions in hadronic $Z$ decays
+563335 . Inclusive $\pi^0$ and $K^0_{S}$ production in two photon collisions at LEP
+563730 . Measurement of the hadronic cross-section for the scattering of two virtual photons at LEP
+563782 . Search for single top quark production at LEP-2
+564369 . Measurement of inclusive anti-protons from Au+Au collisions at (s(NN))**(1/2) = 130-GeV
+564486 . Search for technicolor with DELPHI
+564487 . Search for charged Higgs bosons in e+ e- collisions at s**(1/2) = 189-GeV - 202-GeV
+564765 . Genuine correlations of like - sign particles in hadronic Z0 decays
+564819 . Observation of anti-B0 ---> D0 pi0 and anti-B0 ---> D*0 pi0
+564820 . Search for R parity violating decays of supersymmetric particles in $e^{+} e^{-}$ collisions at LEP
+564821 . Measurement of the Xi+(c) lifetime
+565147 . Measurement of the masses and widths of the Sigma++(c) and Sigma0(c) charmed baryons
+565148 . Measurement of charged-particle multiplicity distributions and their $H_{q}$ moments in hadronic $Z$ decays at LEP
+565149 . f(1)(1285) formation in two photon collisions at LEP
+565438 . Search for Yukawa production of a light neutral Higgs boson at LEP
+565440 . Double tag events in two photon collisions at LEP
+565517 . Particle multiplicity of unbiased gluon jets from $e^{+} e^{-}$ three jet events
+565839 . Lifetime differences, direct CP violation and partial widths in D0 meson decays to K+ K- and pi+ pi-
+565988 . Study of the $W^{+} W^{-} \gamma$ process and limits on anomalous quartic gauge boson couplings at LEP
+566081 . First results from RHIC-PHENIX
+566837 . Search for doubly charged Higgs bosons with the OPAL detector at LEP
+567473 . Search for CP violation in tau ---> K pi tau-neutrino decays
+567914 . Production of D**(s) mesons in hadronic Z decays
+567915 . Search for scalar leptons in e+ e- collisions at center-of-mass energies up to 209-GeV
+568382 . Single spin azimuthal asymmetry in exclusive electroproduction of pi+ mesons
+568437 . Centrality dependence of pi+ / pi-, K+ / K-, p and anti-p production from s(NN)**(1/2) = 13-=GeV Au+Au collisions at RHIC
+568505 . Search for leptoquarks in electron photon scattering at s($e e) ^{(1/2)}$ up to 209-GeV at LEP
+568553 . Searches for neutral Higgs bosons in e+ e- collisions from s**(1/2) = 191.6-GeV to 201.7-GeV
+568809 . Observation of exclusive anti-B ---> D(*) K*- decays
+569165 . Inclusive production of the omega and eta mesons in Z decays, and the muonic branching ratio of the omega
+569166 . Final results of the searches for neutral Higgs bosons in e+ e- collisions at s**(1/2) up to 209-GeV
+570407 . Measurement of the forward backward asymmetry in Z --> b anti-b and Z --> c anti-c decays with leptons
+570700 . Study of multiphoton final states and tests of QED in $e^{+} e^{-}$ collisions at $\sqrt{S}$ up to 209-GeV
+581380 . Further experimental studies of two-body radiative Upsilon decays
+581519 . Search for R-parity violating production of single sneutrinos in e+ e- collisions at s**(1/2) = 189-GeV to 209-GeV
+581750 . Leptonic decays of the D(s) meson
+581871 . Transverse mass dependence of two pion correlations in Au+Au collisions at S(NN)**(1/2) = 130-GeV
+582528 . Search for gamma gamma ---> eta(b) in e+ e- collisions at LEP-2
+582654 . Measurement of single electrons and implications for charm production in Au+Au collisions at s**(1/2)(NN) = 130-GeV
+582690 . Improved measurement of |V(ub)| with inclusive semileptonic B decays
+582991 . Measurement of the ratio of branching fractions of the Upsilon(4S) to charged and neutral B mesons
+583115 . Measurement of the hadronic photon structure function F**gamma(2) at LEP-2
+583655 . Improved search for B(0)S anti-B(0)S oscillations
+583971 . Search for a Higgs boson decaying into two photons at LEP
+584019 . Search for charginos nearly mass degenerate with the lightest neutralino in e+ e- collisions at center-of-mass energies up to 209-GeV
+584055 X Results from the STAR experiment
+584141 . Midrapidity Lambda and anti-Lambda production in Au + Au collisions at s(NN)**(1/2) = 130-GeV
+584153 . Search for gauge mediated SUSY breaking topologies in $e^{+} e^{-}$ collisions at center-of-mass energies up to 209-GeV
+584195 . Measurement of the mass of the W boson in e+ e- collisions using the fully leptonic channel
+584267 . Measurement of the D+ ---> anti-K*0 l+ letpon-neutrino branching fraction
+584269 X Improved measurement of |V(cb)| using anti-B ---> D* l nu decays
+584417 . Net charge fluctuations in Au+Au interactions at s**(1/2) = 130-GeV
+584452 . Event-by-event fluctuations in mean p(T) and mean e(T) in s(NN)**(1/2) = 130-GeV Au+Au collisions
+584631 . Midrapidity phi production in Au + Au collisions at s N N = 130-GeV
+585321 . Search for lepton flavor violating decays of $B$ mesons
+585347 . Flow measurements via two particle azimuthal correlations in Au+Au collisions at s(NN)**(1/2) = 130-GeV
+585370 . Anti-search for the glueball candidate f(J)(2220) in two -photon interactions
+585561 . Measurement of the Lambda and anti-Lambda particles in Au+Au collisions at s(NN)**(1/2) = 130-GeV
+585621 . $\Lambda$ and $\Sigma^0$ pair production in two photon collisions at LEP
+585623 . Inclusive $D^{*+-}$ production in two photon collisions at LEP
+586044 . Search for scalar quarks in $e^{+} e^{-}$ collisions at $\sqrt{s}$ up to 209-GeV
+586115 . Determination of $alpha_s$ from hadronic event shapes in $e^{+} e^{-}$ annihilation at 192-GeV <= $\sqrt{s}$ <= 208-GeV
+586130 . Rapidity alignment and p(T) compensation of particle pairs in hadronic Z0 decays
+586918 . A Flavor independent Higgs boson search in e+ e- collisions at s**(1/2) up to 209-GeV
+587154 . Azimuthal anisotropy of K0(S) and Lambda + anti-Lambda production at mid-rapidity from Au + Au collisions at S(NN)**(1/2) = 130-GeV
+587235 . K*(892)0 production in relativistic heavy ion collisions at S(NN)**(1/2) = 130-GeV
+587300 . Correlated inclusive Lambda anti-Lambda production in e+ e- annihilations at s**(1/2) approximately 10.5-GeV
+587825 . Elliptic flow from two and four particle correlations in Au+Au collisions at s(NN)**(1/2) = 130-GeV
+587909 . Measurement of the charm structure function F2(c)(gamma) of the photon at LEP
+587910 . Measurements of the strong coupling constant and the QCD color factors using four jet observables from hadronic Z decays
+588105 . Decay mode independent searches for new scalar bosons with the OPAL detector at LEP
+588107 . Observation of B --> K0(S) pi+ pi- and evidence for B --> K*+- pi-+
+588142 . Coherent rho0 production in ultraperipheral heavy ion collisions
+588226 . Azimuthal anisotropy and correlations in the hard scattering regime at RHIC
+588301 . Single photon and multiphoton production in $e^{+} e^{-}$ collisions at $\sqrt{s}$ up to 209-GeV
+588319 . Measurement of B(B- ---> D0 pi-) and B(anti-B0 ---> D+ pi-) and isospin analysis of B ---> D pi decays
+588342 . Kaon production and kaon to pion ratio in Au+Au collisions at s(NN)**1/2 = 130-GeV
+588808 . Centrality dependence of high $p_{T}$ hadron suppression in Au+Au collisions at $\sqrt{s}_{NN}$ = 130-GeV
+588873 . The $e^{+} e^{-} \to Z \gamma \gamma \to q \bar{q} \gamma \gamma$ reaction at LEP and constraints on anomalous quartic gauge boson couplings
+588874 . Measurement of genuine three particle Bose-Einstein correlations in hadronic $Z$ decay
+589045 . Search for charged excited leptons in e+ e- collisions at s**(1/2) = 183-GeV to 209-GeV
+589410 . Search for single top production in $e^{+} e^{-}$ collisions at $\sqrt{s}$ up to 209-GeV
+590095 . Search for associated production of massive states decaying into two photons in $e^{+} e^{-}$ annihilations at $\sqrt{s}$ = 88-GeV to 209-GeV
+590665 . Measurement of R = sigma(L) / sigma(T) in deep inelastic scattering on nuclei
+590820 . Centrality dependence of the high p(T) charged hadron suppression in Au+Au collisions at s(NN)**(1/2) = 130-GeV
+591126 . Search for charged Higgs bosons in $e^{+} e^{-}$ collisions at energies up to $\sqrt{s}$ = 209-GeV
+591226 . Absolute lower limits on the masses of selectrons and sneutrinos in the MSSM
+591227 . Search for eta(b)(1S) in inclusive radiative decays of the Upsilon(3S)
+591230 . First observation of Upsilon (1D) states
+591232 . Study of two photon transistions in CLEO-III Upsilon (3S) data
+591234 . Preliminary results on |V(ub)| from inclusive semileptonic B decays with neutrino reconstruction
+591237 . Dalitz analysis of D0 ---> K0(S) pi+ pi-
+591320 . Observation of the decay Omega0(c) ---> Omega- e+ nu(e)
+591959 . Search for gamma gamma decays of a Higgs boson in e+ e- collisions at s**(1/2) up to 209-GeV
+592036 . Measurement of exclusive B decays to final states containing a charmed baryon
+592717 . Search for neutrinoless tau decays involving the K0(S) meson
+592779 . Strangeness in Au + Au collisions at s(NN)**(1/2) = 130-GeV observed with the STAR detector
+593545 . Search for neutral Higgs bosons of the minimal supersymmetric standard model in $e^{+} e^{-}$ interactions at $\sqrt{s}$ = 209-GeV
+594588 . Production of single $W$ bosons at LEP and measurement of $W W \gamma$ gauge coupling parameters
+594589 . Measurement of Bose-Einstein correlations in $e^{+} e^{-} \to W^{+} W^{-}$ events at LEP
+594689 . Evidence for quark hadron duality in the proton spin asymmetry A(1)
+594839 . Measurement of the lepton energy in the decay anti-B ---> X l anti-nu and determination of the heavy quark expansion parameters
+594920 . Search for scalar top and scalar bottom quarks at LEP
+595335 . Charged particle momentum spectra in e+ e- annihilation at s**(1/2) = 192-GeV to 209-GeV
+595836 . Measurement of the cross-section for the process gamma gamma ---> p anti-p at s(e e)**(1/2) = 183-GeV to 189-GeV at LEP
+596551 . Search for anomalous weak dipole moments of the tau lepton
+596553 . Search for a low mass CP odd Higgs boson in e+ e- collisions with the OPAL detector at LEP-2
+597023 . The Q**2 dependence of nuclear transparency for exclusive rho0 production
+598112 . Measurement of the b quark forward backward asymmetry around the Z0 peak using an inclusive tag
+598373 . Search for the standard model Higgs boson with the OPAL detector at LEP
+598949 . Search for supersymmetric particles with R parity violating decays in $e^{+} e^{-}$ collisions at $\sqrt{s}$ up to 209-GeV
+598951 . Multiphoton production in e+ e- collisions at s**(1/2) = 181-GeV to 209-GeV
+599181 . Inclusive analysis of the b quark fragmentation function in Z decays at LEP
+599182 . Measurement of neutral current four fermion production at LEP-2
+599183 . Search for single top production at LEP
+599918 . Determination of the anti-B ---> D* l anti-nu decay width and |V(cb)|
+600094 . Search for nearly mass degenerate charginos and neutralinos at LEP
+600098 ? The Q**2 dependence of the generalized Gerasimov-Drell-Hearn integral for the deuteron, proton and neutron
+600099 . First observation of the exclusive decays Lambda+(c) ---> Lambda pi+ pi+ pi- pi0 and Lambda+(c) ---> Lambda omega pi+
+600652 . Disappearance of back-to-back high $p_{T}$ hadron correlations in central Au+Au collisions at $\sqrt{s_{NN}}$ = 200-GeV
+601225 . Charged particle multiplicities in heavy and light quark initiated events above the Z0 peak
+601701 . Inclusive eta-prime production from the Upsilon(1S)
+602867 . Strange anti-particle to particle ratios at mid-rapidity in s(NN)**(1/2) = 130-GeV Au+Au collisions
+603172 . A Measurement of the tau- ---> mu- anti-nu(mu) nu(tau) branching ratios
+603214 . Search for B(s)0 - anti-B(s)0 oscillations and a measurement of B(d)0 - anti-B(d)0 oscillations using events with an inclusively reconstructed vertex
+604660 . Measurement of single spin azimuthal asymmetries in semiinclusive electroproduction of pions and kaons on a longitudinally polarized deuterium target
+604733 . Search for an LSP gluino at LEP with the DELPHI detector
+604734 . Search for doubly charged Higgs bosons at LEP-2
+604800 . First search for the flavor changing neutral current decay D0 ---> gamma gamma
+605177 . Measurement of lepton momentum moments in the decay anti-B ---> X l anti-nu and determination of heavy quark expansion parameters and |V(cb)|
+605865 . A Measurement of semileptonic B decays to narrow orbitally excited charm mesons
+605973 . Inclusive charged hadron production in two photon collisions at LEP
+606066 . Measurement of W polarisation at LEP
+606309 . Measurements of inclusive $B \to \psi$ production
+606391 . Study of the $e^{+} e^{-} \to Z e^{+} e^{-}$ process at LEP
+606568 . Search for supersymmetric particles in light gravitino scenarios and sleptons NLSP
+606944 . Inclusive b decays to wrong sign charmed mesons
+606945 . Search for resonant $\widetilde\nu$ production at $\sqrt{s}$ = 183 to 208 GeV
+608096 X The STAR barrel electromagnetic calorimeter
+608101 X STAR detector overview
+608565 X b tagging in DELPHI at LEP
+611415 . Dijet production in photon-photon collisions at s(ee)**(1/2) from 189-GeV to 209-GeV
+611745 . Measurements of the branching fractions and helicity amplitudes in $B \to D^{*} \rho$ decays
+612223 . Measurement of the inclusive D*+- production in gamma gamma collisions at LEP
+612248 . Narrowing of the balance function with centrality in au + au collisions at (S(NN))**1/2 = 130-GeV
+613068 . Double spin asymmetries in the cross-section of rho0 and phi production at intermediate-energies
+613626 . Measurements of charmless hadronic two body B meson decays and the ratio B(B ---> D K) / B(B ---> D pi)
+613711 . Bose-Einstein correlations of pi0 pairs from hadronic Z0 decays
+613712 . Branching fractions of tau leptons decays to three charged hadrons
+614784 . Study of the charmless inclusive B ---> eta-prime X decay
+614953 . Final results from DELPHI on the searches for SM and MSSM neutral Higgs bosons
+615637 . Test of noncommutative QED in the process e+ e- ---> gamma gamma at LEP
+615977 . Search for color reconnection effects in $e^{+} e^{-} \to W^{+} W^{-} \to$ hadrons through particle flow studies at LEP
+616620 . Search for B ---> anti-p e- anti-nu(e) X decay using a partial reconstruction method
+616827 . Study of the q**2 dependence of B ---> pi l nu and B ---> rho (omega) l nu decay and extraction of |V(u b)|
+617548 . Measurement of the charge asymmetry in B ---> K*(892)+- pi+-
+617784 . Mid-rapidity neutral pion production in proton proton collisions at $\sqrt{s}$ = 200-GeV
+617814 . Suppressed pi^0 production at large transverse momentum in central Au+ Au collisions at S(NN)**1/2 = 200 GeV
+618097 . Search for baryons in the radiative penguin decay b ---> s gamma
+618587 . Observation of a narrow resonance of mass 2.46-GeV/c**2 in the D*(s)+ pi0 final state, and confirmation of the D*(sJ)(2317)
+618779 . Search for stable and longlived massive charged particles in e+ e- collisions at s**(1/2) = 130-GeV to 209-GeV
+619015 . Search for pair produced leptoquarks in $e^{+} e^{-}$ interactions at $\sqrt{s}$ approximately = 189-GeV to 209-GeV
+619061 . Elliptic flow of identified hadrons in Au+Au collisions at s(NN)**(1/2) = 200-GeV
+619063 . Transverse momentum and collision energy dependence of high p(T) hadron suppression in Au+Au collisions at ultrarelativistic energies
+619171 . Search for the standard model Higgs boson at LEP
+619462 . Search for stable hadronizing squarks and gluinos in e+ e- collisions up to s**(1/2) = 209-GeV
+619533 . Measurement of isolated prompt photon production in photon photon collisions at s(ee)**(1/2) = 183 GeV - 209-GeV
+619620 . Measurement of exclusive $\rho^0 \rho^0$ production in two photon collisions at high $Q^{2}$ at LEP
+619646 . J / psi production in Au Au collisions at s(NN)**(1/2) = 200-GeV at the Relativistic Heavy Ion Collider
+619835 . Observation of a narrow resonance of mass 2.46-GeV/c**2 decaying to D*+(s) pi0 and confirmation of the D*(sJ)(2317) state
+619958 . Study of hadronic final states from double tagged gamma gamma events at LEP
+619987 . Scaling properties of proton and anti-proton production in s(NN)**(1/2) 200-GeV Au+Au collisions
+620250 . A Study of the energy evolution of event shape distributions and their means with the DELPHI detector at LEP
+620309 . Particle type dependence of azimuthal anisotropy and nuclear modification of particle production in Au + Au collisions at s(NN)**(1/2) = 200-GeV
+620387 . Search for excited leptons at LEP
+620433 . $p\bar{p}$ pair production in two photon collisions at LEP
+620435 . Cabibbo suppressed decays of D+ ---> pi+ pi0, K+ anti-K0, K+ pi0
+620500 . Heavy ion collisions at collider energies: Insights from PHENIX
+620566 . Tests of models of color reconnection and a search for glueballs using gluon jets with a rapidity gap
+621350 . Improved measurement of the form-factors and first search for CP violation in the decay of Lambda+(c) ---> Lambda e+ nu(e)
+621391 . Absence of suppression in particle production at large transverse momentum in S(NN)**(1/2) = 200-GeV d + Au collisions
+621394 . Evidence from d + Au measurements for final state suppression of high p(T) hadrons in Au+Au collisions at RHIC
+621641 . Three pion HBT correlations in relativistic heavy ion collisions from the STAR experiment
+621642 . Rapidity and centrality dependence of proton and anti-proton production from Au-197 + Au-197 collisions at (S(NN))**(1/2)) = 130-GeV
+621966 . A Dalitz plot analysis of D0 ---> pi- pi+ pi0 decays in CLEO II.V
+622312 . Observation of eta-prime(c) production in gamma gamma fusion at CLEO
+622724 . A measurement of the gluon splitting rate into c anti-c pairs in hadronic Z decays
+622876 . Search for a Higgs boson decaying to weak boson pairs at LEP
+623000 . $J/\psi$ production from proton proton collisions at $\sqrt{s}$ = 200-GeV
+623047 . Multiplicity fluctuations in Au+Au collisions at s(NN)**(1/2) = 130-GeV
+623383 . Quark fragmentation to pi+-, pi0, K+-, p and anti-p in the nuclear environment
+623413 . Single identified hadron spectra from s(NN)**(1/2) = 130-GeV Au+Au collisions
+623464 . Observation of the hadronic transitions chi (b1,2) (2P) ---> omega Upsilon (1S)
+623628 . Measurement of the charge asymmetry in B ---> K*(892)+- pi-+
+623653 . Study of inclusive J / psi production in two photon collisions at LEP-2 with the DELPHI detector
+623654 . ZZ production in e+ e- interactions at s**(1/2) = 183-GeV to 209-GeV
+624063 . Flavor decomposition of the sea quark helicity distributions in the nucleon from semiinclusive deep inelastic scattering
+624448 . Measurement of the hadronic recoil mass moments in semileptonic B decay
+624474 . Identified charged particle spectra and yields in Au+Au collisions at S(NN)**1/2 = 200-GeV
+624475 . Rho0 production and possible modification in Au+Au and p+p collisions at S(NN)**1/2 = 200-GeV
+624566 . Multistrange baryon production in Au-Au collisions at S(NN)**1/2 = 130 GeV
+624731 . Pion kaon correlations in Au+Au collisions at s(NN)**1/2 = 130-GeV
+625095 . $Z$ boson pair production at LEP
+625472 . High $p_{T}$ charged hadron suppression in Au + Au collisions at $\sqrt{s}_{NN} = 200$ GeV
+626022 . Exclusive production of pion and kaon meson pairs in two photon collisions at LEP
+626316 . A Study of charm production in beauty decays with the OPAL detector at LEP
+626317 . Measurement of heavy quark forward backward asymmetries and average B mixing using leptons in hadronic Z decays
+626318 . Search for the single production of doubly charged Higgs bosons and constraints on their couplings from Bhabha scattering
+626732 . Measurement of charged current triple gauge boson couplings using $W$ pairs at LEP
+626905 . Event by event < p(t) > fluctuations in Au - Au collisions at s(NN)**(1/2) = 130-GeV
+627211 . A Study of $W^{+} W^{-} \gamma$ events at LEP
+627212 . Search for anomalous production of dilepton events with missing transverse momentum in e+ e- collisions at s**(1/2) = 183-Gev to 209-GeV
+627327 . Measurement of the decay rate of Xi0(c) ---> pK- K- pi+ relative to Xi0(c) ---> Xi- pi+
+627886 X PHENIX detector overview
+627888 X PHENIX central arm tracking detectors
+627891 X PHENIX muon arms
+627893 X PHENIX on-line systems
+628232 . Pion, kaon, proton and anti-proton transverse momentum distributions from $p + p$ and $d +$ Au collisions at $\sqrt{s_{NN}} = 200$GeV
+628491 . Tests of the standard model and constraints on new physics from measurements of fermion pair production at 189-GeV to 209-GeV at LEP
+628565 . Search for charged Higgs bosons at LEP
+628566 . Measurement of inclusive f(1)(1285) and f(1)(1420) production in Z decays with the DELPHI detector
+628757 . Cabibbo suppressed decays of D+ ---> pi+ pi0, K+ anti-K0, K+ pi0
+629157 . Search for doubly charged Higgs bosons at LEP
+629858 . Search for scalar leptons and scalar quarks at LEP
+630099 . Study of Z pair production and anomalous couplings in e+ e- collisions at s**(1/2) between 190-GeV and 209-GeV
+630160 . Identified particle distributions in pp and Au+Au collisions at s(NN)**(1/2) = 200 GeV
+630161 . Measurement of nonrandom event by event fluctuations of average transverse momentum in s(NN)**(1/2) = 200-GeV Au+Au and p+p collisions
+631231 . Measurement of the hadronic photon structure function F2(gamma)(x, Q**2) in two-photon collisions at LEP
+631361 . Experimental studies of unbiased gluon jets from $e^{+} e^{-}$ annihilations using the jet boost algorithm
+631529 . Search for R parity violating decays of scalar fermions at LEP
+631713 . Azimuthal anisotropy at RHIC: The First and fourth harmonics
+631869 . Cross-sections and transverse single spin asymmetries in forward neutral pion production from proton collisions at s**(1/2) = 200- GeV
+632225 . The Eta(c)(2980) formation in two photon collisions at LEP energies
+632226 . Measurement of the e+ e- ---> W+ W- gamma cross-section and limits on anomalous quartic gauge couplings with DELPHI
+632227 . A Measurement of the branching fractions of the $b$ quark into charged and neutral $b$ hadrons
+632293 . Nuclear polarization of molecular hydrogen recombined on a non-metallic surface
+632738 . Searches for supersymmetric particles in e+ e- collisions up to 208-GeV and interpretation of the results within the MSSM
+633196 . Search for CP violation in D0 ---> K0(S) pi+ pi-
+633679 . Observation of the hadronic transitions chi(b1,2)(2P) ---> omega upsilon(1S)
+634946 . Search for color singlet and color reconnection effects in hadronic $Z$ decays at LEP
+635102 . Azimuthally sensitive HBT in Au + Au collisions at s(NN)**(1/2) = 200-GeV
+635448 . Flavor independent search for Higgs bosons decaying into hadronic final states in e+ e- collisions at LEP
+635543 . Measurement of the partial widths of the Z into up and down type quarks
+635665 . Evidence for a narrow |S| = 1 baryon state at a mass of 1528-MeV in quasireal photoproduction
+635790 . W boson polarization at LEP2
+635850 . Absolute mass lower limit for the lightest neutralino of the MSSM from e+ e- data at s**(1/2) up to 209-GeV
+635851 . Measurement of the W pair production cross-section and W branching ratios in e+ e- collisions at s**(1/2) = 161-GeV to 209-GeV
+636329 . Observation of eta-prime(c) production in gamma gamma fusion at CLEO
+636644 . Two-dimensional analysis of Bose-Einstein correlations in hadronic Z decays at LEP
+636645 . Studies of QCD at e+ e- centre-of-mass energies between 91-GeV and 209-GeV
+636842 . Searches for invisibly decaying Higgs bosons with the DELPHI detector at LEP
+636843 . A Precise measurement of the $B^{+}$, $B^0$ and mean $b$ hadron lifetime with the DELPHI detector at LEP1
+636844 . Search for chargino and neutralino production at s**(1/2) = 192-GeV to 209 GeV at LEP
+636939 . Measurement of the Z boson mass using e+ e- ---> Z gamma events at center of mass energies above the Z pole
+636940 . Single photon and multiphoton events with missing energy in $e^{+} e^{-}$ collisions at LEP
+636941 . Flavor independent search for neutral Higgs bosons at LEP
+637287 . Inclusive lambda production in two photon collisions at LEP
+637613 . Measurement of the Lambda0(b) decay form-factor
+637614 . Measurement of the forward backward asymmetries of e+ e- ---> Z ---> b anti-b and e+ e- ---> Z -> c anti-c using prompt leptons
+637615 . Search for SUSY in the AMSB scenario with the DELPHI detector
+637639 . Search for charged Higgs bosons at LEP in general two Higgs doublet models
+637640 . Search for  $B^0_s$-$\overline{B^0_s}$ oscillations in DELPHI using high-$p_t$ leptons
+637641 . Search for single top production via FCNC at LEP at $\sqrt{s}$ = 189-GeV to 208-GeV
+638198 . Search for supersymmetric particles assuming R-parity nonconservation in e+ e- collisions at s**(1/2) = 192-GeV to 208-GeV
+638199 . Study of tau-pair production in photon-photon collisions at LEP and limits on the anomalous electromagnetic moments of the tau lepton
+638200 . Search for fermiophobic Higgs bosons in final states with photons at LEP 2
+638218 . Photon events with missing energy in e+ e- collisions at s**(1/2) = 130-GeV to 209-GeV
+638858 . A Precise measurement of the tau lifetime
+639484 . Study of spin and decay-plane correlations of $W$ bosons in the $e^{+} e^{-} \to W^{+} W^{-}$ process at LEP
+639734 . Measurement of branching fractions of $\tau$ hadronic decays
+640204 . A Measurement of the tau hadronic branching ratios
+642225 . Bose-Einstein correlations of charged pion pairs in Au + Au collisions at s(NN)**(1/2) = 200-GeV
+642354 . Wess-Zumino current and the structure of the decay tau- ---> K- K+ pi- nu(tau)
+642374 . Photon and neutral pion production in Au + Au collisions at s(NN)**(1/2) = 130-GeV
+642852 . Measurement of |V(cb)| using the semileptonic decay anti-B0(d) ---> D*+ l- anti-nu(l)
+643442 X An update from STAR - using strangeness to probe relativistic heavy ion collisions
+644313 . Constraints on anomalous QGC's in e+ e- interactions from 183-GeV to 209-GeV
+644374 . Constraints on anomalous quartic gauge boson couplings from nu anti-nu gamma gamma and q anti-q gamma gamma events at LEP-2
+645126 . Measurement of triple gauge boson couplings of the $W$ boson at LEP
+645127 . Muon pair and tau pair production in two photon collisions at LEP
+645209 . Charm meson spectra in $e^{+} e^{-}$ annihilation at 10.5-GeV c.m.e.
+646971 . Search for anomalous couplings in the Higgs sector at LEP
+647287 . Moments of the B meson inclusive semileptonic decay rate using neutrino reconstruction
+647288 . Measurement of the B-meson inclusive semileptonic branching fraction and electron energy moments
+647348 . Study of Bose-Einstein correlations in $e^+ e^- \to W^+ W^-$ events at LEP
+647869 . Production of e+ e- pairs accompanied by nuclear dissociation in ultra-peripheral heavy ion collision
+648444 . First observation of a Upsilon(1D) state
+648464 . Centrality and pseudorapidity dependence of charged hadron production at intermediate $p_{T}$ in Au + Au collisions at $\sqrt{s_{NN}}$ = 130-GeV
+648738 . Scaling violations of quark and gluon jet fragmentation functions in e+ e- annihilations at s**(1/2) = 91.2-GeV and 183-GeV to 209-GeV
+648739 . Double helicity asymmetry in inclusive mid-rapidity pi0 production for polarized p + p collisions at s**(1/2) = 200-GeV
+649917 . First observation and Dalitz analysis of the D0 ---> K0(S) eta pi0 decay
+651461 . phi meson production in Au + Au and p+p collisions at s(NN)**(1/2) = 200-GeV
+651462 . Deuteron and antideuteron production in Au + Au collisions at s(NN)**(1/2) = 200-GeV
+651512 . Measurement of the strange spectral function in hadronic tau decays
+651514 . The Measurement of alpha(s) from event shapes with the DELPHI detector at the highest LEP energies
+652683 . Studies of hadronic event structure in $e^{+} e^{-}$ annihilation from 30-GeV to 209-GeV with the L3 detector
+652686 . Hard exclusive electroproduction of pi+ pi- pairs
+652767 . Search for neutral Higgs boson in CP-conserving and CP-violating MSSM scenarios
+653296 . Measurement of W-pair production in e+ e- collisions at centre-of-mass energies from 183-GeV to 209-GeV
+653297 . Measurement of the atmospheric muon spectrum from 20-GeV to 3000-GeV
+653486 . Hadronization geometry and charge-dependent number autocorrelations on axial momentum space in Au-Au collisions at s(NN)**(1/2) = 130-GeV
+653628 . Transverse-momentum dependent modification of dynamic texture in central Au+Au collisions at s(NN)**(1/2) = 200-GeV
+653797 . Measurements of transverse energy distributions in Au + Au collisions at s(NN)**(1/2) = 200-GeV
+653835 . Study of the $e^{+} e^{-} \to Z \gamma$ process at LEP and limits on triple neutral-gauge-boson couplings
+653868 . Open charm yields in d + Au collisions at s(NN)**(1/2) = 200-GeV
+654174 . Search for branons at LEP
+654177 . Measurement of exclusive rho+ rho- production in high-Q**2 two-photon collisions at LEP
+654226 . Azimuthal anisotropy and correlations at large transverse momenta in p+p and Au+Au collisions at s(NN)**(1/2) = 200-GeV
+654529 . Observation of 1-0- final states from psi(2S) decays and e+ e- annihilation
+654639 . New measurements of $\upsilon_{1S}$ decays to charmonium final states
+654756 . Quark helicity distributions in the nucleon for up, down, and strange quarks from semi-inclusive deep-inelastic scattering
+654843 . Study of semileptonic charm decays D0 ---> pi- l+ nu and D0 ---> K- l+ nu
+655799 . Measurement of the muonic branching fraction of the narrow upsilon resonances at CLEO
+655971 . Search for the lepton-flavor-violating leptonic B decays B0 --> mu+- tau -+ and B0 --> e+- tau-+
+656015 . Single-spin asymmetries in semi-inclusive deep-inelastic scattering on a transversely polarized hydrogen target
+656142 . Jet structure of baryon excess in Au + Au collisions at s(NN)**(1/2) = 200-GeV
+656302 . Transverse momentum correlations and minijet dissipation in Au-Au collisions at s(NN)**(1/2)-GeV
+656640 . Multi-photon events with large missing energy in $e^+ e^-$ collisions at $\sqrt{s}$ = 192-GeV - 209-GeV
+656761 . Search for X(3872) in untagged gamma gamma fusion and initial state radiation production with CLEO III
+656811 . Single vector boson production in e+ e- collisions at centre-of-mass energies from 183-GeV to 209-GeV
+656873 . Hadronic branching fractions of D0 and D+, and sigma (e+e- ---> D anti-D) at E(cm) = 3.77-GeV
+656883 . Measurement of B(D+ ---> mu+ nu) and the pseudoscalar decay constant f(D+)*
+656887 X First CLEO-c results on exclusive D0 semileptonic decays
+656934 . Pseudorapidity asymmetry and centrality dependence of charged hadron spectra in d + Au collisions at S(NN)**(1/2) = 200-GeV
+656973 . Flavor independent h0A0 search and two Higgs doublet model interpretation of neutral Higgs boson searches at LEP
+657367 . Determination of the LEP beam energy using radiative fermion-pair events
+657450 . Photon transitions in psi(2S) decays to chi(cJ) (1P) and eta(c)(1S)
+657983 . Search for pentaquark states in Z decays
+658215 X The HERMES polarized hydrogen and deuterium gas target in the HERA electron storage ring
+658254 . Measurement of the cross section of W-boson pair production at LEP
+658670 . Measurement of the muonic branching fractions of the narrow Upsilon resonances
+659749 . Systematic studies of the centrality and s(NN)**(1/2) dependence of the d E(T) / d eta and d (N(ch) / d eta in heavy ion collisions at mid-rapidity
+660087 . Two-particle correlations in p p, anti-p anti-p and K0(S) K0(S) pairs from hadronic Z decays
+660565 . Determination of the e+ e- ---> gamma gamma (gamma) cross-section at LEP 2
+660611 . Centrality dependence of charm production from single electrons measurement in Au + Au collisions at s(NN)**(1/2) = 200-GeV
+660793 . Azimuthal anisotropy in Au+Au collisions at s(NN)**(1/2) = 200-GeV
+661031 . Formation of dense partonic matter in relativistic nucleus-nucleus collisions at RHIC: Experimental evaluation by the PHENIX collaboration
+661114 . Inclusive jet production in two-photon collisions at LEP
+661247 . Searches for neutral higgs bosons in extended models
+661505 . Production of phi mesons at mid-rapidity in s(NN)**(1/2) = 200- GeV Au+Au collisions at RHIC
+661780 . Measurement of R(b) in e+ e- collisions at 182-GeV to 209-GeV
+661781 X Search for radions at LEP2
+661925 . Search for X(3872) in gamma gamma fusion and ISR at CLEO
+662724 . Measurement of the energy dependence of hadronic jet rates and the strong coupling alpha(s) from the four-jet rate with the DELPHI detector at LEP
+662726 . Measurement of exclusive rho0 rho0 production in mid-virtuality two-photon interactions at LEP
+662728 . Coherent soft particle production in Z decays into three jets
+663098 . A New measurement of the masses and widths of the Sigma*++(c) and Sigma*0(c) charmed baryons
+663650 . Minijet deformation and charge-independent angular correlations on momentum subspace (eta, phi) in Au-Au collisions at s(NN)**(1/2) = 130-GeV
+664502 . Measuring B(D+ ---> mu+ nu) and the pseudoscalar decay constant f(D+)
+664766 . Bose-Einstein correlations in W-pair decays with an event-mixing technique
+664843 . Pion interferometry in Au+Au collisions at S(NN)**(1/2) = 200-GeV
+664944 . Saturation of azimuthal anisotropy in Au + Au collisions at s(NN)**(1/2) 62-GeV to 200-GeV
+665012 . Photon transitions in Upsilon(2S) and Upsilon(3S) decays
+665223 . Search for e+ e- ---> Lambda0(b) anti-Lambda0(b) near threshold
+665543 . Nuclear modification factors for hadrons at forward and backward rapidities in deuteron-gold collisions at s(NN)**(1/2) = 200-GeV
+665729 . Determination of A**b(FB) at the Z pole using inclusive charge reconstruction and lifetime tagging
+666578 . K(892)* resonance production in Au+Au and p+p collisions at s(NN)**(1/2) = 200-GeV at STAR
+666724 . Search for an exotic S = -2, Q = -2 baryon resonance at a mass near 1862-MeV in quasi-real photoproduction
+668268 . Improved measurement of the form-factors in the decay Lambda+(c) ---> Lambda e+ nu(e)
+668596 . Search for an invisibly-decaying Higgs boson at LEP
+669198 . Improved measurement of the triple gauge-boson couplings gamma W W and Z W W in e+ e- collisions
+669402 . Measurement of event shape distributions and moments in e+ e- ---> hadrons at 91-GeV - 209-GeV and a determination of alpha(s)
+671611 . Bose-Einstein correlations in W+ W- events at LEP2
+673252 . Search for excited leptons in e+ e- collisions at s**(1/2) = 189-GeV to 209-GeV
+673292 . Flavour independent searches for hadronically decaying neutral Higgs bosons
+674679 X The Search for eta(1440) ---> K0(S) K+- pi-+ in two-photon fusion at CLEO
+674863 . Experimental and theoretical challenges in the search for the quark gluon plasma: The STAR Collaboration's critical assessment of the evidence from RHIC collisions
+675005 . Study of tau decays to four-hadron final states with kaons
+675307 . Distributions of charged hadrons associated with high transverse momentum particles in pp and Au + Au collisions at s(NN)**(1/2) = 200-GeV
+676004 . Mid-rapidity direct-photon production in $p^+ p$ collisions at $\sqrt{s}$ = 200-GeV
+676168 X Limits on neutral D mixing in semileptonic decays
+676188 . Multiplicity and pseudorapidity distributions of photons in Au + Au collisions at s(NN)**(1/2) = 62.4-GeV
+676189 . Measurement of single electron event anisotropy in Au+Au collisions at s(NN)**(1/2) = 200-GeV
+678021 . Centrality dependence of direct photon production in s(NN)**(1/ 2) = 200-GeV Au + Au collisions
+678470 . Measurement of the branching fractions for J/psi ---> l+ l-
+678471 . Branching fractions for psi(2S) to J/psi transitions
+678858 . Measurement of the shadowing of high-energy cosmic rays by the Moon: A Search for TeV-energy antiprotons
+679053 . Search for D0 - anti-D0 mixing in the Dalitz plot analysis of D0 ---> K0(S) pi+ pi-
+679349 . Searches for CP violation and pi pi S-wave in the Dalitz-Plot of D0 ---> pi+ pi- pi0
+679506 . Measurement of absolute hadronic branching fractions of D mesons and e+ e- ---> D anti-D cross sections at E(cm) = 3773-MeV
+679959 . Compton scattering of quasi-real virtual photons at LEP
+680119 . Z-boson production with two unobserved, back-to-back, hard photons at LEP
+680120 . Measurement of exclusive rho+ rho- production in mid-virtuality two-photon interactions and study of the gamma gamma* ---> rho rho process at LEP
+681161 . Multi-strange baryon elliptic flow in Au + Au collisions at s(NN)**(1/2) = 200-GeV
+681526 . Neutral-current four-fermion production in e+ e- interactions at LEP
+681688 . Incident energy dependence of pt correlations at RHIC
+682662 . Subleading-twist effects in single-spin asymmetries in semi-inclusive deep-inelastic scattering on a longitudinally polarized hydrogen target
+682775 . Branching fraction measurements of psi(2S) decay to baryon-antibaryon final states
+683280 . Measurement of the running of the QED coupling in small-angle Bhabha scattering at LEP
+683281 . Observation of h(c))(P(1)-1) state of charmonium
+683673 . Observation of thirteen new exclusive multi-body hadronic decays of the psi(2S)
+684394 . First measurement of the tensor structure function b(1) of the deuteron
+685818 . Absolute branching fraction measurements of exclusive D0 semileptonic decays
+685819 . Absolute branching fraction measurements of exclusive D+ semileptonic decays
+686120 . Branching ratios and spectral functions of tau decays: Final ALEPH measurements and physics implications
+686510 . Dense-Medium Modifications to Jet-Induced Hadron Pair Distributions in Au+Au Collisions at s(NN)**(1/2) = 200-GeV
+687094 . Measurement of the cross section for open-beauty production in photon-photon collisions at LEP
+687095 . Measurement of the photon structure function F(2)**gamma with the L3 detector at LEP
+687100 . Determination of alpha(s) using jet rates at LEP with the OPAL detector
+687101 . Searches for gauge-mediated supersymmetry breaking topologies in e+ e- collisions at LEP2
+687618 . Measurement of transverse single-spin asymmetries for mid-rapidity production of neutral pions and charged hadrons in polarized p+p collisions at s**(1/2) = 200-GeV
+687622 . Measurement of the running of the electromagnetic coupling at large momentum-transfer at LEP
+688457 . J/psi production and nuclear effects for d+Au and p+p collisions at s(NN)**(1/2) = 200-GeV
+689416 X Observation of psi(3770) ---> pi pi J/psi and measurement of Gamma(ee) [psi(2S)]
+689727 . Search for rare and forbidden decays D+ ---> h+- e-+ e+
+689883 . Single electrons from heavy flavor decays in p+p collisions at s**(1/2) = 200-GeV
+690020 . Observation of the P(1)-1 state of charmonium
+690050 . Measurement of identified pi0 and inclusive photon v(2) and implication to the direct photon production in s(NN)**1/2 = 200-GeV Au+Au collisions
+690538 . First evidence and measurement of B(s)(*) anti-B(s)(*) production at the Upsilon(5S)
+691029 . Improved measurement of B (D+ ---> mu+ nu) and the pseudoscalar decay constant f(D+)
+691119 . Measurement of the mass and width of the $W$ boson
+691121 . Colour reconnection in e+ e- ---> W+ W- at s**(1/2) = 189-GeV - 209-GeV
+691576 . Precision electroweak measurements on the $Z$ resonance
+691720 . Decay of the psi(3770) to light hadrons
+692989 . First observation of psi(3770) ---> gamma chi(c1) ---> gamma gamma J/psi
+693136 . Transverse-momentum p(t) correlations on (eta, phi) from mean-p(t) fluctuations in Au-Au collisions at s(NN)**1/2 = 200-GeV
+693643 . Search for exclusive multi-body non-D anti-D decays at the psi(3770)
+693873 . Precision measurements of the timelike electromagnetic form-factors of pion, kaon, and proton
+694170 . Radiative decays of the upsilon(1S) to a pair of charged hadrons
+694429 . Jet structure from dihadron correlations in d+Au collisions at s(NN)**(1/2) = 200-GeV
+694482 . Production of Xi0(c) and Xi(b) in Z decays and lifetime measurement of X(b)
+694483 . Determination of heavy quark non-perturbative parameters from spectral moments in semileptonic B decays
+694484 . Charged particle multiplicity in three-jet events and two-gluon systems
+694773 . Double hadron leptoproduction in the nuclear medium
+694776 . Two photon width of chi(c2)
+694869 . Observation of B*(s) anti-B*(s) production at the upsilon(5S) resonance
+695305 . Nuclear modification of electron spectra and implications for heavy quark energy loss in Au+Au collisions at s(NN)**(1/2) - 200-GeV
+695404 . Directed flow in Au+Au collisions at s(NN)**(1/2) = 62-GeV
+696676 . Proton - lambda correlations in central Au+Au collisions at S(NN)**(1/2) = 200-GeV
+697074 . Experimental study of chi(b)(2P) ---> pi pi chi(b)(1P)
+697905 . Multiplicity and pseudorapidity distributions of charged particles and photons at forward pseudorapidity in Au + Au collisions at s(NN)**(1/2) = 62.4-GeV
+698663 . Measurement of the mass and the width of the $W$ boson at LEP
+698939 X Strangelet search at RHIC
+699296 . Radiative decays of the Upsilon(1S) to gamma pi0 pi0, gamma eta eta and gamma pi0 eta
+699726 . Measurement and interpretation of fermion-pair production at LEP energies above the Z resonance
+700760 . Measurement of Gamma(ee)(J/psi), Gamma(tot)(J/psi), and Gamma(ee)[psi(2S)]/Gamma(ee)(J/psi)
+700996 . Quarkonium production from d + Au to Au + Au collisions
+700998 . Open charm production from d + Au collisions in STAR
+700999 . Charm production in the STAR experiment at RHIC
+701000 . Heavy flavor production in PHENIX
+701003 . Recent high-p(T) results from STAR
+701004 . Differential probes of medium-induced energy loss
+701007 . Medium effects on high particle production measured with the PHENIX experiment
+701008 . Can phi mesons give an answer to the baryon puzzle at RHIC?
+701017 . Low mass dilepton production at RHIC energies
+701099 . Di-electron widths of the Upsilon(1S,2S,3S) resonances
+701217 . Measurement of the direct photon momentum spectrum in upsilon(1S), upsilon(2S), and upsilon(3S) decays
+701316 . New measurements of Cabibbo-suppressed decays of D mesons in CLEO-c
+702458 . Measurement of the Strong Coupling alpha(s) from four-jet observables in e+ e- annihilation
+704268 . Study of double-tagged gamma gamma events at LEP II
+704269 . Determination of the b quark mass at the M(Z) scale with the DELPHI detector at LEP
+704275 . Measurement of hadron and lepton-pair production in e+ e- collisions at s**(1/2) = 192-GeV to 208-GeV at LEP
+704823 . Evidence for an excess of soft photons in hadronic decays of Z0
+705123 . Single intermediate vector boson production in e+e- collisions at s**(1/2) = 183-GeV to 209-GeV
+705125 . Analysis of the pi+ pi- pi+ pi- and pi+ pi0 pi- pi0 final states in quasi-real two-photon collisions at LEP
+708627 X Experimental limits on weak annihilation contributions to B ---> u l nu decay
+709170 ! Identified hadron spectra at large transverse momentum in p+p and d+Au collisions at s(NN)**(1/2) = 200-GeV
+709321 . Common suppression pattern of eta and pi0 mesons at high transverse momentum in Au+Au collisions at S(NN)**(1/2) = 200-GeV
+709461 . First measurements of the exclusive decays of the upsilon(5S) to B meson final states and improved B*(S) mass measurement
+709575 . Measurements of identified particles at intermediate transverse momentum in the STAR experiment from Au + Au collisions at $\sqrt{s_{NN}}=200$ GeV
+709644 . Improved measurement of double helicity asymmetry in inclusive midrapidity pi0 production for polarized p+p collisions at s**(1/2) = 200-GeV
+709902 . A Determination of the centre-of-mass energy at LEP2 using radiative 2-fermion events
+710186 . Forward neutral pion production in p+p and d+Au collisions at s(NN)**(1/2) = 200-GeV
+710864 . Charmonium decays of Y(4260), psi(4160) and psi(4040)
+711130 . Search for neutral MSSM Higgs bosons at LEP
+711951 . Nuclear effects on hadron production in d = Au and p + p collisions at s(NN)**(1/2) = 200-GeV
+712068 . Measurement of interference between electromagnetic and strong amplitudes in psi(2S) decays to two pseudoscalar mesons
+712308 . Search for the non-D anti-D decay psi(3770) ---> K0(S) K0(L)
+712584 . Azimuthal angle correlations for rapidity separated hadron pairs in d + Au Collisions at s(NN)**(1/2) = 200-GeV
+713676 . QCD coherence and correlations of particles with restricted momenta in hadronic Z decays
+714248 . Deuteron and anti-deuteron production in e+ e- collisions at the Z resonance
+715094 ! Test of Colour Reconnection Models using Three-Jet Events in Hadronic Z Decays
+715095 X An Investigation of D+ ---> tau+ nu
+715096 X Absolute Branching Fraction Measurements for D+ and D0 Inclusive Semileptonic Decays
+715470 . Direct observation of dijets in central Au+Au collisions at s(NN)**(1/2) = 200-GeV
+715471 . Strange baryon resonance production in s(NN)**(1/2) = 200-GeV p+p and Au+Au collisions
+715982 . Measurement of the $W$ boson mass and width in $e^{+} e^{-}$ collisions at LEP
+716058 X The Solar flare of the 14th of July 2000 (L3+C detector results)
+716897 ! Jet properties from dihadron correlations in $p^+ p$ collisions at $\sqrt{s}$ = 200-GeV
+717029 . Observation of psi(3770) ---> gamma chi(c)0
+717202 . Search for Higgs bosons decaying to WW in e+ e- collisions at LEP
+717232 . The Energy dependence of $p_t$ angular correlations inferred from mean-p($t$) fluctuation scale dependence in heavy ion collisions at the SPS and RHIC
+717721 . The Beam-charge azimuthal asymmetry and deeply virtual compton scattering
+717744 . Evidence for a long-range component in the pion emission source in Au + Au collisions at s(NN)**(1/2) = 200-GeV
+718231 . Identified baryon and meson distributions at large transverse momenta from Au+Au collisions at s(NN)**(1/2) = 200-GeV
+718423 . Model independent measurement of form-factors in the decay D+ ---> K- pi+ e+ nu(e)
+718755 . Scaling Properties of Hyperon Production in Au+Au Collisions at s**(1/2) = 200-GeV
+719387 . Masses, Lifetimes and Production Rates of Xi- and anti-Xi+ at LEP 1
+719683 . Measurement of interfering K*+ K- and K*- K+ amplitudes in the decay D0 ---> K+ K- pi0
+719969 . The Multiplicity dependence of inclusive $p_t$ spectra from $p p$ collisions at $\sqrt{s}$ = 200-GeV
+720775 . Longitudinal Spin Transfer to the Lambda Hyperon in Semi-Inclusive Deep-Inelastic Scattering
+721060 . Delta phi Delta eta Correlations in Central Au+Au Collisions at s(NN)**(1/2) = 200-Gev
+721275 . Transverse momentum and centrality dependence of high-$p_T$ non-photonic electron suppression in Au+Au collisions at $\sqrt{s_{NN}} = 200$\,GeV
+721447 . First Observation of Upsilon(3S) ---> tau+ tau- and Tests of Lepton Universality in Upsilon Decays
+722306 . Study of Particle Production in Quark vs. Gluon Fragmentation at s**(1/2) ~ 10-GeV
+722308 . Measurement of Upper Limits for Upsilon ---> gamma + Resonance Decays
+722420 . Improved Measurement of the Branching Fraction and Energy Spectrum of eta-prime from Upsilon(1S) Decays
+722432 . Comparison of D ---> K0(L) pi and D ---> K0(S) pi decay rates
+722433 X Dalitz analysis of D+ ---> pi+ pi- pi+
+722435 . $\chi_{cJ}$ Decays to $h^+h^-h^0$
+722519 . Measurement of D(s)+ ---> mu+ nu and the decay constant f(D(s))
+722520 . Branching fraction for the doubly-Cabibbo-suppressed decay D+ ---> K+ pi0
+722523 . D0 anti-D0 Quantum Correlations, Mixing, and Strong Phases
+722524 . Measurement of Absolute Hadronic Branching Fractions of D(s) Mesons
+722525 . Measurement of B(Upsilon(5S) ---> B(*)(s) anti-B(*)(s)) Using phi Mesons
+722757 . Strange particle production in p+p collisions at s**(1/2) = 200-GeV
+723227 X A search for flaring very-high-energy cosmic gamma-ray sources with the L3+C muon spectrometer
+723366 . Neutral kaon interferometry in Au+Au collisions at s(NN)**(1/2) = 200-GeV
+723509 . Longitudinal double-spin asymmetry and cross section for inclusive jet production in polarized proton collisions at s**(1/2) = 200-GeV
+723948 . Scaling properties of azimuthal anisotropy in Au+Au and Cu+Cu collisions at s(NN) = 200-GeV
+725482 . Branching Fraction for the Doubly-Cabibbo-Suppressed Decay D+ ---> K+ pi0
+725484 . Measurement of high-p(T) single electrons from heavy-flavor decays in p+p collisions at s**(1/2) = 200-GeV
+726101 . Rapidity and species dependence of particle production at large transverse momentum for d+Au collisions at s(NN)**(1/2) = 200-GeV
+726259 . Measurement of direct photon production in p + p collisions at s**(1/2) = 200-GeV
+726260 . Measurement of Single Muons at Forward Rapidity in p+p Collisions at s**(1/2) = 200-GeV and Implications for Charm Production
+726689 . Precise determination of the spin structure function g(1) of the proton, deuteron and neutron
+727171 . Fermion pair production in $e^{+} e^{-}$ collisions at 189-209-GeV and constraints on physics beyond the standard model
+727262 . Study of inclusive strange-baryon production and search for pentaquarks in two-photon collisions at LEP
+728043 . Measurement of inclusive production of eta, eta-prime and phi mesons in D0, D+ and D(s)+ decays
+728678 . Study of Leading Hadrons in Gluon and Quark Fragmentation
+728679 . Improved Measurement of the Branching Fraction and Energy Spectrum of eta-prime from Upsilon(1S) Decays
+728872 . Measurement of B(Upsilon(5S) ---> B(*)(s) anti-B(*)(s)) Using phi Mesons
+729387 . Search for invisibly decaying Higgs bosons with large decay width using the OPAL detector at LEP
+729950 . Centrality dependence of pi0 and eta production at large transverse momentum in s(NN)**(1/2) = 200-GeV d+Au collisions
+731133 . High transverse momentum $\eta$ meson production in $p^+ p$, $d^+$ Au and Au+Au collisions at $S(NN) ^{(1/2)}$ = 200-GeV
+731134 . A Detailed Study of High-p(T) Neutral Pion Suppression and Azimuthal Anisotropy in Au+Au Collisions at s(NN)**(1/2) = 200-GeV
+731611 . $J/\psi$ production versus transverse momentum and rapidity in $p^+ p$ collisions at $\sqrt{s}$ = 200-GeV
+731612 . Confirmation of the Y(4260) resonance production in ISR
+731666 . Correlated Production of p and anti-p in Au+Au Collisions at s(NN)**(1/2) = 200-GeV
+731668 . Energy Loss and Flow of Heavy Quarks in Au+Au Collisions at s(NN)**(1/2) = 200-GeV
+731669 . System Size and Energy Dependence of Jet-Induced Hadron Pair Correlation Shapes in Cu+Cu and Au+Au Collisions at s(NN)**(1/2) = 200 and 62.4-GeV
+731670 . $J/\psi$ Production vs Centrality, Transverse Momentum, and Rapidity in Au+Au Collisions at $\sqrt{s_{NN}} = 200$ GeV
+732065 . $\chi_{cJ}$ Decays to $h^+h^-h^0$
+732097 . Production of omega mesons at Large Transverse Momenta in p + p and d + Au Collisions at s**(1/2)(NN) = 200-GeV
+733995 . Anti-deuteron production in Upsilon(nS) decays and the nearby continuum
+734955 . Inclusive production of charged hadrons in photon-photon collisions
+735405 . Search for Invisible Decays of the Upsilon(1S) Resonance
+735612 . Beam-Spin Asymmetries in the Azimuthal Distribution of Pion Electroproduction
+737605 . Search for a fourth generation $b^\prime$-quark at LEP-II at $\sqrt{s}$ = 196-GeV - 209-GeV
+737606 . Investigation of colour reconnection in WW events with the DELPHI detector at LEP-2
+741917 . Mass, quark-number, and $\sqrt{s_{NN}}$ dependence of the second and fourth flow harmonics in ultra-relativistic nucleus-nucleus collisions
+742120 . A Precision Determination of the D0 Mass
+742598 . Search for psi(2S) ---> eta(c) pi+ pi- pi0
+746166 . Charged particle distributions and nuclear modification at high rapidities in d + Au collisions at s(NN)**(1/2) = 200-GeV
+746499 . Elliptic flow for phi mesons and (anti)deuterons in Au + Au collisions at s(NN)**(1/2) = 200-GeV
+746872 . Partonic flow and phi-meson production in Au + Au collisions at s(NN)**(1/2) = 200-GeV
+747272 . A Study of Exclusive Charmless Semileptonic B Decay and |V(ub)|
+747273 . A Study of Exclusive Charmless Semileptonic B Decays and Extraction of $|V_{ub}|$ at CLEO
+747299 . Energy dependence of pi+-, p and anti-p transverse momentum spectra for Au+Au collisions at s(NN)**(1/2) = 62.4 and 200-GeV
+748511 . Measurement of $B(D_S^+) \to \ell^{+} \nu$ and the decay constant $f(D_S^+)$
+748517 . Measurement of the decay constant $f(D^+_S)$ using $D^+_{S} \to \ell^{+} \nu$
+749012 . Comparison of particle production in quark and gluon fragmentation at s**(1/2) ~ 10-GeV
+749015 . Measurement of upper limits for Upsilon ---> gamma + R decays
+749066 . Measurement of density correlations in pseudorapidity via charged particle multiplicity fluctuations in Au+Au collisions at s(NN)**(1/2) = 200-GeV
+749128 . Search for radiative decays of Upsilon(1S) into eta and eta-prime
+749182 . Transverse Polarization of Lambda and anti-Lambda Hyperons in Quasireal Photoproduction
+749249 . Hadronization in semi-inclusive deep-inelastic scattering on nuclei
+749394 . Inclusive cross-section and double helicity asymmetry for pi0 production in p + p collisions at s**(1/2) = 200-GeV: Implications for the polarized gluon distribution in the proton
+749464 . Study of resonance formation in the mass region 1400-MeV to 1500-MeV through the reaction gamma gamma ---> K0(S) K+- pi-+
+749602 . Dalitz plot analysis of the D+ ---> pi- pi+ pi+ decay
+750410 . Global polarization measurement in Au+Au collisions
+750816 . Enhanced strange baryon production in Au + Au collisions compared to p + p at s(NN)**(1/2) = 200-GeV
+751182 . Transverse momentum and centrality dependence of dihadron correlations in Au+Au collisions at s(NN) = 200-GeV: Jet-quenching and the response of partonic matter
+751692 . Evidence for the decay D0 --> K- pi+ pi- e+ nu(e)
+751885 . Measurement of transverse single-spin asymmetries for di-jet production in proton-proton collisions at s**(1/2) = 200-GeV
+752244 . Forward Lambda production and nuclear stopping power in d + Au collisions at s(NN)**(1/2) = 200-GeV
+753271 . Study of di-pion transitions among Upsilon(3S), Upsilon(2S), and Upsilon(1S) states
+753391 . Study of multi-muon bundles in cosmic ray showers detected with the DELPHI detector at LEP
+753394 . Z gamma* production in e+e- interactions at s**(1/2) = 183 - 209-GeV
+753526 . Study of triple-gauge-boson couplings ZZZ, ZZgamma and Zgamma gamma LEP
+753556 . Measurement of the Total Hadronic Cross Section in e+e- Annihilations below 10.56-GeV
+753658 . Enhancement of the dielectron continuum in s(NN)**(1/2) = 200-geV Au+Au collisions
+753710 . Measurement of the Cross Section for open b-Quark Production in Two-Photon Interactions at LEP
+754316 . Inclusive Jet Production in Photon-Photon Collisions at s(ee)**(1/2) from 189 to 209-GeV
+754622 . Cross-sections for hard exclusive electroproduction of pi+ mesons on a hydrogen target
+754788 . Search for invisibly decaying Higgs bosons in e+ e- ---> Z0 h0 production at s**(1/2) = 183-GeV - 209-GeV
+754804 X Search for Dirac magnetic monopoles in e+e- collisions with the OPAL detector at LEP2
+755533 . Measurement of Prominent eta Decay Branching Fractions
+755631 . Measurement of the eta-Meson Mass using psi(2S) ---> eta J/psi
+756352 . Dalitz plot analysis of the D+ ---> K- pi+ pi+ decay
+757240 . Suppressed Decays of D(s)+ Mesons to Two Pseudoscalar Mesons
+757421 . Search for Pentaquarks in the Hadronic Decays of the Z Boson with the DELPHI Detector at LEP
+757820 . Bose-Einstein study of position-momentum correlations of charged pions in hadronic Z0 decays
+757918 . Measurement of the e+ e- ---> W+ W- cross section and W decay branching fractions at LEP
+758544 . Centrality dependence of charged hadron production in deuteron + gold and nucleon + gold collisions at s(NN)**(1/2) = 200-GeV
+761696 . Measurement of absolute hadronic branching fractions of D mesons and e+ e- ---> D anti-D cross-sections at the psi(3770)
+763352 . Measurement of the Tau Lepton Polarisation at LEP2
+763822 . Longitudinal double-spin asymmetry for inclusive jet production in p+p collisions at s**(1/2) = 200-GeV
+767218 . Comparison of D ---> K0(S) pi and D ---> K0(L) pi Decay Rates
+768530 . Cold Nuclear Matter Effects on J/Psi as Constrained by Deuteron-Gold Measurements at s(NN)**(1/2) = 200-GeV
+769770 . A Study of the decays D0 ---> pi- e+ nu(e), D0 ---> K- e+ nu(e), D+ ---> pi0 e+ nu(e), and D+ ---> anti-K0 e+ nu(e)
+769777 . A Study of the semileptonic charm decays D0 --->pi- e+ nu(e), D+ ---> pi0 e+ nu(e), D0 ---> K- e+ nu(e), and D+ ---> anti-K0 e+ nu(e)
+769930 . Measurement of the absolute branching fraction of D(s)+ ---> tau+ nu(tau) decay
+770833 . Particle-species dependent modification of jet-induced correlations in Au+Au collisions at s(NN)**(1/2) = 200-GeV
+771169 . $\rho^0$ photoproduction in ultraperipheral relativistic heavy ion collisions at $\sqrt{s_{NN}}$ = 200 GeV
+771583 . Source breakup dynamics in Au+Au Collisions at s(NN)**(1/2) = 200-GeV via three-dimensional two-pion source imaging
+773136 X Higgs boson searches in CP-conserving and CP-violating MSSM scenarios with the DELPHI detector
+775920 . Observation of the Muon Inner Bremsstrahlung at LEP1
+775931 . Measurement of alpha(s) with Radiative Hadronic Events
+776512 . chi(c0) and chi(c2) Decays into eta eta, eta eta-prime, and eta-prime eta-prime Final States
+776624 . J/psi Production in s(NN)**(1/2) = 200-GeV Cu+Cu Collisions
+776722 . Hadronic resonance production in d+Au collisions at s(NN)**(1/2) = 200-GeV at RHIC
+776805 . Absolute Measurement of Hadronic Branching Fractions of the D(s)+ Meson
+777039 . Study of W boson polarisations and Triple Gauge boson Couplings in the reaction e+e- ---> W+W- at LEP 2
+777211 . Quantitative Constraints on the Opacity of Hot Partonic Matter from Semi-Inclusive Single High Transverse Momentum Pion Suppression in Au+Au collisions at s(NN)**(1/2) = 200-GeV
+777248 . Spin alignment measurements of the K*0(892) and phi (1020) vector mesons in heavy ion collisions at s(NN)**(1/2) = 200 GeV
+777766 . Forward Neutral Pion Transverse Single Spin Asymmetries in p+p Collisions at s**(1/2) = 200-GeV
+777917 . Measurement of Charm Production Cross Sections in e+e- Annihilation at Energies between 3.97 and 4.26-GeV
+777954 . Centrality dependence of charged hadron and strange hadron elliptic flow from s(NN)**(1/2) = 200-GeV Au + Au collisions
+778168 . Suppression pattern of neutral pions at high transverse momentum in Au + Au collisions at s(NN)**(1/2) = 200-GeV and constraints on medium transport coefficients
+778396 . Dihadron azimuthal correlations in Au+Au collisions at s(NN)**(1/2) = 200-GeV
+778403 . Onset of pi0 Suppression Studied in Cu+Cu Collisions at sNN=22.4, 62.4, and 200 GeV
+778611 . Dilepton mass spectra in p+p collisions at s**(1/2) = 200-GeV and the contribution from open charm
+779522 . Determination of the Strong Phase in $D^0 \to K^{+} \pi^{-}$ Using Quantum-Correlated Measurements
+779525 . Determination of the $D^0 \to K^{+} \pi^{-}$ Relative Strong Phase Using Quantum-Correlated Measurements in $e^{+} e^{-} \to D^0 D^0$ bar at CLEO
+779610 . Measurement of Azimuthal Asymmetries With Respect To Both Beam Charge and Transverse Target Polarization in Exclusive Electroproduction of Real Photons
+779705 . Measurement of exclusive D meson decays to eta and eta-prime final states and SU(3) amplitude analysis
+780363 . Dalitz plot analysis of the D+ ---> K- pi+ pi+ decay
+780368 . Observation of D+ ---> eta e+ nu(e)
+780807 . Absolute Branching Fractions of Cabibbo-Suppressed D ---> K anti-K Decays
+780910 . First Observation of the Decay D(s)+ ---> p anti-n
+781479 . Evidence for a Transverse Single-Spin Asymmetry in Leptoproduction of pi+pi- Pairs
+781550 . Measurement of the Mass and Width of the $W$ Boson in $e^{+} e^{-}$ Collisions at $\sqrt{s}$ = 161-GeV - 209-GeV
+781671 . Two-Photon Widths of the chi(cJ) States of Charmonium
+781770 . Measurement of Parton Distributions of Strange Quarks in the Nucleon from Charged-Kaon Production in Deep-Inelastic Scattering on the Deuteron
+784219 . Study of b-quark mass effects in multijet topologies with the DELPHI detector at LEP
+784417 . Enhanced production of direct photons in Au+Au collisions at $\sqrt{s_{NN}}=200$ GeV and implications for the initial temperature
+784516 . Branching Fractions for Transitions of psi(2S) to J/psi
+784900 . J/psi and psi(2S) Radiative Decays to eta(c)
+784947 . Charmed hadron production at low transverse momentum in Au+Au collisions at RHIC
+785050 . Indications of Conical Emission of Charged Hadrons at RHIC
+785509 . Charged hadron multiplicity fluctuations in Au+Au and Cu+Cu collisions from $\sqrt{s_{NN}}=22.5$ to 200 GeV
+786911 . Precision Measurement of the Mass of the h(c)(P-1(1)) State of Charmonium
+787103 . Inclusive Radiative J/psi Decays
+787194 . Charge Independent(CI) and Charge Dependent(CD) correlations as a function of Centrality formed from Delta phi imum Delta eta Charged Pair Correlations in Minimum Bias Au+Au Collisions at s(NN)**(1/2) = 200-GeV
+787282 . Observation of J/psi --> 3 gamma
+787608 . First Observation of Exclusive chi(cJ) Decays to Two Charged and Two Neutral Hadrons
+787786 . Measurement of exclusive baryon-antibaryon decays of chicJ mesons
+788072 . Precision Measurement of B(D+ ---> mu+ nu) and the Pseudoscalar Decay Constant f(D+)
+788313 . Measurement of the eta-prime-meson mass using J/psi ---> gamma eta-prime
+788648 . Observation of Upsilon(2S) ---> eta Upsilon(1S) and search for related transitions
+790315 . Search for Very Light CP-Odd Higgs Boson in Radiative Decays of Upsilon(S-1)
+790350 . System-size independence of directed flow at the Relativistic Heavy-Ion Collider
+790943 . Search for Lepton Flavor Violation in Upsilon Decays
+791177 . Beam-Energy and System-Size Dependence of Dynamical Net Charge Fluctuations
+791355 . Observation of chi(cJ) radiative decays to light vector mesons
+791378 . Inclusive chi(bJ)(nP) Decays to D0 X
+791716 . Search for CP Violation in the Dalitz-Plot Analysis of D+- ---> K+ K- pi+-
+792291 . Study of the solar anisotropy for cosmic ray primaries of about 200- GeV energy with the L3 + C muon detector
+792583 . Observation of chi(b)(1P(J),2P(J)) decays to light hadrons
+793126 . Systematic Measurements of Identified Particle Spectra in $p p, d^+$ Au and Au+Au Collisions from STAR
+795757 . Improved Measurement of Branching Fractions for pi pi Transitions among Upsilon(nS) States
+796677 . Observation of eta-prime decays to pi+ pi- pi0 and pi+ pi- e+ e-
+797805 . Measurements of phi meson production in relativistic heavy-ion collisions at RHIC
+798465 . The Polarized gluon contribution to the proton spin from the double helicity asymmetry in inclusive pi0 production in polarized p + p collisions at s**(1/2) = 200-GeV
+798469 . Inclusive cross section and double helicity asymmetry for pi^0 production in $p^+ p$ collisions at $\sqrt{s}=62.4$ GeV
+800237 . Study of D0 ---> pi- e+ nu(e), D+ ---> pi0 e+ nu(e) , D0 --> K- e+ nu(e), and D+ ---> anti-K0 e+ nu(e) in Tagged Decays of the psi(3770) Resonance
+800796 . Energy and system size dependence of phi meson production in Cu+Cu and Au+Au collisions
+801599 . New Measurement of Exclusive Decays of the chi(c0) and CHI(C2) to Two-Meson Final States
+803872 . Search for Charged Higgs Bosons in $e^+e^-$ Collisions at $\sqrt{s} = 189-209$ GeV
+804391 . Observation of Two-source Interference in the Photoproduction Reaction Au Au ---> Au Au rho0
+806241 . Di-jet production in gamma gamma collisions at LEP2
+807486 . A Study of b anti-b Production in e+e- Collisions at s**(1/2) = 130-GeV - 207-GeV
+807487 . Search for one large extra dimension with the DELPHI detector at LEP
+810392 . Spin Density Matrix Elements in Exclusive rho0 Electroproduction on H-1 and H-2 Targets at 27.5-GeV Beam Energy
+810426 . Measurement of D* Mesons in Jets from p+p Collisions at s**(1/2) = 200-GeV
+810624 . Improved Measurement of Absolute Branching Fraction of D(s)+ ---> tau+ nu(tau)
+810661 . Measurement of $B{D_s^+ \to \ell^+ \nu}$ and the Decay Constant $fD_s^+$ From 600 $/pb^{-1}$ of $e^\pm$ Annihilation Data Near 4170 MeV
+810902 . K/pi Fluctuations at Relativistic Energies
+814650 . Absolute Branching Fraction Measurements for Exclusive D(s) Semileptonic Decays
+814937 . Pion Interferometry in Au+Au and Cu+Cu Collisions at RHIC
+815075 . First model-independent determination of the relative strong phase between D0 and anti-D0 ---> K0(S) pi+ pi- and its impact on the CKM Angle gamma/phi(3) measurement
+815217 . Photoproduction of J/psi and of high mass e+e- in ultra-peripheral Au+Au collisions at s**(1/2) = 200-GeV
+815824 . Photon-Hadron Jet Correlations in p+p and Au+Au Collisions at s**(1/2) = 200-GeV
+816469 . Measurement of Bottom versus Charm as a Function of Transverse Momentum with Electron-Hadron Correlations in $p^+ p$ Collisions at $\sqrt{s}=200$ GeV
+816470 . Determination of the D0 ---> K- pi+ pi0 and D0 ---> K-pi+pi+pi- Coherence Factors and Average Strong-Phase Differences Using Quantum-Correlated Measurements
+816475 . Kaon interferometric probes of space-time evolution in Au+Au collisions at s(NN)**(1/2) = 200-GeV
+816486 . High-pT pi0 Production with Respect to the Reaction Plane in Au + Au Collisions at s(NN)**(1/2) = 200-GeV
+817120 . J/psi production at high transverse momentum in p+p and Cu+Cu collisions at s(NN)**1/2 = 200GeV
+817691 . System size dependence of associated yields in hadron-triggered jets
+819318 . Growth of Long Range Forward-Backward Multiplicity Correlations with Centrality in Au+Au Collisions at s(NN)**(1/2) = 200-GeV
+819672 . Systematic Studies of Elliptic Flow Measurements in Au+Au Collisions at s**(1/2) = 200-GeV
+822997 . Center of mass energy and system-size dependence of photon production at forward rapidity at RHIC
+823107 . Transverse momentum broadening of hadrons produced in semi-inclusive deep-inelastic scattering on nuclei
+823313 . Improved measurements of D meson semileptonic decays to pi and K mesons
+823754 . Observation of the Naive-T-odd Sivers Effect in Deep-Inelastic Scattering
+824279 . Exclusive rho0 electroproduction on transversely polarized protons
+824322 . Inclusive single-particle production in two-photon collisions at LEP II with the DELPHI detector
+824816 . Measurement of Z-pair production in e+ e- collisions and constraints on anomalous neutral gauge couplings
+825794 . Single-spin azimuthal asymmetry in exclusive electroproduction of pi+ mesons on transversely polarized protons
+825820 . Study of hadronic event shape in flavour tagged events in $e^+ e^-$ annihilation at < s**(1/2) > = 197-GeV
+825863 . Neutral Pion Production in Au+Au Collisions at s(NN)**(1/2) = 200-GeV
+827377 . Search for a Two-Photon Exchange Contribution to Inclusive Deep-Inelastic Scattering
+828084 . Correlations between Polarisation States of W Particles in the Reaction e- e+ ---> W- W+ at LEP2 Energies 189-GeV - 209-GeV
+830070 . Long range rapidity correlations and jet production in high energy nuclear collisions
+830245 . Yields and elliptic flow of d(anti-d) and He-3(anti-He-3) in Au + Au collisions at s(NN)**(1/2) = 200- GeV
+830676 . Observation of charge-dependent azimuthal correlations and possible local strong parity violation in heavy ion collisions
+830686 . Azimuthal Charged-Particle Correlations and Possible Local Strong Parity Violation
+831699 . Separation of contributions from deeply virtual Compton scattering and its interference with the Bethe-Heitler process in measurements on a hydrogen target
+831944 . Identified particle production, azimuthal anisotropy, and interferometry measurements in Au+Au collisions at s(NN)**(1/2) = 9.2- GeV
+833129 . Double-Helicity Dependence of Jet Properties from Dihadrons in Longitudinally Polarized $p+p$~Collisions at $\sqrt{s}$~=~200~GeV
+833375 . Search for psi(2S) ---> gamma eta(c) (2S) via fully reconstructed eta(c)(2S) decays
+833423 . Longitudinal Spin Transfer to Lambda and anti-Lambda Hyperons in Polarized Proton-Proton Collisions at s**(1/2) = 200-GeV
+835694 . Nuclear-mass dependence of azimuthal beam-helicity and beam-charge asymmetries in deeply virtual Compton scattering
+835697 . Measurement of azimuthal asymmetries associated with deeply virtual Compton scattering on an unpolarized deuterium target
+836952 . Longitudinal double-spin asymmetry and cross section for inclusive neutral pion production at midrapidity in polarized proton collisions at $\sqrt{s}=200$ GeV
+837075 . Spectra of identified high-$p_{T}$ $\pi^\pm$ and $p(\bar{p})$ in Cu$+$Cu collisions at $\sqrt{s_{NN}}=200$ GeV
+837083 . Sigma- - antihyperon correlations in Z(0) decay and investigation of the baryon production mechanism
+838580 . Detailed measurement of the $e^+ e^-$ pair continuum in $p+p$ and Au+Au collisions at $\sqrt{s_{NN}} = 200$ GeV and implications for direct photon production
+838875 . Observation of pi+ pi- pi+ pi- Photoproduction in Ultra-Peripheral Heavy Ion Collisions at STAR
+839470 . Studying Parton Energy Loss in Heavy-Ion Collisions via Direct-Photon and Charged-Particle Azimuthal Correlations
+839540 . Transverse momentum dependence of J/psi polarization at midrapidity in p+p collisions at s**(1/2) = 200-GeV
+840766 . Inclusive $\pi^0$, $\eta$, and direct photon production at high transverse momentum in $p+p$ and $d+$Au collisions at $\sqrt{s_{NN}}=200$ GeV
+840812 . Three-particle coincidence of the long range pseudorapidity correlation in high energy nucleus-nucleus collisions
 842959 . $\Upsilon$ cross section in $p+p$ collisions at $\sqrt(s) = 200$ GeV
-843256 . Search for CP violation in the decays $D^+_{(s)} \to K_S^0\pi^+$ and $D^+_{(s)} \to K_S^0K^+$
-843520 . Search for $B^0 \to K^{*0} \overline{K}{}^{*0}$, $B^0 \to K^{*0} K^{*0}$ and $B^0 \to K^+\pi^- K^{\mp}\pi^{\pm}$ Decays
 843985 . Charged and strange hadron elliptic flow in Cu+Cu collisions at $\sqrt{s_{NN}}$ = 62.4 and 200 GeV
-844129 . Scaled momentum spectra in deep inelastic scattering at HERA
-844288 . Observation of the $\chi_{c2}(2p)$ Meson in the Reaction $\gamma \gamma \to D \bar{D}$ at {BaBar}
-844299 . Inelastic Production of J/psi Mesons in Photoproduction and Deep Inelastic Scattering at HERA
 844983 . Longitudinal scaling property of the charge balance function in Au + Au collisions at 200 GeV
-845914 . Measurement of the gamma gamma* --> eta_c transition form factor
-846307 . Test of lepton universality in Upsilon(1S) decays at BaBar
-846499 . Limits on tau Lepton-Flavor Violating Decays in three charged leptons
-847330 . Observation of the Rare Decay B0 ---> K0(s)K+-pi-+
-847922 . Search for Lepton Flavor Violating tau- Decays into \ell-K0s and \ell-K0sK0s
+845169 . Trends in Yield and Azimuthal Shape Modification in Dihadron Correlations in Relativistic Heavy Ion Collisions
+845287 . Measurements of CP-conserving Trilinear Gauge Boson Couplings WWV (V = gamma,Z) in e+e- Collisions at LEP2
+846228 . Leading-Order Determination of the Gluon Polarization from high-p(T) Hadron Electroproduction
+846927 X Observation of a VHE cosmic-ray flare-signal with the L3+C muon spectrometer
+847547 X Search for neutral Higgs bosons decaying into four taus at LEP2
 848409 . Observation of an Antimatter Hypernucleus
-848650 . Search for leptonic decays of $D^0$ mesons
-848883 . Inclusive-jet cross sections in NC DIS at HERA and a comparison of the kT, anti-kT and SIScone jet algorithms
-849068 . Measurement of the Branching Fraction for $D^+_s\to\tau^{+}\nu_{\tau}$ and Extraction of the Decay Constant f_{D_s}
-849155 . Search for CP violation using $T$-odd correlations in $D^0 \to K^+ K^- \pi^+ \pi^-$ decays
-849165 . Evidence for direct CP violation in the decay B->D(*)K, D->KsPi+Pi- and measurement of the CKM phase phi3
-850301 . Observation of $B_s^0 -> D_s^{*-} \pi^+, B_s^0 - >D_s^{(*)-} \ rho^+$ Decays and Measurement of $B_s^0 -> D_s^{*-} \rho^+$ Polarization
-850435 . Measurement of Y(5S) decays to B^0 and B^+ mesons
-850492 . Observation of the $\Upsilon{1^3D_J}$ Bottomonium State through Decays to $\pi^+\pi^-\Upsilon{1S}$
-850804 . B-meson decays to $\eta^{\prime} \rho$, $\eta^{\prime} f_{0}$, and $\eta^{\prime} K^*$
+850211 . Elliptic and hexadecapole flow of charged hadrons in Au+Au collisions at $\sqrt{s_{NN}}=200$ GeV
+850490 . Exclusive Leptoproduction of Real Photons on a Longitudinally Polarised Hydrogen Target
 850950 . Pion femtoscopy in $p^+ p$ collisions at $\sqrt{s}=200$ GeV
+851373 . Study of the Dependence of Direct Soft Photon Production on the Jet Characteristics in Hadronic Z^0 Decays
 851937 . Azimuthal di-hadron correlations in d+Au and Au+Au collisions at $\sqrt{s_{NN}}=200$ GeV from STAR
-853279 . Measurement of D0-antiD0 mixing parameters using D0 ---> K(S)0 pi+ pi- and D0 ---> K(S)0 K+ K- decays
+852260 X Nuclear modification factors of $\phi$ mesons in $d+$Au, Cu+Cu and Au+Au collisions at sqrt(S_NN) =200 GeV
 853304 . Higher Moments of Net-proton Multiplicity Distributions at RHIC
-853759 . Search for B+ ---> D+K0 and B+ ---> D+K*0 decays
-854415 . Evidence for direct CP violation in the measurement of the Cabibbo-Kobayashi-Maskawa angle gamma with B-+ ---> D(*) K(*)-+ decays
-854539 . Search for a Low Mass Particle Decaying into mu^+ mu^- in B^0 -> K^{*0} X and B^0 -> rho^0 X at Belle
-855083 . Observation of the Rare Decay B^+ -> K^+ \pi^0 \pi^0
-855232 . Measurement of beauty production in DIS and $F_2^{b\bar{b}}$ extraction at ZEUS
-855306 . Study of $B \to \pi \ell \nu$ and $B \to \rho \ell \nu$ Decays and Determination of $|V_{ub}|$
+854475 . Heavy Quark Production in $p+p$ and Energy Loss and Flow of Heavy Quarks in Au+Au Collisions at $\sqrt{s_{NN}}=200$ GeV
+855102 . Measurement of neutral mesons in p+p collisions at $\sqrt(s)$= 200 GeV and scaling properties of hadron production
 855746 . Balance Functions from Au$+$Au, $d+$Au, and $p+p$ Collisions at $\sqrt{s_{NN}}$ = 200 GeV
-855748 . Observation of B+ -> Dbar*0 tau+ nu_tau and Evidence for B+ -> Dbar^0 tau+ nu_tau at Belle
-856113 . Study of $B \to X\gamma$ Decays and Determination of $|V_{td}/V_{ts}|$
-856587 . Evidence for the decay X(3872) ---> J/ psi omega
-857109 . Diffractive Dijet Photoproduction in ep Collisions at HERA
+856259 . Transverse momentum dependence of meson suppression $\eta$ suppression in Au+Au collisions at $\sqrt{s_{NN}}$ = 200 GeV
+857187 . High $p_T$ direct photon and $\pi^0$ triggered azimuthal jet correlations and measurement of $k_T$ for isolated direct photons in $p+p$ collisions at $sqrt{s}=200$ GeV
 857694 . $K^{*0}$ production in Cu+Cu and Au+Au collisions at $\sqrt{s_NN} = 62.4$ GeV and 200 GeV
-857959 . Correlated leading baryon-antibaryon production in $e^+e^- -> c\bar{c} -> \Lambda_c^+ \^-Lambda_c^- X$
-859147 . Search for b ---> u transitions in $B^- -> DK^- and D^*K^-$ Decays
-859160 . Evidence for $B^- -> \tau^- \bar{\nu}$ with a Semileptonic Tagging Method
-859723 . Search for $B_{s}^{0} -> hh$ Decays at the $\Upsilon(5S)$ Resonance
-860478 . Measurement of CP observables in $B^{+-} -> D_{CP} K^{+-}$ decays and constraints on the CKM angle $\gamma$
+858845 . Azimuthal anisotropy of neutral pion production in Au+Au collisions at $\sqrt(s_NN)$ = 200 GeV: Path-length dependence of jet quenching and the role of initial geometry
+859154 . Effects of transversity in deep-inelastic scattering by polarized protons
 860571 . Measurement of the Bottom contribution to non-photonic electron production in $p+p$ collisions at $\sqrt{s} $=200 GeV
-860780 . Observation of the decay $\bar{B}^0 -> \Lambda_c^+ \bar{p} pi^0$
-860842 . Measurement of $D^+$ and $\Lambda_{c}^{+}$ production in deep inelastic scattering at HERA
 861351 . An Experimental Exploration of the QCD Phase Diagram: The Search for the Critical Point and the Onset of De-confinement
-861716 . Search for $B^+$ meson decay to $a_1^+(1260)K^{*0}(892)$
-862141 . Search for f_J(2220) in radiative J/psi decays
-862241 . Measurement of CP violating asymmetries in $B^0 -> K^+K^- K^0_S$ decays with a time-dependent Dalitz approach
-862260 . Measurement of eta eta production in two-photon collisions
-862603 . Dalitz-plot Analysis of $B^0 -> \bar{D}^0 \pi^+ \pi^-$
-863104 . Search for Production of Invisible Final States in Single-Photon Decays of $\Upsilon(1S)$
-863111 . Measurements of Branching Fractions for $B^0 -> D_s^+\pi^-$ and $\bar{B}^0 -> D_s^+K^-$
-864027 . Exclusive Production of $D^+_s D^-_s$, $D^{*+}_s D^-_s$, and $D^{*+}_s D^{*-}_s$ via $e^+ e^-$ Annihilation with Initial-State-Radiation
-864107 . Evidence for $B^+ -> \tau^+ \nu_{\tau}$ decays using hadronic B tags
-865016 . Search for charmonium and charmonium-like states in $\Upsilon(1S)$ radiative decays
-865032 . Measurement of Charm and Beauty Jets in Deep Inelastic Scattering at HERA
-865394 . Search for $CP$ violating charge asymmetry in $B^{+-} -> J/\psi K^{+-} decays
 865572 . Scaling properties at freeze-out in relativistic heavy ion collisions
-865819 . Measurement of high-$Q^2$ charged current deep inelastic scattering cross sections with a longitudinally polarised positron beam at HERA
-866025 . Measurement of the Absolute Branching Fractions for $D^-_s\!\rightarrow\!\ell^-\bar{\nu}_{\ell}$ and Extraction of the Decay Constant $f_{D_s}$
-866608 . Search for CP violating charge asymmetry in $B^+ -> J/psi K^{+-} decays
+866047 . Measurement of azimuthal asymmetries associated with deeply virtual Compton scattering on a longitudinally polarized deuterium target
+866922 . Cross Section and Parity Violating Spin Asymmetries of $W^\pm$ Boson Production in Polarized $p+p$ Collisions at $\sqrt{s}=500$ GeV
 866968 . Measurement of the parity-violating longitudinal single-spin asymmetry for $W^{\pm}$ boson production in polarized proton-proton collisions at $\sqrt{s} = 500-GeV$
-867611 . Observation of new resonances decaying to $D\pi$ and $D^*\pi$ in inclusive $e^+e^-$ collisions near $\sqrt{s}=$10.58 GeV
-868017 . Search for the Rare Decay $B \to K \nu \bar{\nu}$
-871475 . Study of the $K^+ \pi^+ \pi^-$ Final State in $B^+ \to J/\psi K^+ \pi^+ \pi^-$ and $B^+ \to \psi-prime K^+ \pi^+ \pi^-$
+870912 . Event Structure and Double Helicity Asymmetry in Jet Production from Polarized $p+p$ Collisions at $\sqrt{s} = 200$~GeV
+870935 . Measurement of Transverse Single-Spin Asymmetries for $J/\psi$ Production in Polarized $p+p$ Collisions at $\sqrt{s} = 200$ GeV
+871225 . Cross section and double helicity asymmetry for $\eta$ mesons and their comparison to neutral pion production in p+p collisions at $sqrt(s)=200 GeV$
 871561 . Strange and Multi-strange Particle Production in Au+Au Collisions at $\sqrt{s_{NN}}$ = 62.4 GeV
-871959 . Measurement of the $B^0 \to \pi^\ell \ell^+ \nu$ and $B^+ \to \eta^{(')} \ell^+ \nu$ Branching Fractions, the $B^0 \to \pi^- \ell^+ \nu$ and $B^+ \to \eta \ell^+ \nu$ Form-Factor Shapes, and Determination of $|V_{ub}|$
+871818 . Cold Nuclear Matter Effects on $J/\psi$ Yields as a Function of Rapidity and Nuclear Geometry in Deuteron-Gold Collisions at $\sqrt{s_{NN}}=200$ GeV
 872067 . Measurements of Dihadron Correlations Relative to the Event Plane in Au+Au Collisions at $\sqrt{s_{NN}}=200$ GeV
-872494 . Search for the Decay $B^{0} \to \gamma \gamma$
-874639 . Measurement of the form factors of the decay B0 -> D*- ell+ nu and determination of the CKM matrix element |Vcb|
-875006 . Inclusive dijet cross sections in neutral current deep inelastic scattering at HERA
-875348 . Belle II Technical Design Report
-875888 . Measurement of the energy dependence of the total photon-proton cross section at HERA
-877816 . Measurement of the B ---> D-bar(*)D(*)K branching fractions
-877820 . Studies of tau- ---> eta K-nu and tau- ---> eta pi- nu(tau) at BaBar and a search for a second-class current
-878120 . Dalitz plot analysis of $D_s^+ \to K^+ K^- \pi^+$
-878228 . Measurement of $e^+e^-\to D_s^{(*)+} D_s^{(*)-}$ cross sections near threshold using initial-state radiation
-878656 . Search for Squarks in R-parity Violating Supersymmetry in ep Collisions at HERA
-878990 . Measurement of the decay $B^0\to\pi^-\ell^+\nu$ and determination of $|V_{ub}|$
-879997 . Analysis of the $D^+ \to K^- \pi^+ e^+ \nu_e$ decay channel
-881851 . Observation of the Decay $B^{-} \rightarrow D_{s}^{(*)+} K^{-} \ell^{-} \bar{\nu}_{\ell}$
-881876 . Measurements of branching fractions, polarizations, and direct CP-violation asymmetries in B+ -> rho0 K*+ and B+ -> f0(980)K*+ decays
-882140 . Measurement of partial branching fractions of inclusive charmless B meson decays to K+, K0, and pi+
-882470 . Measurement of the Inclusive e{\pm}p Scattering Cross Section at High Inelasticity y and of the Structure Function $F_L$
-883084 . Search for Lepton-Flavor-Violating tau Decays into a Lepton and a Vector Meson
-883260 . Search for CP violation in $\tau \to K^0_S \pi \nu_\tau$ decays at Belle
-883525 . Measurement of the $\gamma \gamma^* --> \eta$ and $\gamma \gamma* --> \eta'$ transition form factors
-883710 . Study of tau-pair production at HERA
-884579 . Search for CP Violation in the Decays $D^0\rightarrow K^0_S P^0$
-884735 . Measurement of beauty production in deep inelastic scattering at HERA using decays into electrons
-884880 . Searches for the baryon- and lepton-number violating decays $B^0\rightarrow\Lambda_c^+\ell^-$, $B^-\rightarrow\Lambda\ell^-$, and $B^-\rightarrow\bar{\Lambda}\ell^-$
-886797 . Study of the decays $B -> D_{s1}(2536)^+ \bar{D}^{(*)}$
-886818 . Measurements of time-dependent CP asymmetries in $B \to D^{*\mp} \pi^{\pm}$ decays using a partial reconstruction technique
-889524 . Observation of $B_s^0\to J/\psi f_0(980)$ and Evidence for $B_s^0\to J/\psi f_0(1370)$
+872172 . Suppression of away-side jet fragments with respect to the reaction plane in Au+Au collisions at $\sqrt{s_{NN}}=200$ GeV
+875728 . Azimuthal correlations of electrons from heavy-flavor decay with hadrons in $p^+ p$ and Au+Au collisions at $\sqrt{s_{NN}}=200$ GeV
+881636 . Ratios of Helicity Amplitudes for Exclusive rho-0 Electroproduction
+883680 X Determination of $alpha_s$ using OPAL hadronic event shapes at $\sqrt{s}=91$ - 209 GeV and resummed NNLO calculations
+886590 . Identified charged hadron production in $p+p$ collisions at $\sqrt{s}=200$ and 62.4 GeV
 889553 . Studies of di-jet survival and surface emission bias in Au+Au collisions via angular correlations with respect to back-to-back leading hadrons
 889563 . High $p_{T}$ non-photonic electron production in $p+p$ collisions at $\sqrt{s} = 200$ GeV
-890325 . Evidence for the $h_b(1P)$ meson in the decay $\Upsilon(3S) \to \pi^0 h_b(1P)$
-892421 . Measurement of the mass and width of the D(s1)(2536)+ meson
-892684 . Cross Sections for the Reactions e+e- --> K+ K- pi+pi-, K+ K- pi0pi0, and K+ K- K+ K- Measured Using Initial-State Radiation Events
-892990 . First observation of the $P$-wave spin-singlet bottomonium states $h_b(1P)$ and $h_b(2P)$
+890364 X Search for single top quark production via contact interactions at LEP2
+890503 ! A study of the b-quark fragmentation function with the DELPHI detector at LEP I and an averaged distribution obtained at the Z Pole
 893021 . Observation of the antimatter helium-4 nucleus
-893232 . Observation of $\eta_c(1S)$ and $\eta_c(2S)$ decays to $K^+ K^- \pi^+ \pi^- \pi^0$ in two-photon interactions
-894023 . Search for Lepton Flavour Violation at HERA
-894464 . Evidence for the Suppressed Decay B- -> DK-, D -> K+pi-
-895958 . Observation of transverse polarization asymmetries of charged pion pairs in $e^+e^-$ annihilation near $\sqrt{s}=10.58$ GeV
-897008 . Search for $b \to u$ Transitions in $B^\pm \to [K^\mp pi^\pm \pi^0]_D K^\pm$ Decays
-897416 . Study of radiative bottomonium transitions using converted photons
-897420 . Measurement of heavy-quark jet photoproduction at HERA
-897683 . First Observation of Radiative B^0 -> \phi K^0 \gamma Decays and Measurements of Their Time-Dependent CP Violation
-897836 . Observation of $X(3872)\to J/\psi \gamma$ and search for $X(3872)\to\psi'\gamma$ in B decays
-897848 . Amplitude Analysis of $B^0\to K^+ \pi^- \pi^0$ and Evidence of Direct CP Violation in $B\to K^* \pi$ decays
-898660 . Study of $B^{\pm}\to K^{\pm}(K_{S}K\pi)^0$ decay and determination of $\eta_c$ and $\eta_{c}(2S)$ parameters
-899013 . Search for CP violation in the decay $D^\pm \to K_S^0\pi^\pm$
-900947 . Search for CP violation using $T$-odd correlations in $D^+\rightarrow K^+K^0_S\pi^+\pi^-$ and $D_s^+\rightarrow K^+ K^0_S\pi^+\pi^-$ decays
-900997 . Study of di-pion bottomonium transitions and search for the $h_b(1P)$ state
-901433 . Measurements of branching fractions and CP asymmetries and studies of angular distributions for B ---> phi phi K decays
-912665 . Measurement of D^{*\pm} Meson Production and Determination of F_2^{ccbar} at low Q2 in Deep-Inelastic Scattering at HERA
+894309 . Inclusive Measurements of Inelastic Electron and Positron Scattering from Unpolarized Hydrogen and Deuterium Targets
+894560 . $J/\psi$ suppression at forward rapidity in Au+Au collisions at $\sqrt{s_{NN}}=200$ GeV
+899065 . Ground and excited charmonium state production in $p+p$ collisions at $\sqrt{s}=200$ GeV
+900308 . Production of $\omega$ mesons in $p+p$, d+Au, Cu+Cu, and Au+Au collisions at $\sqrt{s_NN}=200$ GeV
+900703 . Measurements of Higher-Order Flow Harmonics in Au+Au Collisions at $\sqrt{s_{NN}} = 200$ GeV
+900818 . Observation of direct-photon collective flow in $\sqrt{s_{NN}}=200$ GeV Au+Au collisions
+901059 . Test of the \boldmath{$\tau$}-Model of Bose-Einstein Correlations and Reconstruction of the Source Function in Hadronic Z-boson Decay at LEP
+901235 . Suppression of back-to-back hadron pairs at forward rapidity in $d+$Au Collisions at $\sqrt{s_{NN}}=200$ GeV
+913712 . Measurement of double-spin asymmetries associated with deeply virtual Compton scattering on a transversely polarized hydrogen target
 914546 . Evolution of the differential transverse momentum correlation function with centrality in Au$+$Au collisions at $\sqrt{s_{NN}} =$ 200 GeV
-916222 . Measurement of Photon Production in the Very Forward Direction in Deep-Inelastic Scattering at HERA
-916807 . Search for Lepton-number-violating $B^+ \to D^- l^+ l^{\prime +}$ Decays
-916845 . Observation of $D^+ \rightarrow K^{+} \eta^{(\prime)}$ and Search for CP Violation in $D^+ \rightarrow \pi^+ \eta^{(\prime)}$ Decays
-918292 . Search for Contact Interactions in e^{\pm}p Collisions at HERA
 918779 . Strangeness Enhancement in Cu+Cu and Au+Au Collisions at $\sqrt{s_{NN}} = 200$ GeV
-918972 . Measurement of the Diffractive Longitudinal Structure Function $F_L^D$ at HERA
-919140 . Search for first generation leptoquarks in  $ep$ collisions at HERA
-919582 . Searches for Rare or Forbidden Semileptonic Charm Decays
+918944 . Multidimensional Study of Hadronization in Nuclei
 919778 . $\rho^{0}$ Photoproduction in AuAu Collisions at $\sqrt{s_{NN}}$=62.4 GeV with STAR
-920989 . Branching Fraction Measurements of the Color-Suppressed Decays $\bar{B}^0 \to D^{(*)0} \pi^0$, $D^{(*)0} \eta$, $D^{(*)0} \omega$, and $D^{(*)0} \eta^\prime$ and Measurement of the Polarization in the Decay $\bar{B}^0 \to D^{*0} \omega$
-924163 . Observation of the baryonic $B$ decay $\bar{B}^0\to \Lambda_c^+ \bar{\Lambda} K^-$
-924239 . Search for hadronic decays of a light Higgs boson in the radiative decay $\Upsilon \to \gamma A^0$
-924618 . Observation of $B^- \to \bar{p} \Lambda D^0$ at Belle
-924711 . Search for charmonium and charmonium-like states in $\Upsilon(2S)$ radiative decays
-925713 . Study of $\Upsilon(3S,2S) -> \eta \Upsilon(1S)$ and $\Upsilon(3S,2S) -> \pi^+\pi^- \Upsilon(1S)$ hadronic trasitions
-926068 . Observation of the rare decay $B^+ -> K^+\pi^0\pi^0$ and measurement of the quasi-two body contributions $B^+ -> K^*(892)^+\pi^0$, $B^+ -> f_0(980)K^+$ and $B^+ -> \chi_{c0}K^+$
-926621 . Search for CP Violation in the Decay $\tau^- -> \pi^- K^0_S (>= 0 \pi^0) \nu_tau$
 927960 . Anomalous centrality evolution of two-particle angular correlations from Au-Au collisions at $\sqrt{s_{\rm NN}}$ = 62 and 200 GeV
 929522 . Directed and elliptic flow of charged particles in Cu+Cu collisions at $\sqrt{s_{NN}} =$ 22.4 GeV
-930416 . Search for CP Violation in $D^\pm$ Meson Decays to $\phi \pi^\pm$
 930463 . Identified hadron compositions in p+p and Au+Au collisions at high transverse momenta at $\sqrt{s_{_{NN}}} = 200$ GeV
-931212 . Evidence for Direct CP Violation in $B^\pm \to \eta h^\pm$ and Observation of $B^0 \to \eta K^0$
-939487 . Observation of two charged bottomonium-like resonances in Y(5S) decays
-942722 . A Measurement of the Semileptonic Branching Fraction of the B_s Meson
 943192 . System size and energy dependence of near-side di-hadron correlations
-943293 . Search for Bbar --> Lambda_c+ X l- nu_l Decays in Events With a Fully Reconstructed B Meson
-943722 . Search for the Decay $D^0 -> \gamma \gamma$ and Measurement of the Branching Fraction for $D^0 -> \pi^0 \pi^0$
-944155 . Measurement of Dijet Production in Diffractive Deep-Inelastic Scattering with a Leading Proton at HERA
-945298 . Measurement of the t dependence in exclusive photoproduction of $\Upsilon$(1S) mesons at HERA
-945935 . Scaled momentum distributions for $K^0_S$ and $\Lambda/\bar{\Lambda}$ in DIS at HERA
-945938 . Amplitude analysis and measurement of the time-dependent CP asymmetry of $B^0 \to K_S^0 K_S^0 K_S^0$ decays
-946107 . Search for single-top production in $ep$ collisions at HERA
-946655 . Measurement of the Azimuthal Correlation between the most Forward Jet and the Scattered Positron in Deep-Inelastic Scattering at HERA
-946659 . Observation and study of the baryonic B-meson decays B to D(*) p pbar (pi) (pi)
-946807 . Exclusive electroproduction of two pions at HERA
 955160 . Energy and system-size dependence of two- and four-particle $v_2$ measurements in heavy-ion collisions at RHIC and their implications on flow fluctuations and nonflow
-955166 . Search for the $Z_1(4050)^+$ and $Z_2(4250)^+$ states in $\bar B^0 \to \chi_{c1} K^- \pi^+$ and $B^+ \to \chi_{c1} K^0_S \pi^+$
-1079912 . Study of $\bar{B}\to X_u \ell \bar{\nu}$ decays in $B\bar{B}$ events tagged by a fully reconstructed B-meson decay and determination of $\|V_{ub}\|$
 1081120 . Measurement of the $W \to e \nu$ and $Z/\gamma^* \to e^+e^-$ Production Cross Sections at Mid-rapidity in Proton-Proton Collisions at $\sqrt{s}$ = 500 GeV
 1081744 . Directed Flow of Identified Particles in Au + Au Collisions at $\sqrt{s{_NN}} = 200$ GeV at RHIC
-1081760 . $B^0$ meson decays to $\rho^0 K^{*0}$, $f_0 K^{*0}$, and $\rho^-K^{*+}$, including higher $K^*$ resonances
-1084854 . Measurement of the CP-violation Parameter sin2$\phi_1$ with a New Tagging Method at the $\Upsilon(5S)$ Resonance
-1086164 . Initial-State Radiation Measurement of the $e^+e^- -> \pi^+\pi^-\pi^+\pi^-$ Cross Section
-1086537 . Study of CP violation in Dalitz-plot analyses of B0 ---> K+K-K0(S), B+ ---> K+K-K+, and B+ ---> K0(S)K0(S)K+
-1086982 . First observation of $B_s^0\to J/\psi\eta$ and $B_s^0\to J/\psi\eta'$
-1088220 . Search for Low-Mass Dark-Sector Higgs Bosons
-1089359 . Search for lepton-number violating processes in $B^+ \to h^- l^+ l^+$ decays
-1090664 . Observation of new resonant structures in $\gamma \gamma \to \omega \phi$, $\phi \phi$ and $\omega \omega$
-1092976 . Measurement of Inclusive and Dijet D* Meson Cross Sections in Photoproduction at HERA
-1094384 . Inclusive Measurement of Diffractive Deep-Inelastic Scattering at HERA
-1095371 . Evidence for CP Violation in the Decay $D^+\rightarrow K^0_S\pi^+$
-1095407 . Measurements of Branching Fractions and Time-dependent CP Violating Asymmetries in $B^{0} \to D^{(*)\pm}D^{\mp}$ Decays
+1082840 . Measurement of the virtual-photon asymmetry $A_2$ and the spin-structure function $g_2$ of the proton
+1089402 . Cross sections and double-helicity asymmetries of midrapidity inclusive charged hadrons in $p+p$ collisions at $\sqrt{s}=62.4$ GeV
+1093596 . Deviation from quark-number scaling of the anisotropy parameter $v_2$ of pions, kaons, and protons in Au+Au collisions at $\sqrt{s_{NN}} = 200$ GeV
+1093827 X The Herschel Multi-tiered Extragalactic Survey: HerMES
+1095241 . Beam-helicity and beam-charge asymmetries associated with deeply virtual Compton scattering on the unpolarised proton
+1102910 . Nuclear-Modification Factor for Open-Heavy-Flavor Production at Forward Rapidity in Cu+Cu Collisions at $\sqrt{s_{NN}}=200$ GeV
+1102930 . Transverse-Momentum Dependence of the $J/\psi$ Nuclear Modification in $d+$Au Collisions at $\sqrt{s_{NN}}=200$ GeV
+1107625 . Evolution of $\pi^0$ suppression in Au+Au collisions from $\sqrt{s_{NN}} = 39$ to 200 GeV
 1107765 . Di-electron spectrum at mid-rapidity in $p+p$ collisions at $\sqrt{s} = 200$ GeV
-1107905 . Study of the reaction $e^{+}e^{-} \to J/\psi\pi^{+}\pi^{-}$ via initial-state radiation at BaBar
-1111233 . Measurement of Branching Fractions and Rate Asymmetries in the Rare Decays $B \to K^{(*)} l^+ l^-$
+1111237 . Azimuthal distributions of charged hadrons, pions, and kaons produced in deep-inelastic scattering off unpolarized protons and deuterons
 1111571 . Measurements of $D^{0}$ and $D^{*}$ Production in $p+p$ Collisions at $\sqrt{s} = 200$ GeV
-1112901 . First Measurement of phi_3 with a Model-independent Dalitz Plot Analysis of B->DK, D->KsPiPi Decay
-1113314 . Search for the decay $B^0\to DK^{*0}$ followed by $D\to K^-\pi^+$
-1113755 . First observation of exclusive $\Upsilon(1S)$ and $\Upsilon(2S)$ decays into light hadrons
-1114155 . Precise Measurement of the $e^+ e^- \to \pi^+\pi^- (\gamma)$ Cross Section with the Initial-State Radiation Method at BABAR
-1114313 . Determination of the Integrated Luminosity at HERA using Elastic QED Compton Events
-1114316 . Measurement of Beauty and Charm Photoproduction using Semi-muonic Decays in Dijet Events at HERA
 1114529 . Longitudinal and transverse spin asymmetries for inclusive jet production at mid-rapidity in polarized $p+p$ collisions at $\sqrt{s}=200$ GeV
-1114749 . Measurement of $\gamma \gamma^* \to \pi^0$ transition form factor at Belle
-1115725 . Search for first-generation leptoquarks at HERA
-1115826 . Evidence for an excess of $\bar{B} \to D^{(*)} \tau^-\bar{\nu}_\tau$ decays
-1116254 . Measurement of Branching Fraction and First Evidence of CP Violation in $B^0 \to a_1^{\pm}(1260) \pi^\mp$ Decays
-1116258 . Inclusive-jet photoproduction at HERA and determination of alphas
-1116411 . Branching fraction measurement of $B^+ \to \omega \ell^+ \nu$ decays
-1116415 . Evidence for the $\eta_b(2S)$ and observation of $h_b(1P) \to \eta_b(1S) \gamma$ and $h_b(2P) \to \eta_b(1S) \gamma$
+1115828 . Direct-Photon Production in $p+p$ Collisions at $\sqrt{s}=200$ GeV at Midrapidity
+1116179 . Measurement of Direct Photons in Au+Au Collisions at $\sqrt{s_{NN}} = 200$ GeV
 1116643 . Transverse Single-Spin Asymmetry and Cross-Section for $\pi^0$ and $\eta$ Mesons at Large Feynman-$x$ in Polarized $p+p$ Collisions at $\sqrt{s}=200$ GeV
 1117881 . Single Spin Asymmetry $A_N$ in Polarized Proton-Proton Elastic Scattering at $\sqrt{s}=200$ GeV
-1117883 . Search for resonances decaying to $\eta_c \pi^+ \pi^-$ in two-photon interactions
-1117891 . Measurement of isolated photons accompanied by jets in deep inelastic $ep$ scattering
-1118043 . Improved Limits on $B^0$ Decays to Invisible Final States and to $\nu \bar{\nu} \gamma$
-1118428 . Measurement of CP Asymmetries and Branching Fractions in Charmless Two-Body $B$-Meson Decays to Pions and Kaons
-1118830 . Measurement of Beauty Photoproduction near Threshold using Di-electron Events with the H1 Detector at HERA
-1119057 . Search for $B \to \phi \pi$ decays
-1119397 . First study of $\eta_c$, $\eta(1760)$ and $X(1835)$ production via $\eta^\prime\pi^+\pi^-$ final states in two-photon collisions
-1119560 . Search for the decay modes $D^0 \to e^+e^-$, $D^0 \to \mu^+ \mu^-$, and $D^0 \to e \mu$
-1119563 . Search for Lepton-Flavor-Violating and Lepton-Number-Violating $\tau \to \ell h h^\prime$ Decay Modes
+1119568 . Beam-helicity asymmetry arising from deeply virtual Compton scattering measured with kinematically complete event reconstruction
 1119620 . Inclusive charged hadron elliptic flow in Au + Au collisions at $\sqrt{s_{NN}}$ = 7.7 - 39 GeV
-1120010 . Search for $B^{0}$ decays to invisible final states
-1120512 . Inclusive Deep Inelastic Scattering at High $Q^2$ with Longitudinally Polarised Lepton Beams at HERA
-1120999 . Evidence of $B^+ \to \tau^+\nu$ decays with hadronic B tags
-1122031 . Exclusive Measurements of $b \to s\gamma$ Transition Rate and Photon Energy Spectrum
-1122034 . Study of $X(3915) \to J/\psi \omega$ in two-photon collisions
-1122036 . Precision Measurement of the $B \to X_s \gamma$ Photon Energy Spectrum, Branching Fraction, and Direct CP Asymmetry $A_{CP}(B \to X_{s+d}\gamma)$
-1122970 . Evidence for a Zb0(10610) in Dalitz analysis of Y(5S) -> Y(nS) pi0 pi0
-1123363 . Combined inclusive diffractive cross sections measured with forward proton spectrometers in deep inelastic $ep$ scattering at HERA
-1123656 . First observation of CP violation and improved measurement of the branching fraction and polarization of B0 -> D*+ D*- decays
-1123662 . Measurement of B($B\to X_s \gamma$), the $B\to X_s \gamma$ photon energy spectrum, and the direct CP asymmetry in $B\to X_{s+d} \gamma$ decays
-1123792 . Observation of Time Reversal Violation in the $B^0$ Meson System
-1123910 . Evidence for $B^-\to D_s^+ K^- \ell^-\bar{\nu}_\ell$ and search for $B^-\to D_s^{*+} K^- \ell^-\bar{\nu}_\ell$
-1124584 . Precise measurement of the branching fractions for $B_s\to D_s^{(*)+} D_s^{(*)-}$ and first measurement of the $D_s^{*+} D_s^{*-}$ polarization using $e^+e^-$ collisions
-1125496 . A search for the decay modes $B^{+-} \to h^{+-} \tau^{+-}l$
-1125567 . The branching fraction of $\tau^- \to \pi^- K^0_S K^0_S (\pi^0) \nu_\tau$ decays
-1125973 . Branching fraction and form-factor shape measurements of exclusive charmless semileptonic B decays, and determination of $|V_{ub}|$
-1126127 . Measurement of the Time-Dependent CP Asymmetry of Partially Reconstructed $B^0\to D^{*+}D^{*-}$ Decays
+1126017 . Direct photon production in $d+$Au collisions at $\sqrt{s_{NN}}=200$ GeV
+1126162 . Cold-nuclear-matter effects on heavy-quark production in $d+$Au collisions at $\sqrt{s_{NN}}=200$ GeV
+1127261 . $J/\psi$ suppression at forward rapidity in Au+Au collisions at $\sqrt{s_{NN}}=39$ and 62.4 GeV
+1127262 . Neutral pion production with respect to centrality and reaction plane in Au$+$Au collisions at $\sqrt{s_{NN}}$=200 GeV
 1127499 . $J/\psi$ production at high transverse momenta in $p+p$ and Au+Au collisions at $\sqrt{s_{NN}} = 200$ GeV
-1127599 . Study of the baryonic $B$ decay $B^- \to \Sigma_c^{++} \bar{p} \pi^- \pi^-$
-1180018 . Production of the excited charm mesons $D_1$ and $D^*_2$ at HERA
-1180196 . Evidence for $B^- \to \tau^- \bar{\nu}_\tau$  with a Hadronic Tagging Method Using the Full Data Sample of Belle
-1183813 . Measurement of high-Q2 neutral current deep inelastic $e^+p$ scattering cross sections with a longitudinally polarized positron beam at HERA
-1185407 . Study of high-multiplicity 3-prong and 5-prong tau decays at BABAR
-1186384 . Measurement of $D^0-\bar{D}^0$ Mixing and CP Violation in Two-Body $D^0$ Decays
-1188677 . Study of Three-Body Y(10860) Decays
-1188886 . Search for di-muon decays of a low-mass Higgs boson in radiative decays of the Υ(1S)
-1189434 . Measurements of branching fractions and direct CP asymmetries for B→Kπ, B→ππ and B→KK decays
-1191900 . Production of $Z^0$ bosons in elastic and quasi-elastic $ep$ collisions at HERA
-1192035 . Search for a low-mass scalar Higgs boson decaying to a tau pair in single-photon decays of $\Upsilon(1S)$
-1193349 . Study of the hadronic transitions Υ(2S)→(η,π$^0$)Υ(1S) at Belle
-1198429 . Combination and QCD Analysis of Charm Production Cross Section Measurements in Deep-Inelastic ep Scattering at HERA
-1204444 . Study of the reaction $e^{+}e^{-}\to \psi(2S)\pi^{-}\pi^{-}$ via initial-state radiation at BaBar
-1204785 . Measurement of inelastic $J/\psi$ and $\psi^\prime$ photoproduction at HERA
+1185576 . Double Spin Asymmetry of Electrons from Heavy Flavor Decays in $p+p$ Collisions at $\sqrt{s}=200$ GeV
+1185577 . Inclusive cross section and single transverse spin asymmetry for very forward neutron production in polarized p+p collisions at s=200  GeV
+1203021 . $\upsilon(1S+2S+3S)$ production in $d+$Au and $p+p$ collisions at $\sqrt{s_{NN}}=200$ GeV and cold-nuclear matter effects
 1206352 . Experimental studies of di-jets in Au + Au collisions using angular correlations with respect to back-to-back leading hadrons
-1206605 . Search for direct CP violation in singly Cabibbo-suppressed D±→K+K-π± decays
-1207260 . Search for CP violation in the Decays $D^{\pm} \to K^0_{\scriptscriptstyle S} K^\pm$, $D_s^{\pm} \to K^0_{\scriptscriptstyle S} K^\pm$, and $D_s^{\pm}\to K^0_{\scriptscriptstyle S} \pi^\pm$
 1207322 . Measurement of $J/\psi$ Azimuthal Anisotropy in Au+Au Collisions at $\sqrt{s_{NN}}$ = 200 GeV
-1207589 . Study of $B^0 \to \rho^0 \rho^0$ decays, implications for the CKM angle $\phi_2$ and search for other B0 decay modes with a four-pion final state
-1208699 . Search for CP Violation in the Decay $D^+\rightarrow K^0_S K^+$
-1208997 . Measurement of the inclusive semileptonic branching fraction $\mathcal{B}(B_s^0 \to X^- \ell^+ \nu_{\ell})$ at Belle
-1209559 . Observation of direct CP violation in the measurement of the Cabibbo-Kobayashi-Maskawa angle gamma with $B^\pm\to D^{(*)}K^{(*)\pm}$ decays
-1209562 . Search for heavy neutrinos at Belle
+1207323 . Medium modification of jet fragmentation in Au + Au collisions at $\sqrt{s_{NN}}= 200$ GeV measured in direct photon-hadron correlations
+1208547 . Multiplicities of charged pions and kaons from semi-inclusive deep-inelastic scattering by the proton and the deuteron
 1210062 . Third Harmonic Flow of Charged Particles in Au+Au Collisions at sqrtsNN = 200 GeV
 1210463 . Observation of an Energy-Dependent Difference in Elliptic Flow between Particles and Antiparticles in Relativistic Heavy Ion Collisions
 1210464 . Elliptic flow of identified hadrons in Au+Au collisions at $\sqrt{s_{NN}}=$ 7.7-62.4 GeV
-1210649 . Time-Integrated Luminosity Recorded by the BABAR Detector at the PEP-II $e^+ e^-$ Collider
-1216515 . Precision Measurement of Charged Pion and Kaon Differential Cross Sections in e+e- Annihilation at s=10.52  GeV
+1216295 X Search for Charged Higgs bosons: Combined Results Using LEP Data
 1216565 . System-size dependence of transverse momentum correlations at $\sqrt{s_{NN}}=62.4$ and 200 GeV at the BNL Relativistic Heavy Ion Collider
-1217421 . Study of $e^+e^- \to p \bar{p}$ via initial-state radiation at BABAR
-1217425 . Study of the decay $\bar{B}^{0}\rightarrow\Lambda_{c}^{+}\bar{p}\pi^{+}\pi^{-}$ and its intermediate states
-1217553 . Measurement of the CP violation parameters in $B^0 \to \pi^+ \pi^-$ decays
-1217865 . Measurement of Charged Particle Spectra in Deep-Inelastic ep Scattering at HERA
 1219133 . Freeze-out dynamics via charged kaon femtoscopy in $\sqrt{{s}_{NN}}$ = 200 GeV central Au + Au collisions
+1219330 . Electroweak Measurements in Electron-Positron Collisions at W-Boson-Pair Energies at LEP
 1219828 . Fluctuations of charge separation  perpendicular to the event plane and local parity violation in $\sqrt{s_{NN}}=200$ GeV Au+Au  collisions at the BNL Relativistic Heavy Ion Collider
-1219953 . Search for an $H$-dibaryon with mass  near $2m_\Lambda$ in $\Upsilon(1S)$ and $\Upsilon(2S)$ decays
-1220382 . Measurement of $D^\pm$ production in deep inelastic $ep$ scattering with the ZEUS detector at HERA
 1221099 . Jet-Hadron Correlations in $\sqrt{s_{NN}} = 200$ GeV $p+p$ and Central $Au+Au$ Collisions
-1222328 . Measurement of an Excess of $\bar{B} \to D^{(*)}\tau^- \bar{\nu}_\tau$ Decays and Implications for Charged Higgs Bosons
 1222542 . Measurement of charge multiplicity asymmetry correlations in high-energy nucleus-nucleus collisions at $\sqrt{{s}_{NN}} =$ 200 GeV
-1223991 . Search for $B \to h^{(*)} \nu \bar{\nu}$ with the full Belle $\Upsilon(4S)$ data sample
-1225276 . Search for the rare decays $B → πℓ^+ℓ^-$ and $B^0 → ηℓ^+ℓ^-$
-1225526 . Measurement of $ D^{*\pm}$ production in deep inelastic scattering at HERA
-1225884 . Search for $B \to K^{(*)} \nu \overline \nu$ and invisible quarkonium decays
-1225975 . Study of $e^+e^- → π^+ π^- J/ψ$ and Observation of a Charged Charmoniumlike State at Belle
-1228201 . Measurement of CP-violating asymmetries in $B^0 \to (\rho \pi)^0$ decays using a time-dependent Dalitz plot analysis
-1228343 . Evidence of a new narrow resonance decaying to $\chi_{c1}\gamma$ in $B \to \chi_{c1} \gamma K$
-1228910 . Measurement of the $D^*(2010)^+$ natural line width and the $D^*(2010)^+ - D^0$ mass difference
-1228913 . Elastic and Proton-Dissociative Photoproduction of J/psi Mesons at HERA
-1229032 . Evidence for the decay $B^0 \to K^+K^-\pi^0$
-1229331 . Measurement of the $D*(2010)^+$ meson width and the $D*(2010)^+ - D^0$ mass difference
-1230342 . Evidence for $\bar{B}_s^0 \to \Lambda_c^+ \bar{\Lambda} \pi^-$
-1232210 . Search for $CP$ Violation in $B^0$-$\bar{B}^0$ Mixing using Partial Reconstruction of $B^0 \to D^{*-}X\ell^+ \nu_\ell$ and a Kaon Tag
-1233527 . The BABAR Detector: Upgrades, Operation and Performance
-1234230 . Study of the $K^+ K^-$ invariant-mass dependence of CP asymmetry in $B^+ \rightarrow K^+ K^- K^+$ decays
-1235533 . Measurement of exclusive $\Upsilon(1S)$ and $\Upsilon(2S)$ decays into Vector-Pseudoscalar final states
-1238273 . Study of Exclusive $B \to X_u \ell \nu$ Decays and Extraction of $\|V_{ub}\|$ using Full Reconstruction Tagging at the Belle Experiment
-1238276 . Production of charged pions, kaons, and protons in $e^+e^-$ annihilations into hadrons at $\sqrt{s}$=10.54  GeV
-1238601 . Evidence for semileptonic $B^- \to p\bar{p}l^-\bar{\nu}_l$ decays
-1238807 . Precision measurement of the $e^+e^- → K^+K^-(γ)$ cross section with the initial-state radiation method at BABAR
-1239346 . Measurement of charm fragmentation fractions in photoproduction at HERA
-1239347 . Experimental constraints on the spin and parity of the $Z$(4430)$^+$
-1239834 . First observation of Cabibbo-suppressed $\Xi_c^0$ decays
-1239960 . Search for Bottomonium States in Exclusive Radiative $\Upsilon(2S)$ Decays
-1243605 . Search for a light Higgs boson decaying to two gluons or $s\bar{s}$ in the radiative decays of $\Upsilon(1S)$
-1244125 . Measurement of the wrong-sign decay $D^0 \to K^+ \pi^-\pi^+ \pi^-$
-1244311 . Measurements of branching fractions of leptonic and hadronic $D_{s}^{+}$ meson decays and extraction of the $D_{s}^{+}$ meson decay constant
-1245023 . High-statistics study of $K^0_S$ pair production in two-photon collisions
-1246781 . Measurement of the Mass of the D0 Meson
-1247058 . Measurement of the $e^+e^- \to p\bar{p}$ cross section in the energy range from 3.0 to 6.5 GeV
-1247059 . Angular analysis of $B^0 \to \phi K^{*}$ decays and search for $CP$ violation at Belle
-1247460 . Measurement of the $B^+ \to \omega \ell^+ \nu$ branching fraction with semileptonically tagged B mesons
-1247463 . First observation of the $Z \frac{0}{b}$(10610) in a Dalitz analysis of $\Upsilon$(10860) $\to \Upsilon$(nS)$\pi^0 \pi^0$
-1252555 . Measurement of $e^+ e^- \to \omega \pi^0$, $K^{\ast}(892)\bar{K}$ and $K_2^{\ast}(1430)\bar{K}$ at $\sqrt{s}$ near 10.6 GeV
-1252560 . Measurement of the decays $B^0_s → J/ψϕ(1020), B^0_s → J/ψf_2′(1525)$ and $B^0_s → J/ψK^+K^-$ at Belle
+1222874 . Quadrupole Anisotropy in Dihadron Azimuthal Correlations in Central $d$$+$Au Collisions at $\sqrt{s_{_{NN}}}$=200 GeV
+1227971 . Spectra and ratios of identified particles in Au+Au and $d$+Au collisions at $\sqrt{s_{NN}}=200$ GeV
+1235307 . Nuclear Modification of $ψ′, χ_c$, and J/ψ Production in d+Au Collisions at $\sqrt{s_{NN}}$=200  GeV
 1253360 . Neutral pion cross section and spin asymmetries at intermediate pseudorapidity in polarized proton collisions at < math display="inline" > < mrow > < msqrt > < mrow > < mi > s < /mi > < /mrow > < /msqrt > < mo $\ge$ < /mo > < mn > 200 < /mn > < mtext >   < /mtext > < mtext >   < /mtext > < mi > GeV < /mi > < /mrow > < /math >
-1254862 . Measurement of Collins asymmetries in inclusive production of charged pion pairs in e^+e^- annihilation at BABAR
+1254476 . Azimuthal anisotropy of $\pi^0$ and $\eta$ mesons in Au + Au collisions at $\sqrt{{s}_{NN}} =$ 200 GeV
 1255072 . Energy Dependence of Moments of Net-proton Multiplicity Distributions at RHIC
-1257389 . Evidence for the suppressed decay $B^-$→$DK^-$, D→$K^+π^-π^0$
-1257984 . Measurement of branching fractions for B \to J/\psi \eta K decays and search for a narrow resonance in the J/\psi \eta final state
+1256626 . Cold-Nuclear-Matter Effects on Heavy-Quark Production at Forward and Backward Rapidity in d+Au Collisions at $\sqrt{s_{NN}}=200$  GeV
 1258446 . $J/\psi$ production at low $p_T$ in Au + Au and Cu + Cu collisions at $\sqrt{s_{NN}}=200$ GeV with the STAR detector
-1262705 . Search for lepton-number violating <math display="inline"><mrow><msup><mrow><mi>B</mi></mrow><mrow><mo>+</mo></mrow></msup><mo stretchy="false">→</mo><msup><mrow><mi>X</mi></mrow><mrow><mo>−</mo></mrow></msup><msup><mrow><mo>ℓ</mo></mrow><mrow><mo>+</mo></mrow></msup><msup><mrow><mo>ℓ</mo></mrow><mrow><mo>′</mo><mo>+</mo></mrow></msup></mrow></math> decays
-1262797 . Measurement of the $\tau$-lepton lifetime at Belle
+1261055 . Centrality categorization for R_{p(d)+A} in high-energy collisions
+1261274 . Transverse target single-spin asymmetry in inclusive electroproduction of charged pions and kaons
+1261275 . Beam-helicity asymmetry in associated electroproduction of real photons $ep \to e\gamma\pi N$ in the $\Delta$-resonance region
+1262739 . System-size dependence of open-heavy-flavor production in nucleus-nucleus collisions at $\sqrt{s_{_{NN}}}$=200 GeV
+1263517 . Heavy-flavor electron-muon correlations in $p$$+$$p$ and $d$+Au collisions at $\sqrt{s_{_{NN}}}$ = 200 GeV
 1263695 . J/ψ polarization in p+p collisions at  $\sqrt{s}$ = 200 GeV in STAR
-1264205 . Search for CP violation in $\tau \to K^0_S \pi \nu_\tau$ decays at Belle
-1266057 . Search for the process $e^+e^-\to J/\psi X(1835)$ at $\sqrt{s}\approx10.6$ GeV
-1266253 . Measurement of branching fractions and CP violation parameters in $B\to\omega K$ decays with first evidence of CP violation in $B^0 \to \omega K^0_S$
-1266952 . Evidence for the decay $B^0 \to \omega \omega$ and search for $B^0 \to \omega \phi$
-1267506 . Search for doubly charmed baryons and study of charmed strange baryons at Belle
-1267651 . Photoproduction of Isolated Photons, Inclusively and with a Jet, at HERA
+1268155 . Measurement of transverse-single-spin asymmetries for midrapidity and forward-rapidity production of hadrons in polarized p+p collisions at $\sqrt{s}=$200 and 62.4 GeV
 1269346 . Suppression of $\Upsilon$ production in d+Au and Au+Au collisions at $\sqrt{s_{NN}}$=200 GeV
-1269455 . Search for $B^0 \to p \overline {\Lambda} \pi^- \gamma$ at Belle
-1269458 . Measurement of neutral current e$\pm$p cross sections at high Bjorken x with the ZEUS detector
-1269731 . Measurement of inclusive $e p$ cross sections at high $Q^2$ at $\sqrt s =$ 225 and 252 GeV and of the longitudinal proton structure function $F_L$ at HERA
-1272843 . Measurement of the $B \to X_s l^+l^-$ branching fraction and search for direct CP violation from a sum of exclusive final states
-1273667 . Search for the decay $\bar{B}^0 \to \Lambda_c^+ \bar{p}p \bar{p}$
+1273625 . Transverse-energy distributions at midrapidity in p+p , d+Au , and Au+Au collisions at $\sqrt{s_{NN}}=62.4–200$ GeV and implications for particle-production models
+1275332 . Reevaluation of the parton distribution of strange quarks in the nucleon
 1275614 . Dielectron Mass Spectra from Au+Au Collisions at $\sqrt{s_{\rm NN}}$ = 200 GeV
-1275621 . Measurement of the Branching Fraction $\mathcal B(\Lambda_c^+ \to p K^- \pi^+)$
 1277069 . Beam-Energy Dependence of the Directed Flow of Protons, Antiprotons, and Pions in Au+Au Collisions
-1277238 . Observation of $D^0-\bar{D}^0$ Mixing in $e^+e^-$ Collisions
-1278588 . Evidence for the baryonic decay $\bar{B}^0 \to D^0\Lambda\bar{\Lambda}$
+1279634 . Azimuthal-angle dependence of charged-pion-interferometry measurements with respect to second- and third-order event planes in Au$+$Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
+1280344 X Concept for an Electron Ion Collider (EIC) detector built around the BaBar solenoid
 1280557 . Beam energy dependence of moments of the net-charge multiplicity distributions in Au+Au collisions at RHIC
 1280745 . Dielectron azimuthal anisotropy at mid-rapidity in Au + Au collisions at $\sqrt{s_{_{NN}}} = 200$ GeV
-1282136 . Measurements of Branching Fractions of $\tau$ Lepton Decays with one or more $K^{0}_{S}$
-1282602 . Updated cross section measurement of $e^+ e^- \to K^+ K^- J/\psi$ and $K_S^0K_S^0J/\psi$ via initial state radiation at Belle
-1283183 . Measurement of the lepton forward-backward asymmetry in $B \rightarrow X_s \ell^+ \ell^-$ decays with a sum of exclusive modes
-1283743 . Amplitude analysis of $e^+e^- \to \Upsilon(nS) \pi^+\pi^-$ at $\sqrt{s}=10.865$~GeV
-1286317 . Antideuteron production in $\Upsilon(nS)$ decays and in $e^+e^- \to q\bar{q}$ at $\sqrt{s} \approx 10.58$ GeV
+1282448 . Inclusive double-helicity asymmetries in neutral-pion and eta-meson production in $\vec{p}+\vec{p}$ collisions at $\sqrt{s}=200$ GeV
 1286656 . Beam-energy-dependent two-pion interferometry and the freeze-out eccentricity of pions measured in heavy ion collisions at the STAR detector
-1287632 . Dalitz plot analysis of $\eta_c \to K^+ K^- \eta$ and $\eta_c \to K^+ K^- \pi^0$ in two-photon interactions
-1287920 . Cross sections for the reactions $e^+ e^-\to K_S^0 K_L^0$, $K_S^0 K_L^0 \pi^+\pi^-$, $K_S^0 K_S^0 \pi^+\pi^-$, and $K_S^0 K_S^0 K^+K^-$ from events with initial-state radiation
-1288065 . Measurement of Feynman-$x$ Spectra of Photons and Neutrons in the Very Forward Direction in Deep-Inelastic Scattering at HERA
 1288534 . Event-plane-dependent dihadron correlations with harmonic $v_n$ subtraction in Au + Au collisions at $\sqrt{s_{NN}}=200$ GeV
-1288708 . Search for {CP} violation in $D^0 \to \pi^0 \pi^0$ decays
 1288917 . Beam-energy dependence of charge separation along the magnetic field in Au+Au collisions at RHIC
-1289224 . Measurement of $D^0-\bar{D}^0$ mixing and search for indirect CP violation using $D^0\to K_S^0\pi^+\pi^-$ decays
-1291549 . Measurements of the masses and widths of the $\Sigma_{c}(2455)^{0/++}$ and $\Sigma_{c}(2520)^{0/++}$ baryons
+1288921 . Nuclear matter effects on $J/\psi$ production in asymmetric Cu+Au collisions at $\sqrt{s_{_{NN}}}$ = 200 GeV
+1289084 . Measurement of $\Upsilon(1S+2S+3S)$ production in $p+p$ and Au$+$Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
+1291396 . Comparison of the space-time extent of the emission source in $d$$+$Au and Au$+$Au collisions at $\sqrt{s_{{NN}}}=200$ GeV
 1292132 . Observation of $D^0$ Meson Nuclear Modifications in Au+Au Collisions at $\sqrt{s_{NN}}=200$  GeV
-1292476 . Deep inelastic cross-section measurements at large y with the ZEUS detector at HERA
 1292792 . Measurement of longitudinal spin asymmetries for weak boson production in polarized proton-proton collisions at RHIC
-1297225 . Measurement of $D^{\ast}$ photoproduction at three different centre-of-mass energies at HERA
+1293053 . Measurement of long-range angular correlation and quadrupole anisotropy of pions and (anti)protons in central $d$$+$Au collisions at $\sqrt{s_{_{NN}}}$=200 GeV
+1296108 . Heavy-quark production and elliptic flow in Au$+$Au collisions at $\sqrt{s_{_{NN}}}=62.4$ GeV
+1296111 . Measurement of $K_S^0$ and $K^{*0}$ in $p+p$, $d+Au$, and $Cu+Cu$ collisions at $\sqrt{s_{_{NN}}}=200$ GeV
+1296308 . Centrality dependence of low-momentum direct-photon production in Au$+$Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
+1296835 . Low-mass vector-meson production at forward rapidity in $p$$+$$p$ collisions at $\sqrt{s}=200$ GeV
+1296859 . Cross section for $b\bar{b}$ production via dielectrons in d$+$Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
 1297229 . Precision Measurement of the Longitudinal Double-spin Asymmetry for Inclusive Jet Production in Polarized Proton Collisions at $\sqrt{s}=200$ GeV
 1298024 . Elliptic flow of electrons from heavy-flavor hadron decays in Au + Au collisions at $\sqrt{s_{\rm NN}} = $ 200, 62.4, and 39 GeV
-1298276 . Measurement of beauty and charm production in deep inelastic scattering at HERA and measurement of the beauty-quark mass
-1298390 . Further studies of the photoproduction of isolated photons with a jet at HERA
-1298980 . Measurements of direct CP asymmetries in $B→X_sγ$ decays using sum of exclusive decays
-1300153 . Search for a Dark Photon in $e^+e^-$ Collisions at BaBar
-1301218 . Measurement of multijet production in $ep$ collisions at high $Q^2$ and determination of the strong coupling $\alpha _s$
-1302816 . The Physics of the B Factories
-1302818 . Search for $B^+ \to e^+ \nu$ and $B^+ \to \mu^+ \nu$ decays using hadronic tagging
-1308513 . Study of $B^{\pm,0} \to J/\psi K^+ K^- K^{\pm,0}$ and search for $B^0 \to J/\psi\phi$ at BABAR
-1309588 . Observation of $e^+e^- \to \pi^+ \pi^- \pi^0 \chi_{bJ}$ and Search for $X_b \to \omega \Upsilon(1S)$ at $\sqrt{s}=10.867$  GeV
+1300355 . Transverse polarization of $\Lambda$ hyperons from quasireal photoproduction on nuclei
+1300542 . Cross section and transverse single-spin asymmetry of $\eta$ mesons in $p^{\uparrow}+p$ collisions at $\sqrt{s}=200$ GeV at forward rapidity
 1311513 . $\Lambda\Lambda$ Correlation Function in Au+Au collisions at $\sqrt{s_{NN}}=$ 200 GeV
 1311834 . Charged-to-neutral correlation at forward rapidity in Au+Au collisions at $\sqrt{s_{NN}}$=200 GeV
-1312368 . Measurement of Time-Dependent $CP$ Violation in $B^0\to \eta'K^0$ Decays
-1312621 . Observation of the decay $B^0 \to \eta' K^*(892)^0$
-1312626 . Observation of a new charged charmoniumlike state in $\bar{B}^0 → J/ψK^-π^+$ decays
+1312293 . Studies of QCD in e+ e- ---> hadrons at E(cm) = 130-GeV and 136-GeV
+1312299 . A Measurement of the $Z^{0}$ Invisible Width by Single-Photon Counting
+1312311 . Measurement of the $Z^0$ Mass and Width with the OPAL Detector at LEP
+1313438 . Measurement of the electron structure function F$\frac{e}{2}$ at LEP energies
+1313628 . Search for dark photons from neutral meson decays in $p + p$ and $d$ + Au collisions at $\sqrt{s_{NN}} =$ 200 GeV
+1315330 . Charged-pion cross sections and double-helicity asymmetries in polarized p+p collisions at $\sqrt{s}$=200  GeV
 1315466 . Isolation of Flow and Nonflow Correlations by Two- and Four-Particle Cumulant Measurements of Azimuthal Harmonics in $\sqrt{s_{_{\rm NN}}} =$ 200 GeV Au+Au Collisions
-1317648 . Study of Michel parameters in leptonic $\tau$ decays at Belle
-1317877 . Measurement of the branching fraction of $B^+ \to \tau^+ \nu_\tau$ decays with the semileptonic tagging method and the full Belle data sample
-1319178 . Evidence of $ϒ(1S) → J/ψ + χ_{c1}$ and search for double-charmonium production in ϒ(1S) and ϒ(2S) decays
-1322094 . Observation of the baryonic decay $\bar{B}^0 \to \Lambda^+_c \bar{p} K^- K^+$
+1321413 . Beam-energy and system-size dependence of the space-time extent of the pion emission source produced in heavy ion collisions
 1322126 . Di-hadron correlations with identified leading hadrons in 200 GeV Au + Au and d + Au collisions at STAR
-1322376 . Bottomonium spectroscopy and radiative transitions involving the $\chi_bJ(1P,2P)$ states at BABAR
 1322965 . Energy Dependence of $K/\pi$, $p/\pi$, and $K/p$ Fluctuations in Au+Au Collisions from $\rm \sqrt{s_{NN}}$ = 7.7 to 200 GeV
-1324785 . Measurement of $e^+e^- \to \pi^+\pi^-\psi(2S)$ via Initial State Radiation at Belle
-1326639 . Search for new $\pi^0$-like particles produced in association with a $\tau$-lepton pair
-1326640 . Study of $CP$ Asymmetry in $B^0-\bar B^0$ Mixing with Inclusive Dilepton Events
-1326905 . Measurement of $B^0 \to D_s^- K^0_S\pi^+$ and $B^+ \to D_s^- K^+K^+$ branching fractions
-1330289 . Measurement of the $\bar{B} \rightarrow X_s \gamma$ Branching Fraction with a Sum of Exclusive Decays
-1331399 . Search for $B_{s}^{0}\rightarrow\gamma\gamma$ and a measurement of the branching fraction for $B_{s}^{0}\rightarrow\phi\gamma$
-1332186 . Measurement of Dijet Production in Diffractive Deep-Inelastic ep Scattering at HERA
-1334693 . Measurement of the $D^0 \to \pi^- e^+ \nu_e$ differential decay branching fraction as a function of $q^2$ and study of form factor parameterizations
-1335269 . Dalitz plot analyses of $B^0 → D^−D^0K^+$ and $B^+ → \overline{D}^0D^0K^+$ decays
+1332239 . Measurement of the higher-order anisotropic flow coefficients for identified hadrons in Au$+$Au collisions at $\sqrt{s_{_{NN}}}$ = 200 GeV
+1332240 . Systematic Study of Azimuthal Anisotropy in Cu$+$Cu and Au$+$Au Collisions at $\sqrt{s_{_{NN}}} = 62.4$ and 200 GeV
+1335413 X Pentaquark $\Theta^+$ search at HERMES
 1335765 . Effect of event selection on jetlike correlation measurement in $d$+Au collisions at $\sqrt{s_{\rm{NN}}}=200$ GeV
-1336340 . Evidence for $CP$ violation in $B^{+} \to K^{*}(892)^{+} \pi^{0}$ from a Dalitz plot analysis of $B^{+} \to K^{0}_{\rm S} \pi^{+} \pi^{0}$ decays
-1336624 . Measurements of the $\Upsilon$(10860) and $\Upsilon$(11020) resonances via $\sigma(e^+e^-\to \Upsilon(nS)\pi^+ \pi^-)$
-1337783 . Measurement of the direct $CP$ asymmetry in $\bar{B}\rightarrow X_{s+d}\gamma$ decays with a lepton tag
 1340691 . Energy dependence of acceptance-corrected dielectron excess mass spectrum at mid-rapidity in Au$+$Au collisions at $\sqrt{s_{NN}} =$ 19.6  and 200 GeV
-1341041 . Search for B decays to final states with the η$_{c}$ meson
-1341290 . Observation of X(3872) in B→X(3872)Kπ decays
-1342448 . Search for the decay $B^+\rightarrow\overline{K}{}^{*0}K^{*+}$ at Belle
-1343110 . Diffractive Dijet Production with a Leading Proton in $ep$ Collisions at HERA
-1343322 . Measurement of the branching fractions of the radiative leptonic $\tau$ decays $\tau \to e\gamma\nu\bar{\nu}$ and $\tau \to \mu\gamma\nu\bar{\nu}$ at $B{\small A}B{\small AR}$
-1343511 . Search for Long-Lived Particles in $e^+e^-$ Collisions
-1345821 . Search for a light Higgs resonance in radiative decays of the Y(1S) with a charm tag
-1346514 . Measurement of the amplitude ratio of $B^0 \to D^0K^{*0}$ and $B^0 \to \bar{D^0}K^{*0}$ decays with a model-independent Dalitz plot analysis using $D\to K_S^0\pi^+\pi^-$ decays
+1341090 . An Upgrade Proposal from the PHENIX Collaboration
 1346551 . Long-range pseudorapidity dihadron correlations in $d$+Au collisions at $\sqrt{s_{\rm NN}}=200$ GeV
-1347265 . Search for $B^+ \to e^+ \nu$ and $B^+ \to \mu^+ \nu$ decays using hadronic tagging
 1352818 . The $\phi (1020)\rightarrow e^{+}e^{-}$ meson decay measured with the STAR experiment in Au+Au collisions at $\sqrt{s_{_{NN}}}$ = 200 GeV
-1353536 . Measurement of the branching fraction of B^+ -> tau^+ nu_tau decays with the semileptonic tagging method
-1353667 . Combination of differential D$^{∗\pm}$ cross-section measurements in deep-inelastic ep scattering at HERA
 1357596 . Observation of Transverse Spin-Dependent Azimuthal Correlations of Charged Pion Pairs in $p^\uparrow+p$ at $\sqrt{s}=200$ GeV
-1357984 . Evidence for the decay $B^{0} \to \eta \pi^0$
 1357992 . Measurements of Dielectron Production in Au$+$Au Collisions at $\sqrt{s_{\rm NN}}$ = 200 GeV from the STAR Experiment
-1358399 . Semi-inclusive studies of semileptonic $B_s$ decays at Belle
 1358666 . Observation of charge asymmetry dependence of pion elliptic flow and the possible chiral magnetic wave in heavy-ion collisions
-1358936 . Measurements of $B\rightarrow \bar{D} D_{s0} ^{*+}(2317)$ decay rates and a search for isospin partners of the $D_{s0}^{*+} (2317)$
-1364360 . Search for $B^+ → ℓ^+ν_ℓγ$ decays with hadronic tagging using the full Belle data sample
-1369998 . Study of $D^{**}$ production and light hadronic states in the $\bar{B}^0 \to D^{*+} \omega \pi^-$ decay
-1370440 . First Observation of CP Violation in $\overline{B}^0 \to D^{(*)}_{\rm CP} h^0$ Decays by a Combined Time-Dependent Analysis of BABAR and Belle Data
-1372086 . Production of exclusive dijets in diffractive deep inelastic scattering at HERA
+1362210 . Systematic study of charged-pion and kaon femtoscopy in Au + Au collisions at $\sqrt{s_{_{NN}}}$=200 GeV
+1365091 . Measurement of parity-violating spin asymmetries in W$^{\pm}$ production at midrapidity in longitudinally polarized $p$$+$$p$ collisions
+1369344 . Bose–Einstein correlations in hadron-pairs from lepto-production on nuclei ranging from hydrogen to xenon
 1373553 . Azimuthal anisotropy in U$+$U and Au$+$Au collisions at RHIC
-1373743 . Measurement of Azimuthal Modulations in the Cross-Section of Di-Pion Pairs in Di-Jet Production from Electron-Positron Annihilation
-1373909 . Search for mixing-induced CP violation using partial reconstruction of $\bar B^0 \to D^{*+} X\ell^- \bar \nu_{\ell}$ and kaon tagging
-1376480 . Measurement of $e^+e^- \to \gamma\chi_{cJ}$ via initial state radiation at Belle
-1377201 . Collins asymmetries in inclusive charged $KK$ and $K\pi$ pairs produced in $e^+e^-$ annihilation
-1377206 . Combination of measurements of inclusive deep inelastic ${e^{\pm }p}$ scattering cross sections and QCD analysis of HERA data
 1378002 . Probing parton dynamics of QCD matter with $\Omega$ and $\phi$ production
-1380446 . First observation of the hadronic transition $ \Upsilon(4S) \to \eta h_{b}(1P)$ and new measurement of the $h_b(1P)$ and $\eta_b(1S)$ parameters
-1382593 . Measurement of the branching ratio of $\bar{B} \to D^{(\ast)} \tau^- \bar{\nu}_\tau$ relative to $\bar{B} \to D^{(\ast)} \ell^- \bar{\nu}_\ell$ decays with hadronic tagging at Belle
+1378005 . Measurement of higher cumulants of net-charge multiplicity distributions in Au$+$Au collisions at $\sqrt{s_{_{NN}}}=7.7-200$ GeV
+1379995 . $\phi$ meson production in $d$$+$Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
 1382600 . Beam-energy dependence of charge balance functions from Au + Au collisions at energies available at the BNL Relativistic Heavy Ion Collider
-1383130 . Study of the $e^+e^-\to K^+K^-$ reaction in the energy range from 2.6 to 8.0 GeV
 1383879 . Centrality and transverse momentum dependence of elliptic flow of multistrange hadrons and $\phi$ meson in Au+Au collisions at $\sqrt{s_{NN}}$ = 200 GeV
+1384274 . Measurements of elliptic and triangular flow in high-multiplicity $^{3}$He$+$Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
 1385105 . Measurement of Interaction between Antiprotons
-1385752 . Observation of $\overline{B} \to D^{(*)} \pi^+\pi^- \ell^-\overline{\nu}$ decays in $e^+e^-$ collisions at the $\Upsilon(4S)$ resonance
-1387751 . Exclusive $\rho ^0$ meson photoproduction with a leading neutron at HERA
-1388182 . Measurement of initial-state–final-state radiation interference in the processes $e^+e^- → μ^+μ^-γ$ and $e^+e^- → π^+π^-γ$
-1389855 . Energy scan of the $e^+e^- \to h_b(nP)\pi^+\pi^-$ $(n=1,2)$ cross sections and evidence for $\Upsilon(11020)$ decays into charged bottomonium-like states
-1390112 . Study of $\pi^0$ pair production in single-tag two-photon collisions
-1391152 . Measurement of angular asymmetries in the decays $B \to K^*ℓ^+ℓ^-$
-1391505 . Inclusive cross sections for pairs of identified light charged hadrons and for single protons in $e^+e^-$ at $\sqrt{s}=$ 10.58 GeV
-1391645 . First model-independent Dalitz analysis of $B^0 \to DK^{*0}$, $D\to K_S^0\pi^+\pi^-$ decay
-1392799 . Observation of $B^{0} \rightarrow p\bar{\Lambda} D^{(*)-}$
-1394389 . Search for $B^0 \to \pi^- \tau^+ \nu_\tau$ with hadronic tagging at Belle
-1395100 . Measurement of $D^0 – \bar {D^0}$ mixing and search for CP violation in $D^0 \to K^+ K^−, \pi^+ \pi^−$ decays with the full Belle data set
+1393528 . Centrality-dependent modification of jet-production rates in deuteron-gold collisions at $\sqrt{s_{NN}}$=200 GeV
+1393529 . Single electron yields from semileptonic charm and bottom hadron decays in Au$+$Au collisions at $\sqrt{s_{NN}}=200$ GeV
+1393530 . Dielectron production in Au$+$Au collisions at $\sqrt{s_{NN}}$=200 GeV
+1393789 . Forward $J/\psi$ production in U$+$U collisions at $\sqrt{s_{NN}}$=193 GeV
+1394228 . $\phi$ meson production in the forward/backward rapidity region in Cu$+$Au collisions at $\sqrt{s_{NN}}=200$ GeV
+1394433 . Transverse energy production and charged-particle multiplicity at midrapidity in various systems from $\sqrt{s_{NN}}=7.7$ to 200 GeV
+1394434 . Scaling properties of fractional momentum loss of high-$p_T$ hadrons in nucleus-nucleus collisions at $\sqrt{s_{_{NN}}}$ from 62.4 GeV to 2.76 TeV
+1394895 . Azimuthally anisotropic emission of low-momentum direct photons in Au$+$Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
+1394897 . Measurements of directed, elliptic, and triangular flow in Cu$+$Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
 1395151 . Centrality dependence of identified particle elliptic flow in relativistic heavy ion collisions at $\sqrt{s_{NN}}$=7.7–62.4 GeV
-1396144 . Study of $\mathbf{B^{0}\rightarrow\rho^{+}\rho^{-}}$ decays and implications for the CKM angle $\mathbf{\phi_2}$
-1397632 . Measurement of the decay $B\to D\ell\nu_\ell$ in fully reconstructed events and determination of the Cabibbo-Kobayashi-Maskawa matrix element $|V_{cb}|$
-1403544 . Measurement of the I=1/2 $K \pi$ $\mathcal{S}$-wave amplitude from Dalitz plot analyses of $\eta_c \to K \bar K \pi$ in two-photon interactions
+1396712 . Inclusive cross section and double-helicity asymmetry for $\pi^{0}$ production at midrapidity in $p$$+$$p$ collisions at $\sqrt{s}=510$ GeV
 1405433 . Measurement of the transverse single-spin asymmetry in $p^\uparrow+p \to W^{\pm}/Z^0$ at RHIC
-1408515 . Observation of the decay $B_s^0\rightarrow K^0\overline{K}^0$
-1408873 . Inclusive and exclusive measurements of $B$ decays to $\chi_{c1}$ and $\chi_{c2}$ at Belle
-1408879 . Search for the rare decay $D^0\to\gamma\gamma$ at Belle
-1409292 . Time-dependent analysis of $B^0 \to {{K^0_{S}}} \pi^- \pi^+ \gamma$ decays and studies of the $K^+\pi^-\pi^+$ system in $B^+ \to K^+ \pi^- \pi^+ \gamma$ decays
-1411075 . First observation of the decay B$^0\to \psi$(2S)$\pi^0$
-1411218 . First Observation of Doubly Cabibbo-Suppressed Decay of a Charmed Baryon: $\Lambda^{+}_{c} \rightarrow p K^{+} \pi^{-}$
-1411223 . Observation of Zb(10610) and Zb(10650) Decaying to B Mesons
 1414638 . Beam Energy Dependence of the Third Harmonic of Azimuthal Correlations in Au+Au Collisions at RHIC
 1416992 . Measurement of elliptic flow of light nuclei at $\sqrt{s_{NN}}=$ 200, 62.4, 39, 27, 19.6, 11.5, and 7.7 GeV at the BNL Relativistic Heavy Ion Collider
 1420183 . $\rm{J}/\psi$ production at low transverse momentum in p+p and d+Au collisions at $\sqrt{s_{NN}}$ = 200 GeV
-1427025 . Observation of $D^0\to \rho^0\gamma$ and search for $CP$ violation in radiative charm decays
-1429661 . Search for QCD instanton-induced processes at HERA in the high- $\pmb {Q^2}$ domain
 1429700 . Near-side azimuthal and pseudorapidity correlations using neutral strange baryons and mesons in d+Au, Cu+Cu and Au+Au collisions at $\sqrt{s_{NN}}$ = 200 GeV
-1430903 . Search for the decay B0→ϕγ
-1431982 . Measurement of the branching ratio of $\bar{B}^0 \rightarrow D^{*+} \tau^- \bar{\nu}_{\tau}$ relative to $\bar{B}^0 \rightarrow D^{*+} \ell^- \bar{\nu}_{\ell}$ decays with a semileptonic tagging method
-1437948 . Combined QCD and electroweak analysis of HERA data
-1441203 . Measurement of the neutral $D$ meson mixing parameters in a time-dependent amplitude analysis of the $D^0\to\pi^+\pi^-\pi^0$ decay
 1442357 . Jet-like Correlations with Direct-Photon and Neutral-Pion Triggers at $\sqrt{s_{_{NN}}} = 200$ GeV
-1442358 . Limits on the effective quark radius from inclusive $ep$ scattering at HERA
-1444882 . Search for a narrow baryonic state decaying to ${pK^0_S}$ and ${\bar{p}K^0_S}$ in deep inelastic scattering at HERA
-1444981 . First observation of $\gamma \gamma \to p \bar{p} K^+ K^-$ and search for exotic baryons in $pK$ systems
-1446979 . Angular analysis of $B^0 \to K^\ast(892)^0 \ell^+ \ell^-$
-1454405 . Search for $XYZ$ states in $\Upsilon(1S)$ inclusive decays
-1459050 . Search for a massive invisible particle $X^0$ in $B^{+}\to e^{+}X^{0}$ and $B^{+}\to \mu^{+}X^{0}$ decays
-1459053 . Tests of CPT symmetry in $B^0-\overline{B}^0$ mixing and in $B^0 \to c\overline{c}K^0$ decays
-1466295 . Studies of charmed strange baryons in the $\Lambda$D final state at Belle
-1466440 . Search for $B^{+}\rightarrow K^{+} \tau^{+}\tau^{-}$ at the BaBar experiment
-1467448 . Study of \chi_{bJ}(1P) Properties in the Radiative \Upsilon(2S) Decays
-1469061 . Search for a muonic dark force at BABAR
+1467456 . Measurements of double-helicity asymmetries in inclusive $J/\psi$ production in longitudinally polarized $p+p$ collisions at $\sqrt{s}=510$ GeV
 1474129 . Direct virtual photon production in Au+Au collisions at $\sqrt{s_{NN}}$ = 200 GeV
-1477208 . Measurement of the CKM angle $\varphi_1$ in $B^0\to\bar{D}{}^{(*)0}h^0$, $\bar{D}{}^0\to K_S^0\pi^+\pi^-$ decays with time-dependent binned Dalitz plot analysis
-1477810 . Study of Excited $\Xi_c$ States Decaying into $\Xi_c^0$ and $\Xi_c^+$ Baryons
 1478040 . Energy dependence of $J/\psi$ production in Au+Au collisions at $\sqrt{s_{NN}} =$ 39, 62.4 and 200 GeV
-1478188 . Measurement of the branching ratio of $\bar{B}^0 \rightarrow D^{*+} \tau^- \bar{\nu}_{\tau}$ relative to $\bar{B}^0 \rightarrow D^{*+} \ell^- \bar{\nu}_{\ell}$ decays with a semileptonic tagging method
-1479946 . Measurement of the inclusive $B\to X_{s+d} \gamma$ branching fraction, photon energy spectrum and HQE parameters
 1481225 . Charge-dependent directed flow in Cu+Au collisions at $\sqrt{s_{_{NN}}}$ = 200 GeV
 1482939 . $\Upsilon$ production in U + U collisions at $\sqrt{{s}_{NN}}=$ 193 GeV measured with the STAR experiment
 1486427 . Dijet imbalance measurements in $Au+Au$ and $pp$ collisions at $\sqrt{s_{NN}} = 200$  GeV at STAR
-1487285 . Search for a dark vector gauge boson decaying to $\pi^+ \pi^-$ using $\eta \rightarrow \pi^+\pi^- \gamma$ decays
-1487722 . Measurement of the B^0 -> D^*- pi^+ pi^- pi^+ branching fraction
-1488276 . Measurement of Michel Parameters ($\bar\eta$, $\xi\kappa$) in the radiative leptonic decay of tau at Belle
+1486678 . Nonperturbative-transverse-momentum effects and evolution in dihadron and direct photon-hadron angular correlations in $p$$+$$p$ collisions at $\sqrt{s}$=510 GeV
+1487575 . Measurement of the relative yields of $\psi(2S)$ to $\psi(1S)$ mesons produced at forward and backward rapidity in $p$$+$$p$, $p$$+$Al, $p$$+$Au, and $^{3}$He$+$Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
 1493842 . Measurement of the cross section and longitudinal double-spin asymmetry for di-jet production in polarized $pp$ collisions at $\sqrt{s}$ = 200 GeV
-1496981 . Measurement of Jet Production Cross Sections in Deep-inelastic ep Scattering at HERA
-1498564 . Measurement of the inclusive electron spectrum from B meson decays and determination of |Vub|
-1499479 . Observation of Transverse $\Lambda/\bar{\Lambda}$ Hyperon Polarization in $e^+e^-$ Annihilation at Belle
-1499706 . Search for the $0^{--}$ Glueball in $\Upsilon(1S)$ and $\Upsilon(2S)$ decays
-1500691 . Search for $D^{0}$ decays to invisible final states at Belle
-1501479 . Measurement of the $\tau$ lepton polarization and $R(D^*)$ in the decay $\bar{B} \to D^* \tau^- \bar{\nu}_\tau$
-1504055 . Lepton-Flavor-Dependent Angular Analysis of $B\to K^\ast \ell^+\ell^-$
+1505176 . Angular decay coefficients of $J/\psi$ mesons at forward rapidity from $p+p$ collisions at $\sqrt{s}=510$ GeV
+1507891 . Measurements of $B \rightarrow J/\psi$ at forward rapidity in $p$+$p$ collisions at $\sqrt{s}=510$ GeV
 1510298 . Measurement of $D^0$ Azimuthal Anisotropy at Midrapidity in Au+Au Collisions at $\sqrt{s_{NN}}$=200  GeV
 1510300 . Harmonic decomposition of three-particle azimuthal correlations at RHIC
 1510301 . Constraining the initial conditions and temperature dependent transport with three-particle correlations in Au+Au collisions
 1510474 . Global $\Lambda$ hyperon polarization in nuclear collisions: evidence for the most vortical fluid
 1510593 . Bulk Properties of the Medium Produced in Relativistic Heavy-Ion Collisions from the Beam Energy Scan Program
-1511276 . Cross sections for the reactions $e^+ e^-\to K^0_S K^0_L\pi^0$, $K^0_S K^0_L\eta$, and $K^0_S K^0_L\pi^0\pi^0$ from events with initial-state radiation
 1512115 . Measurements of jet quenching with semi-inclusive hadron+jet distributions in Au+Au collisions at $\sqrt{s_{NN}}$ = 200 GeV
-1512299 . Precise determination of the CKM matrix element $\left| V_{cb}\right|$ with $\bar B^0 \to D^{*\,+} \, \ell^- \, \bar \nu_\ell$ decays with hadronic tagging at Belle
-1512302 . Dalitz plot analyses of $J/\psi \to \pi^+ \pi^- \pi^0$, $J/\psi \to K^+ K^- \pi^0$, and $J/\psi \to K^0_S K^{\pm} \pi^{\mp}$ produced via $e^+ e^-$ annihilation with initial-state radiation
-1512929 . Search for $\boldsymbol{B\to h\nu\bar{\nu}}$ decays with semileptonic tagging at Belle
-1513134 . Search for Invisible Decays of a Dark Photon Produced in ${e}^{+}{e}^{-}$ Collisions at BaBar
+1512140 . Measurements of $e^+e^-$ pairs from open heavy flavor in $p$+$p$ and $d$+$A$ collisions at $\sqrt{s_{NN}}=200$ GeV
+1512141 . $B$-meson production at forward and backward rapidity in $p+p$ and Cu + Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
 1515028 . Coherent diffractive photoproduction of ρ0 mesons on gold nuclei at 200 GeV/nucleon-pair at the Relativistic Heavy Ion Collider
-1517778 . First measurement of $\boldsymbol{T}$-odd moments in $\boldsymbol{D^{0} \rightarrow K_{S}^{0} \pi^{+} \pi^{-} \pi^{0}}$ decays
-1519830 . Measurement of $D^{*}$ production in diffractive deep inelastic scattering at HERA
-1520716 . Measurement of the decays $\boldsymbol{B\to\eta\ell\nu_\ell}$ and $\boldsymbol{B\to\eta^\prime\ell\nu_\ell}$ in fully reconstructed events at Belle
-1590028 . Observation of an alternative $\chi_{c0}(2P)$ candidate in $e^+ e^- \rightarrow J/\psi D \bar{D}$
-1591716 . Measurement of the $e^+e^-\to K^0_{\scriptscriptstyle S}K^\pm\pi^{\mp}\pi^0$ and $K^0_{\scriptscriptstyle S}K^\pm\pi^\mp\eta$ cross sections using initial-state radiation
-1596830 . The Silicon Vertex Detector of the Belle II Experiment
-1598261 . Measurement of the branching fraction and $CP$ asymmetry in $B^{0} \to \pi^{0}\pi^{0}$ decays, and an improved constraint on $\phi_{2}$
-1598461 . Measurement of branching fraction and direct $CP$ asymmetry in charmless $B^+ \to K^+K^- \pi^+$ decays at Belle
-1601508 . Studies of the diffractive photoproduction of isolated photons at HERA
-1606201 . Production cross sections of hyperons and charmed baryons from $e^+e^-$ annihilation near $\sqrt{s} = 10.52$~GeV
-1607562 . Invariant-mass and fractional-energy dependence of inclusive production of di-hadrons in $e^+e^-$ annihilation at $\sqrt{s}=$ 10.58 GeV
-1608380 . Search for $\Lambda_c^+\to\phi p \pi^0$ and branching fraction measurement of $\Lambda_c^+\to K^-\pi^+ p \pi^0$
-1608384 . Evidence for Isospin Violation and Measurement of $CP$ Asymmetries in $B \to K^{\ast}(892) \gamma$
+1519828 . Cross section and transverse single-spin asymmetry of muons from open heavy-flavor decays in polarized $p$+$p$ collisions at $\sqrt{s}=200$ GeV
+1520869 . Nuclear Dependence of the Transverse-Single-Spin Asymmetry for Forward Neutron Production in Polarized $p+A$ Collisions at $\sqrt{{s}_{NN}}=200\text{ }\text{ }\mathrm{GeV}$
 1609067 . Beam Energy Dependence of Jet-Quenching Effects in Au+Au Collisions at $\sqrt{s_{_{ \mathrm{NN}}}}$ = 7.7, 11.5, 14.5, 19.6, 27, 39, and 62.4 GeV
-1610301 . Study of $\eta$ and dipion transitions in $\Upsilon(4S)$ decays to lower bottomonia
-1613517 . Angular analysis of the $e^+ e^- \to D^{(*) \pm} D^{* \mp}$ process near the open charm threshold using initial-state radiation
-1613519 . Measurement of the ${D}^{*}(2010{)}^{+}\text{-}{D}^{+}$ Mass Difference
-1615382 . The Belle II SVD detector
-1615383 . The Monitoring System of the Belle II Vertex Detector
-1615384 . Performance studies of the Belle II Silicon Vertex Detector with data taken at the DESY test beam in April 2016
-1615385 . The Software Framework of the Belle II Silicon Vertex Detector and its Development for the 2016 Test-Beam at DESY
+1610655 . Measurements of Multiparticle Correlations in $d+\mathrm{Au}$ Collisions at 200, 62.4, 39, and 19.6 GeV and $p+\mathrm{Au}$ Collisions at 200 GeV and Implications for Collective Behavior
+1618141 . Measurements of azimuthal anisotropy and charged-particle multiplicity in $d$$+$Au collisions at $\sqrt{s_{_{NN}}}=$200, 62.4, 39, and 19.6 GeV
 1618345 . Azimuthal transverse single-spin asymmetries of inclusive jets and charged pions within jets from polarized-proton collisions at $\sqrt{s} = 500$ GeV
 1618747 . Beam-Energy Dependence of Directed Flow of $\Lambda$, $\bar{\Lambda}$, $K^\pm$, $K^0_s$ and $\phi$ in Au+Au Collisions
-1621272 . Measurement of the $\tau$ lepton polarization and $R(D^*)$ in the decay $\bar{B} \rightarrow D^* \tau^- \bar{\nu}_\tau$ with one-prong hadronic $\tau$ decays at Belle
 1621460 . Collision Energy Dependence of Moments of Net-Kaon Multiplicity Distributions at RHIC
-1621593 . Measurement of the ${e}^{+}{e}^{{-}}{\rightarrow}{{\pi}}^{+}{{\pi}}^{{-}}{{\pi}}^{0}{{\pi}}^{0}$ cross section using initial-state radiation at BABAR
-1624416 . Measurements of the absolute branching fractions of $B^{+} \to X_{c\bar{c}} K^{+}$ and $B^{+} \to \bar{D}^{(\ast) 0} \pi^{+} $ at Belle
-1624691 . Determination of the strong coupling constant $\alpha_s(m_Z)$ in next-to-next-to-leading order QCD using H1 jet cross section measurements
-1625743 . Measurement of the tau Michel parameters $\bar{\eta}$ and $\xi\kappa$ in the radiative leptonic decay $\tau^- \rightarrow \ell^- \nu_{\tau} \bar{\nu}_{\ell}\gamma$
+1624209 . Lévy-stable two-pion Bose-Einstein correlations in $\sqrt{s_{NN}}=200$ GeV Au$+$Au collisions
 1628155 . Measurement of the $^3_{\Lambda}$H lifetime in Au+Au collisions at the BNL Relativistic Heavy Ion Collider
+1628651 . Measurement of $\phi$-meson production at forward rapidity in $p+p$ collisions at $\sqrt{s}=510\text{ }\text{ }\mathrm{GeV}$ and its energy dependence from $\sqrt{s}=200\text{ }\text{ }\mathrm{GeV}$ to 7 TeV
 1630825 . Multi-messenger Observations of a Binary Neutron Star Merger
+1632759 . Measurements of mass-dependent azimuthal anisotropy in central $p$$+$Au, $d$$+$Au, and $^3$He$+$Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
 1632938 . Transverse spin-dependent azimuthal correlations of charged pion pairs measured in p$^\uparrow$+p collisions at $\sqrt{s}$ = 500 GeV
-1634603 . Search for light tetraquark states in $\Upsilon(1S)$ and $\Upsilon(2S)$ decays
-1637368 . Observation of Excited $\Omega_c$ Charmed Baryons in $e^+e^-$ Collisions
-1640639 . Search for $CP$ violation in the $D^{+}\to\pi^{+}\pi^{0}$ decay at Belle
-1641071 . Measurement of branching fractions of hadronic decays of the $\Omega_c^0$  baryon
+1638373 . Measurement of emission angle anisotropy via long-range angular correlations with high $p_T$ hadrons in $d$$+$Au and $p$$+$$p$ collisions at $\sqrt{s_{_{NN}}}=200$ GeV
 1641113 . Azimuthal anisotropy in Cu$+$Au collisions at $\sqrt{s_{_{NN}}}$ = 200 GeV
-1641263 . Study of $K^0_S$ pair production in single-tag two-photon collisions
-1642436 . Observation of $\Xi_{c}(2930)^0$ and updated measurement of $B^{-} \to K^{-} \Lambda_{c}^{+} \bar{\Lambda}_{c}^{-}$ at Belle
-1642727 . Search for $B^{-}\to\mu^{-}\bar\nu_\mu$ Decays at the Belle Experiment
-1642730 . Further studies of isolated photon production with a jet in deep inelastic scattering at HERA
-1647139 . Study of the process $e^+e^- \to \pi^+\pi^-\eta $ using initial state radiation
-1649636 . Measurement of the cross-section ratio sigma_{psi(2S)}/sigma_{J/psi(1S)} in deep inelastic exclusive ep scattering at HERA
-1654571 . Measurement of the Decays $\Lambda_c\to \Sigma\pi\pi$ at Belle
-1659108 . Inclusive study of bottomonium production in association with an $\eta $ meson in $e^+e^-$ annihilations near $\varUpsilon (5S)$
+1649168 . First Evidence and Measurement of $B_s^{(*)} barB_s^{(*)}$ Production at the $\Upsilon(5S)$
+1649622 . A Search for $\eta'_c$ Production in Photon-Photon Fusion at LEP
+1650066 . Measurement of $\sigma(e^+e^- \to \psi(3770) \to hadrons)$ at $E_{c.m.}$ = 3773 MeV
+1658594 . Measurement of two-particle correlations with respect to second- and third-order event planes in Au$+$Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
+1659845 . Search for Supersymmetry with R-parity violating decays via  \lambda  couplings at  sqrt(s)  = 183 GeV
 1662057 . Correlation Measurements Between Flow Harmonics in Au+Au Collisions at RHIC
-1663226 . Measurement of the branching fraction of $B \rightarrow D^{(*)}\pi \ell\nu$ at Belle using hadronic tagging in fully reconstructed events
-1663447 . Measurement of time-dependent $CP$ asymmetries in $B^{0}\to K_S^0 \eta \gamma$ decays
-1664541 . Observation of $\Upsilon(4S)\to \eta' \Upsilon(1S)$
-1664542 . Search for the decay mode $B^0\rightarrow p p \bar{p} \bar{p}$
-1665080 . Electronics and Firmware of the Belle II Silicon Vertex Detector Readout System
-1665693 . Combination and QCD analysis of charm and beauty production cross-section measurements in deep inelastic $ep$ scattering at HERA
-1667191 . Study of $\Upsilon(1S)$ radiative decays to $\gamma \pi^+ \pi^-$ and $\gamma K^+ K^-$
-1668122 . First evidence for $\cos 2\beta>0$ and resolution of the CKM Unitarity Triangle ambiguity by a time-dependent Dalitz plot analysis of $B^{0} \to D^{(*)} h^{0}$ with $D \to K_{S}^{0} \pi^{+} \pi^{-}$ decays
-1668123 . Measurement of $\cos{2\beta}$ in $B^{0} \to D^{(*)} h^{0}$ with $D \to K_{S}^{0} \pi^{+} \pi^{-}$ decays by a combined time-dependent Dalitz plot analysis of BaBar and Belle data
+1667398 . Cross section and longitudinal single-spin asymmetry $A_L$ for forward $W^{\pm}\rightarrow\mu^{\pm}\nu$ production in polarized $p$$+$$p$ collisions at $\sqrt{s}=510$ GeV
 1669807 . Beam energy dependence of rapidity-even dipolar flow in Au+Au collisions
-1672018 . Search for $\Upsilon(1S,2S) \to Z^{+}_{c}Z^{(\prime) -}_{c}$ and $e^{+}e^{-} \to Z^{+}_{c}Z^{(\prime) -}_{c}$ at $\sqrt{s}$ = 10.52, 10.58, and 10.867 GeV
-1672149 . Measurement of eta_c(1S), eta_c(2S) and non-resonant eta' pi+ pi- production via two-photon collisions
+1670164 . Multi-particle azimuthal correlations for extracting event-by-event elliptic and triangular flow in Au$+$Au collisions at $\sqrt{s_{_{NN}}}=200$ GeV
+1671782 . Single-spin asymmetry of $J/\psi$ production in $p$$+$$p$, $p$$+$Al, and $p$$+$Au collisions with transversely polarized proton beams at $\sqrt{s_{_{NN}}}=200$ GeV
+1672014 . Nonperturbative transverse-momentum-dependent effects in dihadron and direct photon-hadron angular correlations in $p+p$ collisions at $\sqrt{s}=200$ GeV
+1672015 . Measurements of $\mu\mu$ pairs from open heavy flavor and Drell-Yan in $p+p$ collisions at $\sqrt{s}=200$ GeV
+1672133 . Creating small circular, elliptical, and triangular droplets of quark-gluon plasma
 1672453 . $J/\psi$ production cross section and its dependence on charged-particle multiplicity in $p+p$ collisions at $\sqrt{s}$ = 200 GeV
+1672473 . Low-momentum direct photon measurement in Cu$+$Cu collisions at $\sqrt{s_{_{NN}}}=200$ GeV
+1672476 . Beam-energy and centrality dependence of direct-photon emission from ultra-relativistic heavy-ion collisions
+1672481 . Correlations of $\mu\mu$, $e\mu$, and $ee$ pairs in $p$+$p$ collisions at $\sqrt{s}=200$ GeV and implications for $c\bar{c}$ and $b\bar{b}$ production mechanisms
 1672785 . Global polarization of $\Lambda$ hyperons in Au+Au collisions at $\sqrt{s_{_{NN}}}$ = 200 GeV
-1674698 . Observation of an Excited $\Omega^-$ Baryon
+1672859 . Production of $\pi^0$ and $\eta$ mesons in Cu$+$Au collisions at $\sqrt{s_{_{NN}}}$=200 GeV
 1674714 . Longitudinal double-spin asymmetries for dijet production at intermediate pseudorapidity in polarized $pp$ collisions at $\sqrt{s}=$ 200  GeV
 1674826 . Longitudinal Double-Spin Asymmetries for $\pi^{0}$s in the Forward Direction for 510 GeV Polarized $pp$ Collisions
-1676227 . Determination of electroweak parameters in polarised deep-inelastic scattering at HERA
 1676541 . Low-$p_T$ $e^{+}e^{-}$ pair production in Au$+$Au collisions at $\sqrt{s_{NN}}$ = 200 GeV and U$+$U collisions at $\sqrt{s_{NN}}$ = 193 GeV at STAR
-1678261 . Observation of $e^+e^-\to\pi^+\pi^-\pi^0\chi_{b1,2}(1P)$ and search for $e^+e^-\to\phi\chi_{b1,2}(1P)$ at $\sqrt{s}=$ 10.96—11.05  GeV
-1679584 . Evidence of a structure in $\bar{K}^{0} \Lambda _{c}^{+}$ consistent with a charged $\Xi _c(2930)^{+}$ , and updated measurement of $\bar{B}^{0} \rightarrow \bar{K}^{0} \Lambda _{c}^{+} \bar{\Lambda }_{c}^{-}$ at Belle
-1679886 . Measurement of the spectral function for the $\tau^-\to K^-K_S\nu_{\tau}$ decay
-1680647 . Observation of $\Upsilon(2S)\to\gamma \eta_{b}(1S)$ decay
-1681440 . Search for the lepton-flavor-violating decay $B^{0}\to K^{\ast 0} \mu^{\pm} e^{\mp}$
-1683069 . Measurements of branching fraction and $CP$ asymmetry of the $\bar{B}^{0}(B^{0})\to K^{0}_{S}K^{\mp}\pi^{\pm}$ decay at Belle
-1684192 . Observation of $B^{+} \rightarrow p\bar{\Lambda} K^+ K^-$ and $B^{+} \rightarrow \bar{p}\Lambda K^+ K^+$
-1684644 . Study of charmless decays $B^{\pm} \to K^{0}_{S} K^{0}_{S} h^{\pm}$ ($h=K,\pi$) at Belle
+1684475 . Pseudorapidity Dependence of Particle Production and Elliptic Flow in Asymmetric Nuclear Collisions of $p$$+$Al, $p$$+$Au, $d$$+$Au, and $^{3}$He$+$Au at $\sqrt{s_{_{NN}}}=200$ GeV
 1685527 . The Proton-$\Omega$ correlation function in Au+Au collisions at $\sqrt{s_{NN}}$=200 GeV
-1687566 . Observation of Transverse $\Lambda/\bar{\Lambda}$ Hyperon Polarization in $e^+e^-$ Annihilation at Belle
 1691152 . Improved measurement of the longitudinal spin transfer to $\Lambda$ and $\bar \Lambda$ hyperons in polarized proton-proton collisions at $\sqrt s$ = 200 GeV
-1691222 . Measurement of the $\gamma^{\star}\gamma^{\star} \to \eta'$ transition form factor
 1691271 . Transverse spin transfer to $\Lambda$ and $\bar{\Lambda}$ hyperons in polarized proton-proton collisions at $\sqrt{s}=200\,\mathrm{GeV}$
-1691954 . Observation of the decay $D^0\rightarrow K^-\pi^+e^+e^-$
-1692393 . The Belle II Physics Book
-1693396 . Measurement of CKM Matrix Element $|V_{cb}|$ from $\bar{B} \to D^{*+} \ell^{-} \bar{\nu}_\ell$
-1694309 . Search for a light CP-odd Higgs boson and low-mass dark matter at the Belle experiment
-1696692 . Measurement of the branching fraction and time-dependent $CP$ asymmetry for $B^0\to J/\psi\pi^0$ decays
-1697367 . Measurement of time-dependent $CP$ violation in $B^0 \to K^0_S \pi^0 \pi^0$ decays
-1698003 . Search for a Stable Six-Quark State at BABAR
-1698390 . Observation of $\Xi(1620)^0$ and evidence for $\Xi(1690)^0$ in $\Xi_c^+ \rightarrow \Xi^-\pi^+\pi^+$ decays
-1698419 . Search for $CP$ violation with Kinematic Asymmetries in the $D^{0}\rightarrow K^{+}K^{-}\pi^{+}\pi^{-}$ Decay
-1700174 . Observation of $e^+e^- \to \gamma \chi_{c1}$ and search for $e^+e^- \to \gamma \chi_{c0}, \gamma \chi_{c2},$ and $\gamma\eta_c$ at $\sqrt{s}$ near 10.6 GeV at Belle
+1695272 . Nonperturbative transverse momentum broadening in dihadron angular correlations in $\sqrt{s_{NN}}=200$ GeV proton-nucleus collisions
 1700232 . Measurements of Dielectron Production in Au$+$Au Collisions at $\sqrt{s_{NN}}$= 27, 39, and 62.4 GeV from the STAR Experiment
-1701180 . Search for the rare decay of $B^+ \to \ell^{\,+} \nu_{\ell} \gamma$ with improved hadronic tagging
-1705069 . First measurements of absolute branching fractions of $\Xi_c^0$ at Belle
+1712047 . Collision Energy Dependence of $p_{\rm t}$ Correlations in Au+Au Collisions at RHIC
+1716552 . Azimuthal harmonics in small and large collision systems at RHIC top energies
+1716636 . Measurement of charm and bottom production from semileptonic hadron decays in $p$$+$$p$ collisions at $\sqrt{s_{NN}}=200$ GeV