%   ORIGINAL: h4/quotient__list/LIST__QUOTIENT
% Assm: HL_TRUTH: T
% Assm: HL_FALSITY: ~F
% Assm: HL_BOOL_CASES: !t. (t <=> T) \/ (t <=> F)
% Assm: HL_EXT: !f g. (!x. f x = g x) ==> f = g
% Assm: h4/bool/ETA__AX: !t. (\x. t x) = t
% Assm: h4/bool/TRUTH: T
% Assm: h4/bool/IMP__ANTISYM__AX: !t2 t1. (t1 ==> t2) ==> (t2 ==> t1) ==> (t1 <=> t2)
% Assm: h4/bool/FALSITY: !t. F ==> t
% Assm: h4/bool/FORALL__SIMP: !t. (!x. t) <=> t
% Assm: h4/bool/IMP__F: !t. (t ==> F) ==> ~t
% Assm: h4/bool/F__IMP: !t. ~t ==> t ==> F
% Assm: h4/bool/AND__CLAUSES_c0: !t. T /\ t <=> t
% Assm: h4/bool/AND__CLAUSES_c3: !t. t /\ F <=> F
% Assm: h4/bool/IMP__CLAUSES_c4: !t. t ==> F <=> ~t
% Assm: h4/bool/NOT__CLAUSES_c0: !t. ~ ~t <=> t
% Assm: h4/bool/NOT__CLAUSES_c2: ~F <=> T
% Assm: h4/bool/REFL__CLAUSE: !x. x = x <=> T
% Assm: h4/bool/EQ__CLAUSES_c0: !t. (T <=> t) <=> t
% Assm: h4/bool/EQ__CLAUSES_c1: !t. (t <=> T) <=> t
% Assm: h4/bool/EQ__CLAUSES_c2: !t. (F <=> t) <=> ~t
% Assm: h4/sat/NOT__NOT: !t. ~ ~t <=> t
% Assm: h4/sat/AND__INV__IMP: !A. A ==> ~A ==> F
% Assm: h4/sat/OR__DUAL2: !B A. ~(A \/ B) ==> F <=> (A ==> F) ==> ~B ==> F
% Assm: h4/sat/OR__DUAL3: !B A. ~(~A \/ B) ==> F <=> A ==> ~B ==> F
% Assm: h4/sat/AND__INV2: !A. (~A ==> F) ==> (A ==> F) ==> F
% Assm: h4/sat/dc__eq: !r q p. (p <=> q <=> r) <=> (p \/ q \/ r) /\ (p \/ ~r \/ ~q) /\ (q \/ ~r \/ ~p) /\ (r \/ ~q \/ ~p)
% Assm: h4/sat/dc__conj: !r q p. (p <=> q /\ r) <=> (p \/ ~q \/ ~r) /\ (q \/ ~p) /\ (r \/ ~p)
% Assm: h4/sat/dc__disj: !r q p. (p <=> q \/ r) <=> (p \/ ~q) /\ (p \/ ~r) /\ (q \/ r \/ ~p)
% Assm: h4/sat/dc__imp: !r q p. (p <=> q ==> r) <=> (p \/ q) /\ (p \/ ~r) /\ (~q \/ r \/ ~p)
% Assm: h4/sat/dc__neg: !q p. (p <=> ~q) <=> (p \/ q) /\ (~q \/ ~p)
% Assm: h4/combin/I__THM: !x. h4/combin/I x = x
% Assm: h4/list/MAP0_c0: !f. h4/list/MAP f h4/list/NIL = h4/list/NIL
% Assm: h4/list/MAP0_c1: !t h f. h4/list/MAP f (h4/list/CONS h t) = h4/list/CONS (f h) (h4/list/MAP f t)
% Assm: h4/list/list__induction: !P. P h4/list/NIL /\ (!t. P t ==> (!h. P (h4/list/CONS h t))) ==> (!l. P l)
% Assm: h4/list/list__nchotomy: !l. l = h4/list/NIL \/ (?h t. l = h4/list/CONS h t)
% Assm: h4/list/CONS__11: !a1_27 a1 a0_27 a0. h4/list/CONS a0 a1 = h4/list/CONS a0_27 a1_27 <=> a0 = a0_27 /\ a1 = a1_27
% Assm: h4/list/NOT__NIL__CONS: !a1 a0. ~(h4/list/NIL = h4/list/CONS a0 a1)
% Assm: h4/list/NOT__CONS__NIL: !a1 a0. ~(h4/list/CONS a0 a1 = h4/list/NIL)
% Assm: h4/list/LIST__REL__def_c0: !R. h4/list/LIST__REL R h4/list/NIL h4/list/NIL <=> T
% Assm: h4/list/LIST__REL__def_c1: !as a R. h4/list/LIST__REL R (h4/list/CONS a as) h4/list/NIL <=> F
% Assm: h4/list/LIST__REL__def_c2: !bs b R. h4/list/LIST__REL R h4/list/NIL (h4/list/CONS b bs) <=> F
% Assm: h4/list/LIST__REL__def_c3: !bs b as a R. h4/list/LIST__REL R (h4/list/CONS a as) (h4/list/CONS b bs) <=> R a b /\ h4/list/LIST__REL R as bs
% Assm: h4/quotient/QUOTIENT__def: !rep abs R. h4/quotient/QUOTIENT R abs rep <=> (!a. abs (rep a) = a) /\ (!a. R (rep a) (rep a)) /\ (!r s. R r s <=> R r r /\ R s s /\ abs r = abs s)
% Assm: h4/quotient/QUOTIENT__ABS__REP: !rep abs R. h4/quotient/QUOTIENT R abs rep ==> (!a. abs (rep a) = a)
% Assm: h4/quotient/QUOTIENT__REP__REFL: !rep abs R. h4/quotient/QUOTIENT R abs rep ==> (!a. R (rep a) (rep a))
% Assm: h4/quotient/QUOTIENT__REL: !rep abs R. h4/quotient/QUOTIENT R abs rep ==> (!r s. R r s <=> R r r /\ R s s /\ abs r = abs s)
% Assm: h4/quotient__list/LIST__REL__REL: !rep abs R. h4/quotient/QUOTIENT R abs rep ==> (!r s. h4/list/LIST__REL R r s <=> h4/list/LIST__REL R r r /\ h4/list/LIST__REL R s s /\ h4/list/MAP abs r = h4/list/MAP abs s)
% Goal: !rep abs R. h4/quotient/QUOTIENT R abs rep ==> h4/quotient/QUOTIENT (h4/list/LIST__REL R) (h4/list/MAP abs) (h4/list/MAP rep)
%   PROCESSED
% Assm [HLu_TRUTH]: T
% Assm [HLu_FALSITY]: ~F
% Assm [HLu_BOOLu_CASES]: !t. (t <=> T) \/ (t <=> F)
% Assm [HLu_EXT]: !f g. (!x. happ f x = happ g x) ==> f = g
% Assm [h4s_bools_ETAu_u_AX]: !t x. happ t x = happ t x
% Assm [h4s_bools_TRUTH]: T
% Assm [h4s_bools_IMPu_u_ANTISYMu_u_AX]: !t2 t1. (t1 ==> t2) ==> (t2 ==> t1) ==> (t1 <=> t2)
% Assm [h4s_bools_FALSITY]: !t. F ==> t
% Assm [h4s_bools_FORALLu_u_SIMP]: !t. (!x. t) <=> t
% Assm [h4s_bools_IMPu_u_F]: !t. (t ==> F) ==> ~t
% Assm [h4s_bools_Fu_u_IMP]: !t. ~t ==> t ==> F
% Assm [h4s_bools_ANDu_u_CLAUSESu_c0]: !t. T /\ t <=> t
% Assm [h4s_bools_ANDu_u_CLAUSESu_c3]: !t. t /\ F <=> F
% Assm [h4s_bools_IMPu_u_CLAUSESu_c4]: !t. t ==> F <=> ~t
% Assm [h4s_bools_NOTu_u_CLAUSESu_c0]: !t. ~ ~t <=> t
% Assm [h4s_bools_NOTu_u_CLAUSESu_c2]: ~F <=> T
% Assm [h4s_bools_REFLu_u_CLAUSE]: !x. x = x <=> T
% Assm [h4s_bools_EQu_u_CLAUSESu_c0]: !t. (T <=> t) <=> t
% Assm [h4s_bools_EQu_u_CLAUSESu_c1]: !t. (t <=> T) <=> t
% Assm [h4s_bools_EQu_u_CLAUSESu_c2]: !t. (F <=> t) <=> ~t
% Assm [h4s_sats_NOTu_u_NOT]: !t. ~ ~t <=> t
% Assm [h4s_sats_ANDu_u_INVu_u_IMP]: !A. A ==> ~A ==> F
% Assm [h4s_sats_ORu_u_DUAL2]: !B A. ~(A \/ B) ==> F <=> (A ==> F) ==> ~B ==> F
% Assm [h4s_sats_ORu_u_DUAL3]: !B A. ~(~A \/ B) ==> F <=> A ==> ~B ==> F
% Assm [h4s_sats_ANDu_u_INV2]: !A. (~A ==> F) ==> (A ==> F) ==> F
% Assm [h4s_sats_dcu_u_eq]: !r q p. (p <=> q <=> r) <=> (p \/ q \/ r) /\ (p \/ ~r \/ ~q) /\ (q \/ ~r \/ ~p) /\ (r \/ ~q \/ ~p)
% Assm [h4s_sats_dcu_u_conj]: !r q p. (p <=> q /\ r) <=> (p \/ ~q \/ ~r) /\ (q \/ ~p) /\ (r \/ ~p)
% Assm [h4s_sats_dcu_u_disj]: !r q p. (p <=> q \/ r) <=> (p \/ ~q) /\ (p \/ ~r) /\ (q \/ r \/ ~p)
% Assm [h4s_sats_dcu_u_imp]: !r q p. (p <=> q ==> r) <=> (p \/ q) /\ (p \/ ~r) /\ (~q \/ r \/ ~p)
% Assm [h4s_sats_dcu_u_neg]: !q p. (p <=> ~q) <=> (p \/ q) /\ (~q \/ ~p)
% Assm [h4s_combins_Iu_u_THM]: !x. h4/combin/I x = x
% Assm [h4s_lists_MAP0u_c0]: !f. happ (h4/list/MAP f) h4/list/NIL = h4/list/NIL
% Assm [h4s_lists_MAP0u_c1]: !t h f. happ (h4/list/MAP f) (h4/list/CONS h t) = h4/list/CONS (happ f h) (happ (h4/list/MAP f) t)
% Assm [h4s_lists_listu_u_induction]: !P. happ P h4/list/NIL /\ (!t. happ P t ==> (!h. happ P (h4/list/CONS h t))) ==> (!l. happ P l)
% Assm [h4s_lists_listu_u_nchotomy]: !l. l = h4/list/NIL \/ (?h t. l = h4/list/CONS h t)
% Assm [h4s_lists_CONSu_u_11]: !a1_27 a1 a0_27 a0. h4/list/CONS a0 a1 = h4/list/CONS a0_27 a1_27 <=> a0 = a0_27 /\ a1 = a1_27
% Assm [h4s_lists_NOTu_u_NILu_u_CONS]: !a1 a0. ~(h4/list/NIL = h4/list/CONS a0 a1)
% Assm [h4s_lists_NOTu_u_CONSu_u_NIL]: !a1 a0. ~(h4/list/CONS a0 a1 = h4/list/NIL)
% Assm [h4s_lists_LISTu_u_RELu_u_defu_c0]: !R. happ (happ (h4/list/LIST__REL R) h4/list/NIL) h4/list/NIL <=> T
% Assm [h4s_lists_LISTu_u_RELu_u_defu_c1]: !as a R. happ (happ (h4/list/LIST__REL R) (h4/list/CONS a as)) h4/list/NIL <=> F
% Assm [h4s_lists_LISTu_u_RELu_u_defu_c2]: !bs b R. happ (happ (h4/list/LIST__REL R) h4/list/NIL) (h4/list/CONS b bs) <=> F
% Assm [h4s_lists_LISTu_u_RELu_u_defu_c3]: !bs b as a R. happ (happ (h4/list/LIST__REL R) (h4/list/CONS a as)) (h4/list/CONS b bs) <=> happ (happ R a) b /\ happ (happ (h4/list/LIST__REL R) as) bs
% Assm [h4s_quotients_QUOTIENTu_u_def]: !rep abs R. h4/quotient/QUOTIENT R abs rep <=> (!a. happ abs (happ rep a) = a) /\ (!a. happ (happ R (happ rep a)) (happ rep a)) /\ (!r s. happ (happ R r) s <=> happ (happ R r) r /\ happ (happ R s) s /\ happ abs r = happ abs s)
% Assm [h4s_quotients_QUOTIENTu_u_ABSu_u_REP]: !rep abs R. h4/quotient/QUOTIENT R abs rep ==> (!a. happ abs (happ rep a) = a)
% Assm [h4s_quotients_QUOTIENTu_u_REPu_u_REFL]: !rep abs R. h4/quotient/QUOTIENT R abs rep ==> (!a. happ (happ R (happ rep a)) (happ rep a))
% Assm [h4s_quotients_QUOTIENTu_u_REL]: !rep abs R. h4/quotient/QUOTIENT R abs rep ==> (!r s. happ (happ R r) s <=> happ (happ R r) r /\ happ (happ R s) s /\ happ abs r = happ abs s)
% Assm [h4s_quotientu_u_lists_LISTu_u_RELu_u_REL]: !rep abs R. h4/quotient/QUOTIENT R abs rep ==> (!r s. happ (happ (h4/list/LIST__REL R) r) s <=> happ (happ (h4/list/LIST__REL R) r) r /\ happ (happ (h4/list/LIST__REL R) s) s /\ happ (h4/list/MAP abs) r = happ (h4/list/MAP abs) s)
% Goal: !rep abs R. h4/quotient/QUOTIENT R abs rep ==> h4/quotient/QUOTIENT (h4/list/LIST__REL R) (h4/list/MAP abs) (h4/list/MAP rep)
fof(aHLu_TRUTH, axiom, p(s(t_bool,t))).
fof(aHLu_FALSITY, axiom, ~ (p(s(t_bool,f)))).
fof(aHLu_BOOLu_CASES, axiom, ![V_t]: (s(t_bool,V_t) = s(t_bool,t) | s(t_bool,V_t) = s(t_bool,f))).
fof(aHLu_EXT, axiom, ![TV_Q330017,TV_Q330013]: ![V_f, V_g]: (![V_x]: s(TV_Q330013,happ(s(t_fun(TV_Q330017,TV_Q330013),V_f),s(TV_Q330017,V_x))) = s(TV_Q330013,happ(s(t_fun(TV_Q330017,TV_Q330013),V_g),s(TV_Q330017,V_x))) => s(t_fun(TV_Q330017,TV_Q330013),V_f) = s(t_fun(TV_Q330017,TV_Q330013),V_g))).
fof(ah4s_bools_ETAu_u_AX, axiom, ![TV_u_27b,TV_u_27a]: ![V_t, V_x]: s(TV_u_27b,happ(s(t_fun(TV_u_27a,TV_u_27b),V_t),s(TV_u_27a,V_x))) = s(TV_u_27b,happ(s(t_fun(TV_u_27a,TV_u_27b),V_t),s(TV_u_27a,V_x)))).
fof(ah4s_bools_TRUTH, axiom, p(s(t_bool,t))).
fof(ah4s_bools_IMPu_u_ANTISYMu_u_AX, axiom, ![V_t2, V_t1]: ((p(s(t_bool,V_t1)) => p(s(t_bool,V_t2))) => ((p(s(t_bool,V_t2)) => p(s(t_bool,V_t1))) => s(t_bool,V_t1) = s(t_bool,V_t2)))).
fof(ah4s_bools_FALSITY, axiom, ![V_t]: (p(s(t_bool,f)) => p(s(t_bool,V_t)))).
fof(ah4s_bools_FORALLu_u_SIMP, axiom, ![TV_u_27a]: ![V_t]: (![V_x]: p(s(t_bool,V_t)) <=> p(s(t_bool,V_t)))).
fof(ah4s_bools_IMPu_u_F, axiom, ![V_t]: ((p(s(t_bool,V_t)) => p(s(t_bool,f))) => ~ (p(s(t_bool,V_t))))).
fof(ah4s_bools_Fu_u_IMP, axiom, ![V_t]: (~ (p(s(t_bool,V_t))) => (p(s(t_bool,V_t)) => p(s(t_bool,f))))).
fof(ah4s_bools_ANDu_u_CLAUSESu_c0, axiom, ![V_t]: ((p(s(t_bool,t)) & p(s(t_bool,V_t))) <=> p(s(t_bool,V_t)))).
fof(ah4s_bools_ANDu_u_CLAUSESu_c3, axiom, ![V_t]: ((p(s(t_bool,V_t)) & p(s(t_bool,f))) <=> p(s(t_bool,f)))).
fof(ah4s_bools_IMPu_u_CLAUSESu_c4, axiom, ![V_t]: ((p(s(t_bool,V_t)) => p(s(t_bool,f))) <=> ~ (p(s(t_bool,V_t))))).
fof(ah4s_bools_NOTu_u_CLAUSESu_c0, axiom, ![V_t]: (~ (~ (p(s(t_bool,V_t)))) <=> p(s(t_bool,V_t)))).
fof(ah4s_bools_NOTu_u_CLAUSESu_c2, axiom, (~ (p(s(t_bool,f))) <=> p(s(t_bool,t)))).
fof(ah4s_bools_REFLu_u_CLAUSE, axiom, ![TV_u_27a]: ![V_x]: (s(TV_u_27a,V_x) = s(TV_u_27a,V_x) <=> p(s(t_bool,t)))).
fof(ah4s_bools_EQu_u_CLAUSESu_c0, axiom, ![V_t]: (s(t_bool,t) = s(t_bool,V_t) <=> p(s(t_bool,V_t)))).
fof(ah4s_bools_EQu_u_CLAUSESu_c1, axiom, ![V_t]: (s(t_bool,V_t) = s(t_bool,t) <=> p(s(t_bool,V_t)))).
fof(ah4s_bools_EQu_u_CLAUSESu_c2, axiom, ![V_t]: (s(t_bool,f) = s(t_bool,V_t) <=> ~ (p(s(t_bool,V_t))))).
fof(ah4s_sats_NOTu_u_NOT, axiom, ![V_t]: (~ (~ (p(s(t_bool,V_t)))) <=> p(s(t_bool,V_t)))).
fof(ah4s_sats_ANDu_u_INVu_u_IMP, axiom, ![V_A]: (p(s(t_bool,V_A)) => (~ (p(s(t_bool,V_A))) => p(s(t_bool,f))))).
fof(ah4s_sats_ORu_u_DUAL2, axiom, ![V_B, V_A]: ((~ ((p(s(t_bool,V_A)) | p(s(t_bool,V_B)))) => p(s(t_bool,f))) <=> ((p(s(t_bool,V_A)) => p(s(t_bool,f))) => (~ (p(s(t_bool,V_B))) => p(s(t_bool,f)))))).
fof(ah4s_sats_ORu_u_DUAL3, axiom, ![V_B, V_A]: ((~ ((~ (p(s(t_bool,V_A))) | p(s(t_bool,V_B)))) => p(s(t_bool,f))) <=> (p(s(t_bool,V_A)) => (~ (p(s(t_bool,V_B))) => p(s(t_bool,f)))))).
fof(ah4s_sats_ANDu_u_INV2, axiom, ![V_A]: ((~ (p(s(t_bool,V_A))) => p(s(t_bool,f))) => ((p(s(t_bool,V_A)) => p(s(t_bool,f))) => p(s(t_bool,f))))).
fof(ah4s_sats_dcu_u_eq, axiom, ![V_r, V_q, V_p]: ((p(s(t_bool,V_p)) <=> s(t_bool,V_q) = s(t_bool,V_r)) <=> ((p(s(t_bool,V_p)) | (p(s(t_bool,V_q)) | p(s(t_bool,V_r)))) & ((p(s(t_bool,V_p)) | (~ (p(s(t_bool,V_r))) | ~ (p(s(t_bool,V_q))))) & ((p(s(t_bool,V_q)) | (~ (p(s(t_bool,V_r))) | ~ (p(s(t_bool,V_p))))) & (p(s(t_bool,V_r)) | (~ (p(s(t_bool,V_q))) | ~ (p(s(t_bool,V_p)))))))))).
fof(ah4s_sats_dcu_u_conj, axiom, ![V_r, V_q, V_p]: ((p(s(t_bool,V_p)) <=> (p(s(t_bool,V_q)) & p(s(t_bool,V_r)))) <=> ((p(s(t_bool,V_p)) | (~ (p(s(t_bool,V_q))) | ~ (p(s(t_bool,V_r))))) & ((p(s(t_bool,V_q)) | ~ (p(s(t_bool,V_p)))) & (p(s(t_bool,V_r)) | ~ (p(s(t_bool,V_p)))))))).
fof(ah4s_sats_dcu_u_disj, axiom, ![V_r, V_q, V_p]: ((p(s(t_bool,V_p)) <=> (p(s(t_bool,V_q)) | p(s(t_bool,V_r)))) <=> ((p(s(t_bool,V_p)) | ~ (p(s(t_bool,V_q)))) & ((p(s(t_bool,V_p)) | ~ (p(s(t_bool,V_r)))) & (p(s(t_bool,V_q)) | (p(s(t_bool,V_r)) | ~ (p(s(t_bool,V_p))))))))).
fof(ah4s_sats_dcu_u_imp, axiom, ![V_r, V_q, V_p]: ((p(s(t_bool,V_p)) <=> (p(s(t_bool,V_q)) => p(s(t_bool,V_r)))) <=> ((p(s(t_bool,V_p)) | p(s(t_bool,V_q))) & ((p(s(t_bool,V_p)) | ~ (p(s(t_bool,V_r)))) & (~ (p(s(t_bool,V_q))) | (p(s(t_bool,V_r)) | ~ (p(s(t_bool,V_p))))))))).
fof(ah4s_sats_dcu_u_neg, axiom, ![V_q, V_p]: ((p(s(t_bool,V_p)) <=> ~ (p(s(t_bool,V_q)))) <=> ((p(s(t_bool,V_p)) | p(s(t_bool,V_q))) & (~ (p(s(t_bool,V_q))) | ~ (p(s(t_bool,V_p))))))).
fof(ah4s_combins_Iu_u_THM, axiom, ![TV_u_27a]: ![V_x]: s(TV_u_27a,h4s_combins_i(s(TV_u_27a,V_x))) = s(TV_u_27a,V_x)).
fof(ah4s_lists_MAP0u_c0, axiom, ![TV_u_27a,TV_u_27b]: ![V_f]: s(t_h4s_lists_list(TV_u_27b),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_h4s_lists_list(TV_u_27b)),h4s_lists_map(s(t_fun(TV_u_27a,TV_u_27b),V_f))),s(t_h4s_lists_list(TV_u_27a),h4s_lists_nil))) = s(t_h4s_lists_list(TV_u_27b),h4s_lists_nil)).
fof(ah4s_lists_MAP0u_c1, axiom, ![TV_u_27b,TV_u_27a]: ![V_t, V_h, V_f]: s(t_h4s_lists_list(TV_u_27b),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_h4s_lists_list(TV_u_27b)),h4s_lists_map(s(t_fun(TV_u_27a,TV_u_27b),V_f))),s(t_h4s_lists_list(TV_u_27a),h4s_lists_cons(s(TV_u_27a,V_h),s(t_h4s_lists_list(TV_u_27a),V_t))))) = s(t_h4s_lists_list(TV_u_27b),h4s_lists_cons(s(TV_u_27b,happ(s(t_fun(TV_u_27a,TV_u_27b),V_f),s(TV_u_27a,V_h))),s(t_h4s_lists_list(TV_u_27b),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_h4s_lists_list(TV_u_27b)),h4s_lists_map(s(t_fun(TV_u_27a,TV_u_27b),V_f))),s(t_h4s_lists_list(TV_u_27a),V_t)))))).
fof(ah4s_lists_listu_u_induction, axiom, ![TV_u_27a]: ![V_P]: ((p(s(t_bool,happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_bool),V_P),s(t_h4s_lists_list(TV_u_27a),h4s_lists_nil)))) & ![V_t]: (p(s(t_bool,happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_bool),V_P),s(t_h4s_lists_list(TV_u_27a),V_t)))) => ![V_h]: p(s(t_bool,happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_bool),V_P),s(t_h4s_lists_list(TV_u_27a),h4s_lists_cons(s(TV_u_27a,V_h),s(t_h4s_lists_list(TV_u_27a),V_t)))))))) => ![V_l]: p(s(t_bool,happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_bool),V_P),s(t_h4s_lists_list(TV_u_27a),V_l)))))).
fof(ah4s_lists_listu_u_nchotomy, axiom, ![TV_u_27a]: ![V_l]: (s(t_h4s_lists_list(TV_u_27a),V_l) = s(t_h4s_lists_list(TV_u_27a),h4s_lists_nil) | ?[V_h, V_t]: s(t_h4s_lists_list(TV_u_27a),V_l) = s(t_h4s_lists_list(TV_u_27a),h4s_lists_cons(s(TV_u_27a,V_h),s(t_h4s_lists_list(TV_u_27a),V_t))))).
fof(ah4s_lists_CONSu_u_11, axiom, ![TV_u_27a]: ![V_a1u_27, V_a1, V_a0u_27, V_a0]: (s(t_h4s_lists_list(TV_u_27a),h4s_lists_cons(s(TV_u_27a,V_a0),s(t_h4s_lists_list(TV_u_27a),V_a1))) = s(t_h4s_lists_list(TV_u_27a),h4s_lists_cons(s(TV_u_27a,V_a0u_27),s(t_h4s_lists_list(TV_u_27a),V_a1u_27))) <=> (s(TV_u_27a,V_a0) = s(TV_u_27a,V_a0u_27) & s(t_h4s_lists_list(TV_u_27a),V_a1) = s(t_h4s_lists_list(TV_u_27a),V_a1u_27)))).
fof(ah4s_lists_NOTu_u_NILu_u_CONS, axiom, ![TV_u_27a]: ![V_a1, V_a0]: ~ (s(t_h4s_lists_list(TV_u_27a),h4s_lists_nil) = s(t_h4s_lists_list(TV_u_27a),h4s_lists_cons(s(TV_u_27a,V_a0),s(t_h4s_lists_list(TV_u_27a),V_a1))))).
fof(ah4s_lists_NOTu_u_CONSu_u_NIL, axiom, ![TV_u_27a]: ![V_a1, V_a0]: ~ (s(t_h4s_lists_list(TV_u_27a),h4s_lists_cons(s(TV_u_27a,V_a0),s(t_h4s_lists_list(TV_u_27a),V_a1))) = s(t_h4s_lists_list(TV_u_27a),h4s_lists_nil))).
fof(ah4s_lists_LISTu_u_RELu_u_defu_c0, axiom, ![TV_u_27a,TV_u_27b]: ![V_R]: s(t_bool,happ(s(t_fun(t_h4s_lists_list(TV_u_27b),t_bool),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_fun(t_h4s_lists_list(TV_u_27b),t_bool)),h4s_lists_listu_u_rel(s(t_fun(TV_u_27a,t_fun(TV_u_27b,t_bool)),V_R))),s(t_h4s_lists_list(TV_u_27a),h4s_lists_nil))),s(t_h4s_lists_list(TV_u_27b),h4s_lists_nil))) = s(t_bool,t)).
fof(ah4s_lists_LISTu_u_RELu_u_defu_c1, axiom, ![TV_u_27a,TV_u_27b]: ![V_as, V_a, V_R]: s(t_bool,happ(s(t_fun(t_h4s_lists_list(TV_u_27b),t_bool),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_fun(t_h4s_lists_list(TV_u_27b),t_bool)),h4s_lists_listu_u_rel(s(t_fun(TV_u_27a,t_fun(TV_u_27b,t_bool)),V_R))),s(t_h4s_lists_list(TV_u_27a),h4s_lists_cons(s(TV_u_27a,V_a),s(t_h4s_lists_list(TV_u_27a),V_as))))),s(t_h4s_lists_list(TV_u_27b),h4s_lists_nil))) = s(t_bool,f)).
fof(ah4s_lists_LISTu_u_RELu_u_defu_c2, axiom, ![TV_u_27a,TV_u_27b]: ![V_bs, V_b, V_R]: s(t_bool,happ(s(t_fun(t_h4s_lists_list(TV_u_27b),t_bool),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_fun(t_h4s_lists_list(TV_u_27b),t_bool)),h4s_lists_listu_u_rel(s(t_fun(TV_u_27a,t_fun(TV_u_27b,t_bool)),V_R))),s(t_h4s_lists_list(TV_u_27a),h4s_lists_nil))),s(t_h4s_lists_list(TV_u_27b),h4s_lists_cons(s(TV_u_27b,V_b),s(t_h4s_lists_list(TV_u_27b),V_bs))))) = s(t_bool,f)).
fof(ah4s_lists_LISTu_u_RELu_u_defu_c3, axiom, ![TV_u_27a,TV_u_27b]: ![V_bs, V_b, V_as, V_a, V_R]: (p(s(t_bool,happ(s(t_fun(t_h4s_lists_list(TV_u_27b),t_bool),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_fun(t_h4s_lists_list(TV_u_27b),t_bool)),h4s_lists_listu_u_rel(s(t_fun(TV_u_27a,t_fun(TV_u_27b,t_bool)),V_R))),s(t_h4s_lists_list(TV_u_27a),h4s_lists_cons(s(TV_u_27a,V_a),s(t_h4s_lists_list(TV_u_27a),V_as))))),s(t_h4s_lists_list(TV_u_27b),h4s_lists_cons(s(TV_u_27b,V_b),s(t_h4s_lists_list(TV_u_27b),V_bs)))))) <=> (p(s(t_bool,happ(s(t_fun(TV_u_27b,t_bool),happ(s(t_fun(TV_u_27a,t_fun(TV_u_27b,t_bool)),V_R),s(TV_u_27a,V_a))),s(TV_u_27b,V_b)))) & p(s(t_bool,happ(s(t_fun(t_h4s_lists_list(TV_u_27b),t_bool),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_fun(t_h4s_lists_list(TV_u_27b),t_bool)),h4s_lists_listu_u_rel(s(t_fun(TV_u_27a,t_fun(TV_u_27b,t_bool)),V_R))),s(t_h4s_lists_list(TV_u_27a),V_as))),s(t_h4s_lists_list(TV_u_27b),V_bs))))))).
fof(ah4s_quotients_QUOTIENTu_u_def, axiom, ![TV_u_27b,TV_u_27a]: ![V_rep, V_abs, V_R]: (p(s(t_bool,h4s_quotients_quotient(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(t_fun(TV_u_27a,TV_u_27b),V_abs),s(t_fun(TV_u_27b,TV_u_27a),V_rep)))) <=> (![V_a]: s(TV_u_27b,happ(s(t_fun(TV_u_27a,TV_u_27b),V_abs),s(TV_u_27a,happ(s(t_fun(TV_u_27b,TV_u_27a),V_rep),s(TV_u_27b,V_a))))) = s(TV_u_27b,V_a) & (![V_a]: p(s(t_bool,happ(s(t_fun(TV_u_27a,t_bool),happ(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(TV_u_27a,happ(s(t_fun(TV_u_27b,TV_u_27a),V_rep),s(TV_u_27b,V_a))))),s(TV_u_27a,happ(s(t_fun(TV_u_27b,TV_u_27a),V_rep),s(TV_u_27b,V_a)))))) & ![V_r, V_s]: (p(s(t_bool,happ(s(t_fun(TV_u_27a,t_bool),happ(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(TV_u_27a,V_r))),s(TV_u_27a,V_s)))) <=> (p(s(t_bool,happ(s(t_fun(TV_u_27a,t_bool),happ(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(TV_u_27a,V_r))),s(TV_u_27a,V_r)))) & (p(s(t_bool,happ(s(t_fun(TV_u_27a,t_bool),happ(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(TV_u_27a,V_s))),s(TV_u_27a,V_s)))) & s(TV_u_27b,happ(s(t_fun(TV_u_27a,TV_u_27b),V_abs),s(TV_u_27a,V_r))) = s(TV_u_27b,happ(s(t_fun(TV_u_27a,TV_u_27b),V_abs),s(TV_u_27a,V_s)))))))))).
fof(ah4s_quotients_QUOTIENTu_u_ABSu_u_REP, axiom, ![TV_u_27a,TV_u_27b]: ![V_rep, V_abs, V_R]: (p(s(t_bool,h4s_quotients_quotient(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(t_fun(TV_u_27a,TV_u_27b),V_abs),s(t_fun(TV_u_27b,TV_u_27a),V_rep)))) => ![V_a]: s(TV_u_27b,happ(s(t_fun(TV_u_27a,TV_u_27b),V_abs),s(TV_u_27a,happ(s(t_fun(TV_u_27b,TV_u_27a),V_rep),s(TV_u_27b,V_a))))) = s(TV_u_27b,V_a))).
fof(ah4s_quotients_QUOTIENTu_u_REPu_u_REFL, axiom, ![TV_u_27a,TV_u_27b]: ![V_rep, V_abs, V_R]: (p(s(t_bool,h4s_quotients_quotient(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(t_fun(TV_u_27a,TV_u_27b),V_abs),s(t_fun(TV_u_27b,TV_u_27a),V_rep)))) => ![V_a]: p(s(t_bool,happ(s(t_fun(TV_u_27a,t_bool),happ(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(TV_u_27a,happ(s(t_fun(TV_u_27b,TV_u_27a),V_rep),s(TV_u_27b,V_a))))),s(TV_u_27a,happ(s(t_fun(TV_u_27b,TV_u_27a),V_rep),s(TV_u_27b,V_a)))))))).
fof(ah4s_quotients_QUOTIENTu_u_REL, axiom, ![TV_u_27b,TV_u_27a]: ![V_rep, V_abs, V_R]: (p(s(t_bool,h4s_quotients_quotient(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(t_fun(TV_u_27a,TV_u_27b),V_abs),s(t_fun(TV_u_27b,TV_u_27a),V_rep)))) => ![V_r, V_s]: (p(s(t_bool,happ(s(t_fun(TV_u_27a,t_bool),happ(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(TV_u_27a,V_r))),s(TV_u_27a,V_s)))) <=> (p(s(t_bool,happ(s(t_fun(TV_u_27a,t_bool),happ(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(TV_u_27a,V_r))),s(TV_u_27a,V_r)))) & (p(s(t_bool,happ(s(t_fun(TV_u_27a,t_bool),happ(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(TV_u_27a,V_s))),s(TV_u_27a,V_s)))) & s(TV_u_27b,happ(s(t_fun(TV_u_27a,TV_u_27b),V_abs),s(TV_u_27a,V_r))) = s(TV_u_27b,happ(s(t_fun(TV_u_27a,TV_u_27b),V_abs),s(TV_u_27a,V_s)))))))).
fof(ah4s_quotientu_u_lists_LISTu_u_RELu_u_REL, axiom, ![TV_u_27b,TV_u_27a]: ![V_rep, V_abs, V_R]: (p(s(t_bool,h4s_quotients_quotient(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(t_fun(TV_u_27a,TV_u_27b),V_abs),s(t_fun(TV_u_27b,TV_u_27a),V_rep)))) => ![V_r, V_s]: (p(s(t_bool,happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_bool),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_fun(t_h4s_lists_list(TV_u_27a),t_bool)),h4s_lists_listu_u_rel(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R))),s(t_h4s_lists_list(TV_u_27a),V_r))),s(t_h4s_lists_list(TV_u_27a),V_s)))) <=> (p(s(t_bool,happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_bool),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_fun(t_h4s_lists_list(TV_u_27a),t_bool)),h4s_lists_listu_u_rel(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R))),s(t_h4s_lists_list(TV_u_27a),V_r))),s(t_h4s_lists_list(TV_u_27a),V_r)))) & (p(s(t_bool,happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_bool),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_fun(t_h4s_lists_list(TV_u_27a),t_bool)),h4s_lists_listu_u_rel(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R))),s(t_h4s_lists_list(TV_u_27a),V_s))),s(t_h4s_lists_list(TV_u_27a),V_s)))) & s(t_h4s_lists_list(TV_u_27b),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_h4s_lists_list(TV_u_27b)),h4s_lists_map(s(t_fun(TV_u_27a,TV_u_27b),V_abs))),s(t_h4s_lists_list(TV_u_27a),V_r))) = s(t_h4s_lists_list(TV_u_27b),happ(s(t_fun(t_h4s_lists_list(TV_u_27a),t_h4s_lists_list(TV_u_27b)),h4s_lists_map(s(t_fun(TV_u_27a,TV_u_27b),V_abs))),s(t_h4s_lists_list(TV_u_27a),V_s)))))))).
fof(ch4s_quotientu_u_lists_LISTu_u_QUOTIENT, conjecture, ![TV_u_27b,TV_u_27a]: ![V_rep, V_abs, V_R]: (p(s(t_bool,h4s_quotients_quotient(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R),s(t_fun(TV_u_27a,TV_u_27b),V_abs),s(t_fun(TV_u_27b,TV_u_27a),V_rep)))) => p(s(t_bool,h4s_quotients_quotient(s(t_fun(t_h4s_lists_list(TV_u_27a),t_fun(t_h4s_lists_list(TV_u_27a),t_bool)),h4s_lists_listu_u_rel(s(t_fun(TV_u_27a,t_fun(TV_u_27a,t_bool)),V_R))),s(t_fun(t_h4s_lists_list(TV_u_27a),t_h4s_lists_list(TV_u_27b)),h4s_lists_map(s(t_fun(TV_u_27a,TV_u_27b),V_abs))),s(t_fun(t_h4s_lists_list(TV_u_27b),t_h4s_lists_list(TV_u_27a)),h4s_lists_map(s(t_fun(TV_u_27b,TV_u_27a),V_rep)))))))).
