id
int64 500
3.5k
| prompt
stringlengths 265
1.76k
| answer
stringclasses 10
values | pythoncode
stringlengths 267
1.76k
| 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 | depthn0
stringclasses 10
values | depthn1
stringclasses 10
values | depthn2
stringclasses 10
values | depthn3
stringclasses 10
values | depthn4
stringclasses 11
values | depthn5
stringclasses 11
values | depthn6
stringclasses 11
values | depthn7
stringclasses 11
values | num_nodes
int64 3
7
| num_edges
int64 3
27
| num_classes
int64 2
7
| path_length
int64 3
7
| num_cycle
int64 0
6
| correctness
bool 1
class | one_correct
bool 1
class |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
500 | class A:
def __init__(self, txt: str):
self.s: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.z: A = None
self.txt = txt
c = A("c")
h = B("h")
g = A("g")
c.s = h
c.x = g
h.w = g
h.z = g
g.s = h
g.x = c
assert g.x.s.w.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.z: A = None
self.txt = txt
c = A("c")
h = B("h")
g = A("g")
c.s = h
c.x = g
h.w = g
h.z = g
g.s = h
g.x = c
assert g.x.s.w.txt == "g" | g | c | h | g | x | x | x | x | g | h | c | g | x | x | x | x | 3 | 5 | 2 | 3 | 1 | true | true |
501 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
h = A("h")
d = B("d")
f = B("f")
a = B("a")
e = B("e")
c = B("c")
b = B("b")
h.v = b
d.u = a
f.u = b
a.u = c
e.u = d
c.u = e
b.u = d
assert e.u.u.u.u.u.txt == " | d" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
h = A("h")
d = B("d")
f = B("f")
a = B("a")
e = B("e")
c = B("c")
b = B("b")
h.v = b
d.u = a
f.u = b
a.u = c
e.u = d
c.u = e
b.u = d
assert e.u.u.u.u.u.txt == "d" | e | d | a | c | e | d | x | x | d | e | c | a | d | e | x | x | 7 | 7 | 2 | 5 | 2 | true | true |
502 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
g = A("g")
a = B("a")
c = B("c")
g.y = c
a.o = g
c.o = g
assert c.o.y.o.txt == " | g" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
g = A("g")
a = B("a")
c = B("c")
g.y = c
a.o = g
c.o = g
assert c.o.y.o.txt == "g" | c | g | c | g | x | x | x | x | g | c | g | c | x | x | x | x | 3 | 3 | 2 | 3 | 2 | true | true |
503 | class A:
def __init__(self, txt: str):
self.z: F = None
self.r: F = None
self.p: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.t: C = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.u: F = None
self.v: B = None
self.r: G = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.t: D = None
self.v: B = None
self.x: A = None
self.z: D = None
self.o: C = None
self.w: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: G = None
self.t: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: B = None
self.p: B = None
self.o: A = None
self.y: A = None
self.r: B = None
self.x: D = None
self.u: F = None
self.txt = txt
h = A("h")
c = B("c")
a = C("a")
e = D("e")
i = E("i")
j = F("j")
d = G("d")
h.z = j
h.r = j
h.p = j
c.p = e
c.t = a
c.s = h
a.p = h
a.u = j
a.t = j
a.v = c
a.r = d
e.q = c
i.s = a
i.o = a
i.t = e
i.z = e
i.w = e
i.v = c
i.x = h
j.p = d
j.t = d
d.w = c
d.p = c
d.r = c
d.o = h
d.y = h
d.x = e
d.u = j
assert c.p.q.t.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: F = None
self.r: F = None
self.p: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.t: C = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.u: F = None
self.v: B = None
self.r: G = None
self.t: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.t: D = None
self.v: B = None
self.x: A = None
self.z: D = None
self.o: C = None
self.w: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.p: G = None
self.t: G = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.w: B = None
self.p: B = None
self.o: A = None
self.y: A = None
self.r: B = None
self.x: D = None
self.u: F = None
self.txt = txt
h = A("h")
c = B("c")
a = C("a")
e = D("e")
i = E("i")
j = F("j")
d = G("d")
h.z = j
h.r = j
h.p = j
c.p = e
c.t = a
c.s = h
a.p = h
a.u = j
a.t = j
a.v = c
a.r = d
e.q = c
i.s = a
i.o = a
i.t = e
i.z = e
i.w = e
i.v = c
i.x = h
j.p = d
j.t = d
d.w = c
d.p = c
d.r = c
d.o = h
d.y = h
d.x = e
d.u = j
assert c.p.q.t.txt == "a" | c | e | c | a | x | x | x | x | a | c | e | c | x | x | x | x | 7 | 18 | 7 | 3 | 1 | true | true |
504 | class A:
def __init__(self, txt: str):
self.x: B = None
self.v: D = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.z: A = None
self.w: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.x: D = None
self.q: D = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.w: A = None
self.q: C = None
self.v: C = None
self.txt = txt
i = A("i")
j = B("j")
f = C("f")
e = D("e")
i.x = j
i.v = e
i.s = f
j.q = i
j.z = i
j.w = e
f.s = i
f.x = e
f.q = e
f.w = e
e.r = i
e.w = i
e.q = f
e.v = f
assert j.q.v.q.s.txt == " | i" | class A:
def __init__(self, txt: str):
self.x: B = None
self.v: D = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.z: A = None
self.w: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.x: D = None
self.q: D = None
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.w: A = None
self.q: C = None
self.v: C = None
self.txt = txt
i = A("i")
j = B("j")
f = C("f")
e = D("e")
i.x = j
i.v = e
i.s = f
j.q = i
j.z = i
j.w = e
f.s = i
f.x = e
f.q = e
f.w = e
e.r = i
e.w = i
e.q = f
e.v = f
assert j.q.v.q.s.txt == "i" | j | i | e | f | i | x | x | x | i | f | e | i | j | x | x | x | 4 | 9 | 4 | 4 | 1 | true | true |
505 | class A:
def __init__(self, txt: str):
self.z: C = None
self.r: B = None
self.s: C = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.x: B = None
self.u: D = None
self.q: C = None
self.txt = txt
g = A("g")
d = B("d")
b = C("b")
a = D("a")
i = E("i")
h = C("h")
g.z = h
g.s = h
g.r = d
g.u = i
d.v = g
d.s = h
b.t = i
a.z = h
i.z = b
i.q = b
i.x = d
i.u = a
h.t = i
assert d.v.r.s.t.x.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: C = None
self.r: B = None
self.s: C = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.x: B = None
self.u: D = None
self.q: C = None
self.txt = txt
g = A("g")
d = B("d")
b = C("b")
a = D("a")
i = E("i")
h = C("h")
g.z = h
g.s = h
g.r = d
g.u = i
d.v = g
d.s = h
b.t = i
a.z = h
i.z = b
i.q = b
i.x = d
i.u = a
h.t = i
assert d.v.r.s.t.x.txt == "d" | d | g | d | h | i | d | x | x | d | i | h | d | g | d | x | x | 6 | 11 | 5 | 5 | 2 | true | true |
506 | class A:
def __init__(self, txt: str):
self.u: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.t: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.q: B = None
self.txt = txt
f = A("f")
e = B("e")
c = C("c")
h = B("h")
d = A("d")
i = C("i")
f.u = d
f.p = h
e.x = h
e.t = h
c.z = f
c.q = e
h.x = e
h.t = e
d.u = f
d.p = e
i.z = f
i.q = e
assert h.x.x.x.x.x.txt == " | e" | class A:
def __init__(self, txt: str):
self.u: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.t: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.q: B = None
self.txt = txt
f = A("f")
e = B("e")
c = C("c")
h = B("h")
d = A("d")
i = C("i")
f.u = d
f.p = h
e.x = h
e.t = h
c.z = f
c.q = e
h.x = e
h.t = e
d.u = f
d.p = e
i.z = f
i.q = e
assert h.x.x.x.x.x.txt == "e" | h | e | h | e | h | e | x | x | e | h | e | h | e | h | x | x | 6 | 10 | 3 | 5 | 4 | true | true |
507 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.p: A = None
self.txt = txt
h = A("h")
i = B("i")
d = A("d")
h.s = d
i.s = h
i.p = h
d.s = h
assert i.p.s.s.txt == " | h" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.p: A = None
self.txt = txt
h = A("h")
i = B("i")
d = A("d")
h.s = d
i.s = h
i.p = h
d.s = h
assert i.p.s.s.txt == "h" | i | h | d | h | x | x | x | x | h | d | h | i | x | x | x | x | 3 | 3 | 2 | 3 | 1 | true | true |
508 | class A:
def __init__(self, txt: str):
self.w: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
e = B("e")
j = C("j")
c = C("c")
b.w = e
b.z = e
e.w = b
j.z = b
c.z = b
assert j.z.z.w.txt == " | b" | class A:
def __init__(self, txt: str):
self.w: B = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
b = A("b")
e = B("e")
j = C("j")
c = C("c")
b.w = e
b.z = e
e.w = b
j.z = b
c.z = b
assert j.z.z.w.txt == "b" | j | b | e | b | x | x | x | x | b | e | b | j | x | x | x | x | 4 | 4 | 3 | 3 | 1 | true | true |
509 | class A:
def __init__(self, txt: str):
self.q: C = None
self.y: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.q: C = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
j = A("j")
a = B("a")
i = C("i")
c = B("c")
e = A("e")
j.q = i
j.y = c
j.s = e
a.o = i
a.q = i
a.s = i
i.t = j
c.o = i
c.q = i
c.s = i
e.q = i
e.y = c
e.s = j
assert a.q.t.q.txt == " | i" | class A:
def __init__(self, txt: str):
self.q: C = None
self.y: B = None
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.q: C = None
self.s: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
j = A("j")
a = B("a")
i = C("i")
c = B("c")
e = A("e")
j.q = i
j.y = c
j.s = e
a.o = i
a.q = i
a.s = i
i.t = j
c.o = i
c.q = i
c.s = i
e.q = i
e.y = c
e.s = j
assert a.q.t.q.txt == "i" | a | i | j | i | x | x | x | x | i | j | i | a | x | x | x | x | 5 | 9 | 3 | 3 | 1 | true | true |
510 | class A:
def __init__(self, txt: str):
self.s: C = 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.z: A = None
self.x: A = None
self.o: A = None
self.txt = txt
g = A("g")
i = B("i")
c = C("c")
a = B("a")
h = A("h")
g.s = c
i.q = h
c.z = g
c.x = g
c.o = h
a.q = h
h.s = c
assert i.q.s.o.txt == " | h" | class A:
def __init__(self, txt: str):
self.s: C = 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.z: A = None
self.x: A = None
self.o: A = None
self.txt = txt
g = A("g")
i = B("i")
c = C("c")
a = B("a")
h = A("h")
g.s = c
i.q = h
c.z = g
c.x = g
c.o = h
a.q = h
h.s = c
assert i.q.s.o.txt == "h" | i | h | c | h | x | x | x | x | h | c | h | i | x | x | x | x | 5 | 6 | 3 | 3 | 1 | true | true |
511 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
g = A("g")
c = B("c")
a = A("a")
g.w = a
c.q = a
a.w = g
assert c.q.w.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
g = A("g")
c = B("c")
a = A("a")
g.w = a
c.q = a
a.w = g
assert c.q.w.w.txt == "a" | c | a | g | a | x | x | x | x | a | g | a | c | x | x | x | x | 3 | 3 | 2 | 3 | 1 | true | true |
512 | class A:
def __init__(self, txt: str):
self.y: B = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.x: C = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
c = A("c")
a = B("a")
i = C("i")
c.y = a
c.u = i
a.y = c
a.x = i
a.q = i
i.t = a
assert a.q.t.y.txt == " | c" | class A:
def __init__(self, txt: str):
self.y: B = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.x: C = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
c = A("c")
a = B("a")
i = C("i")
c.y = a
c.u = i
a.y = c
a.x = i
a.q = i
i.t = a
assert a.q.t.y.txt == "c" | a | i | a | c | x | x | x | x | c | a | i | a | x | x | x | x | 3 | 5 | 3 | 3 | 1 | true | true |
513 | class A:
def __init__(self, txt: str):
self.v: C = None
self.x: D = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.t: A = None
self.p: A = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.y: D = None
self.t: E = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
j = A("j")
f = B("f")
i = C("i")
g = D("g")
h = E("h")
c = A("c")
b = A("b")
j.v = i
j.x = g
j.o = f
f.u = c
f.t = c
f.p = b
f.q = i
i.x = f
i.y = g
i.z = g
i.t = h
g.r = h
g.p = h
h.z = f
c.v = i
c.x = g
c.o = f
b.v = i
b.x = g
b.o = f
assert g.r.z.p.v.z.p.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.v: C = None
self.x: D = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.t: A = None
self.p: A = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.y: D = None
self.t: E = None
self.z: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: E = None
self.p: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
j = A("j")
f = B("f")
i = C("i")
g = D("g")
h = E("h")
c = A("c")
b = A("b")
j.v = i
j.x = g
j.o = f
f.u = c
f.t = c
f.p = b
f.q = i
i.x = f
i.y = g
i.z = g
i.t = h
g.r = h
g.p = h
h.z = f
c.v = i
c.x = g
c.o = f
b.v = i
b.x = g
b.o = f
assert g.r.z.p.v.z.p.z.txt == "f" | g | h | f | b | i | g | h | f | f | h | g | i | b | f | h | g | 7 | 17 | 5 | 7 | 3 | true | true |
514 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.v: A = None
self.txt = txt
j = A("j")
a = B("a")
h = A("h")
e = B("e")
j.u = h
a.o = j
a.v = j
h.u = j
e.o = h
e.v = j
assert h.u.u.u.txt == " | j" | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.v: A = None
self.txt = txt
j = A("j")
a = B("a")
h = A("h")
e = B("e")
j.u = h
a.o = j
a.v = j
h.u = j
e.o = h
e.v = j
assert h.u.u.u.txt == "j" | h | j | h | j | x | x | x | x | j | h | j | h | x | x | x | x | 4 | 5 | 2 | 3 | 2 | true | true |
515 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.z: B = None
self.txt = txt
d = A("d")
b = B("b")
c = B("c")
d.q = c
b.u = d
b.z = c
c.u = d
c.z = b
assert b.u.q.u.txt == " | d" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.z: B = None
self.txt = txt
d = A("d")
b = B("b")
c = B("c")
d.q = c
b.u = d
b.z = c
c.u = d
c.z = b
assert b.u.q.u.txt == "d" | b | d | c | d | x | x | x | x | d | c | d | b | x | x | x | x | 3 | 5 | 2 | 3 | 1 | true | true |
516 | class A:
def __init__(self, txt: str):
self.p: D = None
self.t: C = None
self.q: D = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
d = A("d")
b = B("b")
c = C("c")
g = D("g")
f = B("f")
d.p = g
d.q = g
d.w = g
d.t = c
b.z = c
b.p = g
c.s = d
g.x = d
f.z = c
f.p = g
assert c.s.p.x.t.s.txt == " | d" | class A:
def __init__(self, txt: str):
self.p: D = None
self.t: C = None
self.q: D = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
d = A("d")
b = B("b")
c = C("c")
g = D("g")
f = B("f")
d.p = g
d.q = g
d.w = g
d.t = c
b.z = c
b.p = g
c.s = d
g.x = d
f.z = c
f.p = g
assert c.s.p.x.t.s.txt == "d" | c | d | g | d | c | d | x | x | d | c | d | g | d | c | x | x | 5 | 8 | 4 | 5 | 3 | true | true |
517 | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
h = A("h")
d = B("d")
c = A("c")
a = B("a")
b = A("b")
h.s = b
d.y = h
c.s = b
a.y = b
b.s = h
assert h.s.s.s.txt == " | b" | class A:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
h = A("h")
d = B("d")
c = A("c")
a = B("a")
b = A("b")
h.s = b
d.y = h
c.s = b
a.y = b
b.s = h
assert h.s.s.s.txt == "b" | h | b | h | b | x | x | x | x | b | h | b | h | x | x | x | x | 5 | 5 | 2 | 3 | 2 | true | true |
518 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.z: A = None
self.y: A = None
self.txt = txt
j = A("j")
g = B("g")
d = C("d")
j.v = g
g.z = j
g.t = j
d.o = j
d.z = j
d.y = j
assert d.y.v.t.txt == " | j" | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.z: A = None
self.y: A = None
self.txt = txt
j = A("j")
g = B("g")
d = C("d")
j.v = g
g.z = j
g.t = j
d.o = j
d.z = j
d.y = j
assert d.y.v.t.txt == "j" | d | j | g | j | x | x | x | x | j | g | j | d | x | x | x | x | 3 | 3 | 3 | 3 | 1 | true | true |
519 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
f = B("f")
e = B("e")
b = B("b")
d = B("d")
i.y = e
f.w = i
e.w = i
b.w = i
d.w = i
assert f.w.y.w.txt == " | i" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
i = A("i")
f = B("f")
e = B("e")
b = B("b")
d = B("d")
i.y = e
f.w = i
e.w = i
b.w = i
d.w = i
assert f.w.y.w.txt == "i" | f | i | e | i | x | x | x | x | i | e | i | f | x | x | x | x | 5 | 5 | 2 | 3 | 1 | true | true |
520 | class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.t: A = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.u: A = None
self.txt = txt
a = A("a")
i = B("i")
c = C("c")
a.t = c
i.s = a
i.t = a
i.y = c
c.v = i
c.u = a
assert i.y.v.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.t: A = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.u: A = None
self.txt = txt
a = A("a")
i = B("i")
c = C("c")
a.t = c
i.s = a
i.t = a
i.y = c
c.v = i
c.u = a
assert i.y.v.s.txt == "a" | i | c | i | a | x | x | x | x | a | i | c | i | x | x | x | x | 3 | 5 | 3 | 3 | 1 | true | true |
521 | class A:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: E = None
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.s: A = None
self.u: E = None
self.x: D = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: F = None
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.t: B = None
self.q: A = None
self.r: D = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
f = A("f")
a = B("a")
h = C("h")
i = D("i")
e = E("e")
d = F("d")
c = D("c")
f.s = i
a.v = e
a.o = d
h.p = d
h.s = f
h.u = e
h.x = i
h.q = a
i.o = d
i.p = a
e.z = h
e.t = a
e.s = a
e.q = f
e.r = c
d.r = a
c.o = d
c.p = a
assert h.u.s.o.r.txt == " | a" | class A:
def __init__(self, txt: str):
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: E = None
self.o: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.s: A = None
self.u: E = None
self.x: D = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: F = None
self.p: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: C = None
self.t: B = None
self.q: A = None
self.r: D = None
self.s: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
f = A("f")
a = B("a")
h = C("h")
i = D("i")
e = E("e")
d = F("d")
c = D("c")
f.s = i
a.v = e
a.o = d
h.p = d
h.s = f
h.u = e
h.x = i
h.q = a
i.o = d
i.p = a
e.z = h
e.t = a
e.s = a
e.q = f
e.r = c
d.r = a
c.o = d
c.p = a
assert h.u.s.o.r.txt == "a" | h | e | a | d | a | x | x | x | a | d | a | e | h | x | x | x | 7 | 17 | 6 | 4 | 1 | true | true |
522 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.txt = txt
d = A("d")
a = B("a")
b = A("b")
d.o = b
a.t = b
a.v = b
b.o = d
assert b.o.o.o.txt == " | d" | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.v: A = None
self.txt = txt
d = A("d")
a = B("a")
b = A("b")
d.o = b
a.t = b
a.v = b
b.o = d
assert b.o.o.o.txt == "d" | b | d | b | d | x | x | x | x | d | b | d | b | x | x | x | x | 3 | 3 | 2 | 3 | 2 | true | true |
523 | class A:
def __init__(self, txt: str):
self.w: C = None
self.y: B = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: D = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
i = A("i")
g = B("g")
h = C("h")
d = D("d")
c = E("c")
j = D("j")
b = C("b")
i.w = h
i.y = g
i.s = b
g.p = d
g.z = i
h.p = i
d.s = j
d.w = b
c.w = b
j.s = d
j.w = h
b.p = i
assert g.z.s.p.s.p.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.w: C = None
self.y: B = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: D = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
i = A("i")
g = B("g")
h = C("h")
d = D("d")
c = E("c")
j = D("j")
b = C("b")
i.w = h
i.y = g
i.s = b
g.p = d
g.z = i
h.p = i
d.s = j
d.w = b
c.w = b
j.s = d
j.w = h
b.p = i
assert g.z.s.p.s.p.y.txt == "g" | g | i | b | i | b | i | g | x | g | i | b | i | b | i | g | x | 7 | 12 | 5 | 6 | 4 | true | true |
524 | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
e = A("e")
i = B("i")
b = B("b")
a = B("a")
f = A("f")
e.w = f
i.z = e
i.v = e
b.z = f
b.v = f
a.z = f
a.v = f
f.w = e
assert f.w.w.w.w.w.txt == " | e" | class A:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.v: A = None
self.txt = txt
e = A("e")
i = B("i")
b = B("b")
a = B("a")
f = A("f")
e.w = f
i.z = e
i.v = e
b.z = f
b.v = f
a.z = f
a.v = f
f.w = e
assert f.w.w.w.w.w.txt == "e" | f | e | f | e | f | e | x | x | e | f | e | f | e | f | x | x | 5 | 5 | 2 | 5 | 4 | true | true |
525 | class A:
def __init__(self, txt: str):
self.o: D = None
self.u: C = None
self.x: B = None
self.q: B = None
self.t: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.v: B = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.t: D = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.p: C = None
self.txt = txt
g = A("g")
f = B("f")
j = C("j")
e = D("e")
a = E("a")
d = D("d")
g.o = e
g.u = j
g.x = f
g.q = f
g.t = a
f.x = a
j.o = g
j.v = f
j.y = a
e.x = g
e.t = d
e.u = f
a.o = g
a.p = j
d.x = g
d.t = e
d.u = f
assert g.x.x.p.txt == " | j" | class A:
def __init__(self, txt: str):
self.o: D = None
self.u: C = None
self.x: B = None
self.q: B = None
self.t: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.v: B = None
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.t: D = None
self.u: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.p: C = None
self.txt = txt
g = A("g")
f = B("f")
j = C("j")
e = D("e")
a = E("a")
d = D("d")
g.o = e
g.u = j
g.x = f
g.q = f
g.t = a
f.x = a
j.o = g
j.v = f
j.y = a
e.x = g
e.t = d
e.u = f
a.o = g
a.p = j
d.x = g
d.t = e
d.u = f
assert g.x.x.p.txt == "j" | g | f | a | j | x | x | x | x | j | a | f | g | x | x | x | x | 6 | 16 | 5 | 3 | 0 | true | true |
526 | class A:
def __init__(self, txt: str):
self.u: B = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
b = A("b")
h = B("h")
e = C("e")
a = C("a")
i = A("i")
j = C("j")
b.u = h
b.o = e
h.u = a
h.x = j
e.t = i
a.t = i
i.u = h
i.o = j
j.t = i
assert b.o.t.o.t.txt == " | i" | class A:
def __init__(self, txt: str):
self.u: B = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
b = A("b")
h = B("h")
e = C("e")
a = C("a")
i = A("i")
j = C("j")
b.u = h
b.o = e
h.u = a
h.x = j
e.t = i
a.t = i
i.u = h
i.o = j
j.t = i
assert b.o.t.o.t.txt == "i" | b | e | i | j | i | x | x | x | i | j | i | e | b | x | x | x | 6 | 9 | 3 | 4 | 1 | true | true |
527 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
e = A("e")
b = B("b")
f = A("f")
e.z = f
b.q = e
f.z = e
assert f.z.z.z.txt == " | e" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
e = A("e")
b = B("b")
f = A("f")
e.z = f
b.q = e
f.z = e
assert f.z.z.z.txt == "e" | f | e | f | e | x | x | x | x | e | f | e | f | x | x | x | x | 3 | 3 | 2 | 3 | 2 | true | true |
528 | class A:
def __init__(self, txt: str):
self.t: C = None
self.y: B = None
self.x: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.v: A = None
self.u: E = None
self.t: E = None
self.o: F = None
self.y: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: D = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: C = None
self.o: F = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.u: D = None
self.y: F = None
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: E = None
self.z: E = None
self.u: A = None
self.o: A = None
self.txt = txt
g = A("g")
a = B("a")
c = C("c")
h = D("h")
e = E("e")
b = F("b")
j = A("j")
g.t = c
g.y = a
g.x = j
g.v = j
a.z = b
a.o = b
a.v = g
a.u = e
a.t = e
a.y = h
c.v = h
c.r = g
h.q = c
h.o = b
h.w = b
e.v = g
e.u = h
e.y = b
e.o = b
b.q = e
b.z = e
b.u = j
b.o = j
j.t = c
j.y = a
j.x = g
j.v = g
assert b.z.v.v.x.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.t: C = None
self.y: B = None
self.x: A = None
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.v: A = None
self.u: E = None
self.t: E = None
self.o: F = None
self.y: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: D = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: C = None
self.o: F = None
self.w: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: A = None
self.u: D = None
self.y: F = None
self.o: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: E = None
self.z: E = None
self.u: A = None
self.o: A = None
self.txt = txt
g = A("g")
a = B("a")
c = C("c")
h = D("h")
e = E("e")
b = F("b")
j = A("j")
g.t = c
g.y = a
g.x = j
g.v = j
a.z = b
a.o = b
a.v = g
a.u = e
a.t = e
a.y = h
c.v = h
c.r = g
h.q = c
h.o = b
h.w = b
e.v = g
e.u = h
e.y = b
e.o = b
b.q = e
b.z = e
b.u = j
b.o = j
j.t = c
j.y = a
j.x = g
j.v = g
assert b.z.v.v.x.y.txt == "a" | b | e | g | j | g | a | x | x | a | g | j | g | e | b | x | x | 7 | 19 | 6 | 5 | 1 | true | true |
529 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
e = A("e")
a = B("a")
j = A("j")
e.r = j
a.z = j
j.r = e
assert j.r.r.r.txt == " | e" | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
e = A("e")
a = B("a")
j = A("j")
e.r = j
a.z = j
j.r = e
assert j.r.r.r.txt == "e" | j | e | j | e | x | x | x | x | e | j | e | j | x | x | x | x | 3 | 3 | 2 | 3 | 2 | true | true |
530 | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
d = A("d")
i = B("i")
f = A("f")
e = B("e")
d.y = i
d.q = f
i.t = e
f.y = e
f.q = d
e.t = i
assert d.q.q.q.q.txt == " | d" | class A:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
d = A("d")
i = B("i")
f = A("f")
e = B("e")
d.y = i
d.q = f
i.t = e
f.y = e
f.q = d
e.t = i
assert d.q.q.q.q.txt == "d" | d | f | d | f | d | x | x | x | d | f | d | f | d | x | x | x | 4 | 6 | 2 | 4 | 3 | true | true |
531 | class A:
def __init__(self, txt: str):
self.o: B = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.q: D = None
self.u: C = None
self.x: E = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.p: B = None
self.txt = txt
f = A("f")
i = B("i")
d = C("d")
c = D("c")
h = E("h")
f.o = i
f.v = d
i.r = c
i.q = c
i.u = d
i.x = h
i.y = h
d.y = c
d.w = f
c.r = f
c.w = f
h.r = f
h.p = i
assert f.o.q.r.v.w.txt == " | f" | class A:
def __init__(self, txt: str):
self.o: B = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.q: D = None
self.u: C = None
self.x: E = None
self.y: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: A = None
self.w: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.p: B = None
self.txt = txt
f = A("f")
i = B("i")
d = C("d")
c = D("c")
h = E("h")
f.o = i
f.v = d
i.r = c
i.q = c
i.u = d
i.x = h
i.y = h
d.y = c
d.w = f
c.r = f
c.w = f
h.r = f
h.p = i
assert f.o.q.r.v.w.txt == "f" | f | i | c | f | d | f | x | x | f | d | f | c | i | f | x | x | 5 | 10 | 5 | 5 | 2 | true | true |
532 | class A:
def __init__(self, txt: str):
self.y: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.p: B = None
self.txt = txt
f = A("f")
c = B("c")
d = A("d")
e = A("e")
j = B("j")
f.y = c
f.z = e
c.x = j
c.p = j
d.y = j
d.z = f
e.y = c
e.z = d
j.x = c
j.p = c
assert c.x.x.x.p.txt == " | c" | class A:
def __init__(self, txt: str):
self.y: B = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.p: B = None
self.txt = txt
f = A("f")
c = B("c")
d = A("d")
e = A("e")
j = B("j")
f.y = c
f.z = e
c.x = j
c.p = j
d.y = j
d.z = f
e.y = c
e.z = d
j.x = c
j.p = c
assert c.x.x.x.p.txt == "c" | c | j | c | j | c | x | x | x | c | j | c | j | c | x | x | x | 5 | 8 | 2 | 4 | 3 | true | true |
533 | class A:
def __init__(self, txt: str):
self.t: B = None
self.q: B = None
self.s: E = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.t: C = None
self.v: A = None
self.txt = txt
j = A("j")
g = B("g")
d = C("d")
e = D("e")
b = E("b")
j.t = g
j.q = g
j.v = g
j.s = b
g.o = j
g.w = j
d.y = b
d.u = e
e.u = j
b.y = e
b.t = d
b.v = j
assert g.w.q.o.s.v.txt == " | j" | class A:
def __init__(self, txt: str):
self.t: B = None
self.q: B = None
self.s: E = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.t: C = None
self.v: A = None
self.txt = txt
j = A("j")
g = B("g")
d = C("d")
e = D("e")
b = E("b")
j.t = g
j.q = g
j.v = g
j.s = b
g.o = j
g.w = j
d.y = b
d.u = e
e.u = j
b.y = e
b.t = d
b.v = j
assert g.w.q.o.s.v.txt == "j" | g | j | g | j | b | j | x | x | j | b | j | g | j | g | x | x | 5 | 9 | 5 | 5 | 3 | true | true |
534 | class A:
def __init__(self, txt: str):
self.v: A = None
self.z: D = 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.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.s: A = None
self.txt = txt
a = A("a")
g = B("g")
h = C("h")
e = D("e")
b = A("b")
j = C("j")
d = B("d")
a.v = b
a.z = e
g.o = j
g.w = j
h.w = g
e.p = d
e.s = a
b.v = a
b.z = e
j.w = d
d.o = h
d.w = j
assert b.v.v.z.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.v: A = None
self.z: D = 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.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.s: A = None
self.txt = txt
a = A("a")
g = B("g")
h = C("h")
e = D("e")
b = A("b")
j = C("j")
d = B("d")
a.v = b
a.z = e
g.o = j
g.w = j
h.w = g
e.p = d
e.s = a
b.v = a
b.z = e
j.w = d
d.o = h
d.w = j
assert b.v.v.z.s.txt == "a" | b | a | b | e | a | x | x | x | a | e | b | a | b | x | x | x | 7 | 11 | 4 | 4 | 2 | true | true |
535 | class A:
def __init__(self, txt: str):
self.z: C = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.q: A = None
self.txt = txt
g = A("g")
j = B("j")
i = C("i")
c = A("c")
h = B("h")
f = B("f")
g.z = i
g.o = i
j.y = i
j.v = c
i.t = c
i.q = g
c.z = i
c.o = i
h.y = i
h.v = g
f.y = i
f.v = c
assert j.v.z.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.z: C = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: A = None
self.q: A = None
self.txt = txt
g = A("g")
j = B("j")
i = C("i")
c = A("c")
h = B("h")
f = B("f")
g.z = i
g.o = i
j.y = i
j.v = c
i.t = c
i.q = g
c.z = i
c.o = i
h.y = i
h.v = g
f.y = i
f.v = c
assert j.v.z.t.txt == "c" | j | c | i | c | x | x | x | x | c | i | c | j | x | x | x | x | 6 | 10 | 3 | 3 | 1 | true | true |
536 | class A:
def __init__(self, txt: str):
self.y: C = None
self.p: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.y: B = None
self.txt = txt
i = A("i")
h = B("h")
c = C("c")
i.y = c
i.p = c
i.w = h
h.y = c
c.x = h
c.y = h
assert c.y.y.x.txt == " | h" | class A:
def __init__(self, txt: str):
self.y: C = None
self.p: C = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.y: B = None
self.txt = txt
i = A("i")
h = B("h")
c = C("c")
i.y = c
i.p = c
i.w = h
h.y = c
c.x = h
c.y = h
assert c.y.y.x.txt == "h" | c | h | c | h | x | x | x | x | h | c | h | c | x | x | x | x | 3 | 4 | 3 | 3 | 2 | true | true |
537 | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
g = A("g")
j = B("j")
b = B("b")
g.t = b
g.x = j
j.o = b
b.o = j
assert g.t.o.o.txt == " | b" | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
g = A("g")
j = B("j")
b = B("b")
g.t = b
g.x = j
j.o = b
b.o = j
assert g.t.o.o.txt == "b" | g | b | j | b | x | x | x | x | b | j | b | g | x | x | x | x | 3 | 4 | 2 | 3 | 1 | true | true |
538 | class A:
def __init__(self, txt: str):
self.w: D = None
self.q: E = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.x: F = None
self.v: 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: A = None
self.y: D = None
self.t: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.p: E = None
self.s: B = None
self.v: D = None
self.t: C = None
self.txt = txt
a = A("a")
i = B("i")
h = C("h")
e = D("e")
f = E("f")
d = F("d")
g = A("g")
a.w = e
a.s = e
a.q = f
i.x = h
i.p = f
h.t = e
h.x = d
h.v = g
e.t = a
f.p = a
f.y = e
f.t = i
d.q = a
d.p = f
d.s = i
d.v = e
d.t = h
g.w = e
g.s = e
g.q = f
assert d.p.p.q.p.s.t.txt == " | a" | class A:
def __init__(self, txt: str):
self.w: D = None
self.q: E = None
self.s: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.p: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.x: F = None
self.v: 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: A = None
self.y: D = None
self.t: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.q: A = None
self.p: E = None
self.s: B = None
self.v: D = None
self.t: C = None
self.txt = txt
a = A("a")
i = B("i")
h = C("h")
e = D("e")
f = E("f")
d = F("d")
g = A("g")
a.w = e
a.s = e
a.q = f
i.x = h
i.p = f
h.t = e
h.x = d
h.v = g
e.t = a
f.p = a
f.y = e
f.t = i
d.q = a
d.p = f
d.s = i
d.v = e
d.t = h
g.w = e
g.s = e
g.q = f
assert d.p.p.q.p.s.t.txt == "a" | d | f | a | f | a | e | a | x | a | e | a | f | a | f | d | x | 7 | 18 | 6 | 6 | 3 | true | true |
539 | class A:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.w: C = None
self.t: A = None
self.txt = txt
e = A("e")
j = B("j")
h = C("h")
f = C("f")
e.w = f
j.p = h
j.r = e
h.v = j
h.w = f
h.t = e
f.v = j
f.w = h
f.t = e
assert j.r.w.t.txt == " | e" | class A:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.w: C = None
self.t: A = None
self.txt = txt
e = A("e")
j = B("j")
h = C("h")
f = C("f")
e.w = f
j.p = h
j.r = e
h.v = j
h.w = f
h.t = e
f.v = j
f.w = h
f.t = e
assert j.r.w.t.txt == "e" | j | e | f | e | x | x | x | x | e | f | e | j | x | x | x | x | 4 | 9 | 3 | 3 | 1 | true | true |
540 | class A:
def __init__(self, txt: str):
self.o: B = None
self.p: B = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.v: C = None
self.o: A = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.u: D = None
self.y: E = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.w: A = None
self.p: A = None
self.z: B = None
self.txt = txt
a = A("a")
c = B("c")
j = C("j")
g = D("g")
i = E("i")
h = D("h")
a.o = c
a.p = c
a.u = i
c.s = g
c.v = j
c.o = a
c.p = a
j.v = c
j.u = g
j.y = i
j.t = i
g.z = a
i.t = h
i.w = a
i.p = a
i.z = c
h.z = a
assert a.u.t.z.txt == " | a" | class A:
def __init__(self, txt: str):
self.o: B = None
self.p: B = None
self.u: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: D = None
self.v: C = None
self.o: A = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.u: D = None
self.y: E = None
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.w: A = None
self.p: A = None
self.z: B = None
self.txt = txt
a = A("a")
c = B("c")
j = C("j")
g = D("g")
i = E("i")
h = D("h")
a.o = c
a.p = c
a.u = i
c.s = g
c.v = j
c.o = a
c.p = a
j.v = c
j.u = g
j.y = i
j.t = i
g.z = a
i.t = h
i.w = a
i.p = a
i.z = c
h.z = a
assert a.u.t.z.txt == "a" | a | i | h | a | x | x | x | x | a | h | i | a | x | x | x | x | 6 | 13 | 5 | 3 | 1 | true | true |
541 | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: B = None
self.r: D = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.p: B = None
self.txt = txt
a = A("a")
g = B("g")
c = C("c")
i = D("i")
a.t = g
a.x = g
a.r = i
a.u = c
g.y = a
c.u = g
c.q = g
i.w = c
i.p = g
assert a.u.u.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.t: B = None
self.x: B = None
self.r: D = None
self.u: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.p: B = None
self.txt = txt
a = A("a")
g = B("g")
c = C("c")
i = D("i")
a.t = g
a.x = g
a.r = i
a.u = c
g.y = a
c.u = g
c.q = g
i.w = c
i.p = g
assert a.u.u.y.txt == "a" | a | c | g | a | x | x | x | x | a | g | c | a | x | x | x | x | 4 | 7 | 4 | 3 | 1 | true | true |
542 | class A:
def __init__(self, txt: str):
self.o: C = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
i = A("i")
b = B("b")
g = C("g")
f = B("f")
i.o = g
i.y = g
b.o = f
g.y = i
f.o = b
assert b.o.o.o.o.txt == " | b" | class A:
def __init__(self, txt: str):
self.o: C = None
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
i = A("i")
b = B("b")
g = C("g")
f = B("f")
i.o = g
i.y = g
b.o = f
g.y = i
f.o = b
assert b.o.o.o.o.txt == "b" | b | f | b | f | b | x | x | x | b | f | b | f | b | x | x | x | 4 | 4 | 3 | 4 | 3 | true | true |
543 | class A:
def __init__(self, txt: str):
self.q: D = None
self.x: C = None
self.w: B = None
self.s: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.u: D = None
self.y: E = None
self.o: C = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.y: E = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.t: C = None
self.v: A = None
self.x: C = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: B = None
self.x: D = None
self.o: C = None
self.t: D = None
self.v: B = None
self.txt = txt
c = A("c")
h = B("h")
g = C("g")
i = D("i")
b = E("b")
c.q = i
c.x = g
c.w = h
c.s = b
h.x = g
h.o = g
h.r = g
h.u = i
h.y = b
g.r = i
g.y = b
g.q = b
i.q = h
i.t = g
i.x = g
i.v = c
i.s = b
b.p = h
b.v = h
b.x = i
b.t = i
b.o = g
assert h.y.o.r.v.txt == " | c" | class A:
def __init__(self, txt: str):
self.q: D = None
self.x: C = None
self.w: B = None
self.s: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.u: D = None
self.y: E = None
self.o: C = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.y: E = None
self.q: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: B = None
self.t: C = None
self.v: A = None
self.x: C = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: B = None
self.x: D = None
self.o: C = None
self.t: D = None
self.v: B = None
self.txt = txt
c = A("c")
h = B("h")
g = C("g")
i = D("i")
b = E("b")
c.q = i
c.x = g
c.w = h
c.s = b
h.x = g
h.o = g
h.r = g
h.u = i
h.y = b
g.r = i
g.y = b
g.q = b
i.q = h
i.t = g
i.x = g
i.v = c
i.s = b
b.p = h
b.v = h
b.x = i
b.t = i
b.o = g
assert h.y.o.r.v.txt == "c" | h | b | g | i | c | x | x | x | c | i | g | b | h | x | x | x | 5 | 16 | 5 | 4 | 0 | true | true |
544 | class A:
def __init__(self, txt: str):
self.y: A = None
self.q: C = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.o: A = None
self.r: A = None
self.txt = txt
d = A("d")
f = B("f")
b = C("b")
h = A("h")
d.y = h
d.q = b
d.v = b
f.q = b
b.v = f
b.o = h
b.r = h
h.y = d
h.q = b
h.v = b
assert d.y.q.v.txt == " | f" | class A:
def __init__(self, txt: str):
self.y: A = None
self.q: C = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.o: A = None
self.r: A = None
self.txt = txt
d = A("d")
f = B("f")
b = C("b")
h = A("h")
d.y = h
d.q = b
d.v = b
f.q = b
b.v = f
b.o = h
b.r = h
h.y = d
h.q = b
h.v = b
assert d.y.q.v.txt == "f" | d | h | b | f | x | x | x | x | f | b | h | d | x | x | x | x | 4 | 7 | 3 | 3 | 0 | true | true |
545 | class A:
def __init__(self, txt: str):
self.o: C = None
self.q: C = None
self.x: C = 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.r: A = None
self.txt = txt
f = A("f")
j = B("j")
d = C("d")
f.o = d
f.q = d
f.x = d
j.q = f
d.r = f
assert j.q.o.r.txt == " | f" | class A:
def __init__(self, txt: str):
self.o: C = None
self.q: C = None
self.x: C = 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.r: A = None
self.txt = txt
f = A("f")
j = B("j")
d = C("d")
f.o = d
f.q = d
f.x = d
j.q = f
d.r = f
assert j.q.o.r.txt == "f" | j | f | d | f | x | x | x | x | f | d | f | j | x | x | x | x | 3 | 3 | 3 | 3 | 1 | true | true |
546 | class A:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.o: A = None
self.txt = txt
i = A("i")
h = B("h")
f = C("f")
i.p = f
h.r = f
h.y = i
f.y = h
f.o = i
assert i.p.y.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.o: A = None
self.txt = txt
i = A("i")
h = B("h")
f = C("f")
i.p = f
h.r = f
h.y = i
f.y = h
f.o = i
assert i.p.y.y.txt == "i" | i | f | h | i | x | x | x | x | i | h | f | i | x | x | x | x | 3 | 5 | 3 | 3 | 1 | true | true |
547 | class A:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
a = A("a")
d = B("d")
b = B("b")
a.p = b
a.o = b
d.p = a
b.p = a
assert b.p.p.p.txt == " | a" | class A:
def __init__(self, txt: str):
self.p: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
a = A("a")
d = B("d")
b = B("b")
a.p = b
a.o = b
d.p = a
b.p = a
assert b.p.p.p.txt == "a" | b | a | b | a | x | x | x | x | a | b | a | b | x | x | x | x | 3 | 3 | 2 | 3 | 2 | true | true |
548 | class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = 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.z: C = None
self.q: A = None
self.u: B = None
self.txt = txt
i = A("i")
h = B("h")
a = C("a")
b = D("b")
j = C("j")
i.t = j
h.v = b
a.w = i
b.z = j
b.q = i
b.u = h
j.w = i
assert j.w.t.w.t.w.txt == " | i" | class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: D = 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.z: C = None
self.q: A = None
self.u: B = None
self.txt = txt
i = A("i")
h = B("h")
a = C("a")
b = D("b")
j = C("j")
i.t = j
h.v = b
a.w = i
b.z = j
b.q = i
b.u = h
j.w = i
assert j.w.t.w.t.w.txt == "i" | j | i | j | i | j | i | x | x | i | j | i | j | i | j | x | x | 5 | 7 | 4 | 5 | 4 | true | true |
549 | class A:
def __init__(self, txt: str):
self.p: D = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.u: B = None
self.y: C = None
self.txt = txt
c = A("c")
g = B("g")
f = C("f")
a = D("a")
c.p = a
c.r = g
g.x = a
g.v = f
f.x = c
a.v = g
a.u = g
a.y = f
assert a.v.x.v.v.txt == " | f" | class A:
def __init__(self, txt: str):
self.p: D = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.u: B = None
self.y: C = None
self.txt = txt
c = A("c")
g = B("g")
f = C("f")
a = D("a")
c.p = a
c.r = g
g.x = a
g.v = f
f.x = c
a.v = g
a.u = g
a.y = f
assert a.v.x.v.v.txt == "f" | a | g | a | g | f | x | x | x | f | g | a | g | a | x | x | x | 4 | 7 | 4 | 4 | 2 | true | true |
550 | class A:
def __init__(self, txt: str):
self.v: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.r: C = None
self.txt = txt
d = A("d")
g = B("g")
h = C("h")
b = B("b")
c = A("c")
e = C("e")
d.v = c
d.y = c
g.p = d
h.p = b
h.r = e
b.p = c
c.v = d
c.y = d
e.p = b
e.r = h
assert c.y.y.y.v.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.v: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: B = None
self.r: C = None
self.txt = txt
d = A("d")
g = B("g")
h = C("h")
b = B("b")
c = A("c")
e = C("e")
d.v = c
d.y = c
g.p = d
h.p = b
h.r = e
b.p = c
c.v = d
c.y = d
e.p = b
e.r = h
assert c.y.y.y.v.y.txt == "d" | c | d | c | d | c | d | x | x | d | c | d | c | d | c | x | x | 6 | 8 | 3 | 5 | 4 | true | true |
551 | class A:
def __init__(self, txt: str):
self.s: C = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.w: A = None
self.v: A = None
self.txt = txt
h = A("h")
g = B("g")
j = C("j")
h.s = j
h.v = g
g.o = h
j.q = g
j.w = h
j.v = h
assert j.w.v.o.txt == " | h" | class A:
def __init__(self, txt: str):
self.s: C = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.w: A = None
self.v: A = None
self.txt = txt
h = A("h")
g = B("g")
j = C("j")
h.s = j
h.v = g
g.o = h
j.q = g
j.w = h
j.v = h
assert j.w.v.o.txt == "h" | j | h | g | h | x | x | x | x | h | g | h | j | x | x | x | x | 3 | 5 | 3 | 3 | 1 | true | true |
552 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.u: C = None
self.txt = txt
g = A("g")
a = B("a")
f = C("f")
b = A("b")
e = B("e")
j = C("j")
g.r = e
a.y = e
f.o = g
f.r = e
f.u = j
b.r = a
e.y = a
j.o = b
j.r = a
j.u = f
assert j.o.r.y.y.txt == " | a" | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.u: C = None
self.txt = txt
g = A("g")
a = B("a")
f = C("f")
b = A("b")
e = B("e")
j = C("j")
g.r = e
a.y = e
f.o = g
f.r = e
f.u = j
b.r = a
e.y = a
j.o = b
j.r = a
j.u = f
assert j.o.r.y.y.txt == "a" | j | b | a | e | a | x | x | x | a | e | a | b | j | x | x | x | 6 | 10 | 3 | 4 | 1 | true | true |
553 | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: C = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
c = A("c")
e = B("e")
i = C("i")
c.s = e
c.r = e
c.y = i
e.q = i
i.t = e
assert c.y.t.q.txt == " | i" | class A:
def __init__(self, txt: str):
self.s: B = None
self.y: C = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
c = A("c")
e = B("e")
i = C("i")
c.s = e
c.r = e
c.y = i
e.q = i
i.t = e
assert c.y.t.q.txt == "i" | c | i | e | i | x | x | x | x | i | e | i | c | x | x | x | x | 3 | 4 | 3 | 3 | 1 | true | true |
554 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.o: C = 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.u: B = None
self.z: B = None
self.s: E = None
self.t: A = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: A = None
self.y: D = None
self.r: D = None
self.x: D = None
self.o: B = None
self.txt = txt
i = A("i")
a = B("a")
d = C("d")
e = D("e")
j = E("j")
i.z = d
a.x = e
a.o = d
d.w = a
e.u = a
e.z = a
e.s = j
e.t = i
e.x = i
j.p = i
j.y = e
j.r = e
j.x = e
j.o = a
assert j.o.o.w.txt == " | a" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: D = None
self.o: C = 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.u: B = None
self.z: B = None
self.s: E = None
self.t: A = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: A = None
self.y: D = None
self.r: D = None
self.x: D = None
self.o: B = None
self.txt = txt
i = A("i")
a = B("a")
d = C("d")
e = D("e")
j = E("j")
i.z = d
a.x = e
a.o = d
d.w = a
e.u = a
e.z = a
e.s = j
e.t = i
e.x = i
j.p = i
j.y = e
j.r = e
j.x = e
j.o = a
assert j.o.o.w.txt == "a" | j | a | d | a | x | x | x | x | a | d | a | j | x | x | x | x | 5 | 10 | 5 | 3 | 1 | true | true |
555 | class A:
def __init__(self, txt: str):
self.w: C = None
self.r: C = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: F = None
self.q: A = None
self.x: C = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.o: D = None
self.z: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.p: D = None
self.x: E = None
self.z: B = None
self.txt = txt
j = A("j")
e = B("e")
f = C("f")
a = D("a")
h = E("h")
g = F("g")
j.w = f
j.r = f
j.p = e
e.t = g
e.q = j
e.z = j
e.x = f
f.v = j
a.t = j
h.y = a
h.o = a
h.z = e
g.o = f
g.p = a
g.x = h
g.z = e
assert e.x.v.p.x.v.txt == " | j" | class A:
def __init__(self, txt: str):
self.w: C = None
self.r: C = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: F = None
self.q: A = None
self.x: C = None
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: D = None
self.o: D = None
self.z: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.p: D = None
self.x: E = None
self.z: B = None
self.txt = txt
j = A("j")
e = B("e")
f = C("f")
a = D("a")
h = E("h")
g = F("g")
j.w = f
j.r = f
j.p = e
e.t = g
e.q = j
e.z = j
e.x = f
f.v = j
a.t = j
h.y = a
h.o = a
h.z = e
g.o = f
g.p = a
g.x = h
g.z = e
assert e.x.v.p.x.v.txt == "j" | e | f | j | e | f | j | x | x | j | f | e | j | f | e | x | x | 6 | 13 | 6 | 5 | 3 | true | true |
556 | class A:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.o: A = None
self.txt = txt
e = A("e")
d = B("d")
i = C("i")
c = C("c")
b = C("b")
e.p = b
d.u = e
i.x = d
i.o = e
c.x = d
c.o = e
b.x = d
b.o = e
assert i.o.p.o.txt == " | e" | class A:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.o: A = None
self.txt = txt
e = A("e")
d = B("d")
i = C("i")
c = C("c")
b = C("b")
e.p = b
d.u = e
i.x = d
i.o = e
c.x = d
c.o = e
b.x = d
b.o = e
assert i.o.p.o.txt == "e" | i | e | b | e | x | x | x | x | e | b | e | i | x | x | x | x | 5 | 8 | 3 | 3 | 1 | true | true |
557 | class A:
def __init__(self, txt: str):
self.r: B = None
self.p: B = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: B = None
self.o: C = None
self.txt = txt
f = A("f")
d = B("d")
c = C("c")
i = D("i")
h = E("h")
f.r = d
f.p = d
f.t = i
d.u = h
c.v = d
i.v = d
h.p = d
h.o = c
assert i.v.u.o.txt == " | c" | class A:
def __init__(self, txt: str):
self.r: B = None
self.p: B = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.p: B = None
self.o: C = None
self.txt = txt
f = A("f")
d = B("d")
c = C("c")
i = D("i")
h = E("h")
f.r = d
f.p = d
f.t = i
d.u = h
c.v = d
i.v = d
h.p = d
h.o = c
assert i.v.u.o.txt == "c" | i | d | h | c | x | x | x | x | c | h | d | i | x | x | x | x | 5 | 7 | 5 | 3 | 0 | true | true |
558 | class A:
def __init__(self, txt: str):
self.w: E = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: E = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.p: F = None
self.q: A = None
self.r: E = None
self.u: E = None
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: E = None
self.o: A = None
self.y: B = None
self.w: A = None
self.t: E = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.s: F = None
self.z: B = None
self.v: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
j = A("j")
c = B("c")
e = C("e")
d = D("d")
g = E("g")
i = F("i")
a = B("a")
j.w = g
j.v = g
c.t = g
c.r = j
e.w = a
e.p = i
e.q = j
e.z = j
e.r = g
e.u = g
d.q = g
d.t = g
d.v = g
d.o = j
d.w = j
d.y = c
g.r = j
g.s = i
g.z = a
g.v = d
i.w = e
a.t = g
a.r = j
assert e.p.w.p.w.w.t.s.txt == " | i" | class A:
def __init__(self, txt: str):
self.w: E = None
self.v: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: E = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.p: F = None
self.q: A = None
self.r: E = None
self.u: E = None
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: E = None
self.o: A = None
self.y: B = None
self.w: A = None
self.t: E = None
self.v: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.s: F = None
self.z: B = None
self.v: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
j = A("j")
c = B("c")
e = C("e")
d = D("d")
g = E("g")
i = F("i")
a = B("a")
j.w = g
j.v = g
c.t = g
c.r = j
e.w = a
e.p = i
e.q = j
e.z = j
e.r = g
e.u = g
d.q = g
d.t = g
d.v = g
d.o = j
d.w = j
d.y = c
g.r = j
g.s = i
g.z = a
g.v = d
i.w = e
a.t = g
a.r = j
assert e.p.w.p.w.w.t.s.txt == "i" | e | i | e | i | e | a | g | i | i | g | a | e | i | e | i | e | 7 | 17 | 6 | 7 | 4 | true | true |
559 | class A:
def __init__(self, txt: str):
self.y: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.y: B = None
self.txt = txt
d = A("d")
c = B("c")
i = B("i")
g = A("g")
d.y = g
d.w = i
c.r = i
c.y = i
i.r = c
i.y = c
g.y = d
g.w = c
assert d.y.y.y.y.txt == " | d" | class A:
def __init__(self, txt: str):
self.y: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.y: B = None
self.txt = txt
d = A("d")
c = B("c")
i = B("i")
g = A("g")
d.y = g
d.w = i
c.r = i
c.y = i
i.r = c
i.y = c
g.y = d
g.w = c
assert d.y.y.y.y.txt == "d" | d | g | d | g | d | x | x | x | d | g | d | g | d | x | x | x | 4 | 6 | 2 | 4 | 3 | true | true |
560 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
e = A("e")
c = B("c")
i = B("i")
b = A("b")
e.t = c
c.q = i
i.q = c
b.t = c
assert b.t.q.q.txt == " | c" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
e = A("e")
c = B("c")
i = B("i")
b = A("b")
e.t = c
c.q = i
i.q = c
b.t = c
assert b.t.q.q.txt == "c" | b | c | i | c | x | x | x | x | c | i | c | b | x | x | x | x | 4 | 4 | 2 | 3 | 1 | true | true |
561 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.z: B = None
self.txt = txt
c = A("c")
f = B("f")
i = B("i")
c.t = i
f.s = c
f.z = i
i.s = c
i.z = f
assert c.t.z.s.txt == " | c" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.z: B = None
self.txt = txt
c = A("c")
f = B("f")
i = B("i")
c.t = i
f.s = c
f.z = i
i.s = c
i.z = f
assert c.t.z.s.txt == "c" | c | i | f | c | x | x | x | x | c | f | i | c | x | x | x | x | 3 | 5 | 2 | 3 | 1 | true | true |
562 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.v: D = None
self.y: A = None
self.r: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.z: B = None
self.v: A = None
self.q: A = None
self.txt = txt
j = A("j")
b = B("b")
e = C("e")
i = D("i")
d = D("d")
g = C("g")
c = A("c")
j.q = b
b.p = c
b.w = g
e.q = c
e.v = i
e.y = j
e.r = g
i.r = e
i.z = b
i.v = j
i.q = j
d.r = g
d.z = b
d.v = c
d.q = c
g.q = j
g.v = i
g.y = c
g.r = e
c.q = b
assert g.y.q.p.txt == " | c" | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.v: D = None
self.y: A = None
self.r: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.z: B = None
self.v: A = None
self.q: A = None
self.txt = txt
j = A("j")
b = B("b")
e = C("e")
i = D("i")
d = D("d")
g = C("g")
c = A("c")
j.q = b
b.p = c
b.w = g
e.q = c
e.v = i
e.y = j
e.r = g
i.r = e
i.z = b
i.v = j
i.q = j
d.r = g
d.z = b
d.v = c
d.q = c
g.q = j
g.v = i
g.y = c
g.r = e
c.q = b
assert g.y.q.p.txt == "c" | g | c | b | c | x | x | x | x | c | b | c | g | x | x | x | x | 7 | 18 | 4 | 3 | 1 | true | true |
563 | class A:
def __init__(self, txt: str):
self.v: C = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.p: C = None
self.w: A = None
self.q: C = None
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.r: B = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.p: F = None
self.v: D = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.s: F = None
self.x: C = None
self.txt = txt
h = A("h")
a = B("a")
b = C("b")
i = D("i")
c = E("c")
e = F("e")
g = G("g")
h.v = b
h.t = i
a.x = c
a.p = b
a.q = b
a.w = h
a.r = g
b.w = e
i.q = h
i.r = a
i.s = a
c.z = h
c.p = e
c.v = i
c.o = b
e.y = i
g.y = c
g.s = e
g.x = b
assert g.s.y.r.txt == " | a" | class A:
def __init__(self, txt: str):
self.v: C = None
self.t: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.p: C = None
self.w: A = None
self.q: C = None
self.r: G = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.r: B = None
self.s: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.p: F = None
self.v: D = None
self.o: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: E = None
self.s: F = None
self.x: C = None
self.txt = txt
h = A("h")
a = B("a")
b = C("b")
i = D("i")
c = E("c")
e = F("e")
g = G("g")
h.v = b
h.t = i
a.x = c
a.p = b
a.q = b
a.w = h
a.r = g
b.w = e
i.q = h
i.r = a
i.s = a
c.z = h
c.p = e
c.v = i
c.o = b
e.y = i
g.y = c
g.s = e
g.x = b
assert g.s.y.r.txt == "a" | g | e | i | a | x | x | x | x | a | i | e | g | x | x | x | x | 7 | 17 | 7 | 3 | 0 | true | true |
564 | class A:
def __init__(self, txt: str):
self.u: C = 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.p: A = None
self.y: B = None
self.v: A = None
self.txt = txt
a = A("a")
c = B("c")
f = C("f")
a.u = f
c.q = a
f.p = a
f.v = a
f.y = c
assert c.q.u.v.txt == " | a" | class A:
def __init__(self, txt: str):
self.u: C = 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.p: A = None
self.y: B = None
self.v: A = None
self.txt = txt
a = A("a")
c = B("c")
f = C("f")
a.u = f
c.q = a
f.p = a
f.v = a
f.y = c
assert c.q.u.v.txt == "a" | c | a | f | a | x | x | x | x | a | f | a | c | x | x | x | x | 3 | 4 | 3 | 3 | 1 | true | true |
565 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
d = A("d")
a = B("a")
b = C("b")
g = B("g")
f = A("f")
c = A("c")
i = A("i")
d.z = f
a.r = f
a.s = d
b.q = c
g.r = c
g.s = i
f.z = d
c.z = i
i.z = c
assert f.z.z.z.z.z.z.z.txt == " | d" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
d = A("d")
a = B("a")
b = C("b")
g = B("g")
f = A("f")
c = A("c")
i = A("i")
d.z = f
a.r = f
a.s = d
b.q = c
g.r = c
g.s = i
f.z = d
c.z = i
i.z = c
assert f.z.z.z.z.z.z.z.txt == "d" | f | d | f | d | f | d | f | d | d | f | d | f | d | f | d | f | 7 | 9 | 3 | 7 | 6 | true | true |
566 | class A:
def __init__(self, txt: str):
self.u: B = None
self.w: D = None
self.v: B = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = 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.t: C = None
self.o: A = None
self.z: C = None
self.txt = txt
e = A("e")
a = B("a")
d = C("d")
c = D("c")
e.u = a
e.v = a
e.w = c
e.x = d
a.w = e
d.q = c
c.t = d
c.z = d
c.o = e
assert d.q.z.q.o.txt == " | e" | class A:
def __init__(self, txt: str):
self.u: B = None
self.w: D = None
self.v: B = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = 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.t: C = None
self.o: A = None
self.z: C = None
self.txt = txt
e = A("e")
a = B("a")
d = C("d")
c = D("c")
e.u = a
e.v = a
e.w = c
e.x = d
a.w = e
d.q = c
c.t = d
c.z = d
c.o = e
assert d.q.z.q.o.txt == "e" | d | c | d | c | e | x | x | x | e | c | d | c | d | x | x | x | 4 | 7 | 4 | 4 | 2 | true | true |
567 | class A:
def __init__(self, txt: str):
self.s: E = None
self.r: B = None
self.p: C = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.s: A = None
self.p: C = 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.z: C = None
self.w: B = None
self.p: G = None
self.q: B = None
self.t: G = None
self.u: A = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.w: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.w: E = None
self.t: D = None
self.x: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: D = None
self.q: F = None
self.o: A = None
self.y: E = None
self.s: F = None
self.w: B = None
self.txt = txt
e = A("e")
h = B("h")
a = C("a")
i = D("i")
g = E("g")
j = F("j")
d = G("d")
e.s = g
e.r = h
e.p = a
e.w = i
h.z = i
h.s = e
h.p = a
a.t = i
i.z = a
i.w = h
i.q = h
i.p = d
i.t = d
i.u = e
i.y = e
g.t = i
g.w = d
j.u = e
j.x = e
j.w = g
j.t = i
d.r = i
d.q = j
d.s = j
d.o = e
d.y = g
d.w = h
assert h.s.p.t.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.s: E = None
self.r: B = None
self.p: C = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: D = None
self.s: A = None
self.p: C = 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.z: C = None
self.w: B = None
self.p: G = None
self.q: B = None
self.t: G = None
self.u: A = None
self.y: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.w: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.w: E = None
self.t: D = None
self.x: A = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: D = None
self.q: F = None
self.o: A = None
self.y: E = None
self.s: F = None
self.w: B = None
self.txt = txt
e = A("e")
h = B("h")
a = C("a")
i = D("i")
g = E("g")
j = F("j")
d = G("d")
e.s = g
e.r = h
e.p = a
e.w = i
h.z = i
h.s = e
h.p = a
a.t = i
i.z = a
i.w = h
i.q = h
i.p = d
i.t = d
i.u = e
i.y = e
g.t = i
g.w = d
j.u = e
j.x = e
j.w = g
j.t = i
d.r = i
d.q = j
d.s = j
d.o = e
d.y = g
d.w = h
assert h.s.p.t.y.txt == "e" | h | e | a | i | e | x | x | x | e | i | a | e | h | x | x | x | 7 | 22 | 7 | 4 | 1 | true | true |
568 | class A:
def __init__(self, txt: str):
self.x: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
f = A("f")
d = B("d")
g = A("g")
h = A("h")
f.x = g
f.z = g
d.r = g
g.x = h
g.z = f
h.x = g
h.z = g
assert g.z.x.z.txt == " | f" | class A:
def __init__(self, txt: str):
self.x: A = None
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
f = A("f")
d = B("d")
g = A("g")
h = A("h")
f.x = g
f.z = g
d.r = g
g.x = h
g.z = f
h.x = g
h.z = g
assert g.z.x.z.txt == "f" | g | f | g | f | x | x | x | x | f | g | f | g | x | x | x | x | 4 | 5 | 2 | 3 | 2 | true | true |
569 | class A:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: C = None
self.p: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
e = B("e")
d = C("d")
i = D("i")
f = C("f")
b = C("b")
a.q = b
e.y = a
d.u = b
d.p = b
i.x = e
f.u = d
f.p = b
b.u = d
b.p = f
assert a.q.u.p.txt == " | b" | class A:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: C = None
self.p: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
a = A("a")
e = B("e")
d = C("d")
i = D("i")
f = C("f")
b = C("b")
a.q = b
e.y = a
d.u = b
d.p = b
i.x = e
f.u = d
f.p = b
b.u = d
b.p = f
assert a.q.u.p.txt == "b" | a | b | d | b | x | x | x | x | b | d | b | a | x | x | x | x | 6 | 8 | 4 | 3 | 1 | true | true |
570 | class A:
def __init__(self, txt: str):
self.r: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
f = A("f")
h = B("h")
j = A("j")
c = B("c")
e = B("e")
g = A("g")
f.r = g
f.t = j
h.z = c
j.r = f
j.t = g
c.z = e
e.z = h
g.r = j
g.t = f
assert f.r.r.t.t.txt == " | f" | class A:
def __init__(self, txt: str):
self.r: A = None
self.t: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
f = A("f")
h = B("h")
j = A("j")
c = B("c")
e = B("e")
g = A("g")
f.r = g
f.t = j
h.z = c
j.r = f
j.t = g
c.z = e
e.z = h
g.r = j
g.t = f
assert f.r.r.t.t.txt == "f" | f | g | j | g | f | x | x | x | f | g | j | g | f | x | x | x | 6 | 9 | 2 | 4 | 2 | true | true |
571 | class A:
def __init__(self, txt: str):
self.x: C = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.t: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.s: A = None
self.txt = txt
i = A("i")
f = B("f")
g = C("g")
a = D("a")
c = E("c")
j = B("j")
e = C("e")
i.x = e
i.y = a
f.u = i
f.t = j
g.y = i
a.y = c
a.x = j
c.u = g
c.s = i
j.u = i
j.t = f
e.y = i
assert i.y.y.s.txt == " | i" | class A:
def __init__(self, txt: str):
self.x: C = None
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.t: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.x: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.s: A = None
self.txt = txt
i = A("i")
f = B("f")
g = C("g")
a = D("a")
c = E("c")
j = B("j")
e = C("e")
i.x = e
i.y = a
f.u = i
f.t = j
g.y = i
a.y = c
a.x = j
c.u = g
c.s = i
j.u = i
j.t = f
e.y = i
assert i.y.y.s.txt == "i" | i | a | c | i | x | x | x | x | i | c | a | i | x | x | x | x | 7 | 12 | 5 | 3 | 1 | true | true |
572 | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
j = A("j")
e = B("e")
d = B("d")
j.y = d
e.q = j
d.q = j
assert e.q.y.q.txt == " | j" | class A:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
j = A("j")
e = B("e")
d = B("d")
j.y = d
e.q = j
d.q = j
assert e.q.y.q.txt == "j" | e | j | d | j | x | x | x | x | j | d | j | e | x | x | x | x | 3 | 3 | 2 | 3 | 1 | true | true |
573 | class A:
def __init__(self, txt: str):
self.t: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.p: A = None
self.txt = txt
g = A("g")
d = B("d")
b = B("b")
j = A("j")
c = A("c")
g.t = b
g.r = d
d.s = b
d.p = g
b.s = d
b.p = j
j.t = d
j.r = b
c.t = d
c.r = b
assert g.t.p.r.s.p.txt == " | g" | class A:
def __init__(self, txt: str):
self.t: B = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.p: A = None
self.txt = txt
g = A("g")
d = B("d")
b = B("b")
j = A("j")
c = A("c")
g.t = b
g.r = d
d.s = b
d.p = g
b.s = d
b.p = j
j.t = d
j.r = b
c.t = d
c.r = b
assert g.t.p.r.s.p.txt == "g" | g | b | j | b | d | g | x | x | g | d | b | j | b | g | x | x | 5 | 10 | 2 | 5 | 2 | true | true |
574 | class A:
def __init__(self, txt: str):
self.x: A = None
self.r: C = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.s: A = None
self.txt = txt
a = A("a")
h = B("h")
i = C("i")
e = A("e")
a.x = e
a.r = i
a.p = i
h.q = i
i.z = a
i.s = a
e.x = a
e.r = i
e.p = i
assert i.z.x.x.txt == " | a" | class A:
def __init__(self, txt: str):
self.x: A = None
self.r: C = None
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.s: A = None
self.txt = txt
a = A("a")
h = B("h")
i = C("i")
e = A("e")
a.x = e
a.r = i
a.p = i
h.q = i
i.z = a
i.s = a
e.x = a
e.r = i
e.p = i
assert i.z.x.x.txt == "a" | i | a | e | a | x | x | x | x | a | e | a | i | x | x | x | x | 4 | 6 | 3 | 3 | 1 | true | true |
575 | class A:
def __init__(self, txt: str):
self.p: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
c = A("c")
d = B("d")
h = C("h")
g = B("g")
c.p = g
c.q = g
d.y = h
d.s = g
h.u = c
g.y = h
g.s = d
assert g.s.y.u.txt == " | c" | class A:
def __init__(self, txt: str):
self.p: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
c = A("c")
d = B("d")
h = C("h")
g = B("g")
c.p = g
c.q = g
d.y = h
d.s = g
h.u = c
g.y = h
g.s = d
assert g.s.y.u.txt == "c" | g | d | h | c | x | x | x | x | c | h | d | g | x | x | x | x | 4 | 6 | 3 | 3 | 0 | true | true |
576 | class A:
def __init__(self, txt: str):
self.y: D = None
self.u: C = None
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.w: D = None
self.x: E = None
self.y: E = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.o: E = None
self.x: E = None
self.s: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.x: E = None
self.s: E = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: C = None
self.v: C = None
self.y: D = None
self.w: C = None
self.txt = txt
j = A("j")
f = B("f")
i = C("i")
g = D("g")
h = E("h")
c = C("c")
j.y = g
j.u = c
j.q = h
f.v = j
f.w = g
f.p = g
f.x = h
f.y = h
i.y = g
i.o = h
i.x = h
i.s = h
g.z = h
g.x = h
g.s = h
g.r = j
h.q = c
h.v = c
h.y = g
h.w = i
c.y = g
c.o = h
c.x = h
c.s = h
assert h.w.y.r.u.y.s.txt == " | h" | class A:
def __init__(self, txt: str):
self.y: D = None
self.u: C = None
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.w: D = None
self.x: E = None
self.y: E = None
self.p: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.o: E = None
self.x: E = None
self.s: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.x: E = None
self.s: E = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: C = None
self.v: C = None
self.y: D = None
self.w: C = None
self.txt = txt
j = A("j")
f = B("f")
i = C("i")
g = D("g")
h = E("h")
c = C("c")
j.y = g
j.u = c
j.q = h
f.v = j
f.w = g
f.p = g
f.x = h
f.y = h
i.y = g
i.o = h
i.x = h
i.s = h
g.z = h
g.x = h
g.s = h
g.r = j
h.q = c
h.v = c
h.y = g
h.w = i
c.y = g
c.o = h
c.x = h
c.s = h
assert h.w.y.r.u.y.s.txt == "h" | h | i | g | j | c | g | h | x | h | g | c | j | g | i | h | x | 6 | 15 | 5 | 6 | 2 | true | true |
577 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.v: A = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.w: B = None
self.q: B = None
self.txt = txt
j = A("j")
b = B("b")
i = C("i")
j.o = b
b.x = i
b.p = i
b.v = j
i.r = j
i.w = b
i.q = b
assert b.v.o.v.txt == " | j" | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.v: A = None
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.w: B = None
self.q: B = None
self.txt = txt
j = A("j")
b = B("b")
i = C("i")
j.o = b
b.x = i
b.p = i
b.v = j
i.r = j
i.w = b
i.q = b
assert b.v.o.v.txt == "j" | b | j | b | j | x | x | x | x | j | b | j | b | x | x | x | x | 3 | 5 | 3 | 3 | 2 | true | true |
578 | class A:
def __init__(self, txt: str):
self.v: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: D = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.z: B = None
self.txt = txt
h = A("h")
c = B("c")
j = C("j")
f = D("f")
a = B("a")
h.v = c
h.t = a
c.x = h
c.w = h
c.u = f
j.y = a
j.z = c
f.v = h
f.z = a
a.x = h
a.w = h
a.u = f
assert h.v.u.z.u.v.txt == " | h" | class A:
def __init__(self, txt: str):
self.v: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.u: D = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: A = None
self.z: B = None
self.txt = txt
h = A("h")
c = B("c")
j = C("j")
f = D("f")
a = B("a")
h.v = c
h.t = a
c.x = h
c.w = h
c.u = f
j.y = a
j.z = c
f.v = h
f.z = a
a.x = h
a.w = h
a.u = f
assert h.v.u.z.u.v.txt == "h" | h | c | f | a | f | h | x | x | h | f | a | f | c | h | x | x | 5 | 10 | 4 | 5 | 2 | true | true |
579 | class A:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = 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.q: A = None
self.w: B = None
self.r: B = None
self.p: B = None
self.txt = txt
i = A("i")
f = B("f")
b = C("b")
a = D("a")
i.u = a
f.v = i
b.x = a
a.q = i
a.w = f
a.r = f
a.p = f
assert f.v.u.q.txt == " | i" | class A:
def __init__(self, txt: str):
self.u: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = 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.q: A = None
self.w: B = None
self.r: B = None
self.p: B = None
self.txt = txt
i = A("i")
f = B("f")
b = C("b")
a = D("a")
i.u = a
f.v = i
b.x = a
a.q = i
a.w = f
a.r = f
a.p = f
assert f.v.u.q.txt == "i" | f | i | a | i | x | x | x | x | i | a | i | f | x | x | x | x | 4 | 5 | 4 | 3 | 1 | true | true |
580 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
f = B("f")
g = A("g")
b.t = f
f.y = g
g.t = f
assert f.y.t.y.txt == " | g" | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
f = B("f")
g = A("g")
b.t = f
f.y = g
g.t = f
assert f.y.t.y.txt == "g" | f | g | f | g | x | x | x | x | g | f | g | f | x | x | x | x | 3 | 3 | 2 | 3 | 2 | true | true |
581 | class A:
def __init__(self, txt: str):
self.s: C = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.q: B = None
self.txt = txt
f = A("f")
e = B("e")
g = C("g")
f.s = g
f.q = e
e.z = g
e.r = g
g.s = e
g.q = e
assert e.z.s.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.s: C = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.q: B = None
self.txt = txt
f = A("f")
e = B("e")
g = C("g")
f.s = g
f.q = e
e.z = g
e.r = g
g.s = e
g.q = e
assert e.z.s.z.txt == "g" | e | g | e | g | x | x | x | x | g | e | g | e | x | x | x | x | 3 | 4 | 3 | 3 | 2 | true | true |
582 | class A:
def __init__(self, txt: str):
self.s: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
j = A("j")
g = B("g")
c = A("c")
a = A("a")
h = B("h")
e = B("e")
j.s = e
j.t = g
g.t = c
c.s = h
c.t = g
a.s = h
a.t = e
h.t = c
e.t = a
assert j.t.t.s.t.txt == " | c" | class A:
def __init__(self, txt: str):
self.s: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
j = A("j")
g = B("g")
c = A("c")
a = A("a")
h = B("h")
e = B("e")
j.s = e
j.t = g
g.t = c
c.s = h
c.t = g
a.s = h
a.t = e
h.t = c
e.t = a
assert j.t.t.s.t.txt == "c" | j | g | c | h | c | x | x | x | c | h | c | g | j | x | x | x | 6 | 9 | 2 | 4 | 1 | true | true |
583 | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
g = A("g")
h = B("h")
f = A("f")
g.z = f
h.x = g
f.z = g
assert f.z.z.z.txt == " | g" | class A:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
g = A("g")
h = B("h")
f = A("f")
g.z = f
h.x = g
f.z = g
assert f.z.z.z.txt == "g" | f | g | f | g | x | x | x | x | g | f | g | f | x | x | x | x | 3 | 3 | 2 | 3 | 2 | true | true |
584 | class A:
def __init__(self, txt: str):
self.o: E = None
self.t: D = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.u: E = None
self.v: A = None
self.p: C = 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.w: B = None
self.txt = txt
g = A("g")
h = B("h")
e = C("e")
c = D("c")
a = E("a")
f = F("f")
g.o = a
g.t = c
g.v = e
h.s = f
h.u = f
e.y = g
c.w = f
c.u = a
c.v = g
c.p = e
a.r = g
f.w = h
assert e.y.t.v.txt == " | g" | class A:
def __init__(self, txt: str):
self.o: E = None
self.t: D = None
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: F = None
self.u: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: F = None
self.u: E = None
self.v: A = None
self.p: C = 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.w: B = None
self.txt = txt
g = A("g")
h = B("h")
e = C("e")
c = D("c")
a = E("a")
f = F("f")
g.o = a
g.t = c
g.v = e
h.s = f
h.u = f
e.y = g
c.w = f
c.u = a
c.v = g
c.p = e
a.r = g
f.w = h
assert e.y.t.v.txt == "g" | e | g | c | g | x | x | x | x | g | c | g | e | x | x | x | x | 6 | 11 | 6 | 3 | 1 | true | true |
585 | class A:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.o: E = None
self.x: B = 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.r: C = None
self.y: C = None
self.txt = txt
a = A("a")
c = B("c")
e = C("e")
b = D("b")
g = E("g")
a.o = b
c.s = a
c.v = b
e.u = g
e.o = g
e.x = c
b.w = c
g.r = e
g.y = e
assert b.w.v.w.s.txt == " | a" | class A:
def __init__(self, txt: str):
self.o: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.o: E = None
self.x: B = 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.r: C = None
self.y: C = None
self.txt = txt
a = A("a")
c = B("c")
e = C("e")
b = D("b")
g = E("g")
a.o = b
c.s = a
c.v = b
e.u = g
e.o = g
e.x = c
b.w = c
g.r = e
g.y = e
assert b.w.v.w.s.txt == "a" | b | c | b | c | a | x | x | x | a | c | b | c | b | x | x | x | 5 | 7 | 5 | 4 | 2 | true | true |
586 | class A:
def __init__(self, txt: str):
self.w: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.o: B = None
self.txt = txt
i = A("i")
d = B("d")
e = C("e")
j = C("j")
f = B("f")
i.w = j
i.r = e
d.z = i
d.o = j
e.v = i
e.o = f
j.v = i
j.o = f
f.z = i
f.o = j
assert e.o.o.v.txt == " | i" | class A:
def __init__(self, txt: str):
self.w: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.o: B = None
self.txt = txt
i = A("i")
d = B("d")
e = C("e")
j = C("j")
f = B("f")
i.w = j
i.r = e
d.z = i
d.o = j
e.v = i
e.o = f
j.v = i
j.o = f
f.z = i
f.o = j
assert e.o.o.v.txt == "i" | e | f | j | i | x | x | x | x | i | j | f | e | x | x | x | x | 5 | 10 | 3 | 3 | 0 | true | true |
587 | class A:
def __init__(self, txt: str):
self.u: C = None
self.z: D = None
self.r: E = None
self.q: B = 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.x: B = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.t: D = None
self.p: B = None
self.txt = txt
e = A("e")
d = B("d")
i = C("i")
f = D("f")
h = E("h")
e.u = i
e.z = f
e.r = h
e.q = d
d.s = e
i.x = d
i.q = d
f.p = i
h.z = e
h.t = f
h.p = d
assert f.p.x.s.q.s.txt == " | e" | class A:
def __init__(self, txt: str):
self.u: C = None
self.z: D = None
self.r: E = None
self.q: B = 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.x: B = None
self.q: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.z: A = None
self.t: D = None
self.p: B = None
self.txt = txt
e = A("e")
d = B("d")
i = C("i")
f = D("f")
h = E("h")
e.u = i
e.z = f
e.r = h
e.q = d
d.s = e
i.x = d
i.q = d
f.p = i
h.z = e
h.t = f
h.p = d
assert f.p.x.s.q.s.txt == "e" | f | i | d | e | d | e | x | x | e | d | e | d | i | f | x | x | 5 | 10 | 5 | 5 | 2 | true | true |
588 | class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.u: A = None
self.txt = txt
i = A("i")
e = B("e")
a = C("a")
j = D("j")
i.y = a
e.z = a
a.y = i
a.u = j
j.r = a
j.u = i
assert e.z.y.y.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.u: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.u: A = None
self.txt = txt
i = A("i")
e = B("e")
a = C("a")
j = D("j")
i.y = a
e.z = a
a.y = i
a.u = j
j.r = a
j.u = i
assert e.z.y.y.y.txt == "i" | e | a | i | a | i | x | x | x | i | a | i | a | e | x | x | x | 4 | 6 | 4 | 4 | 2 | true | true |
589 | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.p: D = None
self.x: D = None
self.t: D = None
self.u: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.z: E = None
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: B = None
self.p: C = None
self.t: B = None
self.z: C = None
self.txt = txt
j = A("j")
f = B("f")
a = C("a")
c = D("c")
h = E("h")
e = E("e")
j.s = f
f.v = j
f.p = c
f.x = c
f.t = c
f.u = h
a.v = f
c.v = a
c.z = h
c.q = j
h.s = f
h.t = f
h.p = a
h.z = a
e.s = f
e.t = f
e.p = a
e.z = a
assert j.s.u.z.v.t.q.txt == " | j" | class A:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.p: D = None
self.x: D = None
self.t: D = None
self.u: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.z: E = None
self.q: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: B = None
self.p: C = None
self.t: B = None
self.z: C = None
self.txt = txt
j = A("j")
f = B("f")
a = C("a")
c = D("c")
h = E("h")
e = E("e")
j.s = f
f.v = j
f.p = c
f.x = c
f.t = c
f.u = h
a.v = f
c.v = a
c.z = h
c.q = j
h.s = f
h.t = f
h.p = a
h.z = a
e.s = f
e.t = f
e.p = a
e.z = a
assert j.s.u.z.v.t.q.txt == "j" | j | f | h | a | f | c | j | x | j | c | f | a | h | f | j | x | 6 | 12 | 5 | 6 | 2 | true | true |
590 | class A:
def __init__(self, txt: str):
self.u: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
i = B("i")
h = A("h")
b.u = h
b.y = h
i.y = h
h.u = b
h.y = b
assert h.y.y.u.txt == " | b" | class A:
def __init__(self, txt: str):
self.u: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
b = A("b")
i = B("i")
h = A("h")
b.u = h
b.y = h
i.y = h
h.u = b
h.y = b
assert h.y.y.u.txt == "b" | h | b | h | b | x | x | x | x | b | h | b | h | x | x | x | x | 3 | 3 | 2 | 3 | 2 | true | true |
591 | class A:
def __init__(self, txt: str):
self.o: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
e = A("e")
b = B("b")
d = A("d")
g = B("g")
e.o = d
e.s = b
b.z = g
d.o = e
d.s = b
g.z = b
assert d.o.o.o.txt == " | e" | class A:
def __init__(self, txt: str):
self.o: A = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
e = A("e")
b = B("b")
d = A("d")
g = B("g")
e.o = d
e.s = b
b.z = g
d.o = e
d.s = b
g.z = b
assert d.o.o.o.txt == "e" | d | e | d | e | x | x | x | x | e | d | e | d | x | x | x | x | 4 | 6 | 2 | 3 | 2 | true | true |
592 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
i = A("i")
e = B("e")
j = C("j")
i.z = j
e.p = i
j.y = i
assert e.p.z.y.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
i = A("i")
e = B("e")
j = C("j")
i.z = j
e.p = i
j.y = i
assert e.p.z.y.txt == "i" | e | i | j | i | x | x | x | x | i | j | i | e | x | x | x | x | 3 | 3 | 3 | 3 | 1 | true | true |
593 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: A = None
self.txt = txt
e = A("e")
h = B("h")
j = A("j")
i = B("i")
e.y = j
h.z = e
h.p = j
j.y = e
i.z = j
i.p = e
assert h.p.y.y.y.txt == " | e" | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.p: A = None
self.txt = txt
e = A("e")
h = B("h")
j = A("j")
i = B("i")
e.y = j
h.z = e
h.p = j
j.y = e
i.z = j
i.p = e
assert h.p.y.y.y.txt == "e" | h | j | e | j | e | x | x | x | e | j | e | j | h | x | x | x | 4 | 6 | 2 | 4 | 2 | true | true |
594 | class A:
def __init__(self, txt: str):
self.u: F = None
self.p: F = None
self.s: D = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.s: F = None
self.x: C = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.w: C = None
self.q: B = None
self.x: A = None
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: A = None
self.o: A = None
self.p: A = None
self.q: B = None
self.r: F = None
self.y: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.r: B = None
self.z: B = None
self.x: D = None
self.txt = txt
d = A("d")
a = B("a")
g = C("g")
f = D("f")
c = E("c")
h = F("h")
j = E("j")
d.u = h
d.p = h
d.v = h
d.s = f
a.u = f
a.s = h
a.x = g
a.o = d
g.y = f
f.o = g
f.w = g
f.q = a
f.z = a
f.x = d
c.t = d
c.o = d
c.p = d
c.q = a
c.r = h
c.y = f
h.s = a
h.r = a
h.z = a
h.x = f
j.t = d
j.o = d
j.p = d
j.q = a
j.r = h
j.y = f
assert f.x.s.q.o.s.txt == " | f" | class A:
def __init__(self, txt: str):
self.u: F = None
self.p: F = None
self.s: D = None
self.v: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: D = None
self.s: F = None
self.x: C = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: C = None
self.w: C = None
self.q: B = None
self.x: A = None
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: A = None
self.o: A = None
self.p: A = None
self.q: B = None
self.r: F = None
self.y: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.r: B = None
self.z: B = None
self.x: D = None
self.txt = txt
d = A("d")
a = B("a")
g = C("g")
f = D("f")
c = E("c")
h = F("h")
j = E("j")
d.u = h
d.p = h
d.v = h
d.s = f
a.u = f
a.s = h
a.x = g
a.o = d
g.y = f
f.o = g
f.w = g
f.q = a
f.z = a
f.x = d
c.t = d
c.o = d
c.p = d
c.q = a
c.r = h
c.y = f
h.s = a
h.r = a
h.z = a
h.x = f
j.t = d
j.o = d
j.p = d
j.q = a
j.r = h
j.y = f
assert f.x.s.q.o.s.txt == "f" | f | d | f | a | d | f | x | x | f | d | a | f | d | f | x | x | 7 | 20 | 6 | 5 | 3 | true | true |
595 | class A:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.p: D = 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.t: B = None
self.x: C = None
self.txt = txt
g = A("g")
e = B("e")
b = C("b")
c = D("c")
g.x = c
e.r = c
e.p = c
b.w = g
c.t = e
c.x = b
assert e.p.t.r.x.txt == " | b" | class A:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: D = None
self.p: D = 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.t: B = None
self.x: C = None
self.txt = txt
g = A("g")
e = B("e")
b = C("b")
c = D("c")
g.x = c
e.r = c
e.p = c
b.w = g
c.t = e
c.x = b
assert e.p.t.r.x.txt == "b" | e | c | e | c | b | x | x | x | b | c | e | c | e | x | x | x | 4 | 5 | 4 | 4 | 2 | true | true |
596 | class A:
def __init__(self, txt: str):
self.z: E = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.z: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: E = None
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.s: F = None
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: B = None
self.r: C = None
self.q: A = None
self.y: C = None
self.txt = txt
g = A("g")
i = B("i")
a = C("a")
j = D("j")
h = E("h")
f = F("f")
g.z = h
g.v = i
i.y = a
i.p = f
a.q = i
a.z = f
j.o = h
j.v = i
h.x = j
h.s = f
h.r = g
f.u = i
f.r = a
f.y = a
f.q = g
assert a.q.y.z.q.v.txt == " | i" | class A:
def __init__(self, txt: str):
self.z: E = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.p: F = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.z: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: E = None
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: D = None
self.s: F = None
self.r: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: B = None
self.r: C = None
self.q: A = None
self.y: C = None
self.txt = txt
g = A("g")
i = B("i")
a = C("a")
j = D("j")
h = E("h")
f = F("f")
g.z = h
g.v = i
i.y = a
i.p = f
a.q = i
a.z = f
j.o = h
j.v = i
h.x = j
h.s = f
h.r = g
f.u = i
f.r = a
f.y = a
f.q = g
assert a.q.y.z.q.v.txt == "i" | a | i | a | f | g | i | x | x | i | g | f | a | i | a | x | x | 6 | 14 | 6 | 5 | 2 | true | true |
597 | class A:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.q: D = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
h = A("h")
g = B("g")
e = C("e")
j = D("j")
b = D("b")
a = D("a")
h.x = b
g.w = j
g.q = j
g.t = e
e.t = b
e.y = g
j.x = h
b.x = h
a.x = h
assert h.x.x.x.x.x.x.txt == " | h" | class A:
def __init__(self, txt: str):
self.x: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: D = None
self.q: D = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: D = None
self.y: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
h = A("h")
g = B("g")
e = C("e")
j = D("j")
b = D("b")
a = D("a")
h.x = b
g.w = j
g.q = j
g.t = e
e.t = b
e.y = g
j.x = h
b.x = h
a.x = h
assert h.x.x.x.x.x.x.txt == "h" | h | b | h | b | h | b | h | x | h | b | h | b | h | b | h | x | 6 | 8 | 4 | 6 | 5 | true | true |
598 | class A:
def __init__(self, txt: str):
self.w: C = None
self.u: D = None
self.o: C = None
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: B = None
self.p: A = None
self.w: B = None
self.txt = txt
d = A("d")
f = B("f")
a = C("a")
e = D("e")
j = E("j")
d.w = a
d.o = a
d.u = e
d.r = j
f.t = a
f.z = j
a.z = f
a.o = f
e.u = d
j.v = f
j.w = f
j.p = d
assert e.u.r.w.t.txt == " | a" | class A:
def __init__(self, txt: str):
self.w: C = None
self.u: D = None
self.o: C = None
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.z: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.o: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: B = None
self.p: A = None
self.w: B = None
self.txt = txt
d = A("d")
f = B("f")
a = C("a")
e = D("e")
j = E("j")
d.w = a
d.o = a
d.u = e
d.r = j
f.t = a
f.z = j
a.z = f
a.o = f
e.u = d
j.v = f
j.w = f
j.p = d
assert e.u.r.w.t.txt == "a" | e | d | j | f | a | x | x | x | a | f | j | d | e | x | x | x | 5 | 9 | 5 | 4 | 0 | true | true |
599 | 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.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.q: D = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.y: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: B = None
self.r: E = None
self.txt = txt
h = A("h")
a = B("a")
f = C("f")
d = D("d")
i = E("i")
e = F("e")
h.r = f
a.z = f
f.r = h
f.q = d
f.u = i
d.t = f
i.t = d
i.y = f
e.u = a
e.r = i
assert h.r.u.y.txt == " | f" | 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.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.q: D = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.t: D = None
self.y: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: B = None
self.r: E = None
self.txt = txt
h = A("h")
a = B("a")
f = C("f")
d = D("d")
i = E("i")
e = F("e")
h.r = f
a.z = f
f.r = h
f.q = d
f.u = i
d.t = f
i.t = d
i.y = f
e.u = a
e.r = i
assert h.r.u.y.txt == "f" | h | f | i | f | x | x | x | x | f | i | f | h | x | x | x | x | 6 | 10 | 6 | 3 | 1 | true | true |