id
int64 0
6k
| prompt
stringlengths 265
1.96k
| answer
stringclasses 10
values | pythoncode
stringlengths 267
1.96k
| depth0
stringclasses 10
values | depth1
stringclasses 10
values | depth2
stringclasses 10
values | depth3
stringclasses 10
values | depth4
stringclasses 11
values | depth5
stringclasses 11
values | depth6
stringclasses 11
values | depth7
stringclasses 11
values | num_nodes
int64 3
7
| num_edges
int64 3
29
| num_classes
int64 2
7
| path_length
int64 3
7
| num_cycle
int64 0
6
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5,500 | class A:
def __init__(self, txt: str):
self.x: E = None
self.p: E = None
self.w: G = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.o: A = None
self.x: D = None
self.t: A = 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.z: E = None
self.u: C = None
self.o: A = None
self.t: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: F = None
self.v: D = None
self.u: C = None
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.r: B = None
self.v: G = None
self.s: D = None
self.t: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: F = None
self.v: E = None
self.t: F = None
self.z: D = None
self.txt = txt
h = A("h")
i = B("i")
d = C("d")
j = D("j")
g = E("g")
b = F("b")
e = G("e")
h.x = g
h.p = g
h.w = e
h.z = d
i.p = d
i.o = h
i.t = h
i.x = j
d.s = b
j.z = g
j.u = d
j.o = h
j.t = b
g.y = b
g.v = j
g.u = d
g.o = e
b.y = d
b.r = i
b.v = e
b.t = e
b.s = j
e.y = b
e.t = b
e.v = g
e.z = j
assert g.y.s.o.txt == " | h" | class A:
def __init__(self, txt: str):
self.x: E = None
self.p: E = None
self.w: G = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.o: A = None
self.x: D = None
self.t: A = 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.z: E = None
self.u: C = None
self.o: A = None
self.t: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: F = None
self.v: D = None
self.u: C = None
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.r: B = None
self.v: G = None
self.s: D = None
self.t: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: F = None
self.v: E = None
self.t: F = None
self.z: D = None
self.txt = txt
h = A("h")
i = B("i")
d = C("d")
j = D("j")
g = E("g")
b = F("b")
e = G("e")
h.x = g
h.p = g
h.w = e
h.z = d
i.p = d
i.o = h
i.t = h
i.x = j
d.s = b
j.z = g
j.u = d
j.o = h
j.t = b
g.y = b
g.v = j
g.u = d
g.o = e
b.y = d
b.r = i
b.v = e
b.t = e
b.s = j
e.y = b
e.t = b
e.v = g
e.z = j
assert g.y.s.o.txt == "h" | g | b | j | h | x | x | x | x | 7 | 22 | 7 | 3 | 0 |
5,501 | class A:
def __init__(self, txt: str):
self.q: F = None
self.p: B = None
self.t: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: E = None
self.s: A = None
self.t: C = None
self.w: E = None
self.v: F = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.p: D = None
self.r: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.z: G = None
self.p: A = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.p: G = None
self.r: F = None
self.s: F = None
self.t: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.v: C = None
self.r: E = None
self.u: A = None
self.s: B = None
self.w: A = None
self.o: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: F = None
self.o: A = None
self.z: E = None
self.txt = txt
e = A("e")
g = B("g")
b = C("b")
j = D("j")
i = E("i")
a = F("a")
h = G("h")
e.q = a
e.p = g
e.t = h
g.y = i
g.w = i
g.s = e
g.t = b
g.z = b
g.v = a
b.t = g
b.p = j
b.r = a
j.q = e
j.p = e
j.z = h
j.y = i
i.v = a
i.r = a
i.s = a
i.p = h
i.t = b
a.z = b
a.v = b
a.r = i
a.u = e
a.w = e
a.s = g
a.o = g
h.x = a
h.o = e
h.z = i
assert b.r.r.t.r.o.txt == " | g" | class A:
def __init__(self, txt: str):
self.q: F = None
self.p: B = None
self.t: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: E = None
self.s: A = None
self.t: C = None
self.w: E = None
self.v: F = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.p: D = None
self.r: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.z: G = None
self.p: A = None
self.y: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.p: G = None
self.r: F = None
self.s: F = None
self.t: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.v: C = None
self.r: E = None
self.u: A = None
self.s: B = None
self.w: A = None
self.o: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: F = None
self.o: A = None
self.z: E = None
self.txt = txt
e = A("e")
g = B("g")
b = C("b")
j = D("j")
i = E("i")
a = F("a")
h = G("h")
e.q = a
e.p = g
e.t = h
g.y = i
g.w = i
g.s = e
g.t = b
g.z = b
g.v = a
b.t = g
b.p = j
b.r = a
j.q = e
j.p = e
j.z = h
j.y = i
i.v = a
i.r = a
i.s = a
i.p = h
i.t = b
a.z = b
a.v = b
a.r = i
a.u = e
a.w = e
a.s = g
a.o = g
h.x = a
h.o = e
h.z = i
assert b.r.r.t.r.o.txt == "g" | b | a | i | b | a | g | x | x | 7 | 23 | 7 | 5 | 2 |
5,502 | class A:
def __init__(self, txt: str):
self.o: F = None
self.p: F = None
self.y: B = None
self.x: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.w: A = None
self.z: F = None
self.q: C = None
self.v: G = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.u: A = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.r: G = None
self.w: G = None
self.q: B = None
self.s: B = None
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
h = A("h")
i = B("i")
e = C("e")
d = D("d")
b = E("b")
j = F("j")
c = G("c")
h.o = j
h.p = j
h.y = i
h.x = c
i.t = e
i.q = e
i.w = h
i.z = j
i.p = j
i.v = c
e.s = c
e.u = h
e.t = j
d.y = b
d.p = b
b.v = d
b.r = c
b.w = c
b.q = i
b.s = i
b.u = h
j.p = b
c.o = i
assert d.p.w.o.p.p.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.o: F = None
self.p: F = None
self.y: B = None
self.x: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.w: A = None
self.z: F = None
self.q: C = None
self.v: G = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.u: A = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.r: G = None
self.w: G = None
self.q: B = None
self.s: B = None
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
h = A("h")
i = B("i")
e = C("e")
d = D("d")
b = E("b")
j = F("j")
c = G("c")
h.o = j
h.p = j
h.y = i
h.x = c
i.t = e
i.q = e
i.w = h
i.z = j
i.p = j
i.v = c
e.s = c
e.u = h
e.t = j
d.y = b
d.p = b
b.v = d
b.r = c
b.w = c
b.q = i
b.s = i
b.u = h
j.p = b
c.o = i
assert d.p.w.o.p.p.v.txt == "d" | d | b | c | i | j | b | d | x | 7 | 17 | 7 | 6 | 2 |
5,503 | class A:
def __init__(self, txt: str):
self.t: E = None
self.s: D = None
self.w: D = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.x: B = None
self.s: A = None
self.t: E = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.y: F = None
self.s: A = None
self.q: D = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: C = None
self.q: A = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: A = None
self.v: B = None
self.o: C = None
self.x: F = None
self.w: B = None
self.q: C = None
self.p: D = None
self.txt = txt
d = A("d")
j = B("j")
i = C("i")
h = D("h")
c = E("c")
e = F("e")
b = G("b")
d.t = c
d.s = h
d.w = h
d.q = h
j.x = i
i.o = e
h.p = b
h.x = j
h.s = d
h.w = d
h.t = c
c.t = h
c.q = h
c.y = e
c.w = e
c.s = d
e.r = i
e.q = d
e.o = d
b.t = d
b.v = j
b.w = j
b.o = i
b.q = i
b.x = e
b.p = h
assert e.r.o.q.txt == " | d" | class A:
def __init__(self, txt: str):
self.t: E = None
self.s: D = None
self.w: D = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.x: B = None
self.s: A = None
self.t: E = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.y: F = None
self.s: A = None
self.q: D = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: C = None
self.q: A = None
self.o: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: A = None
self.v: B = None
self.o: C = None
self.x: F = None
self.w: B = None
self.q: C = None
self.p: D = None
self.txt = txt
d = A("d")
j = B("j")
i = C("i")
h = D("h")
c = E("c")
e = F("e")
b = G("b")
d.t = c
d.s = h
d.w = h
d.q = h
j.x = i
i.o = e
h.p = b
h.x = j
h.s = d
h.w = d
h.t = c
c.t = h
c.q = h
c.y = e
c.w = e
c.s = d
e.r = i
e.q = d
e.o = d
b.t = d
b.v = j
b.w = j
b.o = i
b.q = i
b.x = e
b.p = h
assert e.r.o.q.txt == "d" | e | i | e | d | x | x | x | x | 7 | 18 | 7 | 3 | 1 |
5,504 | class A:
def __init__(self, txt: str):
self.w: G = None
self.x: D = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: F = None
self.p: F = None
self.s: A = None
self.w: C = None
self.z: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.y: A = None
self.u: G = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: C = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.o: F = None
self.t: G = None
self.r: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: E = None
self.p: C = None
self.r: C = None
self.q: E = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: D = None
self.o: D = None
self.r: D = None
self.txt = txt
h = A("h")
f = B("f")
g = C("g")
c = D("c")
b = E("b")
j = F("j")
e = G("e")
h.w = e
h.x = c
h.o = f
f.q = j
f.p = j
f.s = h
f.w = g
f.z = e
g.o = f
g.y = h
g.u = e
g.r = b
c.x = g
c.y = j
b.x = h
b.o = j
b.t = e
b.r = f
j.t = b
j.q = b
j.v = b
j.p = g
j.r = g
e.u = c
e.o = c
e.r = c
assert e.u.y.v.t.o.txt == " | c" | class A:
def __init__(self, txt: str):
self.w: G = None
self.x: D = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: F = None
self.p: F = None
self.s: A = None
self.w: C = None
self.z: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.y: A = None
self.u: G = None
self.r: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: C = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: A = None
self.o: F = None
self.t: G = None
self.r: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: E = None
self.p: C = None
self.r: C = None
self.q: E = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: D = None
self.o: D = None
self.r: D = None
self.txt = txt
h = A("h")
f = B("f")
g = C("g")
c = D("c")
b = E("b")
j = F("j")
e = G("e")
h.w = e
h.x = c
h.o = f
f.q = j
f.p = j
f.s = h
f.w = g
f.z = e
g.o = f
g.y = h
g.u = e
g.r = b
c.x = g
c.y = j
b.x = h
b.o = j
b.t = e
b.r = f
j.t = b
j.q = b
j.v = b
j.p = g
j.r = g
e.u = c
e.o = c
e.r = c
assert e.u.y.v.t.o.txt == "c" | e | c | j | b | e | c | x | x | 7 | 20 | 7 | 5 | 2 |
5,505 | class A:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: G = None
self.s: A = None
self.v: C = None
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: D = None
self.w: B = None
self.o: G = None
self.v: D = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.z: F = None
self.u: A = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.s: C = None
self.r: B = None
self.z: G = None
self.p: B = None
self.t: E = None
self.y: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: C = None
self.p: D = None
self.s: C = None
self.w: F = None
self.u: C = None
self.o: F = None
self.q: F = None
self.txt = txt
g = A("g")
j = B("j")
a = C("a")
i = D("i")
e = E("e")
f = F("f")
h = G("h")
g.q = e
j.w = h
j.s = g
j.v = a
j.t = f
a.z = f
a.y = e
a.q = e
a.x = i
a.v = i
a.w = j
a.o = h
i.o = g
i.u = g
i.z = f
i.t = e
e.r = g
f.o = a
f.s = a
f.r = j
f.p = j
f.z = h
f.y = h
f.t = e
h.v = a
h.s = a
h.u = a
h.p = i
h.w = f
h.o = f
h.q = f
assert i.o.q.r.q.r.txt == " | g" | class A:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: G = None
self.s: A = None
self.v: C = None
self.t: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: D = None
self.w: B = None
self.o: G = None
self.v: D = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.z: F = None
self.u: A = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.s: C = None
self.r: B = None
self.z: G = None
self.p: B = None
self.t: E = None
self.y: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: C = None
self.p: D = None
self.s: C = None
self.w: F = None
self.u: C = None
self.o: F = None
self.q: F = None
self.txt = txt
g = A("g")
j = B("j")
a = C("a")
i = D("i")
e = E("e")
f = F("f")
h = G("h")
g.q = e
j.w = h
j.s = g
j.v = a
j.t = f
a.z = f
a.y = e
a.q = e
a.x = i
a.v = i
a.w = j
a.o = h
i.o = g
i.u = g
i.z = f
i.t = e
e.r = g
f.o = a
f.s = a
f.r = j
f.p = j
f.z = h
f.y = h
f.t = e
h.v = a
h.s = a
h.u = a
h.p = i
h.w = f
h.o = f
h.q = f
assert i.o.q.r.q.r.txt == "g" | i | g | e | g | e | g | x | x | 7 | 21 | 7 | 5 | 3 |
5,506 | class A:
def __init__(self, txt: str):
self.r: D = None
self.s: B = None
self.u: G = None
self.z: E = None
self.v: C = None
self.p: D = None
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.p: F = None
self.x: B = None
self.o: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: G = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: F = None
self.r: C = None
self.p: F = None
self.o: F = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.z: G = None
self.r: G = None
self.o: A = None
self.q: D = None
self.p: E = None
self.s: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
e = A("e")
d = B("d")
f = C("f")
i = D("i")
h = E("h")
a = F("a")
j = G("j")
e.r = i
e.p = i
e.s = d
e.u = j
e.o = j
e.z = h
e.v = f
d.q = e
d.u = f
f.s = e
f.o = e
f.p = a
f.x = d
i.y = j
i.o = e
h.y = a
h.p = a
h.o = a
h.r = f
h.s = d
a.x = h
a.p = h
a.z = j
a.r = j
a.o = e
a.q = i
a.s = f
j.p = a
assert h.s.q.r.y.txt == " | j" | class A:
def __init__(self, txt: str):
self.r: D = None
self.s: B = None
self.u: G = None
self.z: E = None
self.v: C = None
self.p: D = None
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.p: F = None
self.x: B = None
self.o: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: G = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: F = None
self.r: C = None
self.p: F = None
self.o: F = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.z: G = None
self.r: G = None
self.o: A = None
self.q: D = None
self.p: E = None
self.s: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
e = A("e")
d = B("d")
f = C("f")
i = D("i")
h = E("h")
a = F("a")
j = G("j")
e.r = i
e.p = i
e.s = d
e.u = j
e.o = j
e.z = h
e.v = f
d.q = e
d.u = f
f.s = e
f.o = e
f.p = a
f.x = d
i.y = j
i.o = e
h.y = a
h.p = a
h.o = a
h.r = f
h.s = d
a.x = h
a.p = h
a.z = j
a.r = j
a.o = e
a.q = i
a.s = f
j.p = a
assert h.s.q.r.y.txt == "j" | h | d | e | i | j | x | x | x | 7 | 21 | 7 | 4 | 0 |
5,507 | class A:
def __init__(self, txt: str):
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.v: E = None
self.s: C = None
self.z: D = None
self.p: A = None
self.r: D = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.w: F = None
self.y: E = None
self.q: D = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.t: C = None
self.o: A = None
self.z: A = None
self.v: F = None
self.y: F = None
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.q: C = None
self.u: G = None
self.w: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: C = None
self.x: E = None
self.z: B = None
self.txt = txt
e = A("e")
g = B("g")
b = C("b")
a = D("a")
f = E("f")
h = F("h")
c = G("c")
e.x = h
g.u = a
g.z = a
g.r = a
g.v = f
g.s = b
g.p = e
g.o = e
b.x = e
b.p = e
b.w = h
b.y = f
b.q = a
a.r = g
a.t = b
a.o = e
a.z = e
a.v = h
a.y = h
a.s = h
f.u = e
h.z = g
h.q = b
h.w = b
h.u = c
c.v = b
c.x = f
c.z = g
assert a.r.p.x.w.y.txt == " | f" | class A:
def __init__(self, txt: str):
self.x: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.v: E = None
self.s: C = None
self.z: D = None
self.p: A = None
self.r: D = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.w: F = None
self.y: E = None
self.q: D = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.t: C = None
self.o: A = None
self.z: A = None
self.v: F = None
self.y: F = None
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.q: C = None
self.u: G = None
self.w: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: C = None
self.x: E = None
self.z: B = None
self.txt = txt
e = A("e")
g = B("g")
b = C("b")
a = D("a")
f = E("f")
h = F("h")
c = G("c")
e.x = h
g.u = a
g.z = a
g.r = a
g.v = f
g.s = b
g.p = e
g.o = e
b.x = e
b.p = e
b.w = h
b.y = f
b.q = a
a.r = g
a.t = b
a.o = e
a.z = e
a.v = h
a.y = h
a.s = h
f.u = e
h.z = g
h.q = b
h.w = b
h.u = c
c.v = b
c.x = f
c.z = g
assert a.r.p.x.w.y.txt == "f" | a | g | e | h | b | f | x | x | 7 | 20 | 7 | 5 | 0 |
5,508 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.o: F = None
self.q: G = None
self.x: A = None
self.v: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.s: D = None
self.t: B = None
self.v: A = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.r: G = None
self.y: B = None
self.t: A = None
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.v: F = None
self.t: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: E = None
self.z: G = None
self.x: B = None
self.o: C = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.p: B = None
self.u: A = None
self.txt = txt
j = A("j")
c = B("c")
e = C("e")
h = D("h")
g = E("g")
f = F("f")
a = G("a")
j.t = c
c.p = j
c.x = j
c.o = f
c.v = f
c.q = a
e.p = c
e.t = c
e.s = h
e.v = j
e.w = j
h.v = j
h.t = j
h.r = a
h.y = c
h.z = f
g.o = j
g.v = f
g.t = f
f.v = g
f.z = a
f.x = c
f.o = e
f.y = j
a.t = e
a.p = c
a.u = j
assert j.t.x.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.o: F = None
self.q: G = None
self.x: A = None
self.v: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.s: D = None
self.t: B = None
self.v: A = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.r: G = None
self.y: B = None
self.t: A = None
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.v: F = None
self.t: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: E = None
self.z: G = None
self.x: B = None
self.o: C = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.p: B = None
self.u: A = None
self.txt = txt
j = A("j")
c = B("c")
e = C("e")
h = D("h")
g = E("g")
f = F("f")
a = G("a")
j.t = c
c.p = j
c.x = j
c.o = f
c.v = f
c.q = a
e.p = c
e.t = c
e.s = h
e.v = j
e.w = j
h.v = j
h.t = j
h.r = a
h.y = c
h.z = f
g.o = j
g.v = f
g.t = f
f.v = g
f.z = a
f.x = c
f.o = e
f.y = j
a.t = e
a.p = c
a.u = j
assert j.t.x.t.txt == "c" | j | c | j | c | x | x | x | x | 7 | 21 | 7 | 3 | 2 |
5,509 | class A:
def __init__(self, txt: str):
self.w: C = None
self.p: F = None
self.o: E = None
self.t: D = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: E = None
self.z: E = None
self.o: C = None
self.t: C = None
self.x: C = None
self.q: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.x: B = None
self.r: E = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.p: C = None
self.v: F = None
self.y: C = None
self.z: D = None
self.q: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: G = None
self.o: C = None
self.u: D = None
self.w: G = None
self.p: A = None
self.t: D = None
self.v: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: A = None
self.q: C = None
self.z: F = None
self.x: C = None
self.o: C = None
self.y: A = None
self.txt = txt
d = A("d")
i = B("i")
f = C("f")
a = D("a")
e = E("e")
b = F("b")
j = G("j")
d.w = f
d.p = b
d.o = e
d.t = a
d.z = i
i.s = e
i.z = e
i.o = f
i.t = f
i.x = f
i.q = j
f.s = a
f.x = i
f.w = i
f.r = e
a.t = d
e.r = f
e.p = f
e.y = f
e.q = f
e.v = b
e.z = a
b.y = j
b.w = j
b.o = f
b.u = a
b.t = a
b.p = d
b.v = d
j.t = d
j.y = d
j.q = f
j.x = f
j.o = f
j.z = b
assert i.q.o.r.txt == " | e" | class A:
def __init__(self, txt: str):
self.w: C = None
self.p: F = None
self.o: E = None
self.t: D = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: E = None
self.z: E = None
self.o: C = None
self.t: C = None
self.x: C = None
self.q: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.x: B = None
self.r: E = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.p: C = None
self.v: F = None
self.y: C = None
self.z: D = None
self.q: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: G = None
self.o: C = None
self.u: D = None
self.w: G = None
self.p: A = None
self.t: D = None
self.v: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: A = None
self.q: C = None
self.z: F = None
self.x: C = None
self.o: C = None
self.y: A = None
self.txt = txt
d = A("d")
i = B("i")
f = C("f")
a = D("a")
e = E("e")
b = F("b")
j = G("j")
d.w = f
d.p = b
d.o = e
d.t = a
d.z = i
i.s = e
i.z = e
i.o = f
i.t = f
i.x = f
i.q = j
f.s = a
f.x = i
f.w = i
f.r = e
a.t = d
e.r = f
e.p = f
e.y = f
e.q = f
e.v = b
e.z = a
b.y = j
b.w = j
b.o = f
b.u = a
b.t = a
b.p = d
b.v = d
j.t = d
j.y = d
j.q = f
j.x = f
j.o = f
j.z = b
assert i.q.o.r.txt == "e" | i | j | f | e | x | x | x | x | 7 | 22 | 7 | 3 | 0 |
5,510 | class A:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.x: C = None
self.s: E = None
self.u: D = None
self.y: D = None
self.o: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: D = None
self.x: F = None
self.r: G = None
self.o: F = None
self.w: G = None
self.p: E = None
self.q: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.u: A = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: C = None
self.q: B = None
self.u: E = None
self.txt = txt
h = A("h")
e = B("e")
j = C("j")
i = D("i")
b = E("b")
d = F("d")
f = G("f")
h.u = b
e.r = j
e.x = j
e.s = b
e.o = b
e.u = i
e.y = i
j.v = i
j.x = d
j.o = d
j.r = f
j.w = f
j.p = b
j.q = h
i.r = f
i.u = h
i.s = b
b.o = e
d.x = e
f.w = j
f.q = e
f.u = b
assert f.w.w.q.x.o.x.txt == " | e" | class A:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.x: C = None
self.s: E = None
self.u: D = None
self.y: D = None
self.o: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: D = None
self.x: F = None
self.r: G = None
self.o: F = None
self.w: G = None
self.p: E = None
self.q: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.u: A = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: C = None
self.q: B = None
self.u: E = None
self.txt = txt
h = A("h")
e = B("e")
j = C("j")
i = D("i")
b = E("b")
d = F("d")
f = G("f")
h.u = b
e.r = j
e.x = j
e.s = b
e.o = b
e.u = i
e.y = i
j.v = i
j.x = d
j.o = d
j.r = f
j.w = f
j.p = b
j.q = h
i.r = f
i.u = h
i.s = b
b.o = e
d.x = e
f.w = j
f.q = e
f.u = b
assert f.w.w.q.x.o.x.txt == "e" | f | j | f | e | j | d | e | x | 7 | 17 | 7 | 6 | 3 |
5,511 | class A:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.y: G = None
self.u: B = None
self.z: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: D = None
self.v: B = None
self.o: E = None
self.r: G = None
self.z: E = None
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: F = None
self.z: F = None
self.txt = txt
e = A("e")
d = B("d")
g = C("g")
i = D("i")
h = E("h")
f = F("f")
a = G("a")
e.z = f
d.v = g
g.p = f
g.w = h
i.u = e
i.s = h
h.q = f
h.y = a
h.u = d
h.z = d
f.w = i
f.v = d
f.o = h
f.z = h
f.r = a
f.q = a
a.v = f
a.z = f
assert e.z.w.s.q.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.y: G = None
self.u: B = None
self.z: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: D = None
self.v: B = None
self.o: E = None
self.r: G = None
self.z: E = None
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: F = None
self.z: F = None
self.txt = txt
e = A("e")
d = B("d")
g = C("g")
i = D("i")
h = E("h")
f = F("f")
a = G("a")
e.z = f
d.v = g
g.p = f
g.w = h
i.u = e
i.s = h
h.q = f
h.y = a
h.u = d
h.z = d
f.w = i
f.v = d
f.o = h
f.z = h
f.r = a
f.q = a
a.v = f
a.z = f
assert e.z.w.s.q.txt == "f" | e | f | i | h | f | x | x | x | 7 | 14 | 7 | 4 | 1 |
5,512 | class A:
def __init__(self, txt: str):
self.o: B = None
self.t: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.v: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.w: B = None
self.y: D = None
self.p: C = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: E = None
self.x: D = None
self.u: E = None
self.w: D = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
c = A("c")
f = B("f")
e = C("e")
g = D("g")
h = E("h")
a = F("a")
i = G("i")
c.o = f
c.t = i
f.o = e
f.v = a
e.q = f
e.v = f
g.u = e
h.o = i
h.w = f
h.y = g
h.p = e
h.u = e
a.y = h
a.u = h
a.x = g
a.w = g
a.t = f
i.w = c
assert c.o.o.q.txt == " | f" | class A:
def __init__(self, txt: str):
self.o: B = None
self.t: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.v: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.w: B = None
self.y: D = None
self.p: C = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: E = None
self.x: D = None
self.u: E = None
self.w: D = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
c = A("c")
f = B("f")
e = C("e")
g = D("g")
h = E("h")
a = F("a")
i = G("i")
c.o = f
c.t = i
f.o = e
f.v = a
e.q = f
e.v = f
g.u = e
h.o = i
h.w = f
h.y = g
h.p = e
h.u = e
a.y = h
a.u = h
a.x = g
a.w = g
a.t = f
i.w = c
assert c.o.o.q.txt == "f" | c | f | e | f | x | x | x | x | 7 | 14 | 7 | 3 | 1 |
5,513 | class A:
def __init__(self, txt: str):
self.x: G = None
self.v: C = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.u: E = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.r: E = None
self.u: A = None
self.z: D = None
self.t: D = None
self.s: A = None
self.v: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.q: G = None
self.w: B = None
self.z: F = None
self.p: E = None
self.r: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.p: C = None
self.z: A = None
self.x: F = None
self.u: B = None
self.w: F = None
self.o: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.w: D = None
self.s: D = None
self.t: G = None
self.o: D = None
self.y: G = None
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: F = None
self.txt = txt
f = A("f")
e = B("e")
b = C("b")
a = D("a")
g = E("g")
d = F("d")
j = G("j")
f.x = j
f.v = b
f.q = a
e.v = b
e.u = g
e.z = f
b.y = a
b.z = a
b.t = a
b.r = g
b.u = f
b.s = f
b.v = j
a.o = f
a.q = j
a.w = e
a.z = d
a.p = g
a.r = b
g.t = e
g.u = e
g.p = b
g.z = f
g.o = f
g.x = d
g.w = d
d.u = f
d.p = f
d.w = a
d.s = a
d.o = a
d.t = j
d.y = j
j.y = d
assert g.p.z.q.y.w.p.txt == " | g" | class A:
def __init__(self, txt: str):
self.x: G = None
self.v: C = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.u: E = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.r: E = None
self.u: A = None
self.z: D = None
self.t: D = None
self.s: A = None
self.v: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.q: G = None
self.w: B = None
self.z: F = None
self.p: E = None
self.r: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.p: C = None
self.z: A = None
self.x: F = None
self.u: B = None
self.w: F = None
self.o: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.w: D = None
self.s: D = None
self.t: G = None
self.o: D = None
self.y: G = None
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: F = None
self.txt = txt
f = A("f")
e = B("e")
b = C("b")
a = D("a")
g = E("g")
d = F("d")
j = G("j")
f.x = j
f.v = b
f.q = a
e.v = b
e.u = g
e.z = f
b.y = a
b.z = a
b.t = a
b.r = g
b.u = f
b.s = f
b.v = j
a.o = f
a.q = j
a.w = e
a.z = d
a.p = g
a.r = b
g.t = e
g.u = e
g.p = b
g.z = f
g.o = f
g.x = d
g.w = d
d.u = f
d.p = f
d.w = a
d.s = a
d.o = a
d.t = j
d.y = j
j.y = d
assert g.p.z.q.y.w.p.txt == "g" | g | b | a | j | d | a | g | x | 7 | 24 | 7 | 6 | 2 |
5,514 | class A:
def __init__(self, txt: str):
self.q: D = None
self.x: C = None
self.z: F = None
self.w: D = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: G = None
self.x: E = None
self.r: C = None
self.q: A = None
self.u: G = None
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.o: E = None
self.s: G = None
self.u: B = None
self.t: E = None
self.y: E = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: E = None
self.q: E = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.s: G = None
self.u: G = None
self.x: F = None
self.y: B = None
self.w: F = None
self.p: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: G = None
self.o: C = None
self.s: G = None
self.q: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
d = A("d")
e = B("e")
f = C("f")
i = D("i")
h = E("h")
g = F("g")
j = G("j")
d.q = i
d.w = i
d.x = f
d.z = g
d.u = g
e.v = j
e.u = j
e.x = h
e.r = f
e.q = d
e.o = g
f.p = i
f.o = h
f.t = h
f.y = h
f.w = h
f.s = j
f.u = e
i.s = h
i.q = h
i.u = e
h.z = d
h.s = j
h.u = j
h.x = g
h.w = g
h.y = e
h.p = e
g.x = j
g.s = j
g.o = f
g.q = e
j.r = e
assert g.q.r.o.u.r.r.txt == " | f" | class A:
def __init__(self, txt: str):
self.q: D = None
self.x: C = None
self.z: F = None
self.w: D = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: G = None
self.x: E = None
self.r: C = None
self.q: A = None
self.u: G = None
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.o: E = None
self.s: G = None
self.u: B = None
self.t: E = None
self.y: E = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: E = None
self.q: E = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.s: G = None
self.u: G = None
self.x: F = None
self.y: B = None
self.w: F = None
self.p: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: G = None
self.o: C = None
self.s: G = None
self.q: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
d = A("d")
e = B("e")
f = C("f")
i = D("i")
h = E("h")
g = F("g")
j = G("j")
d.q = i
d.w = i
d.x = f
d.z = g
d.u = g
e.v = j
e.u = j
e.x = h
e.r = f
e.q = d
e.o = g
f.p = i
f.o = h
f.t = h
f.y = h
f.w = h
f.s = j
f.u = e
i.s = h
i.q = h
i.u = e
h.z = d
h.s = j
h.u = j
h.x = g
h.w = g
h.y = e
h.p = e
g.x = j
g.s = j
g.o = f
g.q = e
j.r = e
assert g.q.r.o.u.r.r.txt == "f" | g | e | f | h | j | e | f | x | 7 | 22 | 7 | 6 | 2 |
5,515 | class A:
def __init__(self, txt: str):
self.u: C = None
self.q: G = None
self.p: E = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.o: C = None
self.y: C = None
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: E = None
self.v: D = None
self.t: D = None
self.w: D = None
self.q: A = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.t: A = None
self.x: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: C = None
self.q: C = None
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.s: E = None
self.w: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: B = None
self.s: A = None
self.w: B = None
self.txt = txt
b = A("b")
d = B("d")
j = C("j")
c = D("c")
f = E("f")
i = F("i")
h = G("h")
b.u = j
b.q = h
b.p = f
b.x = c
d.x = b
d.o = j
d.y = j
d.r = h
j.r = f
j.v = c
j.t = c
j.w = c
j.q = b
j.p = d
c.v = d
c.t = b
c.x = h
f.v = j
f.q = j
f.y = i
i.r = d
i.s = f
i.w = f
h.r = d
h.w = d
h.s = b
assert h.r.r.s.u.r.v.q.txt == " | b" | class A:
def __init__(self, txt: str):
self.u: C = None
self.q: G = None
self.p: E = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.o: C = None
self.y: C = None
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: E = None
self.v: D = None
self.t: D = None
self.w: D = None
self.q: A = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.t: A = None
self.x: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: C = None
self.q: C = None
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.s: E = None
self.w: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: B = None
self.s: A = None
self.w: B = None
self.txt = txt
b = A("b")
d = B("d")
j = C("j")
c = D("c")
f = E("f")
i = F("i")
h = G("h")
b.u = j
b.q = h
b.p = f
b.x = c
d.x = b
d.o = j
d.y = j
d.r = h
j.r = f
j.v = c
j.t = c
j.w = c
j.q = b
j.p = d
c.v = d
c.t = b
c.x = h
f.v = j
f.q = j
f.y = i
i.r = d
i.s = f
i.w = f
h.r = d
h.w = d
h.s = b
assert h.r.r.s.u.r.v.q.txt == "b" | h | d | h | b | j | f | j | b | 7 | 20 | 7 | 7 | 3 |
5,516 | class A:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.u: D = None
self.s: C = None
self.v: E = None
self.r: E = None
self.z: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.o: E = None
self.s: E = None
self.q: E = None
self.u: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.t: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.u: A = None
self.y: D = None
self.r: F = None
self.v: B = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.p: C = None
self.w: C = None
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
a = A("a")
f = B("f")
e = C("e")
d = D("d")
g = E("g")
c = F("c")
j = G("j")
a.r = d
f.x = d
f.u = d
f.s = e
f.v = g
f.r = g
f.z = j
e.p = a
e.o = g
e.s = g
e.q = g
e.u = j
d.s = a
d.t = c
g.q = c
g.r = c
g.u = a
g.y = d
g.t = d
g.v = f
c.z = a
c.p = e
c.w = e
c.q = j
j.p = a
assert f.z.p.r.txt == " | d" | class A:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.u: D = None
self.s: C = None
self.v: E = None
self.r: E = None
self.z: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.o: E = None
self.s: E = None
self.q: E = None
self.u: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.t: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.u: A = None
self.y: D = None
self.r: F = None
self.v: B = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.p: C = None
self.w: C = None
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
a = A("a")
f = B("f")
e = C("e")
d = D("d")
g = E("g")
c = F("c")
j = G("j")
a.r = d
f.x = d
f.u = d
f.s = e
f.v = g
f.r = g
f.z = j
e.p = a
e.o = g
e.s = g
e.q = g
e.u = j
d.s = a
d.t = c
g.q = c
g.r = c
g.u = a
g.y = d
g.t = d
g.v = f
c.z = a
c.p = e
c.w = e
c.q = j
j.p = a
assert f.z.p.r.txt == "d" | f | j | a | d | x | x | x | x | 7 | 18 | 7 | 3 | 0 |
5,517 | class A:
def __init__(self, txt: str):
self.q: F = None
self.s: E = None
self.y: B = None
self.x: G = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: F = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: E = None
self.r: A = None
self.v: A = None
self.s: F = None
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.r: C = None
self.z: E = None
self.p: C = None
self.q: G = None
self.y: B = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: A = None
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.u: G = None
self.z: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
b = A("b")
g = B("g")
i = C("i")
j = D("j")
e = E("e")
h = F("h")
a = G("a")
b.q = h
b.s = e
b.y = g
b.x = a
b.z = j
g.v = h
g.z = i
i.o = e
i.r = b
i.v = b
i.u = b
i.s = h
j.s = a
j.q = a
j.r = i
j.p = i
j.z = e
j.y = g
j.w = b
e.p = b
e.y = g
h.o = i
h.z = i
h.u = a
a.q = b
assert a.q.s.y.v.z.o.p.txt == " | b" | class A:
def __init__(self, txt: str):
self.q: F = None
self.s: E = None
self.y: B = None
self.x: G = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: F = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: E = None
self.r: A = None
self.v: A = None
self.s: F = None
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.r: C = None
self.z: E = None
self.p: C = None
self.q: G = None
self.y: B = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: A = None
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.u: G = None
self.z: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
b = A("b")
g = B("g")
i = C("i")
j = D("j")
e = E("e")
h = F("h")
a = G("a")
b.q = h
b.s = e
b.y = g
b.x = a
b.z = j
g.v = h
g.z = i
i.o = e
i.r = b
i.v = b
i.u = b
i.s = h
j.s = a
j.q = a
j.r = i
j.p = i
j.z = e
j.y = g
j.w = b
e.p = b
e.y = g
h.o = i
h.z = i
h.u = a
a.q = b
assert a.q.s.y.v.z.o.p.txt == "b" | a | b | e | g | h | i | e | b | 7 | 20 | 7 | 7 | 2 |
5,518 | class A:
def __init__(self, txt: str):
self.s: D = None
self.q: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.s: E = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.p: E = None
self.u: B = None
self.r: A = None
self.w: B = None
self.q: G = None
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: D = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.z: G = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: E = None
self.x: B = None
self.w: F = None
self.t: A = None
self.o: F = None
self.txt = txt
b = A("b")
f = B("f")
g = C("g")
i = D("i")
h = E("h")
a = F("a")
d = G("d")
b.s = i
b.q = d
f.r = h
f.s = h
f.x = g
g.u = f
g.t = b
i.v = g
i.p = h
i.u = f
i.w = f
i.r = b
i.q = d
i.y = d
h.o = i
h.x = f
a.x = h
a.z = d
a.u = g
d.s = h
d.x = f
d.w = a
d.o = a
d.t = b
assert i.w.s.x.r.txt == " | h" | class A:
def __init__(self, txt: str):
self.s: D = None
self.q: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.s: E = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.p: E = None
self.u: B = None
self.r: A = None
self.w: B = None
self.q: G = None
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: D = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.z: G = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: E = None
self.x: B = None
self.w: F = None
self.t: A = None
self.o: F = None
self.txt = txt
b = A("b")
f = B("f")
g = C("g")
i = D("i")
h = E("h")
a = F("a")
d = G("d")
b.s = i
b.q = d
f.r = h
f.s = h
f.x = g
g.u = f
g.t = b
i.v = g
i.p = h
i.u = f
i.w = f
i.r = b
i.q = d
i.y = d
h.o = i
h.x = f
a.x = h
a.z = d
a.u = g
d.s = h
d.x = f
d.w = a
d.o = a
d.t = b
assert i.w.s.x.r.txt == "h" | i | f | h | f | h | x | x | x | 7 | 20 | 7 | 4 | 2 |
5,519 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: G = None
self.r: G = None
self.x: G = None
self.w: G = None
self.o: C = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: F = None
self.u: F = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: A = None
self.w: D = None
self.r: D = None
self.v: A = None
self.y: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.p: E = None
self.o: B = None
self.w: C = None
self.q: E = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: B = None
self.u: B = None
self.z: A = None
self.txt = txt
d = A("d")
f = B("f")
a = C("a")
h = D("h")
j = E("j")
i = F("i")
g = G("g")
d.z = f
d.y = g
d.r = g
d.x = g
d.w = g
d.o = a
d.v = a
f.y = i
a.p = h
h.o = i
h.u = i
h.w = a
j.p = d
j.v = d
j.w = h
j.r = h
j.y = g
i.r = f
i.o = f
i.t = f
i.p = j
i.q = j
i.w = a
g.q = f
g.u = f
g.z = d
assert g.z.z.y.p.y.z.o.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: G = None
self.r: G = None
self.x: G = None
self.w: G = None
self.o: C = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: F = None
self.u: F = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: A = None
self.w: D = None
self.r: D = None
self.v: A = None
self.y: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.p: E = None
self.o: B = None
self.w: C = None
self.q: E = None
self.t: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: B = None
self.u: B = None
self.z: A = None
self.txt = txt
d = A("d")
f = B("f")
a = C("a")
h = D("h")
j = E("j")
i = F("i")
g = G("g")
d.z = f
d.y = g
d.r = g
d.x = g
d.w = g
d.o = a
d.v = a
f.y = i
a.p = h
h.o = i
h.u = i
h.w = a
j.p = d
j.v = d
j.w = h
j.r = h
j.y = g
i.r = f
i.o = f
i.t = f
i.p = j
i.q = j
i.w = a
g.q = f
g.u = f
g.z = d
assert g.z.z.y.p.y.z.o.txt == "a" | g | d | f | i | j | g | d | a | 7 | 15 | 7 | 7 | 2 |
5,520 | class A:
def __init__(self, txt: str):
self.o: G = None
self.p: C = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.w: G = None
self.q: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.o: G = None
self.t: A = None
self.y: B = None
self.r: F = None
self.w: E = None
self.q: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: G = None
self.v: G = None
self.o: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: F = None
self.o: A = None
self.s: C = None
self.u: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: E = None
self.v: E = None
self.w: C = None
self.z: E = None
self.p: D = None
self.t: E = None
self.x: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: D = None
self.w: C = None
self.x: F = None
self.o: C = None
self.txt = txt
a = A("a")
i = B("i")
h = C("h")
j = D("j")
d = E("d")
f = F("f")
e = G("e")
a.o = e
a.p = h
a.x = j
i.r = a
i.w = e
i.q = h
i.x = h
h.p = a
h.t = a
h.q = a
h.o = e
h.y = i
h.r = f
h.w = d
j.y = e
j.v = e
j.o = d
d.w = f
d.o = a
d.s = h
d.u = j
f.q = d
f.v = d
f.z = d
f.t = d
f.w = h
f.p = j
f.x = j
e.p = j
e.w = h
e.o = h
e.x = f
assert f.q.o.o.x.p.v.w.txt == " | h" | class A:
def __init__(self, txt: str):
self.o: G = None
self.p: C = None
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.w: G = None
self.q: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.o: G = None
self.t: A = None
self.y: B = None
self.r: F = None
self.w: E = None
self.q: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: G = None
self.v: G = None
self.o: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: F = None
self.o: A = None
self.s: C = None
self.u: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: E = None
self.v: E = None
self.w: C = None
self.z: E = None
self.p: D = None
self.t: E = None
self.x: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: D = None
self.w: C = None
self.x: F = None
self.o: C = None
self.txt = txt
a = A("a")
i = B("i")
h = C("h")
j = D("j")
d = E("d")
f = F("f")
e = G("e")
a.o = e
a.p = h
a.x = j
i.r = a
i.w = e
i.q = h
i.x = h
h.p = a
h.t = a
h.q = a
h.o = e
h.y = i
h.r = f
h.w = d
j.y = e
j.v = e
j.o = d
d.w = f
d.o = a
d.s = h
d.u = j
f.q = d
f.v = d
f.z = d
f.t = d
f.w = h
f.p = j
f.x = j
e.p = j
e.w = h
e.o = h
e.x = f
assert f.q.o.o.x.p.v.w.txt == "h" | f | d | a | e | f | j | e | h | 7 | 23 | 7 | 7 | 2 |
5,521 | class A:
def __init__(self, txt: str):
self.x: G = None
self.o: C = None
self.z: C = None
self.t: C = None
self.r: G = None
self.u: B = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.y: C = None
self.p: G = None
self.u: A = None
self.q: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: D = None
self.s: G = None
self.w: E = None
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.p: C = None
self.u: A = None
self.o: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.v: F = None
self.o: C = None
self.p: B = None
self.w: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: G = None
self.t: B = None
self.s: A = None
self.v: C = None
self.z: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: F = None
self.q: A = None
self.txt = txt
f = A("f")
d = B("d")
j = C("j")
h = D("h")
a = E("a")
c = F("c")
i = G("i")
f.x = i
f.r = i
f.o = j
f.z = j
f.t = j
f.u = d
f.y = a
d.t = j
d.y = j
d.p = i
d.u = f
d.q = c
j.u = h
j.s = i
j.w = a
j.z = f
h.r = j
h.p = j
h.u = f
h.o = d
a.x = h
a.w = h
a.v = c
a.o = j
a.p = d
c.o = i
c.t = d
c.s = f
c.v = j
c.z = h
i.s = c
i.q = f
assert f.y.o.z.u.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.x: G = None
self.o: C = None
self.z: C = None
self.t: C = None
self.r: G = None
self.u: B = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.y: C = None
self.p: G = None
self.u: A = None
self.q: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: D = None
self.s: G = None
self.w: E = None
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.p: C = None
self.u: A = None
self.o: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.v: F = None
self.o: C = None
self.p: B = None
self.w: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: G = None
self.t: B = None
self.s: A = None
self.v: C = None
self.z: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: F = None
self.q: A = None
self.txt = txt
f = A("f")
d = B("d")
j = C("j")
h = D("h")
a = E("a")
c = F("c")
i = G("i")
f.x = i
f.r = i
f.o = j
f.z = j
f.t = j
f.u = d
f.y = a
d.t = j
d.y = j
d.p = i
d.u = f
d.q = c
j.u = h
j.s = i
j.w = a
j.z = f
h.r = j
h.p = j
h.u = f
h.o = d
a.x = h
a.w = h
a.v = c
a.o = j
a.p = d
c.o = i
c.t = d
c.s = f
c.v = j
c.z = h
i.s = c
i.q = f
assert f.y.o.z.u.t.txt == "j" | f | a | j | f | d | j | x | x | 7 | 26 | 7 | 5 | 2 |
5,522 | class A:
def __init__(self, txt: str):
self.v: D = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: E = None
self.p: D = None
self.q: E = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: G = None
self.z: G = None
self.p: E = None
self.v: E = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.w: E = None
self.t: F = None
self.y: E = None
self.p: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.w: C = None
self.y: G = None
self.z: E = None
self.t: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
c = A("c")
f = B("f")
a = C("a")
d = D("d")
e = E("e")
g = F("g")
h = G("h")
c.v = d
c.x = a
f.v = e
f.q = e
f.z = e
f.p = d
a.y = h
a.z = h
a.p = e
a.v = e
a.w = e
d.r = f
d.w = e
d.y = e
d.t = g
d.p = g
e.y = d
e.x = g
g.r = f
g.w = a
g.y = h
g.z = e
g.t = e
h.y = c
h.z = c
assert g.z.x.r.v.x.y.txt == " | h" | class A:
def __init__(self, txt: str):
self.v: D = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: E = None
self.p: D = None
self.q: E = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: G = None
self.z: G = None
self.p: E = None
self.v: E = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: B = None
self.w: E = None
self.t: F = None
self.y: E = None
self.p: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.x: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.w: C = None
self.y: G = None
self.z: E = None
self.t: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
c = A("c")
f = B("f")
a = C("a")
d = D("d")
e = E("e")
g = F("g")
h = G("h")
c.v = d
c.x = a
f.v = e
f.q = e
f.z = e
f.p = d
a.y = h
a.z = h
a.p = e
a.v = e
a.w = e
d.r = f
d.w = e
d.y = e
d.t = g
d.p = g
e.y = d
e.x = g
g.r = f
g.w = a
g.y = h
g.z = e
g.t = e
h.y = c
h.z = c
assert g.z.x.r.v.x.y.txt == "h" | g | e | g | f | e | g | h | x | 7 | 16 | 7 | 6 | 3 |
5,523 | class A:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.r: E = None
self.u: G = None
self.p: E = None
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.t: A = None
self.x: G = None
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: C = None
self.p: A = None
self.v: E = None
self.o: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.r: C = None
self.x: F = None
self.w: G = None
self.u: A = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.v: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: D = None
self.s: A = None
self.z: E = None
self.x: F = None
self.w: A = None
self.u: A = None
self.q: E = None
self.txt = txt
j = A("j")
f = B("f")
i = C("i")
g = D("g")
a = E("a")
e = F("e")
d = G("d")
j.z = e
f.s = e
f.o = e
f.r = a
f.p = a
f.u = d
i.p = j
i.t = j
i.u = j
i.x = d
g.x = i
g.p = j
g.v = a
g.o = a
a.z = j
a.u = j
a.r = i
a.x = e
a.w = d
a.t = g
e.s = j
e.v = f
d.p = g
d.s = j
d.w = j
d.u = j
d.z = a
d.q = a
d.x = e
assert e.s.z.s.z.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.r: E = None
self.u: G = None
self.p: E = None
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.t: A = None
self.x: G = None
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: C = None
self.p: A = None
self.v: E = None
self.o: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.r: C = None
self.x: F = None
self.w: G = None
self.u: A = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.v: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: D = None
self.s: A = None
self.z: E = None
self.x: F = None
self.w: A = None
self.u: A = None
self.q: E = None
self.txt = txt
j = A("j")
f = B("f")
i = C("i")
g = D("g")
a = E("a")
e = F("e")
d = G("d")
j.z = e
f.s = e
f.o = e
f.r = a
f.p = a
f.u = d
i.p = j
i.t = j
i.u = j
i.x = d
g.x = i
g.p = j
g.v = a
g.o = a
a.z = j
a.u = j
a.r = i
a.x = e
a.w = d
a.t = g
e.s = j
e.v = f
d.p = g
d.s = j
d.w = j
d.u = j
d.z = a
d.q = a
d.x = e
assert e.s.z.s.z.s.txt == "j" | e | j | e | j | e | j | x | x | 7 | 20 | 7 | 5 | 4 |
5,524 | class A:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: E = None
self.t: B = None
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: G = None
self.t: F = None
self.u: F = None
self.x: C = None
self.z: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.w: G = None
self.p: A = None
self.s: F = None
self.v: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.y: B = None
self.x: C = None
self.t: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.o: E = None
self.y: C = None
self.q: C = None
self.r: C = None
self.txt = txt
f = A("f")
i = B("i")
d = C("d")
c = D("c")
e = E("e")
g = F("g")
b = G("b")
f.p = e
i.t = d
d.q = e
d.z = e
d.t = i
c.y = b
c.z = b
c.t = g
c.u = g
c.x = d
e.x = i
e.w = b
e.p = f
e.s = g
e.v = d
g.r = c
g.y = i
g.x = d
g.t = e
b.z = e
b.o = e
b.y = d
b.q = d
b.r = d
assert c.z.q.t.t.t.txt == " | i" | class A:
def __init__(self, txt: str):
self.p: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: E = None
self.t: B = None
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: G = None
self.t: F = None
self.u: F = None
self.x: C = None
self.z: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.w: G = None
self.p: A = None
self.s: F = None
self.v: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.y: B = None
self.x: C = None
self.t: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: E = None
self.o: E = None
self.y: C = None
self.q: C = None
self.r: C = None
self.txt = txt
f = A("f")
i = B("i")
d = C("d")
c = D("c")
e = E("e")
g = F("g")
b = G("b")
f.p = e
i.t = d
d.q = e
d.z = e
d.t = i
c.y = b
c.z = b
c.t = g
c.u = g
c.x = d
e.x = i
e.w = b
e.p = f
e.s = g
e.v = d
g.r = c
g.y = i
g.x = d
g.t = e
b.z = e
b.o = e
b.y = d
b.q = d
b.r = d
assert c.z.q.t.t.t.txt == "i" | c | b | d | i | d | i | x | x | 7 | 18 | 7 | 5 | 2 |
5,525 | class A:
def __init__(self, txt: str):
self.y: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.z: B = None
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: C = None
self.z: F = None
self.s: G = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: E = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
c = A("c")
g = B("g")
i = C("i")
j = D("j")
e = E("e")
a = F("a")
b = G("b")
c.y = b
g.x = i
g.y = c
i.x = g
i.z = g
i.o = g
j.q = c
e.o = i
e.z = a
e.s = b
e.x = g
a.p = e
a.u = e
b.v = c
assert j.q.y.v.y.v.txt == " | c" | class A:
def __init__(self, txt: str):
self.y: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.z: B = None
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: C = None
self.z: F = None
self.s: G = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: E = None
self.u: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
c = A("c")
g = B("g")
i = C("i")
j = D("j")
e = E("e")
a = F("a")
b = G("b")
c.y = b
g.x = i
g.y = c
i.x = g
i.z = g
i.o = g
j.q = c
e.o = i
e.z = a
e.s = b
e.x = g
a.p = e
a.u = e
b.v = c
assert j.q.y.v.y.v.txt == "c" | j | c | b | c | b | c | x | x | 7 | 11 | 7 | 5 | 3 |
5,526 | class A:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.u: A = None
self.v: G = None
self.x: E = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.u: E = None
self.z: E = None
self.s: G = None
self.t: F = None
self.v: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.x: E = None
self.q: B = None
self.p: E = None
self.o: A = None
self.v: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.s: E = None
self.t: F = None
self.q: E = None
self.u: E = None
self.p: F = None
self.txt = txt
a = A("a")
c = B("c")
b = C("b")
d = D("d")
e = E("e")
h = F("h")
j = G("j")
a.q = e
c.r = b
c.p = h
b.p = h
b.u = a
b.v = j
b.x = e
b.t = e
d.w = c
d.u = e
d.z = e
d.s = j
d.v = j
d.t = h
e.u = c
h.w = c
h.q = c
h.x = e
h.p = e
h.o = a
h.v = a
j.o = c
j.s = e
j.q = e
j.u = e
j.t = h
j.p = h
assert b.u.q.u.r.v.t.v.txt == " | a" | class A:
def __init__(self, txt: str):
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.u: A = None
self.v: G = None
self.x: E = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.u: E = None
self.z: E = None
self.s: G = None
self.t: F = None
self.v: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.x: E = None
self.q: B = None
self.p: E = None
self.o: A = None
self.v: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: B = None
self.s: E = None
self.t: F = None
self.q: E = None
self.u: E = None
self.p: F = None
self.txt = txt
a = A("a")
c = B("c")
b = C("b")
d = D("d")
e = E("e")
h = F("h")
j = G("j")
a.q = e
c.r = b
c.p = h
b.p = h
b.u = a
b.v = j
b.x = e
b.t = e
d.w = c
d.u = e
d.z = e
d.s = j
d.v = j
d.t = h
e.u = c
h.w = c
h.q = c
h.x = e
h.p = e
h.o = a
h.v = a
j.o = c
j.s = e
j.q = e
j.u = e
j.t = h
j.p = h
assert b.u.q.u.r.v.t.v.txt == "a" | b | a | e | c | b | j | h | a | 7 | 18 | 7 | 7 | 2 |
5,527 | class A:
def __init__(self, txt: str):
self.r: G = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.q: E = None
self.v: D = None
self.r: D = None
self.t: E = None
self.w: E = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.t: B = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.y: F = None
self.p: C = None
self.s: G = None
self.z: G = None
self.r: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: F = None
self.w: C = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: E = None
self.s: B = None
self.w: G = None
self.u: E = None
self.z: E = None
self.x: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: D = None
self.v: C = None
self.y: B = None
self.u: E = None
self.txt = txt
a = A("a")
i = B("i")
b = C("b")
f = D("f")
c = E("c")
g = F("g")
d = G("d")
a.r = d
a.y = g
i.x = c
i.q = c
i.t = c
i.w = c
i.v = f
i.r = f
i.s = d
b.x = c
b.t = i
b.z = f
f.u = b
f.p = b
f.y = g
f.s = d
f.z = d
f.r = d
c.t = g
c.w = b
c.s = i
g.t = c
g.u = c
g.z = c
g.s = i
g.w = d
g.x = d
d.x = f
d.v = b
d.y = i
d.u = c
assert f.p.z.u.z.r.v.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: G = None
self.y: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.q: E = None
self.v: D = None
self.r: D = None
self.t: E = None
self.w: E = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.t: B = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.y: F = None
self.p: C = None
self.s: G = None
self.z: G = None
self.r: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: F = None
self.w: C = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: E = None
self.s: B = None
self.w: G = None
self.u: E = None
self.z: E = None
self.x: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: D = None
self.v: C = None
self.y: B = None
self.u: E = None
self.txt = txt
a = A("a")
i = B("i")
b = C("b")
f = D("f")
c = E("c")
g = F("g")
d = G("d")
a.r = d
a.y = g
i.x = c
i.q = c
i.t = c
i.w = c
i.v = f
i.r = f
i.s = d
b.x = c
b.t = i
b.z = f
f.u = b
f.p = b
f.y = g
f.s = d
f.z = d
f.r = d
c.t = g
c.w = b
c.s = i
g.t = c
g.u = c
g.z = c
g.s = i
g.w = d
g.x = d
d.x = f
d.v = b
d.y = i
d.u = c
assert f.p.z.u.z.r.v.txt == "b" | f | b | f | b | f | d | b | x | 7 | 21 | 7 | 6 | 4 |
5,528 | class A:
def __init__(self, txt: str):
self.y: C = None
self.u: C = None
self.r: D = None
self.p: E = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: G = None
self.o: D = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.q: G = None
self.y: E = None
self.w: D = None
self.r: B = None
self.v: D = None
self.s: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.q: B = None
self.t: A = None
self.y: E = None
self.v: A = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: G = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: E = None
self.r: B = None
self.t: B = None
self.w: E = None
self.q: C = None
self.txt = txt
a = A("a")
b = B("b")
h = C("h")
c = D("c")
j = E("j")
f = F("f")
e = G("e")
a.y = h
a.u = h
a.r = c
a.q = c
a.p = j
b.w = e
b.o = c
b.t = c
h.t = b
h.r = b
h.q = e
h.y = j
h.w = c
h.v = c
h.s = c
c.z = h
c.q = b
c.t = a
c.v = a
c.w = a
c.y = j
j.u = b
j.w = b
f.y = e
f.w = b
e.s = j
e.w = j
e.r = b
e.t = b
e.q = h
assert e.w.u.o.t.u.v.txt == " | c" | class A:
def __init__(self, txt: str):
self.y: C = None
self.u: C = None
self.r: D = None
self.p: E = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: G = None
self.o: D = None
self.t: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.q: G = None
self.y: E = None
self.w: D = None
self.r: B = None
self.v: D = None
self.s: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.q: B = None
self.t: A = None
self.y: E = None
self.v: A = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: G = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: E = None
self.r: B = None
self.t: B = None
self.w: E = None
self.q: C = None
self.txt = txt
a = A("a")
b = B("b")
h = C("h")
c = D("c")
j = E("j")
f = F("f")
e = G("e")
a.y = h
a.u = h
a.r = c
a.q = c
a.p = j
b.w = e
b.o = c
b.t = c
h.t = b
h.r = b
h.q = e
h.y = j
h.w = c
h.v = c
h.s = c
c.z = h
c.q = b
c.t = a
c.v = a
c.w = a
c.y = j
j.u = b
j.w = b
f.y = e
f.w = b
e.s = j
e.w = j
e.r = b
e.t = b
e.q = h
assert e.w.u.o.t.u.v.txt == "c" | e | j | b | c | a | h | c | x | 7 | 19 | 7 | 6 | 1 |
5,529 | class A:
def __init__(self, txt: str):
self.t: F = None
self.u: F = None
self.z: E = None
self.w: D = None
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.z: D = None
self.w: F = None
self.p: D = None
self.v: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: E = None
self.r: C = None
self.o: F = None
self.z: E = None
self.q: C = None
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: G = None
self.q: A = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: E = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: B = None
self.t: C = None
self.x: C = None
self.txt = txt
g = A("g")
b = B("b")
h = C("h")
i = D("i")
d = E("d")
j = F("j")
f = G("f")
g.t = j
g.u = j
g.q = j
g.z = d
g.w = i
b.s = g
b.z = i
b.p = i
b.w = j
b.v = j
h.q = i
i.u = d
i.z = d
i.r = h
i.q = h
i.o = j
i.y = f
d.w = f
d.q = g
d.s = b
j.v = d
j.y = g
f.y = b
f.t = h
f.x = h
assert d.s.p.y.x.q.txt == " | i" | class A:
def __init__(self, txt: str):
self.t: F = None
self.u: F = None
self.z: E = None
self.w: D = None
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.z: D = None
self.w: F = None
self.p: D = None
self.v: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: E = None
self.r: C = None
self.o: F = None
self.z: E = None
self.q: C = None
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: G = None
self.q: A = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: E = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: B = None
self.t: C = None
self.x: C = None
self.txt = txt
g = A("g")
b = B("b")
h = C("h")
i = D("i")
d = E("d")
j = F("j")
f = G("f")
g.t = j
g.u = j
g.q = j
g.z = d
g.w = i
b.s = g
b.z = i
b.p = i
b.w = j
b.v = j
h.q = i
i.u = d
i.z = d
i.r = h
i.q = h
i.o = j
i.y = f
d.w = f
d.q = g
d.s = b
j.v = d
j.y = g
f.y = b
f.t = h
f.x = h
assert d.s.p.y.x.q.txt == "i" | d | b | i | f | h | i | x | x | 7 | 18 | 7 | 5 | 1 |
5,530 | class A:
def __init__(self, txt: str):
self.p: B = None
self.y: E = None
self.t: E = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.u: G = None
self.o: F = None
self.s: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.z: F = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: G = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: A = None
self.v: D = None
self.u: E = None
self.w: D = None
self.y: A = None
self.t: F = None
self.txt = txt
c = A("c")
f = B("f")
e = C("e")
i = D("i")
b = E("b")
a = F("a")
h = G("h")
c.p = f
c.v = f
c.y = b
c.t = b
f.r = c
f.u = i
e.q = f
e.u = h
e.s = h
e.o = a
i.r = e
i.z = a
i.o = a
b.s = h
b.o = e
a.r = f
h.r = c
h.y = c
h.v = i
h.w = i
h.u = b
h.t = a
assert f.u.r.q.r.t.s.w.txt == " | i" | class A:
def __init__(self, txt: str):
self.p: B = None
self.y: E = None
self.t: E = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.u: G = None
self.o: F = None
self.s: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.z: F = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: G = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: A = None
self.v: D = None
self.u: E = None
self.w: D = None
self.y: A = None
self.t: F = None
self.txt = txt
c = A("c")
f = B("f")
e = C("e")
i = D("i")
b = E("b")
a = F("a")
h = G("h")
c.p = f
c.v = f
c.y = b
c.t = b
f.r = c
f.u = i
e.q = f
e.u = h
e.s = h
e.o = a
i.r = e
i.z = a
i.o = a
b.s = h
b.o = e
a.r = f
h.r = c
h.y = c
h.v = i
h.w = i
h.u = b
h.t = a
assert f.u.r.q.r.t.s.w.txt == "i" | f | i | e | f | c | b | h | i | 7 | 16 | 7 | 7 | 2 |
5,531 | class A:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: D = None
self.z: C = None
self.p: F = None
self.q: C = None
self.t: C = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.y: D = None
self.t: D = None
self.o: F = 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.t: F = None
self.u: C = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: D = None
self.t: C = None
self.u: F = None
self.y: F = None
self.r: F = None
self.txt = txt
h = A("h")
d = B("d")
a = C("a")
i = D("i")
e = E("e")
b = F("b")
j = G("j")
h.p = j
d.y = i
d.x = i
d.z = a
d.q = a
d.t = a
d.p = b
a.s = i
a.y = i
a.t = i
a.o = b
i.r = d
e.t = b
e.u = a
e.x = d
b.u = h
b.s = h
j.o = i
j.t = a
j.u = b
j.y = b
j.r = b
assert b.u.p.t.o.txt == " | b" | class A:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: D = None
self.z: C = None
self.p: F = None
self.q: C = None
self.t: C = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: D = None
self.y: D = None
self.t: D = None
self.o: F = 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.t: F = None
self.u: C = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: D = None
self.t: C = None
self.u: F = None
self.y: F = None
self.r: F = None
self.txt = txt
h = A("h")
d = B("d")
a = C("a")
i = D("i")
e = E("e")
b = F("b")
j = G("j")
h.p = j
d.y = i
d.x = i
d.z = a
d.q = a
d.t = a
d.p = b
a.s = i
a.y = i
a.t = i
a.o = b
i.r = d
e.t = b
e.u = a
e.x = d
b.u = h
b.s = h
j.o = i
j.t = a
j.u = b
j.y = b
j.r = b
assert b.u.p.t.o.txt == "b" | b | h | j | a | b | x | x | x | 7 | 14 | 7 | 4 | 1 |
5,532 | class A:
def __init__(self, txt: str):
self.p: G = None
self.y: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.y: E = None
self.u: F = None
self.w: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.y: F = None
self.o: D = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.w: F = None
self.p: F = None
self.x: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.p: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.u: D = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: A = None
self.v: D = None
self.w: E = None
self.q: C = None
self.s: D = None
self.u: F = None
self.x: B = None
self.txt = txt
j = A("j")
b = B("b")
c = C("c")
i = D("i")
h = E("h")
a = F("a")
f = G("f")
j.p = f
j.y = f
b.s = i
b.y = h
b.u = a
b.w = f
c.t = b
c.y = a
c.o = i
c.q = h
i.s = b
i.w = a
i.p = a
i.x = a
h.q = a
h.p = j
a.p = i
a.u = i
a.s = j
f.o = j
f.v = i
f.s = i
f.w = h
f.q = c
f.u = a
f.x = b
assert f.v.s.u.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.p: G = None
self.y: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.y: E = None
self.u: F = None
self.w: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.y: F = None
self.o: D = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.w: F = None
self.p: F = None
self.x: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.p: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.u: D = None
self.s: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: A = None
self.v: D = None
self.w: E = None
self.q: C = None
self.s: D = None
self.u: F = None
self.x: B = None
self.txt = txt
j = A("j")
b = B("b")
c = C("c")
i = D("i")
h = E("h")
a = F("a")
f = G("f")
j.p = f
j.y = f
b.s = i
b.y = h
b.u = a
b.w = f
c.t = b
c.y = a
c.o = i
c.q = h
i.s = b
i.w = a
i.p = a
i.x = a
h.q = a
h.p = j
a.p = i
a.u = i
a.s = j
f.o = j
f.v = i
f.s = i
f.w = h
f.q = c
f.u = a
f.x = b
assert f.v.s.u.s.txt == "j" | f | i | b | a | j | x | x | x | 7 | 21 | 7 | 4 | 0 |
5,533 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.w: E = None
self.s: C = None
self.v: E = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.v: G = None
self.q: E = None
self.p: G = None
self.o: B = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: E = None
self.x: B = None
self.q: A = None
self.w: B = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.z: D = None
self.t: C = None
self.v: F = None
self.w: B = None
self.o: G = None
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: E = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: D = None
self.r: B = None
self.u: E = None
self.q: C = None
self.p: C = None
self.txt = txt
g = A("g")
i = B("i")
c = C("c")
b = D("b")
j = E("j")
d = F("d")
f = G("f")
g.p = i
i.z = j
i.w = j
i.v = j
i.s = c
i.o = g
c.x = i
c.o = i
c.u = i
c.v = f
c.p = f
c.q = j
b.v = j
b.x = i
b.w = i
b.u = i
b.q = g
j.r = i
j.w = i
j.z = b
j.p = b
j.t = c
j.v = d
j.o = f
d.t = j
d.y = g
f.x = b
f.r = i
f.u = j
f.q = c
f.p = c
assert g.p.s.p.txt == " | f" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.w: E = None
self.s: C = None
self.v: E = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.v: G = None
self.q: E = None
self.p: G = None
self.o: B = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: E = None
self.x: B = None
self.q: A = None
self.w: B = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.z: D = None
self.t: C = None
self.v: F = None
self.w: B = None
self.o: G = None
self.p: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: E = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: D = None
self.r: B = None
self.u: E = None
self.q: C = None
self.p: C = None
self.txt = txt
g = A("g")
i = B("i")
c = C("c")
b = D("b")
j = E("j")
d = F("d")
f = G("f")
g.p = i
i.z = j
i.w = j
i.v = j
i.s = c
i.o = g
c.x = i
c.o = i
c.u = i
c.v = f
c.p = f
c.q = j
b.v = j
b.x = i
b.w = i
b.u = i
b.q = g
j.r = i
j.w = i
j.z = b
j.p = b
j.t = c
j.v = d
j.o = f
d.t = j
d.y = g
f.x = b
f.r = i
f.u = j
f.q = c
f.p = c
assert g.p.s.p.txt == "f" | g | i | c | f | x | x | x | x | 7 | 21 | 7 | 3 | 0 |
5,534 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.p: F = None
self.v: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: F = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: E = None
self.p: C = None
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: G = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
g = A("g")
j = B("j")
a = C("a")
e = D("e")
b = E("b")
d = F("d")
i = G("i")
g.p = j
j.s = i
j.v = i
j.p = d
a.t = d
a.u = e
e.q = b
e.p = a
e.s = d
b.y = d
d.x = i
d.z = g
i.u = g
assert d.x.u.p.p.txt == " | d" | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: G = None
self.p: F = None
self.v: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: F = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: E = None
self.p: C = None
self.s: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: G = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
g = A("g")
j = B("j")
a = C("a")
e = D("e")
b = E("b")
d = F("d")
i = G("i")
g.p = j
j.s = i
j.v = i
j.p = d
a.t = d
a.u = e
e.q = b
e.p = a
e.s = d
b.y = d
d.x = i
d.z = g
i.u = g
assert d.x.u.p.p.txt == "d" | d | i | g | j | d | x | x | x | 7 | 12 | 7 | 4 | 1 |
5,535 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.o: E = None
self.q: A = 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.q: B = None
self.x: C = None
self.z: D = None
self.s: A = None
self.y: F = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.p: B = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
h = A("h")
b = B("b")
e = C("e")
j = D("j")
c = E("c")
f = F("f")
a = G("a")
h.q = b
b.w = a
e.x = h
e.q = h
e.o = c
j.s = c
c.q = b
c.o = b
c.x = e
c.z = j
c.s = h
c.y = f
f.o = j
f.p = b
f.w = b
a.p = b
assert c.s.q.w.p.w.p.txt == " | b" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.o: E = None
self.q: A = 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.q: B = None
self.x: C = None
self.z: D = None
self.s: A = None
self.y: F = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.p: B = None
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
h = A("h")
b = B("b")
e = C("e")
j = D("j")
c = E("c")
f = F("f")
a = G("a")
h.q = b
b.w = a
e.x = h
e.q = h
e.o = c
j.s = c
c.q = b
c.o = b
c.x = e
c.z = j
c.s = h
c.y = f
f.o = j
f.p = b
f.w = b
a.p = b
assert c.s.q.w.p.w.p.txt == "b" | c | h | b | a | b | a | b | x | 7 | 13 | 7 | 6 | 3 |
5,536 | class A:
def __init__(self, txt: str):
self.z: E = None
self.s: F = None
self.v: B = 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.u: E = None
self.o: A = None
self.q: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.q: C = None
self.o: E = None
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.r: B = None
self.u: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.s: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: D = None
self.z: A = None
self.v: E = None
self.w: D = None
self.p: D = None
self.u: E = None
self.txt = txt
e = A("e")
j = B("j")
b = C("b")
c = D("c")
h = E("h")
d = F("d")
g = G("g")
e.z = h
e.s = d
e.v = j
j.x = g
b.u = h
b.o = e
b.q = d
c.v = b
c.q = b
c.o = h
c.z = d
h.v = d
h.r = j
h.u = j
d.q = g
d.s = j
g.q = c
g.w = c
g.p = c
g.z = e
g.v = h
g.u = h
assert e.v.x.v.v.s.x.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: E = None
self.s: F = None
self.v: B = 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.u: E = None
self.o: A = None
self.q: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.q: C = None
self.o: E = None
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: F = None
self.r: B = None
self.u: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.s: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: D = None
self.z: A = None
self.v: E = None
self.w: D = None
self.p: D = None
self.u: E = None
self.txt = txt
e = A("e")
j = B("j")
b = C("b")
c = D("c")
h = E("h")
d = F("d")
g = G("g")
e.z = h
e.s = d
e.v = j
j.x = g
b.u = h
b.o = e
b.q = d
c.v = b
c.q = b
c.o = h
c.z = d
h.v = d
h.r = j
h.u = j
d.q = g
d.s = j
g.q = c
g.w = c
g.p = c
g.z = e
g.v = h
g.u = h
assert e.v.x.v.v.s.x.txt == "g" | e | j | g | h | d | j | g | x | 7 | 17 | 7 | 6 | 2 |
5,537 | class A:
def __init__(self, txt: str):
self.t: G = None
self.w: F = None
self.r: B = None
self.y: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.r: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: F = None
self.u: G = None
self.z: E = None
self.x: E = None
self.w: A = None
self.s: G = None
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.r: B = None
self.p: G = None
self.x: C = None
self.y: B = None
self.q: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: C = None
self.u: A = None
self.z: E = None
self.x: F = None
self.q: B = None
self.txt = txt
f = A("f")
e = B("e")
c = C("c")
h = D("h")
a = E("a")
b = F("b")
j = G("j")
f.t = j
f.w = b
f.r = e
f.y = c
f.u = c
e.p = c
e.r = b
c.w = f
c.p = h
h.t = b
h.u = j
h.s = j
h.z = a
h.x = a
h.w = f
h.p = e
a.z = e
a.r = e
a.y = e
a.p = j
a.q = j
a.x = c
b.r = a
j.w = c
j.u = f
j.z = a
j.x = b
j.q = e
assert h.w.t.q.txt == " | e" | class A:
def __init__(self, txt: str):
self.t: G = None
self.w: F = None
self.r: B = None
self.y: C = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.r: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: F = None
self.u: G = None
self.z: E = None
self.x: E = None
self.w: A = None
self.s: G = None
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.r: B = None
self.p: G = None
self.x: C = None
self.y: B = None
self.q: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: C = None
self.u: A = None
self.z: E = None
self.x: F = None
self.q: B = None
self.txt = txt
f = A("f")
e = B("e")
c = C("c")
h = D("h")
a = E("a")
b = F("b")
j = G("j")
f.t = j
f.w = b
f.r = e
f.y = c
f.u = c
e.p = c
e.r = b
c.w = f
c.p = h
h.t = b
h.u = j
h.s = j
h.z = a
h.x = a
h.w = f
h.p = e
a.z = e
a.r = e
a.y = e
a.p = j
a.q = j
a.x = c
b.r = a
j.w = c
j.u = f
j.z = a
j.x = b
j.q = e
assert h.w.t.q.txt == "e" | h | f | j | e | x | x | x | x | 7 | 22 | 7 | 3 | 0 |
5,538 | class A:
def __init__(self, txt: str):
self.v: G = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.w: G = None
self.u: F = None
self.o: F = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: F = None
self.v: G = None
self.q: F = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.o: A = None
self.t: B = None
self.u: C = None
self.s: A = None
self.v: G = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.v: B = None
self.p: C = None
self.u: D = None
self.t: E = None
self.y: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: F = None
self.p: B = None
self.x: B = None
self.txt = txt
c = A("c")
b = B("b")
e = C("e")
h = D("h")
f = E("f")
a = F("a")
d = G("d")
c.v = d
c.y = h
b.z = a
b.u = a
b.o = a
b.w = d
b.v = h
e.p = h
h.x = a
h.q = a
h.v = d
h.y = b
f.q = a
f.o = c
f.s = c
f.t = b
f.w = b
f.u = e
f.v = d
a.q = c
a.v = b
a.p = e
a.u = h
a.t = f
a.y = d
d.r = a
d.p = b
d.x = b
assert a.q.v.x.txt == " | b" | class A:
def __init__(self, txt: str):
self.v: G = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.w: G = None
self.u: F = None
self.o: F = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: F = None
self.v: G = None
self.q: F = None
self.y: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.o: A = None
self.t: B = None
self.u: C = None
self.s: A = None
self.v: G = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.v: B = None
self.p: C = None
self.u: D = None
self.t: E = None
self.y: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: F = None
self.p: B = None
self.x: B = None
self.txt = txt
c = A("c")
b = B("b")
e = C("e")
h = D("h")
f = E("f")
a = F("a")
d = G("d")
c.v = d
c.y = h
b.z = a
b.u = a
b.o = a
b.w = d
b.v = h
e.p = h
h.x = a
h.q = a
h.v = d
h.y = b
f.q = a
f.o = c
f.s = c
f.t = b
f.w = b
f.u = e
f.v = d
a.q = c
a.v = b
a.p = e
a.u = h
a.t = f
a.y = d
d.r = a
d.p = b
d.x = b
assert a.q.v.x.txt == "b" | a | c | d | b | x | x | x | x | 7 | 22 | 7 | 3 | 0 |
5,539 | class A:
def __init__(self, txt: str):
self.x: F = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.p: C = None
self.q: A = None
self.y: C = None
self.w: F = None
self.z: G = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: G = 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.w: B = None
self.q: C = None
self.s: B = None
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: E = None
self.s: D = None
self.z: A = None
self.p: D = None
self.txt = txt
h = A("h")
b = B("b")
e = C("e")
i = D("i")
f = E("f")
a = F("a")
c = G("c")
h.x = a
h.q = e
b.x = i
b.p = e
b.y = e
b.s = e
b.q = h
b.w = a
b.z = c
e.s = b
i.q = c
f.q = a
a.w = b
a.s = b
a.q = e
a.p = h
c.q = f
c.s = i
c.p = i
c.z = h
assert a.p.q.s.s.s.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.x: F = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.p: C = None
self.q: A = None
self.y: C = None
self.w: F = None
self.z: G = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: G = 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.w: B = None
self.q: C = None
self.s: B = None
self.p: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: E = None
self.s: D = None
self.z: A = None
self.p: D = None
self.txt = txt
h = A("h")
b = B("b")
e = C("e")
i = D("i")
f = E("f")
a = F("a")
c = G("c")
h.x = a
h.q = e
b.x = i
b.p = e
b.y = e
b.s = e
b.q = h
b.w = a
b.z = c
e.s = b
i.q = c
f.q = a
a.w = b
a.s = b
a.q = e
a.p = h
c.q = f
c.s = i
c.p = i
c.z = h
assert a.p.q.s.s.s.w.txt == "a" | a | h | e | b | e | b | a | x | 7 | 16 | 7 | 6 | 3 |
5,540 | class A:
def __init__(self, txt: str):
self.r: B = None
self.y: E = None
self.p: B = None
self.u: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: E = None
self.o: D = None
self.u: C = None
self.r: C = None
self.s: G = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.w: B = None
self.o: A = None
self.p: A = None
self.z: B = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.s: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.z: G = None
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.y: B = None
self.txt = txt
a = A("a")
e = B("e")
f = C("f")
d = D("d")
b = E("b")
h = F("h")
i = G("i")
a.r = e
a.p = e
a.u = e
a.v = e
a.y = b
e.w = b
e.o = d
e.u = f
e.r = f
e.s = i
e.q = a
f.t = a
f.v = a
f.o = a
f.p = a
f.w = e
f.z = e
f.y = h
d.r = f
d.s = a
b.p = d
b.z = i
b.t = i
h.x = f
i.t = b
i.y = e
assert h.x.y.x.z.o.r.txt == " | f" | class A:
def __init__(self, txt: str):
self.r: B = None
self.y: E = None
self.p: B = None
self.u: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: E = None
self.o: D = None
self.u: C = None
self.r: C = None
self.s: G = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.w: B = None
self.o: A = None
self.p: A = None
self.z: B = None
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.s: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.z: G = None
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.y: B = None
self.txt = txt
a = A("a")
e = B("e")
f = C("f")
d = D("d")
b = E("b")
h = F("h")
i = G("i")
a.r = e
a.p = e
a.u = e
a.v = e
a.y = b
e.w = b
e.o = d
e.u = f
e.r = f
e.s = i
e.q = a
f.t = a
f.v = a
f.o = a
f.p = a
f.w = e
f.z = e
f.y = h
d.r = f
d.s = a
b.p = d
b.z = i
b.t = i
h.x = f
i.t = b
i.y = e
assert h.x.y.x.z.o.r.txt == "f" | h | f | h | f | e | d | f | x | 7 | 17 | 7 | 6 | 3 |
5,541 | class A:
def __init__(self, txt: str):
self.t: C = None
self.u: B = None
self.r: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: F = None
self.p: D = None
self.z: C = None
self.r: C = None
self.o: G = None
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: G = None
self.t: F = None
self.z: D = None
self.r: A = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: B = None
self.z: E = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
h = A("h")
i = B("i")
e = C("e")
b = D("b")
j = E("j")
g = F("g")
a = G("a")
h.t = e
h.u = i
h.r = g
i.x = g
i.y = g
i.p = b
i.z = e
i.r = e
i.o = a
e.w = a
e.t = g
e.z = b
e.r = h
e.s = i
b.p = a
j.x = b
g.x = i
g.z = j
g.v = j
a.y = e
assert b.p.y.w.y.r.r.x.txt == " | i" | class A:
def __init__(self, txt: str):
self.t: C = None
self.u: B = None
self.r: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: F = None
self.p: D = None
self.z: C = None
self.r: C = None
self.o: G = None
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: G = None
self.t: F = None
self.z: D = None
self.r: A = None
self.s: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: B = None
self.z: E = None
self.v: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
h = A("h")
i = B("i")
e = C("e")
b = D("b")
j = E("j")
g = F("g")
a = G("a")
h.t = e
h.u = i
h.r = g
i.x = g
i.y = g
i.p = b
i.z = e
i.r = e
i.o = a
e.w = a
e.t = g
e.z = b
e.r = h
e.s = i
b.p = a
j.x = b
g.x = i
g.z = j
g.v = j
a.y = e
assert b.p.y.w.y.r.r.x.txt == "i" | b | a | e | a | e | h | g | i | 7 | 17 | 7 | 7 | 2 |
5,542 | class A:
def __init__(self, txt: str):
self.s: G = None
self.z: E = None
self.y: G = None
self.v: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.x: C = None
self.o: C = None
self.q: D = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.u: F = None
self.y: G = None
self.r: B = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.w: C = None
self.t: G = None
self.v: C = None
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.u: D = None
self.y: B = None
self.s: A = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: B = None
self.t: D = None
self.q: D = None
self.z: B = None
self.x: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.w: B = None
self.y: B = None
self.txt = txt
c = A("c")
d = B("d")
h = C("h")
f = D("f")
b = E("b")
g = F("g")
j = G("j")
c.s = j
c.y = j
c.v = j
c.z = b
d.u = b
d.x = h
d.o = h
d.r = h
d.q = f
h.p = b
h.w = b
h.u = g
h.y = j
h.r = d
f.x = c
f.o = d
f.w = h
f.v = h
f.t = j
f.y = j
b.t = d
b.y = d
b.o = d
b.u = f
b.s = c
g.u = d
g.z = d
g.t = f
g.q = f
g.x = f
j.s = f
j.w = d
j.y = d
assert b.y.q.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.s: G = None
self.z: E = None
self.y: G = None
self.v: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.x: C = None
self.o: C = None
self.q: D = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.u: F = None
self.y: G = None
self.r: B = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.o: B = None
self.w: C = None
self.t: G = None
self.v: C = None
self.y: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.u: D = None
self.y: B = None
self.s: A = None
self.o: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: B = None
self.t: D = None
self.q: D = None
self.z: B = None
self.x: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.w: B = None
self.y: B = None
self.txt = txt
c = A("c")
d = B("d")
h = C("h")
f = D("f")
b = E("b")
g = F("g")
j = G("j")
c.s = j
c.y = j
c.v = j
c.z = b
d.u = b
d.x = h
d.o = h
d.r = h
d.q = f
h.p = b
h.w = b
h.u = g
h.y = j
h.r = d
f.x = c
f.o = d
f.w = h
f.v = h
f.t = j
f.y = j
b.t = d
b.y = d
b.o = d
b.u = f
b.s = c
g.u = d
g.z = d
g.t = f
g.q = f
g.x = f
j.s = f
j.w = d
j.y = d
assert b.y.q.t.txt == "j" | b | d | f | j | x | x | x | x | 7 | 20 | 7 | 3 | 0 |
5,543 | class A:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.y: F = None
self.o: E = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.p: E = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.q: F = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: G = None
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: C = None
self.s: F = None
self.r: D = None
self.txt = txt
c = A("c")
g = B("g")
d = C("d")
a = D("a")
e = E("e")
h = F("h")
b = G("b")
c.v = h
g.q = e
g.o = e
g.v = e
g.y = h
d.z = b
d.p = e
d.r = c
a.u = d
a.q = h
a.v = e
e.w = d
h.t = b
h.r = b
b.q = d
b.s = h
b.r = a
assert b.s.t.r.v.w.z.txt == " | b" | class A:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.y: F = None
self.o: E = None
self.v: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.p: E = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.q: F = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: G = None
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: C = None
self.s: F = None
self.r: D = None
self.txt = txt
c = A("c")
g = B("g")
d = C("d")
a = D("a")
e = E("e")
h = F("h")
b = G("b")
c.v = h
g.q = e
g.o = e
g.v = e
g.y = h
d.z = b
d.p = e
d.r = c
a.u = d
a.q = h
a.v = e
e.w = d
h.t = b
h.r = b
b.q = d
b.s = h
b.r = a
assert b.s.t.r.v.w.z.txt == "b" | b | h | b | a | e | d | b | x | 7 | 14 | 7 | 6 | 2 |
5,544 | class A:
def __init__(self, txt: str):
self.p: C = None
self.x: G = None
self.w: G = None
self.v: B = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: G = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.p: A = None
self.w: G = None
self.x: G = None
self.s: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.p: G = None
self.v: E = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.q: G = None
self.r: B = None
self.v: D = None
self.t: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: F = None
self.x: B = None
self.txt = txt
f = A("f")
b = B("b")
a = C("a")
j = D("j")
e = E("e")
c = F("c")
h = G("h")
f.p = a
f.x = h
f.w = h
f.v = b
f.s = j
b.w = h
b.s = h
a.v = b
a.p = f
a.w = h
a.x = h
a.s = c
j.w = f
j.p = h
j.v = e
j.t = e
e.o = b
e.r = b
e.q = h
e.v = j
e.t = c
c.s = j
h.q = c
h.x = b
assert a.v.s.x.w.q.s.p.txt == " | h" | class A:
def __init__(self, txt: str):
self.p: C = None
self.x: G = None
self.w: G = None
self.v: B = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: G = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.p: A = None
self.w: G = None
self.x: G = None
self.s: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.p: G = None
self.v: E = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.q: G = None
self.r: B = None
self.v: D = None
self.t: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: F = None
self.x: B = None
self.txt = txt
f = A("f")
b = B("b")
a = C("a")
j = D("j")
e = E("e")
c = F("c")
h = G("h")
f.p = a
f.x = h
f.w = h
f.v = b
f.s = j
b.w = h
b.s = h
a.v = b
a.p = f
a.w = h
a.x = h
a.s = c
j.w = f
j.p = h
j.v = e
j.t = e
e.o = b
e.r = b
e.q = h
e.v = j
e.t = c
c.s = j
h.q = c
h.x = b
assert a.v.s.x.w.q.s.p.txt == "h" | a | b | h | b | h | c | j | h | 7 | 19 | 7 | 7 | 3 |
5,545 | class A:
def __init__(self, txt: str):
self.q: D = None
self.u: D = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: F = None
self.u: F = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.u: F = None
self.q: B = None
self.t: E = None
self.s: A = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: G = None
self.o: C = None
self.p: F = None
self.x: G = None
self.y: G = None
self.t: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
d = A("d")
c = B("c")
g = C("g")
j = D("j")
a = E("a")
i = F("i")
b = G("b")
d.q = j
d.u = j
d.v = g
c.q = i
c.u = i
c.y = a
g.w = d
j.x = c
j.q = c
j.u = i
j.t = a
j.s = d
j.r = d
a.u = b
a.x = b
a.y = b
a.o = g
a.p = i
a.t = i
i.z = a
b.t = j
assert i.z.o.w.v.w.txt == " | d" | class A:
def __init__(self, txt: str):
self.q: D = None
self.u: D = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: F = None
self.u: F = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.u: F = None
self.q: B = None
self.t: E = None
self.s: A = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: G = None
self.o: C = None
self.p: F = None
self.x: G = None
self.y: G = None
self.t: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
d = A("d")
c = B("c")
g = C("g")
j = D("j")
a = E("a")
i = F("i")
b = G("b")
d.q = j
d.u = j
d.v = g
c.q = i
c.u = i
c.y = a
g.w = d
j.x = c
j.q = c
j.u = i
j.t = a
j.s = d
j.r = d
a.u = b
a.x = b
a.y = b
a.o = g
a.p = i
a.t = i
i.z = a
b.t = j
assert i.z.o.w.v.w.txt == "d" | i | a | g | d | g | d | x | x | 7 | 14 | 7 | 5 | 2 |
5,546 | class A:
def __init__(self, txt: str):
self.y: B = None
self.r: G = None
self.s: G = None
self.q: C = None
self.v: E = None
self.p: G = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: E = None
self.r: D = None
self.w: G = None
self.s: D = None
self.z: F = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: F = None
self.s: A = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: G = None
self.v: C = None
self.z: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: C = None
self.o: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: D = None
self.u: A = None
self.z: A = None
self.x: F = None
self.s: C = None
self.o: D = None
self.txt = txt
i = A("i")
j = B("j")
a = C("a")
c = D("c")
g = E("g")
e = F("e")
b = G("b")
i.y = j
i.r = b
i.s = b
i.p = b
i.q = a
i.v = g
i.o = g
j.q = i
a.o = g
a.r = c
a.s = c
a.w = b
a.z = e
a.q = j
c.x = e
c.s = i
c.o = i
g.t = b
g.z = b
g.v = a
e.p = a
e.o = a
b.y = c
b.o = c
b.u = i
b.z = i
b.x = e
b.s = a
assert e.p.r.o.s.s.r.txt == " | c" | class A:
def __init__(self, txt: str):
self.y: B = None
self.r: G = None
self.s: G = None
self.q: C = None
self.v: E = None
self.p: G = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: E = None
self.r: D = None
self.w: G = None
self.s: D = None
self.z: F = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: F = None
self.s: A = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: G = None
self.v: C = None
self.z: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: C = None
self.o: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: D = None
self.u: A = None
self.z: A = None
self.x: F = None
self.s: C = None
self.o: D = None
self.txt = txt
i = A("i")
j = B("j")
a = C("a")
c = D("c")
g = E("g")
e = F("e")
b = G("b")
i.y = j
i.r = b
i.s = b
i.p = b
i.q = a
i.v = g
i.o = g
j.q = i
a.o = g
a.r = c
a.s = c
a.w = b
a.z = e
a.q = j
c.x = e
c.s = i
c.o = i
g.t = b
g.z = b
g.v = a
e.p = a
e.o = a
b.y = c
b.o = c
b.u = i
b.z = i
b.x = e
b.s = a
assert e.p.r.o.s.s.r.txt == "c" | e | a | c | i | b | a | c | x | 7 | 19 | 7 | 6 | 2 |
5,547 | class A:
def __init__(self, txt: str):
self.z: B = None
self.r: G = None
self.s: G = None
self.y: E = None
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: D = None
self.s: D = None
self.u: G = None
self.w: B = None
self.y: F = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.p: E = None
self.y: E = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.u: B = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: A = None
self.t: G = None
self.w: E = None
self.y: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: D = None
self.t: E = None
self.u: B = None
self.o: F = None
self.q: F = None
self.txt = txt
j = A("j")
b = B("b")
h = C("h")
f = D("f")
g = E("g")
a = F("a")
i = G("i")
j.z = b
j.r = i
j.s = i
j.o = i
j.y = g
b.o = j
b.w = g
h.v = f
h.s = f
h.r = f
h.u = i
h.w = b
h.y = a
f.v = j
f.x = j
f.p = g
f.y = g
g.o = j
g.u = b
g.t = f
a.v = j
a.t = i
a.y = i
a.w = g
i.x = f
i.t = g
i.u = b
i.o = a
i.q = a
assert b.w.u.o.y.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.z: B = None
self.r: G = None
self.s: G = None
self.y: E = None
self.o: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: D = None
self.s: D = None
self.u: G = None
self.w: B = None
self.y: F = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.p: E = None
self.y: E = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.u: B = None
self.t: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: A = None
self.t: G = None
self.w: E = None
self.y: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: D = None
self.t: E = None
self.u: B = None
self.o: F = None
self.q: F = None
self.txt = txt
j = A("j")
b = B("b")
h = C("h")
f = D("f")
g = E("g")
a = F("a")
i = G("i")
j.z = b
j.r = i
j.s = i
j.o = i
j.y = g
b.o = j
b.w = g
h.v = f
h.s = f
h.r = f
h.u = i
h.w = b
h.y = a
f.v = j
f.x = j
f.p = g
f.y = g
g.o = j
g.u = b
g.t = f
a.v = j
a.t = i
a.y = i
a.w = g
i.x = f
i.t = g
i.u = b
i.o = a
i.q = a
assert b.w.u.o.y.t.txt == "f" | b | g | b | j | g | f | x | x | 7 | 21 | 7 | 5 | 2 |
5,548 | class A:
def __init__(self, txt: str):
self.w: C = None
self.q: B = None
self.y: C = None
self.v: F = None
self.r: E = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.y: A = None
self.x: F = None
self.s: F = None
self.u: G = None
self.v: G = None
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.w: D = None
self.q: E = None
self.x: G = None
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.r: A = None
self.o: B = None
self.p: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: A = None
self.p: F = None
self.x: F = None
self.q: B = None
self.txt = txt
g = A("g")
i = B("i")
c = C("c")
b = D("b")
d = E("d")
f = F("f")
h = G("h")
g.w = c
g.y = c
g.q = i
g.v = f
g.o = f
g.r = d
i.o = g
i.y = g
i.x = f
i.s = f
i.u = h
i.v = h
i.w = d
c.z = i
c.w = b
c.q = d
c.x = h
c.u = g
b.t = g
d.p = f
f.t = i
f.o = i
f.r = g
f.p = c
h.t = g
h.p = f
h.x = f
h.q = i
assert g.w.q.p.txt == " | f" | class A:
def __init__(self, txt: str):
self.w: C = None
self.q: B = None
self.y: C = None
self.v: F = None
self.r: E = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.y: A = None
self.x: F = None
self.s: F = None
self.u: G = None
self.v: G = None
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.w: D = None
self.q: E = None
self.x: G = None
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.r: A = None
self.o: B = None
self.p: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: A = None
self.p: F = None
self.x: F = None
self.q: B = None
self.txt = txt
g = A("g")
i = B("i")
c = C("c")
b = D("b")
d = E("d")
f = F("f")
h = G("h")
g.w = c
g.y = c
g.q = i
g.v = f
g.o = f
g.r = d
i.o = g
i.y = g
i.x = f
i.s = f
i.u = h
i.v = h
i.w = d
c.z = i
c.w = b
c.q = d
c.x = h
c.u = g
b.t = g
d.p = f
f.t = i
f.o = i
f.r = g
f.p = c
h.t = g
h.p = f
h.x = f
h.q = i
assert g.w.q.p.txt == "f" | g | c | d | f | x | x | x | x | 7 | 21 | 7 | 3 | 0 |
5,549 | class A:
def __init__(self, txt: str):
self.z: F = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: G = None
self.o: F = None
self.r: A = None
self.v: C = None
self.p: C = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.q: G = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: F = None
self.x: D = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: F = None
self.q: B = None
self.r: D = None
self.x: C = None
self.u: D = None
self.p: F = None
self.txt = txt
g = A("g")
d = B("d")
c = C("c")
i = D("i")
b = E("b")
j = F("j")
e = G("e")
g.z = j
g.v = j
d.t = e
d.o = j
d.r = g
d.v = c
d.p = c
d.y = b
c.u = g
c.q = e
c.y = b
i.v = j
b.o = j
b.x = i
b.u = c
j.r = i
e.s = j
e.p = j
e.q = d
e.r = i
e.u = i
e.x = c
assert i.v.r.v.txt == " | j" | class A:
def __init__(self, txt: str):
self.z: F = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: G = None
self.o: F = None
self.r: A = None
self.v: C = None
self.p: C = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.q: G = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: F = None
self.x: D = None
self.u: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: F = None
self.q: B = None
self.r: D = None
self.x: C = None
self.u: D = None
self.p: F = None
self.txt = txt
g = A("g")
d = B("d")
c = C("c")
i = D("i")
b = E("b")
j = F("j")
e = G("e")
g.z = j
g.v = j
d.t = e
d.o = j
d.r = g
d.v = c
d.p = c
d.y = b
c.u = g
c.q = e
c.y = b
i.v = j
b.o = j
b.x = i
b.u = c
j.r = i
e.s = j
e.p = j
e.q = d
e.r = i
e.u = i
e.x = c
assert i.v.r.v.txt == "j" | i | j | i | j | x | x | x | x | 7 | 18 | 7 | 3 | 2 |
5,550 | class A:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.o: F = 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.t: A = None
self.v: G = None
self.z: C = None
self.p: F = None
self.r: G = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.q: D = None
self.p: D = None
self.t: A = None
self.o: A = None
self.u: G = None
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: F = None
self.z: C = None
self.txt = txt
i = A("i")
f = B("f")
g = C("g")
j = D("j")
h = E("h")
b = F("b")
d = G("d")
i.r = g
f.r = i
f.p = b
g.u = i
g.o = b
j.r = h
h.t = i
h.v = d
h.r = d
h.z = g
h.o = g
h.p = b
b.s = i
b.t = i
b.o = i
b.q = j
b.p = j
b.u = d
b.r = g
d.u = b
d.z = g
assert b.r.u.r.u.r.u.r.txt == " | g" | class A:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.o: F = 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.t: A = None
self.v: G = None
self.z: C = None
self.p: F = None
self.r: G = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.q: D = None
self.p: D = None
self.t: A = None
self.o: A = None
self.u: G = None
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: F = None
self.z: C = None
self.txt = txt
i = A("i")
f = B("f")
g = C("g")
j = D("j")
h = E("h")
b = F("b")
d = G("d")
i.r = g
f.r = i
f.p = b
g.u = i
g.o = b
j.r = h
h.t = i
h.v = d
h.r = d
h.z = g
h.o = g
h.p = b
b.s = i
b.t = i
b.o = i
b.q = j
b.p = j
b.u = d
b.r = g
d.u = b
d.z = g
assert b.r.u.r.u.r.u.r.txt == "g" | b | g | i | g | i | g | i | g | 7 | 16 | 7 | 7 | 5 |
5,551 | class A:
def __init__(self, txt: str):
self.s: G = None
self.w: F = None
self.u: E = None
self.x: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: F = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: F = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.p: A = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.z: B = None
self.w: A = None
self.v: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: G = None
self.r: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: C = None
self.w: B = None
self.o: C = None
self.z: B = None
self.t: D = None
self.q: F = None
self.u: D = None
self.txt = txt
g = A("g")
a = B("a")
f = C("f")
e = D("e")
d = E("d")
j = F("j")
h = G("h")
g.s = h
g.w = j
g.u = d
g.x = d
a.u = j
a.r = g
f.o = j
f.x = a
e.s = g
e.p = g
e.y = g
d.p = e
d.v = e
d.z = a
d.w = g
j.w = h
j.r = d
h.x = f
h.o = f
h.w = a
h.z = a
h.t = e
h.u = e
h.q = j
assert e.p.x.w.w.w.txt == " | h" | class A:
def __init__(self, txt: str):
self.s: G = None
self.w: F = None
self.u: E = None
self.x: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: F = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: F = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.p: A = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: D = None
self.z: B = None
self.w: A = None
self.v: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: G = None
self.r: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: C = None
self.w: B = None
self.o: C = None
self.z: B = None
self.t: D = None
self.q: F = None
self.u: D = None
self.txt = txt
g = A("g")
a = B("a")
f = C("f")
e = D("e")
d = E("d")
j = F("j")
h = G("h")
g.s = h
g.w = j
g.u = d
g.x = d
a.u = j
a.r = g
f.o = j
f.x = a
e.s = g
e.p = g
e.y = g
d.p = e
d.v = e
d.z = a
d.w = g
j.w = h
j.r = d
h.x = f
h.o = f
h.w = a
h.z = a
h.t = e
h.u = e
h.q = j
assert e.p.x.w.w.w.txt == "h" | e | g | d | g | j | h | x | x | 7 | 17 | 7 | 5 | 1 |
5,552 | class A:
def __init__(self, txt: str):
self.s: C = None
self.v: D = None
self.y: B = None
self.r: B = None
self.z: D = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: G = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.r: G = None
self.q: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.r: C = None
self.y: G = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.o: D = None
self.y: D = None
self.q: C = None
self.z: F = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.u: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
e = A("e")
f = B("f")
j = C("j")
i = D("i")
c = E("c")
d = F("d")
g = G("g")
e.s = j
e.v = i
e.z = i
e.p = i
e.y = f
e.r = f
f.t = g
f.x = e
j.o = e
j.r = g
j.q = d
i.z = e
i.r = j
i.o = j
i.y = g
c.v = e
c.o = i
c.y = i
c.q = j
c.z = d
c.s = f
d.x = c
d.u = i
g.v = d
assert f.t.v.u.o.txt == " | j" | class A:
def __init__(self, txt: str):
self.s: C = None
self.v: D = None
self.y: B = None
self.r: B = None
self.z: D = None
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: G = None
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.r: G = None
self.q: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.r: C = None
self.y: G = None
self.o: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.o: D = None
self.y: D = None
self.q: C = None
self.z: F = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.u: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: F = None
self.txt = txt
e = A("e")
f = B("f")
j = C("j")
i = D("i")
c = E("c")
d = F("d")
g = G("g")
e.s = j
e.v = i
e.z = i
e.p = i
e.y = f
e.r = f
f.t = g
f.x = e
j.o = e
j.r = g
j.q = d
i.z = e
i.r = j
i.o = j
i.y = g
c.v = e
c.o = i
c.y = i
c.q = j
c.z = d
c.s = f
d.x = c
d.u = i
g.v = d
assert f.t.v.u.o.txt == "j" | f | g | d | i | j | x | x | x | 7 | 19 | 7 | 4 | 0 |
5,553 | class A:
def __init__(self, txt: str):
self.r: D = None
self.s: B = None
self.p: F = None
self.u: D = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.o: C = None
self.y: E = None
self.s: E = None
self.p: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.p: F = None
self.y: D = None
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: F = None
self.o: G = None
self.r: G = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.o: C = None
self.r: F = None
self.z: G = None
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: G = None
self.x: G = None
self.t: G = None
self.p: A = None
self.s: A = None
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: F = None
self.p: F = None
self.txt = txt
b = A("b")
c = B("c")
i = C("i")
d = D("d")
h = E("h")
j = F("j")
e = G("e")
b.r = d
b.u = d
b.z = d
b.s = c
b.p = j
c.u = d
c.o = i
c.y = h
c.s = h
c.p = e
i.w = b
i.s = b
i.p = j
i.y = d
d.t = j
d.o = e
d.r = e
d.p = i
h.t = i
h.o = i
h.r = j
h.z = e
h.s = d
j.o = e
j.x = e
j.t = e
j.r = e
j.p = b
j.s = b
e.o = j
e.p = j
assert c.u.p.s.z.o.p.s.txt == " | b" | class A:
def __init__(self, txt: str):
self.r: D = None
self.s: B = None
self.p: F = None
self.u: D = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.o: C = None
self.y: E = None
self.s: E = None
self.p: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.p: F = None
self.y: D = None
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: F = None
self.o: G = None
self.r: G = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: C = None
self.o: C = None
self.r: F = None
self.z: G = None
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: G = None
self.x: G = None
self.t: G = None
self.p: A = None
self.s: A = None
self.r: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: F = None
self.p: F = None
self.txt = txt
b = A("b")
c = B("c")
i = C("i")
d = D("d")
h = E("h")
j = F("j")
e = G("e")
b.r = d
b.u = d
b.z = d
b.s = c
b.p = j
c.u = d
c.o = i
c.y = h
c.s = h
c.p = e
i.w = b
i.s = b
i.p = j
i.y = d
d.t = j
d.o = e
d.r = e
d.p = i
h.t = i
h.o = i
h.r = j
h.z = e
h.s = d
j.o = e
j.x = e
j.t = e
j.r = e
j.p = b
j.s = b
e.o = j
e.p = j
assert c.u.p.s.z.o.p.s.txt == "b" | c | d | i | b | d | e | j | b | 7 | 20 | 7 | 7 | 2 |
5,554 | class A:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.x: C = None
self.u: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.x: D = None
self.o: B = None
self.q: A = None
self.y: B = None
self.r: D = None
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.r: A = None
self.u: C = None
self.q: B = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: A = None
self.s: B = None
self.y: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.s: F = None
self.u: C = None
self.t: C = None
self.x: F = None
self.q: F = None
self.txt = txt
j = A("j")
h = B("h")
a = C("a")
e = D("e")
c = E("c")
f = F("f")
g = G("g")
j.v = e
h.q = c
h.x = a
h.u = g
a.v = h
a.o = h
a.y = h
a.x = e
a.r = e
a.q = j
a.u = j
e.s = h
e.q = h
e.r = j
e.u = a
e.o = f
c.p = j
c.s = h
c.y = g
f.u = a
g.y = c
g.s = f
g.x = f
g.q = f
g.u = a
g.t = a
assert g.q.u.q.txt == " | j" | class A:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: E = None
self.x: C = None
self.u: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.x: D = None
self.o: B = None
self.q: A = None
self.y: B = None
self.r: D = None
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.r: A = None
self.u: C = None
self.q: B = None
self.o: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: A = None
self.s: B = None
self.y: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.s: F = None
self.u: C = None
self.t: C = None
self.x: F = None
self.q: F = None
self.txt = txt
j = A("j")
h = B("h")
a = C("a")
e = D("e")
c = E("c")
f = F("f")
g = G("g")
j.v = e
h.q = c
h.x = a
h.u = g
a.v = h
a.o = h
a.y = h
a.x = e
a.r = e
a.q = j
a.u = j
e.s = h
e.q = h
e.r = j
e.u = a
e.o = f
c.p = j
c.s = h
c.y = g
f.u = a
g.y = c
g.s = f
g.x = f
g.q = f
g.u = a
g.t = a
assert g.q.u.q.txt == "j" | g | f | a | j | x | x | x | x | 7 | 18 | 7 | 3 | 0 |
5,555 | class A:
def __init__(self, txt: str):
self.s: B = None
self.x: C = None
self.w: B = None
self.p: C = None
self.r: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: G = None
self.y: F = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.t: G = None
self.y: B = None
self.z: D = None
self.v: E = None
self.o: B = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: G = None
self.y: E = None
self.u: E = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: C = None
self.s: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: D = None
self.txt = txt
a = A("a")
b = B("b")
j = C("j")
f = D("f")
i = E("i")
e = F("e")
d = G("d")
a.s = b
a.w = b
a.x = j
a.p = j
a.r = d
b.v = d
b.y = e
b.q = a
j.q = b
j.y = b
j.o = b
j.w = b
j.t = d
j.z = f
j.v = i
f.o = d
f.y = i
f.u = i
f.s = b
i.o = d
e.t = j
e.s = j
d.w = f
assert d.w.o.w.s.y.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.s: B = None
self.x: C = None
self.w: B = None
self.p: C = None
self.r: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: G = None
self.y: F = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.t: G = None
self.y: B = None
self.z: D = None
self.v: E = None
self.o: B = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: G = None
self.y: E = None
self.u: E = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: C = None
self.s: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: D = None
self.txt = txt
a = A("a")
b = B("b")
j = C("j")
f = D("f")
i = E("i")
e = F("e")
d = G("d")
a.s = b
a.w = b
a.x = j
a.p = j
a.r = d
b.v = d
b.y = e
b.q = a
j.q = b
j.y = b
j.o = b
j.w = b
j.t = d
j.z = f
j.v = i
f.o = d
f.y = i
f.u = i
f.s = b
i.o = d
e.t = j
e.s = j
d.w = f
assert d.w.o.w.s.y.s.txt == "j" | d | f | d | f | b | e | j | x | 7 | 16 | 7 | 6 | 2 |
5,556 | class A:
def __init__(self, txt: str):
self.q: F = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.x: C = None
self.v: D = None
self.s: A = None
self.w: F = None
self.z: G = None
self.o: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: C = None
self.p: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: C = None
self.t: C = None
self.s: E = None
self.txt = txt
j = A("j")
c = B("c")
i = C("i")
a = D("a")
e = E("e")
d = F("d")
h = G("h")
j.q = d
j.u = d
c.t = i
c.x = i
c.v = a
c.s = j
c.w = d
c.z = h
c.o = h
i.x = a
a.p = c
e.w = d
d.u = i
d.p = c
h.y = i
h.t = i
h.s = e
assert c.v.p.s.txt == " | j" | class A:
def __init__(self, txt: str):
self.q: F = None
self.u: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.x: C = None
self.v: D = None
self.s: A = None
self.w: F = None
self.z: G = None
self.o: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: C = None
self.p: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: C = None
self.t: C = None
self.s: E = None
self.txt = txt
j = A("j")
c = B("c")
i = C("i")
a = D("a")
e = E("e")
d = F("d")
h = G("h")
j.q = d
j.u = d
c.t = i
c.x = i
c.v = a
c.s = j
c.w = d
c.z = h
c.o = h
i.x = a
a.p = c
e.w = d
d.u = i
d.p = c
h.y = i
h.t = i
h.s = e
assert c.v.p.s.txt == "j" | c | a | c | j | x | x | x | x | 7 | 13 | 7 | 3 | 1 |
5,557 | class A:
def __init__(self, txt: str):
self.t: D = None
self.s: B = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.t: E = None
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.r: B = None
self.t: A = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.v: A = None
self.z: C = None
self.x: B = None
self.p: A = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.t: A = None
self.s: F = None
self.z: B = None
self.q: D = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.s: D = None
self.t: G = None
self.w: G = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
i = A("i")
f = B("f")
h = C("h")
c = D("c")
j = E("j")
b = F("b")
a = G("a")
i.t = c
i.s = f
i.y = j
f.u = c
f.t = j
f.y = b
h.q = i
h.t = i
h.r = f
h.z = c
c.t = a
c.w = a
c.v = i
c.p = i
c.z = h
c.x = f
j.u = f
j.z = f
j.t = i
j.s = b
j.q = c
j.o = h
b.o = c
b.s = c
b.t = a
b.w = a
b.z = i
a.t = j
assert j.o.q.t.x.u.z.txt == " | h" | class A:
def __init__(self, txt: str):
self.t: D = None
self.s: B = None
self.y: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.t: E = None
self.y: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.r: B = None
self.t: A = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.v: A = None
self.z: C = None
self.x: B = None
self.p: A = None
self.w: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: B = None
self.t: A = None
self.s: F = None
self.z: B = None
self.q: D = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.s: D = None
self.t: G = None
self.w: G = None
self.z: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
i = A("i")
f = B("f")
h = C("h")
c = D("c")
j = E("j")
b = F("b")
a = G("a")
i.t = c
i.s = f
i.y = j
f.u = c
f.t = j
f.y = b
h.q = i
h.t = i
h.r = f
h.z = c
c.t = a
c.w = a
c.v = i
c.p = i
c.z = h
c.x = f
j.u = f
j.z = f
j.t = i
j.s = b
j.q = c
j.o = h
b.o = c
b.s = c
b.t = a
b.w = a
b.z = i
a.t = j
assert j.o.q.t.x.u.z.txt == "h" | j | h | i | c | f | c | h | x | 7 | 22 | 7 | 6 | 2 |
5,558 | class A:
def __init__(self, txt: str):
self.o: C = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: F = None
self.q: G = None
self.r: F = None
self.u: E = None
self.o: D = None
self.w: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.v: F = None
self.u: E = None
self.t: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.p: C = None
self.q: C = None
self.w: A = None
self.z: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.p: D = None
self.t: E = None
self.r: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: D = None
self.p: B = None
self.txt = txt
h = A("h")
a = B("a")
b = C("b")
j = D("j")
i = E("i")
f = F("f")
e = G("e")
h.o = b
h.y = j
a.z = e
a.q = e
a.y = f
a.r = f
a.w = f
a.u = i
a.o = j
b.q = j
j.r = e
j.v = f
j.t = f
j.u = i
i.s = b
i.p = b
i.q = b
i.w = h
i.z = a
f.s = h
f.r = h
f.p = j
f.t = i
e.r = j
e.p = a
assert i.w.y.u.z.o.txt == " | j" | class A:
def __init__(self, txt: str):
self.o: C = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: G = None
self.y: F = None
self.q: G = None
self.r: F = None
self.u: E = None
self.o: D = None
self.w: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: G = None
self.v: F = None
self.u: E = None
self.t: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.p: C = None
self.q: C = None
self.w: A = None
self.z: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.p: D = None
self.t: E = None
self.r: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: D = None
self.p: B = None
self.txt = txt
h = A("h")
a = B("a")
b = C("b")
j = D("j")
i = E("i")
f = F("f")
e = G("e")
h.o = b
h.y = j
a.z = e
a.q = e
a.y = f
a.r = f
a.w = f
a.u = i
a.o = j
b.q = j
j.r = e
j.v = f
j.t = f
j.u = i
i.s = b
i.p = b
i.q = b
i.w = h
i.z = a
f.s = h
f.r = h
f.p = j
f.t = i
e.r = j
e.p = a
assert i.w.y.u.z.o.txt == "j" | i | h | j | i | a | j | x | x | 7 | 18 | 7 | 5 | 2 |
5,559 | class A:
def __init__(self, txt: str):
self.q: B = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.s: F = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.t: E = None
self.y: G = None
self.z: B = None
self.s: A = None
self.r: F = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.w: A = None
self.y: G = None
self.q: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: G = None
self.q: C = None
self.r: A = None
self.p: C = None
self.x: E = None
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
f = A("f")
b = B("b")
g = C("g")
h = D("h")
e = E("e")
i = F("i")
j = G("j")
f.q = b
f.s = g
b.q = g
b.s = i
b.p = h
g.o = h
g.t = e
g.w = e
g.y = j
g.z = b
g.s = f
g.r = i
h.z = f
h.w = f
h.y = j
h.q = e
e.r = h
e.t = j
i.s = j
i.q = g
i.p = g
i.r = f
i.x = e
i.y = b
j.t = e
assert j.t.t.t.r.q.t.t.txt == " | e" | class A:
def __init__(self, txt: str):
self.q: B = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.s: F = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.t: E = None
self.y: G = None
self.z: B = None
self.s: A = None
self.r: F = None
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.w: A = None
self.y: G = None
self.q: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: G = None
self.q: C = None
self.r: A = None
self.p: C = None
self.x: E = None
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
f = A("f")
b = B("b")
g = C("g")
h = D("h")
e = E("e")
i = F("i")
j = G("j")
f.q = b
f.s = g
b.q = g
b.s = i
b.p = h
g.o = h
g.t = e
g.w = e
g.y = j
g.z = b
g.s = f
g.r = i
h.z = f
h.w = f
h.y = j
h.q = e
e.r = h
e.t = j
i.s = j
i.q = g
i.p = g
i.r = f
i.x = e
i.y = b
j.t = e
assert j.t.t.t.r.q.t.t.txt == "e" | j | e | j | e | h | e | j | e | 7 | 22 | 7 | 7 | 5 |
5,560 | class A:
def __init__(self, txt: str):
self.t: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: G = None
self.y: B = None
self.z: E = None
self.u: B = None
self.t: D = None
self.s: A = None
self.x: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.t: B = None
self.x: A = None
self.w: F = None
self.q: A = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: G = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: D = None
self.s: C = None
self.o: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: E = None
self.r: D = None
self.w: C = None
self.y: D = None
self.q: B = None
self.s: C = None
self.txt = txt
f = A("f")
g = B("g")
j = C("j")
h = D("h")
c = E("c")
i = F("i")
a = G("a")
f.t = a
g.w = c
j.p = a
j.x = a
j.y = g
j.u = g
j.z = c
j.t = h
j.s = f
h.p = j
h.t = g
h.x = f
h.q = f
h.o = f
h.w = i
c.w = a
c.x = g
i.v = h
i.o = h
i.s = j
a.x = c
a.r = h
a.y = h
a.w = j
a.s = j
a.q = g
assert i.v.t.w.w.x.w.w.txt == " | j" | class A:
def __init__(self, txt: str):
self.t: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: G = None
self.y: B = None
self.z: E = None
self.u: B = None
self.t: D = None
self.s: A = None
self.x: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.t: B = None
self.x: A = None
self.w: F = None
self.q: A = None
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: G = None
self.x: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: D = None
self.s: C = None
self.o: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: E = None
self.r: D = None
self.w: C = None
self.y: D = None
self.q: B = None
self.s: C = None
self.txt = txt
f = A("f")
g = B("g")
j = C("j")
h = D("h")
c = E("c")
i = F("i")
a = G("a")
f.t = a
g.w = c
j.p = a
j.x = a
j.y = g
j.u = g
j.z = c
j.t = h
j.s = f
h.p = j
h.t = g
h.x = f
h.q = f
h.o = f
h.w = i
c.w = a
c.x = g
i.v = h
i.o = h
i.s = j
a.x = c
a.r = h
a.y = h
a.w = j
a.s = j
a.q = g
assert i.v.t.w.w.x.w.w.txt == "j" | i | h | g | c | a | c | a | j | 7 | 19 | 7 | 7 | 2 |
5,561 | class A:
def __init__(self, txt: str):
self.s: E = None
self.w: D = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.p: B = None
self.r: D = None
self.v: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.o: E = None
self.z: E = None
self.p: A = None
self.u: F = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.o: E = None
self.s: B = None
self.z: D = None
self.p: E = None
self.q: E = None
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: E = None
self.t: F = None
self.z: F = None
self.txt = txt
c = A("c")
d = B("d")
j = C("j")
a = D("a")
g = E("g")
e = F("e")
b = G("b")
c.s = g
c.w = a
c.t = d
d.o = j
d.z = c
j.u = d
j.p = d
j.r = a
j.v = a
a.s = d
a.x = d
a.o = g
a.z = g
a.p = c
a.u = e
g.u = a
e.y = c
e.o = g
e.p = g
e.q = g
e.s = d
e.z = a
e.r = j
b.s = g
b.t = e
b.z = e
assert c.t.o.p.txt == " | d" | class A:
def __init__(self, txt: str):
self.s: E = None
self.w: D = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.p: B = None
self.r: D = None
self.v: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.o: E = None
self.z: E = None
self.p: A = None
self.u: F = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.o: E = None
self.s: B = None
self.z: D = None
self.p: E = None
self.q: E = None
self.r: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: E = None
self.t: F = None
self.z: F = None
self.txt = txt
c = A("c")
d = B("d")
j = C("j")
a = D("a")
g = E("g")
e = F("e")
b = G("b")
c.s = g
c.w = a
c.t = d
d.o = j
d.z = c
j.u = d
j.p = d
j.r = a
j.v = a
a.s = d
a.x = d
a.o = g
a.z = g
a.p = c
a.u = e
g.u = a
e.y = c
e.o = g
e.p = g
e.q = g
e.s = d
e.z = a
e.r = j
b.s = g
b.t = e
b.z = e
assert c.t.o.p.txt == "d" | c | d | j | d | x | x | x | x | 7 | 19 | 7 | 3 | 1 |
5,562 | class A:
def __init__(self, txt: str):
self.q: F = None
self.r: E = None
self.u: B = None
self.o: E = None
self.p: B = None
self.y: E = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.r: E = None
self.o: D = None
self.x: A = None
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.q: D = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.t: F = None
self.p: E = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.q: G = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.r: G = None
self.o: E = None
self.t: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: B = None
self.y: C = None
self.txt = txt
b = A("b")
i = B("i")
f = C("f")
a = D("a")
d = E("d")
c = F("c")
e = G("e")
b.q = c
b.r = d
b.o = d
b.y = d
b.u = i
b.p = i
b.x = i
i.v = a
i.o = a
i.r = d
i.x = b
i.z = c
f.v = i
f.x = i
f.q = a
a.y = d
a.p = d
a.t = c
a.w = i
d.z = i
d.q = e
d.o = f
c.z = d
c.o = d
c.r = e
c.t = f
e.q = i
e.y = f
assert c.t.x.z.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.q: F = None
self.r: E = None
self.u: B = None
self.o: E = None
self.p: B = None
self.y: E = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.r: E = None
self.o: D = None
self.x: A = None
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.q: D = None
self.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.t: F = None
self.p: E = None
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.q: G = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: E = None
self.r: G = None
self.o: E = None
self.t: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: B = None
self.y: C = None
self.txt = txt
b = A("b")
i = B("i")
f = C("f")
a = D("a")
d = E("d")
c = F("c")
e = G("e")
b.q = c
b.r = d
b.o = d
b.y = d
b.u = i
b.p = i
b.x = i
i.v = a
i.o = a
i.r = d
i.x = b
i.z = c
f.v = i
f.x = i
f.q = a
a.y = d
a.p = d
a.t = c
a.w = i
d.z = i
d.q = e
d.o = f
c.z = d
c.o = d
c.r = e
c.t = f
e.q = i
e.y = f
assert c.t.x.z.z.txt == "d" | c | f | i | c | d | x | x | x | 7 | 20 | 7 | 4 | 1 |
5,563 | class A:
def __init__(self, txt: str):
self.u: E = None
self.q: G = None
self.x: C = None
self.t: B = None
self.o: E = None
self.v: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.y: E = None
self.q: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.x: G = None
self.o: E = None
self.z: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: G = None
self.y: G = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.x: B = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.p: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: C = None
self.s: C = None
self.z: D = None
self.t: B = None
self.txt = txt
a = A("a")
b = B("b")
g = C("g")
i = D("i")
c = E("c")
d = F("d")
h = G("h")
a.u = c
a.o = c
a.q = h
a.v = h
a.x = g
a.t = b
b.r = c
b.y = c
b.q = h
g.s = h
g.x = h
g.o = c
g.z = d
i.o = h
i.y = h
i.u = c
c.o = b
c.x = b
c.w = b
d.y = g
d.p = c
h.w = g
h.s = g
h.z = i
h.t = b
assert d.p.w.q.z.o.txt == " | h" | class A:
def __init__(self, txt: str):
self.u: E = None
self.q: G = None
self.x: C = None
self.t: B = None
self.o: E = None
self.v: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.y: E = None
self.q: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.x: G = None
self.o: E = None
self.z: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: G = None
self.y: G = None
self.u: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: B = None
self.x: B = None
self.w: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.p: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: C = None
self.s: C = None
self.z: D = None
self.t: B = None
self.txt = txt
a = A("a")
b = B("b")
g = C("g")
i = D("i")
c = E("c")
d = F("d")
h = G("h")
a.u = c
a.o = c
a.q = h
a.v = h
a.x = g
a.t = b
b.r = c
b.y = c
b.q = h
g.s = h
g.x = h
g.o = c
g.z = d
i.o = h
i.y = h
i.u = c
c.o = b
c.x = b
c.w = b
d.y = g
d.p = c
h.w = g
h.s = g
h.z = i
h.t = b
assert d.p.w.q.z.o.txt == "h" | d | c | b | h | i | h | x | x | 7 | 17 | 7 | 5 | 1 |
5,564 | class A:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.z: D = None
self.x: D = None
self.r: D = None
self.t: F = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.o: E = None
self.t: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.z: C = None
self.s: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: E = None
self.w: D = None
self.p: G = None
self.s: A = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: E = None
self.q: E = None
self.w: B = None
self.p: C = None
self.u: D = None
self.txt = txt
c = A("c")
h = B("h")
i = C("i")
f = D("f")
b = E("b")
j = F("j")
e = G("e")
c.v = f
h.o = c
h.z = f
h.x = f
h.r = f
h.t = j
h.u = j
i.v = h
i.o = b
i.t = e
f.x = b
b.q = e
b.z = i
b.s = i
j.r = b
j.w = f
j.p = e
j.s = c
j.u = i
e.s = b
e.q = b
e.w = h
e.p = i
e.u = f
assert f.x.s.o.txt == " | b" | class A:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.z: D = None
self.x: D = None
self.r: D = None
self.t: F = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.o: E = None
self.t: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: G = None
self.z: C = None
self.s: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: E = None
self.w: D = None
self.p: G = None
self.s: A = None
self.u: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: E = None
self.q: E = None
self.w: B = None
self.p: C = None
self.u: D = None
self.txt = txt
c = A("c")
h = B("h")
i = C("i")
f = D("f")
b = E("b")
j = F("j")
e = G("e")
c.v = f
h.o = c
h.z = f
h.x = f
h.r = f
h.t = j
h.u = j
i.v = h
i.o = b
i.t = e
f.x = b
b.q = e
b.z = i
b.s = i
j.r = b
j.w = f
j.p = e
j.s = c
j.u = i
e.s = b
e.q = b
e.w = h
e.p = i
e.u = f
assert f.x.s.o.txt == "b" | f | b | i | b | x | x | x | x | 7 | 19 | 7 | 3 | 1 |
5,565 | class A:
def __init__(self, txt: str):
self.t: E = None
self.u: F = None
self.x: B = None
self.r: D = None
self.o: G = None
self.s: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.u: F = None
self.t: G = None
self.s: F = None
self.r: F = None
self.w: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: B = None
self.p: D = None
self.y: C = None
self.z: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: E = None
self.v: A = None
self.t: D = None
self.y: E = None
self.s: F = None
self.p: C = None
self.txt = txt
a = A("a")
d = B("d")
c = C("c")
f = D("f")
g = E("g")
b = F("b")
e = G("e")
a.t = g
a.s = g
a.u = b
a.x = d
a.r = f
a.o = e
d.o = c
d.w = c
c.z = b
c.u = b
c.s = b
c.r = b
c.w = b
c.t = e
f.z = g
f.v = d
g.s = c
b.x = d
b.p = f
b.y = c
b.z = c
e.w = g
e.y = g
e.v = a
e.t = f
e.s = b
e.p = c
assert a.o.t.z.s.s.x.txt == " | d" | class A:
def __init__(self, txt: str):
self.t: E = None
self.u: F = None
self.x: B = None
self.r: D = None
self.o: G = None
self.s: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.u: F = None
self.t: G = None
self.s: F = None
self.r: F = None
self.w: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: B = None
self.p: D = None
self.y: C = None
self.z: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: E = None
self.v: A = None
self.t: D = None
self.y: E = None
self.s: F = None
self.p: C = None
self.txt = txt
a = A("a")
d = B("d")
c = C("c")
f = D("f")
g = E("g")
b = F("b")
e = G("e")
a.t = g
a.s = g
a.u = b
a.x = d
a.r = f
a.o = e
d.o = c
d.w = c
c.z = b
c.u = b
c.s = b
c.r = b
c.w = b
c.t = e
f.z = g
f.v = d
g.s = c
b.x = d
b.p = f
b.y = c
b.z = c
e.w = g
e.y = g
e.v = a
e.t = f
e.s = b
e.p = c
assert a.o.t.z.s.s.x.txt == "d" | a | e | f | g | c | b | d | x | 7 | 19 | 7 | 6 | 0 |
5,566 | class A:
def __init__(self, txt: str):
self.z: E = None
self.r: B = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: G = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.q: B = None
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: A = None
self.q: B = None
self.z: B = None
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: E = None
self.s: G = None
self.x: D = None
self.r: C = None
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: E = None
self.z: F = None
self.y: A = None
self.x: A = None
self.r: D = None
self.txt = txt
a = A("a")
h = B("h")
f = C("f")
c = D("c")
b = E("b")
g = F("g")
j = G("j")
a.z = b
a.v = b
a.r = h
h.p = j
h.o = a
f.z = g
f.y = j
f.q = h
f.u = a
c.p = j
c.r = b
b.p = a
b.u = a
b.q = h
b.z = h
g.y = b
g.s = j
g.w = j
g.x = c
g.r = f
j.u = b
j.z = g
j.y = a
j.x = a
j.r = c
assert f.z.x.p.x.r.txt == " | h" | class A:
def __init__(self, txt: str):
self.z: E = None
self.r: B = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: G = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: F = None
self.y: G = None
self.q: B = None
self.u: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: A = None
self.q: B = None
self.z: B = None
self.u: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: E = None
self.s: G = None
self.x: D = None
self.r: C = None
self.w: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: E = None
self.z: F = None
self.y: A = None
self.x: A = None
self.r: D = None
self.txt = txt
a = A("a")
h = B("h")
f = C("f")
c = D("c")
b = E("b")
g = F("g")
j = G("j")
a.z = b
a.v = b
a.r = h
h.p = j
h.o = a
f.z = g
f.y = j
f.q = h
f.u = a
c.p = j
c.r = b
b.p = a
b.u = a
b.q = h
b.z = h
g.y = b
g.s = j
g.w = j
g.x = c
g.r = f
j.u = b
j.z = g
j.y = a
j.x = a
j.r = c
assert f.z.x.p.x.r.txt == "h" | f | g | c | j | a | h | x | x | 7 | 20 | 7 | 5 | 0 |
5,567 | class A:
def __init__(self, txt: str):
self.q: C = None
self.r: E = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.r: E = None
self.v: D = None
self.z: F = None
self.o: G = None
self.u: E = None
self.s: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.x: D = None
self.q: B = None
self.v: D = None
self.z: E = None
self.w: G = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.t: F = None
self.u: A = None
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.r: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: D = None
self.t: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: A = None
self.p: F = None
self.z: F = None
self.txt = txt
f = A("f")
d = B("d")
e = C("e")
g = D("g")
h = E("h")
c = F("c")
b = G("b")
f.q = e
f.r = h
f.z = h
d.y = c
d.z = c
d.s = c
d.r = h
d.u = h
d.v = g
d.o = b
e.t = b
e.w = b
e.p = b
e.x = g
e.v = g
e.q = d
e.z = h
g.s = b
g.t = c
g.z = c
g.u = f
h.s = e
h.r = d
c.y = g
c.t = h
b.x = f
b.p = c
b.z = c
assert h.r.v.z.t.s.txt == " | e" | class A:
def __init__(self, txt: str):
self.q: C = None
self.r: E = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: F = None
self.r: E = None
self.v: D = None
self.z: F = None
self.o: G = None
self.u: E = None
self.s: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: G = None
self.x: D = None
self.q: B = None
self.v: D = None
self.z: E = None
self.w: G = None
self.p: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.t: F = None
self.u: A = None
self.z: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.r: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: D = None
self.t: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: A = None
self.p: F = None
self.z: F = None
self.txt = txt
f = A("f")
d = B("d")
e = C("e")
g = D("g")
h = E("h")
c = F("c")
b = G("b")
f.q = e
f.r = h
f.z = h
d.y = c
d.z = c
d.s = c
d.r = h
d.u = h
d.v = g
d.o = b
e.t = b
e.w = b
e.p = b
e.x = g
e.v = g
e.q = d
e.z = h
g.s = b
g.t = c
g.z = c
g.u = f
h.s = e
h.r = d
c.y = g
c.t = h
b.x = f
b.p = c
b.z = c
assert h.r.v.z.t.s.txt == "e" | h | d | g | c | h | e | x | x | 7 | 19 | 7 | 5 | 1 |
5,568 | class A:
def __init__(self, txt: str):
self.t: G = None
self.o: E = None
self.x: B = None
self.p: E = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.r: A = None
self.q: C = None
self.z: B = None
self.s: G = None
self.o: B = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.o: D = None
self.u: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.w: C = None
self.q: G = None
self.x: C = None
self.t: C = None
self.r: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
i = A("i")
d = B("d")
f = C("f")
h = D("h")
a = E("a")
c = F("c")
b = G("b")
i.t = b
i.o = a
i.p = a
i.x = d
i.w = d
d.y = b
d.w = f
f.o = b
h.p = b
h.s = b
h.r = i
h.x = i
h.q = f
h.z = d
h.o = d
a.v = i
a.o = h
a.u = c
c.o = h
c.w = f
c.x = f
c.t = f
c.q = b
c.r = i
b.t = f
assert f.o.t.o.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.t: G = None
self.o: E = None
self.x: B = None
self.p: E = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: G = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.r: A = None
self.q: C = None
self.z: B = None
self.s: G = None
self.o: B = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.o: D = None
self.u: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: D = None
self.w: C = None
self.q: G = None
self.x: C = None
self.t: C = None
self.r: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
i = A("i")
d = B("d")
f = C("f")
h = D("h")
a = E("a")
c = F("c")
b = G("b")
i.t = b
i.o = a
i.p = a
i.x = d
i.w = d
d.y = b
d.w = f
f.o = b
h.p = b
h.s = b
h.r = i
h.x = i
h.q = f
h.z = d
h.o = d
a.v = i
a.o = h
a.u = c
c.o = h
c.w = f
c.x = f
c.t = f
c.q = b
c.r = i
b.t = f
assert f.o.t.o.t.txt == "f" | f | b | f | b | f | x | x | x | 7 | 18 | 7 | 4 | 3 |
5,569 | class A:
def __init__(self, txt: str):
self.z: E = None
self.p: D = None
self.x: F = None
self.u: E = 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.o: D = None
self.u: A = None
self.w: D = None
self.t: G = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: A = None
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: C = None
self.u: D = None
self.o: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.u: C = None
self.p: A = None
self.x: F = None
self.o: A = None
self.w: F = None
self.q: C = None
self.txt = txt
f = A("f")
d = B("d")
a = C("a")
c = D("c")
h = E("h")
e = F("e")
b = G("b")
f.z = h
f.u = h
f.p = c
f.x = e
d.x = b
a.o = c
a.w = c
a.u = f
a.t = b
a.x = h
c.t = f
c.v = f
h.u = f
h.x = c
e.t = a
e.u = c
e.o = h
b.z = c
b.u = a
b.q = a
b.p = f
b.o = f
b.x = e
b.w = e
assert a.o.t.x.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: E = None
self.p: D = None
self.x: F = None
self.u: E = 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.o: D = None
self.u: A = None
self.w: D = None
self.t: G = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: A = None
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: C = None
self.u: D = None
self.o: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.u: C = None
self.p: A = None
self.x: F = None
self.o: A = None
self.w: F = None
self.q: C = None
self.txt = txt
f = A("f")
d = B("d")
a = C("a")
c = D("c")
h = E("h")
e = F("e")
b = G("b")
f.z = h
f.u = h
f.p = c
f.x = e
d.x = b
a.o = c
a.w = c
a.u = f
a.t = b
a.x = h
c.t = f
c.v = f
h.u = f
h.x = c
e.t = a
e.u = c
e.o = h
b.z = c
b.u = a
b.q = a
b.p = f
b.o = f
b.x = e
b.w = e
assert a.o.t.x.txt == "e" | a | c | f | e | x | x | x | x | 7 | 18 | 7 | 3 | 0 |
5,570 | class A:
def __init__(self, txt: str):
self.w: E = None
self.q: D = 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.o: B = None
self.u: B = None
self.w: A = None
self.t: D = None
self.z: E = None
self.y: E = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.p: G = None
self.u: B = None
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: A = None
self.y: C = None
self.o: F = None
self.z: F = None
self.p: D = None
self.v: F = None
self.q: E = None
self.txt = txt
i = A("i")
j = B("j")
a = C("a")
g = D("g")
h = E("h")
c = F("c")
b = G("b")
i.w = h
i.q = g
j.r = h
a.o = j
a.u = j
a.w = i
a.r = i
a.t = g
a.z = h
a.y = h
g.o = b
h.v = g
h.p = b
h.u = j
h.r = i
c.q = b
b.s = i
b.y = a
b.o = c
b.z = c
b.v = c
b.p = g
b.q = h
assert b.p.o.p.o.z.q.q.txt == " | h" | class A:
def __init__(self, txt: str):
self.w: E = None
self.q: D = 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.o: B = None
self.u: B = None
self.w: A = None
self.t: D = None
self.z: E = None
self.y: E = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: D = None
self.p: G = None
self.u: B = None
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: A = None
self.y: C = None
self.o: F = None
self.z: F = None
self.p: D = None
self.v: F = None
self.q: E = None
self.txt = txt
i = A("i")
j = B("j")
a = C("a")
g = D("g")
h = E("h")
c = F("c")
b = G("b")
i.w = h
i.q = g
j.r = h
a.o = j
a.u = j
a.w = i
a.r = i
a.t = g
a.z = h
a.y = h
g.o = b
h.v = g
h.p = b
h.u = j
h.r = i
c.q = b
b.s = i
b.y = a
b.o = c
b.z = c
b.v = c
b.p = g
b.q = h
assert b.p.o.p.o.z.q.q.txt == "h" | b | g | b | g | b | c | b | h | 7 | 18 | 7 | 7 | 4 |
5,571 | class A:
def __init__(self, txt: str):
self.w: E = None
self.p: D = None
self.u: B = None
self.q: C = None
self.t: G = None
self.v: D = None
self.z: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: E = None
self.w: F = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.s: D = None
self.o: D = None
self.u: F = None
self.w: F = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: D = None
self.v: F = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.s: A = None
self.p: G = None
self.q: A = None
self.o: G = None
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: C = None
self.q: D = None
self.o: C = None
self.w: E = None
self.txt = txt
g = A("g")
f = B("f")
h = C("h")
d = D("d")
i = E("i")
c = F("c")
j = G("j")
g.w = i
g.p = d
g.v = d
g.u = f
g.q = h
g.t = j
g.z = j
f.y = i
f.w = c
f.u = c
h.p = i
h.s = d
h.o = d
h.x = d
h.u = c
h.w = c
d.q = c
i.u = d
i.v = c
i.s = j
c.z = g
c.s = g
c.q = g
c.p = j
c.o = j
c.w = d
j.s = h
j.o = h
j.q = d
j.w = i
assert f.u.s.p.q.q.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.w: E = None
self.p: D = None
self.u: B = None
self.q: C = None
self.t: G = None
self.v: D = None
self.z: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: E = None
self.w: F = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: E = None
self.s: D = None
self.o: D = None
self.u: F = None
self.w: F = None
self.x: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: D = None
self.v: F = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.s: A = None
self.p: G = None
self.q: A = None
self.o: G = None
self.w: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: C = None
self.q: D = None
self.o: C = None
self.w: E = None
self.txt = txt
g = A("g")
f = B("f")
h = C("h")
d = D("d")
i = E("i")
c = F("c")
j = G("j")
g.w = i
g.p = d
g.v = d
g.u = f
g.q = h
g.t = j
g.z = j
f.y = i
f.w = c
f.u = c
h.p = i
h.s = d
h.o = d
h.x = d
h.u = c
h.w = c
d.q = c
i.u = d
i.v = c
i.s = j
c.z = g
c.s = g
c.q = g
c.p = j
c.o = j
c.w = d
j.s = h
j.o = h
j.q = d
j.w = i
assert f.u.s.p.q.q.v.txt == "d" | f | c | g | d | c | g | d | x | 7 | 20 | 7 | 6 | 3 |
5,572 | class A:
def __init__(self, txt: str):
self.p: G = None
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: F = None
self.w: F = None
self.q: F = None
self.o: D = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: G = None
self.q: E = None
self.v: D = None
self.o: E = None
self.s: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: G = None
self.z: F = None
self.p: B = None
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.x: F = None
self.y: G = None
self.w: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.o: E = None
self.t: A = None
self.w: B = None
self.x: C = None
self.q: B = None
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
h = A("h")
i = B("i")
c = C("c")
f = D("f")
a = E("a")
b = F("b")
g = G("g")
h.p = g
h.z = b
i.z = b
i.x = b
i.w = b
i.q = b
i.y = a
i.o = f
i.p = h
c.z = g
c.y = g
c.q = a
c.o = a
c.s = a
c.v = f
f.x = g
f.z = b
f.p = i
f.r = i
a.r = f
a.x = b
a.y = g
a.w = c
b.z = c
b.x = c
b.o = a
b.t = h
b.w = i
b.q = i
b.y = f
g.r = h
assert c.y.r.p.r.txt == " | h" | class A:
def __init__(self, txt: str):
self.p: G = None
self.z: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.y: E = None
self.x: F = None
self.w: F = None
self.q: F = None
self.o: D = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.y: G = None
self.q: E = None
self.v: D = None
self.o: E = None
self.s: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: G = None
self.z: F = None
self.p: B = None
self.r: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: D = None
self.x: F = None
self.y: G = None
self.w: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: C = None
self.o: E = None
self.t: A = None
self.w: B = None
self.x: C = None
self.q: B = None
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
h = A("h")
i = B("i")
c = C("c")
f = D("f")
a = E("a")
b = F("b")
g = G("g")
h.p = g
h.z = b
i.z = b
i.x = b
i.w = b
i.q = b
i.y = a
i.o = f
i.p = h
c.z = g
c.y = g
c.q = a
c.o = a
c.s = a
c.v = f
f.x = g
f.z = b
f.p = i
f.r = i
a.r = f
a.x = b
a.y = g
a.w = c
b.z = c
b.x = c
b.o = a
b.t = h
b.w = i
b.q = i
b.y = f
g.r = h
assert c.y.r.p.r.txt == "h" | c | g | h | g | h | x | x | x | 7 | 22 | 7 | 4 | 2 |
5,573 | class A:
def __init__(self, txt: str):
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: F = None
self.z: E = None
self.y: G = None
self.v: C = None
self.r: C = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.r: G = None
self.v: E = None
self.q: B = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.t: G = None
self.r: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.x: C = None
self.w: C = None
self.u: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: C = None
self.o: A = None
self.y: D = None
self.u: C = None
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: A = None
self.p: D = None
self.v: B = None
self.txt = txt
g = A("g")
h = B("h")
d = C("d")
e = D("e")
f = E("f")
c = F("c")
i = G("i")
g.o = c
h.x = c
h.z = f
h.y = i
h.v = d
h.r = d
h.p = e
d.y = g
d.r = i
d.v = f
d.q = h
d.t = e
e.s = i
e.t = i
e.r = i
f.r = d
f.x = d
f.w = d
f.u = i
c.p = d
c.u = d
c.o = g
c.y = e
c.q = i
i.s = g
i.p = e
i.v = h
assert d.r.s.o.q.p.txt == " | e" | class A:
def __init__(self, txt: str):
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: F = None
self.z: E = None
self.y: G = None
self.v: C = None
self.r: C = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.r: G = None
self.v: E = None
self.q: B = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.t: G = None
self.r: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.x: C = None
self.w: C = None
self.u: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: C = None
self.o: A = None
self.y: D = None
self.u: C = None
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: A = None
self.p: D = None
self.v: B = None
self.txt = txt
g = A("g")
h = B("h")
d = C("d")
e = D("e")
f = E("f")
c = F("c")
i = G("i")
g.o = c
h.x = c
h.z = f
h.y = i
h.v = d
h.r = d
h.p = e
d.y = g
d.r = i
d.v = f
d.q = h
d.t = e
e.s = i
e.t = i
e.r = i
f.r = d
f.x = d
f.w = d
f.u = i
c.p = d
c.u = d
c.o = g
c.y = e
c.q = i
i.s = g
i.p = e
i.v = h
assert d.r.s.o.q.p.txt == "e" | d | i | g | c | i | e | x | x | 7 | 21 | 7 | 5 | 1 |
5,574 | class A:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.w: D = None
self.q: C = None
self.u: A = None
self.t: D = None
self.o: F = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.q: B = 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.y: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.z: B = None
self.u: D = None
self.v: A = None
self.x: D = None
self.y: E = None
self.o: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
f = A("f")
e = B("e")
b = C("b")
d = D("d")
a = E("a")
i = F("i")
g = G("g")
f.p = d
e.v = f
e.u = f
e.w = d
e.t = d
e.q = b
e.y = b
e.o = i
b.z = a
b.q = e
d.r = e
a.y = b
i.p = d
i.u = d
i.x = d
i.z = e
i.v = f
i.y = a
i.o = a
g.q = i
assert g.q.z.w.r.v.p.txt == " | d" | class A:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.w: D = None
self.q: C = None
self.u: A = None
self.t: D = None
self.o: F = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: E = None
self.q: B = 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.y: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.z: B = None
self.u: D = None
self.v: A = None
self.x: D = None
self.y: E = None
self.o: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
f = A("f")
e = B("e")
b = C("b")
d = D("d")
a = E("a")
i = F("i")
g = G("g")
f.p = d
e.v = f
e.u = f
e.w = d
e.t = d
e.q = b
e.y = b
e.o = i
b.z = a
b.q = e
d.r = e
a.y = b
i.p = d
i.u = d
i.x = d
i.z = e
i.v = f
i.y = a
i.o = a
g.q = i
assert g.q.z.w.r.v.p.txt == "d" | g | i | e | d | e | f | d | x | 7 | 14 | 7 | 6 | 2 |
5,575 | class A:
def __init__(self, txt: str):
self.o: E = None
self.s: E = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: G = None
self.z: G = None
self.t: G = None
self.s: D = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.v: G = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: C = None
self.y: C = None
self.txt = txt
j = A("j")
b = B("b")
g = C("g")
e = D("e")
h = E("h")
a = F("a")
d = G("d")
j.o = h
j.s = h
j.z = g
b.p = d
g.r = d
g.z = d
g.t = d
g.s = e
g.v = j
e.p = a
e.v = d
e.x = h
h.s = e
a.y = g
d.s = g
d.y = g
assert j.o.s.v.txt == " | d" | class A:
def __init__(self, txt: str):
self.o: E = None
self.s: E = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: G = None
self.z: G = None
self.t: G = None
self.s: D = None
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: F = None
self.v: G = None
self.x: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: C = None
self.y: C = None
self.txt = txt
j = A("j")
b = B("b")
g = C("g")
e = D("e")
h = E("h")
a = F("a")
d = G("d")
j.o = h
j.s = h
j.z = g
b.p = d
g.r = d
g.z = d
g.t = d
g.s = e
g.v = j
e.p = a
e.v = d
e.x = h
h.s = e
a.y = g
d.s = g
d.y = g
assert j.o.s.v.txt == "d" | j | h | e | d | x | x | x | x | 7 | 12 | 7 | 3 | 0 |
5,576 | class A:
def __init__(self, txt: str):
self.w: E = None
self.o: B = None
self.z: C = None
self.u: F = None
self.r: G = None
self.t: F = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.w: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.r: B = 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.p: B = None
self.z: A = None
self.x: A = None
self.r: G = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: D = None
self.p: G = None
self.q: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: B = None
self.s: A = None
self.x: A = None
self.t: B = None
self.w: C = None
self.txt = txt
b = A("b")
d = B("d")
i = C("i")
f = D("f")
h = E("h")
e = F("e")
a = G("a")
b.w = h
b.o = d
b.z = i
b.y = i
b.u = e
b.t = e
b.r = a
d.z = i
d.w = e
i.z = a
i.r = d
f.r = h
h.p = d
h.z = b
h.x = b
h.r = a
h.w = e
e.y = f
e.p = a
e.q = d
a.p = d
a.t = d
a.s = b
a.x = b
a.w = i
assert e.p.w.z.w.r.w.q.txt == " | d" | class A:
def __init__(self, txt: str):
self.w: E = None
self.o: B = None
self.z: C = None
self.u: F = None
self.r: G = None
self.t: F = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.w: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: G = None
self.r: B = 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.p: B = None
self.z: A = None
self.x: A = None
self.r: G = None
self.w: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: D = None
self.p: G = None
self.q: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: B = None
self.s: A = None
self.x: A = None
self.t: B = None
self.w: C = None
self.txt = txt
b = A("b")
d = B("d")
i = C("i")
f = D("f")
h = E("h")
e = F("e")
a = G("a")
b.w = h
b.o = d
b.z = i
b.y = i
b.u = e
b.t = e
b.r = a
d.z = i
d.w = e
i.z = a
i.r = d
f.r = h
h.p = d
h.z = b
h.x = b
h.r = a
h.w = e
e.y = f
e.p = a
e.q = d
a.p = d
a.t = d
a.s = b
a.x = b
a.w = i
assert e.p.w.z.w.r.w.q.txt == "d" | e | a | i | a | i | d | e | d | 7 | 20 | 7 | 7 | 4 |
5,577 | class A:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.v: D = None
self.t: A = None
self.u: D = None
self.q: G = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.u: B = None
self.x: A = None
self.o: B = None
self.s: E = None
self.z: B = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: A = None
self.q: B = None
self.s: B = None
self.p: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: B = None
self.x: A = None
self.txt = txt
f = A("f")
i = B("i")
h = C("h")
c = D("c")
b = E("b")
j = F("j")
a = G("a")
f.u = c
i.z = c
i.v = c
i.u = c
i.s = c
i.t = f
i.q = a
h.t = i
c.w = j
c.u = i
c.o = i
c.z = i
c.x = f
c.s = b
c.p = b
b.x = h
j.w = f
j.q = i
j.s = i
j.p = h
a.t = i
a.x = f
assert c.o.t.u.x.u.txt == " | c" | class A:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.v: D = None
self.t: A = None
self.u: D = None
self.q: G = None
self.s: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.u: B = None
self.x: A = None
self.o: B = None
self.s: E = None
self.z: B = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: A = None
self.q: B = None
self.s: B = None
self.p: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.t: B = None
self.x: A = None
self.txt = txt
f = A("f")
i = B("i")
h = C("h")
c = D("c")
b = E("b")
j = F("j")
a = G("a")
f.u = c
i.z = c
i.v = c
i.u = c
i.s = c
i.t = f
i.q = a
h.t = i
c.w = j
c.u = i
c.o = i
c.z = i
c.x = f
c.s = b
c.p = b
b.x = h
j.w = f
j.q = i
j.s = i
j.p = h
a.t = i
a.x = f
assert c.o.t.u.x.u.txt == "c" | c | i | f | c | f | c | x | x | 7 | 15 | 7 | 5 | 3 |
5,578 | class A:
def __init__(self, txt: str):
self.q: C = None
self.p: E = None
self.w: E = None
self.o: E = None
self.s: D = None
self.u: E = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.q: C = None
self.r: G = None
self.t: A = None
self.o: E = None
self.s: E = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.w: C = None
self.u: A = None
self.s: F = None
self.p: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.v: F = None
self.u: D = None
self.p: F = None
self.t: B = None
self.q: G = None
self.o: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: B = None
self.w: A = None
self.s: C = None
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: C = None
self.o: B = None
self.txt = txt
j = A("j")
a = B("a")
h = C("h")
f = D("f")
i = E("i")
b = F("b")
d = G("d")
j.q = h
j.p = i
j.w = i
j.o = i
j.u = i
j.z = i
j.s = f
a.y = h
a.q = h
a.r = d
a.t = j
a.o = i
a.s = i
a.p = b
h.u = i
h.p = f
f.y = j
f.u = j
f.w = h
f.s = b
f.p = b
i.r = h
i.v = b
i.p = b
i.u = f
i.o = f
i.t = a
i.q = d
b.u = a
b.w = j
b.s = h
b.y = f
d.v = h
d.o = a
assert d.v.p.s.y.u.s.s.txt == " | b" | class A:
def __init__(self, txt: str):
self.q: C = None
self.p: E = None
self.w: E = None
self.o: E = None
self.s: D = None
self.u: E = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.q: C = None
self.r: G = None
self.t: A = None
self.o: E = None
self.s: E = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.w: C = None
self.u: A = None
self.s: F = None
self.p: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.v: F = None
self.u: D = None
self.p: F = None
self.t: B = None
self.q: G = None
self.o: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: B = None
self.w: A = None
self.s: C = None
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.v: C = None
self.o: B = None
self.txt = txt
j = A("j")
a = B("a")
h = C("h")
f = D("f")
i = E("i")
b = F("b")
d = G("d")
j.q = h
j.p = i
j.w = i
j.o = i
j.u = i
j.z = i
j.s = f
a.y = h
a.q = h
a.r = d
a.t = j
a.o = i
a.s = i
a.p = b
h.u = i
h.p = f
f.y = j
f.u = j
f.w = h
f.s = b
f.p = b
i.r = h
i.v = b
i.p = b
i.u = f
i.o = f
i.t = a
i.q = d
b.u = a
b.w = j
b.s = h
b.y = f
d.v = h
d.o = a
assert d.v.p.s.y.u.s.s.txt == "b" | d | h | f | b | f | j | f | b | 7 | 24 | 7 | 7 | 3 |
5,579 | class A:
def __init__(self, txt: str):
self.v: F = None
self.r: B = None
self.y: E = None
self.o: B = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.w: F = None
self.o: E = None
self.x: E = None
self.u: F = None
self.r: E = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.p: B = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: E = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.q: C = None
self.u: C = None
self.s: G = None
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: A = None
self.x: B = None
self.v: C = None
self.y: C = None
self.u: C = None
self.z: A = None
self.txt = txt
f = A("f")
e = B("e")
a = C("a")
c = D("c")
g = E("g")
j = F("j")
b = G("b")
f.v = j
f.r = e
f.o = e
f.y = g
f.z = g
e.p = c
e.w = j
e.u = j
e.o = g
e.x = g
e.r = g
e.s = a
a.u = f
a.p = e
a.t = j
c.q = g
c.u = a
g.t = f
j.p = c
j.q = a
j.u = a
j.s = b
j.y = e
b.q = f
b.z = f
b.x = e
b.v = a
b.y = a
b.u = a
assert g.t.z.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.v: F = None
self.r: B = None
self.y: E = None
self.o: B = None
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.w: F = None
self.o: E = None
self.x: E = None
self.u: F = None
self.r: E = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.p: B = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: E = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: D = None
self.q: C = None
self.u: C = None
self.s: G = None
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: A = None
self.x: B = None
self.v: C = None
self.y: C = None
self.u: C = None
self.z: A = None
self.txt = txt
f = A("f")
e = B("e")
a = C("a")
c = D("c")
g = E("g")
j = F("j")
b = G("b")
f.v = j
f.r = e
f.o = e
f.y = g
f.z = g
e.p = c
e.w = j
e.u = j
e.o = g
e.x = g
e.r = g
e.s = a
a.u = f
a.p = e
a.t = j
c.q = g
c.u = a
g.t = f
j.p = c
j.q = a
j.u = a
j.s = b
j.y = e
b.q = f
b.z = f
b.x = e
b.v = a
b.y = a
b.u = a
assert g.t.z.t.txt == "f" | g | f | g | f | x | x | x | x | 7 | 20 | 7 | 3 | 2 |
5,580 | class A:
def __init__(self, txt: str):
self.x: F = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.o: D = None
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.o: B = None
self.u: G = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.x: A = None
self.y: G = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: G = None
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: C = None
self.z: E = None
self.x: E = None
self.y: B = None
self.o: F = None
self.v: E = None
self.u: B = None
self.txt = txt
f = A("f")
h = B("h")
i = C("i")
c = D("c")
d = E("d")
a = F("a")
b = G("b")
f.x = a
f.s = i
h.r = b
h.y = b
h.o = c
i.x = d
i.o = h
i.v = h
i.u = b
c.s = f
c.q = f
c.x = f
c.y = b
c.r = d
d.p = b
d.y = h
a.t = i
b.q = i
b.z = d
b.x = d
b.v = d
b.y = h
b.u = h
b.o = a
assert b.q.u.u.o.r.p.u.txt == " | h" | class A:
def __init__(self, txt: str):
self.x: F = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.o: D = None
self.y: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.o: B = None
self.u: G = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.x: A = None
self.y: G = None
self.r: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: G = None
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: C = None
self.z: E = None
self.x: E = None
self.y: B = None
self.o: F = None
self.v: E = None
self.u: B = None
self.txt = txt
f = A("f")
h = B("h")
i = C("i")
c = D("c")
d = E("d")
a = F("a")
b = G("b")
f.x = a
f.s = i
h.r = b
h.y = b
h.o = c
i.x = d
i.o = h
i.v = h
i.u = b
c.s = f
c.q = f
c.x = f
c.y = b
c.r = d
d.p = b
d.y = h
a.t = i
b.q = i
b.z = d
b.x = d
b.v = d
b.y = h
b.u = h
b.o = a
assert b.q.u.u.o.r.p.u.txt == "h" | b | i | b | h | c | d | b | h | 7 | 17 | 7 | 7 | 3 |
5,581 | class A:
def __init__(self, txt: str):
self.w: C = None
self.z: B = None
self.p: E = None
self.y: E = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.x: A = None
self.p: F = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.s: E = None
self.z: E = None
self.y: E = None
self.x: B = None
self.o: B = None
self.r: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: G = None
self.o: B = None
self.r: B = None
self.z: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: E = None
self.y: C = None
self.r: E = None
self.q: F = None
self.txt = txt
i = A("i")
d = B("d")
g = C("g")
c = D("c")
j = E("j")
h = F("h")
e = G("e")
i.w = g
i.z = d
i.r = d
i.p = j
i.y = j
d.t = c
d.w = j
g.s = d
g.y = d
g.x = i
g.p = h
c.w = g
c.s = j
c.z = j
c.y = j
c.x = d
c.o = d
c.r = e
j.v = e
j.o = d
j.r = d
j.z = h
h.q = e
e.x = j
e.r = j
e.y = g
e.q = h
assert j.r.w.z.q.q.q.txt == " | e" | class A:
def __init__(self, txt: str):
self.w: C = None
self.z: B = None
self.p: E = None
self.y: E = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: D = None
self.w: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.x: A = None
self.p: F = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.s: E = None
self.z: E = None
self.y: E = None
self.x: B = None
self.o: B = None
self.r: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: G = None
self.o: B = None
self.r: B = None
self.z: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: E = None
self.y: C = None
self.r: E = None
self.q: F = None
self.txt = txt
i = A("i")
d = B("d")
g = C("g")
c = D("c")
j = E("j")
h = F("h")
e = G("e")
i.w = g
i.z = d
i.r = d
i.p = j
i.y = j
d.t = c
d.w = j
g.s = d
g.y = d
g.x = i
g.p = h
c.w = g
c.s = j
c.z = j
c.y = j
c.x = d
c.o = d
c.r = e
j.v = e
j.o = d
j.r = d
j.z = h
h.q = e
e.x = j
e.r = j
e.y = g
e.q = h
assert j.r.w.z.q.q.q.txt == "e" | j | d | j | h | e | h | e | x | 7 | 19 | 7 | 6 | 3 |
5,582 | class A:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: E = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.p: B = None
self.z: F = None
self.t: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.x: G = None
self.r: D = None
self.q: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.s: G = None
self.q: B = None
self.v: B = None
self.p: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: D = None
self.w: A = None
self.txt = txt
i = A("i")
d = B("d")
j = C("j")
g = D("g")
e = E("e")
c = F("c")
f = G("f")
i.u = e
d.p = e
d.s = f
j.s = f
j.t = f
j.p = d
j.z = c
g.s = f
g.x = d
e.y = d
e.x = f
e.r = g
e.q = j
c.z = i
c.s = f
c.q = d
c.v = d
c.p = g
f.o = g
f.w = i
assert d.s.w.u.x.o.txt == " | g" | class A:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: E = None
self.s: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.p: B = None
self.z: F = None
self.t: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.x: G = None
self.r: D = None
self.q: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: A = None
self.s: G = None
self.q: B = None
self.v: B = None
self.p: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.o: D = None
self.w: A = None
self.txt = txt
i = A("i")
d = B("d")
j = C("j")
g = D("g")
e = E("e")
c = F("c")
f = G("f")
i.u = e
d.p = e
d.s = f
j.s = f
j.t = f
j.p = d
j.z = c
g.s = f
g.x = d
e.y = d
e.x = f
e.r = g
e.q = j
c.z = i
c.s = f
c.q = d
c.v = d
c.p = g
f.o = g
f.w = i
assert d.s.w.u.x.o.txt == "g" | d | f | i | e | f | g | x | x | 7 | 18 | 7 | 5 | 1 |
5,583 | class A:
def __init__(self, txt: str):
self.u: B = None
self.r: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.z: F = None
self.q: A = None
self.w: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.u: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.o: A = None
self.r: B = None
self.s: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.t: D = None
self.w: A = None
self.x: A = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.p: B = None
self.s: C = None
self.txt = txt
h = A("h")
f = B("f")
b = C("b")
i = D("i")
g = E("g")
j = F("j")
e = G("e")
h.u = f
h.r = e
f.r = g
f.z = j
f.q = h
f.w = i
b.w = f
i.r = b
i.u = e
g.t = i
g.o = h
g.r = f
g.s = j
j.z = i
j.t = i
j.w = h
j.x = h
j.y = b
e.z = i
e.p = f
e.s = b
assert b.w.w.u.txt == " | e" | class A:
def __init__(self, txt: str):
self.u: B = None
self.r: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: E = None
self.z: F = None
self.q: A = None
self.w: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.u: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.o: A = None
self.r: B = None
self.s: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: D = None
self.t: D = None
self.w: A = None
self.x: A = None
self.y: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.z: D = None
self.p: B = None
self.s: C = None
self.txt = txt
h = A("h")
f = B("f")
b = C("b")
i = D("i")
g = E("g")
j = F("j")
e = G("e")
h.u = f
h.r = e
f.r = g
f.z = j
f.q = h
f.w = i
b.w = f
i.r = b
i.u = e
g.t = i
g.o = h
g.r = f
g.s = j
j.z = i
j.t = i
j.w = h
j.x = h
j.y = b
e.z = i
e.p = f
e.s = b
assert b.w.w.u.txt == "e" | b | f | i | e | x | x | x | x | 7 | 19 | 7 | 3 | 0 |
5,584 | class A:
def __init__(self, txt: str):
self.t: F = None
self.w: G = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: G = None
self.y: G = None
self.r: G = None
self.u: F = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.p: G = None
self.y: A = None
self.o: C = None
self.x: G = None
self.t: A = None
self.u: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.p: A = None
self.o: E = None
self.w: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: E = None
self.y: F = None
self.z: D = None
self.u: C = None
self.w: C = None
self.x: B = None
self.s: D = None
self.txt = txt
h = A("h")
b = B("b")
g = C("g")
a = D("a")
j = E("j")
e = F("e")
f = G("f")
h.t = e
h.w = f
h.r = g
b.t = f
g.o = f
g.y = f
g.r = f
g.u = e
g.v = b
a.w = j
j.z = e
j.p = f
j.x = f
j.u = f
j.y = h
j.t = h
j.o = g
e.z = b
e.p = h
e.o = j
e.w = g
f.r = j
f.y = e
f.z = a
f.s = a
f.u = g
f.w = g
f.x = b
assert a.w.o.v.t.u.v.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.t: F = None
self.w: G = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: G = None
self.y: G = None
self.r: G = None
self.u: F = None
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: F = None
self.p: G = None
self.y: A = None
self.o: C = None
self.x: G = None
self.t: A = None
self.u: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: B = None
self.p: A = None
self.o: E = None
self.w: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: E = None
self.y: F = None
self.z: D = None
self.u: C = None
self.w: C = None
self.x: B = None
self.s: D = None
self.txt = txt
h = A("h")
b = B("b")
g = C("g")
a = D("a")
j = E("j")
e = F("e")
f = G("f")
h.t = e
h.w = f
h.r = g
b.t = f
g.o = f
g.y = f
g.r = f
g.u = e
g.v = b
a.w = j
j.z = e
j.p = f
j.x = f
j.u = f
j.y = h
j.t = h
j.o = g
e.z = b
e.p = h
e.o = j
e.w = g
f.r = j
f.y = e
f.z = a
f.s = a
f.u = g
f.w = g
f.x = b
assert a.w.o.v.t.u.v.t.txt == "f" | a | j | g | b | f | g | b | f | 7 | 21 | 7 | 7 | 3 |
5,585 | class A:
def __init__(self, txt: str):
self.t: E = None
self.w: B = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.r: F = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: F = None
self.t: A = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.t: C = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: E = None
self.w: G = None
self.o: B = None
self.t: E = None
self.u: C = None
self.x: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: D = None
self.s: E = None
self.txt = txt
h = A("h")
f = B("f")
j = C("j")
e = D("e")
b = E("b")
i = F("i")
c = G("c")
h.t = b
h.o = b
h.w = f
f.z = h
f.r = i
f.p = b
j.u = i
j.t = h
j.p = e
e.q = f
e.t = j
e.v = b
b.y = f
i.y = b
i.t = b
i.w = c
i.o = f
i.u = j
i.x = e
c.q = e
c.s = b
assert i.o.z.o.y.txt == " | f" | class A:
def __init__(self, txt: str):
self.t: E = None
self.w: B = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.r: F = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: F = None
self.t: A = None
self.p: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.t: C = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: E = None
self.w: G = None
self.o: B = None
self.t: E = None
self.u: C = None
self.x: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.q: D = None
self.s: E = None
self.txt = txt
h = A("h")
f = B("f")
j = C("j")
e = D("e")
b = E("b")
i = F("i")
c = G("c")
h.t = b
h.o = b
h.w = f
f.z = h
f.r = i
f.p = b
j.u = i
j.t = h
j.p = e
e.q = f
e.t = j
e.v = b
b.y = f
i.y = b
i.t = b
i.w = c
i.o = f
i.u = j
i.x = e
c.q = e
c.s = b
assert i.o.z.o.y.txt == "f" | i | f | h | b | f | x | x | x | 7 | 19 | 7 | 4 | 1 |
5,586 | class A:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: G = None
self.q: C = None
self.o: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: E = None
self.s: F = None
self.u: D = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: C = None
self.t: D = None
self.q: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: C = None
self.t: B = None
self.v: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: D = None
self.r: D = None
self.z: D = None
self.y: B = None
self.v: A = None
self.txt = txt
g = A("g")
d = B("d")
a = C("a")
e = D("e")
i = E("i")
b = F("b")
c = G("c")
g.z = i
d.u = c
d.o = c
d.q = a
a.v = i
a.s = b
a.t = b
a.u = e
e.w = d
i.v = a
i.t = e
i.q = e
b.r = a
b.t = d
b.v = g
c.u = e
c.r = e
c.z = e
c.y = d
c.v = g
assert c.y.q.v.t.w.o.v.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: G = None
self.q: C = None
self.o: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: E = None
self.s: F = None
self.u: D = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: C = None
self.t: D = None
self.q: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: C = None
self.t: B = None
self.v: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: D = None
self.r: D = None
self.z: D = None
self.y: B = None
self.v: A = None
self.txt = txt
g = A("g")
d = B("d")
a = C("a")
e = D("e")
i = E("i")
b = F("b")
c = G("c")
g.z = i
d.u = c
d.o = c
d.q = a
a.v = i
a.s = b
a.t = b
a.u = e
e.w = d
i.v = a
i.t = e
i.q = e
b.r = a
b.t = d
b.v = g
c.u = e
c.r = e
c.z = e
c.y = d
c.v = g
assert c.y.q.v.t.w.o.v.txt == "g" | c | d | a | i | e | d | c | g | 7 | 15 | 7 | 7 | 2 |
5,587 | class A:
def __init__(self, txt: str):
self.x: G = None
self.w: B = None
self.s: C = None
self.y: E = None
self.q: B = None
self.z: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.w: A = None
self.v: A = None
self.q: G = 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: G = None
self.p: D = None
self.w: G = None
self.z: C = None
self.u: B = None
self.t: A = None
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.r: A = None
self.s: G = None
self.v: A = None
self.q: G = None
self.z: C = None
self.o: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: D = None
self.p: E = None
self.z: A = None
self.s: D = None
self.txt = txt
c = A("c")
h = B("h")
g = C("g")
i = D("i")
b = E("b")
e = F("e")
a = G("a")
c.x = a
c.z = a
c.w = h
c.q = h
c.s = g
c.y = b
h.x = c
g.s = c
g.w = c
g.v = c
g.q = a
i.t = e
b.r = a
b.w = a
b.p = i
b.s = i
b.z = g
b.u = h
b.t = c
e.y = c
e.r = c
e.v = c
e.s = a
e.q = a
e.z = g
e.o = g
a.x = i
a.s = i
a.p = b
a.z = c
assert i.t.z.w.x.z.txt == " | c" | class A:
def __init__(self, txt: str):
self.x: G = None
self.w: B = None
self.s: C = None
self.y: E = None
self.q: B = None
self.z: G = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.w: A = None
self.v: A = None
self.q: G = 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: G = None
self.p: D = None
self.w: G = None
self.z: C = None
self.u: B = None
self.t: A = None
self.s: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: A = None
self.r: A = None
self.s: G = None
self.v: A = None
self.q: G = None
self.z: C = None
self.o: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: D = None
self.p: E = None
self.z: A = None
self.s: D = None
self.txt = txt
c = A("c")
h = B("h")
g = C("g")
i = D("i")
b = E("b")
e = F("e")
a = G("a")
c.x = a
c.z = a
c.w = h
c.q = h
c.s = g
c.y = b
h.x = c
g.s = c
g.w = c
g.v = c
g.q = a
i.t = e
b.r = a
b.w = a
b.p = i
b.s = i
b.z = g
b.u = h
b.t = c
e.y = c
e.r = c
e.v = c
e.s = a
e.q = a
e.z = g
e.o = g
a.x = i
a.s = i
a.p = b
a.z = c
assert i.t.z.w.x.z.txt == "c" | i | e | g | c | a | c | x | x | 7 | 19 | 7 | 5 | 1 |
5,588 | class A:
def __init__(self, txt: str):
self.z: G = None
self.q: C = None
self.s: E = None
self.x: B = None
self.r: C = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: F = None
self.s: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.p: C = None
self.v: A = None
self.s: B = None
self.o: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: E = None
self.q: A = None
self.y: F = None
self.txt = txt
b = A("b")
f = B("f")
c = C("c")
d = D("d")
h = E("h")
i = F("i")
g = G("g")
b.z = g
b.q = c
b.r = c
b.y = c
b.s = h
b.x = f
f.r = g
c.y = h
c.p = f
d.r = i
d.s = b
h.z = f
h.s = f
h.p = c
h.v = b
h.o = b
i.q = g
g.p = h
g.q = b
g.y = i
assert g.q.s.p.p.r.y.q.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: G = None
self.q: C = None
self.s: E = None
self.x: B = None
self.r: C = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.p: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: F = None
self.s: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.p: C = None
self.v: A = None
self.s: B = None
self.o: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: E = None
self.q: A = None
self.y: F = None
self.txt = txt
b = A("b")
f = B("f")
c = C("c")
d = D("d")
h = E("h")
i = F("i")
g = G("g")
b.z = g
b.q = c
b.r = c
b.y = c
b.s = h
b.x = f
f.r = g
c.y = h
c.p = f
d.r = i
d.s = b
h.z = f
h.s = f
h.p = c
h.v = b
h.o = b
i.q = g
g.p = h
g.q = b
g.y = i
assert g.q.s.p.p.r.y.q.txt == "g" | g | b | h | c | f | g | i | g | 7 | 16 | 7 | 7 | 2 |
5,589 | class A:
def __init__(self, txt: str):
self.q: E = None
self.y: B = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.x: A = None
self.s: E = None
self.z: G = None
self.r: E = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: E = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: F = None
self.q: F = None
self.s: B = None
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: C = None
self.v: B = None
self.o: A = None
self.p: C = None
self.r: C = None
self.q: B = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: G = None
self.s: D = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
g = A("g")
f = B("f")
a = C("a")
i = D("i")
c = E("c")
b = F("b")
j = G("j")
g.q = c
g.y = f
g.z = i
f.u = a
f.x = g
f.p = g
f.s = c
f.r = c
f.z = j
a.s = c
a.x = c
i.t = b
i.q = b
i.s = f
i.z = g
c.w = a
c.p = a
c.r = a
c.v = f
c.q = f
c.o = g
c.s = j
b.t = j
b.s = i
b.y = g
j.s = i
assert g.q.q.z.txt == " | j" | class A:
def __init__(self, txt: str):
self.q: E = None
self.y: B = None
self.z: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.x: A = None
self.s: E = None
self.z: G = None
self.r: E = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: E = None
self.x: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: F = None
self.q: F = None
self.s: B = None
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: C = None
self.v: B = None
self.o: A = None
self.p: C = None
self.r: C = None
self.q: B = None
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: G = None
self.s: D = None
self.y: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
g = A("g")
f = B("f")
a = C("a")
i = D("i")
c = E("c")
b = F("b")
j = G("j")
g.q = c
g.y = f
g.z = i
f.u = a
f.x = g
f.p = g
f.s = c
f.r = c
f.z = j
a.s = c
a.x = c
i.t = b
i.q = b
i.s = f
i.z = g
c.w = a
c.p = a
c.r = a
c.v = f
c.q = f
c.o = g
c.s = j
b.t = j
b.s = i
b.y = g
j.s = i
assert g.q.q.z.txt == "j" | g | c | f | j | x | x | x | x | 7 | 19 | 7 | 3 | 0 |
5,590 | class A:
def __init__(self, txt: str):
self.s: C = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.q: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.s: G = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: D = None
self.y: A = None
self.z: G = None
self.q: C = None
self.p: G = None
self.r: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.r: E = None
self.u: G = None
self.y: E = None
self.x: G = None
self.z: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: D = None
self.r: C = None
self.u: C = None
self.txt = txt
d = A("d")
f = B("f")
i = C("i")
j = D("j")
a = E("a")
e = F("e")
g = G("g")
d.s = i
d.v = j
f.z = i
f.q = e
i.t = j
j.p = g
j.s = g
j.u = i
a.s = j
a.y = d
a.z = g
a.p = g
a.r = g
a.q = i
e.s = d
e.r = a
e.y = a
e.z = a
e.u = g
e.x = g
g.w = j
g.r = i
g.u = i
assert f.z.t.u.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.s: C = None
self.v: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.q: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: G = None
self.s: G = None
self.u: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: D = None
self.y: A = None
self.z: G = None
self.q: C = None
self.p: G = None
self.r: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: A = None
self.r: E = None
self.u: G = None
self.y: E = None
self.x: G = None
self.z: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: D = None
self.r: C = None
self.u: C = None
self.txt = txt
d = A("d")
f = B("f")
i = C("i")
j = D("j")
a = E("a")
e = F("e")
g = G("g")
d.s = i
d.v = j
f.z = i
f.q = e
i.t = j
j.p = g
j.s = g
j.u = i
a.s = j
a.y = d
a.z = g
a.p = g
a.r = g
a.q = i
e.s = d
e.r = a
e.y = a
e.z = a
e.u = g
e.x = g
g.w = j
g.r = i
g.u = i
assert f.z.t.u.t.txt == "j" | f | i | j | i | j | x | x | x | 7 | 16 | 7 | 4 | 2 |
5,591 | class A:
def __init__(self, txt: str):
self.u: G = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.p: F = None
self.w: E = None
self.o: E = None
self.y: G = None
self.u: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: A = None
self.w: C = None
self.u: D = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: A = None
self.q: E = None
self.z: F = None
self.txt = txt
g = A("g")
i = B("i")
j = C("j")
e = D("e")
d = E("d")
h = F("h")
b = G("b")
g.u = b
g.q = e
i.s = g
j.p = i
j.u = i
e.t = b
e.y = b
e.u = b
e.p = h
e.w = d
e.o = d
d.p = g
d.w = j
d.u = e
d.v = b
h.w = i
b.w = g
b.q = d
b.z = h
assert i.s.q.p.w.s.u.q.txt == " | d" | class A:
def __init__(self, txt: str):
self.u: G = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: G = None
self.p: F = None
self.w: E = None
self.o: E = None
self.y: G = None
self.u: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: A = None
self.w: C = None
self.u: D = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: A = None
self.q: E = None
self.z: F = None
self.txt = txt
g = A("g")
i = B("i")
j = C("j")
e = D("e")
d = E("d")
h = F("h")
b = G("b")
g.u = b
g.q = e
i.s = g
j.p = i
j.u = i
e.t = b
e.y = b
e.u = b
e.p = h
e.w = d
e.o = d
d.p = g
d.w = j
d.u = e
d.v = b
h.w = i
b.w = g
b.q = d
b.z = h
assert i.s.q.p.w.s.u.q.txt == "d" | i | g | e | h | i | g | b | d | 7 | 15 | 7 | 7 | 2 |
5,592 | class A:
def __init__(self, txt: str):
self.t: C = None
self.p: G = None
self.v: F = None
self.y: C = None
self.q: G = 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.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: G = None
self.s: G = None
self.y: A = None
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.u: D = None
self.t: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: F = None
self.w: F = None
self.v: A = None
self.q: E = None
self.txt = txt
a = A("a")
h = B("h")
f = C("f")
e = D("e")
g = E("g")
j = F("j")
c = G("c")
a.t = f
a.y = f
a.p = c
a.q = c
a.v = j
h.q = f
f.x = h
e.v = f
g.u = c
g.s = c
g.t = c
g.y = a
j.x = f
j.u = e
j.t = a
c.p = j
c.w = j
c.v = a
c.q = g
assert f.x.q.x.txt == " | h" | class A:
def __init__(self, txt: str):
self.t: C = None
self.p: G = None
self.v: F = None
self.y: C = None
self.q: G = 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.x: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: G = None
self.s: G = None
self.y: A = None
self.t: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: C = None
self.u: D = None
self.t: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: F = None
self.w: F = None
self.v: A = None
self.q: E = None
self.txt = txt
a = A("a")
h = B("h")
f = C("f")
e = D("e")
g = E("g")
j = F("j")
c = G("c")
a.t = f
a.y = f
a.p = c
a.q = c
a.v = j
h.q = f
f.x = h
e.v = f
g.u = c
g.s = c
g.t = c
g.y = a
j.x = f
j.u = e
j.t = a
c.p = j
c.w = j
c.v = a
c.q = g
assert f.x.q.x.txt == "h" | f | h | f | h | x | x | x | x | 7 | 14 | 7 | 3 | 2 |
5,593 | class A:
def __init__(self, txt: str):
self.x: C = None
self.u: F = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: G = None
self.s: F = None
self.u: A = None
self.z: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.o: G = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: C = None
self.y: B = None
self.z: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.w: G = None
self.x: G = None
self.y: A = None
self.r: D = None
self.p: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.y: D = None
self.o: F = None
self.p: A = None
self.txt = txt
g = A("g")
e = B("e")
h = C("h")
d = D("d")
a = E("a")
j = F("j")
b = G("b")
g.x = h
g.u = j
g.v = a
e.w = b
e.s = j
e.u = g
e.z = d
h.s = b
h.o = b
h.r = g
d.t = e
d.p = h
a.q = h
a.y = e
a.z = e
j.z = b
j.w = b
j.x = b
j.p = b
j.y = g
j.r = d
b.x = e
b.w = g
b.p = g
b.y = d
b.o = j
assert g.v.q.r.v.txt == " | a" | class A:
def __init__(self, txt: str):
self.x: C = None
self.u: F = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: G = None
self.s: F = None
self.u: A = None
self.z: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: G = None
self.o: G = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: B = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: C = None
self.y: B = None
self.z: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.z: G = None
self.w: G = None
self.x: G = None
self.y: A = None
self.r: D = None
self.p: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: B = None
self.w: A = None
self.y: D = None
self.o: F = None
self.p: A = None
self.txt = txt
g = A("g")
e = B("e")
h = C("h")
d = D("d")
a = E("a")
j = F("j")
b = G("b")
g.x = h
g.u = j
g.v = a
e.w = b
e.s = j
e.u = g
e.z = d
h.s = b
h.o = b
h.r = g
d.t = e
d.p = h
a.q = h
a.y = e
a.z = e
j.z = b
j.w = b
j.x = b
j.p = b
j.y = g
j.r = d
b.x = e
b.w = g
b.p = g
b.y = d
b.o = j
assert g.v.q.r.v.txt == "a" | g | a | h | g | a | x | x | x | 7 | 20 | 7 | 4 | 2 |
5,594 | class A:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: G = None
self.y: D = None
self.p: E = None
self.u: D = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.o: G = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.v: G = None
self.p: F = None
self.x: F = None
self.w: F = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: A = None
self.o: F = None
self.u: E = None
self.z: F = None
self.t: C = None
self.r: E = None
self.txt = txt
h = A("h")
i = B("i")
e = C("e")
j = D("j")
g = E("g")
f = F("f")
c = G("c")
h.q = f
i.w = c
i.y = j
i.u = j
i.p = g
i.r = h
e.r = i
e.t = j
j.y = h
j.o = c
j.p = e
g.r = h
g.y = h
g.v = c
g.p = f
g.x = f
g.w = f
f.r = h
f.u = h
c.x = h
c.o = f
c.z = f
c.u = g
c.r = g
c.t = e
assert e.t.o.x.q.u.q.u.txt == " | h" | class A:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: G = None
self.y: D = None
self.p: E = None
self.u: D = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.o: G = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.v: G = None
self.p: F = None
self.x: F = None
self.w: F = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: A = None
self.u: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: A = None
self.o: F = None
self.u: E = None
self.z: F = None
self.t: C = None
self.r: E = None
self.txt = txt
h = A("h")
i = B("i")
e = C("e")
j = D("j")
g = E("g")
f = F("f")
c = G("c")
h.q = f
i.w = c
i.y = j
i.u = j
i.p = g
i.r = h
e.r = i
e.t = j
j.y = h
j.o = c
j.p = e
g.r = h
g.y = h
g.v = c
g.p = f
g.x = f
g.w = f
f.r = h
f.u = h
c.x = h
c.o = f
c.z = f
c.u = g
c.r = g
c.t = e
assert e.t.o.x.q.u.q.u.txt == "h" | e | j | c | h | f | h | f | h | 7 | 18 | 7 | 7 | 3 |
5,595 | class A:
def __init__(self, txt: str):
self.o: B = None
self.z: G = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: G = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: F = None
self.z: E = None
self.w: F = None
self.s: F = None
self.x: G = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.o: G = None
self.x: B = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: E = None
self.o: B = None
self.t: A = None
self.x: B = None
self.s: A = None
self.q: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.u: B = None
self.r: D = None
self.t: C = None
self.txt = txt
b = A("b")
h = B("h")
j = C("j")
i = D("i")
a = E("a")
e = F("e")
c = G("c")
b.o = h
b.z = c
b.v = e
h.u = c
h.z = a
j.o = c
i.q = e
i.w = e
i.s = e
i.z = a
i.x = c
i.t = h
a.z = b
a.o = c
a.v = c
a.x = h
e.r = a
e.o = h
e.x = h
e.q = h
e.t = b
e.s = b
c.y = b
c.u = h
c.r = i
c.t = j
assert h.u.y.z.r.txt == " | i" | class A:
def __init__(self, txt: str):
self.o: B = None
self.z: G = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: G = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: F = None
self.z: E = None
self.w: F = None
self.s: F = None
self.x: G = None
self.t: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.o: G = None
self.x: B = None
self.v: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: E = None
self.o: B = None
self.t: A = None
self.x: B = None
self.s: A = None
self.q: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.u: B = None
self.r: D = None
self.t: C = None
self.txt = txt
b = A("b")
h = B("h")
j = C("j")
i = D("i")
a = E("a")
e = F("e")
c = G("c")
b.o = h
b.z = c
b.v = e
h.u = c
h.z = a
j.o = c
i.q = e
i.w = e
i.s = e
i.z = a
i.x = c
i.t = h
a.z = b
a.o = c
a.v = c
a.x = h
e.r = a
e.o = h
e.x = h
e.q = h
e.t = b
e.s = b
c.y = b
c.u = h
c.r = i
c.t = j
assert h.u.y.z.r.txt == "i" | h | c | b | c | i | x | x | x | 7 | 20 | 7 | 4 | 1 |
5,596 | class A:
def __init__(self, txt: str):
self.w: G = None
self.x: C = None
self.u: C = None
self.q: E = None
self.v: F = None
self.t: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.p: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.r: D = None
self.p: A = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: D = None
self.t: G = None
self.s: A = None
self.y: F = None
self.p: A = None
self.z: F = None
self.q: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.p: E = None
self.y: E = None
self.q: D = None
self.s: B = None
self.u: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: A = None
self.x: E = None
self.t: B = None
self.q: E = None
self.v: E = None
self.txt = txt
g = A("g")
a = B("a")
b = C("b")
d = D("d")
e = E("e")
c = F("c")
f = G("f")
g.w = f
g.x = b
g.u = b
g.q = e
g.v = c
g.t = c
a.v = d
a.p = f
b.o = d
b.r = d
b.z = d
b.p = g
d.s = f
e.w = d
e.t = f
e.s = g
e.p = g
e.q = g
e.y = c
e.z = c
c.r = a
c.s = a
c.u = a
c.p = e
c.y = e
c.q = d
f.p = g
f.x = e
f.q = e
f.v = e
f.t = a
assert a.v.s.p.v.p.p.q.txt == " | e" | class A:
def __init__(self, txt: str):
self.w: G = None
self.x: C = None
self.u: C = None
self.q: E = None
self.v: F = None
self.t: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = None
self.p: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.r: D = None
self.p: A = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: D = None
self.t: G = None
self.s: A = None
self.y: F = None
self.p: A = None
self.z: F = None
self.q: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.p: E = None
self.y: E = None
self.q: D = None
self.s: B = None
self.u: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.p: A = None
self.x: E = None
self.t: B = None
self.q: E = None
self.v: E = None
self.txt = txt
g = A("g")
a = B("a")
b = C("b")
d = D("d")
e = E("e")
c = F("c")
f = G("f")
g.w = f
g.x = b
g.u = b
g.q = e
g.v = c
g.t = c
a.v = d
a.p = f
b.o = d
b.r = d
b.z = d
b.p = g
d.s = f
e.w = d
e.t = f
e.s = g
e.p = g
e.q = g
e.y = c
e.z = c
c.r = a
c.s = a
c.u = a
c.p = e
c.y = e
c.q = d
f.p = g
f.x = e
f.q = e
f.v = e
f.t = a
assert a.v.s.p.v.p.p.q.txt == "e" | a | d | f | g | c | e | g | e | 7 | 19 | 7 | 7 | 2 |
5,597 | class A:
def __init__(self, txt: str):
self.o: B = None
self.z: F = None
self.t: C = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: F = None
self.t: G = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.u: F = None
self.w: D = None
self.q: F = None
self.r: B = None
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.w: E = None
self.x: A = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: D = None
self.s: F = None
self.w: C = None
self.u: C = None
self.z: D = None
self.x: F = None
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.p: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: F = None
self.x: B = None
self.v: E = None
self.u: D = None
self.q: E = None
self.y: D = None
self.txt = txt
h = A("h")
a = B("a")
e = C("e")
j = D("j")
g = E("g")
i = F("i")
f = G("f")
h.o = a
h.z = i
h.t = e
h.v = e
a.w = i
a.t = f
a.p = e
e.t = j
e.w = j
e.u = i
e.q = i
e.r = a
e.z = g
j.q = a
j.w = g
j.x = h
j.p = e
g.q = j
g.z = j
g.s = i
g.x = i
g.w = e
g.u = e
g.r = e
i.q = f
i.p = j
f.w = i
f.x = a
f.v = g
f.q = g
f.u = j
f.y = j
assert f.u.w.s.q.w.q.q.txt == " | g" | class A:
def __init__(self, txt: str):
self.o: B = None
self.z: F = None
self.t: C = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: F = None
self.t: G = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.u: F = None
self.w: D = None
self.q: F = None
self.r: B = None
self.z: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.w: E = None
self.x: A = None
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: D = None
self.s: F = None
self.w: C = None
self.u: C = None
self.z: D = None
self.x: F = None
self.r: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: G = None
self.p: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: F = None
self.x: B = None
self.v: E = None
self.u: D = None
self.q: E = None
self.y: D = None
self.txt = txt
h = A("h")
a = B("a")
e = C("e")
j = D("j")
g = E("g")
i = F("i")
f = G("f")
h.o = a
h.z = i
h.t = e
h.v = e
a.w = i
a.t = f
a.p = e
e.t = j
e.w = j
e.u = i
e.q = i
e.r = a
e.z = g
j.q = a
j.w = g
j.x = h
j.p = e
g.q = j
g.z = j
g.s = i
g.x = i
g.w = e
g.u = e
g.r = e
i.q = f
i.p = j
f.w = i
f.x = a
f.v = g
f.q = g
f.u = j
f.y = j
assert f.u.w.s.q.w.q.q.txt == "g" | f | j | g | i | f | i | f | g | 7 | 23 | 7 | 7 | 4 |
5,598 | class A:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.v: A = None
self.u: G = None
self.y: E = None
self.w: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.w: D = None
self.u: F = None
self.z: E = None
self.o: E = None
self.r: F = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.z: F = None
self.y: F = None
self.u: E = None
self.r: E = None
self.v: G = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
c = A("c")
d = B("d")
b = C("b")
g = D("g")
a = E("a")
i = F("i")
f = G("f")
c.r = b
d.z = b
d.v = c
d.u = f
d.y = a
d.w = g
b.y = a
b.z = a
b.o = a
b.w = g
b.u = i
b.r = i
b.t = d
g.x = c
g.z = i
g.y = i
g.u = a
g.r = a
g.v = f
g.q = b
a.o = i
i.x = a
f.x = b
assert f.x.w.r.o.x.txt == " | a" | class A:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.v: A = None
self.u: G = None
self.y: E = None
self.w: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.w: D = None
self.u: F = None
self.z: E = None
self.o: E = None
self.r: F = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.z: F = None
self.y: F = None
self.u: E = None
self.r: E = None
self.v: G = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
c = A("c")
d = B("d")
b = C("b")
g = D("g")
a = E("a")
i = F("i")
f = G("f")
c.r = b
d.z = b
d.v = c
d.u = f
d.y = a
d.w = g
b.y = a
b.z = a
b.o = a
b.w = g
b.u = i
b.r = i
b.t = d
g.x = c
g.z = i
g.y = i
g.u = a
g.r = a
g.v = f
g.q = b
a.o = i
i.x = a
f.x = b
assert f.x.w.r.o.x.txt == "a" | f | b | g | a | i | a | x | x | 7 | 18 | 7 | 5 | 1 |
5,599 | class A:
def __init__(self, txt: str):
self.s: E = None
self.y: E = None
self.z: D = None
self.q: G = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.w: A = None
self.p: D = None
self.u: A = None
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.t: B = None
self.z: E = None
self.x: D = None
self.p: E = None
self.o: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.o: C = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.w: D = None
self.x: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: G = None
self.r: B = None
self.q: G = None
self.s: E = None
self.z: G = None
self.t: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.q: F = None
self.u: A = None
self.r: C = None
self.v: A = None
self.t: F = None
self.txt = txt
i = A("i")
d = B("d")
b = C("b")
a = D("a")
e = E("e")
c = F("c")
f = G("f")
i.s = e
i.y = e
i.z = a
i.q = f
i.w = b
d.o = c
d.z = c
d.w = i
d.u = i
d.p = a
b.r = a
b.x = a
b.t = d
b.z = e
b.p = e
b.o = f
a.v = d
a.u = d
a.o = b
e.t = d
e.w = a
e.x = b
c.o = f
c.q = f
c.z = f
c.t = f
c.r = d
c.s = e
f.w = i
f.u = i
f.v = i
f.y = d
f.q = c
f.t = c
f.r = b
assert e.t.z.s.w.o.z.txt == " | e" | class A:
def __init__(self, txt: str):
self.s: E = None
self.y: E = None
self.z: D = None
self.q: G = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: F = None
self.w: A = None
self.p: D = None
self.u: A = None
self.z: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.t: B = None
self.z: E = None
self.x: D = None
self.p: E = None
self.o: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.o: C = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: B = None
self.w: D = None
self.x: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: G = None
self.r: B = None
self.q: G = None
self.s: E = None
self.z: G = None
self.t: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: A = None
self.y: B = None
self.q: F = None
self.u: A = None
self.r: C = None
self.v: A = None
self.t: F = None
self.txt = txt
i = A("i")
d = B("d")
b = C("b")
a = D("a")
e = E("e")
c = F("c")
f = G("f")
i.s = e
i.y = e
i.z = a
i.q = f
i.w = b
d.o = c
d.z = c
d.w = i
d.u = i
d.p = a
b.r = a
b.x = a
b.t = d
b.z = e
b.p = e
b.o = f
a.v = d
a.u = d
a.o = b
e.t = d
e.w = a
e.x = b
c.o = f
c.q = f
c.z = f
c.t = f
c.r = d
c.s = e
f.w = i
f.u = i
f.v = i
f.y = d
f.q = c
f.t = c
f.r = b
assert e.t.z.s.w.o.z.txt == "e" | e | d | c | e | a | b | e | x | 7 | 23 | 7 | 6 | 2 |