I'm trying to understand how to analyse a detached dom tree in Chrome developer tools.
This is the summary view I get when I load the page for the first time take a heap snapshot.

First question, what does "14 entries" mean on the highlighted line? The number does not seem to represent the number of items you see when you expand that node.
I initially thought each Detached DOM tree line represents root of each detached item. But sometimes when I expand it, it has more Detached DOM tree nodes as shown below.

So my second question is what does that relationship mean?
Now that I've taken the first heap snapshot, I clicked on "Create detached nodes" button on the page and took another snapshot. After that I get a list of detached dom trees like this.

My next goal is to find JS references to detached node(s). I clicked on the item which says 102 entries (although I'm not sure what that number means). And I see more detached DOM tree nodes. When I expand each one of them, somewhere in the list of elements I see the fragment element causing the issue (see screenshot below). It's highlighted in yellow and when I click on it, I can see "frags" property on Window object in "Object" pane below.

That's great. But if I expand any other Detached DOM tree nodes with 102 entries, I could see the same item. Only difference is they are in a different position in that array and they seem to have different object ids. What does that mean?
Is there an easy way to figure out which list to explore if I'm looking for an element with references?
Lastly, as you can see, "Retainers" pane is empty. Should I see window.frags there in this scenario?
Thanks heaps in advance for any pointers.