Deleting specific rows.

thesmallfry123

New Member
Joined
Jul 16, 2020
Messages
6
Office Version
  1. 2019
Platform
  1. Windows
Hello there,

We are working on a research project pertaining to the Covid-19 virus. We need to curate a long list of anti-viral agents down to a manageable list. We have removed a few antiviral agents and would like to remove some more. The list (Worksheet 1) labelled below as “List I want to retain” are the rows I would like to not delete from the bigger list (Worksheet 2) containing all the anti-viral agents but I need to delete the remaining rows from the bigger list. There are around 30,000 rows so deleting the rows manually is not feasible. Is there any add-in or built-in Microsoft Excel feature that will let me delete the rows automatically.

Thank you for your time and consideration.
 

Attachments

  • 11714-0003.jpg
    11714-0003.jpg
    155.5 KB · Views: 10
  • 1212.jpg
    1212.jpg
    243.2 KB · Views: 10

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Welcome to the MrExcel board!

Assuming both worksheets have those 'row ID' columns in column A and there is a header row in row 1, then try this macro with a copy of your workbook.
Post back if you need help with how to implement.

If it is not what you need, please provide further explanation and if possible small sets of sample dummy data for each worksheet with XL2BB to make it easier for helpers by not having to manually type out sample data to test with.

VBA Code:
Sub Delete_Unwanted()
  Dim d As Object
  Dim a As Variant, b As Variant
  Dim nc As Long, i As Long, k As Long
 
  With Sheets("Worksheet 1")
    a = .Range("A2", .Range("A" & .Rows.Count).End(xlUp)).Value
  End With
  Set d = CreateObject("Scripting.Dictionary")
  For i = 1 To UBound(a)
    d(a(i, 1)) = 1
  Next i
  With Sheets("Worksheet 2")
    nc = .Cells.Find(What:="*", LookIn:=xlFormulas, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column + 1
    a = .Range("A2", .Range("A" & .Rows.Count).End(xlUp)).Value
    ReDim b(1 To UBound(a), 1 To 1)
    For i = 1 To UBound(a)
      If Not d.exists(a(i, 1)) Then
        b(i, 1) = 1
        k = k + 1
      End If
    Next i
    If k > 0 Then
      Application.ScreenUpdating = False
      With .Range("A2").Resize(UBound(a), nc)
        .Columns(nc).Value = b
        .Sort Key1:=.Columns(nc), Order1:=xlAscending, Header:=xlNo
        .Resize(k).EntireRow.Delete
      End With
      Application.ScreenUpdating = True
    End If
  End With
End Sub
 
Last edited:
Upvote 0
Thank you for getting back to me. Upon running the VBA code, some of the rows that were meant to be deleted were deleted but I ended up retaining some of the rows that I did not need. I should have mentioned earlier that, The list I would like to retain (worksheet 1) contains about 23,000 different anti-viral agents. The rest of the anti-viral agents have to be deleted from the bigger list containing roughly 30,000 anti-viral agents(Worksheet 2). List 2 contains the anti-viral agents from list 1 but it contains 7,000 additional anti-viral agents that I wont be needing. Hope the question is clear. Below is the sample data from each other. I have additionally added a google drive link for both worksheets so you can look into the worksheets and get a better understanding.
Google Drive Download Link

Thank you once again.

Sample data from worksheet 1
Result_Interactive_table_duplicate_Analysis.csv
A
1row ID
2Row60
3Row61
4Row62
5Row63
6Row66
7Row107
8Row116
9Row120
10Row122
11Row123
12Row124
13Row125
14Row126
15Row127
16Row128
17Row129
18Row130
19Row131
20Row132
21Row133
22Row134
23Row135
24Row136
25Row137
26Row138
27Row139
28Row140
29Row141
30Row142
31Row143
32Row144
33Row145
34Row146
35Row147
36Row148
37Row149
38Row150
39Row151
40Row152
41Row153
42Row154
43Row155
44Row159
45Row160
46Row162
47Row163
48Row164
49Row165
50Row166
51Row167
52Row168
53Row169
54Row170
55Row177
56Row178
57Row179
58Row180
59Row182
60Row183
61Row184
62Row185
63Row186
64Row188
65Row189
66Row190
67Row191
68Row192
69Row193
70Row194
71Row196
72Row197
73Row198
74Row199
75Row205
76Row207
77Row208
78Row209
79Row210
80Row211
81Row212
82Row216
83Row217
84Row262
85Row336
86Row340
87Row350
88Row373
89Row376
90Row383
91Row384
92Row391
93Row392
94Row394
95Row395
96Row396
97Row397
98Row399
99Row404
100Row405
Worksheet 1



Sample data from worksheet 2
Result_Interactive_table_duplicate_Analysis.csv
ABC
1row IDMoleculeDistance Similarity
2Row0O=c1c2c(n(c(n2)[H])[C@]3(C([C@@](C(O[H])([H])[H])([C@@](O[H])(C3([H])[H])[H])[H])([H])[H])[H])n(c(N([H])[H])n1)[H]1
3Row1O=c1n([C@]2(O[C@](C(OP(OP(OP(OP(=O)(O[H])O[H])(=O)O[H])(=O)O[H])(=O)O[H])([H])[H])([C@@](O[H])(C2([H])[H])[H])[H])[H])c(c(C([H])([H])[H])c(=O)n1[H])[H]
4Row2O=[14c]1n(c(c(c(=O)n1[H])[2H])[H])[C@]2(O[C@](C(OP(=O)(O[H])O[H])([H])[H])([C@](O[H])(C2([H])[H])[H])[H])[H]
5Row3C(c1c2c(N(c3c(C(=O)N2[H])c(c(c(n3)[H])[H])[H])C4(C(C4([H])[H])([H])[H])[H])nc(c1[H])[H])([H])([H])[H]
6Row4C(c1c2c(N(c3c(C(=O)N2[H])c(c(c(n3)[H])[H])[H])C4(C(C4([H])[H])([H])[H])[H])nc(c1[H])[H])([H])([H])[H]
7Row5[C@@](C(=O)N1C(C(C(=N1)[H])([H])[H])([H])[H])(N([H])[H])(C23C(C4(O[H])C(C(C2([H])[H])(C(C(C3([H])[H])(C4([H])[H])[H])([H])[H])[H])([H])[H])([H])[H])[H]
8Row6[C@@](C(=O)N1C(C([H])([H])[H])(C(C(C1([H])[H])([H])[H])([H])[H])[H])(N([H])[H])(C23C(C4(O[H])C(C(C2([H])[H])(C(C(C3([H])[H])(C4([H])[H])[H])([H])[H])[H])([H])[H])([H])[H])[H]
9Row7[C@@](C(=O)n1c(c2c(c1[H])c(c(c(c2[H])[H])[H])[H])[H])(N([H])[H])(C34C(C5(O[H])C(C(C3([H])[H])(C(C(C4([H])[H])(C5([H])[H])[H])([H])[H])[H])([H])[H])([H])[H])[H]
10Row8[C@@](C(=O)N1c2c(C(C1([H])[H])([H])[H])c(c(c(c2[H])[H])[H])[H])(N([H])[H])(C34C(C5(O[H])C(C(C3([H])[H])(C(C(C4([H])[H])(C5([H])[H])[H])([H])[H])[H])([H])[H])([H])[H])[H]
11Row9[C@@](C(c1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])(C(N([C@@](C(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])(/C(=C(/S(=O)(=O)c3c(c(c(c(c3[H])[H])[H])[H])[H])\[H])/[H])[H])[H])=O)(N(C(=O)N4C(C(OC(C4([H])[H])([H])[H])([H])[H])([H])[H])[H])[H]
12Row10O=c1c2c(n(c(n2)[H])[C@]3(O[C@@](C(OP(OP([C@@](P(=O)(O[H])O[H])(F)[H])(=O)O[H])(=O)O[H])([H])[H])([C@@](O[H])(C3([H])[H])[H])[H])[H])n(c(N([H])[H])n1)[H]0.349661
13Row11O=c1c2c(n(c(n2)[H])[C@]3(O[C@@](C(OP(OP([C@@](P(=O)(O[H])O[H])(F)[H])(=O)O[H])(=O)O[H])([H])[H])([C@@](O[H])(C3([H])[H])[H])[H])[H])n(c(N([H])[H])n1)[H]0.349661
14Row12C(C(OC(P(=O)(O[H])O[H])([H])[H])([H])[H])(n1c2c(n(c1=O)[H])c(N([H])[H])nc(OC(C(OC([H])([H])[H])([H])[H])([H])[H])n2)([H])[H]0.6661
15Row13C(C(OC(P(OC(C([H])([H])[H])(C([H])([H])[H])[H])(=O)O[H])([H])[H])([H])[H])(n1c2c(n(c1=O)[H])c(N([H])[H])nc(OC(C(OC([H])([H])[H])([H])[H])([H])[H])n2)([H])[H]0.390559
16Row14C([C@@](C(c1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])(OC(P(=O)(O[H])O[H])([H])[H])[H])(n2c3c(n(c2=O)[H])c(N([H])[H])nc(OC(C(OC([H])([H])[H])([H])[H])([H])[H])n3)([H])[H]0.608113
17Row15C([C@@](OC(P(=O)(O[H])O[H])([H])[H])(C([H])([H])[H])[H])(n1c2c(n(c1=O)[H])c(N([H])[H])nc(OC(C(OC([H])([H])[H])([H])[H])([H])[H])n2)([H])[H]0.56531
18Row16C([C@@](C(Oc1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])(OC(P(=O)(O[H])O[H])([H])[H])[H])(n2c3c(n(c2=O)[H])c(N([H])[H])nc(OC(C(OC([H])([H])[H])([H])[H])([H])[H])n3)([H])[H]0.547975
19Row17C([C@@](C(Oc1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])(OC(P(=O)(O[H])O[H])([H])[H])[H])(n2c3c(n(c2=O)[H])c(N([H])[H])nc(OC(C(OC([H])([H])[H])([H])[H])([H])[H])n3)([H])[H]0.547975
20Row18C([C@@](C(Oc1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])(OC(P(=O)(O[H])O[H])([H])[H])[H])(n2c3c(n(c2=O)[H])c(N([H])[H])nc(OC(C(OC([H])([H])[H])([H])[H])([H])[H])n3)([H])[H]0.547975
21Row19O=c1n(c2c(n1[H])c(N([H])[H])nc(OC(C(OC([H])([H])[H])([H])[H])([H])[H])n2)[C@]3([C@@](OC(P(=O)(O[H])O[H])([H])[H])(C(C(C3([H])[H])([H])[H])([H])[H])[H])[H]0.570041
22Row20[C@@](C(OC(P(=O)(O[H])O[H])([H])[H])([H])[H])(n1c2c(n(c1=O)[H])c(N([H])[H])nc(OC(C(OC([H])([H])[H])([H])[H])([H])[H])n2)(c3c(c(c(c(c3[H])[H])[H])[H])[H])[H]0.571308
23Row21O=c1n(c2c(n1[H])c(N([H])[H])nc(OC(C(OC([H])([H])[H])([H])[H])([H])[H])n2)[C@]3([C@@](OC(P(=O)(O[H])O[H])([H])[H])(C(C(C3([H])[H])([H])[H])([H])[H])[H])[H]0.452624
24Row22C(/C(=C(\c1c(c(C([H])([H])[H])c(O[H])c(C([H])([H])[H])c1[H])[H])/[H])/[H])(=O)c2c(OC([H])([H])[H])c(c(OC([H])([H])[H])c(c2[H])[H])[H]0.400634
25Row23N(C(C(OC(C(N1C(=O)C2(N(C1=O)[H])C(C(C(C2([H])[H])([H])[H])([H])[H])([H])[H])([H])[H])=O)([H])[H])=O)(C34C(C5(C(C(C3([H])[H])(C(C(C4([H])[H])(C5([H])[H])[H])([H])[H])[H])([H])[H])[H])([H])[H])[H]
26Row24C(C(C1(C(OP(=O)(O[H])OC1([H])[H])([H])[H])[H])([H])[H])(n2c3c(nc2[H])c(=O)nc(N([H])[H])n3[H])([H])[H]0.791924
27Row25C([C@@](OC(P(=O)(O[H])O[H])([H])[H])(C([H])([H])[H])[H])(n1c2c(nc1[H])c(N([H])[H])nc(n2)[H])([H])[H]0.481073
28Row26O([C@@]1([C@](n2c3c(nc2[H])c(=O)nc(n3[H])[H])(O[C@](C(O[H])([H])[H])([C@]1(OP(OC([C@@]4(O[C@]([C@](O[H])([C@]4(O[H])[H])[H])(n5c(=O)n(c(=O)c(c5[H])[H])[H])[H])[H])([H])[H])(=O)O[H])[H])[H])[H])[H])[H]
29Row27N(c1nc(nc(n1)N2C(C(OC(C2([H])[H])([H])[H])([H])[H])([H])[H])N3C(C(OC(C3([H])[H])([H])[H])([H])[H])([H])[H])(c4c(c(c(C(OC([H])([H])[H])=O)c(c4[H])[H])[H])[H])[H]
30Row28O([C@]1([C@@](O[C@@](C(OC(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.577978
31Row29O([C@]1([C@@](O[C@@](C(OC(OC(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.476795
32Row301(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]1(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)[C@]2([C@@](O[C@@](C(O[H])([H])[H])([C@@]2(OC(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H]]O(C(C(C(O[C@]1(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]1(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)[C@]2([C@@](O[C@@](C(O[H])([H])[H])([C@@]2(OC(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H]0.207244
33Row31O([C@]1([C@@](O[C@@](C(OC(C(C(O[C@]2([C@@](N(C(C([H])([H])[H])=O)[H])([C@@](O[H])([C@@](O[H])([C@@](C(O[H])([H])[H])(O2)[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.390967
34Row32O([C@]1([C@@](O[C@@](C(OC(C(N(C(C(N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.566573
35Row331([C@@](O[C@@](C(OC(C(N(C(C(N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])(C(N(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]]O([C@]1([C@@](O[C@@](C(OC(C(N(C(C(N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])(C(N(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]0.127808
36Row341([C@@](O[C@@](C(OC(C(N(C(C(N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])(C(N(C(C(OC([C@]3(O[C@@]([C@@](O[H])([C@@]3(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])([H])[H])([H])[H])=O)[H])([H])[H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n5nc(C(N([H])[H])=O)nc5[H])[H])[H])[H]]O([C@]1([C@@](O[C@@](C(OC(C(N(C(C(N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])(C(N(C(C(OC([C@]3(O[C@@]([C@@](O[H])([C@@]3(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])([H])[H])([H])[H])=O)[H])([H])[H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n5nc(C(N([H])[H])=O)nc5[H])[H])[H])[H]0.085207
37Row351([C@@](O[C@@](C(OC(C(N(C(C(N(C([C@@](N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])(C(C(C(C(N(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])([H])[H])([H])[H])[H])=O)[H])([H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]]O([C@]1([C@@](O[C@@](C(OC(C(N(C(C(N(C([C@@](N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])(C(C(C(C(N(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])([H])[H])([H])[H])[H])=O)[H])([H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]0.065275
38Row361([C@@](O[C@@](C(OC(C(N(C(C(N(C([C@@](N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])(C([H])([H])[H])[H])=O)[H])([H])[H])(C(N(C([C@@](N(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])(C([H])([H])[H])[H])=O)[H])([H])[H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]]O([C@]1([C@@](O[C@@](C(OC(C(N(C(C(N(C([C@@](N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])(C([H])([H])[H])[H])=O)[H])([H])[H])(C(N(C([C@@](N(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])(C([H])([H])[H])[H])=O)[H])([H])[H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]0.131358
39Row371([C@@](O[C@@](C(OC(C(N(C(C(N(C(C(C(N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])([H])[H])C(C(C(N(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])([H])[H])([H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]]O([C@]1([C@@](O[C@@](C(OC(C(N(C(C(N(C(C(C(N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])([H])[H])C(C(C(N(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])([H])[H])([H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]0.079634
40Row38O([C@]1([C@@](O[C@@](C(OC(N(C(C(N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.600921
41Row391([C@@](O[C@@](C(OC(C(N(C(C(N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]]O([C@]1([C@@](O[C@@](C(OC(C(N(C(C(N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]0.587057
42Row40O([C@]1([C@@](O[C@@](C(OC(C(N(C(C(C(N([C@@]([C@@]([C@@]([C@@](C(O[H])([H])[H])(O[H])[H])(O[H])[H])(O[H])[H])(C(=O)[H])[H])[H])=O)([H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n2nc(C(N([H])[H])=O)nc2[H])[H])[H])[H]0.69181
43Row41O([C@]1([C@@](O[C@@](C(OC([C@@](N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])(C([H])([H])[H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.472377
44Row42O([C@]1([C@@](O[C@@](C(OC(C(C(N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.439349
45Row43O([C@]1([C@@](O[C@@](C(OC(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.445671
46Row44O(C(c1c(c(c(N(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])c(c1[H])[H])[H])[H])([H])[H])[C@]3([C@@](O[C@@](C(O[H])([H])[H])([C@@]3(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H]0.451742
47Row45O([C@]1([C@@](O[C@@](C(O[H])([H])[H])([C@@]1(OC(c2c(c(c(N(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])c(c2[H])[H])[H])[H])([H])[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]0.533206
48Row46O([C@]1([C@@](O[C@@](C(OC(C(C(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])([H])[H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.355638
49Row47O([C@]1([C@@](O[C@@](C(OC(C(C(C(C(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])([H])[H])([H])[H])([H])[H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.240689
50Row481([C@@](O[C@@](C(OC(C(C(N(C([C@@](N(C(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)[H])(C(C(C(C(N(C(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)[H])([H])[H])([H])[H])([H])[H])([H])[H])[H])=O)[H])([H])[H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]]O([C@]1([C@@](O[C@@](C(OC(C(C(N(C([C@@](N(C(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)[H])(C(C(C(C(N(C(C(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)[H])([H])[H])([H])[H])([H])[H])([H])[H])[H])=O)[H])([H])[H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]0.076575
51Row49O([C@]1([C@@](O[C@@](C(OC([C@@](C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])(C([H])([H])[H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.636736
52Row50O([C@]1([C@@](O[C@@](C(OC(C(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])(C([H])([H])[H])C([H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.433706
53Row51O([C@]1([C@@](O[C@@](C(OC(=O)c2c(c(c(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])c(c2[H])[H])[H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]0.447298
54Row52O([C@]1([C@@](O[C@@](C(OC(=O)c2c(c(c(C(O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])([H])[H])c(c2[H])[H])[H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]0.652454
55Row53O([C@]1([C@@](O[C@@](C(OC(C(N(C(C(C(C(N([C@@]([C@@]([C@@]([C@@](C(O[H])([H])[H])(O[H])[H])(O[H])[H])(O[H])[H])(C(=O)[H])[H])[H])=O)([H])[H])([H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n2nc(C(N([H])[H])=O)nc2[H])[H])[H])[H]0.491339
56Row54O([C@]1([C@@](O[C@@](C(OC(C(C(C(N([C@@]([C@@]([C@@]([C@@](C(O[H])([H])[H])(O[H])[H])(O[H])[H])(O[H])[H])(C(=O)[H])[H])[H])=O)([H])[H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n2nc(C(N([H])[H])=O)nc2[H])[H])[H])[H]0.431369
57Row55O([C@]1([C@@](O[C@@](C(OC(C(OC(C(O[C@]2(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]2(O[H])[H])[H])[H])[H])[H])([H])[H])([H])[H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.375816
58Row56)([H])[H])=O)[C@]1([C@@](OC(C([H])([H])[H])=O)([C@@](C(OC(C([H])([H])[H])=O)([H])[H])(O[C@@](OC(C(C(OC([C@]2(O[C@@]([C@@](O[H])([C@@]2(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])([H])[H])=O)([H])[H])([H])[H])([C@@]1(OC(C([H])([H])[H])=O)[H])[H])[H])[H])[H]]O(C(C([H])([H])[H])=O)[C@]1([C@@](OC(C([H])([H])[H])=O)([C@@](C(OC(C([H])([H])[H])=O)([H])[H])(O[C@@](OC(C(C(OC([C@]2(O[C@@]([C@@](O[H])([C@@]2(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])([H])[H])=O)([H])[H])([H])[H])([C@@]1(OC(C([H])([H])[H])=O)[H])[H])[H])[H])[H]0.465161
59Row57O([C@]1([C@@](O[C@@](C(OC(C(C(OC2(C(C(C(C(C2([H])[H])([H])[H])([H])[H])([H])[H])([H])[H])[H])([H])[H])([H])[H])=O)([H])[H])([C@@]1(O[H])[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H])[H]0.435715
60Row581([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]]C(OC(C(C(O[C@]1([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]0.126364
61Row59)[H])[H])[H])[H])([H])[H])[C@]2([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](OC(C(C(OC([C@]5(O[C@@]([C@@](O[H])([C@@]5(O[H])[H])[H])(n6nc(C(N([H])[H])=O)nc6[H])[H])[H])([H])[H])=O)([H])[H])([H])[H])(O[C@@]2(C(OC(c7c(c(c(c(c7[H])[H])[H])[H])[H])([H])[H])([H])[H])[H])[H])[H])[H])[H]]O(C(c1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])[C@]2([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](OC(C(C(OC([C@]5(O[C@@]([C@@](O[H])([C@@]5(O[H])[H])[H])(n6nc(C(N([H])[H])=O)nc6[H])[H])[H])([H])[H])=O)([H])[H])([H])[H])(O[C@@]2(C(OC(c7c(c(c(c(c7[H])[H])[H])[H])[H])([H])[H])([H])[H])[H])[H])[H])[H])[H]0.367966
62Row601([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]]C(OC(OC(C(C(O[C@]1([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]0.293592
63Row61)[H])[H])[H])[H])([H])[H])[C@]2([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([H])[H])(O[C@@](OC(C(C(OC(OC([C@]5(O[C@@]([C@@](O[H])([C@@]5(O[H])[H])[H])(n6nc(C(N([H])[H])=O)nc6[H])[H])[H])([H])[H])=O)([H])[H])([H])[H])([H])[H])([C@@]2(OC(c7c(c(c(c(c7[H])[H])[H])[H])[H])([H])[H])[H])[H])[H])[H])[H]]O(C(c1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])[C@]2([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([H])[H])(O[C@@](OC(C(C(OC(OC([C@]5(O[C@@]([C@@](O[H])([C@@]5(O[H])[H])[H])(n6nc(C(N([H])[H])=O)nc6[H])[H])[H])([H])[H])=O)([H])[H])([H])[H])([H])[H])([C@@]2(OC(c7c(c(c(c(c7[H])[H])[H])[H])[H])([H])[H])[H])[H])[H])[H])[H]0.248332
64Row621([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)[C@]6([C@@](O[C@@](C(O[H])([H])[H])([C@@]6(OC(C(C(O[C@]7([C@@](OC(c8c(c(c(c(c8[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c9c(c(c(c(c9[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c%10c(c(c(c(c%10[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c%11c(c(c(c(c%11[H])[H])[H])[H])[H])([H])[H])([H])[H])(O7)[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)[H])[H])(n%12nc(C(N([H])[H])=O)nc%12[H])[H])[H]]O(C(C(C(O[C@]1([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)[C@]6([C@@](O[C@@](C(O[H])([H])[H])([C@@]6(OC(C(C(O[C@]7([C@@](OC(c8c(c(c(c(c8[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c9c(c(c(c(c9[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c%10c(c(c(c(c%10[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c%11c(c(c(c(c%11[H])[H])[H])[H])[H])([H])[H])([H])[H])(O7)[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)[H])[H])(n%12nc(C(N([H])[H])=O)nc%12[H])[H])[H]0.118621
65Row631([C@@](N(C(C([H])([H])[H])=O)[H])([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)([C@]5([C@]6([C@@]([C@@](O5)(n7nc(C(N([H])[H])=O)nc7[H])[H])(O[C@@](OC([H])([H])[H])(O6)[H])[H])[H])[H])([H])[H]]C(OC(C(C(O[C@]1([C@@](N(C(C([H])([H])[H])=O)[H])([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)([C@]5([C@]6([C@@]([C@@](O5)(n7nc(C(N([H])[H])=O)nc7[H])[H])(O[C@@](OC([H])([H])[H])(O6)[H])[H])[H])[H])([H])[H]0.122118
66Row64C(OC(N(C(C(N(C(OC(c1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])[H])=O)([C@]2([C@]3([C@@]([C@@](O2)(n4nc(C(N([H])[H])=O)nc4[H])[H])(O[C@@](OC([H])([H])[H])(O3)[H])[H])[H])[H])([H])[H]0.362791
67Row65C(OC(N(C(C(N([H])[H])([H])[H])([H])[H])[H])=O)([C@]1([C@]2([C@@]([C@@](O1)(n3nc(C(N([H])[H])=O)nc3[H])[H])(O[C@@](OC([H])([H])[H])(O2)[H])[H])[H])[H])([H])[H]0.706125
68Row661(O[C@]2([C@@]([C@@](O[H])([C@@]1(O[H])[H])[H])(O[C@@](OC2([H])[H])(c3c(c(c(c(c3[H])[H])[H])[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])[H])=O)([C@]4([C@]5([C@@]([C@@](O4)(n6nc(C(N([H])[H])=O)nc6[H])[H])(O[C@@](OC([H])([H])[H])(O5)[H])[H])[H])[H])([H])[H]]C(OC(N(C(C(N(C(C(O[C@]1(O[C@]2([C@@]([C@@](O[H])([C@@]1(O[H])[H])[H])(O[C@@](OC2([H])[H])(c3c(c(c(c(c3[H])[H])[H])[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])[H])=O)([C@]4([C@]5([C@@]([C@@](O4)(n6nc(C(N([H])[H])=O)nc6[H])[H])(O[C@@](OC([H])([H])[H])(O5)[H])[H])[H])[H])([H])[H]0.290624
69Row67C(OC([C@@](N(C(OC(c1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])=O)[H])(C([H])([H])[H])[H])=O)([C@]2([C@]3([C@@]([C@@](O2)(n4nc(C(N([H])[H])=O)nc4[H])[H])(O[C@@](OC([H])([H])[H])(O3)[H])[H])[H])[H])([H])[H]0.332384
70Row68C(OC([C@@](C([H])([H])[H])(N([H])[H])[H])=O)([C@]1([C@]2([C@@]([C@@](O1)(n3nc(C(N([H])[H])=O)nc3[H])[H])(O[C@@](OC([H])([H])[H])(O2)[H])[H])[H])[H])([H])[H]0.33473
71Row69(N(C(C(O[C@]1(O[C@]2([C@@]([C@@](O[H])([C@@]1(O[H])[H])[H])(O[C@@](OC2([H])[H])(c3c(c(c(c(c3[H])[H])[H])[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])(C([H])([H])[H])[H])=O)([C@]4([C@]5([C@@]([C@@](O4)(n6nc(C(N([H])[H])=O)nc6[H])[H])(O[C@@](OC([H])([H])[H])(O5)[H])[H])[H])[H])([H])[H]]C(OC([C@@](N(C(C(O[C@]1(O[C@]2([C@@]([C@@](O[H])([C@@]1(O[H])[H])[H])(O[C@@](OC2([H])[H])(c3c(c(c(c(c3[H])[H])[H])[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])(C([H])([H])[H])[H])=O)([C@]4([C@]5([C@@]([C@@](O4)(n6nc(C(N([H])[H])=O)nc6[H])[H])(O[C@@](OC([H])([H])[H])(O5)[H])[H])[H])[H])([H])[H]0.462826
72Row70C(OC(C(C(N(C(OC(c1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])=O)([C@]2([C@]3([C@@]([C@@](O2)(n4nc(C(N([H])[H])=O)nc4[H])[H])(O[C@@](OC([H])([H])[H])(O3)[H])[H])[H])[H])([H])[H]0.292677
73Row71C(OC(C(C(N([H])[H])([H])[H])([H])[H])=O)([C@]1([C@]2([C@@]([C@@](O1)(n3nc(C(N([H])[H])=O)nc3[H])[H])(O[C@@](OC([H])([H])[H])(O2)[H])[H])[H])[H])([H])[H]0.479218
74Row721(O[C@]2([C@@]([C@@](O[H])([C@@]1(O[H])[H])[H])(O[C@@](OC2([H])[H])(c3c(c(c(c(c3[H])[H])[H])[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])=O)([C@]4([C@]5([C@@]([C@@](O4)(n6nc(C(N([H])[H])=O)nc6[H])[H])(O[C@@](OC([H])([H])[H])(O5)[H])[H])[H])[H])([H])[H]]C(OC(C(C(N(C(C(O[C@]1(O[C@]2([C@@]([C@@](O[H])([C@@]1(O[H])[H])[H])(O[C@@](OC2([H])[H])(c3c(c(c(c(c3[H])[H])[H])[H])[H])[H])[H])[H])[H])([H])[H])=O)[H])([H])[H])([H])[H])=O)([C@]4([C@]5([C@@]([C@@](O4)(n6nc(C(N([H])[H])=O)nc6[H])[H])(O[C@@](OC([H])([H])[H])(O5)[H])[H])[H])[H])([H])[H]0.549091
75Row731([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])([H])[H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]]C(OC(C(C(C(C(O[C@]1([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])([H])[H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]0.103692
76Row74)[H])[H])[H])[H])([H])[H])[C@]2([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([H])[H])(O[C@@](OC(C(C(C(C(OC([C@]5(O[C@@]([C@@](O[H])([C@@]5(O[H])[H])[H])(n6nc(C(N([H])[H])=O)nc6[H])[H])[H])([H])[H])=O)([H])[H])([H])[H])([H])[H])([H])[H])([C@@]2(OC(c7c(c(c(c(c7[H])[H])[H])[H])[H])([H])[H])[H])[H])[H])[H])[H]]O(C(c1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])[C@]2([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([H])[H])(O[C@@](OC(C(C(C(C(OC([C@]5(O[C@@]([C@@](O[H])([C@@]5(O[H])[H])[H])(n6nc(C(N([H])[H])=O)nc6[H])[H])[H])([H])[H])=O)([H])[H])([H])[H])([H])[H])([H])[H])([C@@]2(OC(c7c(c(c(c(c7[H])[H])[H])[H])[H])([H])[H])[H])[H])[H])[H])[H]0.247114
77Row751([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])([H])[H])([H])[H])([H])[H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]]C(OC(C(C(C(C(C(C(O[C@]1([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])([H])[H])([H])[H])([H])[H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]0.167769
78Row76C(OC(C(C(N(C(OC(C([H])([H])[H])(C([H])([H])[H])C([H])([H])[H])=O)[H])([H])[H])([H])[H])=O)([C@]1([C@]2([C@@]([C@@](O1)(n3nc(C(N([H])[H])=O)nc3[H])[H])(O[C@@](OC([H])([H])[H])(O2)[H])[H])[H])[H])([H])[H]0.497421
79Row77(C(O[C@]1(O[C@]2([C@@]([C@@](O[H])([C@@]1(O[H])[H])[H])(O[C@@](OC2([H])[H])(c3c(c(c(c(c3[H])[H])[H])[H])[H])[H])[H])[H])[H])([H])[H])(C([H])([H])[H])[H])=O)([C@]4([C@]5([C@@]([C@@](O4)(n6nc(C(N([H])[H])=O)nc6[H])[H])(O[C@@](OC([H])([H])[H])(O5)[H])[H])[H])[H])([H])[H]]C(OC([C@@](C(O[C@]1(O[C@]2([C@@]([C@@](O[H])([C@@]1(O[H])[H])[H])(O[C@@](OC2([H])[H])(c3c(c(c(c(c3[H])[H])[H])[H])[H])[H])[H])[H])[H])([H])[H])(C([H])([H])[H])[H])=O)([C@]4([C@]5([C@@]([C@@](O4)(n6nc(C(N([H])[H])=O)nc6[H])[H])(O[C@@](OC([H])([H])[H])(O5)[H])[H])[H])[H])([H])[H]0.261736
80Row781([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])(C([H])([H])[H])C([H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]]C(OC(C(C(O[C@]1([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])(C([H])([H])[H])C([H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]0.159265
81Row79)[H])[H])[H])[H])([H])[H])[C@]2([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(C(C(OC([C@]4(O[C@@]([C@@](O[H])([C@@]4(O[H])[H])[H])(n5nc(C(N([H])[H])=O)nc5[H])[H])[H])([H])[H])=O)(C([H])([H])[H])C([H])([H])[H])([H])[H])(O[C@@](C(OC(c6c(c(c(c(c6[H])[H])[H])[H])[H])([H])[H])([H])[H])([C@@]2(OC(c7c(c(c(c(c7[H])[H])[H])[H])[H])([H])[H])[H])[H])[H])[H])[H]]O(C(c1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])[C@]2([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(C(C(OC([C@]4(O[C@@]([C@@](O[H])([C@@]4(O[H])[H])[H])(n5nc(C(N([H])[H])=O)nc5[H])[H])[H])([H])[H])=O)(C([H])([H])[H])C([H])([H])[H])([H])[H])(O[C@@](C(OC(c6c(c(c(c(c6[H])[H])[H])[H])[H])([H])[H])([H])[H])([C@@]2(OC(c7c(c(c(c(c7[H])[H])[H])[H])[H])([H])[H])[H])[H])[H])[H])[H]0.184427
82Row802(O[C@]3([C@@]([C@@](O[H])([C@@]2(O[H])[H])[H])(O[C@@](OC3([H])[H])(c4c(c(c(c(c4[H])[H])[H])[H])[H])[H])[H])[H])[H])c(c1[H])[H])[H])[H])([C@]5([C@]6([C@@]([C@@](O5)(n7nc(C(N([H])[H])=O)nc7[H])[H])(O[C@@](OC([H])([H])[H])(O6)[H])[H])[H])[H])([H])[H]]C(OC(=O)c1c(c(c(O[C@]2(O[C@]3([C@@]([C@@](O[H])([C@@]2(O[H])[H])[H])(O[C@@](OC3([H])[H])(c4c(c(c(c(c4[H])[H])[H])[H])[H])[H])[H])[H])[H])c(c1[H])[H])[H])[H])([C@]5([C@]6([C@@]([C@@](O5)(n7nc(C(N([H])[H])=O)nc7[H])[H])(O[C@@](OC([H])([H])[H])(O6)[H])[H])[H])[H])([H])[H]0.268139
83Row812(O[C@]3([C@@]([C@@](O[H])([C@@]2(O[H])[H])[H])(O[C@@](OC3([H])[H])(c4c(c(c(c(c4[H])[H])[H])[H])[H])[H])[H])[H])[H])([H])[H])c(c1[H])[H])[H])[H])([C@]5([C@]6([C@@]([C@@](O5)(n7nc(C(N([H])[H])=O)nc7[H])[H])(O[C@@](OC([H])([H])[H])(O6)[H])[H])[H])[H])([H])[H]]C(OC(=O)c1c(c(c(C(O[C@]2(O[C@]3([C@@]([C@@](O[H])([C@@]2(O[H])[H])[H])(O[C@@](OC3([H])[H])(c4c(c(c(c(c4[H])[H])[H])[H])[H])[H])[H])[H])[H])([H])[H])c(c1[H])[H])[H])[H])([C@]5([C@]6([C@@]([C@@](O5)(n7nc(C(N([H])[H])=O)nc7[H])[H])(O[C@@](OC([H])([H])[H])(O6)[H])[H])[H])[H])([H])[H]0.653192
84Row82O(C(C([H])([H])[H])=O)[C@]1([C@@](O[C@@](C(OC(C(O[H])=O)([H])[H])([H])[H])([C@@]1(OC(C([H])([H])[H])=O)[H])[H])(n2nc(C(N([H])[H])=O)nc2[H])[H])[H]0.490196
85Row83)([H])[H])=O)[C@]1([C@@](O[C@@](C(OC(C(N(C(C(C(C(N([C@]2([C@@](OC(C([H])([H])[H])=O)([C@@](OC(C([H])([H])[H])=O)([C@@](C(OC(C([H])([H])[H])=O)([H])[H])(O[C@@]2(OC(C([H])([H])[H])=O)[H])[H])[H])[H])[H])[H])=O)([H])[H])([H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(OC(C([H])([H])[H])=O)[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H]]O(C(C([H])([H])[H])=O)[C@]1([C@@](O[C@@](C(OC(C(N(C(C(C(C(N([C@]2([C@@](OC(C([H])([H])[H])=O)([C@@](OC(C([H])([H])[H])=O)([C@@](C(OC(C([H])([H])[H])=O)([H])[H])(O[C@@]2(OC(C([H])([H])[H])=O)[H])[H])[H])[H])[H])[H])=O)([H])[H])([H])[H])([H])[H])[H])=O)([H])[H])([H])[H])([C@@]1(OC(C([H])([H])[H])=O)[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H]0.300966
86Row84O(C(C([H])([H])[H])=O)[C@]1([C@@](O[C@@](C(OC(C(OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])=O)([H])[H])([H])[H])([C@@]1(OC(C([H])([H])[H])=O)[H])[H])(n3nc(C(N([H])[H])=O)nc3[H])[H])[H]0.700161
87Row851([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([H])[H])(O[C@@]1(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])[H])[H])[H])[H])[H])[H])=O)([H])[H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]]C(OC(C(C(C(N([C@]1([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([H])[H])(O[C@@]1(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])[H])[H])[H])[H])[H])[H])=O)([H])[H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]0.108943
88Row86)[H])[H])[H])[H])([H])[H])[C@]2([C@@](N(C(C(C(C(OC([C@]3(O[C@@]([C@@](O[H])([C@@]3(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])([H])[H])=O)([H])[H])([H])[H])=O)[H])([C@@](OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])(O[C@@](C(OC(c6c(c(c(c(c6[H])[H])[H])[H])[H])([H])[H])([H])[H])([C@@]2(OC(c7c(c(c(c(c7[H])[H])[H])[H])[H])([H])[H])[H])[H])[H])[H])[H]]O(C(c1c(c(c(c(c1[H])[H])[H])[H])[H])([H])[H])[C@]2([C@@](N(C(C(C(C(OC([C@]3(O[C@@]([C@@](O[H])([C@@]3(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])([H])[H])=O)([H])[H])([H])[H])=O)[H])([C@@](OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])(O[C@@](C(OC(c6c(c(c(c(c6[H])[H])[H])[H])[H])([H])[H])([H])[H])([C@@]2(OC(c7c(c(c(c(c7[H])[H])[H])[H])[H])([H])[H])[H])[H])[H])[H])[H]0.459623
89Row871([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]]C(OC(C(OC(C(O[C@]1([C@@](OC(c2c(c(c(c(c2[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c3c(c(c(c(c3[H])[H])[H])[H])[H])([H])[H])([C@@](OC(c4c(c(c(c(c4[H])[H])[H])[H])[H])([H])[H])([C@@](C(OC(c5c(c(c(c(c5[H])[H])[H])[H])[H])([H])[H])([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])([H])[H])=O)([C@]6([C@]7([C@@]([C@@](O6)(n8nc(C(N([H])[H])=O)nc8[H])[H])(O[C@@](OC([H])([H])[H])(O7)[H])[H])[H])[H])([H])[H]0.168894
90Row881([C@@](OC(C([H])([H])[H])=O)([C@@](OC(C([H])([H])[H])=O)([C@@](OC(C([H])([H])[H])=O)([C@@](C(OC(C([H])([H])[H])=O)([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)([C@]2([C@]3([C@@]([C@@](O2)(n4nc(C(N([H])[H])=O)nc4[H])[H])(O[C@@](OC([H])([H])[H])(O3)[H])[H])[H])[H])([H])[H]]C(OC(C(C(O[C@]1([C@@](OC(C([H])([H])[H])=O)([C@@](OC(C([H])([H])[H])=O)([C@@](OC(C([H])([H])[H])=O)([C@@](C(OC(C([H])([H])[H])=O)([H])[H])(O1)[H])[H])[H])[H])[H])([H])[H])([H])[H])=O)([C@]2([C@]3([C@@]([C@@](O2)(n4nc(C(N([H])[H])=O)nc4[H])[H])(O[C@@](OC([H])([H])[H])(O3)[H])[H])[H])[H])([H])[H]0.325056
91Row89C(OC(C(C(OC1(C(C(C(C(C1([H])[H])([H])[H])([H])[H])([H])[H])([H])[H])[H])([H])[H])([H])[H])=O)([C@]2([C@]3([C@@]([C@@](O2)(n4nc(C(N([H])[H])=O)nc4[H])[H])(O[C@@](OC([H])([H])[H])(O3)[H])[H])[H])[H])([H])[H]0.331053
92Row90C(C(OC(P(=O)(O[H])O[H])([H])[H])([H])[H])(n1c2c(c(N(C(C(P(=O)(O[H])O[H])([H])[H])([H])[H])[H])nc(N([H])[H])n2)nc1[H])([H])[H]0.586246
93Row91O([C@]1([C@@](O[C@@](C(OC(=O)[C@]2(C(C([C@@](O[C@]3(O[C@@](C(O[H])([H])[H])([C@@](O[H])([C@@](O[H])([C@@]3(O[H])[H])[H])[H])[H])[H])(C(C2([H])[H])([H])[H])[H])([H])[H])([H])[H])[H])([H])[H])([C@@]1(O[H])[H])[H])(n4nc(C(N([H])[H])=O)nc4[H])[H])[H])[H]0.471876
94Row921(C(C([C@@](O[C@]2(O[C@]3([C@@]([C@@](O[H])([C@@]2(O[H])[H])[H])(O[C@@](OC3([H])[H])(c4c(c(c(c(c4[H])[H])[H])[H])[H])[H])[H])[H])[H])(C(C1([H])[H])([H])[H])[H])([H])[H])([H])[H])[H])([C@]5([C@]6([C@@]([C@@](O5)(n7nc(C(N([H])[H])=O)nc7[H])[H])(O[C@@](OC([H])([H])[H])(O6)[H])[H])[H])[H])([H])[H]]C(OC(=O)[C@]1(C(C([C@@](O[C@]2(O[C@]3([C@@]([C@@](O[H])([C@@]2(O[H])[H])[H])(O[C@@](OC3([H])[H])(c4c(c(c(c(c4[H])[H])[H])[H])[H])[H])[H])[H])[H])(C(C1([H])[H])([H])[H])[H])([H])[H])([H])[H])[H])([C@]5([C@]6([C@@]([C@@](O5)(n7nc(C(N([H])[H])=O)nc7[H])[H])(O[C@@](OC([H])([H])[H])(O6)[H])[H])[H])[H])([H])[H]0.680323
95Row93N(C(C(OC(C(n1c2c(oc1=O)c(c(c(c2[H])[H])[H])[H])([H])[H])=O)([H])[H])=O)(C34C(C5(C(C(C3([H])[H])(C(C(C4([H])[H])(C5([H])[H])[H])([H])[H])[H])([H])[H])[H])([H])[H])[H]
96Row94N(C(c1nc2c(s1)c(c(c(c2[H])[H])[H])[H])([H])[H])(C34C(C5(C(C(C3([H])[H])(C(C(C4([H])[H])(C5([H])[H])[H])([H])[H])[H])([H])[H])[H])([H])[H])[H]
97Row95O=C1C2(C(c3c(C(C2(C(O1)([H])[H])[H])([H])[H])c(c4c(c3[H])OC(O4)([H])[H])[H])(c5c(c(OC([H])([H])[H])c(OC([H])([H])[H])c(OC([H])([H])[H])c5[H])[H])[H])[H]
98Row96O([C@]1([C@@](n2c3c(nc2[H])c([13N]([H])[H])nc(n3)[H])(O[C@@](C(O[H])([H])[H])([C@@]1(O[H])[H])[H])[H])[H])[H]0.344194
99Row97O=c1n(c(c(/C(=C(\Br)/[H])/[H])c(=O)n1[H])[H])[C@]2(C([C@](OC([H])([H])[H])([C@@](C(O[H])([H])[H])(O2)[H])[H])([H])[H])[H]
100Row98O=c1c2c(n(c(n2)[H])[C@]3(C(=C([H])[H])[C@@](C(O[H])([H])[H])([C@@](OC([C@@](C(C([H])([H])[H])(C([H])([H])[H])[H])(N([H])[H])[H])=O)(C3([H])[H])[H])[H])[H])n(c(N([H])[H])n1)[H]0.782411
Worksheet 2
 
Upvote 0
try Power Query
Rich (BB code):
let
    Source1 = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    Source2 = Excel.CurrentWorkbook(){[Name="Table2"]}[Content],
    Join = Table.NestedJoin(Source1,{"row ID"},Source2,{"row ID"},"Source2",JoinKind.LeftOuter),
    Expand = Table.ExpandTableColumn(Join, "Source2", {"Molecule", "Distance Similarity"}, {"Molecule", "Distance Similarity"})
in
    Expand
 
Upvote 0
Upon running the VBA code, some of the rows that were meant to be deleted were deleted but I ended up retaining some of the rows that I did not need.
I'm not following. I Downloaded the file from your link.
Worksheet 2 contained 30,462 rows
I ran the code I posted and then worksheet 2 contained 13,589 rows (heading row and 13,588 IDs). Every one of the 13,588 IDs remaining appear in worksheet 1.
As best I could understand it, that is what you wanted. If you ran the code and thought the code failed to delete some ID from worksheet 2 that do not appear in worksheet 1, can you provide details of 1 or 2 of them?

If I am misunderstanding the requirement, please make up a small dummy workbook with just say 10 items in worksheet 1, 15 items in worksheet 2 and add a worksheet 3 that contains the desired result & provide that workbook.
 
Upvote 0
Correction, so ignore post#4
Rich (BB code):
let
    Source1 = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    Source2 = Excel.CurrentWorkbook(){[Name="Table2"]}[Content],
    Join = Table.NestedJoin(Source1,{"row ID"},Source2,{"row ID"},"Source2",JoinKind.Inner),
    Expand = Table.ExpandTableColumn(Join, "Source2", {"Molecule", "Distance Similarity"}, {"Molecule", "Distance Similarity"})
in
    Expand
 
Upvote 0
i cannot find the power query addin under the options menu in microsoft excel 2019. am i supposed to install it?
 
Upvote 0
XL2019 has Power Query build-in
On Data tab you've some tools for PQ
eg. Show Queries/Connections, New Query and so on...

maybe it is called: Get&Transform
 
Upvote 0
  • download my file from post #6
  • open this file
  • click Show Queries / Connections on Data tab
  • on the right side you should see pane where you can click Queries
  • then double click on the Table there and it will open new window Power Query Editor
 
Upvote 0

Forum statistics

Threads
1,214,830
Messages
6,121,839
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top