id
int64 0
25k
| prompt
stringlengths 265
3.39k
| answer
stringclasses 14
values | pythoncode
stringlengths 267
3.39k
| num_nodes
int64 3
10
| num_edges
int64 3
56
| avg_node_edge
float64 1
5.6
| graph_density
float64 0.11
1
| num_classes
int64 2
10
| avg_node_class
float64 1
5
| max_num_field
int64 1
10
| min_num_field
int64 1
5
| avg_num_field
float64 1
7.8
| path_length
int64 3
10
| max_node_visits
int64 1
6
| max_edge_visits
int64 1
5
| unique_node_number
int64 2
10
| path_node_coverage
float64 0.2
1
| unique_edge_number
int64 2
10
| path_edge_coverage
float64 0.04
1
| num_cycle
int64 0
9
| shortest_cycle
int64 2
9
⌀ | longest_cycle
int64 2
10
⌀ | average_cycle
float64 2
9
⌀ | unique_edge_label
int64 1
9
| max_label_occurrences
int64 1
10
| max_label_consecutive
int64 1
10
| max_node_outdegree
int64 1
5
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
24,900 | class A:
def __init__(self, txt: str):
self.p: J = None
self.x: J = None
self.z: H = None
self.w: F = None
self.u: B = None
self.v: E = None
self.s: H = None
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.p: J = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: G = None
self.y: H = None
self.t: I = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.p: H = None
self.x: C = None
self.z: A = None
self.o: I = None
self.v: F = None
self.y: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.o: F = None
self.s: D = None
self.y: B = None
self.r: I = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: C = None
self.t: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: A = None
self.z: F = None
self.q: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: E = None
self.x: I = None
self.o: A = None
self.t: H = None
self.s: B = None
self.r: A = None
self.z: E = None
self.q: B = None
self.w: E = None
self.txt = txt
n = A("n")
i = B("i")
e = C("e")
m = D("m")
g = E("g")
k = F("k")
a = G("a")
j = H("j")
b = I("b")
c = J("c")
n.p = c
n.x = c
n.z = j
n.s = j
n.w = k
n.u = i
n.v = g
n.r = m
i.z = e
i.x = e
i.p = c
e.u = a
e.y = j
e.t = b
e.r = g
m.p = n
g.t = e
g.x = e
g.p = j
g.z = n
g.o = b
g.v = k
g.y = c
k.u = m
a.t = e
a.o = k
a.s = m
a.y = i
a.r = b
j.r = e
j.t = i
b.w = n
b.z = k
b.q = i
c.y = g
c.z = g
c.w = g
c.x = b
c.o = n
c.r = n
c.t = j
c.s = i
c.q = i
assert g.y.x.q.txt == " | i" | class A:
def __init__(self, txt: str):
self.p: J = None
self.x: J = None
self.z: H = None
self.w: F = None
self.u: B = None
self.v: E = None
self.s: H = None
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.p: J = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: G = None
self.y: H = None
self.t: I = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.p: H = None
self.x: C = None
self.z: A = None
self.o: I = None
self.v: F = None
self.y: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.o: F = None
self.s: D = None
self.y: B = None
self.r: I = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: C = None
self.t: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: A = None
self.z: F = None
self.q: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: E = None
self.x: I = None
self.o: A = None
self.t: H = None
self.s: B = None
self.r: A = None
self.z: E = None
self.q: B = None
self.w: E = None
self.txt = txt
n = A("n")
i = B("i")
e = C("e")
m = D("m")
g = E("g")
k = F("k")
a = G("a")
j = H("j")
b = I("b")
c = J("c")
n.p = c
n.x = c
n.z = j
n.s = j
n.w = k
n.u = i
n.v = g
n.r = m
i.z = e
i.x = e
i.p = c
e.u = a
e.y = j
e.t = b
e.r = g
m.p = n
g.t = e
g.x = e
g.p = j
g.z = n
g.o = b
g.v = k
g.y = c
k.u = m
a.t = e
a.o = k
a.s = m
a.y = i
a.r = b
j.r = e
j.t = i
b.w = n
b.z = k
b.q = i
c.y = g
c.z = g
c.w = g
c.x = b
c.o = n
c.r = n
c.t = j
c.s = i
c.q = i
assert g.y.x.q.txt == "i" | 10 | 35 | 3.5 | 0.388889 | 10 | 1 | 9 | 1 | 4.3 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.085714 | 0 | null | null | null | 3 | 1 | 1 | 1 |
24,901 | class A:
def __init__(self, txt: str):
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: H = None
self.z: A = None
self.t: J = None
self.o: F = None
self.r: F = None
self.x: E = None
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: I = None
self.u: D = None
self.y: E = None
self.q: D = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.z: E = None
self.v: G = None
self.u: I = None
self.o: A = None
self.x: I = None
self.r: I = None
self.w: E = None
self.q: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.t: D = None
self.o: H = None
self.w: A = None
self.q: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: B = None
self.r: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.r: H = None
self.p: B = None
self.t: B = None
self.x: H = None
self.u: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: C = None
self.t: D = None
self.o: A = None
self.r: J = None
self.p: F = None
self.y: J = None
self.z: D = None
self.v: G = None
self.u: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: E = None
self.r: E = None
self.x: B = None
self.w: C = None
self.y: C = None
self.u: B = None
self.z: G = None
self.o: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: A = None
self.s: H = None
self.v: B = None
self.txt = txt
h = A("h")
l = B("l")
b = C("b")
c = D("c")
m = E("m")
j = F("j")
n = G("n")
a = H("a")
i = I("i")
g = J("g")
h.o = m
l.p = a
l.z = h
l.t = g
l.o = j
l.r = j
l.x = m
l.y = n
b.p = i
b.u = c
b.q = c
b.y = m
b.v = m
c.t = h
c.o = h
c.z = m
c.w = m
c.v = n
c.u = i
c.x = i
c.r = i
c.q = l
m.y = b
m.t = c
m.o = a
m.w = h
m.q = i
j.o = l
j.r = i
n.s = c
n.r = a
n.x = a
n.p = l
n.t = l
n.u = m
a.q = b
a.u = b
a.t = c
a.z = c
a.o = h
a.r = g
a.y = g
a.p = j
a.v = n
i.t = m
i.r = m
i.x = l
i.u = l
i.w = b
i.y = b
i.z = n
i.o = h
g.q = h
g.s = a
g.v = l
assert j.r.z.s.x.txt == " | i" | class A:
def __init__(self, txt: str):
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: H = None
self.z: A = None
self.t: J = None
self.o: F = None
self.r: F = None
self.x: E = None
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: I = None
self.u: D = None
self.y: E = None
self.q: D = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.z: E = None
self.v: G = None
self.u: I = None
self.o: A = None
self.x: I = None
self.r: I = None
self.w: E = None
self.q: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.t: D = None
self.o: H = None
self.w: A = None
self.q: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: B = None
self.r: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.r: H = None
self.p: B = None
self.t: B = None
self.x: H = None
self.u: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: C = None
self.t: D = None
self.o: A = None
self.r: J = None
self.p: F = None
self.y: J = None
self.z: D = None
self.v: G = None
self.u: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: E = None
self.r: E = None
self.x: B = None
self.w: C = None
self.y: C = None
self.u: B = None
self.z: G = None
self.o: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: A = None
self.s: H = None
self.v: B = None
self.txt = txt
h = A("h")
l = B("l")
b = C("b")
c = D("c")
m = E("m")
j = F("j")
n = G("n")
a = H("a")
i = I("i")
g = J("g")
h.o = m
l.p = a
l.z = h
l.t = g
l.o = j
l.r = j
l.x = m
l.y = n
b.p = i
b.u = c
b.q = c
b.y = m
b.v = m
c.t = h
c.o = h
c.z = m
c.w = m
c.v = n
c.u = i
c.x = i
c.r = i
c.q = l
m.y = b
m.t = c
m.o = a
m.w = h
m.q = i
j.o = l
j.r = i
n.s = c
n.r = a
n.x = a
n.p = l
n.t = l
n.u = m
a.q = b
a.u = b
a.t = c
a.z = c
a.o = h
a.r = g
a.y = g
a.p = j
a.v = n
i.t = m
i.r = m
i.x = l
i.u = l
i.w = b
i.y = b
i.z = n
i.o = h
g.q = h
g.s = a
g.v = l
assert j.r.z.s.x.txt == "i" | 10 | 40 | 4 | 0.444444 | 10 | 1 | 9 | 1 | 5.5 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.1 | 1 | 3 | 3 | 3 | 4 | 1 | 1 | 1 |
24,902 | class A:
def __init__(self, txt: str):
self.w: B = None
self.q: I = None
self.u: E = None
self.r: H = None
self.y: G = None
self.z: F = None
self.o: D = None
self.v: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.z: E = None
self.p: A = None
self.q: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: I = None
self.u: I = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: F = None
self.t: A = None
self.w: C = None
self.r: D = None
self.o: H = None
self.v: C = None
self.p: F = None
self.y: I = None
self.u: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: A = None
self.z: E = None
self.p: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: C = None
self.y: B = None
self.q: F = None
self.t: G = None
self.v: J = None
self.o: B = None
self.z: G = None
self.w: D = None
self.s: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: F = None
self.z: I = None
self.t: D = None
self.r: C = None
self.txt = txt
j = A("j")
i = B("i")
a = C("a")
n = D("n")
k = E("k")
e = F("e")
d = G("d")
c = H("c")
h = I("h")
f = J("f")
j.w = i
j.q = h
j.u = k
j.r = c
j.y = d
j.v = d
j.z = e
j.o = n
i.t = n
i.q = n
i.z = k
i.p = j
a.y = e
a.r = i
n.y = h
n.u = h
n.t = i
k.x = e
k.p = e
k.t = j
k.w = a
k.v = a
k.r = n
k.o = c
k.y = h
k.u = h
e.s = j
d.q = e
c.s = j
c.z = k
c.p = n
h.p = a
h.y = i
h.o = i
h.q = e
h.t = d
h.z = d
h.v = f
h.s = f
h.w = n
f.s = e
f.z = h
f.t = n
f.r = a
assert a.y.s.y.q.s.w.z.txt == " | k" | class A:
def __init__(self, txt: str):
self.w: B = None
self.q: I = None
self.u: E = None
self.r: H = None
self.y: G = None
self.z: F = None
self.o: D = None
self.v: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.z: E = None
self.p: A = None
self.q: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: I = None
self.u: I = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: F = None
self.t: A = None
self.w: C = None
self.r: D = None
self.o: H = None
self.v: C = None
self.p: F = None
self.y: I = None
self.u: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: A = None
self.z: E = None
self.p: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: C = None
self.y: B = None
self.q: F = None
self.t: G = None
self.v: J = None
self.o: B = None
self.z: G = None
self.w: D = None
self.s: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: F = None
self.z: I = None
self.t: D = None
self.r: C = None
self.txt = txt
j = A("j")
i = B("i")
a = C("a")
n = D("n")
k = E("k")
e = F("e")
d = G("d")
c = H("c")
h = I("h")
f = J("f")
j.w = i
j.q = h
j.u = k
j.r = c
j.y = d
j.v = d
j.z = e
j.o = n
i.t = n
i.q = n
i.z = k
i.p = j
a.y = e
a.r = i
n.y = h
n.u = h
n.t = i
k.x = e
k.p = e
k.t = j
k.w = a
k.v = a
k.r = n
k.o = c
k.y = h
k.u = h
e.s = j
d.q = e
c.s = j
c.z = k
c.p = n
h.p = a
h.y = i
h.o = i
h.q = e
h.t = d
h.z = d
h.v = f
h.s = f
h.w = n
f.s = e
f.z = h
f.t = n
f.r = a
assert a.y.s.y.q.s.w.z.txt == "k" | 10 | 35 | 3.5 | 0.388889 | 10 | 1 | 9 | 1 | 4.4 | 7 | 2 | 2 | 6 | 0.6 | 6 | 0.171429 | 2 | 3 | 3 | 3 | 5 | 2 | 1 | 2 |
24,903 | class A:
def __init__(self, txt: str):
self.x: E = None
self.t: J = None
self.w: I = None
self.v: D = None
self.p: G = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: J = None
self.w: F = None
self.u: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: H = None
self.s: J = None
self.z: A = None
self.t: G = None
self.q: B = None
self.x: H = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: B = None
self.x: H = None
self.p: I = None
self.y: H = None
self.t: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.r: F = None
self.t: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: A = None
self.x: G = None
self.w: G = None
self.p: G = None
self.u: J = None
self.v: E = None
self.t: G = None
self.s: A = None
self.z: A = None
self.q: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: C = None
self.z: G = None
self.o: J = None
self.y: E = None
self.x: J = None
self.w: B = None
self.u: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.p: D = None
self.o: G = None
self.w: F = None
self.y: F = None
self.q: A = None
self.z: H = None
self.s: B = None
self.x: C = None
self.txt = txt
b = A("b")
d = B("d")
n = C("n")
g = D("g")
j = E("j")
m = F("m")
e = G("e")
a = H("a")
l = I("l")
k = J("k")
b.x = j
b.t = k
b.w = l
b.v = g
b.p = e
b.q = d
d.r = m
n.z = k
n.w = m
n.u = a
g.r = a
g.x = a
g.s = k
g.z = b
g.t = e
g.q = d
g.w = j
j.v = d
j.x = a
j.y = a
j.t = a
j.p = l
m.o = b
m.s = b
m.w = g
e.v = j
e.r = m
e.t = m
a.y = b
a.s = b
a.z = b
a.x = e
a.w = e
a.p = e
a.t = e
a.u = k
a.v = j
a.q = g
l.v = n
l.u = n
l.z = e
l.o = k
l.x = k
l.y = j
l.w = d
k.p = g
k.o = e
k.w = m
k.y = m
k.q = b
k.z = a
k.s = d
k.x = n
assert l.y.x.q.w.p.txt == " | l" | class A:
def __init__(self, txt: str):
self.x: E = None
self.t: J = None
self.w: I = None
self.v: D = None
self.p: G = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: J = None
self.w: F = None
self.u: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: H = None
self.s: J = None
self.z: A = None
self.t: G = None
self.q: B = None
self.x: H = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: B = None
self.x: H = None
self.p: I = None
self.y: H = None
self.t: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: A = None
self.s: A = None
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.r: F = None
self.t: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: A = None
self.x: G = None
self.w: G = None
self.p: G = None
self.u: J = None
self.v: E = None
self.t: G = None
self.s: A = None
self.z: A = None
self.q: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: C = None
self.z: G = None
self.o: J = None
self.y: E = None
self.x: J = None
self.w: B = None
self.u: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.p: D = None
self.o: G = None
self.w: F = None
self.y: F = None
self.q: A = None
self.z: H = None
self.s: B = None
self.x: C = None
self.txt = txt
b = A("b")
d = B("d")
n = C("n")
g = D("g")
j = E("j")
m = F("m")
e = G("e")
a = H("a")
l = I("l")
k = J("k")
b.x = j
b.t = k
b.w = l
b.v = g
b.p = e
b.q = d
d.r = m
n.z = k
n.w = m
n.u = a
g.r = a
g.x = a
g.s = k
g.z = b
g.t = e
g.q = d
g.w = j
j.v = d
j.x = a
j.y = a
j.t = a
j.p = l
m.o = b
m.s = b
m.w = g
e.v = j
e.r = m
e.t = m
a.y = b
a.s = b
a.z = b
a.x = e
a.w = e
a.p = e
a.t = e
a.u = k
a.v = j
a.q = g
l.v = n
l.u = n
l.z = e
l.o = k
l.x = k
l.y = j
l.w = d
k.p = g
k.o = e
k.w = m
k.y = m
k.q = b
k.z = a
k.s = d
k.x = n
assert l.y.x.q.w.p.txt == "l" | 10 | 40 | 4 | 0.444444 | 10 | 1 | 10 | 1 | 5.3 | 5 | 2 | 1 | 4 | 0.4 | 5 | 0.125 | 2 | 3 | 5 | 4 | 5 | 1 | 1 | 2 |
24,904 | class A:
def __init__(self, txt: str):
self.t: H = None
self.s: G = None
self.v: H = None
self.z: B = None
self.o: E = None
self.q: J = None
self.r: G = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.p: D = None
self.z: C = None
self.w: E = None
self.s: I = None
self.q: C = None
self.o: I = None
self.u: H = None
self.r: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.w: D = None
self.v: E = None
self.q: J = None
self.o: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.u: G = None
self.s: C = None
self.o: F = None
self.r: C = None
self.y: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.q: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: H = None
self.w: H = None
self.r: H = None
self.q: H = None
self.v: A = None
self.s: C = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: F = None
self.z: F = None
self.w: E = None
self.t: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: C = None
self.t: C = None
self.o: A = None
self.p: D = None
self.s: D = None
self.r: A = None
self.z: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: F = None
self.u: I = None
self.z: A = None
self.x: C = None
self.txt = txt
i = A("i")
b = B("b")
a = C("a")
l = D("l")
g = E("g")
e = F("e")
d = G("d")
j = H("j")
f = I("f")
k = J("k")
i.t = j
i.v = j
i.s = d
i.r = d
i.z = b
i.o = g
i.q = k
i.x = l
b.v = i
b.p = l
b.r = l
b.z = a
b.q = a
b.w = g
b.s = f
b.o = f
b.u = j
a.t = i
a.w = l
a.v = g
a.q = k
a.o = d
l.w = e
l.o = e
l.u = d
l.s = a
l.r = a
l.y = j
g.y = a
g.q = i
e.x = j
e.w = j
e.r = j
e.q = j
e.v = i
e.s = a
e.u = g
d.v = e
d.z = e
d.w = g
d.t = k
j.w = f
f.w = a
f.t = a
f.o = i
f.r = i
f.p = l
f.s = l
f.z = j
k.s = e
k.u = f
k.z = i
k.x = a
assert g.q.x.w.r.w.o.o.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.t: H = None
self.s: G = None
self.v: H = None
self.z: B = None
self.o: E = None
self.q: J = None
self.r: G = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.p: D = None
self.z: C = None
self.w: E = None
self.s: I = None
self.q: C = None
self.o: I = None
self.u: H = None
self.r: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.w: D = None
self.v: E = None
self.q: J = None
self.o: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.u: G = None
self.s: C = None
self.o: F = None
self.r: C = None
self.y: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.q: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: H = None
self.w: H = None
self.r: H = None
self.q: H = None
self.v: A = None
self.s: C = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: F = None
self.z: F = None
self.w: E = None
self.t: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: C = None
self.t: C = None
self.o: A = None
self.p: D = None
self.s: D = None
self.r: A = None
self.z: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: F = None
self.u: I = None
self.z: A = None
self.x: C = None
self.txt = txt
i = A("i")
b = B("b")
a = C("a")
l = D("l")
g = E("g")
e = F("e")
d = G("d")
j = H("j")
f = I("f")
k = J("k")
i.t = j
i.v = j
i.s = d
i.r = d
i.z = b
i.o = g
i.q = k
i.x = l
b.v = i
b.p = l
b.r = l
b.z = a
b.q = a
b.w = g
b.s = f
b.o = f
b.u = j
a.t = i
a.w = l
a.v = g
a.q = k
a.o = d
l.w = e
l.o = e
l.u = d
l.s = a
l.r = a
l.y = j
g.y = a
g.q = i
e.x = j
e.w = j
e.r = j
e.q = j
e.v = i
e.s = a
e.u = g
d.v = e
d.z = e
d.w = g
d.t = k
j.w = f
f.w = a
f.t = a
f.o = i
f.r = i
f.p = l
f.s = l
f.z = j
k.s = e
k.u = f
k.z = i
k.x = a
assert g.q.x.w.r.w.o.o.y.txt == "a" | 10 | 39 | 3.9 | 0.433333 | 10 | 1 | 9 | 1 | 5.3 | 8 | 2 | 1 | 7 | 0.7 | 8 | 0.205128 | 2 | 5 | 7 | 6 | 6 | 2 | 2 | 2 |
24,905 | class A:
def __init__(self, txt: str):
self.v: G = None
self.x: H = None
self.o: F = None
self.y: F = None
self.r: H = None
self.q: C = None
self.t: J = None
self.s: C = None
self.p: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: H = None
self.p: I = None
self.r: C = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: G = None
self.s: I = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.w: H = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: E = None
self.p: B = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: H = None
self.y: I = None
self.x: D = None
self.v: H = None
self.s: B = None
self.q: B = None
self.p: I = None
self.r: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: E = None
self.q: G = None
self.y: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: B = None
self.z: E = None
self.p: A = None
self.q: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: E = None
self.q: A = None
self.z: I = None
self.y: G = None
self.u: D = None
self.x: G = None
self.w: E = None
self.txt = txt
h = A("h")
n = B("n")
l = C("l")
d = D("d")
b = E("b")
i = F("i")
j = G("j")
g = H("g")
e = I("e")
m = J("m")
h.v = j
h.x = g
h.r = g
h.o = i
h.y = i
h.q = l
h.s = l
h.t = m
h.p = e
n.w = g
n.p = e
n.r = l
n.z = h
l.x = m
d.v = j
d.s = e
d.r = b
b.z = n
b.w = g
b.y = h
i.u = b
i.v = b
i.p = n
j.z = g
j.v = g
j.y = e
j.p = e
j.x = d
j.s = n
j.q = n
j.r = b
g.v = b
g.q = j
g.y = n
e.w = n
e.z = b
e.p = h
e.q = j
m.t = b
m.w = b
m.q = h
m.z = e
m.y = j
m.x = j
m.u = d
assert i.u.z.p.z.z.z.y.p.z.v.txt == " | j" | class A:
def __init__(self, txt: str):
self.v: G = None
self.x: H = None
self.o: F = None
self.y: F = None
self.r: H = None
self.q: C = None
self.t: J = None
self.s: C = None
self.p: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: H = None
self.p: I = None
self.r: C = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: G = None
self.s: I = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.w: H = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: E = None
self.p: B = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: H = None
self.y: I = None
self.x: D = None
self.v: H = None
self.s: B = None
self.q: B = None
self.p: I = None
self.r: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: E = None
self.q: G = None
self.y: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: B = None
self.z: E = None
self.p: A = None
self.q: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: E = None
self.q: A = None
self.z: I = None
self.y: G = None
self.u: D = None
self.x: G = None
self.w: E = None
self.txt = txt
h = A("h")
n = B("n")
l = C("l")
d = D("d")
b = E("b")
i = F("i")
j = G("j")
g = H("g")
e = I("e")
m = J("m")
h.v = j
h.x = g
h.r = g
h.o = i
h.y = i
h.q = l
h.s = l
h.t = m
h.p = e
n.w = g
n.p = e
n.r = l
n.z = h
l.x = m
d.v = j
d.s = e
d.r = b
b.z = n
b.w = g
b.y = h
i.u = b
i.v = b
i.p = n
j.z = g
j.v = g
j.y = e
j.p = e
j.x = d
j.s = n
j.q = n
j.r = b
g.v = b
g.q = j
g.y = n
e.w = n
e.z = b
e.p = h
e.q = j
m.t = b
m.w = b
m.q = h
m.z = e
m.y = j
m.x = j
m.u = d
assert i.u.z.p.z.z.z.y.p.z.v.txt == "j" | 10 | 36 | 3.6 | 0.4 | 10 | 1 | 9 | 1 | 4.5 | 10 | 3 | 2 | 6 | 0.6 | 8 | 0.222222 | 5 | 3 | 7 | 4.166667 | 5 | 5 | 3 | 2 |
24,906 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: G = None
self.q: F = None
self.p: A = None
self.u: E = None
self.r: F = None
self.v: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.x: I = None
self.s: J = None
self.u: F = None
self.q: H = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.r: A = None
self.u: H = None
self.t: C = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: G = None
self.p: J = None
self.q: H = None
self.s: J = None
self.v: F = None
self.w: D = None
self.z: I = None
self.x: C = None
self.o: C = None
self.y: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: I = None
self.y: A = None
self.q: A = None
self.o: C = None
self.z: E = None
self.v: I = None
self.r: I = None
self.p: H = None
self.t: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: H = None
self.z: C = None
self.s: D = None
self.y: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: B = None
self.w: J = None
self.s: I = None
self.o: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: B = None
self.w: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: A = None
self.x: E = None
self.txt = txt
c = A("c")
e = B("e")
b = C("b")
n = D("n")
f = E("f")
h = F("h")
k = G("k")
g = H("g")
j = I("j")
d = J("d")
c.t = e
e.t = k
e.v = k
e.q = h
e.r = h
e.p = c
e.u = f
b.z = c
b.v = c
b.x = j
b.s = d
b.u = h
b.q = g
n.v = b
n.t = b
n.o = b
n.r = c
n.u = g
f.t = k
f.p = d
f.s = d
f.q = g
f.v = h
f.w = n
f.z = j
f.y = j
f.x = b
f.o = b
h.x = j
h.v = j
h.r = j
h.y = c
h.q = c
h.o = b
h.z = f
h.p = g
h.t = k
k.r = g
k.z = b
k.y = b
k.s = n
g.q = e
g.w = d
g.s = j
g.o = c
j.x = e
j.w = d
d.y = c
d.x = f
assert f.q.o.t.q.q.t.p.t.txt == " | e" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: G = None
self.q: F = None
self.p: A = None
self.u: E = None
self.r: F = None
self.v: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.x: I = None
self.s: J = None
self.u: F = None
self.q: H = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.r: A = None
self.u: H = None
self.t: C = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: G = None
self.p: J = None
self.q: H = None
self.s: J = None
self.v: F = None
self.w: D = None
self.z: I = None
self.x: C = None
self.o: C = None
self.y: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: I = None
self.y: A = None
self.q: A = None
self.o: C = None
self.z: E = None
self.v: I = None
self.r: I = None
self.p: H = None
self.t: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: H = None
self.z: C = None
self.s: D = None
self.y: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: B = None
self.w: J = None
self.s: I = None
self.o: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: B = None
self.w: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: A = None
self.x: E = None
self.txt = txt
c = A("c")
e = B("e")
b = C("b")
n = D("n")
f = E("f")
h = F("h")
k = G("k")
g = H("g")
j = I("j")
d = J("d")
c.t = e
e.t = k
e.v = k
e.q = h
e.r = h
e.p = c
e.u = f
b.z = c
b.v = c
b.x = j
b.s = d
b.u = h
b.q = g
n.v = b
n.t = b
n.o = b
n.r = c
n.u = g
f.t = k
f.p = d
f.s = d
f.q = g
f.v = h
f.w = n
f.z = j
f.y = j
f.x = b
f.o = b
h.x = j
h.v = j
h.r = j
h.y = c
h.q = c
h.o = b
h.z = f
h.p = g
h.t = k
k.r = g
k.z = b
k.y = b
k.s = n
g.q = e
g.w = d
g.s = j
g.o = c
j.x = e
j.w = d
d.y = c
d.x = f
assert f.q.o.t.q.q.t.p.t.txt == "e" | 10 | 37 | 3.7 | 0.411111 | 10 | 1 | 10 | 1 | 4.9 | 8 | 3 | 3 | 5 | 0.5 | 6 | 0.162162 | 4 | 2 | 5 | 3.333333 | 4 | 3 | 2 | 2 |
24,907 | class A:
def __init__(self, txt: str):
self.v: B = None
self.x: D = None
self.y: C = None
self.r: H = None
self.w: G = None
self.q: H = None
self.s: C = None
self.p: B = None
self.z: E = None
self.o: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.u: I = None
self.p: F = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.w: J = None
self.q: A = None
self.y: E = None
self.t: A = None
self.s: J = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: I = None
self.r: B = None
self.w: H = None
self.x: E = None
self.t: F = None
self.v: B = None
self.q: G = None
self.y: I = None
self.z: E = None
self.u: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.p: F = None
self.w: D = None
self.z: A = None
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: A = None
self.w: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: I = None
self.o: D = None
self.s: E = None
self.y: J = None
self.r: H = None
self.p: J = None
self.t: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: B = None
self.t: J = None
self.o: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: F = None
self.r: G = None
self.o: F = None
self.w: A = None
self.q: G = None
self.z: E = None
self.t: D = None
self.x: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
d = A("d")
i = B("i")
g = C("g")
h = D("h")
l = E("l")
c = F("c")
f = G("f")
n = H("n")
k = I("k")
m = J("m")
d.v = i
d.p = i
d.x = h
d.o = h
d.y = g
d.s = g
d.r = n
d.q = n
d.w = f
d.z = l
i.s = f
i.u = k
i.p = c
i.w = d
g.x = i
g.w = m
g.s = m
g.q = d
g.t = d
g.y = l
g.p = h
h.s = k
h.y = k
h.r = i
h.v = i
h.w = n
h.x = l
h.z = l
h.t = c
h.q = f
h.u = m
l.t = g
l.r = g
l.p = c
l.w = h
l.z = d
c.t = d
c.w = l
f.w = k
f.o = h
f.s = l
f.y = m
f.p = m
f.t = m
f.r = n
n.q = i
n.t = m
n.o = g
k.y = c
k.o = c
k.r = f
k.q = f
k.x = f
k.w = d
k.z = l
k.t = h
m.r = f
assert m.r.r.t.r.p.r.s.p.txt == " | c" | class A:
def __init__(self, txt: str):
self.v: B = None
self.x: D = None
self.y: C = None
self.r: H = None
self.w: G = None
self.q: H = None
self.s: C = None
self.p: B = None
self.z: E = None
self.o: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.u: I = None
self.p: F = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.w: J = None
self.q: A = None
self.y: E = None
self.t: A = None
self.s: J = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: I = None
self.r: B = None
self.w: H = None
self.x: E = None
self.t: F = None
self.v: B = None
self.q: G = None
self.y: I = None
self.z: E = None
self.u: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.p: F = None
self.w: D = None
self.z: A = None
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: A = None
self.w: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: I = None
self.o: D = None
self.s: E = None
self.y: J = None
self.r: H = None
self.p: J = None
self.t: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: B = None
self.t: J = None
self.o: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: F = None
self.r: G = None
self.o: F = None
self.w: A = None
self.q: G = None
self.z: E = None
self.t: D = None
self.x: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
d = A("d")
i = B("i")
g = C("g")
h = D("h")
l = E("l")
c = F("c")
f = G("f")
n = H("n")
k = I("k")
m = J("m")
d.v = i
d.p = i
d.x = h
d.o = h
d.y = g
d.s = g
d.r = n
d.q = n
d.w = f
d.z = l
i.s = f
i.u = k
i.p = c
i.w = d
g.x = i
g.w = m
g.s = m
g.q = d
g.t = d
g.y = l
g.p = h
h.s = k
h.y = k
h.r = i
h.v = i
h.w = n
h.x = l
h.z = l
h.t = c
h.q = f
h.u = m
l.t = g
l.r = g
l.p = c
l.w = h
l.z = d
c.t = d
c.w = l
f.w = k
f.o = h
f.s = l
f.y = m
f.p = m
f.t = m
f.r = n
n.q = i
n.t = m
n.o = g
k.y = c
k.o = c
k.r = f
k.q = f
k.x = f
k.w = d
k.z = l
k.t = h
m.r = f
assert m.r.r.t.r.p.r.s.p.txt == "c" | 10 | 42 | 4.2 | 0.466667 | 10 | 1 | 10 | 1 | 5.7 | 8 | 3 | 3 | 5 | 0.5 | 6 | 0.142857 | 4 | 2 | 5 | 3.333333 | 4 | 4 | 2 | 3 |
24,908 | class A:
def __init__(self, txt: str):
self.u: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.t: I = None
self.s: A = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: J = None
self.w: D = None
self.t: G = None
self.z: G = None
self.x: E = None
self.y: G = None
self.u: I = None
self.s: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: G = None
self.q: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: F = None
self.u: H = None
self.w: G = None
self.s: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: I = None
self.s: E = None
self.x: E = None
self.z: G = None
self.q: D = None
self.t: I = None
self.p: B = None
self.w: I = None
self.v: D = None
self.y: J = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: I = None
self.y: D = None
self.t: E = None
self.q: E = None
self.u: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: A = None
self.r: F = None
self.u: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: D = None
self.t: G = None
self.y: G = None
self.p: A = None
self.z: E = None
self.r: G = None
self.txt = txt
d = A("d")
g = B("g")
h = C("h")
f = D("f")
a = E("a")
n = F("n")
i = G("i")
j = H("j")
l = I("l")
k = J("k")
d.u = l
g.u = a
g.t = l
g.s = d
g.q = d
h.o = k
h.s = k
h.w = f
h.t = i
h.z = i
h.y = i
h.x = a
h.u = l
f.x = i
f.q = i
a.x = n
a.u = j
a.w = i
a.s = h
n.u = l
n.t = l
n.w = l
n.s = a
n.x = a
n.z = i
n.q = f
n.v = f
n.p = g
n.y = k
i.x = f
j.v = l
j.y = f
j.t = a
j.q = a
j.u = a
l.p = d
l.r = n
l.u = a
k.u = f
k.t = i
k.y = i
k.r = i
k.p = d
k.z = a
assert n.q.q.x.q.x.txt == " | f" | class A:
def __init__(self, txt: str):
self.u: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.t: I = None
self.s: A = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: J = None
self.w: D = None
self.t: G = None
self.z: G = None
self.x: E = None
self.y: G = None
self.u: I = None
self.s: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: G = None
self.q: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: F = None
self.u: H = None
self.w: G = None
self.s: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: I = None
self.s: E = None
self.x: E = None
self.z: G = None
self.q: D = None
self.t: I = None
self.p: B = None
self.w: I = None
self.v: D = None
self.y: J = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: I = None
self.y: D = None
self.t: E = None
self.q: E = None
self.u: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: A = None
self.r: F = None
self.u: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: D = None
self.t: G = None
self.y: G = None
self.p: A = None
self.z: E = None
self.r: G = None
self.txt = txt
d = A("d")
g = B("g")
h = C("h")
f = D("f")
a = E("a")
n = F("n")
i = G("i")
j = H("j")
l = I("l")
k = J("k")
d.u = l
g.u = a
g.t = l
g.s = d
g.q = d
h.o = k
h.s = k
h.w = f
h.t = i
h.z = i
h.y = i
h.x = a
h.u = l
f.x = i
f.q = i
a.x = n
a.u = j
a.w = i
a.s = h
n.u = l
n.t = l
n.w = l
n.s = a
n.x = a
n.z = i
n.q = f
n.v = f
n.p = g
n.y = k
i.x = f
j.v = l
j.y = f
j.t = a
j.q = a
j.u = a
l.p = d
l.r = n
l.u = a
k.u = f
k.t = i
k.y = i
k.r = i
k.p = d
k.z = a
assert n.q.q.x.q.x.txt == "f" | 10 | 31 | 3.1 | 0.344444 | 10 | 1 | 10 | 1 | 4.4 | 5 | 3 | 2 | 3 | 0.3 | 3 | 0.096774 | 3 | 2 | 4 | 2.5 | 2 | 3 | 2 | 1 |
24,909 | class A:
def __init__(self, txt: str):
self.y: C = None
self.w: J = None
self.v: E = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: H = None
self.t: H = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: F = None
self.x: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: B = None
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: F = None
self.q: C = None
self.x: B = None
self.v: C = None
self.s: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: A = None
self.q: D = None
self.v: C = None
self.r: C = None
self.p: E = None
self.o: E = None
self.x: C = None
self.z: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.o: F = None
self.z: F = None
self.r: G = None
self.p: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: G = None
self.t: I = None
self.r: D = None
self.z: C = None
self.x: I = None
self.q: F = None
self.o: C = None
self.u: F = None
self.txt = txt
l = A("l")
b = B("b")
j = C("j")
f = D("f")
i = E("i")
h = F("h")
e = G("e")
a = H("a")
c = I("c")
n = J("n")
l.y = j
l.x = j
l.w = n
l.v = i
b.w = a
b.t = a
b.p = i
j.u = h
j.x = h
f.q = a
i.q = l
i.o = b
h.u = b
h.p = l
e.u = h
e.q = j
e.v = j
e.x = b
e.s = b
a.w = l
a.q = f
a.v = j
a.r = j
a.x = j
a.p = i
a.o = i
a.z = b
c.o = h
c.z = h
c.r = e
c.p = b
n.y = e
n.t = c
n.x = c
n.r = f
n.z = j
n.o = j
n.q = h
n.u = h
assert l.v.q.y.u.u.p.o.w.q.q.txt == " | a" | class A:
def __init__(self, txt: str):
self.y: C = None
self.w: J = None
self.v: E = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: H = None
self.t: H = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: F = None
self.x: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: B = None
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: F = None
self.q: C = None
self.x: B = None
self.v: C = None
self.s: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: A = None
self.q: D = None
self.v: C = None
self.r: C = None
self.p: E = None
self.o: E = None
self.x: C = None
self.z: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.o: F = None
self.z: F = None
self.r: G = None
self.p: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: G = None
self.t: I = None
self.r: D = None
self.z: C = None
self.x: I = None
self.q: F = None
self.o: C = None
self.u: F = None
self.txt = txt
l = A("l")
b = B("b")
j = C("j")
f = D("f")
i = E("i")
h = F("h")
e = G("e")
a = H("a")
c = I("c")
n = J("n")
l.y = j
l.x = j
l.w = n
l.v = i
b.w = a
b.t = a
b.p = i
j.u = h
j.x = h
f.q = a
i.q = l
i.o = b
h.u = b
h.p = l
e.u = h
e.q = j
e.v = j
e.x = b
e.s = b
a.w = l
a.q = f
a.v = j
a.r = j
a.x = j
a.p = i
a.o = i
a.z = b
c.o = h
c.z = h
c.r = e
c.p = b
n.y = e
n.t = c
n.x = c
n.r = f
n.z = j
n.o = j
n.q = h
n.u = h
assert l.v.q.y.u.u.p.o.w.q.q.txt == "a" | 10 | 27 | 2.7 | 0.3 | 10 | 1 | 8 | 1 | 3.9 | 10 | 2 | 1 | 7 | 0.7 | 10 | 0.37037 | 4 | 2 | 5 | 2.75 | 7 | 3 | 2 | 2 |
24,910 | class A:
def __init__(self, txt: str):
self.q: C = None
self.w: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.x: H = None
self.r: H = None
self.p: I = None
self.z: G = None
self.s: G = None
self.q: I = None
self.v: D = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.t: J = None
self.v: B = None
self.o: H = None
self.p: B = None
self.u: J = None
self.s: B = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: H = None
self.u: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.o: B = None
self.w: F = None
self.q: C = None
self.x: I = None
self.r: A = None
self.z: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: D = None
self.w: A = None
self.o: H = None
self.s: I = None
self.t: J = None
self.r: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.t: F = None
self.y: B = None
self.p: H = None
self.w: B = None
self.s: A = None
self.q: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: C = None
self.q: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: H = None
self.y: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: F = None
self.u: C = None
self.s: E = None
self.x: C = None
self.txt = txt
a = A("a")
f = B("f")
d = C("d")
b = D("b")
c = E("c")
h = F("h")
l = G("l")
i = H("i")
e = I("e")
j = J("j")
a.q = d
a.w = e
f.y = l
f.z = l
f.s = l
f.x = i
f.r = i
f.p = e
f.q = e
f.v = b
f.o = a
d.q = f
d.v = f
d.p = f
d.s = f
d.t = j
d.u = j
d.o = i
d.z = b
b.o = i
b.u = h
c.s = h
c.w = h
c.o = f
c.q = d
c.x = e
c.z = e
c.r = a
h.v = b
h.w = a
h.o = i
h.s = e
h.r = e
h.t = j
l.z = d
l.q = d
l.t = h
l.y = f
l.w = f
l.p = i
l.s = a
i.y = d
i.q = h
e.p = i
e.y = f
j.o = h
j.u = d
j.x = d
j.s = c
assert a.w.p.q.w.q.o.y.u.o.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.q: C = None
self.w: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.x: H = None
self.r: H = None
self.p: I = None
self.z: G = None
self.s: G = None
self.q: I = None
self.v: D = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.t: J = None
self.v: B = None
self.o: H = None
self.p: B = None
self.u: J = None
self.s: B = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: H = None
self.u: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.o: B = None
self.w: F = None
self.q: C = None
self.x: I = None
self.r: A = None
self.z: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: D = None
self.w: A = None
self.o: H = None
self.s: I = None
self.t: J = None
self.r: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: C = None
self.t: F = None
self.y: B = None
self.p: H = None
self.w: B = None
self.s: A = None
self.q: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: C = None
self.q: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: H = None
self.y: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: F = None
self.u: C = None
self.s: E = None
self.x: C = None
self.txt = txt
a = A("a")
f = B("f")
d = C("d")
b = D("b")
c = E("c")
h = F("h")
l = G("l")
i = H("i")
e = I("e")
j = J("j")
a.q = d
a.w = e
f.y = l
f.z = l
f.s = l
f.x = i
f.r = i
f.p = e
f.q = e
f.v = b
f.o = a
d.q = f
d.v = f
d.p = f
d.s = f
d.t = j
d.u = j
d.o = i
d.z = b
b.o = i
b.u = h
c.s = h
c.w = h
c.o = f
c.q = d
c.x = e
c.z = e
c.r = a
h.v = b
h.w = a
h.o = i
h.s = e
h.r = e
h.t = j
l.z = d
l.q = d
l.t = h
l.y = f
l.w = f
l.p = i
l.s = a
i.y = d
i.q = h
e.p = i
e.y = f
j.o = h
j.u = d
j.x = d
j.s = c
assert a.w.p.q.w.q.o.y.u.o.t.txt == "j" | 10 | 35 | 3.5 | 0.388889 | 10 | 1 | 9 | 2 | 4.9 | 10 | 2 | 1 | 6 | 0.6 | 10 | 0.285714 | 5 | 2 | 6 | 3.6 | 7 | 2 | 1 | 2 |
24,911 | class A:
def __init__(self, txt: str):
self.v: B = None
self.t: D = None
self.y: F = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: H = None
self.v: E = None
self.s: D = None
self.p: H = None
self.y: I = None
self.t: D = None
self.r: G = None
self.u: I = None
self.q: H = None
self.o: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: H = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: H = None
self.p: J = None
self.s: J = None
self.q: I = None
self.v: E = None
self.u: J = None
self.y: J = None
self.r: J = None
self.t: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: G = None
self.w: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: J = None
self.u: B = None
self.v: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: J = None
self.t: J = None
self.r: C = None
self.z: B = None
self.p: A = None
self.v: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: G = None
self.s: E = None
self.u: A = None
self.r: H = None
self.z: F = None
self.txt = txt
l = A("l")
e = B("e")
k = C("k")
b = D("b")
f = E("f")
n = F("n")
c = G("c")
h = H("h")
g = I("g")
d = J("d")
l.v = e
l.t = b
l.x = b
l.y = n
e.x = h
e.p = h
e.q = h
e.v = f
e.s = b
e.t = b
e.y = g
e.u = g
e.r = c
e.o = c
k.s = h
k.v = f
b.x = h
b.p = d
b.s = d
b.u = d
b.y = d
b.r = d
b.q = g
b.t = g
b.v = f
f.s = c
f.w = b
n.p = k
c.q = b
h.z = d
h.u = e
h.v = c
g.y = d
g.t = d
g.r = k
g.z = e
g.p = l
g.v = h
d.w = c
d.s = f
d.u = l
d.r = h
d.z = n
assert g.v.u.o.txt == " | c" | class A:
def __init__(self, txt: str):
self.v: B = None
self.t: D = None
self.y: F = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: H = None
self.v: E = None
self.s: D = None
self.p: H = None
self.y: I = None
self.t: D = None
self.r: G = None
self.u: I = None
self.q: H = None
self.o: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: H = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: H = None
self.p: J = None
self.s: J = None
self.q: I = None
self.v: E = None
self.u: J = None
self.y: J = None
self.r: J = None
self.t: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: G = None
self.w: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: J = None
self.u: B = None
self.v: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: J = None
self.t: J = None
self.r: C = None
self.z: B = None
self.p: A = None
self.v: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: G = None
self.s: E = None
self.u: A = None
self.r: H = None
self.z: F = None
self.txt = txt
l = A("l")
e = B("e")
k = C("k")
b = D("b")
f = E("f")
n = F("n")
c = G("c")
h = H("h")
g = I("g")
d = J("d")
l.v = e
l.t = b
l.x = b
l.y = n
e.x = h
e.p = h
e.q = h
e.v = f
e.s = b
e.t = b
e.y = g
e.u = g
e.r = c
e.o = c
k.s = h
k.v = f
b.x = h
b.p = d
b.s = d
b.u = d
b.y = d
b.r = d
b.q = g
b.t = g
b.v = f
f.s = c
f.w = b
n.p = k
c.q = b
h.z = d
h.u = e
h.v = c
g.y = d
g.t = d
g.r = k
g.z = e
g.p = l
g.v = h
d.w = c
d.s = f
d.u = l
d.r = h
d.z = n
assert g.v.u.o.txt == "c" | 10 | 31 | 3.1 | 0.344444 | 10 | 1 | 10 | 1 | 4.3 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.096774 | 0 | null | null | null | 3 | 1 | 1 | 1 |
24,912 | class A:
def __init__(self, txt: str):
self.o: G = None
self.r: H = None
self.p: C = None
self.v: I = None
self.s: J = None
self.q: H = None
self.w: C = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: H = None
self.v: D = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.y: I = None
self.w: D = None
self.r: A = None
self.s: A = None
self.z: D = None
self.x: J = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: H = None
self.w: E = None
self.p: G = None
self.u: A = None
self.s: E = None
self.x: I = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.v: F = None
self.q: F = None
self.s: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: C = None
self.t: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: H = None
self.o: I = None
self.v: C = None
self.q: B = None
self.p: B = None
self.x: D = None
self.u: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: I = None
self.u: G = None
self.v: G = None
self.z: G = None
self.y: A = None
self.w: F = None
self.o: A = None
self.q: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: H = None
self.s: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
n = A("n")
f = B("f")
c = C("c")
k = D("k")
m = E("m")
e = F("e")
g = G("g")
b = H("b")
l = I("l")
a = J("a")
n.o = g
n.r = b
n.q = b
n.p = c
n.w = c
n.x = c
n.v = l
n.s = a
f.p = b
f.v = k
f.u = k
c.q = f
c.p = f
c.y = l
c.w = k
c.z = k
c.r = n
c.s = n
c.x = a
k.v = b
k.w = m
k.s = m
k.p = g
k.u = n
k.x = l
k.y = e
m.u = c
m.v = e
m.q = e
m.s = l
e.w = c
e.t = k
g.y = b
g.o = l
g.v = c
g.q = f
g.p = f
g.x = k
g.u = e
b.r = l
b.u = g
b.v = g
b.z = g
b.q = g
b.y = n
b.o = n
b.w = e
l.v = b
l.s = e
a.q = m
assert n.x.s.o.o.txt == " | l" | class A:
def __init__(self, txt: str):
self.o: G = None
self.r: H = None
self.p: C = None
self.v: I = None
self.s: J = None
self.q: H = None
self.w: C = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: H = None
self.v: D = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.y: I = None
self.w: D = None
self.r: A = None
self.s: A = None
self.z: D = None
self.x: J = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: H = None
self.w: E = None
self.p: G = None
self.u: A = None
self.s: E = None
self.x: I = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.v: F = None
self.q: F = None
self.s: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: C = None
self.t: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: H = None
self.o: I = None
self.v: C = None
self.q: B = None
self.p: B = None
self.x: D = None
self.u: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: I = None
self.u: G = None
self.v: G = None
self.z: G = None
self.y: A = None
self.w: F = None
self.o: A = None
self.q: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: H = None
self.s: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
n = A("n")
f = B("f")
c = C("c")
k = D("k")
m = E("m")
e = F("e")
g = G("g")
b = H("b")
l = I("l")
a = J("a")
n.o = g
n.r = b
n.q = b
n.p = c
n.w = c
n.x = c
n.v = l
n.s = a
f.p = b
f.v = k
f.u = k
c.q = f
c.p = f
c.y = l
c.w = k
c.z = k
c.r = n
c.s = n
c.x = a
k.v = b
k.w = m
k.s = m
k.p = g
k.u = n
k.x = l
k.y = e
m.u = c
m.v = e
m.q = e
m.s = l
e.w = c
e.t = k
g.y = b
g.o = l
g.v = c
g.q = f
g.p = f
g.x = k
g.u = e
b.r = l
b.u = g
b.v = g
b.z = g
b.q = g
b.y = n
b.o = n
b.w = e
l.v = b
l.s = e
a.q = m
assert n.x.s.o.o.txt == "l" | 10 | 36 | 3.6 | 0.4 | 10 | 1 | 8 | 1 | 5 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.111111 | 1 | 2 | 2 | 2 | 3 | 2 | 2 | 2 |
24,913 | class A:
def __init__(self, txt: str):
self.s: E = None
self.p: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.t: E = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: H = None
self.z: F = None
self.s: H = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: I = None
self.v: B = None
self.t: G = None
self.u: A = None
self.p: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: I = None
self.y: E = None
self.x: D = None
self.v: H = None
self.z: H = None
self.q: D = None
self.w: H = None
self.u: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: A = None
self.t: A = None
self.z: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: F = None
self.w: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: D = None
self.y: G = None
self.txt = txt
j = A("j")
n = B("n")
k = C("k")
f = D("f")
m = E("m")
i = F("i")
g = G("g")
l = H("l")
b = I("b")
h = J("h")
j.s = m
j.p = g
n.x = k
n.t = m
n.p = i
k.y = l
k.s = l
k.z = i
k.o = f
f.s = i
m.z = b
m.v = n
m.t = g
m.u = j
m.p = j
i.o = b
i.y = m
i.x = f
i.q = f
i.v = l
i.z = l
i.w = l
i.u = j
g.q = j
g.t = j
g.z = h
l.x = n
b.y = i
b.w = i
h.t = f
h.y = g
assert g.z.y.z.y.z.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: E = None
self.p: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.t: E = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: H = None
self.z: F = None
self.s: H = None
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: I = None
self.v: B = None
self.t: G = None
self.u: A = None
self.p: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: I = None
self.y: E = None
self.x: D = None
self.v: H = None
self.z: H = None
self.q: D = None
self.w: H = None
self.u: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: A = None
self.t: A = None
self.z: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: F = None
self.w: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: D = None
self.y: G = None
self.txt = txt
j = A("j")
n = B("n")
k = C("k")
f = D("f")
m = E("m")
i = F("i")
g = G("g")
l = H("l")
b = I("b")
h = J("h")
j.s = m
j.p = g
n.x = k
n.t = m
n.p = i
k.y = l
k.s = l
k.z = i
k.o = f
f.s = i
m.z = b
m.v = n
m.t = g
m.u = j
m.p = j
i.o = b
i.y = m
i.x = f
i.q = f
i.v = l
i.z = l
i.w = l
i.u = j
g.q = j
g.t = j
g.z = h
l.x = n
b.y = i
b.w = i
h.t = f
h.y = g
assert g.z.y.z.y.z.y.txt == "g" | 10 | 24 | 2.4 | 0.266667 | 10 | 1 | 8 | 1 | 3.1 | 6 | 4 | 3 | 2 | 0.2 | 2 | 0.083333 | 5 | 2 | 6 | 3.111111 | 2 | 3 | 1 | 1 |
24,914 | class A:
def __init__(self, txt: str):
self.u: G = None
self.v: I = None
self.p: I = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.x: G = None
self.w: G = None
self.q: G = None
self.z: G = None
self.o: C = None
self.v: J = None
self.p: H = None
self.u: C = None
self.y: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: G = None
self.v: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.x: E = None
self.t: G = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: H = None
self.x: G = None
self.w: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.w: A = None
self.t: B = None
self.u: E = None
self.o: C = None
self.z: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: J = None
self.u: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: C = None
self.s: G = None
self.q: D = None
self.w: D = None
self.u: F = None
self.y: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: A = None
self.o: D = None
self.z: G = None
self.p: D = None
self.y: D = None
self.txt = txt
b = A("b")
e = B("e")
l = C("l")
n = D("n")
a = E("a")
g = F("g")
j = G("j")
i = H("i")
m = I("m")
d = J("d")
b.u = j
b.v = m
b.p = m
b.o = e
e.t = n
e.x = j
e.w = j
e.q = j
e.z = j
e.o = l
e.u = l
e.v = d
e.p = i
e.y = m
l.q = j
l.v = i
n.r = j
n.t = j
n.x = a
n.p = a
a.p = i
a.x = j
a.w = m
g.s = b
g.y = l
j.v = a
j.u = a
j.w = b
j.z = b
j.t = e
j.o = l
i.v = d
i.u = g
m.v = l
m.s = j
m.q = n
m.w = n
m.u = g
m.y = g
d.w = b
d.o = n
d.p = n
d.y = n
d.z = j
assert j.t.t.p.p.u.s.txt == " | b" | class A:
def __init__(self, txt: str):
self.u: G = None
self.v: I = None
self.p: I = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.x: G = None
self.w: G = None
self.q: G = None
self.z: G = None
self.o: C = None
self.v: J = None
self.p: H = None
self.u: C = None
self.y: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: G = None
self.v: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.x: E = None
self.t: G = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: H = None
self.x: G = None
self.w: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.w: A = None
self.t: B = None
self.u: E = None
self.o: C = None
self.z: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: J = None
self.u: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: C = None
self.s: G = None
self.q: D = None
self.w: D = None
self.u: F = None
self.y: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: A = None
self.o: D = None
self.z: G = None
self.p: D = None
self.y: D = None
self.txt = txt
b = A("b")
e = B("e")
l = C("l")
n = D("n")
a = E("a")
g = F("g")
j = G("j")
i = H("i")
m = I("m")
d = J("d")
b.u = j
b.v = m
b.p = m
b.o = e
e.t = n
e.x = j
e.w = j
e.q = j
e.z = j
e.o = l
e.u = l
e.v = d
e.p = i
e.y = m
l.q = j
l.v = i
n.r = j
n.t = j
n.x = a
n.p = a
a.p = i
a.x = j
a.w = m
g.s = b
g.y = l
j.v = a
j.u = a
j.w = b
j.z = b
j.t = e
j.o = l
i.v = d
i.u = g
m.v = l
m.s = j
m.q = n
m.w = n
m.u = g
m.y = g
d.w = b
d.o = n
d.p = n
d.y = n
d.z = j
assert j.t.t.p.p.u.s.txt == "b" | 10 | 31 | 3.1 | 0.344444 | 10 | 1 | 10 | 2 | 4.4 | 6 | 1 | 1 | 7 | 0.7 | 6 | 0.193548 | 0 | null | null | null | 4 | 2 | 2 | 1 |
24,915 | class A:
def __init__(self, txt: str):
self.s: D = None
self.p: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: H = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: J = None
self.r: B = None
self.q: C = None
self.z: F = None
self.t: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: I = None
self.p: J = None
self.r: C = None
self.q: B = None
self.x: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.u: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: A = None
self.w: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: E = None
self.v: J = None
self.x: C = None
self.o: E = None
self.q: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: H = None
self.txt = txt
g = A("g")
b = B("b")
h = C("h")
j = D("j")
i = E("i")
f = F("f")
m = G("m")
l = H("l")
n = I("n")
k = J("k")
g.s = j
g.p = i
b.w = l
b.p = i
h.s = f
j.x = k
j.r = b
j.q = h
j.z = f
j.t = n
i.z = n
i.p = k
i.x = k
i.r = h
i.q = b
f.y = l
m.t = i
m.u = k
l.t = g
l.w = m
n.r = i
n.o = i
n.v = k
n.x = h
n.q = h
k.s = l
assert i.r.s.y.t.s.q.s.y.txt == " | l" | class A:
def __init__(self, txt: str):
self.s: D = None
self.p: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: H = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: J = None
self.r: B = None
self.q: C = None
self.z: F = None
self.t: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: I = None
self.p: J = None
self.r: C = None
self.q: B = None
self.x: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.u: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: A = None
self.w: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: E = None
self.v: J = None
self.x: C = None
self.o: E = None
self.q: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: H = None
self.txt = txt
g = A("g")
b = B("b")
h = C("h")
j = D("j")
i = E("i")
f = F("f")
m = G("m")
l = H("l")
n = I("n")
k = J("k")
g.s = j
g.p = i
b.w = l
b.p = i
h.s = f
j.x = k
j.r = b
j.q = h
j.z = f
j.t = n
i.z = n
i.p = k
i.x = k
i.r = h
i.q = b
f.y = l
m.t = i
m.u = k
l.t = g
l.w = m
n.r = i
n.o = i
n.v = k
n.x = h
n.q = h
k.s = l
assert i.r.s.y.t.s.q.s.y.txt == "l" | 10 | 23 | 2.3 | 0.255556 | 10 | 1 | 5 | 1 | 2.6 | 8 | 2 | 2 | 6 | 0.6 | 6 | 0.26087 | 3 | 5 | 5 | 5 | 5 | 3 | 1 | 1 |
24,916 | class A:
def __init__(self, txt: str):
self.u: J = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.u: H = None
self.r: J = None
self.w: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: I = None
self.p: H = None
self.v: B = None
self.t: F = None
self.y: B = None
self.q: G = None
self.u: E = None
self.x: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: H = None
self.o: I = None
self.u: G = None
self.w: E = None
self.p: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: F = None
self.v: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.z: C = None
self.t: J = None
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: C = None
self.q: B = None
self.t: H = None
self.p: J = None
self.v: E = None
self.z: D = None
self.y: H = None
self.u: E = None
self.r: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: J = None
self.t: B = None
self.r: J = None
self.p: E = None
self.y: D = None
self.v: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.v: C = None
self.w: C = None
self.o: B = None
self.y: C = None
self.s: E = None
self.u: I = None
self.q: G = None
self.txt = txt
j = A("j")
f = B("f")
e = C("e")
m = D("m")
l = E("l")
d = F("d")
b = G("b")
h = H("h")
c = I("c")
g = J("g")
j.u = g
f.s = b
f.u = h
f.w = h
f.r = g
e.o = c
e.p = h
e.x = h
e.v = f
e.y = f
e.t = d
e.q = b
e.u = l
m.y = h
m.o = c
m.u = b
m.w = l
m.p = g
l.o = d
l.v = d
d.q = j
d.p = j
d.z = e
d.t = g
b.w = e
b.q = f
b.t = h
b.y = h
b.p = g
b.r = g
b.v = l
b.u = l
b.z = m
h.z = g
h.r = g
h.t = f
h.p = l
h.y = m
h.v = m
c.r = j
g.v = e
g.w = e
g.y = e
g.o = f
g.s = l
g.u = c
g.q = b
assert c.r.u.v.q.txt == " | b" | class A:
def __init__(self, txt: str):
self.u: J = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.u: H = None
self.r: J = None
self.w: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: I = None
self.p: H = None
self.v: B = None
self.t: F = None
self.y: B = None
self.q: G = None
self.u: E = None
self.x: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: H = None
self.o: I = None
self.u: G = None
self.w: E = None
self.p: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: F = None
self.v: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.z: C = None
self.t: J = None
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: C = None
self.q: B = None
self.t: H = None
self.p: J = None
self.v: E = None
self.z: D = None
self.y: H = None
self.u: E = None
self.r: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: J = None
self.t: B = None
self.r: J = None
self.p: E = None
self.y: D = None
self.v: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.v: C = None
self.w: C = None
self.o: B = None
self.y: C = None
self.s: E = None
self.u: I = None
self.q: G = None
self.txt = txt
j = A("j")
f = B("f")
e = C("e")
m = D("m")
l = E("l")
d = F("d")
b = G("b")
h = H("h")
c = I("c")
g = J("g")
j.u = g
f.s = b
f.u = h
f.w = h
f.r = g
e.o = c
e.p = h
e.x = h
e.v = f
e.y = f
e.t = d
e.q = b
e.u = l
m.y = h
m.o = c
m.u = b
m.w = l
m.p = g
l.o = d
l.v = d
d.q = j
d.p = j
d.z = e
d.t = g
b.w = e
b.q = f
b.t = h
b.y = h
b.p = g
b.r = g
b.v = l
b.u = l
b.z = m
h.z = g
h.r = g
h.t = f
h.p = l
h.y = m
h.v = m
c.r = j
g.v = e
g.w = e
g.y = e
g.o = f
g.s = l
g.u = c
g.q = b
assert c.r.u.v.q.txt == "b" | 10 | 35 | 3.5 | 0.388889 | 10 | 1 | 9 | 1 | 4.7 | 4 | 1 | 1 | 5 | 0.5 | 4 | 0.114286 | 0 | null | null | null | 4 | 1 | 1 | 1 |
24,917 | class A:
def __init__(self, txt: str):
self.u: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: H = None
self.x: D = None
self.v: I = None
self.t: E = None
self.w: E = None
self.u: G = None
self.s: F = None
self.q: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: I = None
self.v: J = None
self.t: I = None
self.w: A = None
self.o: H = None
self.y: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: G = None
self.p: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.r: J = None
self.y: A = None
self.z: B = None
self.v: I = None
self.p: A = None
self.o: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: C = None
self.q: C = None
self.w: D = None
self.p: B = None
self.o: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: G = None
self.t: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: A = None
self.t: C = None
self.x: D = None
self.v: C = None
self.w: F = None
self.s: H = None
self.o: E = None
self.r: B = None
self.q: F = None
self.txt = txt
k = A("k")
g = B("g")
f = C("f")
a = D("a")
i = E("i")
j = F("j")
c = G("c")
n = H("n")
b = I("b")
m = J("m")
k.u = c
g.o = n
g.q = n
g.x = a
g.v = b
g.t = i
g.w = i
g.u = c
g.s = j
f.u = b
f.t = b
f.v = m
f.w = k
f.o = n
f.y = n
a.q = c
a.p = j
i.u = f
i.r = m
i.y = k
i.p = k
i.z = g
i.v = b
i.o = n
j.o = f
c.r = f
c.q = f
c.w = a
c.p = g
c.o = m
n.x = g
b.w = c
b.t = a
m.u = k
m.t = f
m.v = f
m.x = a
m.w = j
m.q = j
m.s = n
m.o = i
m.r = g
assert f.t.w.p.u.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: H = None
self.x: D = None
self.v: I = None
self.t: E = None
self.w: E = None
self.u: G = None
self.s: F = None
self.q: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: I = None
self.v: J = None
self.t: I = None
self.w: A = None
self.o: H = None
self.y: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: G = None
self.p: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.r: J = None
self.y: A = None
self.z: B = None
self.v: I = None
self.p: A = None
self.o: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: C = None
self.q: C = None
self.w: D = None
self.p: B = None
self.o: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: G = None
self.t: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: A = None
self.t: C = None
self.x: D = None
self.v: C = None
self.w: F = None
self.s: H = None
self.o: E = None
self.r: B = None
self.q: F = None
self.txt = txt
k = A("k")
g = B("g")
f = C("f")
a = D("a")
i = E("i")
j = F("j")
c = G("c")
n = H("n")
b = I("b")
m = J("m")
k.u = c
g.o = n
g.q = n
g.x = a
g.v = b
g.t = i
g.w = i
g.u = c
g.s = j
f.u = b
f.t = b
f.v = m
f.w = k
f.o = n
f.y = n
a.q = c
a.p = j
i.u = f
i.r = m
i.y = k
i.p = k
i.z = g
i.v = b
i.o = n
j.o = f
c.r = f
c.q = f
c.w = a
c.p = g
c.o = m
n.x = g
b.w = c
b.t = a
m.u = k
m.t = f
m.v = f
m.x = a
m.w = j
m.q = j
m.s = n
m.o = i
m.r = g
assert f.t.w.p.u.w.txt == "a" | 10 | 34 | 3.4 | 0.377778 | 10 | 1 | 9 | 1 | 4.2 | 5 | 2 | 1 | 5 | 0.5 | 5 | 0.147059 | 1 | 2 | 2 | 2 | 4 | 2 | 1 | 2 |
24,918 | class A:
def __init__(self, txt: str):
self.x: D = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: F = None
self.t: F = None
self.p: A = None
self.s: H = None
self.w: C = None
self.o: F = None
self.u: A = None
self.y: G = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.p: H = None
self.o: J = None
self.r: F = None
self.w: I = None
self.s: G = None
self.q: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.w: J = None
self.q: H = None
self.t: J = None
self.s: J = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: J = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: C = None
self.o: E = None
self.w: A = None
self.q: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: C = None
self.t: D = None
self.o: G = None
self.x: A = None
self.p: F = None
self.u: G = None
self.y: A = None
self.z: C = None
self.v: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: I = None
self.p: D = None
self.r: A = None
self.v: A = None
self.o: B = None
self.z: E = None
self.txt = txt
f = A("f")
b = B("b")
l = C("l")
g = D("g")
i = E("i")
j = F("j")
h = G("h")
n = H("n")
a = I("a")
d = J("d")
f.x = g
f.o = l
b.r = j
b.t = j
b.o = j
b.p = f
b.u = f
b.s = n
b.w = l
b.y = h
b.v = g
l.y = i
l.p = n
l.o = d
l.q = d
l.r = j
l.w = a
l.s = h
g.p = b
g.w = d
g.t = d
g.s = d
g.q = n
g.o = j
i.r = h
j.p = d
j.u = l
h.y = l
h.o = i
h.w = f
h.q = d
n.y = i
a.w = l
a.z = l
a.t = g
a.o = h
a.u = h
a.x = f
a.y = f
a.p = j
a.v = b
d.t = a
d.p = g
d.r = f
d.v = f
d.o = b
d.z = i
assert h.w.o.r.u.txt == " | l" | class A:
def __init__(self, txt: str):
self.x: D = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: F = None
self.t: F = None
self.p: A = None
self.s: H = None
self.w: C = None
self.o: F = None
self.u: A = None
self.y: G = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.p: H = None
self.o: J = None
self.r: F = None
self.w: I = None
self.s: G = None
self.q: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.w: J = None
self.q: H = None
self.t: J = None
self.s: J = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: J = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: C = None
self.o: E = None
self.w: A = None
self.q: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: C = None
self.t: D = None
self.o: G = None
self.x: A = None
self.p: F = None
self.u: G = None
self.y: A = None
self.z: C = None
self.v: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: I = None
self.p: D = None
self.r: A = None
self.v: A = None
self.o: B = None
self.z: E = None
self.txt = txt
f = A("f")
b = B("b")
l = C("l")
g = D("g")
i = E("i")
j = F("j")
h = G("h")
n = H("n")
a = I("a")
d = J("d")
f.x = g
f.o = l
b.r = j
b.t = j
b.o = j
b.p = f
b.u = f
b.s = n
b.w = l
b.y = h
b.v = g
l.y = i
l.p = n
l.o = d
l.q = d
l.r = j
l.w = a
l.s = h
g.p = b
g.w = d
g.t = d
g.s = d
g.q = n
g.o = j
i.r = h
j.p = d
j.u = l
h.y = l
h.o = i
h.w = f
h.q = d
n.y = i
a.w = l
a.z = l
a.t = g
a.o = h
a.u = h
a.x = f
a.y = f
a.p = j
a.v = b
d.t = a
d.p = g
d.r = f
d.v = f
d.o = b
d.z = i
assert h.w.o.r.u.txt == "l" | 10 | 37 | 3.7 | 0.411111 | 10 | 1 | 9 | 1 | 4.7 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.108108 | 1 | 2 | 2 | 2 | 4 | 1 | 1 | 1 |
24,919 | class A:
def __init__(self, txt: str):
self.z: B = None
self.r: F = None
self.w: G = None
self.s: F = None
self.t: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.p: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: H = None
self.x: H = None
self.s: I = None
self.y: D = None
self.p: A = None
self.u: E = None
self.r: F = None
self.z: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.o: H = None
self.z: F = None
self.y: A = None
self.u: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.t: F = None
self.o: H = None
self.x: A = None
self.w: I = None
self.v: G = None
self.q: F = None
self.z: I = None
self.s: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: I = None
self.s: G = None
self.t: D = None
self.r: D = None
self.q: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: F = None
self.y: J = None
self.q: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.u: E = None
self.w: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: H = None
self.t: F = None
self.p: F = None
self.q: B = None
self.y: F = None
self.u: A = None
self.w: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: F = None
self.s: I = None
self.r: A = None
self.txt = txt
j = A("j")
k = B("k")
l = C("l")
f = D("f")
d = E("d")
a = F("a")
h = G("h")
e = H("e")
g = I("g")
c = J("c")
j.z = k
j.r = a
j.s = a
j.w = h
j.t = h
k.w = f
k.p = e
l.v = e
l.x = e
l.s = g
l.y = f
l.p = j
l.u = d
l.r = a
l.z = c
f.p = h
f.o = e
f.z = a
f.y = j
f.u = j
d.p = f
d.t = a
d.q = a
d.o = e
d.x = j
d.w = g
d.z = g
d.v = h
d.s = l
a.y = g
a.s = h
a.t = f
a.r = f
a.q = d
h.u = a
h.q = a
h.y = c
e.u = d
e.w = j
g.r = e
g.w = e
g.t = a
g.p = a
g.y = a
g.q = k
g.u = j
c.q = a
c.s = g
c.r = j
assert a.q.x.r.q.s.p.w.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: B = None
self.r: F = None
self.w: G = None
self.s: F = None
self.t: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.p: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: H = None
self.x: H = None
self.s: I = None
self.y: D = None
self.p: A = None
self.u: E = None
self.r: F = None
self.z: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.o: H = None
self.z: F = None
self.y: A = None
self.u: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.t: F = None
self.o: H = None
self.x: A = None
self.w: I = None
self.v: G = None
self.q: F = None
self.z: I = None
self.s: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: I = None
self.s: G = None
self.t: D = None
self.r: D = None
self.q: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: F = None
self.y: J = None
self.q: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.u: E = None
self.w: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: H = None
self.t: F = None
self.p: F = None
self.q: B = None
self.y: F = None
self.u: A = None
self.w: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: F = None
self.s: I = None
self.r: A = None
self.txt = txt
j = A("j")
k = B("k")
l = C("l")
f = D("f")
d = E("d")
a = F("a")
h = G("h")
e = H("e")
g = I("g")
c = J("c")
j.z = k
j.r = a
j.s = a
j.w = h
j.t = h
k.w = f
k.p = e
l.v = e
l.x = e
l.s = g
l.y = f
l.p = j
l.u = d
l.r = a
l.z = c
f.p = h
f.o = e
f.z = a
f.y = j
f.u = j
d.p = f
d.t = a
d.q = a
d.o = e
d.x = j
d.w = g
d.z = g
d.v = h
d.s = l
a.y = g
a.s = h
a.t = f
a.r = f
a.q = d
h.u = a
h.q = a
h.y = c
e.u = d
e.w = j
g.r = e
g.w = e
g.t = a
g.p = a
g.y = a
g.q = k
g.u = j
c.q = a
c.s = g
c.r = j
assert a.q.x.r.q.s.p.w.txt == "h" | 10 | 38 | 3.8 | 0.422222 | 10 | 1 | 9 | 2 | 4.9 | 7 | 2 | 2 | 5 | 0.5 | 6 | 0.157895 | 3 | 3 | 4 | 3.333333 | 6 | 2 | 1 | 2 |
24,920 | class A:
def __init__(self, txt: str):
self.s: G = None
self.p: G = None
self.z: J = None
self.v: F = None
self.r: D = None
self.o: C = None
self.t: G = None
self.u: F = None
self.y: B = None
self.w: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: J = None
self.t: H = None
self.v: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.y: J = None
self.o: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: H = None
self.u: C = None
self.v: I = None
self.y: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: J = None
self.u: F = None
self.y: I = None
self.s: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: F = None
self.r: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: H = None
self.v: E = None
self.z: H = None
self.w: B = None
self.p: E = None
self.q: A = None
self.txt = txt
l = A("l")
i = B("i")
n = C("n")
c = D("c")
j = E("j")
g = F("g")
b = G("b")
k = H("k")
f = I("f")
a = J("a")
l.s = b
l.p = b
l.t = b
l.z = a
l.v = g
l.u = g
l.r = c
l.o = n
l.y = i
l.w = f
i.t = a
n.u = a
n.v = a
n.t = k
c.v = n
c.y = a
c.o = k
j.y = k
g.w = k
g.u = n
g.v = f
g.y = j
b.z = a
b.u = g
b.y = f
b.s = c
k.t = a
f.w = g
f.r = l
a.u = k
a.z = k
a.v = j
a.p = j
a.w = i
a.q = l
assert k.t.q.s.s.y.w.t.w.txt == " | i" | class A:
def __init__(self, txt: str):
self.s: G = None
self.p: G = None
self.z: J = None
self.v: F = None
self.r: D = None
self.o: C = None
self.t: G = None
self.u: F = None
self.y: B = None
self.w: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: J = None
self.t: H = None
self.v: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.y: J = None
self.o: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: H = None
self.u: C = None
self.v: I = None
self.y: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: J = None
self.u: F = None
self.y: I = None
self.s: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: F = None
self.r: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: H = None
self.v: E = None
self.z: H = None
self.w: B = None
self.p: E = None
self.q: A = None
self.txt = txt
l = A("l")
i = B("i")
n = C("n")
c = D("c")
j = E("j")
g = F("g")
b = G("b")
k = H("k")
f = I("f")
a = J("a")
l.s = b
l.p = b
l.t = b
l.z = a
l.v = g
l.u = g
l.r = c
l.o = n
l.y = i
l.w = f
i.t = a
n.u = a
n.v = a
n.t = k
c.v = n
c.y = a
c.o = k
j.y = k
g.w = k
g.u = n
g.v = f
g.y = j
b.z = a
b.u = g
b.y = f
b.s = c
k.t = a
f.w = g
f.r = l
a.u = k
a.z = k
a.v = j
a.p = j
a.w = i
a.q = l
assert k.t.q.s.s.y.w.t.w.txt == "i" | 10 | 29 | 2.9 | 0.322222 | 10 | 1 | 10 | 1 | 3.5 | 8 | 3 | 2 | 6 | 0.6 | 7 | 0.241379 | 3 | 2 | 6 | 3.5 | 5 | 2 | 2 | 2 |
24,921 | class A:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: I = None
self.q: I = None
self.p: B = None
self.t: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.y: G = None
self.x: C = None
self.u: H = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: A = None
self.y: G = None
self.o: G = None
self.z: E = None
self.w: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: E = None
self.z: E = None
self.w: E = None
self.x: A = None
self.y: F = None
self.u: C = None
self.o: E = None
self.r: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: C = None
self.q: B = None
self.w: F = None
self.z: E = None
self.u: D = None
self.t: G = None
self.r: E = None
self.y: A = None
self.o: I = None
self.p: G = None
self.txt = txt
h = A("h")
k = B("k")
d = C("d")
c = D("c")
a = E("a")
i = F("i")
f = G("f")
l = H("l")
m = I("m")
j = J("j")
h.r = f
k.y = c
d.w = m
d.q = m
d.p = k
d.t = j
c.z = l
a.t = c
a.y = f
a.s = f
a.x = d
a.u = l
i.t = h
i.y = f
i.o = f
i.z = a
i.w = m
f.v = a
l.p = a
l.z = a
l.w = a
l.o = a
l.x = h
l.y = i
l.u = d
l.r = c
m.r = c
j.x = d
j.q = k
j.w = i
j.z = a
j.r = a
j.u = c
j.t = f
j.p = f
j.y = h
j.o = m
assert a.s.v.t.z.y.o.txt == " | f" | class A:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: I = None
self.q: I = None
self.p: B = None
self.t: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.y: G = None
self.x: C = None
self.u: H = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: A = None
self.y: G = None
self.o: G = None
self.z: E = None
self.w: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: E = None
self.z: E = None
self.w: E = None
self.x: A = None
self.y: F = None
self.u: C = None
self.o: E = None
self.r: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: C = None
self.q: B = None
self.w: F = None
self.z: E = None
self.u: D = None
self.t: G = None
self.r: E = None
self.y: A = None
self.o: I = None
self.p: G = None
self.txt = txt
h = A("h")
k = B("k")
d = C("d")
c = D("c")
a = E("a")
i = F("i")
f = G("f")
l = H("l")
m = I("m")
j = J("j")
h.r = f
k.y = c
d.w = m
d.q = m
d.p = k
d.t = j
c.z = l
a.t = c
a.y = f
a.s = f
a.x = d
a.u = l
i.t = h
i.y = f
i.o = f
i.z = a
i.w = m
f.v = a
l.p = a
l.z = a
l.w = a
l.o = a
l.x = h
l.y = i
l.u = d
l.r = c
m.r = c
j.x = d
j.q = k
j.w = i
j.z = a
j.r = a
j.u = c
j.t = f
j.p = f
j.y = h
j.o = m
assert a.s.v.t.z.y.o.txt == "f" | 10 | 29 | 2.9 | 0.322222 | 10 | 1 | 10 | 1 | 3.7 | 6 | 2 | 1 | 5 | 0.5 | 6 | 0.206897 | 2 | 2 | 5 | 3.5 | 6 | 1 | 1 | 2 |
24,922 | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: G = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: F = None
self.q: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.r: I = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.o: I = None
self.x: G = None
self.w: I = None
self.t: B = None
self.u: F = None
self.s: J = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: H = None
self.z: E = None
self.r: B = None
self.p: H = None
self.w: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: G = None
self.v: G = None
self.s: G = None
self.r: B = None
self.y: I = None
self.q: I = None
self.z: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: F = None
self.s: D = None
self.w: G = None
self.r: B = None
self.p: J = None
self.v: H = None
self.t: J = None
self.o: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: I = None
self.v: B = None
self.t: F = None
self.z: B = None
self.r: G = None
self.o: H = None
self.p: G = None
self.u: G = None
self.x: C = None
self.w: A = None
self.txt = txt
b = A("b")
i = B("i")
a = C("a")
f = D("f")
c = E("c")
l = F("l")
k = G("k")
g = H("g")
n = I("n")
e = J("e")
b.s = i
b.y = k
b.o = c
i.s = n
a.o = l
a.q = e
f.y = i
f.r = n
f.o = a
c.v = f
c.o = n
c.w = n
c.x = k
c.t = i
c.u = l
c.r = l
c.s = e
l.q = g
l.p = g
l.z = c
l.w = c
l.r = i
k.v = i
g.o = k
g.v = k
g.s = k
g.r = i
g.y = n
g.q = n
g.z = f
n.z = l
n.s = f
n.w = k
n.r = i
n.p = e
n.t = e
n.v = g
n.o = g
e.q = n
e.v = i
e.z = i
e.t = l
e.r = k
e.p = k
e.u = k
e.o = g
e.x = a
e.w = b
assert e.q.z.z.x.v.s.w.v.s.txt == " | n" | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: G = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: F = None
self.q: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.r: I = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.o: I = None
self.x: G = None
self.w: I = None
self.t: B = None
self.u: F = None
self.s: J = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: H = None
self.z: E = None
self.r: B = None
self.p: H = None
self.w: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: G = None
self.v: G = None
self.s: G = None
self.r: B = None
self.y: I = None
self.q: I = None
self.z: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: F = None
self.s: D = None
self.w: G = None
self.r: B = None
self.p: J = None
self.v: H = None
self.t: J = None
self.o: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: I = None
self.v: B = None
self.t: F = None
self.z: B = None
self.r: G = None
self.o: H = None
self.p: G = None
self.u: G = None
self.x: C = None
self.w: A = None
self.txt = txt
b = A("b")
i = B("i")
a = C("a")
f = D("f")
c = E("c")
l = F("l")
k = G("k")
g = H("g")
n = I("n")
e = J("e")
b.s = i
b.y = k
b.o = c
i.s = n
a.o = l
a.q = e
f.y = i
f.r = n
f.o = a
c.v = f
c.o = n
c.w = n
c.x = k
c.t = i
c.u = l
c.r = l
c.s = e
l.q = g
l.p = g
l.z = c
l.w = c
l.r = i
k.v = i
g.o = k
g.v = k
g.s = k
g.r = i
g.y = n
g.q = n
g.z = f
n.z = l
n.s = f
n.w = k
n.r = i
n.p = e
n.t = e
n.v = g
n.o = g
e.q = n
e.v = i
e.z = i
e.t = l
e.r = k
e.p = k
e.u = k
e.o = g
e.x = a
e.w = b
assert e.q.z.z.x.v.s.w.v.s.txt == "n" | 10 | 36 | 3.6 | 0.4 | 10 | 1 | 10 | 1 | 4.8 | 9 | 3 | 2 | 6 | 0.6 | 7 | 0.194444 | 4 | 3 | 8 | 4.4 | 6 | 2 | 2 | 2 |
24,923 | class A:
def __init__(self, txt: str):
self.y: E = None
self.r: J = None
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.y: D = None
self.v: A = None
self.p: F = None
self.s: I = None
self.z: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.p: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.q: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: H = None
self.s: D = None
self.u: E = None
self.t: E = None
self.w: F = None
self.r: C = None
self.o: F = None
self.v: A = None
self.q: E = None
self.x: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: A = None
self.x: G = None
self.y: A = None
self.s: B = None
self.w: B = None
self.r: D = None
self.txt = txt
n = A("n")
e = B("e")
h = C("h")
b = D("b")
k = E("k")
f = F("f")
j = G("j")
a = H("a")
d = I("d")
c = J("c")
n.y = k
n.r = c
n.z = f
e.t = n
e.v = n
e.y = b
e.p = f
e.s = d
e.z = a
h.v = f
b.r = d
k.s = d
f.q = j
f.p = d
j.t = k
j.q = e
a.r = e
d.p = a
d.s = b
d.u = k
d.t = k
d.q = k
d.w = f
d.o = f
d.r = h
d.v = n
d.x = e
c.o = n
c.y = n
c.x = j
c.s = e
c.w = e
c.r = b
assert b.r.s.r.r.v.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: E = None
self.r: J = None
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.y: D = None
self.v: A = None
self.p: F = None
self.s: I = None
self.z: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.p: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.q: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: H = None
self.s: D = None
self.u: E = None
self.t: E = None
self.w: F = None
self.r: C = None
self.o: F = None
self.v: A = None
self.q: E = None
self.x: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: A = None
self.x: G = None
self.y: A = None
self.s: B = None
self.w: B = None
self.r: D = None
self.txt = txt
n = A("n")
e = B("e")
h = C("h")
b = D("b")
k = E("k")
f = F("f")
j = G("j")
a = H("a")
d = I("d")
c = J("c")
n.y = k
n.r = c
n.z = f
e.t = n
e.v = n
e.y = b
e.p = f
e.s = d
e.z = a
h.v = f
b.r = d
k.s = d
f.q = j
f.p = d
j.t = k
j.q = e
a.r = e
d.p = a
d.s = b
d.u = k
d.t = k
d.q = k
d.w = f
d.o = f
d.r = h
d.v = n
d.x = e
c.o = n
c.y = n
c.x = j
c.s = e
c.w = e
c.r = b
assert b.r.s.r.r.v.txt == "f" | 10 | 27 | 2.7 | 0.3 | 10 | 1 | 10 | 1 | 3.3 | 5 | 2 | 2 | 4 | 0.4 | 4 | 0.148148 | 2 | 2 | 2 | 2 | 3 | 3 | 2 | 2 |
24,924 | class A:
def __init__(self, txt: str):
self.w: F = None
self.t: G = None
self.v: H = None
self.q: J = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.p: D = None
self.z: B = None
self.w: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: J = None
self.w: G = None
self.v: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: C = None
self.p: D = None
self.x: J = None
self.u: C = None
self.y: H = None
self.r: G = None
self.q: J = None
self.z: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: D = None
self.r: J = None
self.v: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.p: B = None
self.o: I = None
self.r: B = None
self.x: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: E = None
self.x: G = None
self.r: D = None
self.z: E = None
self.t: H = None
self.p: B = None
self.w: B = None
self.txt = txt
f = A("f")
j = B("j")
c = C("c")
a = D("a")
h = E("h")
i = F("i")
k = G("k")
b = H("b")
l = I("l")
d = J("d")
f.w = i
f.t = k
f.v = b
f.q = d
f.r = c
j.u = a
c.u = f
c.p = a
c.z = j
c.w = l
a.r = h
h.q = d
h.w = k
h.v = b
i.v = c
i.u = c
i.p = a
i.z = a
i.x = d
i.q = d
i.y = b
i.r = k
k.w = a
k.r = d
k.v = c
b.z = k
b.x = k
b.p = j
b.r = j
b.o = l
l.x = f
d.u = h
d.z = h
d.x = k
d.r = a
d.t = b
d.p = j
d.w = j
assert c.p.r.q.u.w.txt == " | k" | class A:
def __init__(self, txt: str):
self.w: F = None
self.t: G = None
self.v: H = None
self.q: J = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.p: D = None
self.z: B = None
self.w: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: J = None
self.w: G = None
self.v: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: C = None
self.p: D = None
self.x: J = None
self.u: C = None
self.y: H = None
self.r: G = None
self.q: J = None
self.z: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: D = None
self.r: J = None
self.v: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.p: B = None
self.o: I = None
self.r: B = None
self.x: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: E = None
self.x: G = None
self.r: D = None
self.z: E = None
self.t: H = None
self.p: B = None
self.w: B = None
self.txt = txt
f = A("f")
j = B("j")
c = C("c")
a = D("a")
h = E("h")
i = F("i")
k = G("k")
b = H("b")
l = I("l")
d = J("d")
f.w = i
f.t = k
f.v = b
f.q = d
f.r = c
j.u = a
c.u = f
c.p = a
c.z = j
c.w = l
a.r = h
h.q = d
h.w = k
h.v = b
i.v = c
i.u = c
i.p = a
i.z = a
i.x = d
i.q = d
i.y = b
i.r = k
k.w = a
k.r = d
k.v = c
b.z = k
b.x = k
b.p = j
b.r = j
b.o = l
l.x = f
d.u = h
d.z = h
d.x = k
d.r = a
d.t = b
d.p = j
d.w = j
assert c.p.r.q.u.w.txt == "k" | 10 | 31 | 3.1 | 0.344444 | 10 | 1 | 8 | 1 | 3.8 | 5 | 2 | 1 | 5 | 0.5 | 5 | 0.16129 | 1 | 2 | 2 | 2 | 5 | 1 | 1 | 2 |
24,925 | class A:
def __init__(self, txt: str):
self.y: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.z: D = None
self.w: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.p: G = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.x: D = None
self.z: G = None
self.r: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: I = None
self.r: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: C = None
self.z: D = None
self.r: C = None
self.x: B = None
self.v: A = None
self.w: F = None
self.q: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: A = None
self.t: J = None
self.q: A = None
self.r: F = None
self.o: F = None
self.y: A = None
self.v: E = None
self.w: F = None
self.z: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: E = None
self.x: G = None
self.u: F = None
self.z: E = None
self.w: G = None
self.p: G = None
self.q: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.z: B = None
self.t: A = None
self.r: A = None
self.o: H = None
self.v: I = None
self.x: E = None
self.txt = txt
m = A("m")
e = B("e")
i = C("i")
j = D("j")
n = E("n")
g = F("g")
f = G("f")
a = H("a")
k = I("k")
b = J("b")
m.y = k
e.s = g
i.x = e
i.z = j
i.w = b
j.q = m
j.o = m
j.p = f
n.q = f
n.z = f
n.x = j
n.r = a
g.w = k
g.r = j
f.s = i
f.r = i
f.z = j
f.x = e
f.v = m
f.q = m
f.w = g
a.p = m
a.q = m
a.y = m
a.t = b
a.r = g
a.o = g
a.w = g
a.v = n
a.z = f
k.t = n
k.z = n
k.x = f
k.w = f
k.p = f
k.u = g
k.q = j
b.z = e
b.t = m
b.r = m
b.o = a
b.v = k
b.x = n
assert m.y.q.p.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.z: D = None
self.w: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.p: G = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.x: D = None
self.z: G = None
self.r: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: I = None
self.r: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: C = None
self.z: D = None
self.r: C = None
self.x: B = None
self.v: A = None
self.w: F = None
self.q: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: A = None
self.t: J = None
self.q: A = None
self.r: F = None
self.o: F = None
self.y: A = None
self.v: E = None
self.w: F = None
self.z: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: E = None
self.x: G = None
self.u: F = None
self.z: E = None
self.w: G = None
self.p: G = None
self.q: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.z: B = None
self.t: A = None
self.r: A = None
self.o: H = None
self.v: I = None
self.x: E = None
self.txt = txt
m = A("m")
e = B("e")
i = C("i")
j = D("j")
n = E("n")
g = F("g")
f = G("f")
a = H("a")
k = I("k")
b = J("b")
m.y = k
e.s = g
i.x = e
i.z = j
i.w = b
j.q = m
j.o = m
j.p = f
n.q = f
n.z = f
n.x = j
n.r = a
g.w = k
g.r = j
f.s = i
f.r = i
f.z = j
f.x = e
f.v = m
f.q = m
f.w = g
a.p = m
a.q = m
a.y = m
a.t = b
a.r = g
a.o = g
a.w = g
a.v = n
a.z = f
k.t = n
k.z = n
k.x = f
k.w = f
k.p = f
k.u = g
k.q = j
b.z = e
b.t = m
b.r = m
b.o = a
b.v = k
b.x = n
assert m.y.q.p.txt == "f" | 10 | 31 | 3.1 | 0.344444 | 10 | 1 | 9 | 1 | 4.3 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.096774 | 0 | null | null | null | 3 | 1 | 1 | 1 |
24,926 | class A:
def __init__(self, txt: str):
self.w: G = None
self.t: J = None
self.z: E = None
self.p: B = None
self.u: I = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: F = None
self.o: I = None
self.s: E = None
self.x: I = None
self.t: H = None
self.r: A = None
self.q: D = None
self.p: C = None
self.y: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.q: F = None
self.y: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: H = None
self.u: G = None
self.z: J = None
self.w: H = None
self.x: J = None
self.v: C = None
self.y: E = None
self.o: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: H = None
self.v: F = None
self.o: D = None
self.w: J = None
self.r: B = None
self.q: C = None
self.u: C = None
self.p: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: A = None
self.w: D = None
self.p: A = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: C = None
self.z: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: I = None
self.w: I = None
self.u: A = None
self.p: C = None
self.z: G = None
self.r: D = None
self.q: D = None
self.y: J = None
self.v: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: H = None
self.z: J = None
self.p: F = None
self.u: J = None
self.w: C = None
self.o: D = None
self.y: G = None
self.v: A = None
self.s: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: A = None
self.q: G = None
self.o: D = None
self.y: E = None
self.u: I = None
self.r: I = None
self.z: I = None
self.txt = txt
c = A("c")
i = B("i")
h = C("h")
j = D("j")
m = E("m")
g = F("g")
k = G("k")
f = H("f")
l = I("l")
d = J("d")
c.w = k
c.t = d
c.z = m
c.p = i
c.r = i
c.u = l
i.u = g
i.o = l
i.x = l
i.s = m
i.t = f
i.r = c
i.q = j
i.p = h
i.y = d
h.u = i
h.q = g
h.y = l
j.p = f
j.w = f
j.u = k
j.z = d
j.x = d
j.v = h
j.y = m
j.o = m
m.z = f
m.v = g
m.o = j
m.w = d
m.r = i
m.q = h
m.u = h
m.p = c
g.x = c
g.p = c
g.z = c
g.w = j
k.s = h
k.z = i
f.s = l
f.w = l
f.u = c
f.p = h
f.z = k
f.r = j
f.q = j
f.y = d
f.v = d
l.r = f
l.z = d
l.u = d
l.p = g
l.w = h
l.o = j
l.y = k
l.v = c
l.s = i
d.w = c
d.q = k
d.o = j
d.y = m
d.u = l
d.r = l
d.z = l
assert l.s.r.w.z.o.txt == " | l" | class A:
def __init__(self, txt: str):
self.w: G = None
self.t: J = None
self.z: E = None
self.p: B = None
self.u: I = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: F = None
self.o: I = None
self.s: E = None
self.x: I = None
self.t: H = None
self.r: A = None
self.q: D = None
self.p: C = None
self.y: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.q: F = None
self.y: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: H = None
self.u: G = None
self.z: J = None
self.w: H = None
self.x: J = None
self.v: C = None
self.y: E = None
self.o: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: H = None
self.v: F = None
self.o: D = None
self.w: J = None
self.r: B = None
self.q: C = None
self.u: C = None
self.p: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: A = None
self.w: D = None
self.p: A = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: C = None
self.z: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: I = None
self.w: I = None
self.u: A = None
self.p: C = None
self.z: G = None
self.r: D = None
self.q: D = None
self.y: J = None
self.v: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: H = None
self.z: J = None
self.p: F = None
self.u: J = None
self.w: C = None
self.o: D = None
self.y: G = None
self.v: A = None
self.s: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: A = None
self.q: G = None
self.o: D = None
self.y: E = None
self.u: I = None
self.r: I = None
self.z: I = None
self.txt = txt
c = A("c")
i = B("i")
h = C("h")
j = D("j")
m = E("m")
g = F("g")
k = G("k")
f = H("f")
l = I("l")
d = J("d")
c.w = k
c.t = d
c.z = m
c.p = i
c.r = i
c.u = l
i.u = g
i.o = l
i.x = l
i.s = m
i.t = f
i.r = c
i.q = j
i.p = h
i.y = d
h.u = i
h.q = g
h.y = l
j.p = f
j.w = f
j.u = k
j.z = d
j.x = d
j.v = h
j.y = m
j.o = m
m.z = f
m.v = g
m.o = j
m.w = d
m.r = i
m.q = h
m.u = h
m.p = c
g.x = c
g.p = c
g.z = c
g.w = j
k.s = h
k.z = i
f.s = l
f.w = l
f.u = c
f.p = h
f.z = k
f.r = j
f.q = j
f.y = d
f.v = d
l.r = f
l.z = d
l.u = d
l.p = g
l.w = h
l.o = j
l.y = k
l.v = c
l.s = i
d.w = c
d.q = k
d.o = j
d.y = m
d.u = l
d.r = l
d.z = l
assert l.s.r.w.z.o.txt == "l" | 10 | 51 | 5.1 | 0.566667 | 10 | 1 | 9 | 2 | 6.5 | 5 | 2 | 1 | 4 | 0.4 | 5 | 0.098039 | 2 | 3 | 5 | 4 | 5 | 1 | 1 | 2 |
24,927 | class A:
def __init__(self, txt: str):
self.z: E = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.y: J = None
self.u: J = None
self.v: A = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: J = None
self.v: D = None
self.y: A = None
self.p: E = None
self.x: D = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.t: A = None
self.o: F = None
self.x: F = None
self.q: G = None
self.v: I = None
self.p: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.q: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: H = None
self.x: A = None
self.w: E = None
self.s: J = None
self.z: E = None
self.u: J = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: B = None
self.r: J = None
self.w: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.q: I = None
self.u: G = None
self.p: D = None
self.o: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: A = None
self.u: C = None
self.o: H = None
self.x: A = None
self.p: A = None
self.z: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: A = None
self.q: I = None
self.r: A = None
self.u: E = None
self.t: F = None
self.x: E = None
self.y: I = None
self.z: F = None
self.o: B = None
self.txt = txt
c = A("c")
h = B("h")
j = C("j")
i = D("i")
m = E("m")
g = F("g")
d = G("d")
e = H("e")
f = I("f")
l = J("l")
c.z = m
c.u = g
h.q = i
h.y = l
h.u = l
h.v = c
h.s = m
j.w = l
j.v = i
j.x = i
j.y = c
j.p = m
j.s = h
i.s = g
i.o = g
i.x = g
i.t = c
i.q = d
i.p = d
i.v = f
m.u = j
m.q = d
g.v = e
g.x = c
g.w = m
g.z = m
g.s = l
g.u = l
d.y = h
d.r = l
d.w = j
e.z = d
e.u = d
e.y = h
e.o = h
e.q = f
e.p = i
f.w = c
f.x = c
f.p = c
f.u = j
f.z = j
f.o = e
l.s = c
l.r = c
l.q = f
l.y = f
l.u = m
l.x = m
l.t = g
l.z = g
l.o = h
assert l.o.u.t.x.u.z.u.txt == " | j" | class A:
def __init__(self, txt: str):
self.z: E = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.y: J = None
self.u: J = None
self.v: A = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: J = None
self.v: D = None
self.y: A = None
self.p: E = None
self.x: D = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.t: A = None
self.o: F = None
self.x: F = None
self.q: G = None
self.v: I = None
self.p: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.q: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: H = None
self.x: A = None
self.w: E = None
self.s: J = None
self.z: E = None
self.u: J = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: B = None
self.r: J = None
self.w: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: G = None
self.y: B = None
self.q: I = None
self.u: G = None
self.p: D = None
self.o: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: A = None
self.u: C = None
self.o: H = None
self.x: A = None
self.p: A = None
self.z: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: A = None
self.q: I = None
self.r: A = None
self.u: E = None
self.t: F = None
self.x: E = None
self.y: I = None
self.z: F = None
self.o: B = None
self.txt = txt
c = A("c")
h = B("h")
j = C("j")
i = D("i")
m = E("m")
g = F("g")
d = G("d")
e = H("e")
f = I("f")
l = J("l")
c.z = m
c.u = g
h.q = i
h.y = l
h.u = l
h.v = c
h.s = m
j.w = l
j.v = i
j.x = i
j.y = c
j.p = m
j.s = h
i.s = g
i.o = g
i.x = g
i.t = c
i.q = d
i.p = d
i.v = f
m.u = j
m.q = d
g.v = e
g.x = c
g.w = m
g.z = m
g.s = l
g.u = l
d.y = h
d.r = l
d.w = j
e.z = d
e.u = d
e.y = h
e.o = h
e.q = f
e.p = i
f.w = c
f.x = c
f.p = c
f.u = j
f.z = j
f.o = e
l.s = c
l.r = c
l.q = f
l.y = f
l.u = m
l.x = m
l.t = g
l.z = g
l.o = h
assert l.o.u.t.x.u.z.u.txt == "j" | 10 | 36 | 3.6 | 0.4 | 10 | 1 | 9 | 2 | 5.2 | 7 | 2 | 1 | 6 | 0.6 | 7 | 0.194444 | 2 | 2 | 2 | 2 | 5 | 3 | 1 | 2 |
24,928 | class A:
def __init__(self, txt: str):
self.r: B = None
self.s: B = None
self.u: J = None
self.p: I = None
self.o: D = None
self.w: D = None
self.v: J = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.r: J = None
self.q: G = None
self.o: C = None
self.x: E = None
self.u: I = None
self.z: H = None
self.p: G = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.p: J = None
self.u: H = None
self.y: E = None
self.o: H = None
self.r: I = None
self.z: B = None
self.x: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: H = None
self.s: A = None
self.t: I = None
self.q: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: I = None
self.r: A = None
self.w: C = None
self.t: C = None
self.q: D = None
self.z: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.x: J = None
self.q: H = None
self.w: J = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: J = None
self.t: H = None
self.v: I = None
self.r: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.s: A = None
self.u: G = None
self.r: C = None
self.v: J = None
self.y: J = None
self.x: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: D = None
self.y: B = None
self.v: D = None
self.p: E = None
self.x: D = None
self.q: G = None
self.txt = txt
c = A("c")
i = B("i")
b = C("b")
h = D("h")
a = E("a")
l = F("l")
k = G("k")
f = H("f")
g = I("g")
n = J("n")
c.r = i
c.s = i
c.u = n
c.v = n
c.p = g
c.o = h
c.w = h
c.y = h
i.y = b
i.o = b
i.r = n
i.q = k
i.p = k
i.x = a
i.u = g
i.z = f
i.t = c
b.v = i
b.z = i
b.p = n
b.u = f
b.o = f
b.y = a
b.r = g
b.x = l
h.x = f
h.s = c
h.t = g
h.q = a
a.p = g
a.r = c
a.w = b
a.t = b
a.q = h
a.z = h
l.z = f
l.q = f
l.x = n
l.w = n
k.y = n
k.t = f
k.v = g
k.r = b
f.u = c
g.s = c
g.u = k
g.r = b
g.v = n
g.y = n
g.x = f
n.s = h
n.v = h
n.x = h
n.y = i
n.p = a
n.q = k
assert f.u.r.t.s.z.u.w.s.p.x.txt == " | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.s: B = None
self.u: J = None
self.p: I = None
self.o: D = None
self.w: D = None
self.v: J = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.r: J = None
self.q: G = None
self.o: C = None
self.x: E = None
self.u: I = None
self.z: H = None
self.p: G = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.p: J = None
self.u: H = None
self.y: E = None
self.o: H = None
self.r: I = None
self.z: B = None
self.x: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: H = None
self.s: A = None
self.t: I = None
self.q: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: I = None
self.r: A = None
self.w: C = None
self.t: C = None
self.q: D = None
self.z: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.x: J = None
self.q: H = None
self.w: J = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: J = None
self.t: H = None
self.v: I = None
self.r: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.s: A = None
self.u: G = None
self.r: C = None
self.v: J = None
self.y: J = None
self.x: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: D = None
self.y: B = None
self.v: D = None
self.p: E = None
self.x: D = None
self.q: G = None
self.txt = txt
c = A("c")
i = B("i")
b = C("b")
h = D("h")
a = E("a")
l = F("l")
k = G("k")
f = H("f")
g = I("g")
n = J("n")
c.r = i
c.s = i
c.u = n
c.v = n
c.p = g
c.o = h
c.w = h
c.y = h
i.y = b
i.o = b
i.r = n
i.q = k
i.p = k
i.x = a
i.u = g
i.z = f
i.t = c
b.v = i
b.z = i
b.p = n
b.u = f
b.o = f
b.y = a
b.r = g
b.x = l
h.x = f
h.s = c
h.t = g
h.q = a
a.p = g
a.r = c
a.w = b
a.t = b
a.q = h
a.z = h
l.z = f
l.q = f
l.x = n
l.w = n
k.y = n
k.t = f
k.v = g
k.r = b
f.u = c
g.s = c
g.u = k
g.r = b
g.v = n
g.y = n
g.x = f
n.s = h
n.v = h
n.x = h
n.y = i
n.p = a
n.q = k
assert f.u.r.t.s.z.u.w.s.p.x.txt == "f" | 10 | 41 | 4.1 | 0.455556 | 10 | 1 | 9 | 1 | 5.6 | 10 | 4 | 2 | 5 | 0.5 | 9 | 0.219512 | 6 | 2 | 10 | 4.6 | 8 | 2 | 1 | 4 |
24,929 | class A:
def __init__(self, txt: str):
self.v: J = None
self.p: J = None
self.s: B = None
self.u: F = None
self.t: I = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: D = None
self.w: C = None
self.z: C = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.u: E = None
self.x: B = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: J = None
self.x: B = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.x: C = None
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: D = None
self.s: H = None
self.x: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: B = None
self.r: H = None
self.x: J = None
self.v: H = None
self.z: D = None
self.q: H = None
self.p: J = None
self.t: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: I = None
self.s: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: J = None
self.z: H = None
self.y: H = None
self.v: F = None
self.t: B = None
self.p: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
n = A("n")
m = B("m")
k = C("k")
b = D("b")
a = E("a")
e = F("e")
i = G("i")
g = H("g")
d = I("d")
c = J("c")
n.v = c
n.p = c
n.s = m
n.o = m
n.u = e
n.t = d
m.o = b
m.w = k
m.z = k
m.v = n
k.s = b
k.y = b
k.u = a
k.x = m
b.z = c
b.x = m
b.t = k
a.t = k
a.x = k
a.o = e
e.q = b
e.s = g
e.x = a
i.y = m
i.t = m
i.r = g
i.v = g
i.q = g
i.x = c
i.p = c
i.z = b
g.p = d
g.s = i
d.q = c
d.z = g
d.y = g
d.v = e
d.t = m
d.p = i
c.u = m
assert k.u.t.s.x.o.txt == " | b" | class A:
def __init__(self, txt: str):
self.v: J = None
self.p: J = None
self.s: B = None
self.u: F = None
self.t: I = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: D = None
self.w: C = None
self.z: C = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.u: E = None
self.x: B = None
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: J = None
self.x: B = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.x: C = None
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: D = None
self.s: H = None
self.x: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: B = None
self.r: H = None
self.x: J = None
self.v: H = None
self.z: D = None
self.q: H = None
self.p: J = None
self.t: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: I = None
self.s: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: J = None
self.z: H = None
self.y: H = None
self.v: F = None
self.t: B = None
self.p: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
n = A("n")
m = B("m")
k = C("k")
b = D("b")
a = E("a")
e = F("e")
i = G("i")
g = H("g")
d = I("d")
c = J("c")
n.v = c
n.p = c
n.s = m
n.o = m
n.u = e
n.t = d
m.o = b
m.w = k
m.z = k
m.v = n
k.s = b
k.y = b
k.u = a
k.x = m
b.z = c
b.x = m
b.t = k
a.t = k
a.x = k
a.o = e
e.q = b
e.s = g
e.x = a
i.y = m
i.t = m
i.r = g
i.v = g
i.q = g
i.x = c
i.p = c
i.z = b
g.p = d
g.s = i
d.q = c
d.z = g
d.y = g
d.v = e
d.t = m
d.p = i
c.u = m
assert k.u.t.s.x.o.txt == "b" | 10 | 30 | 3 | 0.333333 | 10 | 1 | 8 | 1 | 4 | 5 | 2 | 1 | 4 | 0.4 | 5 | 0.166667 | 2 | 2 | 2 | 2 | 5 | 1 | 1 | 2 |
24,930 | class A:
def __init__(self, txt: str):
self.x: H = None
self.q: F = None
self.v: E = None
self.r: E = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.t: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: J = None
self.x: B = None
self.s: J = None
self.p: B = None
self.u: I = None
self.o: E = None
self.v: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.t: F = None
self.w: A = None
self.q: I = None
self.s: B = None
self.y: J = None
self.v: J = None
self.o: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.o: J = None
self.p: C = None
self.r: J = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: J = None
self.o: B = None
self.y: B = None
self.s: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: D = None
self.q: F = None
self.x: D = None
self.t: C = None
self.v: F = None
self.y: D = None
self.w: G = None
self.u: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: B = None
self.y: A = None
self.w: F = None
self.t: F = None
self.txt = txt
i = A("i")
f = B("f")
g = C("g")
k = D("k")
c = E("c")
d = F("d")
a = G("a")
h = H("h")
e = I("e")
l = J("l")
i.x = h
i.q = d
i.v = c
i.r = c
i.s = k
f.u = c
f.t = l
g.w = l
g.s = l
g.x = f
g.p = f
g.u = e
g.o = c
g.v = k
k.x = g
c.r = k
c.t = d
c.w = i
c.q = e
c.s = f
c.y = l
c.v = l
c.o = h
d.s = i
d.o = l
d.r = l
d.p = g
a.q = l
a.o = f
a.y = f
a.s = k
h.r = k
h.x = k
h.y = k
h.q = d
h.v = d
h.t = g
h.u = g
h.w = a
e.w = d
l.u = f
l.y = i
l.w = d
l.t = d
assert k.x.p.u.s.t.u.t.u.txt == " | f" | class A:
def __init__(self, txt: str):
self.x: H = None
self.q: F = None
self.v: E = None
self.r: E = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.t: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: J = None
self.x: B = None
self.s: J = None
self.p: B = None
self.u: I = None
self.o: E = None
self.v: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.t: F = None
self.w: A = None
self.q: I = None
self.s: B = None
self.y: J = None
self.v: J = None
self.o: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.o: J = None
self.p: C = None
self.r: J = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: J = None
self.o: B = None
self.y: B = None
self.s: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: D = None
self.q: F = None
self.x: D = None
self.t: C = None
self.v: F = None
self.y: D = None
self.w: G = None
self.u: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: B = None
self.y: A = None
self.w: F = None
self.t: F = None
self.txt = txt
i = A("i")
f = B("f")
g = C("g")
k = D("k")
c = E("c")
d = F("d")
a = G("a")
h = H("h")
e = I("e")
l = J("l")
i.x = h
i.q = d
i.v = c
i.r = c
i.s = k
f.u = c
f.t = l
g.w = l
g.s = l
g.x = f
g.p = f
g.u = e
g.o = c
g.v = k
k.x = g
c.r = k
c.t = d
c.w = i
c.q = e
c.s = f
c.y = l
c.v = l
c.o = h
d.s = i
d.o = l
d.r = l
d.p = g
a.q = l
a.o = f
a.y = f
a.s = k
h.r = k
h.x = k
h.y = k
h.q = d
h.v = d
h.t = g
h.u = g
h.w = a
e.w = d
l.u = f
l.y = i
l.w = d
l.t = d
assert k.x.p.u.s.t.u.t.u.txt == "f" | 10 | 33 | 3.3 | 0.366667 | 10 | 1 | 8 | 1 | 4.4 | 8 | 4 | 2 | 5 | 0.5 | 6 | 0.181818 | 4 | 2 | 6 | 3.142857 | 5 | 3 | 1 | 2 |
24,931 | class A:
def __init__(self, txt: str):
self.x: F = None
self.q: B = None
self.y: D = None
self.v: D = None
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: I = None
self.p: I = None
self.u: I = None
self.z: D = None
self.y: G = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: J = None
self.o: H = None
self.y: I = None
self.x: I = None
self.v: F = None
self.s: B = None
self.t: D = None
self.w: B = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.z: E = None
self.x: A = None
self.u: F = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: H = None
self.r: C = None
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: I = None
self.z: D = None
self.x: B = None
self.r: D = None
self.t: B = None
self.y: B = None
self.w: I = None
self.p: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: B = None
self.r: B = None
self.u: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: E = None
self.s: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: A = None
self.s: A = None
self.q: F = None
self.z: G = None
self.v: I = None
self.t: G = None
self.o: A = None
self.txt = txt
b = A("b")
k = B("k")
l = C("l")
f = D("f")
m = E("m")
a = F("a")
g = G("g")
j = H("j")
d = I("d")
n = J("n")
b.x = a
b.q = k
b.y = f
b.v = f
b.o = g
k.w = d
k.p = d
k.u = d
k.z = f
k.t = f
k.y = g
l.r = n
l.o = j
l.y = d
l.x = d
l.v = a
l.s = k
l.w = k
l.q = k
l.t = f
f.w = k
f.z = m
f.x = b
f.u = a
f.r = a
m.r = a
a.x = j
a.r = l
a.y = f
g.s = d
g.w = d
g.z = f
g.r = f
g.x = k
g.t = k
g.y = k
g.p = n
j.p = k
j.r = k
j.u = l
d.v = m
d.s = f
n.r = b
n.s = b
n.o = b
n.q = a
n.z = g
n.t = g
n.v = d
assert l.s.w.v.r.x.u.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.x: F = None
self.q: B = None
self.y: D = None
self.v: D = None
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: I = None
self.p: I = None
self.u: I = None
self.z: D = None
self.y: G = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: J = None
self.o: H = None
self.y: I = None
self.x: I = None
self.v: F = None
self.s: B = None
self.t: D = None
self.w: B = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.z: E = None
self.x: A = None
self.u: F = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: H = None
self.r: C = None
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: I = None
self.z: D = None
self.x: B = None
self.r: D = None
self.t: B = None
self.y: B = None
self.w: I = None
self.p: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: B = None
self.r: B = None
self.u: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: E = None
self.s: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: A = None
self.s: A = None
self.q: F = None
self.z: G = None
self.v: I = None
self.t: G = None
self.o: A = None
self.txt = txt
b = A("b")
k = B("k")
l = C("l")
f = D("f")
m = E("m")
a = F("a")
g = G("g")
j = H("j")
d = I("d")
n = J("n")
b.x = a
b.q = k
b.y = f
b.v = f
b.o = g
k.w = d
k.p = d
k.u = d
k.z = f
k.t = f
k.y = g
l.r = n
l.o = j
l.y = d
l.x = d
l.v = a
l.s = k
l.w = k
l.q = k
l.t = f
f.w = k
f.z = m
f.x = b
f.u = a
f.r = a
m.r = a
a.x = j
a.r = l
a.y = f
g.s = d
g.w = d
g.z = f
g.r = f
g.x = k
g.t = k
g.y = k
g.p = n
j.p = k
j.r = k
j.u = l
d.v = m
d.s = f
n.r = b
n.s = b
n.o = b
n.q = a
n.z = g
n.t = g
n.v = d
assert l.s.w.v.r.x.u.y.txt == "d" | 10 | 33 | 3.3 | 0.366667 | 10 | 1 | 9 | 1 | 4.9 | 7 | 2 | 1 | 6 | 0.6 | 7 | 0.212121 | 2 | 5 | 6 | 5.5 | 7 | 1 | 1 | 2 |
24,932 | class A:
def __init__(self, txt: str):
self.o: D = None
self.p: D = None
self.r: D = None
self.s: I = None
self.q: E = None
self.y: J = None
self.v: I = None
self.z: J = None
self.w: H = None
self.u: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: E = None
self.u: I = None
self.y: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: E = None
self.p: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: J = None
self.x: G = None
self.r: G = None
self.t: A = None
self.z: G = None
self.o: C = None
self.s: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.v: H = None
self.r: F = None
self.o: I = None
self.w: A = None
self.u: C = None
self.q: C = None
self.t: A = None
self.x: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.v: C = None
self.o: I = None
self.t: B = None
self.y: J = None
self.u: I = None
self.w: J = None
self.s: D = None
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: B = None
self.r: C = None
self.p: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: J = None
self.t: D = None
self.q: I = None
self.o: I = None
self.x: I = None
self.s: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: G = None
self.p: D = None
self.u: C = None
self.x: H = None
self.s: D = None
self.v: I = None
self.r: A = None
self.z: I = None
self.txt = txt
d = A("d")
j = B("j")
g = C("g")
i = D("i")
n = E("n")
m = F("m")
a = G("a")
l = H("l")
b = I("b")
c = J("c")
d.o = i
d.p = i
d.r = i
d.s = b
d.v = b
d.u = b
d.q = n
d.y = c
d.z = c
d.w = l
j.s = n
j.u = b
j.y = l
g.s = n
g.p = b
i.q = c
i.x = a
i.r = a
i.z = a
i.t = d
i.s = d
i.o = g
n.z = a
n.v = l
n.r = m
n.o = b
n.w = d
n.t = d
n.u = g
n.q = g
n.x = c
m.p = d
m.v = g
m.o = b
m.u = b
m.t = j
m.y = c
m.w = c
m.s = i
m.r = a
a.t = j
a.r = g
a.p = l
l.r = c
l.t = i
l.s = i
l.q = b
l.o = b
l.x = b
b.z = i
c.o = a
c.p = i
c.s = i
c.u = g
c.x = l
c.v = b
c.z = b
c.r = d
assert m.r.p.q.z.s.w.s.q.o.txt == " | a" | class A:
def __init__(self, txt: str):
self.o: D = None
self.p: D = None
self.r: D = None
self.s: I = None
self.q: E = None
self.y: J = None
self.v: I = None
self.z: J = None
self.w: H = None
self.u: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: E = None
self.u: I = None
self.y: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: E = None
self.p: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: J = None
self.x: G = None
self.r: G = None
self.t: A = None
self.z: G = None
self.o: C = None
self.s: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.v: H = None
self.r: F = None
self.o: I = None
self.w: A = None
self.u: C = None
self.q: C = None
self.t: A = None
self.x: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: A = None
self.v: C = None
self.o: I = None
self.t: B = None
self.y: J = None
self.u: I = None
self.w: J = None
self.s: D = None
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: B = None
self.r: C = None
self.p: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: J = None
self.t: D = None
self.q: I = None
self.o: I = None
self.x: I = None
self.s: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: G = None
self.p: D = None
self.u: C = None
self.x: H = None
self.s: D = None
self.v: I = None
self.r: A = None
self.z: I = None
self.txt = txt
d = A("d")
j = B("j")
g = C("g")
i = D("i")
n = E("n")
m = F("m")
a = G("a")
l = H("l")
b = I("b")
c = J("c")
d.o = i
d.p = i
d.r = i
d.s = b
d.v = b
d.u = b
d.q = n
d.y = c
d.z = c
d.w = l
j.s = n
j.u = b
j.y = l
g.s = n
g.p = b
i.q = c
i.x = a
i.r = a
i.z = a
i.t = d
i.s = d
i.o = g
n.z = a
n.v = l
n.r = m
n.o = b
n.w = d
n.t = d
n.u = g
n.q = g
n.x = c
m.p = d
m.v = g
m.o = b
m.u = b
m.t = j
m.y = c
m.w = c
m.s = i
m.r = a
a.t = j
a.r = g
a.p = l
l.r = c
l.t = i
l.s = i
l.q = b
l.o = b
l.x = b
b.z = i
c.o = a
c.p = i
c.s = i
c.u = g
c.x = l
c.v = b
c.z = b
c.r = d
assert m.r.p.q.z.s.w.s.q.o.txt == "a" | 10 | 41 | 4.1 | 0.455556 | 10 | 1 | 10 | 1 | 5.8 | 9 | 2 | 1 | 7 | 0.7 | 9 | 0.219512 | 3 | 3 | 8 | 5 | 7 | 2 | 1 | 2 |
24,933 | class A:
def __init__(self, txt: str):
self.q: I = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: F = None
self.w: F = None
self.s: A = None
self.y: I = None
self.u: J = None
self.q: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: I = None
self.v: F = None
self.r: H = None
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: E = None
self.t: J = None
self.x: B = None
self.v: H = None
self.u: J = None
self.p: B = None
self.w: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: J = None
self.r: I = None
self.x: F = None
self.w: B = None
self.o: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: G = None
self.r: E = None
self.y: A = None
self.z: J = None
self.o: J = None
self.w: G = None
self.x: E = None
self.u: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: G = None
self.u: D = None
self.w: A = None
self.y: G = None
self.x: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: B = None
self.u: H = None
self.x: C = None
self.v: C = None
self.txt = txt
i = A("i")
c = B("c")
g = C("g")
h = D("h")
d = E("d")
n = F("n")
b = G("b")
f = H("f")
m = I("m")
k = J("k")
i.q = m
i.w = c
c.p = n
c.w = n
c.s = i
c.y = m
c.u = k
c.q = h
g.q = f
h.r = c
d.p = m
d.v = n
d.o = n
d.r = f
n.y = d
n.t = k
n.u = k
n.x = c
n.p = c
n.v = f
n.w = f
b.s = k
b.r = m
b.x = n
b.w = c
b.o = g
f.q = b
f.w = b
f.r = d
f.x = d
f.y = i
f.z = k
f.o = k
f.u = h
m.v = b
m.y = b
m.u = h
m.w = i
m.x = n
k.o = c
k.u = f
k.x = g
k.v = g
assert b.o.q.w.w.txt == " | c" | class A:
def __init__(self, txt: str):
self.q: I = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: F = None
self.w: F = None
self.s: A = None
self.y: I = None
self.u: J = None
self.q: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: I = None
self.v: F = None
self.r: H = None
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: E = None
self.t: J = None
self.x: B = None
self.v: H = None
self.u: J = None
self.p: B = None
self.w: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: J = None
self.r: I = None
self.x: F = None
self.w: B = None
self.o: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: G = None
self.r: E = None
self.y: A = None
self.z: J = None
self.o: J = None
self.w: G = None
self.x: E = None
self.u: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: G = None
self.u: D = None
self.w: A = None
self.y: G = None
self.x: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: B = None
self.u: H = None
self.x: C = None
self.v: C = None
self.txt = txt
i = A("i")
c = B("c")
g = C("g")
h = D("h")
d = E("d")
n = F("n")
b = G("b")
f = H("f")
m = I("m")
k = J("k")
i.q = m
i.w = c
c.p = n
c.w = n
c.s = i
c.y = m
c.u = k
c.q = h
g.q = f
h.r = c
d.p = m
d.v = n
d.o = n
d.r = f
n.y = d
n.t = k
n.u = k
n.x = c
n.p = c
n.v = f
n.w = f
b.s = k
b.r = m
b.x = n
b.w = c
b.o = g
f.q = b
f.w = b
f.r = d
f.x = d
f.y = i
f.z = k
f.o = k
f.u = h
m.v = b
m.y = b
m.u = h
m.w = i
m.x = n
k.o = c
k.u = f
k.x = g
k.v = g
assert b.o.q.w.w.txt == "c" | 10 | 33 | 3.3 | 0.366667 | 10 | 1 | 8 | 1 | 4.3 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.121212 | 1 | 3 | 3 | 3 | 3 | 2 | 2 | 2 |
24,934 | class A:
def __init__(self, txt: str):
self.o: E = None
self.r: D = None
self.q: J = None
self.z: G = None
self.v: D = None
self.u: D = None
self.w: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: H = None
self.t: E = None
self.o: G = None
self.x: F = None
self.u: F = None
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: I = None
self.t: H = None
self.v: H = None
self.q: G = None
self.u: I = None
self.p: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: A = None
self.o: E = None
self.w: E = None
self.r: E = None
self.y: C = None
self.p: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: I = None
self.x: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: D = None
self.o: C = None
self.y: D = None
self.s: E = None
self.z: G = None
self.w: F = None
self.u: J = None
self.x: J = None
self.r: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: H = None
self.v: G = None
self.w: G = None
self.x: F = None
self.r: A = None
self.txt = txt
l = A("l")
a = B("a")
i = C("i")
d = D("d")
m = E("m")
g = F("g")
n = G("n")
f = H("f")
k = I("k")
h = J("h")
l.o = m
l.r = d
l.v = d
l.u = d
l.q = h
l.z = n
l.w = k
a.w = f
a.t = m
a.o = n
a.y = n
a.x = g
a.u = g
i.r = f
d.z = g
m.r = k
m.u = k
m.t = f
m.v = f
m.q = n
m.p = h
g.q = a
n.v = l
n.o = m
n.w = m
n.r = m
n.p = m
n.y = i
f.q = k
f.x = l
k.t = d
k.y = d
k.o = i
k.r = i
k.s = m
k.z = n
k.w = g
k.u = h
k.x = h
h.q = f
h.v = n
h.w = n
h.x = g
h.r = l
assert h.w.y.r.x.o.u.t.z.q.y.txt == " | n" | class A:
def __init__(self, txt: str):
self.o: E = None
self.r: D = None
self.q: J = None
self.z: G = None
self.v: D = None
self.u: D = None
self.w: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: H = None
self.t: E = None
self.o: G = None
self.x: F = None
self.u: F = None
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: I = None
self.t: H = None
self.v: H = None
self.q: G = None
self.u: I = None
self.p: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: A = None
self.o: E = None
self.w: E = None
self.r: E = None
self.y: C = None
self.p: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: I = None
self.x: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: D = None
self.o: C = None
self.y: D = None
self.s: E = None
self.z: G = None
self.w: F = None
self.u: J = None
self.x: J = None
self.r: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: H = None
self.v: G = None
self.w: G = None
self.x: F = None
self.r: A = None
self.txt = txt
l = A("l")
a = B("a")
i = C("i")
d = D("d")
m = E("m")
g = F("g")
n = G("n")
f = H("f")
k = I("k")
h = J("h")
l.o = m
l.r = d
l.v = d
l.u = d
l.q = h
l.z = n
l.w = k
a.w = f
a.t = m
a.o = n
a.y = n
a.x = g
a.u = g
i.r = f
d.z = g
m.r = k
m.u = k
m.t = f
m.v = f
m.q = n
m.p = h
g.q = a
n.v = l
n.o = m
n.w = m
n.r = m
n.p = m
n.y = i
f.q = k
f.x = l
k.t = d
k.y = d
k.o = i
k.r = i
k.s = m
k.z = n
k.w = g
k.u = h
k.x = h
h.q = f
h.v = n
h.w = n
h.x = g
h.r = l
assert h.w.y.r.x.o.u.t.z.q.y.txt == "n" | 10 | 31 | 3.1 | 0.344444 | 10 | 1 | 9 | 1 | 4.4 | 10 | 2 | 1 | 10 | 1 | 10 | 0.322581 | 1 | 9 | 9 | 9 | 9 | 2 | 1 | 1 |
24,935 | class A:
def __init__(self, txt: str):
self.w: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.o: D = None
self.v: G = None
self.x: I = None
self.q: C = None
self.y: D = None
self.s: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: G = None
self.r: H = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: H = None
self.z: B = None
self.q: G = None
self.y: I = None
self.w: B = None
self.x: G = None
self.u: F = None
self.s: D = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: E = None
self.u: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: C = None
self.y: E = None
self.x: D = None
self.p: C = None
self.z: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: J = None
self.p: B = None
self.q: C = None
self.t: D = None
self.z: D = None
self.v: C = None
self.x: I = None
self.y: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: H = None
self.y: G = None
self.t: E = None
self.q: G = None
self.x: D = None
self.r: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: G = None
self.y: B = None
self.txt = txt
f = A("f")
a = B("a")
c = C("c")
d = D("d")
h = E("h")
e = F("e")
n = G("n")
g = H("g")
l = I("l")
k = J("k")
f.w = g
a.p = f
a.o = d
a.y = d
a.v = n
a.x = l
a.s = l
a.q = c
c.v = n
c.r = g
c.s = a
d.s = h
h.p = g
h.z = a
h.w = a
h.q = n
h.x = n
h.y = l
h.u = e
h.r = e
h.s = d
e.o = h
e.u = l
n.u = c
n.p = c
n.y = h
n.x = d
n.z = a
g.r = k
g.p = a
g.y = a
g.q = c
g.v = c
g.t = d
g.z = d
g.x = l
l.u = g
l.y = n
l.q = n
l.t = h
l.x = d
l.r = f
k.t = n
k.y = a
assert a.q.v.x.s.x.x.s.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.w: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.o: D = None
self.v: G = None
self.x: I = None
self.q: C = None
self.y: D = None
self.s: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: G = None
self.r: H = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: H = None
self.z: B = None
self.q: G = None
self.y: I = None
self.w: B = None
self.x: G = None
self.u: F = None
self.s: D = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: E = None
self.u: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: C = None
self.y: E = None
self.x: D = None
self.p: C = None
self.z: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: J = None
self.p: B = None
self.q: C = None
self.t: D = None
self.z: D = None
self.v: C = None
self.x: I = None
self.y: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: H = None
self.y: G = None
self.t: E = None
self.q: G = None
self.x: D = None
self.r: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: G = None
self.y: B = None
self.txt = txt
f = A("f")
a = B("a")
c = C("c")
d = D("d")
h = E("h")
e = F("e")
n = G("n")
g = H("g")
l = I("l")
k = J("k")
f.w = g
a.p = f
a.o = d
a.y = d
a.v = n
a.x = l
a.s = l
a.q = c
c.v = n
c.r = g
c.s = a
d.s = h
h.p = g
h.z = a
h.w = a
h.q = n
h.x = n
h.y = l
h.u = e
h.r = e
h.s = d
e.o = h
e.u = l
n.u = c
n.p = c
n.y = h
n.x = d
n.z = a
g.r = k
g.p = a
g.y = a
g.q = c
g.v = c
g.t = d
g.z = d
g.x = l
l.u = g
l.y = n
l.q = n
l.t = h
l.x = d
l.r = f
k.t = n
k.y = a
assert a.q.v.x.s.x.x.s.w.txt == "a" | 10 | 34 | 3.4 | 0.377778 | 10 | 1 | 9 | 1 | 4.4 | 8 | 2 | 2 | 5 | 0.5 | 6 | 0.176471 | 4 | 3 | 8 | 4.25 | 5 | 3 | 2 | 2 |
24,936 | class A:
def __init__(self, txt: str):
self.z: J = None
self.o: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: H = None
self.u: G = None
self.t: J = None
self.s: I = None
self.y: D = None
self.x: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: I = None
self.x: B = None
self.u: D = None
self.t: A = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.x: C = None
self.s: H = None
self.t: I = None
self.v: D = None
self.q: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: G = None
self.z: E = None
self.u: C = None
self.o: I = None
self.y: H = None
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: C = None
self.s: I = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: E = None
self.z: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: G = None
self.r: G = None
self.t: G = None
self.v: F = None
self.p: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: F = None
self.o: G = None
self.w: A = None
self.p: A = None
self.v: B = None
self.txt = txt
l = A("l")
k = B("k")
b = C("b")
g = D("g")
m = E("m")
f = F("f")
n = G("n")
j = H("j")
i = I("i")
a = J("a")
l.z = a
l.o = j
k.r = j
k.u = n
k.x = n
k.t = a
k.s = i
k.y = g
b.o = i
b.x = k
b.u = g
b.t = l
b.v = m
g.o = j
m.w = l
m.x = b
m.s = j
m.t = i
m.v = g
m.q = g
f.x = n
f.v = n
f.z = m
f.u = b
f.o = i
f.y = j
n.p = b
n.s = i
j.y = m
j.z = n
i.q = n
i.r = n
i.t = n
i.v = f
i.p = g
a.q = f
a.o = n
a.w = l
a.p = l
a.v = k
assert k.y.o.z.p.v.txt == " | m" | class A:
def __init__(self, txt: str):
self.z: J = None
self.o: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: H = None
self.u: G = None
self.t: J = None
self.s: I = None
self.y: D = None
self.x: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: I = None
self.x: B = None
self.u: D = None
self.t: A = None
self.v: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.x: C = None
self.s: H = None
self.t: I = None
self.v: D = None
self.q: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: G = None
self.z: E = None
self.u: C = None
self.o: I = None
self.y: H = None
self.v: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: C = None
self.s: I = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: E = None
self.z: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: G = None
self.r: G = None
self.t: G = None
self.v: F = None
self.p: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: F = None
self.o: G = None
self.w: A = None
self.p: A = None
self.v: B = None
self.txt = txt
l = A("l")
k = B("k")
b = C("b")
g = D("g")
m = E("m")
f = F("f")
n = G("n")
j = H("j")
i = I("i")
a = J("a")
l.z = a
l.o = j
k.r = j
k.u = n
k.x = n
k.t = a
k.s = i
k.y = g
b.o = i
b.x = k
b.u = g
b.t = l
b.v = m
g.o = j
m.w = l
m.x = b
m.s = j
m.t = i
m.v = g
m.q = g
f.x = n
f.v = n
f.z = m
f.u = b
f.o = i
f.y = j
n.p = b
n.s = i
j.y = m
j.z = n
i.q = n
i.r = n
i.t = n
i.v = f
i.p = g
a.q = f
a.o = n
a.w = l
a.p = l
a.v = k
assert k.y.o.z.p.v.txt == "m" | 10 | 34 | 3.4 | 0.377778 | 10 | 1 | 6 | 1 | 4 | 5 | 1 | 1 | 6 | 0.6 | 5 | 0.147059 | 0 | null | null | null | 5 | 1 | 1 | 1 |
24,937 | class A:
def __init__(self, txt: str):
self.o: J = None
self.x: C = None
self.w: G = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.u: I = None
self.s: E = None
self.z: F = None
self.y: F = None
self.o: D = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: F = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.p: I = None
self.z: F = None
self.y: C = None
self.u: J = None
self.o: E = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.x: I = None
self.q: I = None
self.y: F = None
self.p: D = None
self.v: H = None
self.z: D = None
self.t: G = None
self.u: D = None
self.o: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: I = None
self.p: C = None
self.v: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: J = None
self.p: G = None
self.y: F = None
self.w: F = None
self.q: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: D = None
self.s: H = None
self.x: E = None
self.z: E = None
self.y: C = None
self.u: B = None
self.v: G = None
self.w: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: D = None
self.w: F = None
self.y: E = None
self.x: C = None
self.q: E = None
self.txt = txt
g = A("g")
h = B("h")
n = C("n")
m = D("m")
f = E("f")
c = F("c")
j = G("j")
a = H("a")
b = I("b")
l = J("l")
g.o = l
g.x = n
g.w = j
g.y = h
h.r = j
h.u = b
h.s = f
h.z = c
h.y = c
h.o = m
h.x = n
n.s = c
n.p = j
m.r = j
m.w = j
m.p = b
m.z = c
m.y = n
m.u = l
m.o = f
f.r = h
f.x = b
f.q = b
f.o = b
f.y = c
f.p = m
f.z = m
f.u = m
f.v = a
f.t = j
c.r = j
j.s = b
j.p = n
j.v = c
a.v = l
a.p = j
a.q = j
a.y = c
a.w = c
b.p = m
b.s = a
b.x = f
b.z = f
b.y = n
b.u = h
b.v = j
b.w = l
l.o = m
l.w = c
l.y = f
l.q = f
l.x = n
assert n.s.r.s.p.u.x.p.v.r.p.txt == " | n" | class A:
def __init__(self, txt: str):
self.o: J = None
self.x: C = None
self.w: G = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.u: I = None
self.s: E = None
self.z: F = None
self.y: F = None
self.o: D = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: F = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.p: I = None
self.z: F = None
self.y: C = None
self.u: J = None
self.o: E = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.x: I = None
self.q: I = None
self.y: F = None
self.p: D = None
self.v: H = None
self.z: D = None
self.t: G = None
self.u: D = None
self.o: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: I = None
self.p: C = None
self.v: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: J = None
self.p: G = None
self.y: F = None
self.w: F = None
self.q: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: D = None
self.s: H = None
self.x: E = None
self.z: E = None
self.y: C = None
self.u: B = None
self.v: G = None
self.w: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: D = None
self.w: F = None
self.y: E = None
self.x: C = None
self.q: E = None
self.txt = txt
g = A("g")
h = B("h")
n = C("n")
m = D("m")
f = E("f")
c = F("c")
j = G("j")
a = H("a")
b = I("b")
l = J("l")
g.o = l
g.x = n
g.w = j
g.y = h
h.r = j
h.u = b
h.s = f
h.z = c
h.y = c
h.o = m
h.x = n
n.s = c
n.p = j
m.r = j
m.w = j
m.p = b
m.z = c
m.y = n
m.u = l
m.o = f
f.r = h
f.x = b
f.q = b
f.o = b
f.y = c
f.p = m
f.z = m
f.u = m
f.v = a
f.t = j
c.r = j
j.s = b
j.p = n
j.v = c
a.v = l
a.p = j
a.q = j
a.y = c
a.w = c
b.p = m
b.s = a
b.x = f
b.z = f
b.y = n
b.u = h
b.v = j
b.w = l
l.o = m
l.w = c
l.y = f
l.q = f
l.x = n
assert n.s.r.s.p.u.x.p.v.r.p.txt == "n" | 10 | 42 | 4.2 | 0.466667 | 10 | 1 | 10 | 1 | 5.2 | 10 | 3 | 2 | 6 | 0.6 | 9 | 0.214286 | 5 | 2 | 10 | 5.857143 | 6 | 3 | 1 | 3 |
24,938 | class A:
def __init__(self, txt: str):
self.u: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.o: D = None
self.t: J = None
self.x: J = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: J = None
self.z: G = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.v: J = None
self.p: G = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: H = None
self.w: A = None
self.q: H = None
self.r: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: C = None
self.q: C = None
self.x: A = None
self.r: G = None
self.o: I = None
self.w: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.w: J = None
self.s: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: H = None
self.u: J = None
self.v: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: D = None
self.q: H = None
self.z: B = None
self.txt = txt
k = A("k")
j = B("j")
c = C("c")
e = D("e")
g = E("g")
d = F("d")
f = G("f")
h = H("h")
b = I("b")
a = J("a")
k.u = f
j.p = e
j.o = e
j.t = a
j.x = a
j.q = c
c.w = a
c.z = f
c.p = e
e.r = g
e.v = a
e.p = f
e.q = c
g.x = h
g.q = h
g.w = k
g.r = b
d.v = c
d.q = c
d.x = k
d.r = f
d.o = b
d.w = h
f.y = g
f.w = a
f.s = k
h.s = k
b.t = h
b.u = a
b.v = c
a.t = e
a.q = h
a.z = j
assert g.r.u.t.r.r.t.txt == " | h" | class A:
def __init__(self, txt: str):
self.u: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.o: D = None
self.t: J = None
self.x: J = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: J = None
self.z: G = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.v: J = None
self.p: G = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: H = None
self.w: A = None
self.q: H = None
self.r: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: C = None
self.q: C = None
self.x: A = None
self.r: G = None
self.o: I = None
self.w: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.w: J = None
self.s: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: H = None
self.u: J = None
self.v: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: D = None
self.q: H = None
self.z: B = None
self.txt = txt
k = A("k")
j = B("j")
c = C("c")
e = D("e")
g = E("g")
d = F("d")
f = G("f")
h = H("h")
b = I("b")
a = J("a")
k.u = f
j.p = e
j.o = e
j.t = a
j.x = a
j.q = c
c.w = a
c.z = f
c.p = e
e.r = g
e.v = a
e.p = f
e.q = c
g.x = h
g.q = h
g.w = k
g.r = b
d.v = c
d.q = c
d.x = k
d.r = f
d.o = b
d.w = h
f.y = g
f.w = a
f.s = k
h.s = k
b.t = h
b.u = a
b.v = c
a.t = e
a.q = h
a.z = j
assert g.r.u.t.r.r.t.txt == "h" | 10 | 29 | 2.9 | 0.322222 | 10 | 1 | 6 | 1 | 3.3 | 6 | 2 | 2 | 5 | 0.5 | 5 | 0.172414 | 2 | 4 | 4 | 4 | 3 | 3 | 2 | 2 |
24,939 | class A:
def __init__(self, txt: str):
self.t: B = None
self.o: D = None
self.z: I = None
self.v: G = None
self.u: I = None
self.w: C = None
self.q: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.x: F = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.y: I = None
self.o: F = None
self.w: I = None
self.x: A = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: F = None
self.p: C = None
self.q: E = None
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: J = None
self.u: J = None
self.y: H = None
self.z: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: I = None
self.u: C = None
self.y: A = None
self.x: A = None
self.s: I = None
self.o: E = None
self.r: I = None
self.p: H = None
self.v: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: I = None
self.p: J = None
self.z: F = None
self.v: I = None
self.u: F = None
self.x: A = None
self.o: J = None
self.w: B = None
self.y: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: F = None
self.u: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: C = None
self.r: H = None
self.z: G = None
self.q: H = None
self.p: D = None
self.w: F = None
self.t: A = None
self.u: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
a = A("a")
g = B("g")
e = C("e")
f = D("f")
l = E("l")
b = F("b")
k = G("k")
m = H("m")
h = I("h")
d = J("d")
a.t = g
a.o = f
a.z = h
a.u = h
a.v = k
a.q = k
a.w = e
g.q = f
g.x = b
g.t = a
e.p = b
e.o = b
e.t = b
e.y = h
e.w = h
e.x = a
f.u = b
f.p = e
f.q = l
f.z = g
l.v = d
l.u = d
l.y = m
l.z = h
b.q = h
b.s = h
b.r = h
b.u = e
b.y = a
b.x = a
b.o = l
b.p = m
b.v = g
k.r = h
k.v = h
k.p = d
k.o = d
k.z = b
k.u = b
k.x = a
k.w = g
k.y = m
m.o = b
m.u = d
h.x = e
h.r = m
h.q = m
h.z = k
h.u = k
h.p = f
h.w = b
h.t = a
d.y = a
assert h.q.o.o.v.y.q.x.u.t.txt == " | a" | class A:
def __init__(self, txt: str):
self.t: B = None
self.o: D = None
self.z: I = None
self.v: G = None
self.u: I = None
self.w: C = None
self.q: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.x: F = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.y: I = None
self.o: F = None
self.w: I = None
self.x: A = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: F = None
self.p: C = None
self.q: E = None
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: J = None
self.u: J = None
self.y: H = None
self.z: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: I = None
self.u: C = None
self.y: A = None
self.x: A = None
self.s: I = None
self.o: E = None
self.r: I = None
self.p: H = None
self.v: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: I = None
self.p: J = None
self.z: F = None
self.v: I = None
self.u: F = None
self.x: A = None
self.o: J = None
self.w: B = None
self.y: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: F = None
self.u: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: C = None
self.r: H = None
self.z: G = None
self.q: H = None
self.p: D = None
self.w: F = None
self.t: A = None
self.u: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
a = A("a")
g = B("g")
e = C("e")
f = D("f")
l = E("l")
b = F("b")
k = G("k")
m = H("m")
h = I("h")
d = J("d")
a.t = g
a.o = f
a.z = h
a.u = h
a.v = k
a.q = k
a.w = e
g.q = f
g.x = b
g.t = a
e.p = b
e.o = b
e.t = b
e.y = h
e.w = h
e.x = a
f.u = b
f.p = e
f.q = l
f.z = g
l.v = d
l.u = d
l.y = m
l.z = h
b.q = h
b.s = h
b.r = h
b.u = e
b.y = a
b.x = a
b.o = l
b.p = m
b.v = g
k.r = h
k.v = h
k.p = d
k.o = d
k.z = b
k.u = b
k.x = a
k.w = g
k.y = m
m.o = b
m.u = d
h.x = e
h.r = m
h.q = m
h.z = k
h.u = k
h.p = f
h.w = b
h.t = a
d.y = a
assert h.q.o.o.v.y.q.x.u.t.txt == "a" | 10 | 39 | 3.9 | 0.433333 | 10 | 1 | 9 | 1 | 5.3 | 9 | 3 | 1 | 7 | 0.7 | 9 | 0.230769 | 3 | 2 | 8 | 4 | 7 | 2 | 2 | 2 |
24,940 | class A:
def __init__(self, txt: str):
self.z: F = None
self.v: H = None
self.r: F = None
self.t: G = None
self.y: I = None
self.w: B = None
self.x: H = None
self.u: H = None
self.q: G = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: H = None
self.s: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: H = None
self.o: H = None
self.r: A = None
self.q: F = None
self.z: F = None
self.y: G = None
self.t: B = None
self.p: H = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.s: H = None
self.v: B = None
self.t: H = None
self.z: G = None
self.q: H = None
self.y: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.x: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: I = None
self.t: C = None
self.w: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: C = None
self.w: E = None
self.t: C = None
self.r: D = None
self.y: E = None
self.s: C = None
self.q: B = None
self.p: D = None
self.o: A = None
self.z: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: F = None
self.x: D = None
self.p: F = None
self.s: C = None
self.w: E = None
self.t: B = None
self.q: A = None
self.txt = txt
e = A("e")
g = B("g")
l = C("l")
m = D("m")
k = E("k")
h = F("h")
n = G("n")
b = H("b")
j = I("j")
i = J("i")
e.z = h
e.r = h
e.o = h
e.v = b
e.x = b
e.u = b
e.t = n
e.q = n
e.y = j
e.w = g
g.q = b
l.o = b
l.s = j
m.u = b
m.o = b
m.p = b
m.r = e
m.x = e
m.q = h
m.z = h
m.y = n
m.t = g
k.x = m
k.s = b
k.t = b
k.q = b
k.v = g
k.z = n
k.y = n
h.p = m
h.x = b
n.w = l
b.q = j
b.t = l
b.w = k
j.x = l
j.t = l
j.s = l
j.w = k
j.y = k
j.r = m
j.p = m
j.q = g
j.o = e
j.z = h
i.y = h
i.p = h
i.x = m
i.s = l
i.w = k
i.t = g
i.q = e
assert k.y.w.o.q.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: F = None
self.v: H = None
self.r: F = None
self.t: G = None
self.y: I = None
self.w: B = None
self.x: H = None
self.u: H = None
self.q: G = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: H = None
self.s: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: H = None
self.o: H = None
self.r: A = None
self.q: F = None
self.z: F = None
self.y: G = None
self.t: B = None
self.p: H = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.s: H = None
self.v: B = None
self.t: H = None
self.z: G = None
self.q: H = None
self.y: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.x: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: I = None
self.t: C = None
self.w: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: C = None
self.w: E = None
self.t: C = None
self.r: D = None
self.y: E = None
self.s: C = None
self.q: B = None
self.p: D = None
self.o: A = None
self.z: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: F = None
self.x: D = None
self.p: F = None
self.s: C = None
self.w: E = None
self.t: B = None
self.q: A = None
self.txt = txt
e = A("e")
g = B("g")
l = C("l")
m = D("m")
k = E("k")
h = F("h")
n = G("n")
b = H("b")
j = I("j")
i = J("i")
e.z = h
e.r = h
e.o = h
e.v = b
e.x = b
e.u = b
e.t = n
e.q = n
e.y = j
e.w = g
g.q = b
l.o = b
l.s = j
m.u = b
m.o = b
m.p = b
m.r = e
m.x = e
m.q = h
m.z = h
m.y = n
m.t = g
k.x = m
k.s = b
k.t = b
k.q = b
k.v = g
k.z = n
k.y = n
h.p = m
h.x = b
n.w = l
b.q = j
b.t = l
b.w = k
j.x = l
j.t = l
j.s = l
j.w = k
j.y = k
j.r = m
j.p = m
j.q = g
j.o = e
j.z = h
i.y = h
i.p = h
i.x = m
i.s = l
i.w = k
i.t = g
i.q = e
assert k.y.w.o.q.z.txt == "h" | 10 | 35 | 3.5 | 0.388889 | 10 | 1 | 10 | 1 | 5.2 | 5 | 1 | 1 | 6 | 0.6 | 5 | 0.142857 | 0 | null | null | null | 5 | 1 | 1 | 1 |
24,941 | class A:
def __init__(self, txt: str):
self.o: E = None
self.p: I = None
self.s: H = None
self.y: B = None
self.q: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: G = None
self.r: J = None
self.u: G = None
self.o: A = None
self.x: D = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.z: B = None
self.t: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: C = None
self.v: J = None
self.y: D = None
self.o: D = None
self.q: C = None
self.u: B = None
self.x: D = None
self.w: I = None
self.z: H = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: A = None
self.q: A = None
self.t: A = None
self.v: D = None
self.x: B = None
self.s: D = None
self.u: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: J = None
self.w: A = None
self.q: A = None
self.o: A = None
self.z: A = None
self.y: B = None
self.p: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: C = None
self.x: G = None
self.s: J = None
self.y: F = None
self.z: D = None
self.w: D = None
self.r: I = None
self.p: G = None
self.t: D = None
self.u: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: B = None
self.t: H = None
self.p: F = None
self.q: F = None
self.s: F = None
self.o: J = None
self.y: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: G = None
self.z: A = None
self.r: I = None
self.s: G = None
self.w: A = None
self.x: H = None
self.txt = txt
g = A("g")
d = B("d")
e = C("e")
n = D("n")
h = E("h")
f = F("f")
l = G("l")
i = H("i")
m = I("m")
j = J("j")
g.o = h
g.p = m
g.q = m
g.s = i
g.y = d
d.q = l
d.u = l
d.s = l
d.r = j
d.o = g
d.x = n
e.r = g
n.v = d
n.z = d
n.t = i
h.p = e
h.q = e
h.v = j
h.y = n
h.o = n
h.x = n
h.u = d
h.w = m
h.z = i
h.s = l
f.w = g
f.q = g
f.t = g
f.v = n
f.s = n
f.x = d
f.u = l
l.v = j
l.w = g
l.q = g
l.o = g
l.z = g
l.y = d
l.p = i
i.v = e
i.x = l
i.p = l
i.s = j
i.y = f
i.u = f
i.z = n
i.w = n
i.t = n
i.r = m
m.r = d
m.t = i
m.p = f
m.q = f
m.s = f
m.o = j
m.y = g
j.u = l
j.s = l
j.z = g
j.w = g
j.r = m
j.x = i
assert g.s.z.v.o.s.u.q.txt == " | g" | class A:
def __init__(self, txt: str):
self.o: E = None
self.p: I = None
self.s: H = None
self.y: B = None
self.q: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: G = None
self.r: J = None
self.u: G = None
self.o: A = None
self.x: D = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.z: B = None
self.t: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: C = None
self.v: J = None
self.y: D = None
self.o: D = None
self.q: C = None
self.u: B = None
self.x: D = None
self.w: I = None
self.z: H = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: A = None
self.q: A = None
self.t: A = None
self.v: D = None
self.x: B = None
self.s: D = None
self.u: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: J = None
self.w: A = None
self.q: A = None
self.o: A = None
self.z: A = None
self.y: B = None
self.p: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: C = None
self.x: G = None
self.s: J = None
self.y: F = None
self.z: D = None
self.w: D = None
self.r: I = None
self.p: G = None
self.t: D = None
self.u: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: B = None
self.t: H = None
self.p: F = None
self.q: F = None
self.s: F = None
self.o: J = None
self.y: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: G = None
self.z: A = None
self.r: I = None
self.s: G = None
self.w: A = None
self.x: H = None
self.txt = txt
g = A("g")
d = B("d")
e = C("e")
n = D("n")
h = E("h")
f = F("f")
l = G("l")
i = H("i")
m = I("m")
j = J("j")
g.o = h
g.p = m
g.q = m
g.s = i
g.y = d
d.q = l
d.u = l
d.s = l
d.r = j
d.o = g
d.x = n
e.r = g
n.v = d
n.z = d
n.t = i
h.p = e
h.q = e
h.v = j
h.y = n
h.o = n
h.x = n
h.u = d
h.w = m
h.z = i
h.s = l
f.w = g
f.q = g
f.t = g
f.v = n
f.s = n
f.x = d
f.u = l
l.v = j
l.w = g
l.q = g
l.o = g
l.z = g
l.y = d
l.p = i
i.v = e
i.x = l
i.p = l
i.s = j
i.y = f
i.u = f
i.z = n
i.w = n
i.t = n
i.r = m
m.r = d
m.t = i
m.p = f
m.q = f
m.s = f
m.o = j
m.y = g
j.u = l
j.s = l
j.z = g
j.w = g
j.r = m
j.x = i
assert g.s.z.v.o.s.u.q.txt == "g" | 10 | 41 | 4.1 | 0.455556 | 10 | 1 | 10 | 1 | 6.2 | 7 | 3 | 2 | 5 | 0.5 | 6 | 0.146341 | 3 | 3 | 7 | 4.5 | 6 | 2 | 1 | 2 |
24,942 | class A:
def __init__(self, txt: str):
self.r: E = None
self.t: E = None
self.z: G = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.o: I = None
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: F = None
self.y: A = None
self.z: G = None
self.x: B = None
self.s: B = None
self.v: G = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.p: I = None
self.s: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: I = None
self.y: B = None
self.r: I = None
self.t: H = None
self.s: A = None
self.v: H = None
self.p: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: J = None
self.o: F = None
self.p: E = None
self.t: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: B = None
self.s: F = None
self.t: F = None
self.w: C = None
self.v: F = None
self.r: F = None
self.u: C = None
self.z: I = None
self.y: C = None
self.x: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.z: A = None
self.v: G = None
self.s: E = None
self.u: I = None
self.t: H = None
self.x: C = None
self.w: B = None
self.o: A = None
self.p: D = None
self.txt = txt
n = A("n")
h = B("h")
l = C("l")
j = D("j")
a = E("a")
i = F("i")
c = G("c")
d = H("d")
b = I("b")
e = J("e")
n.r = a
n.t = a
n.z = c
n.q = j
h.u = a
l.y = h
l.o = b
l.v = i
j.q = i
j.y = n
j.z = c
j.v = c
j.x = h
j.s = h
j.w = h
a.x = n
a.o = h
a.p = b
a.s = d
i.w = b
i.r = b
i.y = h
i.t = d
i.v = d
i.s = n
i.p = c
c.q = e
c.t = e
c.o = i
c.p = a
d.o = h
d.s = i
d.t = i
d.v = i
d.r = i
d.w = l
d.u = l
d.y = l
d.x = l
d.z = b
b.x = e
e.z = n
e.o = n
e.v = c
e.s = a
e.u = b
e.t = d
e.x = l
e.w = h
e.p = j
assert b.x.w.u.s.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: E = None
self.t: E = None
self.z: G = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.o: I = None
self.v: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: F = None
self.y: A = None
self.z: G = None
self.x: B = None
self.s: B = None
self.v: G = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.p: I = None
self.s: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: I = None
self.y: B = None
self.r: I = None
self.t: H = None
self.s: A = None
self.v: H = None
self.p: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: J = None
self.o: F = None
self.p: E = None
self.t: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: B = None
self.s: F = None
self.t: F = None
self.w: C = None
self.v: F = None
self.r: F = None
self.u: C = None
self.z: I = None
self.y: C = None
self.x: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.z: A = None
self.v: G = None
self.s: E = None
self.u: I = None
self.t: H = None
self.x: C = None
self.w: B = None
self.o: A = None
self.p: D = None
self.txt = txt
n = A("n")
h = B("h")
l = C("l")
j = D("j")
a = E("a")
i = F("i")
c = G("c")
d = H("d")
b = I("b")
e = J("e")
n.r = a
n.t = a
n.z = c
n.q = j
h.u = a
l.y = h
l.o = b
l.v = i
j.q = i
j.y = n
j.z = c
j.v = c
j.x = h
j.s = h
j.w = h
a.x = n
a.o = h
a.p = b
a.s = d
i.w = b
i.r = b
i.y = h
i.t = d
i.v = d
i.s = n
i.p = c
c.q = e
c.t = e
c.o = i
c.p = a
d.o = h
d.s = i
d.t = i
d.v = i
d.r = i
d.w = l
d.u = l
d.y = l
d.x = l
d.z = b
b.x = e
e.z = n
e.o = n
e.v = c
e.s = a
e.u = b
e.t = d
e.x = l
e.w = h
e.p = j
assert b.x.w.u.s.z.txt == "b" | 10 | 36 | 3.6 | 0.4 | 10 | 1 | 10 | 1 | 5 | 5 | 2 | 1 | 5 | 0.5 | 5 | 0.138889 | 1 | 5 | 5 | 5 | 5 | 1 | 1 | 1 |
24,943 | class A:
def __init__(self, txt: str):
self.o: H = None
self.p: F = None
self.t: H = None
self.w: J = None
self.u: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: E = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: H = None
self.u: H = None
self.o: E = None
self.z: H = None
self.y: G = None
self.r: F = None
self.q: A = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.r: G = None
self.z: G = None
self.v: H = None
self.t: C = None
self.x: C = None
self.q: E = None
self.o: D = None
self.w: E = None
self.p: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: J = None
self.u: F = None
self.z: H = None
self.w: I = None
self.q: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: G = None
self.v: E = None
self.s: G = None
self.o: I = None
self.w: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: F = None
self.p: G = None
self.r: H = None
self.v: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.z: E = None
self.x: I = None
self.txt = txt
k = A("k")
d = B("d")
j = C("j")
f = D("f")
m = E("m")
g = F("g")
a = G("a")
b = H("b")
l = I("l")
h = J("h")
k.o = b
k.t = b
k.p = g
k.w = h
k.u = l
d.y = m
d.o = k
j.v = k
f.s = b
f.u = b
f.z = b
f.o = m
f.p = m
f.y = a
f.r = g
f.q = k
m.u = a
g.s = j
g.t = j
g.x = j
g.r = a
g.z = a
g.v = b
g.q = m
g.w = m
g.o = f
g.p = d
a.r = h
a.q = h
a.u = g
a.z = b
a.w = l
b.y = a
b.s = a
b.w = a
b.v = m
b.o = l
l.x = g
l.p = a
l.r = b
l.v = j
h.z = m
h.x = l
assert m.u.q.x.r.o.v.v.t.o.txt == " | l" | class A:
def __init__(self, txt: str):
self.o: H = None
self.p: F = None
self.t: H = None
self.w: J = None
self.u: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: E = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: H = None
self.u: H = None
self.o: E = None
self.z: H = None
self.y: G = None
self.r: F = None
self.q: A = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.r: G = None
self.z: G = None
self.v: H = None
self.t: C = None
self.x: C = None
self.q: E = None
self.o: D = None
self.w: E = None
self.p: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: J = None
self.u: F = None
self.z: H = None
self.w: I = None
self.q: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: G = None
self.v: E = None
self.s: G = None
self.o: I = None
self.w: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: F = None
self.p: G = None
self.r: H = None
self.v: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.z: E = None
self.x: I = None
self.txt = txt
k = A("k")
d = B("d")
j = C("j")
f = D("f")
m = E("m")
g = F("g")
a = G("a")
b = H("b")
l = I("l")
h = J("h")
k.o = b
k.t = b
k.p = g
k.w = h
k.u = l
d.y = m
d.o = k
j.v = k
f.s = b
f.u = b
f.z = b
f.o = m
f.p = m
f.y = a
f.r = g
f.q = k
m.u = a
g.s = j
g.t = j
g.x = j
g.r = a
g.z = a
g.v = b
g.q = m
g.w = m
g.o = f
g.p = d
a.r = h
a.q = h
a.u = g
a.z = b
a.w = l
b.y = a
b.s = a
b.w = a
b.v = m
b.o = l
l.x = g
l.p = a
l.r = b
l.v = j
h.z = m
h.x = l
assert m.u.q.x.r.o.v.v.t.o.txt == "l" | 10 | 32 | 3.2 | 0.355556 | 10 | 1 | 10 | 1 | 4.3 | 9 | 3 | 2 | 7 | 0.7 | 8 | 0.25 | 3 | 2 | 6 | 4 | 7 | 2 | 2 | 2 |
24,944 | class A:
def __init__(self, txt: str):
self.r: J = None
self.v: H = None
self.p: H = None
self.y: G = None
self.w: J = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.x: I = None
self.y: J = None
self.v: J = None
self.z: A = None
self.r: I = None
self.o: E = None
self.p: F = None
self.w: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.q: E = None
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: G = None
self.y: F = None
self.p: C = None
self.r: I = None
self.u: A = None
self.s: B = None
self.z: I = None
self.o: G = None
self.v: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: H = None
self.w: E = None
self.q: D = None
self.x: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: E = None
self.w: J = None
self.q: A = None
self.v: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: B = None
self.q: D = None
self.x: B = None
self.z: I = None
self.w: E = None
self.p: G = None
self.txt = txt
c = A("c")
f = B("f")
a = C("a")
i = D("i")
e = E("e")
m = F("m")
b = G("b")
j = H("j")
d = I("d")
n = J("n")
c.r = n
c.w = n
c.v = j
c.p = j
c.y = b
c.t = a
f.q = a
a.t = b
a.x = d
a.r = d
a.y = n
a.v = n
a.w = n
a.z = c
a.o = e
a.p = m
i.w = m
i.q = e
i.t = c
e.x = b
e.o = b
e.y = m
e.p = a
e.v = a
e.r = d
e.z = d
e.u = c
e.s = f
m.r = j
m.x = j
m.w = e
m.q = i
b.v = n
j.s = e
j.w = n
j.q = c
j.v = a
d.q = e
n.s = f
n.x = f
n.q = i
n.z = d
n.w = e
n.p = b
assert a.w.s.q.t.v.q.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.r: J = None
self.v: H = None
self.p: H = None
self.y: G = None
self.w: J = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.x: I = None
self.y: J = None
self.v: J = None
self.z: A = None
self.r: I = None
self.o: E = None
self.p: F = None
self.w: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.q: E = None
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: G = None
self.y: F = None
self.p: C = None
self.r: I = None
self.u: A = None
self.s: B = None
self.z: I = None
self.o: G = None
self.v: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: H = None
self.w: E = None
self.q: D = None
self.x: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: E = None
self.w: J = None
self.q: A = None
self.v: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: B = None
self.q: D = None
self.x: B = None
self.z: I = None
self.w: E = None
self.p: G = None
self.txt = txt
c = A("c")
f = B("f")
a = C("a")
i = D("i")
e = E("e")
m = F("m")
b = G("b")
j = H("j")
d = I("d")
n = J("n")
c.r = n
c.w = n
c.v = j
c.p = j
c.y = b
c.t = a
f.q = a
a.t = b
a.x = d
a.r = d
a.y = n
a.v = n
a.w = n
a.z = c
a.o = e
a.p = m
i.w = m
i.q = e
i.t = c
e.x = b
e.o = b
e.y = m
e.p = a
e.v = a
e.r = d
e.z = d
e.u = c
e.s = f
m.r = j
m.x = j
m.w = e
m.q = i
b.v = n
j.s = e
j.w = n
j.q = c
j.v = a
d.q = e
n.s = f
n.x = f
n.q = i
n.z = d
n.w = e
n.p = b
assert a.w.s.q.t.v.q.t.txt == "c" | 10 | 34 | 3.4 | 0.377778 | 10 | 1 | 9 | 1 | 4.4 | 7 | 2 | 1 | 6 | 0.6 | 7 | 0.205882 | 2 | 3 | 4 | 3.5 | 5 | 2 | 1 | 2 |
24,945 | class A:
def __init__(self, txt: str):
self.p: I = None
self.v: C = None
self.s: I = None
self.u: J = None
self.x: J = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.s: D = None
self.q: H = None
self.z: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: H = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: E = None
self.w: I = None
self.z: G = None
self.q: G = None
self.u: J = None
self.r: H = None
self.o: G = None
self.t: A = None
self.y: H = None
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.q: C = None
self.z: I = None
self.t: F = None
self.x: F = None
self.r: F = None
self.u: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.z: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: I = None
self.t: A = None
self.y: B = None
self.q: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: E = None
self.y: C = None
self.t: D = None
self.r: I = None
self.q: A = None
self.o: H = None
self.v: C = None
self.z: C = None
self.w: F = None
self.txt = txt
c = A("c")
m = B("m")
f = C("f")
k = D("k")
j = E("j")
a = F("a")
e = G("e")
i = H("i")
b = I("b")
h = J("h")
c.p = b
c.s = b
c.v = f
c.u = h
c.x = h
c.z = m
m.u = k
m.s = k
m.q = i
m.z = i
f.y = i
f.v = c
k.p = j
k.w = b
k.z = e
k.q = e
k.o = e
k.u = h
k.r = i
k.y = i
k.t = c
k.s = a
j.y = f
j.q = f
j.z = b
j.t = a
j.x = a
j.r = a
j.u = a
a.u = c
a.z = j
e.v = b
e.t = c
e.y = m
e.q = f
i.x = f
b.v = a
h.s = j
h.y = f
h.v = f
h.z = f
h.t = k
h.r = b
h.q = c
h.o = i
h.w = a
assert a.u.p.v.z.q.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.p: I = None
self.v: C = None
self.s: I = None
self.u: J = None
self.x: J = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.s: D = None
self.q: H = None
self.z: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: H = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: E = None
self.w: I = None
self.z: G = None
self.q: G = None
self.u: J = None
self.r: H = None
self.o: G = None
self.t: A = None
self.y: H = None
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: C = None
self.q: C = None
self.z: I = None
self.t: F = None
self.x: F = None
self.r: F = None
self.u: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.z: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: I = None
self.t: A = None
self.y: B = None
self.q: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: E = None
self.y: C = None
self.t: D = None
self.r: I = None
self.q: A = None
self.o: H = None
self.v: C = None
self.z: C = None
self.w: F = None
self.txt = txt
c = A("c")
m = B("m")
f = C("f")
k = D("k")
j = E("j")
a = F("a")
e = G("e")
i = H("i")
b = I("b")
h = J("h")
c.p = b
c.s = b
c.v = f
c.u = h
c.x = h
c.z = m
m.u = k
m.s = k
m.q = i
m.z = i
f.y = i
f.v = c
k.p = j
k.w = b
k.z = e
k.q = e
k.o = e
k.u = h
k.r = i
k.y = i
k.t = c
k.s = a
j.y = f
j.q = f
j.z = b
j.t = a
j.x = a
j.r = a
j.u = a
a.u = c
a.z = j
e.v = b
e.t = c
e.y = m
e.q = f
i.x = f
b.v = a
h.s = j
h.y = f
h.v = f
h.z = f
h.t = k
h.r = b
h.q = c
h.o = i
h.w = a
assert a.u.p.v.z.q.y.txt == "i" | 10 | 33 | 3.3 | 0.366667 | 10 | 1 | 10 | 1 | 4.6 | 6 | 2 | 1 | 6 | 0.6 | 6 | 0.181818 | 1 | 3 | 3 | 3 | 6 | 1 | 1 | 2 |
24,946 | class A:
def __init__(self, txt: str):
self.r: F = None
self.v: B = None
self.y: G = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: F = None
self.u: I = None
self.z: F = None
self.x: C = None
self.r: C = None
self.t: I = None
self.y: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.y: I = None
self.u: B = None
self.p: F = None
self.t: D = None
self.v: I = None
self.q: F = None
self.z: J = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.p: F = None
self.w: I = None
self.u: H = None
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: I = None
self.r: A = None
self.w: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: G = None
self.s: B = None
self.r: G = None
self.q: A = None
self.o: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: F = None
self.p: H = None
self.z: J = None
self.w: I = None
self.v: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.u: J = None
self.o: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: G = None
self.t: H = None
self.q: J = None
self.r: E = None
self.s: D = None
self.w: D = None
self.p: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: H = None
self.r: I = None
self.y: E = None
self.z: A = None
self.s: F = None
self.t: D = None
self.o: D = None
self.q: G = None
self.u: G = None
self.txt = txt
d = A("d")
n = B("n")
c = C("c")
j = D("j")
g = E("g")
m = F("m")
h = G("h")
f = H("f")
e = I("e")
k = J("k")
d.r = m
d.o = m
d.v = n
d.y = h
n.p = m
n.z = m
n.u = e
n.t = e
n.y = e
n.x = c
n.r = c
c.w = g
c.x = g
c.y = e
c.v = e
c.u = n
c.p = m
c.q = m
c.t = j
c.z = k
j.t = n
j.p = m
j.w = e
j.u = f
j.q = d
g.u = e
g.r = d
g.w = c
m.u = h
m.r = h
m.s = n
m.q = d
m.o = f
h.r = m
h.p = f
h.z = k
h.w = e
h.v = d
f.u = k
f.o = e
e.u = h
e.t = f
e.q = k
e.r = g
e.s = j
e.w = j
e.p = c
k.x = f
k.r = e
k.y = g
k.z = d
k.s = m
k.t = j
k.o = j
k.q = h
k.u = h
assert g.u.t.o.p.q.o.u.q.z.u.txt == " | h" | class A:
def __init__(self, txt: str):
self.r: F = None
self.v: B = None
self.y: G = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: F = None
self.u: I = None
self.z: F = None
self.x: C = None
self.r: C = None
self.t: I = None
self.y: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.y: I = None
self.u: B = None
self.p: F = None
self.t: D = None
self.v: I = None
self.q: F = None
self.z: J = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.p: F = None
self.w: I = None
self.u: H = None
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: I = None
self.r: A = None
self.w: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: G = None
self.s: B = None
self.r: G = None
self.q: A = None
self.o: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: F = None
self.p: H = None
self.z: J = None
self.w: I = None
self.v: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.u: J = None
self.o: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: G = None
self.t: H = None
self.q: J = None
self.r: E = None
self.s: D = None
self.w: D = None
self.p: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: H = None
self.r: I = None
self.y: E = None
self.z: A = None
self.s: F = None
self.t: D = None
self.o: D = None
self.q: G = None
self.u: G = None
self.txt = txt
d = A("d")
n = B("n")
c = C("c")
j = D("j")
g = E("g")
m = F("m")
h = G("h")
f = H("f")
e = I("e")
k = J("k")
d.r = m
d.o = m
d.v = n
d.y = h
n.p = m
n.z = m
n.u = e
n.t = e
n.y = e
n.x = c
n.r = c
c.w = g
c.x = g
c.y = e
c.v = e
c.u = n
c.p = m
c.q = m
c.t = j
c.z = k
j.t = n
j.p = m
j.w = e
j.u = f
j.q = d
g.u = e
g.r = d
g.w = c
m.u = h
m.r = h
m.s = n
m.q = d
m.o = f
h.r = m
h.p = f
h.z = k
h.w = e
h.v = d
f.u = k
f.o = e
e.u = h
e.t = f
e.q = k
e.r = g
e.s = j
e.w = j
e.p = c
k.x = f
k.r = e
k.y = g
k.z = d
k.s = m
k.t = j
k.o = j
k.q = h
k.u = h
assert g.u.t.o.p.q.o.u.q.z.u.txt == "h" | 10 | 44 | 4.4 | 0.488889 | 10 | 1 | 9 | 2 | 5.6 | 10 | 2 | 1 | 7 | 0.7 | 10 | 0.227273 | 4 | 2 | 4 | 2.5 | 6 | 3 | 1 | 2 |
24,947 | class A:
def __init__(self, txt: str):
self.x: E = None
self.s: D = None
self.y: E = None
self.u: I = None
self.v: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: H = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: J = None
self.w: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: F = None
self.z: A = None
self.p: F = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: D = None
self.x: I = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: I = None
self.q: B = None
self.z: J = None
self.o: G = None
self.y: G = None
self.s: E = None
self.v: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: F = None
self.q: H = None
self.u: H = None
self.t: J = None
self.r: F = None
self.s: H = None
self.p: C = None
self.w: F = None
self.v: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: G = None
self.s: C = None
self.t: I = None
self.x: F = None
self.w: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: C = None
self.s: E = None
self.z: B = None
self.w: A = None
self.q: J = None
self.v: A = None
self.p: H = None
self.x: A = None
self.r: C = None
self.y: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
f = A("f")
b = B("b")
h = C("h")
a = D("a")
i = E("i")
k = F("k")
n = G("n")
e = H("e")
m = I("m")
d = J("d")
f.x = i
f.y = i
f.s = a
f.u = m
f.v = m
b.q = e
b.v = h
h.v = d
h.w = k
a.o = k
a.p = k
a.z = f
a.w = i
i.w = a
i.x = m
i.o = b
k.p = m
k.q = b
k.z = d
k.o = n
k.y = n
k.s = i
k.v = h
n.y = k
n.r = k
n.w = k
n.q = e
n.u = e
n.s = e
n.t = d
n.p = h
n.v = f
e.o = n
e.s = h
e.t = m
e.x = k
e.w = i
m.u = h
m.r = h
m.s = i
m.y = i
m.z = b
m.w = f
m.v = f
m.x = f
m.q = d
m.p = e
d.v = f
assert h.v.v.v.y.w.o.z.v.s.o.txt == " | k" | class A:
def __init__(self, txt: str):
self.x: E = None
self.s: D = None
self.y: E = None
self.u: I = None
self.v: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: H = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: J = None
self.w: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: F = None
self.z: A = None
self.p: F = None
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: D = None
self.x: I = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: I = None
self.q: B = None
self.z: J = None
self.o: G = None
self.y: G = None
self.s: E = None
self.v: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: F = None
self.q: H = None
self.u: H = None
self.t: J = None
self.r: F = None
self.s: H = None
self.p: C = None
self.w: F = None
self.v: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: G = None
self.s: C = None
self.t: I = None
self.x: F = None
self.w: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: C = None
self.s: E = None
self.z: B = None
self.w: A = None
self.q: J = None
self.v: A = None
self.p: H = None
self.x: A = None
self.r: C = None
self.y: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
f = A("f")
b = B("b")
h = C("h")
a = D("a")
i = E("i")
k = F("k")
n = G("n")
e = H("e")
m = I("m")
d = J("d")
f.x = i
f.y = i
f.s = a
f.u = m
f.v = m
b.q = e
b.v = h
h.v = d
h.w = k
a.o = k
a.p = k
a.z = f
a.w = i
i.w = a
i.x = m
i.o = b
k.p = m
k.q = b
k.z = d
k.o = n
k.y = n
k.s = i
k.v = h
n.y = k
n.r = k
n.w = k
n.q = e
n.u = e
n.s = e
n.t = d
n.p = h
n.v = f
e.o = n
e.s = h
e.t = m
e.x = k
e.w = i
m.u = h
m.r = h
m.s = i
m.y = i
m.z = b
m.w = f
m.v = f
m.x = f
m.q = d
m.p = e
d.v = f
assert h.v.v.v.y.w.o.z.v.s.o.txt == "k" | 10 | 36 | 3.6 | 0.4 | 10 | 1 | 10 | 1 | 4.8 | 10 | 2 | 2 | 7 | 0.7 | 8 | 0.222222 | 4 | 4 | 6 | 5 | 6 | 4 | 3 | 2 |
24,948 | class A:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: H = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: F = None
self.t: A = None
self.u: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.r: F = None
self.z: C = None
self.v: B = None
self.o: G = None
self.x: I = None
self.q: E = None
self.w: I = None
self.s: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: G = None
self.v: J = None
self.t: C = None
self.s: C = None
self.p: B = None
self.q: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: D = None
self.p: H = None
self.s: D = None
self.w: A = None
self.q: I = None
self.u: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.r: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: D = None
self.t: G = None
self.y: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.v: I = None
self.p: B = None
self.r: I = None
self.y: D = None
self.s: B = None
self.q: H = None
self.w: B = None
self.t: I = None
self.u: F = None
self.txt = txt
c = A("c")
k = B("k")
a = C("a")
i = D("i")
f = E("f")
d = F("d")
g = G("g")
h = H("h")
e = I("e")
j = J("j")
c.o = g
k.t = h
k.x = c
a.o = d
a.u = d
a.t = c
i.p = k
i.v = k
i.r = d
i.z = a
i.o = g
i.s = g
i.x = e
i.w = e
i.q = f
f.r = g
f.v = j
f.t = a
f.s = a
f.p = k
f.q = i
d.t = i
d.s = i
d.p = h
d.w = c
d.q = e
d.u = e
g.v = f
g.r = a
h.w = j
e.x = i
e.t = g
e.y = h
j.v = e
j.r = e
j.t = e
j.p = k
j.s = k
j.w = k
j.y = i
j.q = h
j.u = d
assert c.o.r.u.p.txt == " | h" | class A:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: H = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: F = None
self.t: A = None
self.u: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.r: F = None
self.z: C = None
self.v: B = None
self.o: G = None
self.x: I = None
self.q: E = None
self.w: I = None
self.s: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: G = None
self.v: J = None
self.t: C = None
self.s: C = None
self.p: B = None
self.q: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: D = None
self.p: H = None
self.s: D = None
self.w: A = None
self.q: I = None
self.u: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.r: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: D = None
self.t: G = None
self.y: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.v: I = None
self.p: B = None
self.r: I = None
self.y: D = None
self.s: B = None
self.q: H = None
self.w: B = None
self.t: I = None
self.u: F = None
self.txt = txt
c = A("c")
k = B("k")
a = C("a")
i = D("i")
f = E("f")
d = F("d")
g = G("g")
h = H("h")
e = I("e")
j = J("j")
c.o = g
k.t = h
k.x = c
a.o = d
a.u = d
a.t = c
i.p = k
i.v = k
i.r = d
i.z = a
i.o = g
i.s = g
i.x = e
i.w = e
i.q = f
f.r = g
f.v = j
f.t = a
f.s = a
f.p = k
f.q = i
d.t = i
d.s = i
d.p = h
d.w = c
d.q = e
d.u = e
g.v = f
g.r = a
h.w = j
e.x = i
e.t = g
e.y = h
j.v = e
j.r = e
j.t = e
j.p = k
j.s = k
j.w = k
j.y = i
j.q = h
j.u = d
assert c.o.r.u.p.txt == "h" | 10 | 31 | 3.1 | 0.344444 | 10 | 1 | 9 | 1 | 4.2 | 4 | 1 | 1 | 5 | 0.5 | 4 | 0.129032 | 0 | null | null | null | 4 | 1 | 1 | 1 |
24,949 | class A:
def __init__(self, txt: str):
self.q: C = None
self.s: H = None
self.r: J = None
self.z: F = None
self.o: D = None
self.w: C = None
self.u: D = None
self.y: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.q: D = None
self.z: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: I = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: J = None
self.p: C = None
self.x: B = None
self.t: H = None
self.v: A = None
self.u: B = None
self.z: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: C = None
self.v: D = None
self.p: F = None
self.y: E = None
self.s: B = None
self.x: J = None
self.q: I = None
self.u: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: J = None
self.w: B = None
self.t: B = None
self.r: E = None
self.z: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: D = None
self.p: C = None
self.r: F = None
self.s: G = None
self.o: E = None
self.txt = txt
n = A("n")
a = B("a")
m = C("m")
b = D("b")
d = E("d")
l = F("l")
f = G("f")
c = H("c")
i = I("i")
h = J("h")
n.q = m
n.w = m
n.s = c
n.r = h
n.z = l
n.o = b
n.u = b
n.y = i
a.r = d
m.w = d
m.q = b
m.z = c
b.x = i
b.t = d
d.z = n
l.o = h
l.p = m
l.x = a
l.u = a
l.t = c
l.z = c
l.v = n
f.r = m
f.v = b
f.p = l
f.y = d
f.s = a
f.x = h
f.q = i
f.u = c
c.y = h
c.z = h
c.w = a
c.t = a
c.r = d
i.t = f
h.u = b
h.p = m
h.r = l
h.s = f
h.o = d
assert b.x.t.y.z.w.w.z.s.txt == " | c" | class A:
def __init__(self, txt: str):
self.q: C = None
self.s: H = None
self.r: J = None
self.z: F = None
self.o: D = None
self.w: C = None
self.u: D = None
self.y: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.q: D = None
self.z: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: I = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: J = None
self.p: C = None
self.x: B = None
self.t: H = None
self.v: A = None
self.u: B = None
self.z: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: C = None
self.v: D = None
self.p: F = None
self.y: E = None
self.s: B = None
self.x: J = None
self.q: I = None
self.u: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: J = None
self.w: B = None
self.t: B = None
self.r: E = None
self.z: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: D = None
self.p: C = None
self.r: F = None
self.s: G = None
self.o: E = None
self.txt = txt
n = A("n")
a = B("a")
m = C("m")
b = D("b")
d = E("d")
l = F("l")
f = G("f")
c = H("c")
i = I("i")
h = J("h")
n.q = m
n.w = m
n.s = c
n.r = h
n.z = l
n.o = b
n.u = b
n.y = i
a.r = d
m.w = d
m.q = b
m.z = c
b.x = i
b.t = d
d.z = n
l.o = h
l.p = m
l.x = a
l.u = a
l.t = c
l.z = c
l.v = n
f.r = m
f.v = b
f.p = l
f.y = d
f.s = a
f.x = h
f.q = i
f.u = c
c.y = h
c.z = h
c.w = a
c.t = a
c.r = d
i.t = f
h.u = b
h.p = m
h.r = l
h.s = f
h.o = d
assert b.x.t.y.z.w.w.z.s.txt == "c" | 10 | 35 | 3.5 | 0.388889 | 10 | 1 | 8 | 1 | 4.1 | 8 | 2 | 2 | 7 | 0.7 | 7 | 0.2 | 2 | 3 | 3 | 3 | 6 | 2 | 2 | 2 |
24,950 | class A:
def __init__(self, txt: str):
self.v: F = None
self.o: B = None
self.w: J = None
self.r: F = None
self.x: E = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: I = None
self.q: A = None
self.x: D = None
self.t: F = None
self.r: I = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.q: H = None
self.z: B = None
self.o: F = None
self.s: J = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: A = None
self.p: H = None
self.v: J = None
self.y: B = None
self.t: B = None
self.z: A = None
self.x: H = None
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: A = None
self.s: D = None
self.x: A = None
self.p: D = None
self.q: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: A = None
self.o: E = None
self.y: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: D = None
self.u: G = None
self.t: I = None
self.z: E = None
self.q: D = None
self.s: E = None
self.p: I = None
self.x: E = None
self.y: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: C = None
self.t: C = None
self.o: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: A = None
self.v: D = None
self.u: E = None
self.o: I = None
self.s: F = None
self.t: H = None
self.txt = txt
h = A("h")
i = B("i")
e = C("e")
b = D("b")
m = E("m")
k = F("k")
n = G("n")
d = H("d")
f = I("f")
g = J("g")
h.v = k
h.r = k
h.o = i
h.w = g
h.x = m
h.u = e
i.p = f
i.r = f
i.q = h
i.x = b
i.t = k
i.s = n
e.t = f
b.p = n
b.q = d
b.z = i
b.o = k
b.s = g
b.x = e
m.s = h
m.z = h
m.p = d
m.x = d
m.v = g
m.y = i
m.t = i
m.r = e
k.t = h
k.x = h
k.s = b
k.p = b
k.q = e
n.w = h
n.o = m
n.y = d
d.w = b
d.q = b
d.u = n
d.y = n
d.t = f
d.p = f
d.z = m
d.s = m
d.x = m
f.q = e
f.t = e
f.o = d
g.w = h
g.v = b
g.u = m
g.o = f
g.s = k
g.t = d
assert k.s.p.w.w.w.w.t.p.txt == " | f" | class A:
def __init__(self, txt: str):
self.v: F = None
self.o: B = None
self.w: J = None
self.r: F = None
self.x: E = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: I = None
self.q: A = None
self.x: D = None
self.t: F = None
self.r: I = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.q: H = None
self.z: B = None
self.o: F = None
self.s: J = None
self.x: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: A = None
self.p: H = None
self.v: J = None
self.y: B = None
self.t: B = None
self.z: A = None
self.x: H = None
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: A = None
self.s: D = None
self.x: A = None
self.p: D = None
self.q: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: A = None
self.o: E = None
self.y: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: D = None
self.u: G = None
self.t: I = None
self.z: E = None
self.q: D = None
self.s: E = None
self.p: I = None
self.x: E = None
self.y: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: C = None
self.t: C = None
self.o: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: A = None
self.v: D = None
self.u: E = None
self.o: I = None
self.s: F = None
self.t: H = None
self.txt = txt
h = A("h")
i = B("i")
e = C("e")
b = D("b")
m = E("m")
k = F("k")
n = G("n")
d = H("d")
f = I("f")
g = J("g")
h.v = k
h.r = k
h.o = i
h.w = g
h.x = m
h.u = e
i.p = f
i.r = f
i.q = h
i.x = b
i.t = k
i.s = n
e.t = f
b.p = n
b.q = d
b.z = i
b.o = k
b.s = g
b.x = e
m.s = h
m.z = h
m.p = d
m.x = d
m.v = g
m.y = i
m.t = i
m.r = e
k.t = h
k.x = h
k.s = b
k.p = b
k.q = e
n.w = h
n.o = m
n.y = d
d.w = b
d.q = b
d.u = n
d.y = n
d.t = f
d.p = f
d.z = m
d.s = m
d.x = m
f.q = e
f.t = e
f.o = d
g.w = h
g.v = b
g.u = m
g.o = f
g.s = k
g.t = d
assert k.s.p.w.w.w.w.t.p.txt == "f" | 10 | 40 | 4 | 0.444444 | 10 | 1 | 9 | 1 | 5.3 | 8 | 2 | 2 | 7 | 0.7 | 7 | 0.175 | 2 | 2 | 2 | 2 | 4 | 4 | 4 | 2 |
24,951 | class A:
def __init__(self, txt: str):
self.t: G = None
self.s: D = None
self.z: B = None
self.w: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: F = None
self.w: J = None
self.p: F = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.q: J = None
self.t: J = None
self.s: F = None
self.w: B = None
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.u: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: E = None
self.x: C = None
self.t: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.s: G = None
self.u: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: F = None
self.y: F = None
self.v: E = None
self.t: A = None
self.s: E = None
self.o: H = None
self.txt = txt
i = A("i")
m = B("m")
n = C("n")
b = D("b")
l = E("l")
f = F("f")
g = G("g")
e = H("e")
h = I("h")
k = J("k")
i.t = g
i.s = b
i.z = m
i.w = f
m.r = i
m.u = f
m.p = f
m.w = k
m.v = l
n.y = b
n.q = k
n.t = k
n.s = f
n.w = m
n.z = i
b.t = k
l.r = k
f.q = i
f.u = m
g.r = m
e.v = l
e.x = n
e.t = b
h.s = g
h.u = i
k.w = f
k.y = f
k.v = l
k.s = l
k.t = i
k.o = e
assert h.u.s.t.w.q.txt == " | i" | class A:
def __init__(self, txt: str):
self.t: G = None
self.s: D = None
self.z: B = None
self.w: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: F = None
self.w: J = None
self.p: F = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.q: J = None
self.t: J = None
self.s: F = None
self.w: B = None
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.u: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: E = None
self.x: C = None
self.t: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.s: G = None
self.u: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: F = None
self.y: F = None
self.v: E = None
self.t: A = None
self.s: E = None
self.o: H = None
self.txt = txt
i = A("i")
m = B("m")
n = C("n")
b = D("b")
l = E("l")
f = F("f")
g = G("g")
e = H("e")
h = I("h")
k = J("k")
i.t = g
i.s = b
i.z = m
i.w = f
m.r = i
m.u = f
m.p = f
m.w = k
m.v = l
n.y = b
n.q = k
n.t = k
n.s = f
n.w = m
n.z = i
b.t = k
l.r = k
f.q = i
f.u = m
g.r = m
e.v = l
e.x = n
e.t = b
h.s = g
h.u = i
k.w = f
k.y = f
k.v = l
k.s = l
k.t = i
k.o = e
assert h.u.s.t.w.q.txt == "i" | 10 | 27 | 2.7 | 0.3 | 10 | 1 | 6 | 1 | 3.1 | 5 | 2 | 1 | 5 | 0.5 | 5 | 0.185185 | 1 | 4 | 4 | 4 | 5 | 1 | 1 | 1 |
24,952 | class A:
def __init__(self, txt: str):
self.q: E = None
self.y: H = None
self.v: C = None
self.x: H = None
self.o: E = None
self.u: G = None
self.t: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: I = None
self.p: H = None
self.v: C = None
self.y: J = None
self.o: D = None
self.u: A = None
self.x: C = None
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.u: H = None
self.p: G = None
self.z: E = None
self.v: A = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.r: B = None
self.o: F = None
self.v: B = None
self.s: B = None
self.y: B = None
self.t: I = None
self.w: G = None
self.u: E = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.q: H = None
self.r: A = None
self.x: B = None
self.u: A = None
self.o: C = None
self.w: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: G = None
self.w: A = None
self.v: J = None
self.q: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: C = None
self.x: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: G = None
self.r: A = None
self.p: B = None
self.q: B = None
self.z: A = None
self.s: B = None
self.v: A = None
self.t: D = None
self.u: A = None
self.txt = txt
f = A("f")
n = B("n")
e = C("e")
m = D("m")
j = E("j")
g = F("g")
l = G("l")
b = H("b")
i = I("i")
k = J("k")
f.q = j
f.o = j
f.y = b
f.x = b
f.v = e
f.u = l
f.t = g
n.r = i
n.p = b
n.v = e
n.x = e
n.y = k
n.o = m
n.u = f
n.t = g
e.x = j
e.z = j
e.u = b
e.p = l
e.v = f
e.q = m
m.q = f
m.r = n
m.v = n
m.s = n
m.y = n
m.o = g
m.t = i
m.w = l
m.u = j
m.x = j
j.v = m
j.q = b
j.r = f
j.u = f
j.x = n
j.o = e
j.w = k
g.u = l
g.w = f
g.v = k
g.q = b
l.v = k
b.v = e
i.w = e
i.x = m
k.y = l
k.r = f
k.z = f
k.v = f
k.u = f
k.p = n
k.q = n
k.s = n
k.t = m
assert m.s.o.o.w.txt == " | f" | class A:
def __init__(self, txt: str):
self.q: E = None
self.y: H = None
self.v: C = None
self.x: H = None
self.o: E = None
self.u: G = None
self.t: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: I = None
self.p: H = None
self.v: C = None
self.y: J = None
self.o: D = None
self.u: A = None
self.x: C = None
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.u: H = None
self.p: G = None
self.z: E = None
self.v: A = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.r: B = None
self.o: F = None
self.v: B = None
self.s: B = None
self.y: B = None
self.t: I = None
self.w: G = None
self.u: E = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.q: H = None
self.r: A = None
self.x: B = None
self.u: A = None
self.o: C = None
self.w: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: G = None
self.w: A = None
self.v: J = None
self.q: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: C = None
self.x: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: G = None
self.r: A = None
self.p: B = None
self.q: B = None
self.z: A = None
self.s: B = None
self.v: A = None
self.t: D = None
self.u: A = None
self.txt = txt
f = A("f")
n = B("n")
e = C("e")
m = D("m")
j = E("j")
g = F("g")
l = G("l")
b = H("b")
i = I("i")
k = J("k")
f.q = j
f.o = j
f.y = b
f.x = b
f.v = e
f.u = l
f.t = g
n.r = i
n.p = b
n.v = e
n.x = e
n.y = k
n.o = m
n.u = f
n.t = g
e.x = j
e.z = j
e.u = b
e.p = l
e.v = f
e.q = m
m.q = f
m.r = n
m.v = n
m.s = n
m.y = n
m.o = g
m.t = i
m.w = l
m.u = j
m.x = j
j.v = m
j.q = b
j.r = f
j.u = f
j.x = n
j.o = e
j.w = k
g.u = l
g.w = f
g.v = k
g.q = b
l.v = k
b.v = e
i.w = e
i.x = m
k.y = l
k.r = f
k.z = f
k.v = f
k.u = f
k.p = n
k.q = n
k.s = n
k.t = m
assert m.s.o.o.w.txt == "f" | 10 | 41 | 4.1 | 0.455556 | 10 | 1 | 10 | 1 | 5.5 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.097561 | 1 | 2 | 2 | 2 | 3 | 2 | 2 | 2 |
24,953 | class A:
def __init__(self, txt: str):
self.r: G = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: H = None
self.x: H = None
self.s: G = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: I = None
self.q: J = None
self.w: H = None
self.v: I = None
self.y: E = None
self.z: J = None
self.x: A = None
self.t: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: H = None
self.z: C = None
self.t: A = None
self.u: E = None
self.q: F = None
self.w: I = None
self.r: E = None
self.s: H = None
self.v: J = None
self.x: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.q: D = None
self.s: A = None
self.x: C = None
self.u: G = None
self.w: B = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: A = None
self.s: I = None
self.x: J = None
self.u: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
j = A("j")
d = B("d")
n = C("n")
k = D("k")
e = E("e")
g = F("g")
l = G("l")
f = H("f")
m = I("m")
b = J("b")
j.r = l
j.z = k
d.r = f
d.x = f
d.s = l
d.t = k
n.u = m
n.v = m
n.q = b
n.z = b
n.t = b
n.w = f
n.y = e
n.x = j
k.y = f
k.s = f
k.z = n
k.t = j
k.u = e
k.r = e
k.q = g
k.w = m
k.v = b
k.x = l
e.p = k
e.q = k
e.s = j
e.x = n
e.u = l
e.w = d
e.r = g
g.z = l
g.t = d
l.t = j
l.s = m
l.x = b
l.u = d
f.o = l
m.y = b
b.x = k
assert f.o.s.y.x.z.y.r.z.s.y.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: G = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: H = None
self.x: H = None
self.s: G = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: I = None
self.q: J = None
self.w: H = None
self.v: I = None
self.y: E = None
self.z: J = None
self.x: A = None
self.t: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: H = None
self.z: C = None
self.t: A = None
self.u: E = None
self.q: F = None
self.w: I = None
self.r: E = None
self.s: H = None
self.v: J = None
self.x: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.q: D = None
self.s: A = None
self.x: C = None
self.u: G = None
self.w: B = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: A = None
self.s: I = None
self.x: J = None
self.u: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
j = A("j")
d = B("d")
n = C("n")
k = D("k")
e = E("e")
g = F("g")
l = G("l")
f = H("f")
m = I("m")
b = J("b")
j.r = l
j.z = k
d.r = f
d.x = f
d.s = l
d.t = k
n.u = m
n.v = m
n.q = b
n.z = b
n.t = b
n.w = f
n.y = e
n.x = j
k.y = f
k.s = f
k.z = n
k.t = j
k.u = e
k.r = e
k.q = g
k.w = m
k.v = b
k.x = l
e.p = k
e.q = k
e.s = j
e.x = n
e.u = l
e.w = d
e.r = g
g.z = l
g.t = d
l.t = j
l.s = m
l.x = b
l.u = d
f.o = l
m.y = b
b.x = k
assert f.o.s.y.x.z.y.r.z.s.y.txt == "b" | 10 | 33 | 3.3 | 0.366667 | 10 | 1 | 10 | 1 | 4 | 10 | 2 | 2 | 8 | 0.8 | 8 | 0.242424 | 3 | 7 | 7 | 7 | 6 | 3 | 1 | 1 |
24,954 | class A:
def __init__(self, txt: str):
self.v: E = None
self.x: B = None
self.o: B = None
self.r: H = None
self.z: C = None
self.s: E = None
self.p: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: H = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: J = None
self.t: A = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: A = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: J = None
self.t: A = None
self.s: H = None
self.r: E = None
self.v: B = None
self.q: E = None
self.x: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.u: E = None
self.w: I = None
self.t: C = None
self.y: A = None
self.x: I = None
self.v: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: F = None
self.q: B = None
self.z: B = None
self.x: C = None
self.v: C = None
self.p: A = None
self.y: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: I = None
self.p: I = None
self.txt = txt
a = A("a")
c = B("c")
n = C("n")
j = D("j")
h = E("h")
i = F("i")
l = G("l")
d = H("d")
k = I("k")
g = J("g")
a.v = h
a.s = h
a.x = c
a.o = c
a.r = d
a.z = n
a.p = i
c.u = n
c.o = i
n.t = d
n.p = a
j.o = g
j.t = a
j.v = h
h.s = a
h.o = c
i.z = g
i.t = a
i.s = d
i.r = h
i.q = h
i.v = c
i.x = l
l.x = g
d.u = h
d.w = k
d.x = k
d.v = k
d.t = n
d.y = a
k.u = i
k.q = c
k.z = c
k.x = n
k.v = n
k.p = a
k.y = d
g.s = k
g.p = k
assert l.x.s.z.u.p.r.y.p.t.z.txt == " | n" | class A:
def __init__(self, txt: str):
self.v: E = None
self.x: B = None
self.o: B = None
self.r: H = None
self.z: C = None
self.s: E = None
self.p: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: H = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: J = None
self.t: A = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: A = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: J = None
self.t: A = None
self.s: H = None
self.r: E = None
self.v: B = None
self.q: E = None
self.x: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.u: E = None
self.w: I = None
self.t: C = None
self.y: A = None
self.x: I = None
self.v: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: F = None
self.q: B = None
self.z: B = None
self.x: C = None
self.v: C = None
self.p: A = None
self.y: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: I = None
self.p: I = None
self.txt = txt
a = A("a")
c = B("c")
n = C("n")
j = D("j")
h = E("h")
i = F("i")
l = G("l")
d = H("d")
k = I("k")
g = J("g")
a.v = h
a.s = h
a.x = c
a.o = c
a.r = d
a.z = n
a.p = i
c.u = n
c.o = i
n.t = d
n.p = a
j.o = g
j.t = a
j.v = h
h.s = a
h.o = c
i.z = g
i.t = a
i.s = d
i.r = h
i.q = h
i.v = c
i.x = l
l.x = g
d.u = h
d.w = k
d.x = k
d.v = k
d.t = n
d.y = a
k.u = i
k.q = c
k.z = c
k.x = n
k.v = n
k.p = a
k.y = d
g.s = k
g.p = k
assert l.x.s.z.u.p.r.y.p.t.z.txt == "n" | 10 | 31 | 3.1 | 0.344444 | 10 | 1 | 7 | 1 | 3.9 | 10 | 3 | 1 | 8 | 0.8 | 10 | 0.322581 | 3 | 2 | 6 | 3.5 | 8 | 2 | 1 | 3 |
24,955 | class A:
def __init__(self, txt: str):
self.p: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: H = None
self.p: A = None
self.z: D = None
self.s: D = None
self.u: H = None
self.v: D = None
self.t: C = None
self.q: I = None
self.o: E = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: H = None
self.x: H = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: H = None
self.p: I = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: H = None
self.t: G = None
self.o: G = None
self.v: G = None
self.r: J = None
self.w: D = None
self.x: J = None
self.z: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: A = None
self.v: A = None
self.p: A = None
self.y: H = None
self.q: C = None
self.u: C = None
self.o: H = None
self.s: H = None
self.z: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: H = None
self.x: H = None
self.r: A = None
self.u: A = None
self.z: B = None
self.y: H = None
self.p: H = None
self.q: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: A = None
self.x: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: H = None
self.w: B = None
self.r: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: E = None
self.s: E = None
self.w: H = None
self.z: B = None
self.txt = txt
n = A("n")
c = B("c")
h = C("h")
b = D("b")
k = E("k")
g = F("g")
j = G("j")
e = H("e")
d = I("d")
m = J("m")
n.p = d
c.y = e
c.u = e
c.p = n
c.z = b
c.s = b
c.v = b
c.t = h
c.q = d
c.o = k
c.r = k
h.s = e
h.x = e
h.z = b
b.v = e
b.p = d
b.s = k
k.q = e
k.t = j
k.o = j
k.v = j
k.r = m
k.x = m
k.w = b
k.z = c
g.w = n
g.v = n
g.p = n
g.y = e
g.o = e
g.s = e
g.q = h
g.u = h
g.z = k
j.o = e
j.x = e
j.y = e
j.p = e
j.r = n
j.u = n
j.z = c
j.q = m
e.o = n
e.x = m
d.q = e
d.w = c
d.r = k
m.q = k
m.s = k
m.w = e
m.z = c
assert g.w.p.r.z.t.txt == " | h" | class A:
def __init__(self, txt: str):
self.p: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: H = None
self.p: A = None
self.z: D = None
self.s: D = None
self.u: H = None
self.v: D = None
self.t: C = None
self.q: I = None
self.o: E = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: H = None
self.x: H = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: H = None
self.p: I = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: H = None
self.t: G = None
self.o: G = None
self.v: G = None
self.r: J = None
self.w: D = None
self.x: J = None
self.z: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: A = None
self.v: A = None
self.p: A = None
self.y: H = None
self.q: C = None
self.u: C = None
self.o: H = None
self.s: H = None
self.z: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: H = None
self.x: H = None
self.r: A = None
self.u: A = None
self.z: B = None
self.y: H = None
self.p: H = None
self.q: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: A = None
self.x: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: H = None
self.w: B = None
self.r: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: E = None
self.s: E = None
self.w: H = None
self.z: B = None
self.txt = txt
n = A("n")
c = B("c")
h = C("h")
b = D("b")
k = E("k")
g = F("g")
j = G("j")
e = H("e")
d = I("d")
m = J("m")
n.p = d
c.y = e
c.u = e
c.p = n
c.z = b
c.s = b
c.v = b
c.t = h
c.q = d
c.o = k
c.r = k
h.s = e
h.x = e
h.z = b
b.v = e
b.p = d
b.s = k
k.q = e
k.t = j
k.o = j
k.v = j
k.r = m
k.x = m
k.w = b
k.z = c
g.w = n
g.v = n
g.p = n
g.y = e
g.o = e
g.s = e
g.q = h
g.u = h
g.z = k
j.o = e
j.x = e
j.y = e
j.p = e
j.r = n
j.u = n
j.z = c
j.q = m
e.o = n
e.x = m
d.q = e
d.w = c
d.r = k
m.q = k
m.s = k
m.w = e
m.z = c
assert g.w.p.r.z.t.txt == "h" | 10 | 33 | 3.3 | 0.366667 | 10 | 1 | 10 | 1 | 5.1 | 5 | 1 | 1 | 6 | 0.6 | 5 | 0.151515 | 0 | null | null | null | 5 | 1 | 1 | 1 |
24,956 | class A:
def __init__(self, txt: str):
self.x: I = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.w: F = None
self.v: H = None
self.t: I = None
self.o: H = None
self.u: D = None
self.y: D = None
self.q: I = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.x: B = None
self.v: B = None
self.q: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: J = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.t: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.u: J = None
self.s: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: A = None
self.u: E = None
self.r: G = None
self.q: J = None
self.p: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: C = None
self.y: D = None
self.w: D = None
self.r: J = None
self.s: H = None
self.q: B = None
self.o: E = None
self.z: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.v: F = None
self.w: I = None
self.x: D = None
self.txt = txt
e = A("e")
f = B("f")
c = C("c")
i = D("i")
j = E("j")
d = F("d")
a = G("a")
k = H("k")
h = I("h")
n = J("n")
e.x = h
e.u = d
f.z = i
f.u = i
f.y = i
f.w = d
f.v = k
f.o = k
f.t = h
f.q = h
f.x = e
c.p = d
c.x = f
c.v = f
c.q = h
i.v = n
i.r = d
j.q = e
j.t = h
d.w = f
d.u = n
d.s = j
a.z = d
a.y = d
k.s = e
k.p = e
k.u = j
k.r = a
k.q = n
h.p = c
h.z = c
h.y = i
h.w = i
h.r = n
h.s = k
h.q = f
h.o = j
n.v = d
n.w = h
n.x = i
assert n.x.r.u.v.u.w.o.t.q.txt == " | f" | class A:
def __init__(self, txt: str):
self.x: I = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.w: F = None
self.v: H = None
self.t: I = None
self.o: H = None
self.u: D = None
self.y: D = None
self.q: I = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.x: B = None
self.v: B = None
self.q: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: J = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.t: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.u: J = None
self.s: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.y: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: A = None
self.u: E = None
self.r: G = None
self.q: J = None
self.p: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: C = None
self.y: D = None
self.w: D = None
self.r: J = None
self.s: H = None
self.q: B = None
self.o: E = None
self.z: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.v: F = None
self.w: I = None
self.x: D = None
self.txt = txt
e = A("e")
f = B("f")
c = C("c")
i = D("i")
j = E("j")
d = F("d")
a = G("a")
k = H("k")
h = I("h")
n = J("n")
e.x = h
e.u = d
f.z = i
f.u = i
f.y = i
f.w = d
f.v = k
f.o = k
f.t = h
f.q = h
f.x = e
c.p = d
c.x = f
c.v = f
c.q = h
i.v = n
i.r = d
j.q = e
j.t = h
d.w = f
d.u = n
d.s = j
a.z = d
a.y = d
k.s = e
k.p = e
k.u = j
k.r = a
k.q = n
h.p = c
h.z = c
h.y = i
h.w = i
h.r = n
h.s = k
h.q = f
h.o = j
n.v = d
n.w = h
n.x = i
assert n.x.r.u.v.u.w.o.t.q.txt == "f" | 10 | 31 | 3.1 | 0.344444 | 10 | 1 | 9 | 2 | 4 | 9 | 3 | 2 | 6 | 0.6 | 8 | 0.258065 | 4 | 2 | 5 | 2.8 | 8 | 2 | 1 | 3 |
24,957 | class A:
def __init__(self, txt: str):
self.v: H = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: I = None
self.u: F = None
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.s: I = None
self.o: A = None
self.v: D = None
self.u: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: F = None
self.x: E = None
self.o: I = None
self.p: J = None
self.t: B = None
self.q: G = None
self.y: B = None
self.z: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: G = None
self.z: F = None
self.q: B = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: G = None
self.t: D = None
self.z: I = None
self.u: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: C = None
self.s: H = None
self.v: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: A = None
self.q: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: J = None
self.q: H = None
self.x: B = None
self.v: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: H = None
self.x: H = None
self.p: I = None
self.v: I = None
self.q: E = None
self.y: I = None
self.txt = txt
j = A("j")
b = B("b")
g = C("g")
l = D("l")
m = E("m")
h = F("h")
c = G("c")
f = H("f")
n = I("n")
a = J("a")
j.v = f
j.w = l
b.r = n
b.u = h
b.o = h
g.t = j
g.o = j
g.s = n
g.u = n
g.v = l
l.u = h
l.x = m
l.z = m
l.o = n
l.p = a
l.t = b
l.y = b
l.q = c
m.r = c
m.z = h
m.w = h
m.q = b
h.s = c
h.t = l
h.z = n
h.u = n
c.r = g
c.s = f
c.v = h
f.t = j
f.q = b
n.z = a
n.q = f
n.x = b
n.v = b
a.o = f
a.x = f
a.p = n
a.v = n
a.y = n
a.q = m
assert j.v.t.w.txt == " | l" | class A:
def __init__(self, txt: str):
self.v: H = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: I = None
self.u: F = None
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.s: I = None
self.o: A = None
self.v: D = None
self.u: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: F = None
self.x: E = None
self.o: I = None
self.p: J = None
self.t: B = None
self.q: G = None
self.y: B = None
self.z: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: G = None
self.z: F = None
self.q: B = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: G = None
self.t: D = None
self.z: I = None
self.u: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: C = None
self.s: H = None
self.v: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: A = None
self.q: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: J = None
self.q: H = None
self.x: B = None
self.v: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: H = None
self.x: H = None
self.p: I = None
self.v: I = None
self.q: E = None
self.y: I = None
self.txt = txt
j = A("j")
b = B("b")
g = C("g")
l = D("l")
m = E("m")
h = F("h")
c = G("c")
f = H("f")
n = I("n")
a = J("a")
j.v = f
j.w = l
b.r = n
b.u = h
b.o = h
g.t = j
g.o = j
g.s = n
g.u = n
g.v = l
l.u = h
l.x = m
l.z = m
l.o = n
l.p = a
l.t = b
l.y = b
l.q = c
m.r = c
m.z = h
m.w = h
m.q = b
h.s = c
h.t = l
h.z = n
h.u = n
c.r = g
c.s = f
c.v = h
f.t = j
f.q = b
n.z = a
n.q = f
n.x = b
n.v = b
a.o = f
a.x = f
a.p = n
a.v = n
a.y = n
a.q = m
assert j.v.t.w.txt == "l" | 10 | 30 | 3 | 0.333333 | 10 | 1 | 8 | 2 | 4.1 | 3 | 2 | 1 | 3 | 0.3 | 3 | 0.1 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 2 |
24,958 | class A:
def __init__(self, txt: str):
self.x: D = None
self.y: E = None
self.s: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.s: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.s: D = None
self.r: E = None
self.w: E = None
self.v: D = None
self.q: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: H = None
self.t: F = None
self.u: J = None
self.r: I = None
self.p: C = None
self.o: J = None
self.z: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.s: A = None
self.u: D = None
self.z: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: I = None
self.s: D = None
self.z: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: I = None
self.y: H = None
self.q: E = None
self.u: J = None
self.r: D = None
self.w: C = None
self.s: A = None
self.x: H = None
self.o: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: C = None
self.o: E = None
self.w: A = None
self.t: F = None
self.u: B = None
self.x: B = None
self.r: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: C = None
self.v: H = None
self.u: C = None
self.y: A = None
self.w: G = None
self.q: A = None
self.x: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
l = A("l")
m = B("m")
b = C("b")
g = D("g")
i = E("i")
n = F("n")
d = G("d")
a = H("a")
j = I("j")
f = J("f")
l.x = g
l.y = i
l.s = n
m.z = d
m.s = n
b.t = g
b.s = g
b.v = g
b.r = i
b.w = i
b.q = n
g.q = a
g.t = n
g.u = f
g.o = f
g.r = j
g.p = b
g.z = b
i.t = m
i.s = l
i.u = g
i.z = j
n.p = j
n.s = g
n.z = b
d.t = j
d.y = a
d.x = a
d.q = i
d.u = f
d.r = g
d.o = g
d.w = b
d.s = l
a.y = b
a.o = i
a.w = l
a.t = n
a.u = m
a.x = m
a.r = j
j.t = b
j.u = b
j.v = a
j.x = a
j.y = l
j.q = l
j.w = d
f.q = n
assert g.z.q.z.r.txt == " | i" | class A:
def __init__(self, txt: str):
self.x: D = None
self.y: E = None
self.s: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.s: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.s: D = None
self.r: E = None
self.w: E = None
self.v: D = None
self.q: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: H = None
self.t: F = None
self.u: J = None
self.r: I = None
self.p: C = None
self.o: J = None
self.z: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.s: A = None
self.u: D = None
self.z: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: I = None
self.s: D = None
self.z: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: I = None
self.y: H = None
self.q: E = None
self.u: J = None
self.r: D = None
self.w: C = None
self.s: A = None
self.x: H = None
self.o: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: C = None
self.o: E = None
self.w: A = None
self.t: F = None
self.u: B = None
self.x: B = None
self.r: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: C = None
self.v: H = None
self.u: C = None
self.y: A = None
self.w: G = None
self.q: A = None
self.x: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
l = A("l")
m = B("m")
b = C("b")
g = D("g")
i = E("i")
n = F("n")
d = G("d")
a = H("a")
j = I("j")
f = J("f")
l.x = g
l.y = i
l.s = n
m.z = d
m.s = n
b.t = g
b.s = g
b.v = g
b.r = i
b.w = i
b.q = n
g.q = a
g.t = n
g.u = f
g.o = f
g.r = j
g.p = b
g.z = b
i.t = m
i.s = l
i.u = g
i.z = j
n.p = j
n.s = g
n.z = b
d.t = j
d.y = a
d.x = a
d.q = i
d.u = f
d.r = g
d.o = g
d.w = b
d.s = l
a.y = b
a.o = i
a.w = l
a.t = n
a.u = m
a.x = m
a.r = j
j.t = b
j.u = b
j.v = a
j.x = a
j.y = l
j.q = l
j.w = d
f.q = n
assert g.z.q.z.r.txt == "i" | 10 | 38 | 3.8 | 0.422222 | 10 | 1 | 9 | 1 | 4.9 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.105263 | 1 | 2 | 2 | 2 | 3 | 2 | 1 | 2 |
24,959 | class A:
def __init__(self, txt: str):
self.v: F = None
self.w: C = None
self.t: E = None
self.p: I = None
self.r: B = None
self.x: J = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.u: G = None
self.z: J = None
self.w: A = None
self.s: F = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: J = None
self.t: D = None
self.r: H = None
self.p: J = None
self.x: F = None
self.z: G = None
self.q: F = None
self.v: D = None
self.s: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: G = None
self.r: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.w: I = None
self.v: I = None
self.z: D = None
self.q: D = None
self.o: H = None
self.x: I = None
self.u: I = None
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.o: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: G = None
self.p: J = None
self.v: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: D = None
self.y: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: A = None
self.w: H = None
self.q: D = None
self.x: A = None
self.o: I = None
self.v: B = None
self.s: F = None
self.z: C = None
self.p: H = None
self.txt = txt
f = A("f")
c = B("c")
b = C("b")
l = D("l")
a = E("a")
i = F("i")
k = G("k")
d = H("d")
e = I("e")
m = J("m")
f.v = i
f.w = b
f.t = a
f.p = e
f.r = c
f.x = m
c.p = l
c.u = k
c.z = m
c.w = f
c.s = i
c.v = b
b.o = m
b.p = m
b.t = l
b.v = l
b.s = l
b.r = d
b.x = i
b.q = i
b.z = k
l.o = d
a.p = k
a.r = l
i.s = b
i.w = e
i.v = e
i.x = e
i.u = e
i.z = l
i.q = l
i.o = d
i.r = k
k.u = c
k.o = d
d.y = k
d.p = m
d.v = f
e.r = l
e.y = i
m.u = f
m.x = f
m.w = d
m.p = d
m.q = l
m.o = e
m.v = c
m.s = i
m.z = b
assert a.r.o.y.u.txt == " | c" | class A:
def __init__(self, txt: str):
self.v: F = None
self.w: C = None
self.t: E = None
self.p: I = None
self.r: B = None
self.x: J = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.u: G = None
self.z: J = None
self.w: A = None
self.s: F = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: J = None
self.t: D = None
self.r: H = None
self.p: J = None
self.x: F = None
self.z: G = None
self.q: F = None
self.v: D = None
self.s: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: G = None
self.r: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.w: I = None
self.v: I = None
self.z: D = None
self.q: D = None
self.o: H = None
self.x: I = None
self.u: I = None
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: B = None
self.o: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: G = None
self.p: J = None
self.v: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: D = None
self.y: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: A = None
self.w: H = None
self.q: D = None
self.x: A = None
self.o: I = None
self.v: B = None
self.s: F = None
self.z: C = None
self.p: H = None
self.txt = txt
f = A("f")
c = B("c")
b = C("b")
l = D("l")
a = E("a")
i = F("i")
k = G("k")
d = H("d")
e = I("e")
m = J("m")
f.v = i
f.w = b
f.t = a
f.p = e
f.r = c
f.x = m
c.p = l
c.u = k
c.z = m
c.w = f
c.s = i
c.v = b
b.o = m
b.p = m
b.t = l
b.v = l
b.s = l
b.r = d
b.x = i
b.q = i
b.z = k
l.o = d
a.p = k
a.r = l
i.s = b
i.w = e
i.v = e
i.x = e
i.u = e
i.z = l
i.q = l
i.o = d
i.r = k
k.u = c
k.o = d
d.y = k
d.p = m
d.v = f
e.r = l
e.y = i
m.u = f
m.x = f
m.w = d
m.p = d
m.q = l
m.o = e
m.v = c
m.s = i
m.z = b
assert a.r.o.y.u.txt == "c" | 10 | 39 | 3.9 | 0.433333 | 10 | 1 | 9 | 1 | 4.9 | 4 | 1 | 1 | 5 | 0.5 | 4 | 0.102564 | 0 | null | null | null | 4 | 1 | 1 | 1 |
24,960 | class A:
def __init__(self, txt: str):
self.p: F = None
self.w: C = None
self.o: F = None
self.v: C = None
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: I = None
self.o: J = None
self.q: D = None
self.v: H = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: J = None
self.p: H = None
self.v: B = None
self.z: H = None
self.u: I = None
self.q: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.t: I = None
self.q: C = None
self.s: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.r: F = None
self.o: F = None
self.v: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: E = None
self.y: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: F = None
self.x: E = None
self.z: A = None
self.r: J = None
self.p: D = None
self.o: B = None
self.q: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: E = None
self.p: B = None
self.s: B = None
self.o: B = None
self.u: I = None
self.v: D = None
self.q: I = None
self.y: E = None
self.z: I = None
self.r: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: F = None
self.w: G = None
self.o: B = None
self.y: A = None
self.txt = txt
n = A("n")
j = B("j")
i = C("i")
d = D("d")
h = E("h")
k = F("k")
m = G("m")
e = H("e")
c = I("c")
f = J("f")
n.p = k
n.o = k
n.w = i
n.v = i
n.q = h
j.y = c
j.o = f
j.q = d
j.p = d
j.v = e
i.w = f
i.p = e
i.z = e
i.v = j
i.u = c
i.q = n
d.w = i
d.q = i
d.t = c
d.s = f
h.u = j
h.r = k
h.o = k
h.v = f
k.p = h
k.y = c
m.u = k
m.x = h
m.z = n
m.r = f
m.p = d
m.o = j
m.q = i
e.w = h
e.y = h
e.p = j
e.s = j
e.o = j
e.r = j
e.u = c
e.q = c
e.z = c
e.v = d
c.u = m
f.r = k
f.w = m
f.o = j
f.y = n
assert m.p.t.u.o.y.u.txt == " | m" | class A:
def __init__(self, txt: str):
self.p: F = None
self.w: C = None
self.o: F = None
self.v: C = None
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: I = None
self.o: J = None
self.q: D = None
self.v: H = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: J = None
self.p: H = None
self.v: B = None
self.z: H = None
self.u: I = None
self.q: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.t: I = None
self.q: C = None
self.s: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.r: F = None
self.o: F = None
self.v: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: E = None
self.y: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: F = None
self.x: E = None
self.z: A = None
self.r: J = None
self.p: D = None
self.o: B = None
self.q: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: E = None
self.p: B = None
self.s: B = None
self.o: B = None
self.u: I = None
self.v: D = None
self.q: I = None
self.y: E = None
self.z: I = None
self.r: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: F = None
self.w: G = None
self.o: B = None
self.y: A = None
self.txt = txt
n = A("n")
j = B("j")
i = C("i")
d = D("d")
h = E("h")
k = F("k")
m = G("m")
e = H("e")
c = I("c")
f = J("f")
n.p = k
n.o = k
n.w = i
n.v = i
n.q = h
j.y = c
j.o = f
j.q = d
j.p = d
j.v = e
i.w = f
i.p = e
i.z = e
i.v = j
i.u = c
i.q = n
d.w = i
d.q = i
d.t = c
d.s = f
h.u = j
h.r = k
h.o = k
h.v = f
k.p = h
k.y = c
m.u = k
m.x = h
m.z = n
m.r = f
m.p = d
m.o = j
m.q = i
e.w = h
e.y = h
e.p = j
e.s = j
e.o = j
e.r = j
e.u = c
e.q = c
e.z = c
e.v = d
c.u = m
f.r = k
f.w = m
f.o = j
f.y = n
assert m.p.t.u.o.y.u.txt == "m" | 10 | 36 | 3.6 | 0.4 | 10 | 1 | 10 | 1 | 4.8 | 6 | 3 | 2 | 4 | 0.4 | 5 | 0.138889 | 3 | 3 | 6 | 3.75 | 5 | 2 | 1 | 2 |
24,961 | class A:
def __init__(self, txt: str):
self.y: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: I = None
self.z: D = None
self.u: H = None
self.v: F = None
self.x: I = None
self.y: D = None
self.r: A = None
self.t: H = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: H = None
self.r: E = None
self.v: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: I = None
self.w: B = None
self.t: E = None
self.v: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: J = None
self.r: A = None
self.w: D = None
self.t: I = None
self.s: J = None
self.q: I = None
self.y: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: F = None
self.y: F = None
self.p: I = None
self.x: I = None
self.s: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: I = None
self.w: F = None
self.u: B = None
self.txt = txt
h = A("h")
m = B("m")
g = C("g")
a = D("a")
i = E("i")
j = F("j")
b = G("b")
d = H("d")
n = I("n")
l = J("l")
h.y = m
h.p = m
m.o = n
m.x = n
m.z = a
m.y = a
m.u = d
m.t = d
m.v = j
m.r = h
m.q = g
g.u = i
a.o = d
a.v = d
a.r = i
i.x = b
j.y = n
j.w = m
j.v = m
j.t = i
b.v = l
b.s = l
b.r = h
b.y = h
b.w = a
b.t = n
b.q = n
d.o = j
d.y = j
d.p = n
d.x = n
d.s = m
n.s = b
l.r = n
l.w = j
l.u = m
assert h.y.x.s.txt == " | b" | class A:
def __init__(self, txt: str):
self.y: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: I = None
self.z: D = None
self.u: H = None
self.v: F = None
self.x: I = None
self.y: D = None
self.r: A = None
self.t: H = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: H = None
self.r: E = None
self.v: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: I = None
self.w: B = None
self.t: E = None
self.v: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: J = None
self.r: A = None
self.w: D = None
self.t: I = None
self.s: J = None
self.q: I = None
self.y: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: F = None
self.y: F = None
self.p: I = None
self.x: I = None
self.s: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: I = None
self.w: F = None
self.u: B = None
self.txt = txt
h = A("h")
m = B("m")
g = C("g")
a = D("a")
i = E("i")
j = F("j")
b = G("b")
d = H("d")
n = I("n")
l = J("l")
h.y = m
h.p = m
m.o = n
m.x = n
m.z = a
m.y = a
m.u = d
m.t = d
m.v = j
m.r = h
m.q = g
g.u = i
a.o = d
a.v = d
a.r = i
i.x = b
j.y = n
j.w = m
j.v = m
j.t = i
b.v = l
b.s = l
b.r = h
b.y = h
b.w = a
b.t = n
b.q = n
d.o = j
d.y = j
d.p = n
d.x = n
d.s = m
n.s = b
l.r = n
l.w = j
l.u = m
assert h.y.x.s.txt == "b" | 10 | 25 | 2.5 | 0.277778 | 10 | 1 | 9 | 1 | 3.6 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.12 | 0 | null | null | null | 3 | 1 | 1 | 1 |
24,962 | class A:
def __init__(self, txt: str):
self.r: D = None
self.v: C = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: I = None
self.w: H = None
self.o: A = None
self.u: J = None
self.y: J = None
self.t: I = None
self.p: E = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: I = None
self.r: F = None
self.t: B = None
self.y: G = None
self.s: B = None
self.u: G = None
self.z: B = None
self.p: J = None
self.q: C = None
self.o: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: J = None
self.w: B = None
self.u: D = None
self.x: H = None
self.q: H = None
self.v: B = None
self.o: J = None
self.s: A = None
self.z: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: H = None
self.r: G = None
self.u: H = None
self.w: D = None
self.q: B = None
self.s: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: I = None
self.w: E = None
self.z: I = None
self.p: B = None
self.r: H = None
self.s: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: C = None
self.u: C = None
self.q: D = None
self.z: E = None
self.w: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.o: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: I = None
self.s: H = None
self.o: G = None
self.w: F = None
self.q: I = None
self.p: H = None
self.z: F = None
self.y: F = None
self.v: D = None
self.txt = txt
m = A("m")
n = B("n")
k = C("k")
c = D("c")
h = E("h")
f = F("f")
b = G("b")
j = H("j")
a = I("a")
g = J("g")
m.r = c
m.v = k
m.y = f
n.s = k
k.v = a
k.t = a
k.w = j
k.o = m
k.u = g
k.y = g
k.p = h
k.x = h
c.x = a
c.o = a
c.r = f
c.t = n
c.s = n
c.z = n
c.y = b
c.u = b
c.p = g
c.q = k
h.r = g
h.o = g
h.w = n
h.v = n
h.u = c
h.x = j
h.q = j
h.s = m
h.z = b
f.t = j
f.u = j
f.r = b
f.w = c
f.q = n
f.s = h
b.x = a
b.z = a
b.w = h
b.p = n
b.r = j
b.s = g
j.s = k
j.u = k
j.q = c
j.z = h
j.w = a
a.o = g
g.x = a
g.q = a
g.s = j
g.p = j
g.o = b
g.w = f
g.z = f
g.y = f
g.v = c
assert g.p.q.q.v.o.w.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.r: D = None
self.v: C = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: I = None
self.w: H = None
self.o: A = None
self.u: J = None
self.y: J = None
self.t: I = None
self.p: E = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: I = None
self.r: F = None
self.t: B = None
self.y: G = None
self.s: B = None
self.u: G = None
self.z: B = None
self.p: J = None
self.q: C = None
self.o: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: J = None
self.w: B = None
self.u: D = None
self.x: H = None
self.q: H = None
self.v: B = None
self.o: J = None
self.s: A = None
self.z: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: H = None
self.r: G = None
self.u: H = None
self.w: D = None
self.q: B = None
self.s: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: I = None
self.w: E = None
self.z: I = None
self.p: B = None
self.r: H = None
self.s: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: C = None
self.u: C = None
self.q: D = None
self.z: E = None
self.w: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.o: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: I = None
self.s: H = None
self.o: G = None
self.w: F = None
self.q: I = None
self.p: H = None
self.z: F = None
self.y: F = None
self.v: D = None
self.txt = txt
m = A("m")
n = B("n")
k = C("k")
c = D("c")
h = E("h")
f = F("f")
b = G("b")
j = H("j")
a = I("a")
g = J("g")
m.r = c
m.v = k
m.y = f
n.s = k
k.v = a
k.t = a
k.w = j
k.o = m
k.u = g
k.y = g
k.p = h
k.x = h
c.x = a
c.o = a
c.r = f
c.t = n
c.s = n
c.z = n
c.y = b
c.u = b
c.p = g
c.q = k
h.r = g
h.o = g
h.w = n
h.v = n
h.u = c
h.x = j
h.q = j
h.s = m
h.z = b
f.t = j
f.u = j
f.r = b
f.w = c
f.q = n
f.s = h
b.x = a
b.z = a
b.w = h
b.p = n
b.r = j
b.s = g
j.s = k
j.u = k
j.q = c
j.z = h
j.w = a
a.o = g
g.x = a
g.q = a
g.s = j
g.p = j
g.o = b
g.w = f
g.z = f
g.y = f
g.v = c
assert g.p.q.q.v.o.w.t.txt == "j" | 10 | 41 | 4.1 | 0.455556 | 10 | 1 | 10 | 1 | 5.8 | 7 | 2 | 1 | 6 | 0.6 | 7 | 0.170732 | 2 | 5 | 6 | 5.5 | 6 | 2 | 2 | 2 |
24,963 | class A:
def __init__(self, txt: str):
self.o: D = None
self.t: B = None
self.q: C = None
self.u: F = None
self.p: H = None
self.r: E = None
self.w: I = None
self.z: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.y: A = None
self.o: D = None
self.t: I = None
self.v: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.r: J = None
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: I = None
self.o: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: I = None
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: J = None
self.p: G = None
self.r: D = None
self.s: B = None
self.q: B = None
self.x: E = None
self.u: J = None
self.z: H = None
self.w: J = None
self.y: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: E = None
self.r: I = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: G = None
self.r: G = None
self.w: G = None
self.y: A = None
self.v: G = None
self.q: C = None
self.u: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: C = None
self.q: H = None
self.t: J = None
self.y: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: F = None
self.s: D = None
self.p: G = None
self.r: B = None
self.txt = txt
d = A("d")
n = B("n")
k = C("k")
m = D("m")
g = E("g")
i = F("i")
j = G("j")
f = H("f")
b = I("b")
h = J("h")
d.o = m
d.t = n
d.q = k
d.u = i
d.p = f
d.r = g
d.w = b
d.z = j
n.r = m
n.o = m
n.y = d
n.t = b
n.v = f
k.y = i
k.r = h
k.z = d
m.w = b
m.o = g
g.r = b
g.p = i
i.t = h
i.u = h
i.w = h
i.p = j
i.r = m
i.s = n
i.q = n
i.x = g
i.z = f
i.y = b
j.x = g
j.r = b
f.t = j
f.r = j
f.w = j
f.v = j
f.y = d
f.q = k
f.u = b
b.z = k
b.q = f
b.y = f
b.t = h
h.w = i
h.s = m
h.p = j
h.r = n
assert f.y.p.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.o: D = None
self.t: B = None
self.q: C = None
self.u: F = None
self.p: H = None
self.r: E = None
self.w: I = None
self.z: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.y: A = None
self.o: D = None
self.t: I = None
self.v: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.r: J = None
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: I = None
self.o: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: I = None
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: J = None
self.p: G = None
self.r: D = None
self.s: B = None
self.q: B = None
self.x: E = None
self.u: J = None
self.z: H = None
self.w: J = None
self.y: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: E = None
self.r: I = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: G = None
self.r: G = None
self.w: G = None
self.y: A = None
self.v: G = None
self.q: C = None
self.u: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.z: C = None
self.q: H = None
self.t: J = None
self.y: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: F = None
self.s: D = None
self.p: G = None
self.r: B = None
self.txt = txt
d = A("d")
n = B("n")
k = C("k")
m = D("m")
g = E("g")
i = F("i")
j = G("j")
f = H("f")
b = I("b")
h = J("h")
d.o = m
d.t = n
d.q = k
d.u = i
d.p = f
d.r = g
d.w = b
d.z = j
n.r = m
n.o = m
n.y = d
n.t = b
n.v = f
k.y = i
k.r = h
k.z = d
m.w = b
m.o = g
g.r = b
g.p = i
i.t = h
i.u = h
i.w = h
i.p = j
i.r = m
i.s = n
i.q = n
i.x = g
i.z = f
i.y = b
j.x = g
j.r = b
f.t = j
f.r = j
f.w = j
f.v = j
f.y = d
f.q = k
f.u = b
b.z = k
b.q = f
b.y = f
b.t = h
h.w = i
h.s = m
h.p = j
h.r = n
assert f.y.p.y.txt == "d" | 10 | 39 | 3.9 | 0.433333 | 10 | 1 | 10 | 2 | 4.7 | 3 | 2 | 2 | 2 | 0.2 | 2 | 0.051282 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 |
24,964 | class A:
def __init__(self, txt: str):
self.y: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: I = None
self.v: G = None
self.y: D = None
self.p: E = None
self.w: F = None
self.u: E = None
self.s: D = None
self.r: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.o: B = None
self.s: F = None
self.u: F = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: G = None
self.p: E = None
self.y: E = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.q: I = None
self.r: F = None
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: J = None
self.o: G = None
self.z: H = None
self.y: C = None
self.q: H = None
self.w: D = None
self.u: C = None
self.t: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: H = None
self.o: D = None
self.p: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: D = None
self.y: G = None
self.z: D = None
self.w: J = None
self.s: E = None
self.t: A = None
self.u: E = None
self.r: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: F = None
self.q: I = None
self.r: I = None
self.z: D = None
self.w: E = None
self.x: A = None
self.txt = txt
b = A("b")
m = B("m")
e = C("e")
i = D("i")
g = E("g")
k = F("k")
d = G("d")
f = H("f")
h = I("h")
c = J("c")
b.y = h
m.x = h
m.r = h
m.v = d
m.y = i
m.s = i
m.p = g
m.u = g
m.w = k
e.p = k
e.s = k
e.u = k
e.o = m
e.w = m
i.v = d
i.p = g
i.y = g
i.r = k
g.s = e
g.q = h
g.r = k
g.p = k
k.s = c
k.o = d
k.z = f
k.q = f
k.y = e
k.u = e
k.w = i
k.t = b
d.y = f
d.o = i
d.p = g
f.y = e
h.q = i
h.z = i
h.r = i
h.y = d
h.w = c
h.s = g
h.u = g
h.t = b
c.u = k
c.q = h
c.r = h
c.z = i
c.w = g
c.x = b
assert d.p.s.w.x.txt == " | h" | class A:
def __init__(self, txt: str):
self.y: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: I = None
self.v: G = None
self.y: D = None
self.p: E = None
self.w: F = None
self.u: E = None
self.s: D = None
self.r: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.o: B = None
self.s: F = None
self.u: F = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: G = None
self.p: E = None
self.y: E = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.q: I = None
self.r: F = None
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: J = None
self.o: G = None
self.z: H = None
self.y: C = None
self.q: H = None
self.w: D = None
self.u: C = None
self.t: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: H = None
self.o: D = None
self.p: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: D = None
self.y: G = None
self.z: D = None
self.w: J = None
self.s: E = None
self.t: A = None
self.u: E = None
self.r: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: F = None
self.q: I = None
self.r: I = None
self.z: D = None
self.w: E = None
self.x: A = None
self.txt = txt
b = A("b")
m = B("m")
e = C("e")
i = D("i")
g = E("g")
k = F("k")
d = G("d")
f = H("f")
h = I("h")
c = J("c")
b.y = h
m.x = h
m.r = h
m.v = d
m.y = i
m.s = i
m.p = g
m.u = g
m.w = k
e.p = k
e.s = k
e.u = k
e.o = m
e.w = m
i.v = d
i.p = g
i.y = g
i.r = k
g.s = e
g.q = h
g.r = k
g.p = k
k.s = c
k.o = d
k.z = f
k.q = f
k.y = e
k.u = e
k.w = i
k.t = b
d.y = f
d.o = i
d.p = g
f.y = e
h.q = i
h.z = i
h.r = i
h.y = d
h.w = c
h.s = g
h.u = g
h.t = b
c.u = k
c.q = h
c.r = h
c.z = i
c.w = g
c.x = b
assert d.p.s.w.x.txt == "h" | 10 | 34 | 3.4 | 0.377778 | 10 | 1 | 8 | 1 | 4.8 | 4 | 1 | 1 | 5 | 0.5 | 4 | 0.117647 | 0 | null | null | null | 4 | 1 | 1 | 1 |
24,965 | class A:
def __init__(self, txt: str):
self.r: E = None
self.s: J = None
self.u: B = None
self.o: E = None
self.p: E = None
self.q: E = None
self.y: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: J = None
self.y: B = None
self.u: G = None
self.o: J = None
self.t: I = None
self.z: I = None
self.q: D = None
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: G = None
self.z: G = None
self.w: C = None
self.u: J = None
self.p: B = None
self.t: J = None
self.s: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: D = None
self.r: C = None
self.u: I = None
self.w: D = None
self.v: D = None
self.p: I = None
self.z: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: E = None
self.o: C = None
self.q: D = None
self.u: C = None
self.t: A = None
self.w: B = None
self.z: E = None
self.s: A = None
self.v: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: J = None
self.s: B = None
self.p: E = None
self.r: F = None
self.x: H = None
self.v: G = None
self.z: H = None
self.w: B = None
self.o: G = None
self.y: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: E = None
self.z: F = None
self.u: A = None
self.r: E = None
self.o: H = None
self.t: F = None
self.s: D = None
self.w: C = None
self.txt = txt
g = A("g")
c = B("c")
f = C("f")
n = D("n")
d = E("d")
i = F("i")
h = G("h")
m = H("m")
a = I("a")
k = J("k")
g.r = d
g.o = d
g.p = d
g.q = d
g.s = k
g.u = c
g.y = m
c.x = n
f.o = a
n.p = f
n.s = c
d.x = k
d.o = k
d.y = c
d.u = h
d.t = a
d.z = a
d.q = n
d.s = n
i.r = h
i.z = h
i.w = f
i.u = k
i.t = k
i.p = c
i.s = a
h.q = n
h.w = n
h.v = n
h.z = n
h.r = f
h.u = a
h.p = a
m.x = d
m.z = d
m.o = f
m.u = f
m.v = f
m.q = n
m.t = g
m.s = g
m.w = c
a.u = k
a.s = c
a.w = c
a.p = d
a.r = i
a.y = i
a.x = m
a.z = m
a.v = h
a.o = h
k.q = d
k.r = d
k.z = i
k.t = i
k.u = g
k.o = m
k.s = n
k.w = f
assert i.p.x.p.o.w.x.p.o.s.x.txt == " | n" | class A:
def __init__(self, txt: str):
self.r: E = None
self.s: J = None
self.u: B = None
self.o: E = None
self.p: E = None
self.q: E = None
self.y: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: J = None
self.y: B = None
self.u: G = None
self.o: J = None
self.t: I = None
self.z: I = None
self.q: D = None
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: G = None
self.z: G = None
self.w: C = None
self.u: J = None
self.p: B = None
self.t: J = None
self.s: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: D = None
self.r: C = None
self.u: I = None
self.w: D = None
self.v: D = None
self.p: I = None
self.z: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: E = None
self.o: C = None
self.q: D = None
self.u: C = None
self.t: A = None
self.w: B = None
self.z: E = None
self.s: A = None
self.v: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: J = None
self.s: B = None
self.p: E = None
self.r: F = None
self.x: H = None
self.v: G = None
self.z: H = None
self.w: B = None
self.o: G = None
self.y: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: E = None
self.z: F = None
self.u: A = None
self.r: E = None
self.o: H = None
self.t: F = None
self.s: D = None
self.w: C = None
self.txt = txt
g = A("g")
c = B("c")
f = C("f")
n = D("n")
d = E("d")
i = F("i")
h = G("h")
m = H("m")
a = I("a")
k = J("k")
g.r = d
g.o = d
g.p = d
g.q = d
g.s = k
g.u = c
g.y = m
c.x = n
f.o = a
n.p = f
n.s = c
d.x = k
d.o = k
d.y = c
d.u = h
d.t = a
d.z = a
d.q = n
d.s = n
i.r = h
i.z = h
i.w = f
i.u = k
i.t = k
i.p = c
i.s = a
h.q = n
h.w = n
h.v = n
h.z = n
h.r = f
h.u = a
h.p = a
m.x = d
m.z = d
m.o = f
m.u = f
m.v = f
m.q = n
m.t = g
m.s = g
m.w = c
a.u = k
a.s = c
a.w = c
a.p = d
a.r = i
a.y = i
a.x = m
a.z = m
a.v = h
a.o = h
k.q = d
k.r = d
k.z = i
k.t = i
k.u = g
k.o = m
k.s = n
k.w = f
assert i.p.x.p.o.w.x.p.o.s.x.txt == "n" | 10 | 38 | 3.8 | 0.422222 | 10 | 1 | 10 | 1 | 6 | 10 | 3 | 3 | 5 | 0.5 | 6 | 0.157895 | 6 | 4 | 8 | 5 | 5 | 3 | 1 | 2 |
24,966 | class A:
def __init__(self, txt: str):
self.r: G = None
self.z: F = None
self.t: G = None
self.x: I = None
self.v: G = None
self.o: D = None
self.y: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.y: A = None
self.s: J = None
self.r: G = None
self.t: F = None
self.p: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: J = None
self.p: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.o: A = None
self.q: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.v: C = None
self.u: D = None
self.x: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: J = None
self.v: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: C = None
self.x: D = None
self.q: H = None
self.o: H = None
self.p: F = None
self.v: F = None
self.txt = txt
c = A("c")
f = B("f")
d = C("d")
b = D("b")
k = E("k")
j = F("j")
g = G("g")
l = H("l")
e = I("e")
a = J("a")
c.r = g
c.t = g
c.v = g
c.z = j
c.x = e
c.o = b
c.y = l
f.u = d
d.w = b
d.y = c
d.s = a
d.p = a
d.r = g
d.t = j
b.v = g
k.y = a
k.p = f
j.u = c
j.o = c
j.q = e
g.o = f
g.v = d
g.u = b
g.x = c
l.t = a
l.v = b
e.s = j
a.t = d
a.x = b
a.q = l
a.o = l
a.p = j
a.v = j
assert g.o.u.t.q.s.u.v.txt == " | g" | class A:
def __init__(self, txt: str):
self.r: G = None
self.z: F = None
self.t: G = None
self.x: I = None
self.v: G = None
self.o: D = None
self.y: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.y: A = None
self.s: J = None
self.r: G = None
self.t: F = None
self.p: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: J = None
self.p: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.o: A = None
self.q: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.v: C = None
self.u: D = None
self.x: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: J = None
self.v: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.s: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: C = None
self.x: D = None
self.q: H = None
self.o: H = None
self.p: F = None
self.v: F = None
self.txt = txt
c = A("c")
f = B("f")
d = C("d")
b = D("b")
k = E("k")
j = F("j")
g = G("g")
l = H("l")
e = I("e")
a = J("a")
c.r = g
c.t = g
c.v = g
c.z = j
c.x = e
c.o = b
c.y = l
f.u = d
d.w = b
d.y = c
d.s = a
d.p = a
d.r = g
d.t = j
b.v = g
k.y = a
k.p = f
j.u = c
j.o = c
j.q = e
g.o = f
g.v = d
g.u = b
g.x = c
l.t = a
l.v = b
e.s = j
a.t = d
a.x = b
a.q = l
a.o = l
a.p = j
a.v = j
assert g.o.u.t.q.s.u.v.txt == "g" | 10 | 27 | 2.7 | 0.3 | 10 | 1 | 7 | 1 | 3.3 | 7 | 2 | 1 | 6 | 0.6 | 7 | 0.259259 | 2 | 2 | 7 | 4.5 | 6 | 2 | 1 | 2 |
24,967 | class A:
def __init__(self, txt: str):
self.z: H = None
self.x: G = None
self.t: D = None
self.o: I = None
self.p: H = None
self.r: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.w: J = None
self.t: F = None
self.v: H = None
self.z: F = None
self.r: H = None
self.p: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.x: G = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: G = None
self.z: J = None
self.s: F = None
self.o: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: J = None
self.w: B = None
self.u: H = None
self.t: D = None
self.r: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: A = None
self.z: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: I = None
self.o: J = None
self.q: J = None
self.t: F = None
self.w: G = None
self.v: J = None
self.p: A = None
self.x: G = None
self.s: F = None
self.y: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: H = None
self.u: H = None
self.y: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: D = None
self.r: C = None
self.txt = txt
e = A("e")
m = B("m")
l = C("l")
n = D("n")
j = E("j")
g = F("g")
f = G("f")
d = H("d")
c = I("c")
b = J("b")
e.z = d
e.p = d
e.x = f
e.t = n
e.o = c
e.r = g
m.s = g
m.t = g
m.z = g
m.w = b
m.v = d
m.r = d
m.p = d
l.o = m
l.x = f
l.v = e
n.y = f
j.p = f
j.z = b
j.s = g
j.o = d
g.v = b
g.w = m
g.u = d
g.t = n
g.r = e
f.x = e
f.z = g
d.r = c
d.o = b
d.q = b
d.v = b
d.t = g
d.s = g
d.w = f
d.x = f
d.p = e
d.y = l
c.r = d
c.u = d
c.y = m
b.u = n
b.r = l
assert d.t.t.y.z.t.y.z.u.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: H = None
self.x: G = None
self.t: D = None
self.o: I = None
self.p: H = None
self.r: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.w: J = None
self.t: F = None
self.v: H = None
self.z: F = None
self.r: H = None
self.p: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.x: G = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: G = None
self.z: J = None
self.s: F = None
self.o: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: J = None
self.w: B = None
self.u: H = None
self.t: D = None
self.r: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: A = None
self.z: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: I = None
self.o: J = None
self.q: J = None
self.t: F = None
self.w: G = None
self.v: J = None
self.p: A = None
self.x: G = None
self.s: F = None
self.y: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: H = None
self.u: H = None
self.y: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: D = None
self.r: C = None
self.txt = txt
e = A("e")
m = B("m")
l = C("l")
n = D("n")
j = E("j")
g = F("g")
f = G("f")
d = H("d")
c = I("c")
b = J("b")
e.z = d
e.p = d
e.x = f
e.t = n
e.o = c
e.r = g
m.s = g
m.t = g
m.z = g
m.w = b
m.v = d
m.r = d
m.p = d
l.o = m
l.x = f
l.v = e
n.y = f
j.p = f
j.z = b
j.s = g
j.o = d
g.v = b
g.w = m
g.u = d
g.t = n
g.r = e
f.x = e
f.z = g
d.r = c
d.o = b
d.q = b
d.v = b
d.t = g
d.s = g
d.w = f
d.x = f
d.p = e
d.y = l
c.r = d
c.u = d
c.y = m
b.u = n
b.r = l
assert d.t.t.y.z.t.y.z.u.txt == "d" | 10 | 33 | 3.3 | 0.366667 | 10 | 1 | 10 | 1 | 4.3 | 8 | 3 | 2 | 4 | 0.4 | 5 | 0.151515 | 5 | 3 | 8 | 4.333333 | 4 | 3 | 2 | 2 |
24,968 | class A:
def __init__(self, txt: str):
self.r: F = None
self.x: G = None
self.s: H = None
self.y: F = None
self.q: J = None
self.t: H = None
self.o: E = None
self.u: D = None
self.z: B = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: E = None
self.x: H = None
self.w: D = None
self.q: C = None
self.s: G = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.t: J = None
self.o: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.p: B = None
self.x: J = None
self.w: G = None
self.y: H = None
self.o: B = None
self.q: A = None
self.t: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.o: H = None
self.r: E = None
self.x: C = None
self.t: A = None
self.z: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.v: D = None
self.p: D = None
self.t: B = None
self.q: H = None
self.x: E = None
self.w: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: A = None
self.v: E = None
self.z: E = None
self.y: F = None
self.w: G = None
self.u: G = None
self.t: B = None
self.s: J = None
self.q: C = None
self.x: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: A = None
self.s: D = None
self.r: E = None
self.q: J = None
self.u: B = None
self.o: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.p: E = None
self.t: G = None
self.r: I = None
self.o: D = None
self.w: A = None
self.txt = txt
e = A("e")
m = B("m")
g = C("g")
c = D("c")
k = E("k")
n = F("n")
h = G("h")
l = H("l")
b = I("b")
d = J("d")
e.r = n
e.y = n
e.x = h
e.s = l
e.t = l
e.q = d
e.o = k
e.u = c
e.w = c
e.z = m
m.o = k
m.x = l
m.w = c
m.q = g
m.s = h
m.r = e
g.w = k
g.t = d
g.o = d
c.s = n
c.p = m
c.o = m
c.x = d
c.w = h
c.y = l
c.q = e
c.t = b
k.x = h
n.s = g
n.x = g
n.o = l
n.r = k
n.t = e
n.z = b
h.o = m
h.t = m
h.v = c
h.p = c
h.q = l
h.x = k
h.w = k
l.o = e
l.v = k
l.z = k
l.y = n
l.w = h
l.u = h
l.t = m
l.s = d
l.q = g
l.x = c
b.y = e
b.s = c
b.r = k
b.q = d
b.u = m
b.o = n
d.p = k
d.t = h
d.r = b
d.o = c
d.w = e
assert l.z.x.x.x.txt == " | h" | class A:
def __init__(self, txt: str):
self.r: F = None
self.x: G = None
self.s: H = None
self.y: F = None
self.q: J = None
self.t: H = None
self.o: E = None
self.u: D = None
self.z: B = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: E = None
self.x: H = None
self.w: D = None
self.q: C = None
self.s: G = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.t: J = None
self.o: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: F = None
self.p: B = None
self.x: J = None
self.w: G = None
self.y: H = None
self.o: B = None
self.q: A = None
self.t: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.o: H = None
self.r: E = None
self.x: C = None
self.t: A = None
self.z: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.v: D = None
self.p: D = None
self.t: B = None
self.q: H = None
self.x: E = None
self.w: E = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: A = None
self.v: E = None
self.z: E = None
self.y: F = None
self.w: G = None
self.u: G = None
self.t: B = None
self.s: J = None
self.q: C = None
self.x: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: A = None
self.s: D = None
self.r: E = None
self.q: J = None
self.u: B = None
self.o: F = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.p: E = None
self.t: G = None
self.r: I = None
self.o: D = None
self.w: A = None
self.txt = txt
e = A("e")
m = B("m")
g = C("g")
c = D("c")
k = E("k")
n = F("n")
h = G("h")
l = H("l")
b = I("b")
d = J("d")
e.r = n
e.y = n
e.x = h
e.s = l
e.t = l
e.q = d
e.o = k
e.u = c
e.w = c
e.z = m
m.o = k
m.x = l
m.w = c
m.q = g
m.s = h
m.r = e
g.w = k
g.t = d
g.o = d
c.s = n
c.p = m
c.o = m
c.x = d
c.w = h
c.y = l
c.q = e
c.t = b
k.x = h
n.s = g
n.x = g
n.o = l
n.r = k
n.t = e
n.z = b
h.o = m
h.t = m
h.v = c
h.p = c
h.q = l
h.x = k
h.w = k
l.o = e
l.v = k
l.z = k
l.y = n
l.w = h
l.u = h
l.t = m
l.s = d
l.q = g
l.x = c
b.y = e
b.s = c
b.r = k
b.q = d
b.u = m
b.o = n
d.p = k
d.t = h
d.r = b
d.o = c
d.w = e
assert l.z.x.x.x.txt == "h" | 10 | 51 | 5.1 | 0.566667 | 10 | 1 | 10 | 1 | 6.2 | 4 | 2 | 2 | 3 | 0.3 | 3 | 0.058824 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 |
24,969 | class A:
def __init__(self, txt: str):
self.v: D = None
self.t: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.r: H = None
self.v: G = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: H = None
self.q: I = None
self.v: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: I = None
self.v: I = None
self.x: F = None
self.o: H = None
self.y: F = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: H = None
self.t: I = None
self.x: G = None
self.r: H = None
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.y: I = None
self.q: I = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: F = None
self.y: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: E = None
self.s: C = None
self.o: D = None
self.p: F = None
self.v: A = None
self.y: F = None
self.r: A = None
self.z: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
k = A("k")
j = B("j")
f = C("f")
l = D("l")
m = E("m")
e = F("e")
n = G("n")
d = H("d")
b = I("b")
h = J("h")
k.v = l
k.t = e
j.z = f
j.r = d
j.v = n
j.y = m
f.x = d
f.q = b
f.v = n
l.z = f
l.o = f
m.w = b
m.v = b
m.x = e
m.y = e
m.o = d
m.u = f
e.s = d
e.r = d
e.t = b
e.x = n
e.w = n
n.t = m
n.y = b
n.q = b
d.r = e
d.y = e
b.t = m
b.s = f
b.o = l
b.p = e
b.y = e
b.v = k
b.r = k
b.z = k
h.x = f
assert j.r.r.w.txt == " | n" | class A:
def __init__(self, txt: str):
self.v: D = None
self.t: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.r: H = None
self.v: G = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: H = None
self.q: I = None
self.v: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: I = None
self.v: I = None
self.x: F = None
self.o: H = None
self.y: F = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: H = None
self.t: I = None
self.x: G = None
self.r: H = None
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.y: I = None
self.q: I = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: F = None
self.y: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.t: E = None
self.s: C = None
self.o: D = None
self.p: F = None
self.v: A = None
self.y: F = None
self.r: A = None
self.z: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
k = A("k")
j = B("j")
f = C("f")
l = D("l")
m = E("m")
e = F("e")
n = G("n")
d = H("d")
b = I("b")
h = J("h")
k.v = l
k.t = e
j.z = f
j.r = d
j.v = n
j.y = m
f.x = d
f.q = b
f.v = n
l.z = f
l.o = f
m.w = b
m.v = b
m.x = e
m.y = e
m.o = d
m.u = f
e.s = d
e.r = d
e.t = b
e.x = n
e.w = n
n.t = m
n.y = b
n.q = b
d.r = e
d.y = e
b.t = m
b.s = f
b.o = l
b.p = e
b.y = e
b.v = k
b.r = k
b.z = k
h.x = f
assert j.r.r.w.txt == "n" | 10 | 26 | 2.6 | 0.288889 | 10 | 1 | 8 | 1 | 3.6 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.115385 | 0 | null | null | null | 2 | 2 | 2 | 1 |
24,970 | class A:
def __init__(self, txt: str):
self.p: E = None
self.r: J = None
self.t: F = None
self.v: E = None
self.w: E = None
self.s: F = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: F = None
self.s: G = None
self.q: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.x: C = None
self.p: C = None
self.y: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: H = None
self.x: D = None
self.u: H = None
self.p: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: D = None
self.u: J = None
self.p: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
c = A("c")
i = B("i")
a = C("a")
h = D("h")
k = E("k")
n = F("n")
f = G("f")
d = H("d")
b = I("b")
l = J("l")
c.p = k
c.v = k
c.w = k
c.r = l
c.t = n
c.s = n
c.u = i
i.t = n
i.s = f
i.q = l
a.w = b
h.t = n
k.r = l
n.z = d
n.x = a
n.p = a
n.y = b
f.v = d
f.u = d
f.x = h
f.p = i
d.o = h
d.u = l
d.p = i
b.q = i
l.z = k
assert c.s.p.w.q.q.z.txt == " | k" | class A:
def __init__(self, txt: str):
self.p: E = None
self.r: J = None
self.t: F = None
self.v: E = None
self.w: E = None
self.s: F = None
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: F = None
self.s: G = None
self.q: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: H = None
self.x: C = None
self.p: C = None
self.y: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: H = None
self.x: D = None
self.u: H = None
self.p: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: D = None
self.u: J = None
self.p: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
c = A("c")
i = B("i")
a = C("a")
h = D("h")
k = E("k")
n = F("n")
f = G("f")
d = H("d")
b = I("b")
l = J("l")
c.p = k
c.v = k
c.w = k
c.r = l
c.t = n
c.s = n
c.u = i
i.t = n
i.s = f
i.q = l
a.w = b
h.t = n
k.r = l
n.z = d
n.x = a
n.p = a
n.y = b
f.v = d
f.u = d
f.x = h
f.p = i
d.o = h
d.u = l
d.p = i
b.q = i
l.z = k
assert c.s.p.w.q.q.z.txt == "k" | 10 | 21 | 2.1 | 0.233333 | 10 | 1 | 7 | 1 | 2.6 | 6 | 1 | 1 | 7 | 0.7 | 6 | 0.285714 | 0 | null | null | null | 5 | 2 | 2 | 1 |
24,971 | class A:
def __init__(self, txt: str):
self.o: D = None
self.t: C = None
self.q: H = None
self.v: G = None
self.u: H = None
self.s: F = None
self.z: H = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.x: H = None
self.p: F = None
self.r: D = None
self.q: H = None
self.s: E = None
self.o: I = None
self.v: D = None
self.z: A = None
self.t: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.u: J = None
self.y: C = None
self.s: I = None
self.t: J = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.q: J = None
self.r: H = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.z: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: H = None
self.w: F = None
self.o: E = None
self.p: J = None
self.t: J = None
self.q: F = None
self.s: D = None
self.y: F = None
self.u: I = None
self.x: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: C = None
self.z: B = None
self.y: I = None
self.x: I = None
self.o: G = None
self.s: D = None
self.v: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: E = None
self.t: J = None
self.v: G = None
self.w: H = None
self.o: C = None
self.u: F = None
self.s: D = None
self.x: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: A = None
self.q: C = None
self.v: A = None
self.z: C = None
self.p: B = None
self.s: G = None
self.y: D = None
self.txt = txt
b = A("b")
d = B("d")
g = C("g")
a = D("a")
k = E("k")
e = F("e")
f = G("f")
m = H("m")
c = I("c")
j = J("j")
b.o = a
b.t = g
b.q = m
b.u = m
b.z = m
b.v = f
b.s = e
b.y = k
d.t = k
g.w = d
g.x = m
g.q = m
g.p = e
g.r = a
g.v = a
g.s = k
g.o = c
g.t = c
g.z = b
a.r = k
a.u = j
a.t = j
a.y = g
a.s = c
a.w = f
k.w = b
k.y = d
k.q = j
k.r = m
k.v = f
e.r = a
e.z = c
f.r = m
f.w = e
f.q = e
f.y = e
f.x = e
f.o = k
f.p = j
f.t = j
f.s = a
f.u = c
m.p = g
m.z = d
m.y = c
m.x = c
m.o = f
m.s = a
m.v = a
c.r = k
c.t = j
c.v = f
c.w = m
c.o = g
c.u = e
c.s = a
c.x = a
j.u = b
j.v = b
j.q = g
j.z = g
j.p = d
j.s = f
j.y = a
assert a.y.v.y.o.o.r.r.txt == " | k" | class A:
def __init__(self, txt: str):
self.o: D = None
self.t: C = None
self.q: H = None
self.v: G = None
self.u: H = None
self.s: F = None
self.z: H = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.x: H = None
self.p: F = None
self.r: D = None
self.q: H = None
self.s: E = None
self.o: I = None
self.v: D = None
self.z: A = None
self.t: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.u: J = None
self.y: C = None
self.s: I = None
self.t: J = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.q: J = None
self.r: H = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.z: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: H = None
self.w: F = None
self.o: E = None
self.p: J = None
self.t: J = None
self.q: F = None
self.s: D = None
self.y: F = None
self.u: I = None
self.x: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: C = None
self.z: B = None
self.y: I = None
self.x: I = None
self.o: G = None
self.s: D = None
self.v: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: E = None
self.t: J = None
self.v: G = None
self.w: H = None
self.o: C = None
self.u: F = None
self.s: D = None
self.x: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: A = None
self.q: C = None
self.v: A = None
self.z: C = None
self.p: B = None
self.s: G = None
self.y: D = None
self.txt = txt
b = A("b")
d = B("d")
g = C("g")
a = D("a")
k = E("k")
e = F("e")
f = G("f")
m = H("m")
c = I("c")
j = J("j")
b.o = a
b.t = g
b.q = m
b.u = m
b.z = m
b.v = f
b.s = e
b.y = k
d.t = k
g.w = d
g.x = m
g.q = m
g.p = e
g.r = a
g.v = a
g.s = k
g.o = c
g.t = c
g.z = b
a.r = k
a.u = j
a.t = j
a.y = g
a.s = c
a.w = f
k.w = b
k.y = d
k.q = j
k.r = m
k.v = f
e.r = a
e.z = c
f.r = m
f.w = e
f.q = e
f.y = e
f.x = e
f.o = k
f.p = j
f.t = j
f.s = a
f.u = c
m.p = g
m.z = d
m.y = c
m.x = c
m.o = f
m.s = a
m.v = a
c.r = k
c.t = j
c.v = f
c.w = m
c.o = g
c.u = e
c.s = a
c.x = a
j.u = b
j.v = b
j.q = g
j.z = g
j.p = d
j.s = f
j.y = a
assert a.y.v.y.o.o.r.r.txt == "k" | 10 | 49 | 4.9 | 0.544444 | 10 | 1 | 10 | 1 | 6.4 | 7 | 3 | 2 | 4 | 0.4 | 6 | 0.122449 | 4 | 2 | 6 | 3.333333 | 4 | 2 | 2 | 3 |
24,972 | class A:
def __init__(self, txt: str):
self.w: D = None
self.r: C = None
self.s: I = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: F = None
self.t: C = None
self.u: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.o: B = None
self.u: C = None
self.q: F = None
self.p: G = None
self.z: B = None
self.w: F = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.z: I = None
self.r: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: B = None
self.v: A = None
self.y: C = None
self.o: J = None
self.q: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: G = None
self.v: A = None
self.x: E = None
self.u: G = None
self.z: I = None
self.q: E = None
self.p: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: D = None
self.o: J = None
self.t: G = None
self.x: F = None
self.u: A = None
self.v: A = None
self.z: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: G = None
self.o: G = None
self.r: A = None
self.z: E = None
self.q: D = None
self.s: G = None
self.y: H = None
self.u: C = None
self.p: A = None
self.v: H = None
self.txt = txt
m = A("m")
c = B("c")
j = C("j")
l = D("l")
i = E("i")
f = F("f")
d = G("d")
a = H("a")
k = I("k")
b = J("b")
m.w = l
m.r = j
m.s = k
m.z = c
c.x = f
c.t = j
c.u = b
j.r = c
l.v = c
l.o = c
l.z = c
l.t = c
l.u = j
l.q = f
l.w = f
l.p = d
i.v = f
i.z = k
i.r = l
f.o = l
d.s = c
d.v = m
d.q = m
d.y = j
d.o = b
a.y = d
a.u = d
a.v = m
a.x = i
a.q = i
a.p = i
a.z = k
k.y = l
k.o = b
k.t = d
k.x = f
k.u = m
k.v = m
k.z = j
b.t = d
b.o = d
b.s = d
b.r = m
b.p = m
b.z = i
b.q = l
b.y = a
b.v = a
b.u = j
assert b.z.z.x.o.p.v.txt == " | m" | class A:
def __init__(self, txt: str):
self.w: D = None
self.r: C = None
self.s: I = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: F = None
self.t: C = None
self.u: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.o: B = None
self.u: C = None
self.q: F = None
self.p: G = None
self.z: B = None
self.w: F = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.z: I = None
self.r: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: B = None
self.v: A = None
self.y: C = None
self.o: J = None
self.q: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: G = None
self.v: A = None
self.x: E = None
self.u: G = None
self.z: I = None
self.q: E = None
self.p: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: D = None
self.o: J = None
self.t: G = None
self.x: F = None
self.u: A = None
self.v: A = None
self.z: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: G = None
self.o: G = None
self.r: A = None
self.z: E = None
self.q: D = None
self.s: G = None
self.y: H = None
self.u: C = None
self.p: A = None
self.v: H = None
self.txt = txt
m = A("m")
c = B("c")
j = C("j")
l = D("l")
i = E("i")
f = F("f")
d = G("d")
a = H("a")
k = I("k")
b = J("b")
m.w = l
m.r = j
m.s = k
m.z = c
c.x = f
c.t = j
c.u = b
j.r = c
l.v = c
l.o = c
l.z = c
l.t = c
l.u = j
l.q = f
l.w = f
l.p = d
i.v = f
i.z = k
i.r = l
f.o = l
d.s = c
d.v = m
d.q = m
d.y = j
d.o = b
a.y = d
a.u = d
a.v = m
a.x = i
a.q = i
a.p = i
a.z = k
k.y = l
k.o = b
k.t = d
k.x = f
k.u = m
k.v = m
k.z = j
b.t = d
b.o = d
b.s = d
b.r = m
b.p = m
b.z = i
b.q = l
b.y = a
b.v = a
b.u = j
assert b.z.z.x.o.p.v.txt == "m" | 10 | 36 | 3.6 | 0.4 | 10 | 1 | 10 | 1 | 4.9 | 6 | 1 | 1 | 7 | 0.7 | 6 | 0.166667 | 0 | null | null | null | 5 | 2 | 2 | 1 |
24,973 | class A:
def __init__(self, txt: str):
self.x: E = None
self.p: H = None
self.y: C = None
self.v: G = None
self.w: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.t: A = None
self.u: I = None
self.z: G = None
self.p: H = None
self.x: E = None
self.v: A = None
self.w: B = None
self.o: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: E = None
self.v: J = None
self.x: G = None
self.z: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: A = None
self.y: D = None
self.r: C = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.t: D = None
self.q: F = None
self.u: A = None
self.w: B = None
self.s: J = None
self.o: E = None
self.v: I = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: F = None
self.t: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: C = None
self.p: D = None
self.z: H = None
self.q: C = None
self.v: C = None
self.s: E = None
self.r: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: G = None
self.s: C = None
self.q: G = None
self.txt = txt
c = A("c")
l = B("l")
b = C("b")
h = D("h")
f = E("f")
j = F("j")
n = G("n")
i = H("i")
m = I("m")
d = J("d")
c.x = f
c.p = i
c.y = b
c.v = n
c.w = m
l.x = n
b.y = l
b.w = l
b.t = c
b.v = c
b.u = m
b.z = n
b.p = i
b.x = f
b.o = d
h.t = f
h.v = d
h.z = d
h.x = n
f.q = i
j.o = c
j.y = h
j.r = b
j.v = f
n.z = l
n.w = l
n.t = h
n.q = j
n.u = c
n.s = d
n.o = f
n.v = m
i.y = j
i.t = h
m.y = b
m.q = b
m.v = b
m.p = h
m.r = h
m.z = i
m.s = f
d.t = n
d.q = n
d.s = b
assert c.p.y.r.z.v.r.x.v.txt == " | m" | class A:
def __init__(self, txt: str):
self.x: E = None
self.p: H = None
self.y: C = None
self.v: G = None
self.w: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.t: A = None
self.u: I = None
self.z: G = None
self.p: H = None
self.x: E = None
self.v: A = None
self.w: B = None
self.o: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: E = None
self.v: J = None
self.x: G = None
self.z: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: A = None
self.y: D = None
self.r: C = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.t: D = None
self.q: F = None
self.u: A = None
self.w: B = None
self.s: J = None
self.o: E = None
self.v: I = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: F = None
self.t: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: C = None
self.p: D = None
self.z: H = None
self.q: C = None
self.v: C = None
self.s: E = None
self.r: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: G = None
self.s: C = None
self.q: G = None
self.txt = txt
c = A("c")
l = B("l")
b = C("b")
h = D("h")
f = E("f")
j = F("j")
n = G("n")
i = H("i")
m = I("m")
d = J("d")
c.x = f
c.p = i
c.y = b
c.v = n
c.w = m
l.x = n
b.y = l
b.w = l
b.t = c
b.v = c
b.u = m
b.z = n
b.p = i
b.x = f
b.o = d
h.t = f
h.v = d
h.z = d
h.x = n
f.q = i
j.o = c
j.y = h
j.r = b
j.v = f
n.z = l
n.w = l
n.t = h
n.q = j
n.u = c
n.s = d
n.o = f
n.v = m
i.y = j
i.t = h
m.y = b
m.q = b
m.v = b
m.p = h
m.r = h
m.z = i
m.s = f
d.t = n
d.q = n
d.s = b
assert c.p.y.r.z.v.r.x.v.txt == "m" | 10 | 36 | 3.6 | 0.4 | 10 | 1 | 9 | 1 | 4.4 | 8 | 2 | 2 | 7 | 0.7 | 7 | 0.194444 | 2 | 3 | 3 | 3 | 6 | 2 | 1 | 1 |
24,974 | class A:
def __init__(self, txt: str):
self.v: I = None
self.r: E = None
self.w: F = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: J = None
self.z: F = None
self.r: F = None
self.x: C = None
self.y: A = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: H = None
self.t: G = None
self.o: D = None
self.q: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: H = None
self.z: B = None
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: C = None
self.r: J = None
self.z: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: B = None
self.y: B = None
self.s: E = None
self.q: J = None
self.u: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.t: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.u: E = None
self.z: G = None
self.p: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: J = None
self.r: C = None
self.u: D = None
self.q: J = None
self.o: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: I = None
self.o: C = None
self.r: F = None
self.v: G = None
self.q: A = None
self.u: H = None
self.s: D = None
self.p: F = None
self.z: G = None
self.w: H = None
self.txt = txt
f = A("f")
j = B("j")
e = C("e")
a = D("a")
d = E("d")
g = F("g")
h = G("h")
b = H("b")
k = I("k")
m = J("m")
f.v = k
f.r = d
f.w = g
f.y = j
j.s = m
j.z = g
j.r = g
j.x = e
j.y = f
j.v = d
e.u = b
e.t = h
e.q = h
e.o = a
a.t = b
a.z = j
a.v = g
d.v = e
d.r = m
d.z = m
g.o = j
g.y = j
g.s = d
g.q = m
g.u = f
h.v = d
h.t = f
b.u = d
b.z = h
b.p = k
k.x = m
k.q = m
k.r = e
k.u = a
k.o = j
m.x = k
m.o = e
m.r = g
m.p = g
m.v = h
m.z = h
m.q = f
m.u = b
m.w = b
m.s = a
assert b.u.v.u.z.t.y.txt == " | j" | class A:
def __init__(self, txt: str):
self.v: I = None
self.r: E = None
self.w: F = None
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: J = None
self.z: F = None
self.r: F = None
self.x: C = None
self.y: A = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: H = None
self.t: G = None
self.o: D = None
self.q: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: H = None
self.z: B = None
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: C = None
self.r: J = None
self.z: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: B = None
self.y: B = None
self.s: E = None
self.q: J = None
self.u: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: E = None
self.t: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.u: E = None
self.z: G = None
self.p: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: J = None
self.r: C = None
self.u: D = None
self.q: J = None
self.o: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: I = None
self.o: C = None
self.r: F = None
self.v: G = None
self.q: A = None
self.u: H = None
self.s: D = None
self.p: F = None
self.z: G = None
self.w: H = None
self.txt = txt
f = A("f")
j = B("j")
e = C("e")
a = D("a")
d = E("d")
g = F("g")
h = G("h")
b = H("b")
k = I("k")
m = J("m")
f.v = k
f.r = d
f.w = g
f.y = j
j.s = m
j.z = g
j.r = g
j.x = e
j.y = f
j.v = d
e.u = b
e.t = h
e.q = h
e.o = a
a.t = b
a.z = j
a.v = g
d.v = e
d.r = m
d.z = m
g.o = j
g.y = j
g.s = d
g.q = m
g.u = f
h.v = d
h.t = f
b.u = d
b.z = h
b.p = k
k.x = m
k.q = m
k.r = e
k.u = a
k.o = j
m.x = k
m.o = e
m.r = g
m.p = g
m.v = h
m.z = h
m.q = f
m.u = b
m.w = b
m.s = a
assert b.u.v.u.z.t.y.txt == "j" | 10 | 37 | 3.7 | 0.411111 | 10 | 1 | 10 | 2 | 4.5 | 6 | 2 | 1 | 6 | 0.6 | 6 | 0.162162 | 1 | 3 | 3 | 3 | 5 | 2 | 1 | 2 |
24,975 | class A:
def __init__(self, txt: str):
self.q: H = None
self.w: J = None
self.t: J = None
self.z: J = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: I = None
self.r: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: D = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.q: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.u: A = None
self.w: B = None
self.q: A = None
self.s: D = None
self.t: G = None
self.r: A = None
self.v: D = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.p: I = None
self.r: I = None
self.u: A = None
self.v: D = None
self.q: E = None
self.s: G = None
self.y: B = None
self.o: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.z: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: G = None
self.u: E = None
self.r: G = None
self.q: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: H = None
self.r: F = None
self.q: D = None
self.txt = txt
k = A("k")
j = B("j")
g = C("g")
e = D("e")
a = E("a")
d = F("d")
f = G("f")
n = H("n")
h = I("h")
c = J("c")
k.q = n
k.w = c
k.t = c
k.z = c
j.v = h
j.r = e
g.u = e
g.q = e
e.p = f
e.q = j
a.o = k
a.u = k
a.q = k
a.r = k
a.x = k
a.w = j
a.s = e
a.v = e
a.t = f
d.z = g
d.p = h
d.r = h
d.u = k
d.v = e
d.q = a
d.s = f
d.y = j
d.o = n
f.y = a
f.z = e
n.o = h
h.p = f
h.r = f
h.u = a
h.q = n
c.x = n
c.r = d
c.q = e
assert e.q.v.u.q.z.x.o.txt == " | h" | class A:
def __init__(self, txt: str):
self.q: H = None
self.w: J = None
self.t: J = None
self.z: J = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: I = None
self.r: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: D = None
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.q: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.u: A = None
self.w: B = None
self.q: A = None
self.s: D = None
self.t: G = None
self.r: A = None
self.v: D = None
self.x: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.p: I = None
self.r: I = None
self.u: A = None
self.v: D = None
self.q: E = None
self.s: G = None
self.y: B = None
self.o: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.z: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: G = None
self.u: E = None
self.r: G = None
self.q: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: H = None
self.r: F = None
self.q: D = None
self.txt = txt
k = A("k")
j = B("j")
g = C("g")
e = D("e")
a = E("a")
d = F("d")
f = G("f")
n = H("n")
h = I("h")
c = J("c")
k.q = n
k.w = c
k.t = c
k.z = c
j.v = h
j.r = e
g.u = e
g.q = e
e.p = f
e.q = j
a.o = k
a.u = k
a.q = k
a.r = k
a.x = k
a.w = j
a.s = e
a.v = e
a.t = f
d.z = g
d.p = h
d.r = h
d.u = k
d.v = e
d.q = a
d.s = f
d.y = j
d.o = n
f.y = a
f.z = e
n.o = h
h.p = f
h.r = f
h.u = a
h.q = n
c.x = n
c.r = d
c.q = e
assert e.q.v.u.q.z.x.o.txt == "h" | 10 | 28 | 2.8 | 0.311111 | 10 | 1 | 9 | 1 | 3.8 | 7 | 2 | 1 | 7 | 0.7 | 7 | 0.25 | 1 | 5 | 5 | 5 | 6 | 2 | 1 | 1 |
24,976 | class A:
def __init__(self, txt: str):
self.z: D = None
self.p: D = None
self.w: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.w: H = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.s: I = None
self.y: F = None
self.v: H = None
self.w: B = None
self.p: B = None
self.z: C = None
self.t: B = None
self.o: F = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: I = None
self.p: A = None
self.z: C = None
self.o: D = None
self.r: F = None
self.s: F = None
self.t: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: D = None
self.x: B = None
self.t: B = None
self.q: C = None
self.w: J = None
self.z: G = None
self.p: I = None
self.r: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: B = None
self.t: E = None
self.r: E = None
self.p: B = None
self.x: E = None
self.s: C = None
self.q: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: F = None
self.y: H = None
self.x: G = None
self.u: I = None
self.txt = txt
d = A("d")
k = B("k")
n = C("n")
e = D("e")
f = E("f")
b = F("b")
m = G("m")
g = H("g")
a = I("a")
i = J("i")
d.z = e
d.p = e
d.w = a
k.u = d
k.x = d
k.w = g
n.s = m
n.y = k
e.q = d
e.s = a
e.y = b
e.o = b
e.r = b
e.v = g
e.w = k
e.p = k
e.t = k
e.z = n
f.q = d
b.q = g
m.v = a
m.p = d
m.z = n
m.t = n
m.o = e
m.r = b
m.s = b
g.o = e
g.x = k
g.t = k
g.q = n
g.w = i
g.r = i
g.z = m
g.p = a
a.u = k
a.p = k
a.t = f
a.r = f
a.x = f
a.s = n
a.q = i
i.w = b
i.y = g
i.x = m
i.u = a
assert b.q.x.w.o.z.s.txt == " | m" | class A:
def __init__(self, txt: str):
self.z: D = None
self.p: D = None
self.w: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.w: H = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.s: I = None
self.y: F = None
self.v: H = None
self.w: B = None
self.p: B = None
self.z: C = None
self.t: B = None
self.o: F = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: I = None
self.p: A = None
self.z: C = None
self.o: D = None
self.r: F = None
self.s: F = None
self.t: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.o: D = None
self.x: B = None
self.t: B = None
self.q: C = None
self.w: J = None
self.z: G = None
self.p: I = None
self.r: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.u: B = None
self.t: E = None
self.r: E = None
self.p: B = None
self.x: E = None
self.s: C = None
self.q: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: F = None
self.y: H = None
self.x: G = None
self.u: I = None
self.txt = txt
d = A("d")
k = B("k")
n = C("n")
e = D("e")
f = E("f")
b = F("b")
m = G("m")
g = H("g")
a = I("a")
i = J("i")
d.z = e
d.p = e
d.w = a
k.u = d
k.x = d
k.w = g
n.s = m
n.y = k
e.q = d
e.s = a
e.y = b
e.o = b
e.r = b
e.v = g
e.w = k
e.p = k
e.t = k
e.z = n
f.q = d
b.q = g
m.v = a
m.p = d
m.z = n
m.t = n
m.o = e
m.r = b
m.s = b
g.o = e
g.x = k
g.t = k
g.q = n
g.w = i
g.r = i
g.z = m
g.p = a
a.u = k
a.p = k
a.t = f
a.r = f
a.x = f
a.s = n
a.q = i
i.w = b
i.y = g
i.x = m
i.u = a
assert b.q.x.w.o.z.s.txt == "m" | 10 | 33 | 3.3 | 0.366667 | 10 | 1 | 10 | 1 | 4.6 | 6 | 2 | 1 | 6 | 0.6 | 6 | 0.181818 | 1 | 2 | 2 | 2 | 6 | 1 | 1 | 2 |
24,977 | class A:
def __init__(self, txt: str):
self.z: J = None
self.s: J = None
self.u: H = None
self.x: F = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: G = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.q: C = None
self.r: C = None
self.s: C = None
self.o: B = None
self.v: B = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: I = None
self.r: A = None
self.q: A = None
self.v: H = None
self.t: C = None
self.y: A = None
self.o: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: J = None
self.t: C = None
self.y: I = None
self.u: D = None
self.v: B = None
self.s: F = None
self.o: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: F = None
self.s: D = None
self.y: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: A = None
self.w: A = None
self.s: E = None
self.v: H = None
self.o: G = None
self.p: H = None
self.z: E = None
self.txt = txt
h = A("h")
j = B("j")
e = C("e")
f = D("f")
m = E("m")
d = F("d")
b = G("b")
g = H("g")
l = I("l")
c = J("c")
h.z = c
h.s = c
h.u = g
h.x = d
h.t = j
j.s = e
j.v = f
e.v = b
e.w = h
f.z = m
f.q = e
f.r = e
f.s = e
f.o = j
f.v = j
f.t = b
m.p = d
m.q = d
d.w = l
d.r = h
d.q = h
d.y = h
d.v = g
d.t = e
d.o = m
b.v = d
g.x = c
g.t = e
g.y = l
g.o = l
g.u = f
g.v = j
g.s = d
l.q = d
l.s = f
l.y = b
c.y = h
c.w = h
c.s = m
c.z = m
c.v = g
c.p = g
c.o = b
assert m.q.w.y.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: J = None
self.s: J = None
self.u: H = None
self.x: F = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: C = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: G = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.q: C = None
self.r: C = None
self.s: C = None
self.o: B = None
self.v: B = None
self.t: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: I = None
self.r: A = None
self.q: A = None
self.v: H = None
self.t: C = None
self.y: A = None
self.o: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: J = None
self.t: C = None
self.y: I = None
self.u: D = None
self.v: B = None
self.s: F = None
self.o: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: F = None
self.s: D = None
self.y: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: A = None
self.w: A = None
self.s: E = None
self.v: H = None
self.o: G = None
self.p: H = None
self.z: E = None
self.txt = txt
h = A("h")
j = B("j")
e = C("e")
f = D("f")
m = E("m")
d = F("d")
b = G("b")
g = H("g")
l = I("l")
c = J("c")
h.z = c
h.s = c
h.u = g
h.x = d
h.t = j
j.s = e
j.v = f
e.v = b
e.w = h
f.z = m
f.q = e
f.r = e
f.s = e
f.o = j
f.v = j
f.t = b
m.p = d
m.q = d
d.w = l
d.r = h
d.q = h
d.y = h
d.v = g
d.t = e
d.o = m
b.v = d
g.x = c
g.t = e
g.y = l
g.o = l
g.u = f
g.v = j
g.s = d
l.q = d
l.s = f
l.y = b
c.y = h
c.w = h
c.s = m
c.z = m
c.v = g
c.p = g
c.o = b
assert m.q.w.y.v.txt == "d" | 10 | 32 | 3.2 | 0.355556 | 10 | 1 | 7 | 1 | 4.3 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.125 | 1 | 3 | 3 | 3 | 4 | 1 | 1 | 1 |
24,978 | class A:
def __init__(self, txt: str):
self.t: I = None
self.r: H = None
self.v: G = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: E = None
self.w: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: J = None
self.z: F = None
self.q: F = None
self.r: B = None
self.s: H = None
self.o: B = None
self.p: H = None
self.t: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: I = None
self.q: B = None
self.y: F = None
self.r: H = None
self.o: C = None
self.u: D = None
self.v: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: H = None
self.y: G = None
self.z: D = None
self.q: J = None
self.w: A = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: A = None
self.q: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: F = None
self.z: F = None
self.o: H = None
self.v: C = None
self.t: B = None
self.s: E = None
self.q: H = None
self.u: A = None
self.p: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
b = A("b")
h = B("h")
e = C("e")
i = D("i")
k = E("k")
g = F("g")
n = G("n")
a = H("a")
j = I("j")
c = J("c")
b.t = j
b.r = a
b.v = n
b.s = i
h.t = b
e.o = k
e.w = n
i.y = c
i.z = g
i.q = g
i.r = h
i.o = h
i.s = a
i.p = a
i.t = j
k.w = j
k.q = h
k.y = g
k.r = a
k.o = e
k.u = i
k.v = c
g.r = a
g.y = n
g.z = i
g.q = c
g.w = b
g.v = k
n.z = h
a.p = b
a.q = i
j.y = g
j.z = g
j.o = a
j.q = a
j.v = e
j.t = h
j.s = k
j.u = b
j.p = c
c.p = g
assert b.r.p.s.y.p.txt == " | g" | class A:
def __init__(self, txt: str):
self.t: I = None
self.r: H = None
self.v: G = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: E = None
self.w: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: J = None
self.z: F = None
self.q: F = None
self.r: B = None
self.s: H = None
self.o: B = None
self.p: H = None
self.t: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: I = None
self.q: B = None
self.y: F = None
self.r: H = None
self.o: C = None
self.u: D = None
self.v: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: H = None
self.y: G = None
self.z: D = None
self.q: J = None
self.w: A = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: A = None
self.q: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.y: F = None
self.z: F = None
self.o: H = None
self.v: C = None
self.t: B = None
self.s: E = None
self.q: H = None
self.u: A = None
self.p: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
b = A("b")
h = B("h")
e = C("e")
i = D("i")
k = E("k")
g = F("g")
n = G("n")
a = H("a")
j = I("j")
c = J("c")
b.t = j
b.r = a
b.v = n
b.s = i
h.t = b
e.o = k
e.w = n
i.y = c
i.z = g
i.q = g
i.r = h
i.o = h
i.s = a
i.p = a
i.t = j
k.w = j
k.q = h
k.y = g
k.r = a
k.o = e
k.u = i
k.v = c
g.r = a
g.y = n
g.z = i
g.q = c
g.w = b
g.v = k
n.z = h
a.p = b
a.q = i
j.y = g
j.z = g
j.o = a
j.q = a
j.v = e
j.t = h
j.s = k
j.u = b
j.p = c
c.p = g
assert b.r.p.s.y.p.txt == "g" | 10 | 36 | 3.6 | 0.4 | 10 | 1 | 9 | 1 | 4.1 | 5 | 2 | 1 | 5 | 0.5 | 5 | 0.138889 | 1 | 2 | 2 | 2 | 4 | 2 | 1 | 2 |
24,979 | class A:
def __init__(self, txt: str):
self.v: D = None
self.p: B = None
self.z: C = None
self.q: E = None
self.w: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.y: A = None
self.u: A = None
self.q: F = None
self.r: G = None
self.z: D = None
self.v: H = None
self.x: G = None
self.w: A = None
self.p: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: J = None
self.z: F = None
self.s: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: G = None
self.r: A = None
self.u: H = None
self.o: J = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: A = None
self.p: D = None
self.s: E = None
self.z: B = None
self.u: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: A = None
self.o: H = None
self.t: I = None
self.v: I = None
self.z: F = None
self.w: F = None
self.q: A = None
self.u: A = None
self.txt = txt
j = A("j")
h = B("h")
e = C("e")
a = D("a")
l = E("l")
k = F("k")
n = G("n")
i = H("i")
m = I("m")
f = J("f")
j.v = a
j.p = h
j.z = e
j.q = l
j.w = n
h.z = l
e.t = n
e.r = n
e.x = n
e.y = j
e.u = j
e.w = j
e.q = k
e.z = a
e.v = i
e.p = f
a.r = f
a.z = k
a.s = m
l.q = k
k.p = n
k.r = j
k.u = i
k.o = f
n.r = k
i.z = j
m.x = j
m.p = a
m.s = l
m.z = h
m.u = h
f.y = j
f.q = j
f.u = j
f.o = i
f.t = m
f.v = m
f.z = k
f.w = k
assert m.s.q.r.w.r.o.z.u.z.z.txt == " | e" | class A:
def __init__(self, txt: str):
self.v: D = None
self.p: B = None
self.z: C = None
self.q: E = None
self.w: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.y: A = None
self.u: A = None
self.q: F = None
self.r: G = None
self.z: D = None
self.v: H = None
self.x: G = None
self.w: A = None
self.p: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: J = None
self.z: F = None
self.s: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: G = None
self.r: A = None
self.u: H = None
self.o: J = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: F = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: A = None
self.p: D = None
self.s: E = None
self.z: B = None
self.u: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: A = None
self.o: H = None
self.t: I = None
self.v: I = None
self.z: F = None
self.w: F = None
self.q: A = None
self.u: A = None
self.txt = txt
j = A("j")
h = B("h")
e = C("e")
a = D("a")
l = E("l")
k = F("k")
n = G("n")
i = H("i")
m = I("m")
f = J("f")
j.v = a
j.p = h
j.z = e
j.q = l
j.w = n
h.z = l
e.t = n
e.r = n
e.x = n
e.y = j
e.u = j
e.w = j
e.q = k
e.z = a
e.v = i
e.p = f
a.r = f
a.z = k
a.s = m
l.q = k
k.p = n
k.r = j
k.u = i
k.o = f
n.r = k
i.z = j
m.x = j
m.p = a
m.s = l
m.z = h
m.u = h
f.y = j
f.q = j
f.u = j
f.o = i
f.t = m
f.v = m
f.z = k
f.w = k
assert m.s.q.r.w.r.o.z.u.z.z.txt == "e" | 10 | 30 | 3 | 0.333333 | 10 | 1 | 10 | 1 | 3.9 | 10 | 3 | 1 | 8 | 0.8 | 10 | 0.333333 | 3 | 2 | 6 | 4 | 7 | 3 | 2 | 3 |
24,980 | class A:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: J = None
self.o: I = None
self.u: A = None
self.p: D = None
self.t: G = None
self.r: C = None
self.s: E = None
self.z: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.z: A = None
self.p: J = None
self.q: B = None
self.r: E = None
self.y: H = None
self.u: I = None
self.s: D = None
self.o: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: F = None
self.z: J = None
self.o: G = None
self.u: H = None
self.w: J = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: I = None
self.z: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: C = None
self.u: F = None
self.w: I = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: F = None
self.w: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.s: A = None
self.o: E = None
self.y: B = None
self.p: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: G = None
self.s: F = None
self.p: E = None
self.txt = txt
l = A("l")
k = B("k")
b = C("b")
a = D("a")
e = E("e")
h = F("h")
f = G("f")
g = H("g")
c = I("c")
d = J("d")
l.o = f
k.y = d
k.o = c
k.z = c
k.u = l
k.p = a
k.t = f
k.r = b
k.s = e
b.w = l
b.z = l
b.p = d
b.q = k
b.r = e
b.y = g
b.o = g
b.u = c
b.s = a
a.z = h
e.x = h
e.r = h
e.z = d
e.w = d
e.o = f
e.u = g
h.r = c
h.z = b
f.y = b
f.u = h
f.w = c
g.r = h
g.w = f
c.s = l
c.p = l
c.o = e
c.y = k
d.w = f
d.s = h
d.p = e
assert l.o.u.r.p.o.y.txt == " | b" | class A:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: J = None
self.o: I = None
self.u: A = None
self.p: D = None
self.t: G = None
self.r: C = None
self.s: E = None
self.z: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.z: A = None
self.p: J = None
self.q: B = None
self.r: E = None
self.y: H = None
self.u: I = None
self.s: D = None
self.o: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: F = None
self.z: J = None
self.o: G = None
self.u: H = None
self.w: J = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: I = None
self.z: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: C = None
self.u: F = None
self.w: I = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: F = None
self.w: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.s: A = None
self.o: E = None
self.y: B = None
self.p: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: G = None
self.s: F = None
self.p: E = None
self.txt = txt
l = A("l")
k = B("k")
b = C("b")
a = D("a")
e = E("e")
h = F("h")
f = G("f")
g = H("g")
c = I("c")
d = J("d")
l.o = f
k.y = d
k.o = c
k.z = c
k.u = l
k.p = a
k.t = f
k.r = b
k.s = e
b.w = l
b.z = l
b.p = d
b.q = k
b.r = e
b.y = g
b.o = g
b.u = c
b.s = a
a.z = h
e.x = h
e.r = h
e.z = d
e.w = d
e.o = f
e.u = g
h.r = c
h.z = b
f.y = b
f.u = h
f.w = c
g.r = h
g.w = f
c.s = l
c.p = l
c.o = e
c.y = k
d.w = f
d.s = h
d.p = e
assert l.o.u.r.p.o.y.txt == "b" | 10 | 33 | 3.3 | 0.366667 | 10 | 1 | 9 | 1 | 3.9 | 6 | 2 | 2 | 5 | 0.5 | 5 | 0.151515 | 2 | 4 | 4 | 4 | 5 | 2 | 1 | 2 |
24,981 | class A:
def __init__(self, txt: str):
self.w: I = None
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.x: C = None
self.r: E = None
self.w: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.s: H = None
self.z: F = None
self.u: F = None
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: E = None
self.w: G = None
self.s: E = None
self.x: A = None
self.o: D = None
self.r: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: H = None
self.w: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: A = None
self.p: B = None
self.y: D = None
self.v: D = None
self.o: B = None
self.z: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: D = None
self.y: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.p: C = None
self.o: B = None
self.z: B = None
self.t: I = None
self.x: E = None
self.txt = txt
f = A("f")
b = B("b")
k = C("k")
h = D("h")
d = E("d")
j = F("j")
m = G("m")
a = H("a")
i = I("i")
l = J("l")
f.w = i
f.r = h
b.v = h
b.x = k
b.r = d
b.w = i
k.o = h
h.o = k
h.s = a
h.z = j
h.u = j
h.p = f
d.p = j
d.w = b
j.t = d
j.s = d
j.w = m
j.x = f
j.o = h
j.r = h
m.u = a
m.w = b
a.q = f
a.z = f
a.p = b
a.o = b
a.y = h
a.v = h
i.r = h
i.y = a
l.p = k
l.o = b
l.z = b
l.t = i
l.x = d
assert i.r.z.x.w.r.o.o.o.o.o.txt == " | k" | class A:
def __init__(self, txt: str):
self.w: I = None
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.x: C = None
self.r: E = None
self.w: I = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.s: H = None
self.z: F = None
self.u: F = None
self.p: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: E = None
self.w: G = None
self.s: E = None
self.x: A = None
self.o: D = None
self.r: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: H = None
self.w: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: A = None
self.p: B = None
self.y: D = None
self.v: D = None
self.o: B = None
self.z: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: D = None
self.y: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.p: C = None
self.o: B = None
self.z: B = None
self.t: I = None
self.x: E = None
self.txt = txt
f = A("f")
b = B("b")
k = C("k")
h = D("h")
d = E("d")
j = F("j")
m = G("m")
a = H("a")
i = I("i")
l = J("l")
f.w = i
f.r = h
b.v = h
b.x = k
b.r = d
b.w = i
k.o = h
h.o = k
h.s = a
h.z = j
h.u = j
h.p = f
d.p = j
d.w = b
j.t = d
j.s = d
j.w = m
j.x = f
j.o = h
j.r = h
m.u = a
m.w = b
a.q = f
a.z = f
a.p = b
a.o = b
a.y = h
a.v = h
i.r = h
i.y = a
l.p = k
l.o = b
l.z = b
l.t = i
l.x = d
assert i.r.z.x.w.r.o.o.o.o.o.txt == "k" | 10 | 28 | 2.8 | 0.311111 | 10 | 1 | 6 | 1 | 3.5 | 10 | 4 | 3 | 5 | 0.5 | 6 | 0.214286 | 6 | 2 | 8 | 3.8 | 5 | 5 | 5 | 2 |
24,982 | class A:
def __init__(self, txt: str):
self.r: H = None
self.s: C = None
self.p: C = None
self.v: J = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: E = None
self.v: E = None
self.z: I = None
self.u: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.q: H = None
self.p: B = None
self.z: H = None
self.y: G = None
self.r: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.q: H = None
self.p: D = None
self.t: I = None
self.w: G = None
self.s: J = None
self.y: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: I = None
self.z: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: H = None
self.y: G = None
self.q: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: H = None
self.p: E = None
self.z: D = None
self.txt = txt
d = A("d")
i = B("i")
j = C("j")
f = D("f")
e = E("e")
b = F("b")
n = G("n")
a = H("a")
l = I("l")
g = J("g")
d.r = a
d.s = j
d.p = j
d.u = j
d.v = g
i.p = e
i.v = e
i.z = l
i.u = g
j.w = l
f.t = i
e.t = f
e.r = f
e.q = a
e.z = a
e.p = i
e.y = n
b.o = j
b.q = a
b.p = f
b.t = l
b.w = n
b.s = g
b.y = e
n.r = l
n.z = d
a.p = d
l.p = a
l.y = n
l.q = n
g.o = a
g.p = e
g.z = f
assert g.z.t.u.txt == " | g" | class A:
def __init__(self, txt: str):
self.r: H = None
self.s: C = None
self.p: C = None
self.v: J = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: E = None
self.v: E = None
self.z: I = None
self.u: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.q: H = None
self.p: B = None
self.z: H = None
self.y: G = None
self.r: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.q: H = None
self.p: D = None
self.t: I = None
self.w: G = None
self.s: J = None
self.y: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: I = None
self.z: A = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: H = None
self.y: G = None
self.q: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: H = None
self.p: E = None
self.z: D = None
self.txt = txt
d = A("d")
i = B("i")
j = C("j")
f = D("f")
e = E("e")
b = F("b")
n = G("n")
a = H("a")
l = I("l")
g = J("g")
d.r = a
d.s = j
d.p = j
d.u = j
d.v = g
i.p = e
i.v = e
i.z = l
i.u = g
j.w = l
f.t = i
e.t = f
e.r = f
e.q = a
e.z = a
e.p = i
e.y = n
b.o = j
b.q = a
b.p = f
b.t = l
b.w = n
b.s = g
b.y = e
n.r = l
n.z = d
a.p = d
l.p = a
l.y = n
l.q = n
g.o = a
g.p = e
g.z = f
assert g.z.t.u.txt == "g" | 10 | 27 | 2.7 | 0.3 | 10 | 1 | 7 | 1 | 3.3 | 3 | 2 | 1 | 3 | 0.3 | 3 | 0.111111 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 |
24,983 | class A:
def __init__(self, txt: str):
self.p: I = None
self.v: I = None
self.r: I = None
self.u: G = None
self.s: H = None
self.o: J = None
self.x: B = None
self.w: H = None
self.q: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: I = None
self.r: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: I = None
self.t: B = None
self.r: C = None
self.w: C = None
self.v: A = None
self.u: C = None
self.s: F = None
self.z: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: D = None
self.o: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: I = None
self.o: E = None
self.w: G = None
self.v: B = None
self.z: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.u: J = None
self.r: B = None
self.p: H = None
self.q: I = None
self.t: E = None
self.s: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: G = None
self.y: D = None
self.u: J = None
self.p: D = None
self.o: C = None
self.x: C = None
self.r: J = None
self.t: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: G = None
self.r: C = None
self.v: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
d = A("d")
j = B("j")
e = C("e")
m = D("m")
f = E("f")
l = F("l")
n = G("n")
g = H("g")
h = I("h")
k = J("k")
d.p = h
d.v = h
d.r = h
d.u = n
d.s = g
d.w = g
d.q = g
d.o = k
d.x = j
j.t = l
e.q = h
e.r = n
m.q = h
m.t = j
m.r = e
m.w = e
m.u = e
m.v = d
m.s = l
m.z = g
f.w = m
f.o = d
l.q = h
l.o = f
l.w = n
l.v = j
l.z = e
n.z = j
n.r = j
n.s = j
n.u = k
n.p = g
n.q = h
n.t = f
g.s = n
g.y = m
g.p = m
g.u = k
g.r = k
g.t = k
g.o = e
g.x = e
h.w = n
h.r = e
h.v = m
k.o = m
assert f.w.t.t.o.w.t.t.q.v.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.p: I = None
self.v: I = None
self.r: I = None
self.u: G = None
self.s: H = None
self.o: J = None
self.x: B = None
self.w: H = None
self.q: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: I = None
self.r: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: I = None
self.t: B = None
self.r: C = None
self.w: C = None
self.v: A = None
self.u: C = None
self.s: F = None
self.z: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: D = None
self.o: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: I = None
self.o: E = None
self.w: G = None
self.v: B = None
self.z: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: B = None
self.u: J = None
self.r: B = None
self.p: H = None
self.q: I = None
self.t: E = None
self.s: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: G = None
self.y: D = None
self.u: J = None
self.p: D = None
self.o: C = None
self.x: C = None
self.r: J = None
self.t: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: G = None
self.r: C = None
self.v: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
d = A("d")
j = B("j")
e = C("e")
m = D("m")
f = E("f")
l = F("l")
n = G("n")
g = H("g")
h = I("h")
k = J("k")
d.p = h
d.v = h
d.r = h
d.u = n
d.s = g
d.w = g
d.q = g
d.o = k
d.x = j
j.t = l
e.q = h
e.r = n
m.q = h
m.t = j
m.r = e
m.w = e
m.u = e
m.v = d
m.s = l
m.z = g
f.w = m
f.o = d
l.q = h
l.o = f
l.w = n
l.v = j
l.z = e
n.z = j
n.r = j
n.s = j
n.u = k
n.p = g
n.q = h
n.t = f
g.s = n
g.y = m
g.p = m
g.u = k
g.r = k
g.t = k
g.o = e
g.x = e
h.w = n
h.r = e
h.v = m
k.o = m
assert f.w.t.t.o.w.t.t.q.v.v.txt == "d" | 10 | 34 | 3.4 | 0.377778 | 10 | 1 | 9 | 1 | 4.6 | 10 | 3 | 2 | 6 | 0.6 | 7 | 0.205882 | 5 | 4 | 8 | 4.666667 | 5 | 4 | 2 | 2 |
24,984 | class A:
def __init__(self, txt: str):
self.q: G = None
self.p: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: F = None
self.x: J = None
self.q: I = None
self.o: D = None
self.y: D = None
self.r: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: C = None
self.u: I = None
self.o: H = None
self.t: F = None
self.z: H = None
self.y: F = None
self.p: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.x: C = None
self.u: A = None
self.t: E = None
self.w: B = None
self.q: D = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: J = None
self.o: E = None
self.y: F = None
self.w: F = None
self.q: J = None
self.p: E = None
self.z: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: E = None
self.v: E = None
self.o: F = None
self.q: A = None
self.u: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: G = None
self.z: D = None
self.t: G = None
self.r: I = None
self.v: A = None
self.s: C = None
self.u: I = None
self.q: B = None
self.txt = txt
k = A("k")
m = B("m")
e = C("e")
f = D("f")
b = E("b")
c = F("c")
g = G("g")
j = H("j")
n = I("n")
a = J("a")
k.q = g
k.p = j
m.u = e
m.v = f
e.u = c
e.r = c
e.x = a
e.q = n
e.o = f
e.y = f
f.o = b
b.q = e
b.u = n
b.o = j
b.z = j
b.t = c
b.y = c
b.p = g
c.s = e
c.x = e
c.u = k
c.y = k
c.t = b
c.w = m
c.q = f
g.z = a
j.r = a
j.q = a
j.o = b
j.p = b
j.y = c
j.w = c
j.z = e
n.w = b
n.v = b
n.u = b
n.o = c
n.q = k
a.w = g
a.t = g
a.z = f
a.r = n
a.u = n
a.v = k
a.s = e
a.q = m
assert e.x.s.y.o.u.q.q.z.txt == " | a" | class A:
def __init__(self, txt: str):
self.q: G = None
self.p: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: F = None
self.x: J = None
self.q: I = None
self.o: D = None
self.y: D = None
self.r: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: C = None
self.u: I = None
self.o: H = None
self.t: F = None
self.z: H = None
self.y: F = None
self.p: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: C = None
self.x: C = None
self.u: A = None
self.t: E = None
self.w: B = None
self.q: D = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.r: J = None
self.o: E = None
self.y: F = None
self.w: F = None
self.q: J = None
self.p: E = None
self.z: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: E = None
self.v: E = None
self.o: F = None
self.q: A = None
self.u: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: G = None
self.z: D = None
self.t: G = None
self.r: I = None
self.v: A = None
self.s: C = None
self.u: I = None
self.q: B = None
self.txt = txt
k = A("k")
m = B("m")
e = C("e")
f = D("f")
b = E("b")
c = F("c")
g = G("g")
j = H("j")
n = I("n")
a = J("a")
k.q = g
k.p = j
m.u = e
m.v = f
e.u = c
e.r = c
e.x = a
e.q = n
e.o = f
e.y = f
f.o = b
b.q = e
b.u = n
b.o = j
b.z = j
b.t = c
b.y = c
b.p = g
c.s = e
c.x = e
c.u = k
c.y = k
c.t = b
c.w = m
c.q = f
g.z = a
j.r = a
j.q = a
j.o = b
j.p = b
j.y = c
j.w = c
j.z = e
n.w = b
n.v = b
n.u = b
n.o = c
n.q = k
a.w = g
a.t = g
a.z = f
a.r = n
a.u = n
a.v = k
a.s = e
a.q = m
assert e.x.s.y.o.u.q.q.z.txt == "a" | 10 | 33 | 3.3 | 0.366667 | 10 | 1 | 8 | 1 | 4.6 | 8 | 2 | 1 | 7 | 0.7 | 8 | 0.242424 | 2 | 2 | 7 | 4.5 | 7 | 2 | 2 | 2 |
24,985 | class A:
def __init__(self, txt: str):
self.t: B = None
self.u: H = None
self.y: I = None
self.s: E = None
self.o: G = None
self.p: C = None
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.r: F = None
self.o: J = None
self.x: H = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: F = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: I = None
self.u: G = None
self.o: H = None
self.y: A = None
self.v: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.o: C = None
self.w: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: A = None
self.y: C = None
self.w: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: D = None
self.t: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: G = None
self.u: H = None
self.w: A = None
self.y: B = None
self.z: G = None
self.r: H = None
self.p: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: H = None
self.t: A = None
self.v: I = None
self.x: B = None
self.u: G = None
self.r: F = None
self.q: E = None
self.y: B = None
self.txt = txt
d = A("d")
a = B("a")
e = C("e")
l = D("l")
c = E("c")
h = F("h")
j = G("j")
i = H("i")
m = I("m")
f = J("f")
d.t = a
d.u = i
d.y = m
d.s = c
d.o = j
d.p = e
d.x = h
a.p = e
a.y = e
a.r = h
a.o = f
a.x = i
e.r = h
e.p = j
l.z = j
c.t = m
c.u = j
c.o = i
c.y = d
c.v = l
h.t = a
h.o = e
h.w = c
j.r = d
j.y = e
j.w = f
i.w = l
i.t = d
m.x = j
m.z = j
m.u = i
m.r = i
m.w = d
m.y = a
m.p = f
f.s = i
f.t = d
f.v = m
f.x = a
f.y = a
f.u = j
f.r = h
f.q = c
assert e.p.y.r.w.u.w.r.o.txt == " | e" | class A:
def __init__(self, txt: str):
self.t: B = None
self.u: H = None
self.y: I = None
self.s: E = None
self.o: G = None
self.p: C = None
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.r: F = None
self.o: J = None
self.x: H = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: F = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: I = None
self.u: G = None
self.o: H = None
self.y: A = None
self.v: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.o: C = None
self.w: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: A = None
self.y: C = None
self.w: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.w: D = None
self.t: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: G = None
self.u: H = None
self.w: A = None
self.y: B = None
self.z: G = None
self.r: H = None
self.p: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: H = None
self.t: A = None
self.v: I = None
self.x: B = None
self.u: G = None
self.r: F = None
self.q: E = None
self.y: B = None
self.txt = txt
d = A("d")
a = B("a")
e = C("e")
l = D("l")
c = E("c")
h = F("h")
j = G("j")
i = H("i")
m = I("m")
f = J("f")
d.t = a
d.u = i
d.y = m
d.s = c
d.o = j
d.p = e
d.x = h
a.p = e
a.y = e
a.r = h
a.o = f
a.x = i
e.r = h
e.p = j
l.z = j
c.t = m
c.u = j
c.o = i
c.y = d
c.v = l
h.t = a
h.o = e
h.w = c
j.r = d
j.y = e
j.w = f
i.w = l
i.t = d
m.x = j
m.z = j
m.u = i
m.r = i
m.w = d
m.y = a
m.p = f
f.s = i
f.t = d
f.v = m
f.x = a
f.y = a
f.u = j
f.r = h
f.q = c
assert e.p.y.r.w.u.w.r.o.txt == "e" | 10 | 39 | 3.9 | 0.433333 | 10 | 1 | 8 | 1 | 4.3 | 8 | 3 | 1 | 5 | 0.5 | 8 | 0.205128 | 4 | 2 | 8 | 4.8 | 6 | 2 | 1 | 2 |
24,986 | class A:
def __init__(self, txt: str):
self.v: E = None
self.u: E = None
self.q: J = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: G = None
self.z: H = None
self.r: G = None
self.w: E = None
self.y: I = None
self.u: J = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.s: H = None
self.t: J = None
self.w: I = None
self.y: A = None
self.u: A = None
self.q: H = None
self.v: G = None
self.x: A = None
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: D = None
self.v: D = None
self.x: B = None
self.u: I = None
self.t: J = None
self.r: D = None
self.p: D = None
self.z: A = None
self.y: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: J = None
self.r: A = None
self.w: J = None
self.v: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: H = None
self.t: E = None
self.x: J = None
self.s: D = None
self.w: F = None
self.o: J = None
self.r: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: A = None
self.r: D = None
self.u: B = None
self.p: C = None
self.z: F = None
self.t: B = None
self.x: H = None
self.txt = txt
m = A("m")
j = B("j")
k = C("k")
b = D("b")
i = E("i")
f = F("f")
g = G("g")
a = H("a")
e = I("e")
d = J("d")
m.v = i
m.u = i
m.q = d
m.s = k
j.r = d
k.x = g
k.r = g
k.z = a
k.w = i
k.t = i
k.y = e
k.u = d
b.z = k
i.z = b
i.p = b
i.s = a
i.q = a
i.t = d
i.w = e
i.y = m
i.u = m
i.x = m
i.v = g
f.q = b
f.v = b
f.r = b
f.p = b
f.x = j
f.u = e
f.t = d
f.z = m
f.y = i
g.o = d
g.w = d
g.r = m
g.v = j
a.p = i
e.v = a
e.t = i
e.x = d
e.o = d
e.s = b
e.w = f
e.r = k
d.s = m
d.r = b
d.u = j
d.t = j
d.p = k
d.z = f
d.x = a
assert k.y.v.p.q.p.p.z.u.txt == " | d" | class A:
def __init__(self, txt: str):
self.v: E = None
self.u: E = None
self.q: J = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: G = None
self.z: H = None
self.r: G = None
self.w: E = None
self.y: I = None
self.u: J = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: D = None
self.s: H = None
self.t: J = None
self.w: I = None
self.y: A = None
self.u: A = None
self.q: H = None
self.v: G = None
self.x: A = None
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: D = None
self.v: D = None
self.x: B = None
self.u: I = None
self.t: J = None
self.r: D = None
self.p: D = None
self.z: A = None
self.y: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: J = None
self.r: A = None
self.w: J = None
self.v: B = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.v: H = None
self.t: E = None
self.x: J = None
self.s: D = None
self.w: F = None
self.o: J = None
self.r: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.s: A = None
self.r: D = None
self.u: B = None
self.p: C = None
self.z: F = None
self.t: B = None
self.x: H = None
self.txt = txt
m = A("m")
j = B("j")
k = C("k")
b = D("b")
i = E("i")
f = F("f")
g = G("g")
a = H("a")
e = I("e")
d = J("d")
m.v = i
m.u = i
m.q = d
m.s = k
j.r = d
k.x = g
k.r = g
k.z = a
k.w = i
k.t = i
k.y = e
k.u = d
b.z = k
i.z = b
i.p = b
i.s = a
i.q = a
i.t = d
i.w = e
i.y = m
i.u = m
i.x = m
i.v = g
f.q = b
f.v = b
f.r = b
f.p = b
f.x = j
f.u = e
f.t = d
f.z = m
f.y = i
g.o = d
g.w = d
g.r = m
g.v = j
a.p = i
e.v = a
e.t = i
e.x = d
e.o = d
e.s = b
e.w = f
e.r = k
d.s = m
d.r = b
d.u = j
d.t = j
d.p = k
d.z = f
d.x = a
assert k.y.v.p.q.p.p.z.u.txt == "d" | 10 | 38 | 3.8 | 0.422222 | 10 | 1 | 10 | 1 | 5.1 | 8 | 2 | 2 | 6 | 0.6 | 7 | 0.184211 | 3 | 2 | 7 | 3.666667 | 6 | 3 | 2 | 2 |
24,987 | class A:
def __init__(self, txt: str):
self.q: B = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.v: F = None
self.x: E = None
self.r: G = None
self.z: F = None
self.o: J = None
self.p: G = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.q: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.y: I = None
self.u: B = None
self.x: I = None
self.s: A = None
self.r: A = None
self.o: B = None
self.p: J = None
self.t: I = None
self.v: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: D = None
self.x: B = None
self.o: A = None
self.r: B = None
self.u: B = None
self.z: G = None
self.y: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: B = None
self.x: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: B = None
self.o: C = None
self.t: I = None
self.q: F = None
self.p: F = None
self.x: B = None
self.w: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: G = None
self.w: G = None
self.r: F = None
self.x: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
a = A("a")
j = B("j")
e = C("e")
m = D("m")
f = E("f")
g = F("g")
h = G("h")
i = H("i")
c = I("c")
d = J("d")
a.q = j
a.t = m
j.u = m
j.v = g
j.z = g
j.x = f
j.s = f
j.r = h
j.p = h
j.o = d
e.z = i
m.r = h
m.q = d
f.q = h
f.y = c
f.x = c
f.t = c
f.u = j
f.o = j
f.v = j
f.s = a
f.r = a
f.p = d
g.w = m
g.x = j
g.r = j
g.u = j
g.o = a
g.z = h
g.y = c
h.t = j
h.x = i
i.y = j
i.x = j
i.o = e
i.t = c
i.q = g
i.p = g
i.w = h
c.p = h
c.w = h
c.r = g
c.x = e
d.w = a
assert a.q.x.u.o.w.q.txt == " | j" | class A:
def __init__(self, txt: str):
self.q: B = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.v: F = None
self.x: E = None
self.r: G = None
self.z: F = None
self.o: J = None
self.p: G = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.q: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.y: I = None
self.u: B = None
self.x: I = None
self.s: A = None
self.r: A = None
self.o: B = None
self.p: J = None
self.t: I = None
self.v: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: D = None
self.x: B = None
self.o: A = None
self.r: B = None
self.u: B = None
self.z: G = None
self.y: I = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: B = None
self.x: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: B = None
self.o: C = None
self.t: I = None
self.q: F = None
self.p: F = None
self.x: B = None
self.w: G = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: G = None
self.w: G = None
self.r: F = None
self.x: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
a = A("a")
j = B("j")
e = C("e")
m = D("m")
f = E("f")
g = F("g")
h = G("h")
i = H("i")
c = I("c")
d = J("d")
a.q = j
a.t = m
j.u = m
j.v = g
j.z = g
j.x = f
j.s = f
j.r = h
j.p = h
j.o = d
e.z = i
m.r = h
m.q = d
f.q = h
f.y = c
f.x = c
f.t = c
f.u = j
f.o = j
f.v = j
f.s = a
f.r = a
f.p = d
g.w = m
g.x = j
g.r = j
g.u = j
g.o = a
g.z = h
g.y = c
h.t = j
h.x = i
i.y = j
i.x = j
i.o = e
i.t = c
i.q = g
i.p = g
i.w = h
c.p = h
c.w = h
c.r = g
c.x = e
d.w = a
assert a.q.x.u.o.w.q.txt == "j" | 10 | 31 | 3.1 | 0.344444 | 10 | 1 | 10 | 1 | 4.4 | 6 | 3 | 2 | 4 | 0.4 | 5 | 0.16129 | 3 | 2 | 5 | 3.75 | 5 | 2 | 1 | 2 |
24,988 | class A:
def __init__(self, txt: str):
self.z: F = None
self.x: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: I = None
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.t: B = None
self.o: E = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.y: H = None
self.w: H = None
self.v: A = None
self.o: C = None
self.s: F = None
self.z: I = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: H = None
self.s: H = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: H = None
self.q: E = None
self.z: D = None
self.w: I = None
self.u: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: E = None
self.q: A = None
self.r: F = None
self.y: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: C = None
self.t: B = None
self.r: F = None
self.q: I = None
self.y: I = None
self.w: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: F = None
self.z: D = None
self.s: C = None
self.v: A = None
self.t: J = None
self.q: E = None
self.x: B = None
self.y: G = None
self.o: C = None
self.r: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
e = A("e")
n = B("n")
a = C("a")
d = D("d")
h = E("h")
g = F("g")
l = G("l")
c = H("c")
j = I("j")
f = J("f")
e.z = g
e.x = c
n.t = j
n.r = l
a.s = n
a.t = n
a.r = n
a.o = h
d.q = n
d.y = c
d.w = c
d.v = e
d.o = a
d.s = g
d.z = j
d.u = h
h.x = c
h.s = c
h.v = l
g.s = c
g.q = h
g.z = d
g.u = d
g.w = j
l.x = h
l.q = e
l.r = g
l.y = a
c.v = a
c.t = n
c.r = g
c.w = g
c.q = j
c.y = j
j.p = g
j.z = d
j.s = a
j.o = a
j.r = a
j.v = e
j.t = f
j.q = h
j.x = n
j.y = l
f.q = a
assert e.z.w.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: F = None
self.x: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: I = None
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.t: B = None
self.o: E = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.y: H = None
self.w: H = None
self.v: A = None
self.o: C = None
self.s: F = None
self.z: I = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: H = None
self.s: H = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: H = None
self.q: E = None
self.z: D = None
self.w: I = None
self.u: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: E = None
self.q: A = None
self.r: F = None
self.y: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.v: C = None
self.t: B = None
self.r: F = None
self.q: I = None
self.y: I = None
self.w: F = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: F = None
self.z: D = None
self.s: C = None
self.v: A = None
self.t: J = None
self.q: E = None
self.x: B = None
self.y: G = None
self.o: C = None
self.r: C = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
e = A("e")
n = B("n")
a = C("a")
d = D("d")
h = E("h")
g = F("g")
l = G("l")
c = H("c")
j = I("j")
f = J("f")
e.z = g
e.x = c
n.t = j
n.r = l
a.s = n
a.t = n
a.r = n
a.o = h
d.q = n
d.y = c
d.w = c
d.v = e
d.o = a
d.s = g
d.z = j
d.u = h
h.x = c
h.s = c
h.v = l
g.s = c
g.q = h
g.z = d
g.u = d
g.w = j
l.x = h
l.q = e
l.r = g
l.y = a
c.v = a
c.t = n
c.r = g
c.w = g
c.q = j
c.y = j
j.p = g
j.z = d
j.s = a
j.o = a
j.r = a
j.v = e
j.t = f
j.q = h
j.x = n
j.y = l
f.q = a
assert e.z.w.t.txt == "f" | 10 | 36 | 3.6 | 0.4 | 10 | 1 | 10 | 1 | 4.5 | 3 | 1 | 1 | 4 | 0.4 | 3 | 0.083333 | 0 | null | null | null | 3 | 1 | 1 | 1 |
24,989 | class A:
def __init__(self, txt: str):
self.z: F = None
self.w: B = None
self.r: I = None
self.p: C = None
self.u: B = None
self.v: J = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.z: J = None
self.x: I = None
self.r: E = None
self.p: H = None
self.w: F = None
self.o: I = None
self.s: G = None
self.t: C = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.v: G = None
self.r: A = None
self.t: G = None
self.w: A = None
self.q: F = None
self.p: J = None
self.s: J = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: J = None
self.s: A = None
self.t: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: A = None
self.z: I = None
self.s: J = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: C = None
self.p: D = None
self.s: J = None
self.t: E = None
self.u: C = None
self.r: F = None
self.z: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: G = None
self.o: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: D = None
self.q: A = None
self.z: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: E = None
self.v: E = None
self.z: B = None
self.s: C = None
self.o: H = None
self.txt = txt
i = A("i")
d = B("d")
c = C("c")
k = D("k")
f = E("f")
j = F("j")
n = G("n")
g = H("g")
a = I("a")
m = J("m")
i.z = j
i.w = d
i.u = d
i.r = a
i.p = c
i.v = m
d.q = k
d.u = k
d.z = m
d.x = a
d.o = a
d.r = f
d.p = g
d.w = j
d.s = n
d.t = c
c.z = f
c.v = n
c.t = n
c.r = i
c.w = i
c.q = j
c.y = j
c.p = m
c.s = m
k.z = m
k.s = i
k.t = g
f.w = d
j.x = i
j.z = a
j.s = m
n.v = c
n.u = c
n.p = k
n.s = m
n.t = f
n.r = j
n.z = g
g.t = n
g.o = k
a.r = k
a.q = i
a.z = i
m.x = f
m.v = f
m.z = d
m.s = c
m.o = g
assert d.r.w.x.q.r.z.u.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: F = None
self.w: B = None
self.r: I = None
self.p: C = None
self.u: B = None
self.v: J = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: D = None
self.z: J = None
self.x: I = None
self.r: E = None
self.p: H = None
self.w: F = None
self.o: I = None
self.s: G = None
self.t: C = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.v: G = None
self.r: A = None
self.t: G = None
self.w: A = None
self.q: F = None
self.p: J = None
self.s: J = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: J = None
self.s: A = None
self.t: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: A = None
self.z: I = None
self.s: J = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: C = None
self.p: D = None
self.s: J = None
self.t: E = None
self.u: C = None
self.r: F = None
self.z: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: G = None
self.o: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.r: D = None
self.q: A = None
self.z: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: E = None
self.v: E = None
self.z: B = None
self.s: C = None
self.o: H = None
self.txt = txt
i = A("i")
d = B("d")
c = C("c")
k = D("k")
f = E("f")
j = F("j")
n = G("n")
g = H("g")
a = I("a")
m = J("m")
i.z = j
i.w = d
i.u = d
i.r = a
i.p = c
i.v = m
d.q = k
d.u = k
d.z = m
d.x = a
d.o = a
d.r = f
d.p = g
d.w = j
d.s = n
d.t = c
c.z = f
c.v = n
c.t = n
c.r = i
c.w = i
c.q = j
c.y = j
c.p = m
c.s = m
k.z = m
k.s = i
k.t = g
f.w = d
j.x = i
j.z = a
j.s = m
n.v = c
n.u = c
n.p = k
n.s = m
n.t = f
n.r = j
n.z = g
g.t = n
g.o = k
a.r = k
a.q = i
a.z = i
m.x = f
m.v = f
m.z = d
m.s = c
m.o = g
assert d.r.w.x.q.r.z.u.txt == "d" | 10 | 39 | 3.9 | 0.433333 | 10 | 1 | 10 | 1 | 4.9 | 7 | 3 | 1 | 4 | 0.4 | 7 | 0.179487 | 4 | 2 | 7 | 3.6 | 6 | 2 | 1 | 2 |
24,990 | class A:
def __init__(self, txt: str):
self.u: I = None
self.o: F = None
self.v: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.y: G = None
self.v: E = None
self.s: B = None
self.r: J = None
self.z: F = None
self.q: I = None
self.o: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.x: G = None
self.u: A = None
self.p: F = None
self.v: B = None
self.w: C = None
self.r: D = None
self.y: B = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.v: C = None
self.u: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.z: C = None
self.r: H = None
self.w: D = None
self.v: A = None
self.o: D = None
self.x: E = None
self.txt = txt
n = A("n")
k = B("k")
e = C("e")
i = D("i")
b = E("b")
c = F("c")
l = G("l")
j = H("j")
g = I("g")
h = J("h")
n.u = g
n.v = g
n.o = c
k.o = c
e.w = i
e.y = l
e.v = b
e.s = k
e.r = h
e.z = c
e.o = c
e.q = g
i.x = n
b.t = e
b.w = e
b.x = l
b.u = n
b.p = c
b.q = c
b.v = k
b.y = k
b.r = i
c.z = k
c.t = k
c.v = e
c.u = j
l.o = e
j.s = h
g.x = i
h.z = e
h.r = j
h.w = i
h.o = i
h.v = n
h.x = b
assert j.s.v.o.z.txt == " | k" | class A:
def __init__(self, txt: str):
self.u: I = None
self.o: F = None
self.v: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.y: G = None
self.v: E = None
self.s: B = None
self.r: J = None
self.z: F = None
self.q: I = None
self.o: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.x: G = None
self.u: A = None
self.p: F = None
self.v: B = None
self.w: C = None
self.r: D = None
self.y: B = None
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.v: C = None
self.u: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.s: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.z: C = None
self.r: H = None
self.w: D = None
self.v: A = None
self.o: D = None
self.x: E = None
self.txt = txt
n = A("n")
k = B("k")
e = C("e")
i = D("i")
b = E("b")
c = F("c")
l = G("l")
j = H("j")
g = I("g")
h = J("h")
n.u = g
n.v = g
n.o = c
k.o = c
e.w = i
e.y = l
e.v = b
e.s = k
e.r = h
e.z = c
e.o = c
e.q = g
i.x = n
b.t = e
b.w = e
b.x = l
b.u = n
b.p = c
b.q = c
b.v = k
b.y = k
b.r = i
c.z = k
c.t = k
c.v = e
c.u = j
l.o = e
j.s = h
g.x = i
h.z = e
h.r = j
h.w = i
h.o = i
h.v = n
h.x = b
assert j.s.v.o.z.txt == "k" | 10 | 28 | 2.8 | 0.311111 | 10 | 1 | 9 | 1 | 3.5 | 4 | 1 | 1 | 5 | 0.5 | 4 | 0.142857 | 0 | null | null | null | 4 | 1 | 1 | 1 |
24,991 | class A:
def __init__(self, txt: str):
self.s: I = None
self.t: J = None
self.o: D = None
self.r: J = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.z: E = None
self.t: D = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.y: A = None
self.o: F = None
self.v: I = None
self.r: J = None
self.w: E = None
self.z: A = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: H = None
self.s: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.r: B = None
self.t: G = None
self.q: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.u: F = None
self.r: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: J = None
self.w: A = None
self.v: J = None
self.y: J = None
self.t: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: A = None
self.q: F = None
self.t: G = None
self.w: G = None
self.r: D = None
self.txt = txt
k = A("k")
h = B("h")
d = C("d")
m = D("m")
b = E("b")
l = F("l")
n = G("n")
g = H("g")
i = I("i")
a = J("a")
k.s = i
k.t = a
k.r = a
k.o = m
h.x = b
h.z = b
h.t = m
h.u = d
d.s = n
d.p = n
d.y = k
d.z = k
d.o = l
d.v = i
d.r = a
d.w = b
m.o = g
m.s = g
b.o = n
b.t = n
b.r = h
b.q = a
l.y = b
n.y = k
n.u = l
n.r = m
g.q = i
i.p = a
i.v = a
i.y = a
i.w = k
i.t = k
a.y = k
a.q = l
a.t = n
a.w = n
a.r = m
assert a.q.y.q.y.txt == " | k" | class A:
def __init__(self, txt: str):
self.s: I = None
self.t: J = None
self.o: D = None
self.r: J = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.z: E = None
self.t: D = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.y: A = None
self.o: F = None
self.v: I = None
self.r: J = None
self.w: E = None
self.z: A = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: H = None
self.s: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.r: B = None
self.t: G = None
self.q: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.u: F = None
self.r: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: J = None
self.w: A = None
self.v: J = None
self.y: J = None
self.t: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.y: A = None
self.q: F = None
self.t: G = None
self.w: G = None
self.r: D = None
self.txt = txt
k = A("k")
h = B("h")
d = C("d")
m = D("m")
b = E("b")
l = F("l")
n = G("n")
g = H("g")
i = I("i")
a = J("a")
k.s = i
k.t = a
k.r = a
k.o = m
h.x = b
h.z = b
h.t = m
h.u = d
d.s = n
d.p = n
d.y = k
d.z = k
d.o = l
d.v = i
d.r = a
d.w = b
m.o = g
m.s = g
b.o = n
b.t = n
b.r = h
b.q = a
l.y = b
n.y = k
n.u = l
n.r = m
g.q = i
i.p = a
i.v = a
i.y = a
i.w = k
i.t = k
a.y = k
a.q = l
a.t = n
a.w = n
a.r = m
assert a.q.y.q.y.txt == "k" | 10 | 27 | 2.7 | 0.3 | 10 | 1 | 8 | 1 | 3.7 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.148148 | 1 | 3 | 3 | 3 | 2 | 2 | 1 | 2 |
24,992 | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: C = None
self.w: H = None
self.o: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: E = None
self.t: J = None
self.v: H = None
self.u: H = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: J = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.u: F = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: J = None
self.w: C = None
self.p: F = None
self.s: D = None
self.v: H = None
self.y: D = None
self.q: J = None
self.z: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: D = None
self.q: I = None
self.v: H = None
self.o: E = None
self.u: J = None
self.x: A = None
self.p: D = None
self.s: I = None
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: A = None
self.x: H = None
self.o: D = None
self.p: D = None
self.y: A = None
self.s: C = None
self.u: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: E = None
self.p: E = None
self.o: J = None
self.t: F = None
self.r: G = None
self.s: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: H = None
self.q: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: F = None
self.p: G = None
self.y: I = None
self.v: H = None
self.x: B = None
self.s: I = None
self.t: A = None
self.w: B = None
self.u: C = None
self.z: G = None
self.txt = txt
i = A("i")
d = B("d")
b = C("b")
f = D("f")
m = E("m")
k = F("k")
h = G("h")
c = H("c")
e = I("e")
j = J("j")
i.t = d
i.x = b
i.w = c
i.o = c
d.y = m
d.z = m
d.t = j
d.v = c
d.u = c
b.t = j
b.p = f
f.r = h
f.u = k
f.t = m
m.o = j
m.q = j
m.w = b
m.z = b
m.p = k
m.s = f
m.y = f
m.v = c
k.y = f
k.p = f
k.q = e
k.s = e
k.v = c
k.o = m
k.u = j
k.x = i
k.r = h
h.w = i
h.y = i
h.x = c
h.o = f
h.p = f
h.s = b
h.u = b
c.y = m
c.p = m
c.o = j
c.t = k
c.r = h
c.s = i
e.p = c
e.q = c
j.r = k
j.p = h
j.z = h
j.y = e
j.s = e
j.v = c
j.x = d
j.w = d
j.t = i
j.u = b
assert f.r.w.t.t.r.txt == " | k" | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: C = None
self.w: H = None
self.o: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: E = None
self.t: J = None
self.v: H = None
self.u: H = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: J = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.u: F = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: J = None
self.w: C = None
self.p: F = None
self.s: D = None
self.v: H = None
self.y: D = None
self.q: J = None
self.z: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: D = None
self.q: I = None
self.v: H = None
self.o: E = None
self.u: J = None
self.x: A = None
self.p: D = None
self.s: I = None
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: A = None
self.x: H = None
self.o: D = None
self.p: D = None
self.y: A = None
self.s: C = None
self.u: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: E = None
self.p: E = None
self.o: J = None
self.t: F = None
self.r: G = None
self.s: A = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: H = None
self.q: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: F = None
self.p: G = None
self.y: I = None
self.v: H = None
self.x: B = None
self.s: I = None
self.t: A = None
self.w: B = None
self.u: C = None
self.z: G = None
self.txt = txt
i = A("i")
d = B("d")
b = C("b")
f = D("f")
m = E("m")
k = F("k")
h = G("h")
c = H("c")
e = I("e")
j = J("j")
i.t = d
i.x = b
i.w = c
i.o = c
d.y = m
d.z = m
d.t = j
d.v = c
d.u = c
b.t = j
b.p = f
f.r = h
f.u = k
f.t = m
m.o = j
m.q = j
m.w = b
m.z = b
m.p = k
m.s = f
m.y = f
m.v = c
k.y = f
k.p = f
k.q = e
k.s = e
k.v = c
k.o = m
k.u = j
k.x = i
k.r = h
h.w = i
h.y = i
h.x = c
h.o = f
h.p = f
h.s = b
h.u = b
c.y = m
c.p = m
c.o = j
c.t = k
c.r = h
c.s = i
e.p = c
e.q = c
j.r = k
j.p = h
j.z = h
j.y = e
j.s = e
j.v = c
j.x = d
j.w = d
j.t = i
j.u = b
assert f.r.w.t.t.r.txt == "k" | 10 | 40 | 4 | 0.444444 | 10 | 1 | 10 | 2 | 5.6 | 5 | 1 | 1 | 6 | 0.6 | 5 | 0.125 | 0 | null | null | null | 3 | 2 | 2 | 1 |
24,993 | class A:
def __init__(self, txt: str):
self.p: I = None
self.y: J = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.u: I = None
self.o: J = None
self.v: C = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: I = None
self.u: G = None
self.s: I = None
self.x: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: F = None
self.x: A = None
self.r: B = None
self.p: H = None
self.t: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.t: J = None
self.v: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: F = None
self.o: H = None
self.u: J = None
self.r: I = None
self.z: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: G = None
self.w: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: J = None
self.z: B = None
self.y: G = None
self.o: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: F = None
self.x: E = None
self.y: E = None
self.o: A = None
self.txt = txt
l = A("l")
h = B("h")
e = C("e")
d = D("d")
i = E("i")
j = F("j")
g = G("g")
a = H("a")
b = I("b")
k = J("k")
l.p = b
l.y = k
h.s = j
h.u = b
h.o = k
h.v = e
h.p = d
e.w = d
e.q = i
d.o = b
d.s = b
d.u = g
d.x = k
i.y = j
i.x = l
i.r = h
i.p = a
i.t = e
j.z = h
j.t = k
j.v = a
g.t = j
g.o = a
g.u = k
g.r = b
g.z = e
a.x = g
a.w = k
b.x = k
b.z = h
b.y = g
b.o = i
k.q = j
k.x = i
k.y = i
k.o = l
assert d.o.x.y.r.u.x.txt == " | k" | class A:
def __init__(self, txt: str):
self.p: I = None
self.y: J = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.u: I = None
self.o: J = None
self.v: C = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: I = None
self.u: G = None
self.s: I = None
self.x: J = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: F = None
self.x: A = None
self.r: B = None
self.p: H = None
self.t: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.t: J = None
self.v: H = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: F = None
self.o: H = None
self.u: J = None
self.r: I = None
self.z: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: G = None
self.w: J = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: J = None
self.z: B = None
self.y: G = None
self.o: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.q: F = None
self.x: E = None
self.y: E = None
self.o: A = None
self.txt = txt
l = A("l")
h = B("h")
e = C("e")
d = D("d")
i = E("i")
j = F("j")
g = G("g")
a = H("a")
b = I("b")
k = J("k")
l.p = b
l.y = k
h.s = j
h.u = b
h.o = k
h.v = e
h.p = d
e.w = d
e.q = i
d.o = b
d.s = b
d.u = g
d.x = k
i.y = j
i.x = l
i.r = h
i.p = a
i.t = e
j.z = h
j.t = k
j.v = a
g.t = j
g.o = a
g.u = k
g.r = b
g.z = e
a.x = g
a.w = k
b.x = k
b.z = h
b.y = g
b.o = i
k.q = j
k.x = i
k.y = i
k.o = l
assert d.o.x.y.r.u.x.txt == "k" | 10 | 34 | 3.4 | 0.377778 | 10 | 1 | 5 | 2 | 3.6 | 6 | 2 | 2 | 5 | 0.5 | 5 | 0.147059 | 2 | 4 | 4 | 4 | 5 | 2 | 1 | 1 |
24,994 | class A:
def __init__(self, txt: str):
self.u: H = None
self.x: J = None
self.y: E = None
self.p: E = None
self.q: D = None
self.v: B = None
self.t: B = None
self.w: E = None
self.r: F = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.w: C = None
self.z: C = None
self.y: E = None
self.p: I = None
self.v: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.p: G = None
self.x: A = None
self.y: A = None
self.z: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.w: E = None
self.x: I = None
self.u: C = None
self.r: C = None
self.p: B = None
self.t: J = None
self.s: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.q: J = None
self.u: C = None
self.v: I = None
self.p: B = None
self.z: A = None
self.r: H = None
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: I = None
self.o: I = None
self.t: H = None
self.r: B = None
self.z: C = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: C = None
self.q: A = None
self.w: E = None
self.o: D = None
self.y: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: J = None
self.w: G = None
self.u: D = None
self.y: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.v: F = None
self.x: H = None
self.y: E = None
self.txt = txt
m = A("m")
h = B("h")
e = C("e")
l = D("l")
c = E("c")
b = F("b")
f = G("f")
k = H("k")
i = I("i")
g = J("g")
m.u = k
m.x = g
m.y = c
m.p = c
m.w = c
m.q = l
m.v = h
m.t = h
m.r = b
m.o = b
h.x = e
h.w = e
h.z = e
h.y = c
h.p = i
h.v = k
e.u = c
e.p = f
e.x = m
e.y = m
e.z = i
l.y = c
l.w = c
l.x = i
l.u = e
l.r = e
l.p = h
l.t = g
l.s = k
c.s = e
c.u = e
c.q = g
c.v = i
c.p = h
c.z = m
c.r = k
c.o = f
b.p = i
b.o = i
b.t = k
b.r = h
b.z = e
b.y = e
f.z = g
k.x = e
k.y = e
k.q = m
k.w = c
k.o = l
i.p = g
i.w = f
i.u = l
i.y = h
g.v = b
g.x = k
g.y = c
assert l.w.p.y.r.txt == " | k" | class A:
def __init__(self, txt: str):
self.u: H = None
self.x: J = None
self.y: E = None
self.p: E = None
self.q: D = None
self.v: B = None
self.t: B = None
self.w: E = None
self.r: F = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.w: C = None
self.z: C = None
self.y: E = None
self.p: I = None
self.v: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.p: G = None
self.x: A = None
self.y: A = None
self.z: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.w: E = None
self.x: I = None
self.u: C = None
self.r: C = None
self.p: B = None
self.t: J = None
self.s: H = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.q: J = None
self.u: C = None
self.v: I = None
self.p: B = None
self.z: A = None
self.r: H = None
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: I = None
self.o: I = None
self.t: H = None
self.r: B = None
self.z: C = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: C = None
self.q: A = None
self.w: E = None
self.o: D = None
self.y: C = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: J = None
self.w: G = None
self.u: D = None
self.y: B = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.v: F = None
self.x: H = None
self.y: E = None
self.txt = txt
m = A("m")
h = B("h")
e = C("e")
l = D("l")
c = E("c")
b = F("b")
f = G("f")
k = H("k")
i = I("i")
g = J("g")
m.u = k
m.x = g
m.y = c
m.p = c
m.w = c
m.q = l
m.v = h
m.t = h
m.r = b
m.o = b
h.x = e
h.w = e
h.z = e
h.y = c
h.p = i
h.v = k
e.u = c
e.p = f
e.x = m
e.y = m
e.z = i
l.y = c
l.w = c
l.x = i
l.u = e
l.r = e
l.p = h
l.t = g
l.s = k
c.s = e
c.u = e
c.q = g
c.v = i
c.p = h
c.z = m
c.r = k
c.o = f
b.p = i
b.o = i
b.t = k
b.r = h
b.z = e
b.y = e
f.z = g
k.x = e
k.y = e
k.q = m
k.w = c
k.o = l
i.p = g
i.w = f
i.u = l
i.y = h
g.v = b
g.x = k
g.y = c
assert l.w.p.y.r.txt == "k" | 10 | 43 | 4.3 | 0.477778 | 10 | 1 | 10 | 1 | 5.6 | 4 | 2 | 1 | 4 | 0.4 | 4 | 0.093023 | 1 | 2 | 2 | 2 | 4 | 1 | 1 | 2 |
24,995 | class A:
def __init__(self, txt: str):
self.x: D = None
self.q: D = None
self.t: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.u: H = None
self.w: C = None
self.p: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.w: H = None
self.z: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: A = None
self.t: H = None
self.o: H = None
self.s: C = None
self.y: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: I = None
self.q: G = None
self.s: J = None
self.y: B = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: C = None
self.t: D = None
self.w: J = None
self.r: A = None
self.o: G = None
self.v: J = None
self.u: B = None
self.x: I = None
self.s: D = None
self.q: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: F = None
self.o: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: B = None
self.y: I = None
self.z: E = None
self.x: G = None
self.t: B = None
self.v: G = None
self.s: A = None
self.q: E = None
self.txt = txt
l = A("l")
j = B("j")
n = C("n")
m = D("m")
d = E("d")
e = F("e")
c = G("c")
b = H("b")
f = I("f")
k = J("k")
l.x = m
l.q = m
l.t = e
j.o = l
j.u = b
j.p = b
j.w = n
n.o = j
n.z = d
m.r = c
m.w = b
m.z = f
d.u = l
d.t = b
d.o = b
d.y = b
d.s = n
e.o = f
e.q = c
e.s = k
e.y = j
e.w = j
c.v = m
b.y = n
b.t = m
b.s = m
b.q = m
b.w = k
b.v = k
b.r = l
b.o = c
b.u = j
b.x = f
f.w = e
f.o = b
k.r = j
k.t = j
k.y = f
k.z = d
k.q = d
k.x = c
k.v = c
k.s = l
assert f.o.s.z.o.v.y.txt == " | f" | class A:
def __init__(self, txt: str):
self.x: D = None
self.q: D = None
self.t: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.u: H = None
self.w: C = None
self.p: H = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.w: H = None
self.z: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: A = None
self.t: H = None
self.o: H = None
self.s: C = None
self.y: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: I = None
self.q: G = None
self.s: J = None
self.y: B = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: C = None
self.t: D = None
self.w: J = None
self.r: A = None
self.o: G = None
self.v: J = None
self.u: B = None
self.x: I = None
self.s: D = None
self.q: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.w: F = None
self.o: H = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: B = None
self.y: I = None
self.z: E = None
self.x: G = None
self.t: B = None
self.v: G = None
self.s: A = None
self.q: E = None
self.txt = txt
l = A("l")
j = B("j")
n = C("n")
m = D("m")
d = E("d")
e = F("e")
c = G("c")
b = H("b")
f = I("f")
k = J("k")
l.x = m
l.q = m
l.t = e
j.o = l
j.u = b
j.p = b
j.w = n
n.o = j
n.z = d
m.r = c
m.w = b
m.z = f
d.u = l
d.t = b
d.o = b
d.y = b
d.s = n
e.o = f
e.q = c
e.s = k
e.y = j
e.w = j
c.v = m
b.y = n
b.t = m
b.s = m
b.q = m
b.w = k
b.v = k
b.r = l
b.o = c
b.u = j
b.x = f
f.w = e
f.o = b
k.r = j
k.t = j
k.y = f
k.z = d
k.q = d
k.x = c
k.v = c
k.s = l
assert f.o.s.z.o.v.y.txt == "f" | 10 | 32 | 3.2 | 0.355556 | 10 | 1 | 10 | 1 | 4.3 | 6 | 3 | 2 | 4 | 0.4 | 5 | 0.15625 | 3 | 3 | 6 | 3.75 | 5 | 2 | 1 | 2 |
24,996 | class A:
def __init__(self, txt: str):
self.y: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: H = None
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: H = None
self.w: J = None
self.v: J = None
self.y: F = None
self.x: E = None
self.r: J = None
self.o: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.q: A = None
self.x: D = None
self.t: B = None
self.u: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: H = None
self.u: E = None
self.o: I = None
self.x: H = None
self.t: A = None
self.w: H = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.w: A = None
self.s: C = None
self.t: F = None
self.o: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: F = None
self.o: J = None
self.v: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: H = None
self.o: B = None
self.r: F = None
self.s: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: I = None
self.v: F = None
self.o: H = None
self.x: B = None
self.t: G = None
self.p: I = None
self.w: B = None
self.u: D = None
self.txt = txt
c = A("c")
h = B("h")
n = C("n")
l = D("l")
j = E("j")
a = F("a")
e = G("e")
g = H("g")
i = I("i")
b = J("b")
c.y = i
h.y = g
h.o = a
n.t = e
l.t = g
l.w = b
l.v = b
l.r = b
l.y = a
l.x = j
l.o = i
j.s = a
j.q = c
j.x = l
j.t = h
j.u = b
a.p = g
a.x = g
a.w = g
a.u = j
a.o = i
a.t = c
a.s = c
e.z = a
e.t = a
e.w = c
e.s = n
e.o = g
g.q = a
g.o = b
g.v = l
i.p = g
i.o = h
i.r = a
i.s = b
b.r = i
b.p = i
b.v = a
b.o = g
b.x = h
b.w = h
b.t = e
b.u = l
assert n.t.z.o.r.o.s.u.r.w.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.y: I = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: H = None
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: H = None
self.w: J = None
self.v: J = None
self.y: F = None
self.x: E = None
self.r: J = None
self.o: I = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: F = None
self.q: A = None
self.x: D = None
self.t: B = None
self.u: J = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: H = None
self.u: E = None
self.o: I = None
self.x: H = None
self.t: A = None
self.w: H = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: F = None
self.w: A = None
self.s: C = None
self.t: F = None
self.o: H = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.q: F = None
self.o: J = None
self.v: D = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.p: H = None
self.o: B = None
self.r: F = None
self.s: J = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.r: I = None
self.v: F = None
self.o: H = None
self.x: B = None
self.t: G = None
self.p: I = None
self.w: B = None
self.u: D = None
self.txt = txt
c = A("c")
h = B("h")
n = C("n")
l = D("l")
j = E("j")
a = F("a")
e = G("e")
g = H("g")
i = I("i")
b = J("b")
c.y = i
h.y = g
h.o = a
n.t = e
l.t = g
l.w = b
l.v = b
l.r = b
l.y = a
l.x = j
l.o = i
j.s = a
j.q = c
j.x = l
j.t = h
j.u = b
a.p = g
a.x = g
a.w = g
a.u = j
a.o = i
a.t = c
a.s = c
e.z = a
e.t = a
e.w = c
e.s = n
e.o = g
g.q = a
g.o = b
g.v = l
i.p = g
i.o = h
i.r = a
i.s = b
b.r = i
b.p = i
b.v = a
b.o = g
b.x = h
b.w = h
b.t = e
b.u = l
assert n.t.z.o.r.o.s.u.r.w.y.txt == "g" | 10 | 35 | 3.5 | 0.388889 | 10 | 1 | 8 | 1 | 4.3 | 10 | 2 | 2 | 8 | 0.8 | 9 | 0.257143 | 3 | 2 | 2 | 2 | 8 | 2 | 1 | 2 |
24,997 | class A:
def __init__(self, txt: str):
self.o: B = None
self.q: F = None
self.z: H = None
self.s: B = None
self.r: C = None
self.x: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.u: D = None
self.s: A = None
self.p: E = None
self.o: I = None
self.x: H = None
self.w: J = None
self.q: H = None
self.v: F = None
self.y: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: E = None
self.v: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: I = None
self.z: A = None
self.t: C = None
self.w: D = None
self.u: A = None
self.v: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: I = None
self.s: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: E = None
self.s: J = None
self.r: D = None
self.p: B = None
self.y: J = None
self.u: C = None
self.t: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: F = None
self.s: F = None
self.w: J = None
self.x: D = None
self.y: B = None
self.u: C = None
self.t: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: F = None
self.w: F = None
self.o: H = None
self.q: G = None
self.r: D = None
self.s: I = None
self.txt = txt
k = A("k")
b = B("b")
l = C("l")
c = D("c")
j = E("j")
d = F("d")
m = G("m")
f = H("f")
g = I("g")
n = J("n")
k.o = b
k.s = b
k.q = d
k.z = f
k.r = l
k.x = m
b.u = c
b.r = j
l.r = c
l.u = c
l.s = k
l.p = j
l.o = g
l.y = g
l.x = f
l.q = f
l.w = n
l.v = d
c.o = j
c.v = m
j.z = m
j.s = c
d.x = g
d.z = k
d.u = k
d.t = l
d.v = l
d.w = c
m.r = g
m.s = n
f.x = j
f.s = n
f.y = n
f.r = c
f.p = b
f.u = l
f.t = g
g.q = d
g.s = d
g.w = n
g.x = c
g.y = b
g.u = l
g.t = k
n.t = d
n.w = d
n.o = f
n.q = m
n.r = c
n.s = g
assert b.u.v.r.x.o.z.r.y.u.txt == " | c" | class A:
def __init__(self, txt: str):
self.o: B = None
self.q: F = None
self.z: H = None
self.s: B = None
self.r: C = None
self.x: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.u: D = None
self.s: A = None
self.p: E = None
self.o: I = None
self.x: H = None
self.w: J = None
self.q: H = None
self.v: F = None
self.y: I = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: E = None
self.v: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: G = None
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: I = None
self.z: A = None
self.t: C = None
self.w: D = None
self.u: A = None
self.v: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: I = None
self.s: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.x: E = None
self.s: J = None
self.r: D = None
self.p: B = None
self.y: J = None
self.u: C = None
self.t: I = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.q: F = None
self.s: F = None
self.w: J = None
self.x: D = None
self.y: B = None
self.u: C = None
self.t: A = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.t: F = None
self.w: F = None
self.o: H = None
self.q: G = None
self.r: D = None
self.s: I = None
self.txt = txt
k = A("k")
b = B("b")
l = C("l")
c = D("c")
j = E("j")
d = F("d")
m = G("m")
f = H("f")
g = I("g")
n = J("n")
k.o = b
k.s = b
k.q = d
k.z = f
k.r = l
k.x = m
b.u = c
b.r = j
l.r = c
l.u = c
l.s = k
l.p = j
l.o = g
l.y = g
l.x = f
l.q = f
l.w = n
l.v = d
c.o = j
c.v = m
j.z = m
j.s = c
d.x = g
d.z = k
d.u = k
d.t = l
d.v = l
d.w = c
m.r = g
m.s = n
f.x = j
f.s = n
f.y = n
f.r = c
f.p = b
f.u = l
f.t = g
g.q = d
g.s = d
g.w = n
g.x = c
g.y = b
g.u = l
g.t = k
n.t = d
n.w = d
n.o = f
n.q = m
n.r = c
n.s = g
assert b.u.v.r.x.o.z.r.y.u.txt == "c" | 10 | 41 | 4.1 | 0.455556 | 10 | 1 | 10 | 2 | 5 | 9 | 3 | 2 | 5 | 0.5 | 7 | 0.170732 | 5 | 3 | 8 | 5.333333 | 7 | 2 | 1 | 2 |
24,998 | class A:
def __init__(self, txt: str):
self.s: E = None
self.p: F = None
self.u: G = None
self.x: H = None
self.w: G = None
self.v: J = None
self.o: B = None
self.r: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: F = None
self.p: F = None
self.r: C = None
self.v: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.y: D = None
self.p: A = None
self.x: E = None
self.q: D = None
self.t: J = None
self.v: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.u: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.p: J = None
self.u: B = None
self.q: J = None
self.v: J = None
self.w: F = None
self.y: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: B = None
self.w: I = None
self.x: G = None
self.p: J = None
self.q: J = None
self.r: C = None
self.o: B = None
self.s: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: B = None
self.z: G = None
self.v: J = None
self.u: J = None
self.w: D = None
self.p: A = None
self.r: J = None
self.y: A = None
self.q: D = None
self.t: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: F = None
self.u: H = None
self.txt = txt
a = A("a")
j = B("j")
l = C("l")
b = D("b")
h = E("h")
d = F("d")
c = G("c")
g = H("g")
f = I("f")
e = J("e")
a.s = h
a.p = d
a.u = c
a.w = c
a.x = g
a.r = g
a.v = e
a.o = j
j.z = a
j.o = d
j.p = d
j.v = d
j.r = l
l.z = g
l.y = b
l.q = b
l.p = a
l.x = h
l.t = e
l.v = e
b.z = c
b.u = c
h.v = f
d.y = b
c.t = l
c.p = e
c.q = e
c.v = e
c.y = e
c.u = j
c.w = d
g.t = j
g.o = j
g.s = j
g.w = f
g.x = c
g.p = e
g.q = e
g.r = l
f.x = j
f.z = c
f.v = e
f.u = e
f.r = e
f.w = b
f.q = b
f.p = a
f.y = a
f.t = h
e.x = d
e.u = g
assert b.u.u.o.y.u.p.u.p.u.q.txt == " | e" | class A:
def __init__(self, txt: str):
self.s: E = None
self.p: F = None
self.u: G = None
self.x: H = None
self.w: G = None
self.v: J = None
self.o: B = None
self.r: H = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: F = None
self.p: F = None
self.r: C = None
self.v: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: H = None
self.y: D = None
self.p: A = None
self.x: E = None
self.q: D = None
self.t: J = None
self.v: J = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: G = None
self.u: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: I = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.p: J = None
self.u: B = None
self.q: J = None
self.v: J = None
self.w: F = None
self.y: J = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.t: B = None
self.w: I = None
self.x: G = None
self.p: J = None
self.q: J = None
self.r: C = None
self.o: B = None
self.s: B = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: B = None
self.z: G = None
self.v: J = None
self.u: J = None
self.w: D = None
self.p: A = None
self.r: J = None
self.y: A = None
self.q: D = None
self.t: E = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.x: F = None
self.u: H = None
self.txt = txt
a = A("a")
j = B("j")
l = C("l")
b = D("b")
h = E("h")
d = F("d")
c = G("c")
g = H("g")
f = I("f")
e = J("e")
a.s = h
a.p = d
a.u = c
a.w = c
a.x = g
a.r = g
a.v = e
a.o = j
j.z = a
j.o = d
j.p = d
j.v = d
j.r = l
l.z = g
l.y = b
l.q = b
l.p = a
l.x = h
l.t = e
l.v = e
b.z = c
b.u = c
h.v = f
d.y = b
c.t = l
c.p = e
c.q = e
c.v = e
c.y = e
c.u = j
c.w = d
g.t = j
g.o = j
g.s = j
g.w = f
g.x = c
g.p = e
g.q = e
g.r = l
f.x = j
f.z = c
f.v = e
f.u = e
f.r = e
f.w = b
f.q = b
f.p = a
f.y = a
f.t = h
e.x = d
e.u = g
assert b.u.u.o.y.u.p.u.p.u.q.txt == "e" | 10 | 34 | 3.4 | 0.377778 | 10 | 1 | 10 | 1 | 5.1 | 10 | 3 | 2 | 6 | 0.6 | 8 | 0.235294 | 5 | 2 | 4 | 3 | 5 | 5 | 2 | 2 |
24,999 | class A:
def __init__(self, txt: str):
self.p: J = None
self.u: C = None
self.w: I = None
self.r: G = None
self.x: H = None
self.y: J = None
self.v: G = None
self.q: F = None
self.s: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.u: I = None
self.o: F = None
self.x: I = None
self.q: I = None
self.p: A = None
self.z: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.p: E = None
self.w: H = None
self.y: D = None
self.o: E = None
self.x: B = None
self.v: E = None
self.t: B = None
self.r: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: G = None
self.s: G = None
self.u: F = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: J = None
self.p: A = None
self.x: J = None
self.z: B = None
self.v: J = None
self.w: J = None
self.o: I = None
self.t: G = None
self.q: B = None
self.y: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.w: J = None
self.r: I = None
self.u: G = None
self.v: B = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: A = None
self.o: A = None
self.q: H = None
self.p: D = None
self.w: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: E = None
self.u: F = None
self.t: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: G = None
self.t: E = None
self.s: D = None
self.p: C = None
self.r: H = None
self.u: D = None
self.v: G = None
self.y: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: H = None
self.r: E = None
self.txt = txt
n = A("n")
c = B("c")
e = C("e")
b = D("b")
d = E("d")
j = F("j")
a = G("a")
f = H("f")
i = I("i")
g = J("g")
n.p = g
n.y = g
n.u = e
n.w = i
n.r = a
n.v = a
n.s = a
n.x = f
n.q = j
c.v = e
c.u = i
c.x = i
c.q = i
c.o = j
c.p = n
c.z = g
e.u = d
e.p = d
e.o = d
e.v = d
e.w = f
e.r = f
e.y = b
e.x = c
e.t = c
b.w = a
b.s = a
b.u = j
b.y = d
d.s = g
d.x = g
d.v = g
d.w = g
d.p = n
d.z = c
d.q = c
d.o = i
d.t = a
d.y = f
j.y = c
j.v = c
j.w = g
j.r = i
j.u = a
j.o = n
a.s = n
a.o = n
a.q = f
a.p = b
a.w = e
f.y = d
f.t = d
f.u = j
i.x = a
i.v = a
i.y = a
i.t = d
i.s = b
i.u = b
i.p = e
i.r = f
g.u = f
g.r = d
assert b.u.r.r.u.o.w.p.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.p: J = None
self.u: C = None
self.w: I = None
self.r: G = None
self.x: H = None
self.y: J = None
self.v: G = None
self.q: F = None
self.s: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.u: I = None
self.o: F = None
self.x: I = None
self.q: I = None
self.p: A = None
self.z: J = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.p: E = None
self.w: H = None
self.y: D = None
self.o: E = None
self.x: B = None
self.v: E = None
self.t: B = None
self.r: H = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: G = None
self.s: G = None
self.u: F = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: J = None
self.p: A = None
self.x: J = None
self.z: B = None
self.v: J = None
self.w: J = None
self.o: I = None
self.t: G = None
self.q: B = None
self.y: H = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: B = None
self.w: J = None
self.r: I = None
self.u: G = None
self.v: B = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: A = None
self.o: A = None
self.q: H = None
self.p: D = None
self.w: C = None
self.txt = txt
class H:
def __init__(self, txt: str):
self.y: E = None
self.u: F = None
self.t: E = None
self.txt = txt
class I:
def __init__(self, txt: str):
self.x: G = None
self.t: E = None
self.s: D = None
self.p: C = None
self.r: H = None
self.u: D = None
self.v: G = None
self.y: G = None
self.txt = txt
class J:
def __init__(self, txt: str):
self.u: H = None
self.r: E = None
self.txt = txt
n = A("n")
c = B("c")
e = C("e")
b = D("b")
d = E("d")
j = F("j")
a = G("a")
f = H("f")
i = I("i")
g = J("g")
n.p = g
n.y = g
n.u = e
n.w = i
n.r = a
n.v = a
n.s = a
n.x = f
n.q = j
c.v = e
c.u = i
c.x = i
c.q = i
c.o = j
c.p = n
c.z = g
e.u = d
e.p = d
e.o = d
e.v = d
e.w = f
e.r = f
e.y = b
e.x = c
e.t = c
b.w = a
b.s = a
b.u = j
b.y = d
d.s = g
d.x = g
d.v = g
d.w = g
d.p = n
d.z = c
d.q = c
d.o = i
d.t = a
d.y = f
j.y = c
j.v = c
j.w = g
j.r = i
j.u = a
j.o = n
a.s = n
a.o = n
a.q = f
a.p = b
a.w = e
f.y = d
f.t = d
f.u = j
i.x = a
i.v = a
i.y = a
i.t = d
i.s = b
i.u = b
i.p = e
i.r = f
g.u = f
g.r = d
assert b.u.r.r.u.o.w.p.t.txt == "c" | 10 | 42 | 4.2 | 0.466667 | 10 | 1 | 10 | 2 | 6.3 | 8 | 2 | 1 | 7 | 0.7 | 8 | 0.190476 | 2 | 3 | 4 | 3.5 | 6 | 2 | 2 | 2 |