text
stringlengths
31
1.04M
--0-30 : SUSPICIOUS_ACTIVITY hints -- 31-90: hilfreiche hints -- 90-100: garantiert rausfinden table_npc_cd_legion_positive = { "pos1", "pos2", "pos3" } table_npc_cd_legion_neutral = { "neut1", "neut2", "neut3" } table_npc_cd_legion_negative = { "neg1", "neg2", "neg3", } table_npc_cd_legion_trivia = { "trivia1", "trivia2", "trivia3", }
grammar FlatBuffers ; // Parser rules schema : include* ( namespace_decl | type_decl | enum_decl | union_decl | root_decl | file_extension_decl | file_identifier_decl | attribute_decl | rpc_decl | object )* ; include : 'include' STRING_CONSTANT ';' ; namespace_decl : 'namespace' IDENT ( '.' IDENT )* ';' ; attribute_decl : 'attribute' STRING_CONSTANT ';' ; type_decl : ( 'table' | 'struct' ) IDENT metadata '{' ( field_decl )* '}' ; enum_decl : 'enum' IDENT ':' type metadata '{' commasep_enumval_decl '}' ; union_decl : 'union' IDENT metadata '{' commasep_unionval_decl '}' ; root_decl : 'root_type' IDENT ';' ; field_decl : IDENT ':' type ( '=' scalar )? metadata ';' ; rpc_decl : 'rpc_service' IDENT '{' rpc_method+ '}' ; rpc_method : IDENT '(' IDENT ')' ':' IDENT metadata ';' ; // fixed original grammar: allow namespaces for IDENTs type : '[' ( ns_ident | BASE_TYPE_NAME ) ']' | BASE_TYPE_NAME | ns_ident ; enumval_decl : IDENT ( '=' integer_const )? ; commasep_enumval_decl : enumval_decl ( ',' enumval_decl )* ','? ; unionval_decl : ( IDENT ':' )? type ; commasep_unionval_decl : unionval_decl ( ',' unionval_decl )* ','? ; ident_with_opt_single_value : IDENT ( ':' single_value )? ; commasep_ident_with_opt_single_value : ident_with_opt_single_value ( ',' ident_with_opt_single_value )* ; metadata : ( '(' commasep_ident_with_opt_single_value ')' )? ; // fix original grammar: enum values (IDENT) are allowed as well scalar : INTEGER_CONSTANT | HEX_INTEGER_CONSTANT | FLOAT_CONSTANT | IDENT ; object : '{' commasep_ident_with_value '}' ; ident_with_value : IDENT ':' value ; commasep_ident_with_value : ident_with_value ( ',' ident_with_value )* ','? ; single_value : scalar | STRING_CONSTANT ; value : single_value | object | '[' commasep_value ']' ; commasep_value : value( ',' value )* ','? ; file_extension_decl : 'file_extension' STRING_CONSTANT ; file_identifier_decl : 'file_identifier' STRING_CONSTANT ; ns_ident : IDENT ( '.' IDENT )* ; integer_const : INTEGER_CONSTANT | HEX_INTEGER_CONSTANT ; // Lexer rules STRING_CONSTANT : '"' ~["\r\n]* '"' ; BASE_TYPE_NAME : 'bool' | 'byte' | 'ubyte' | 'short' | 'ushort' | 'int' | 'uint' | 'float' | 'long' | 'ulong' | 'double' | 'int8' | 'uint8' | 'int16' | 'uint16' | 'int32' | 'uint32' | 'int64' | 'uint64' | 'float32' | 'float64' | 'string' ; IDENT : [a-zA-Z_] [a-zA-Z0-9_]* ; HEX_INTEGER_CONSTANT : [-+]? '0' [xX][0-9a-fA-F]+ ; INTEGER_CONSTANT : [-+]? [0-9]+ | 'true' | 'false' ; FLOAT_CONSTANT : '-'? [0-9]+ '.' [0-9]+ (('e'|'E') ('+'|'-')? [0-9]+ )? ; BLOCK_COMMENT: '/*' .*? '*/' -> channel(HIDDEN); // fixed original grammar: allow line comments COMMENT : '//' ~[\r\n]* -> channel(HIDDEN); WHITESPACE : [ \t\r\n] -> skip ;
export declare class ErrorCustom extends Error { custom?: boolean; code?: string; level?: string; hostname?: string; address?: string; } export interface CheckResult { path: string; type?: string; valid?: boolean; msg?: string; code?: string; }
/* total_professors(64). total_courses(128). total_students(1024). */ :- source. :- style_check(all). :- yap_flag(unknown,error). :- yap_flag(write_strings,on). :- use_module(library(clpbn)). :- [-schema]. professor(p0). professor(p1). professor(p2). professor(p3). professor(p4). professor(p5). professor(p6). professor(p7). professor(p8). professor(p9). professor(p10). professor(p11). professor(p12). professor(p13). professor(p14). professor(p15). professor(p16). professor(p17). professor(p18). professor(p19). professor(p20). professor(p21). professor(p22). professor(p23). professor(p24). professor(p25). professor(p26). professor(p27). professor(p28). professor(p29). professor(p30). professor(p31). professor(p32). professor(p33). professor(p34). professor(p35). professor(p36). professor(p37). professor(p38). professor(p39). professor(p40). professor(p41). professor(p42). professor(p43). professor(p44). professor(p45). professor(p46). professor(p47). professor(p48). professor(p49). professor(p50). professor(p51). professor(p52). professor(p53). professor(p54). professor(p55). professor(p56). professor(p57). professor(p58). professor(p59). professor(p60). professor(p61). professor(p62). professor(p63). course(c0,p2). course(c1,p4). course(c2,p25). course(c3,p32). course(c4,p45). course(c5,p23). course(c6,p50). course(c7,p14). course(c8,p31). course(c9,p1). course(c10,p23). course(c11,p58). course(c12,p18). course(c13,p27). course(c14,p29). course(c15,p21). course(c16,p37). course(c17,p13). course(c18,p19). course(c19,p17). course(c20,p8). course(c21,p15). course(c22,p22). course(c23,p7). course(c24,p55). course(c25,p63). course(c26,p28). course(c27,p4). course(c28,p41). course(c29,p10). course(c30,p38). course(c31,p44). course(c32,p12). course(c33,p59). course(c34,p9). course(c35,p52). course(c36,p26). course(c37,p57). course(c38,p1). course(c39,p53). course(c40,p60). course(c41,p24). course(c42,p35). course(c43,p9). course(c44,p51). course(c45,p62). course(c46,p37). course(c47,p27). course(c48,p20). course(c49,p50). course(c50,p43). course(c51,p34). course(c52,p0). course(c53,p59). course(c54,p40). course(c55,p56). course(c56,p61). course(c57,p57). course(c58,p45). course(c59,p36). course(c60,p53). course(c61,p20). course(c62,p3). course(c63,p8). course(c64,p18). course(c65,p11). course(c66,p63). course(c67,p32). course(c68,p5). course(c69,p3). course(c70,p16). course(c71,p11). course(c72,p21). course(c73,p48). course(c74,p6). course(c75,p13). course(c76,p49). course(c77,p44). course(c78,p25). course(c79,p60). course(c80,p19). course(c81,p43). course(c82,p35). course(c83,p0). course(c84,p47). course(c85,p62). course(c86,p2). course(c87,p29). course(c88,p36). course(c89,p42). course(c90,p46). course(c91,p30). course(c92,p42). course(c93,p47). course(c94,p38). course(c95,p5). course(c96,p56). course(c97,p15). course(c98,p30). course(c99,p58). course(c100,p54). course(c101,p41). course(c102,p55). course(c103,p12). course(c104,p24). course(c105,p7). course(c106,p16). course(c107,p51). course(c108,p26). course(c109,p33). course(c110,p40). course(c111,p48). course(c112,p61). course(c113,p10). course(c114,p52). course(c115,p49). course(c116,p17). course(c117,p28). course(c118,p34). course(c119,p46). course(c120,p33). course(c121,p22). course(c122,p31). course(c123,p14). course(c124,p54). course(c125,p39). course(c126,p39). course(c127,p6). student(s0). student(s1). student(s2). student(s3). student(s4). student(s5). student(s6). student(s7). student(s8). student(s9). student(s10). student(s11). student(s12). student(s13). student(s14). student(s15). student(s16). student(s17). student(s18). student(s19). student(s20). student(s21). student(s22). student(s23). student(s24). student(s25). student(s26). student(s27). student(s28). student(s29). student(s30). student(s31). student(s32). student(s33). student(s34). student(s35). student(s36). student(s37). student(s38). student(s39). student(s40). student(s41). student(s42). student(s43). student(s44). student(s45). student(s46). student(s47). student(s48). student(s49). student(s50). student(s51). student(s52). student(s53). student(s54). student(s55). student(s56). student(s57). student(s58). student(s59). student(s60). student(s61). student(s62). student(s63). student(s64). student(s65). student(s66). student(s67). student(s68). student(s69). student(s70). student(s71). student(s72). student(s73). student(s74). student(s75). student(s76). student(s77). student(s78). student(s79). student(s80). student(s81). student(s82). student(s83). student(s84). student(s85). student(s86). student(s87). student(s88). student(s89). student(s90). student(s91). student(s92). student(s93). student(s94). student(s95). student(s96). student(s97). student(s98). student(s99). student(s100). student(s101). student(s102). student(s103). student(s104). student(s105). student(s106). student(s107). student(s108). student(s109). student(s110). student(s111). student(s112). student(s113). student(s114). student(s115). student(s116). student(s117). student(s118). student(s119). student(s120). student(s121). student(s122). student(s123). student(s124). student(s125). student(s126). student(s127). student(s128). student(s129). student(s130). student(s131). student(s132). student(s133). student(s134). student(s135). student(s136). student(s137). student(s138). student(s139). student(s140). student(s141). student(s142). student(s143). student(s144). student(s145). student(s146). student(s147). student(s148). student(s149). student(s150). student(s151). student(s152). student(s153). student(s154). student(s155). student(s156). student(s157). student(s158). student(s159). student(s160). student(s161). student(s162). student(s163). student(s164). student(s165). student(s166). student(s167). student(s168). student(s169). student(s170). student(s171). student(s172). student(s173). student(s174). student(s175). student(s176). student(s177). student(s178). student(s179). student(s180). student(s181). student(s182). student(s183). student(s184). student(s185). student(s186). student(s187). student(s188). student(s189). student(s190). student(s191). student(s192). student(s193). student(s194). student(s195). student(s196). student(s197). student(s198). student(s199). student(s200). student(s201). student(s202). student(s203). student(s204). student(s205). student(s206). student(s207). student(s208). student(s209). student(s210). student(s211). student(s212). student(s213). student(s214). student(s215). student(s216). student(s217). student(s218). student(s219). student(s220). student(s221). student(s222). student(s223). student(s224). student(s225). student(s226). student(s227). student(s228). student(s229). student(s230). student(s231). student(s232). student(s233). student(s234). student(s235). student(s236). student(s237). student(s238). student(s239). student(s240). student(s241). student(s242). student(s243). student(s244). student(s245). student(s246). student(s247). student(s248). student(s249). student(s250). student(s251). student(s252). student(s253). student(s254). student(s255). student(s256). student(s257). student(s258). student(s259). student(s260). student(s261). student(s262). student(s263). student(s264). student(s265). student(s266). student(s267). student(s268). student(s269). student(s270). student(s271). student(s272). student(s273). student(s274). student(s275). student(s276). student(s277). student(s278). student(s279). student(s280). student(s281). student(s282). student(s283). student(s284). student(s285). student(s286). student(s287). student(s288). student(s289). student(s290). student(s291). student(s292). student(s293). student(s294). student(s295). student(s296). student(s297). student(s298). student(s299). student(s300). student(s301). student(s302). student(s303). student(s304). student(s305). student(s306). student(s307). student(s308). student(s309). student(s310). student(s311). student(s312). student(s313). student(s314). student(s315). student(s316). student(s317). student(s318). student(s319). student(s320). student(s321). student(s322). student(s323). student(s324). student(s325). student(s326). student(s327). student(s328). student(s329). student(s330). student(s331). student(s332). student(s333). student(s334). student(s335). student(s336). student(s337). student(s338). student(s339). student(s340). student(s341). student(s342). student(s343). student(s344). student(s345). student(s346). student(s347). student(s348). student(s349). student(s350). student(s351). student(s352). student(s353). student(s354). student(s355). student(s356). student(s357). student(s358). student(s359). student(s360). student(s361). student(s362). student(s363). student(s364). student(s365). student(s366). student(s367). student(s368). student(s369). student(s370). student(s371). student(s372). student(s373). student(s374). student(s375). student(s376). student(s377). student(s378). student(s379). student(s380). student(s381). student(s382). student(s383). student(s384). student(s385). student(s386). student(s387). student(s388). student(s389). student(s390). student(s391). student(s392). student(s393). student(s394). student(s395). student(s396). student(s397). student(s398). student(s399). student(s400). student(s401). student(s402). student(s403). student(s404). student(s405). student(s406). student(s407). student(s408). student(s409). student(s410). student(s411). student(s412). student(s413). student(s414). student(s415). student(s416). student(s417). student(s418). student(s419). student(s420). student(s421). student(s422). student(s423). student(s424). student(s425). student(s426). student(s427). student(s428). student(s429). student(s430). student(s431). student(s432). student(s433). student(s434). student(s435). student(s436). student(s437). student(s438). student(s439). student(s440). student(s441). student(s442). student(s443). student(s444). student(s445). student(s446). student(s447). student(s448). student(s449). student(s450). student(s451). student(s452). student(s453). student(s454). student(s455). student(s456). student(s457). student(s458). student(s459). student(s460). student(s461). student(s462). student(s463). student(s464). student(s465). student(s466). student(s467). student(s468). student(s469). student(s470). student(s471). student(s472). student(s473). student(s474). student(s475). student(s476). student(s477). student(s478). student(s479). student(s480). student(s481). student(s482). student(s483). student(s484). student(s485). student(s486). student(s487). student(s488). student(s489). student(s490). student(s491). student(s492). student(s493). student(s494). student(s495). student(s496). student(s497). student(s498). student(s499). student(s500). student(s501). student(s502). student(s503). student(s504). student(s505). student(s506). student(s507). student(s508). student(s509). student(s510). student(s511). student(s512). student(s513). student(s514). student(s515). student(s516). student(s517). student(s518). student(s519). student(s520). student(s521). student(s522). student(s523). student(s524). student(s525). student(s526). student(s527). student(s528). student(s529). student(s530). student(s531). student(s532). student(s533). student(s534). student(s535). student(s536). student(s537). student(s538). student(s539). student(s540). student(s541). student(s542). student(s543). student(s544). student(s545). student(s546). student(s547). student(s548). student(s549). student(s550). student(s551). student(s552). student(s553). student(s554). student(s555). student(s556). student(s557). student(s558). student(s559). student(s560). student(s561). student(s562). student(s563). student(s564). student(s565). student(s566). student(s567). student(s568). student(s569). student(s570). student(s571). student(s572). student(s573). student(s574). student(s575). student(s576). student(s577). student(s578). student(s579). student(s580). student(s581). student(s582). student(s583). student(s584). student(s585). student(s586). student(s587). student(s588). student(s589). student(s590). student(s591). student(s592). student(s593). student(s594). student(s595). student(s596). student(s597). student(s598). student(s599). student(s600). student(s601). student(s602). student(s603). student(s604). student(s605). student(s606). student(s607). student(s608). student(s609). student(s610). student(s611). student(s612). student(s613). student(s614). student(s615). student(s616). student(s617). student(s618). student(s619). student(s620). student(s621). student(s622). student(s623). student(s624). student(s625). student(s626). student(s627). student(s628). student(s629). student(s630). student(s631). student(s632). student(s633). student(s634). student(s635). student(s636). student(s637). student(s638). student(s639). student(s640). student(s641). student(s642). student(s643). student(s644). student(s645). student(s646). student(s647). student(s648). student(s649). student(s650). student(s651). student(s652). student(s653). student(s654). student(s655). student(s656). student(s657). student(s658). student(s659). student(s660). student(s661). student(s662). student(s663). student(s664). student(s665). student(s666). student(s667). student(s668). student(s669). student(s670). student(s671). student(s672). student(s673). student(s674). student(s675). student(s676). student(s677). student(s678). student(s679). student(s680). student(s681). student(s682). student(s683). student(s684). student(s685). student(s686). student(s687). student(s688). student(s689). student(s690). student(s691). student(s692). student(s693). student(s694). student(s695). student(s696). student(s697). student(s698). student(s699). student(s700). student(s701). student(s702). student(s703). student(s704). student(s705). student(s706). student(s707). student(s708). student(s709). student(s710). student(s711). student(s712). student(s713). student(s714). student(s715). student(s716). student(s717). student(s718). student(s719). student(s720). student(s721). student(s722). student(s723). student(s724). student(s725). student(s726). student(s727). student(s728). student(s729). student(s730). student(s731). student(s732). student(s733). student(s734). student(s735). student(s736). student(s737). student(s738). student(s739). student(s740). student(s741). student(s742). student(s743). student(s744). student(s745). student(s746). student(s747). student(s748). student(s749). student(s750). student(s751). student(s752). student(s753). student(s754). student(s755). student(s756). student(s757). student(s758). student(s759). student(s760). student(s761). student(s762). student(s763). student(s764). student(s765). student(s766). student(s767). student(s768). student(s769). student(s770). student(s771). student(s772). student(s773). student(s774). student(s775). student(s776). student(s777). student(s778). student(s779). student(s780). student(s781). student(s782). student(s783). student(s784). student(s785). student(s786). student(s787). student(s788). student(s789). student(s790). student(s791). student(s792). student(s793). student(s794). student(s795). student(s796). student(s797). student(s798). student(s799). student(s800). student(s801). student(s802). student(s803). student(s804). student(s805). student(s806). student(s807). student(s808). student(s809). student(s810). student(s811). student(s812). student(s813). student(s814). student(s815). student(s816). student(s817). student(s818). student(s819). student(s820). student(s821). student(s822). student(s823). student(s824). student(s825). student(s826). student(s827). student(s828). student(s829). student(s830). student(s831). student(s832). student(s833). student(s834). student(s835). student(s836). student(s837). student(s838). student(s839). student(s840). student(s841). student(s842). student(s843). student(s844). student(s845). student(s846). student(s847). student(s848). student(s849). student(s850). student(s851). student(s852). student(s853). student(s854). student(s855). student(s856). student(s857). student(s858). student(s859). student(s860). student(s861). student(s862). student(s863). student(s864). student(s865). student(s866). student(s867). student(s868). student(s869). student(s870). student(s871). student(s872). student(s873). student(s874). student(s875). student(s876). student(s877). student(s878). student(s879). student(s880). student(s881). student(s882). student(s883). student(s884). student(s885). student(s886). student(s887). student(s888). student(s889). student(s890). student(s891). student(s892). student(s893). student(s894). student(s895). student(s896). student(s897). student(s898). student(s899). student(s900). student(s901). student(s902). student(s903). student(s904). student(s905). student(s906). student(s907). student(s908). student(s909). student(s910). student(s911). student(s912). student(s913). student(s914). student(s915). student(s916). student(s917). student(s918). student(s919). student(s920). student(s921). student(s922). student(s923). student(s924). student(s925). student(s926). student(s927). student(s928). student(s929). student(s930). student(s931). student(s932). student(s933). student(s934). student(s935). student(s936). student(s937). student(s938). student(s939). student(s940). student(s941). student(s942). student(s943). student(s944). student(s945). student(s946). student(s947). student(s948). student(s949). student(s950). student(s951). student(s952). student(s953). student(s954). student(s955). student(s956). student(s957). student(s958). student(s959). student(s960). student(s961). student(s962). student(s963). student(s964). student(s965). student(s966). student(s967). student(s968). student(s969). student(s970). student(s971). student(s972). student(s973). student(s974). student(s975). student(s976). student(s977). student(s978). student(s979). student(s980). student(s981). student(s982). student(s983). student(s984). student(s985). student(s986). student(s987). student(s988). student(s989). student(s990). student(s991). student(s992). student(s993). student(s994). student(s995). student(s996). student(s997). student(s998). student(s999). student(s1000). student(s1001). student(s1002). student(s1003). student(s1004). student(s1005). student(s1006). student(s1007). student(s1008). student(s1009). student(s1010). student(s1011). student(s1012). student(s1013). student(s1014). student(s1015). student(s1016). student(s1017). student(s1018). student(s1019). student(s1020). student(s1021). student(s1022). student(s1023). registration(r0,c65,s0). registration(r1,c18,s0). registration(r2,c39,s0). registration(r3,c89,s1). registration(r4,c64,s1). registration(r5,c54,s1). registration(r6,c1,s1). registration(r7,c97,s2). registration(r8,c12,s2). registration(r9,c38,s2). registration(r10,c45,s2). registration(r11,c24,s3). registration(r12,c28,s3). registration(r13,c98,s3). registration(r14,c118,s3). registration(r15,c72,s4). registration(r16,c81,s4). registration(r17,c94,s4). registration(r18,c11,s4). registration(r19,c26,s5). registration(r20,c58,s5). registration(r21,c25,s5). registration(r22,c86,s6). registration(r23,c91,s6). registration(r24,c57,s6). registration(r25,c18,s6). registration(r26,c24,s7). registration(r27,c67,s7). registration(r28,c42,s7). registration(r29,c38,s8). registration(r30,c42,s8). registration(r31,c21,s8). registration(r32,c120,s9). registration(r33,c33,s9). registration(r34,c71,s9). registration(r35,c24,s10). registration(r36,c76,s10). registration(r37,c2,s10). registration(r38,c29,s11). registration(r39,c94,s11). registration(r40,c63,s11). registration(r41,c21,s12). registration(r42,c39,s12). registration(r43,c120,s12). registration(r44,c65,s13). registration(r45,c70,s13). registration(r46,c124,s13). registration(r47,c101,s14). registration(r48,c18,s14). registration(r49,c21,s14). registration(r50,c89,s15). registration(r51,c115,s15). registration(r52,c114,s15). registration(r53,c94,s16). registration(r54,c56,s16). registration(r55,c45,s16). registration(r56,c83,s17). registration(r57,c126,s17). registration(r58,c57,s17). registration(r59,c73,s17). registration(r60,c41,s18). registration(r61,c112,s18). registration(r62,c113,s18). registration(r63,c51,s19). registration(r64,c27,s19). registration(r65,c38,s19). registration(r66,c11,s19). registration(r67,c49,s20). registration(r68,c26,s20). registration(r69,c6,s20). registration(r70,c116,s20). registration(r71,c117,s21). registration(r72,c21,s21). registration(r73,c91,s21). registration(r74,c10,s22). registration(r75,c53,s22). registration(r76,c43,s22). registration(r77,c102,s23). registration(r78,c113,s23). registration(r79,c125,s23). registration(r80,c109,s24). registration(r81,c80,s24). registration(r82,c112,s24). registration(r83,c4,s24). registration(r84,c59,s24). registration(r85,c35,s25). registration(r86,c18,s25). registration(r87,c73,s25). registration(r88,c79,s26). registration(r89,c86,s26). registration(r90,c33,s26). registration(r91,c55,s27). registration(r92,c37,s27). registration(r93,c31,s27). registration(r94,c48,s27). registration(r95,c49,s28). registration(r96,c13,s28). registration(r97,c8,s28). registration(r98,c126,s28). registration(r99,c119,s28). registration(r100,c24,s29). registration(r101,c115,s29). registration(r102,c73,s29). registration(r103,c9,s29). registration(r104,c21,s30). registration(r105,c71,s30). registration(r106,c113,s30). registration(r107,c69,s30). registration(r108,c86,s31). registration(r109,c94,s31). registration(r110,c27,s31). registration(r111,c104,s32). registration(r112,c48,s32). registration(r113,c77,s32). registration(r114,c54,s32). registration(r115,c93,s33). registration(r116,c105,s33). registration(r117,c11,s33). registration(r118,c10,s33). registration(r119,c107,s34). registration(r120,c121,s34). registration(r121,c34,s34). registration(r122,c44,s35). registration(r123,c105,s35). registration(r124,c16,s35). registration(r125,c1,s36). registration(r126,c107,s36). registration(r127,c63,s36). registration(r128,c29,s37). registration(r129,c99,s37). registration(r130,c58,s37). registration(r131,c107,s38). registration(r132,c18,s38). registration(r133,c84,s38). registration(r134,c50,s38). registration(r135,c11,s39). registration(r136,c28,s39). registration(r137,c25,s39). registration(r138,c39,s39). registration(r139,c5,s39). registration(r140,c73,s40). registration(r141,c99,s40). registration(r142,c71,s40). registration(r143,c88,s41). registration(r144,c55,s41). registration(r145,c124,s41). registration(r146,c59,s42). registration(r147,c33,s42). registration(r148,c101,s42). registration(r149,c30,s42). registration(r150,c29,s43). registration(r151,c82,s43). registration(r152,c10,s43). registration(r153,c45,s44). registration(r154,c64,s44). registration(r155,c90,s44). registration(r156,c113,s45). registration(r157,c69,s45). registration(r158,c1,s45). registration(r159,c74,s46). registration(r160,c89,s46). registration(r161,c19,s46). registration(r162,c109,s47). registration(r163,c120,s47). registration(r164,c33,s47). registration(r165,c93,s48). registration(r166,c105,s48). registration(r167,c0,s48). registration(r168,c31,s49). registration(r169,c84,s49). registration(r170,c65,s49). registration(r171,c104,s49). registration(r172,c88,s50). registration(r173,c67,s50). registration(r174,c64,s50). registration(r175,c30,s50). registration(r176,c87,s51). registration(r177,c32,s51). registration(r178,c42,s51). registration(r179,c3,s52). registration(r180,c56,s52). registration(r181,c43,s52). registration(r182,c35,s53). registration(r183,c75,s53). registration(r184,c108,s53). registration(r185,c85,s54). registration(r186,c63,s54). registration(r187,c95,s54). registration(r188,c50,s55). registration(r189,c5,s55). registration(r190,c11,s55). registration(r191,c98,s56). registration(r192,c122,s56). registration(r193,c46,s56). registration(r194,c99,s57). registration(r195,c75,s57). registration(r196,c57,s57). registration(r197,c111,s57). registration(r198,c16,s58). registration(r199,c39,s58). registration(r200,c82,s58). registration(r201,c117,s59). registration(r202,c4,s59). registration(r203,c55,s59). registration(r204,c13,s60). registration(r205,c116,s60). registration(r206,c14,s60). registration(r207,c64,s61). registration(r208,c88,s61). registration(r209,c95,s61). registration(r210,c65,s62). registration(r211,c113,s62). registration(r212,c118,s62). registration(r213,c88,s62). registration(r214,c1,s63). registration(r215,c70,s63). registration(r216,c102,s63). registration(r217,c118,s64). registration(r218,c24,s64). registration(r219,c61,s64). registration(r220,c50,s65). registration(r221,c53,s65). registration(r222,c27,s65). registration(r223,c41,s66). registration(r224,c92,s66). registration(r225,c112,s66). registration(r226,c48,s67). registration(r227,c84,s67). registration(r228,c14,s67). registration(r229,c80,s68). registration(r230,c24,s68). registration(r231,c16,s68). registration(r232,c37,s68). registration(r233,c8,s69). registration(r234,c106,s69). registration(r235,c80,s69). registration(r236,c71,s70). registration(r237,c17,s70). registration(r238,c20,s70). registration(r239,c70,s71). registration(r240,c43,s71). registration(r241,c17,s71). registration(r242,c59,s71). registration(r243,c10,s72). registration(r244,c127,s72). registration(r245,c54,s72). registration(r246,c10,s73). registration(r247,c74,s73). registration(r248,c88,s73). registration(r249,c112,s74). registration(r250,c53,s74). registration(r251,c32,s74). registration(r252,c31,s74). registration(r253,c127,s75). registration(r254,c111,s75). registration(r255,c34,s75). registration(r256,c52,s76). registration(r257,c106,s76). registration(r258,c46,s76). registration(r259,c91,s77). registration(r260,c59,s77). registration(r261,c95,s77). registration(r262,c106,s78). registration(r263,c104,s78). registration(r264,c44,s78). registration(r265,c55,s79). registration(r266,c111,s79). registration(r267,c113,s79). registration(r268,c96,s79). registration(r269,c18,s80). registration(r270,c44,s80). registration(r271,c118,s80). registration(r272,c118,s81). registration(r273,c35,s81). registration(r274,c119,s81). registration(r275,c43,s82). registration(r276,c55,s82). registration(r277,c9,s82). registration(r278,c100,s83). registration(r279,c17,s83). registration(r280,c70,s83). registration(r281,c48,s83). registration(r282,c57,s84). registration(r283,c53,s84). registration(r284,c86,s84). registration(r285,c69,s85). registration(r286,c67,s85). registration(r287,c75,s85). registration(r288,c93,s86). registration(r289,c124,s86). registration(r290,c27,s86). registration(r291,c80,s86). registration(r292,c51,s86). registration(r293,c72,s87). registration(r294,c94,s87). registration(r295,c14,s87). registration(r296,c25,s87). registration(r297,c73,s88). registration(r298,c124,s88). registration(r299,c126,s88). registration(r300,c77,s89). registration(r301,c99,s89). registration(r302,c116,s89). registration(r303,c24,s89). registration(r304,c89,s90). registration(r305,c6,s90). registration(r306,c17,s90). registration(r307,c97,s91). registration(r308,c66,s91). registration(r309,c45,s91). registration(r310,c62,s92). registration(r311,c46,s92). registration(r312,c114,s92). registration(r313,c80,s93). registration(r314,c1,s93). registration(r315,c107,s93). registration(r316,c52,s94). registration(r317,c98,s94). registration(r318,c24,s94). registration(r319,c38,s94). registration(r320,c115,s95). registration(r321,c26,s95). registration(r322,c107,s95). registration(r323,c100,s95). registration(r324,c19,s96). registration(r325,c118,s96). registration(r326,c98,s96). registration(r327,c38,s97). registration(r328,c18,s97). registration(r329,c54,s97). registration(r330,c82,s97). registration(r331,c119,s98). registration(r332,c67,s98). registration(r333,c90,s98). registration(r334,c69,s99). registration(r335,c45,s99). registration(r336,c97,s99). registration(r337,c121,s99). registration(r338,c11,s100). registration(r339,c55,s100). registration(r340,c95,s100). registration(r341,c75,s101). registration(r342,c11,s101). registration(r343,c55,s101). registration(r344,c31,s101). registration(r345,c117,s102). registration(r346,c3,s102). registration(r347,c7,s102). registration(r348,c60,s102). registration(r349,c33,s103). registration(r350,c103,s103). registration(r351,c31,s103). registration(r352,c122,s104). registration(r353,c97,s104). registration(r354,c113,s104). registration(r355,c80,s104). registration(r356,c59,s105). registration(r357,c32,s105). registration(r358,c76,s105). registration(r359,c43,s106). registration(r360,c70,s106). registration(r361,c40,s106). registration(r362,c95,s107). registration(r363,c9,s107). registration(r364,c113,s107). registration(r365,c126,s107). registration(r366,c19,s108). registration(r367,c26,s108). registration(r368,c10,s108). registration(r369,c114,s109). registration(r370,c110,s109). registration(r371,c83,s109). registration(r372,c55,s110). registration(r373,c16,s110). registration(r374,c43,s110). registration(r375,c103,s111). registration(r376,c104,s111). registration(r377,c46,s111). registration(r378,c90,s112). registration(r379,c116,s112). registration(r380,c103,s112). registration(r381,c72,s113). registration(r382,c90,s113). registration(r383,c54,s113). registration(r384,c43,s114). registration(r385,c105,s114). registration(r386,c114,s114). registration(r387,c46,s115). registration(r388,c41,s115). registration(r389,c40,s115). registration(r390,c73,s115). registration(r391,c60,s115). registration(r392,c88,s116). registration(r393,c62,s116). registration(r394,c2,s116). registration(r395,c106,s117). registration(r396,c105,s117). registration(r397,c83,s117). registration(r398,c72,s118). registration(r399,c18,s118). registration(r400,c23,s118). registration(r401,c91,s118). registration(r402,c69,s119). registration(r403,c48,s119). registration(r404,c74,s119). registration(r405,c60,s120). registration(r406,c39,s120). registration(r407,c84,s120). registration(r408,c124,s121). registration(r409,c109,s121). registration(r410,c24,s121). registration(r411,c41,s121). registration(r412,c79,s122). registration(r413,c43,s122). registration(r414,c46,s122). registration(r415,c24,s122). registration(r416,c74,s123). registration(r417,c64,s123). registration(r418,c94,s123). registration(r419,c83,s123). registration(r420,c33,s124). registration(r421,c47,s124). registration(r422,c101,s124). registration(r423,c47,s125). registration(r424,c87,s125). registration(r425,c121,s125). registration(r426,c76,s126). registration(r427,c87,s126). registration(r428,c79,s126). registration(r429,c105,s127). registration(r430,c88,s127). registration(r431,c110,s127). registration(r432,c26,s128). registration(r433,c9,s128). registration(r434,c31,s128). registration(r435,c104,s129). registration(r436,c114,s129). registration(r437,c127,s129). registration(r438,c116,s130). registration(r439,c28,s130). registration(r440,c115,s130). registration(r441,c82,s130). registration(r442,c9,s131). registration(r443,c90,s131). registration(r444,c76,s131). registration(r445,c25,s132). registration(r446,c76,s132). registration(r447,c42,s132). registration(r448,c18,s132). registration(r449,c59,s133). registration(r450,c127,s133). registration(r451,c109,s133). registration(r452,c119,s133). registration(r453,c1,s134). registration(r454,c74,s134). registration(r455,c26,s134). registration(r456,c26,s135). registration(r457,c101,s135). registration(r458,c1,s135). registration(r459,c2,s135). registration(r460,c104,s136). registration(r461,c4,s136). registration(r462,c72,s136). registration(r463,c21,s137). registration(r464,c102,s137). registration(r465,c57,s137). registration(r466,c98,s138). registration(r467,c16,s138). registration(r468,c66,s138). registration(r469,c65,s139). registration(r470,c100,s139). registration(r471,c46,s139). registration(r472,c49,s140). registration(r473,c36,s140). registration(r474,c118,s140). registration(r475,c16,s141). registration(r476,c0,s141). registration(r477,c98,s141). registration(r478,c87,s141). registration(r479,c7,s142). registration(r480,c6,s142). registration(r481,c34,s142). registration(r482,c53,s143). registration(r483,c94,s143). registration(r484,c30,s143). registration(r485,c1,s143). registration(r486,c116,s144). registration(r487,c82,s144). registration(r488,c119,s144). registration(r489,c90,s144). registration(r490,c112,s145). registration(r491,c110,s145). registration(r492,c55,s145). registration(r493,c45,s145). registration(r494,c61,s146). registration(r495,c116,s146). registration(r496,c63,s146). registration(r497,c94,s147). registration(r498,c63,s147). registration(r499,c45,s147). registration(r500,c78,s148). registration(r501,c93,s148). registration(r502,c43,s148). registration(r503,c59,s148). registration(r504,c104,s149). registration(r505,c75,s149). registration(r506,c76,s149). registration(r507,c67,s150). registration(r508,c29,s150). registration(r509,c51,s150). registration(r510,c34,s150). registration(r511,c87,s151). registration(r512,c46,s151). registration(r513,c54,s151). registration(r514,c108,s151). registration(r515,c69,s152). registration(r516,c41,s152). registration(r517,c0,s152). registration(r518,c45,s153). registration(r519,c8,s153). registration(r520,c49,s153). registration(r521,c92,s154). registration(r522,c0,s154). registration(r523,c34,s154). registration(r524,c110,s155). registration(r525,c115,s155). registration(r526,c68,s155). registration(r527,c54,s155). registration(r528,c65,s156). registration(r529,c87,s156). registration(r530,c112,s156). registration(r531,c31,s157). registration(r532,c25,s157). registration(r533,c54,s157). registration(r534,c69,s157). registration(r535,c53,s158). registration(r536,c68,s158). registration(r537,c30,s158). registration(r538,c39,s159). registration(r539,c78,s159). registration(r540,c110,s159). registration(r541,c42,s159). registration(r542,c47,s160). registration(r543,c81,s160). registration(r544,c88,s160). registration(r545,c29,s161). registration(r546,c45,s161). registration(r547,c125,s161). registration(r548,c109,s161). registration(r549,c113,s162). registration(r550,c81,s162). registration(r551,c3,s162). registration(r552,c107,s162). registration(r553,c28,s163). registration(r554,c48,s163). registration(r555,c53,s163). registration(r556,c83,s164). registration(r557,c112,s164). registration(r558,c100,s164). registration(r559,c82,s165). registration(r560,c7,s165). registration(r561,c104,s165). registration(r562,c58,s166). registration(r563,c24,s166). registration(r564,c87,s166). registration(r565,c3,s167). registration(r566,c124,s167). registration(r567,c55,s167). registration(r568,c40,s168). registration(r569,c67,s168). registration(r570,c85,s168). registration(r571,c14,s169). registration(r572,c86,s169). registration(r573,c95,s169). registration(r574,c81,s170). registration(r575,c22,s170). registration(r576,c24,s170). registration(r577,c87,s170). registration(r578,c9,s171). registration(r579,c25,s171). registration(r580,c64,s171). registration(r581,c121,s172). registration(r582,c99,s172). registration(r583,c38,s172). registration(r584,c41,s173). registration(r585,c117,s173). registration(r586,c81,s173). registration(r587,c122,s174). registration(r588,c93,s174). registration(r589,c27,s174). registration(r590,c42,s174). registration(r591,c10,s175). registration(r592,c107,s175). registration(r593,c110,s175). registration(r594,c4,s176). registration(r595,c75,s176). registration(r596,c116,s176). registration(r597,c33,s176). registration(r598,c46,s177). registration(r599,c96,s177). registration(r600,c73,s177). registration(r601,c45,s178). registration(r602,c36,s178). registration(r603,c82,s178). registration(r604,c71,s179). registration(r605,c25,s179). registration(r606,c106,s179). registration(r607,c19,s179). registration(r608,c41,s180). registration(r609,c72,s180). registration(r610,c85,s180). registration(r611,c64,s181). registration(r612,c67,s181). registration(r613,c4,s181). registration(r614,c79,s182). registration(r615,c115,s182). registration(r616,c92,s182). registration(r617,c11,s183). registration(r618,c81,s183). registration(r619,c58,s183). registration(r620,c42,s183). registration(r621,c46,s184). registration(r622,c124,s184). registration(r623,c48,s184). registration(r624,c73,s185). registration(r625,c103,s185). registration(r626,c80,s185). registration(r627,c123,s186). registration(r628,c37,s186). registration(r629,c4,s186). registration(r630,c69,s187). registration(r631,c18,s187). registration(r632,c124,s187). registration(r633,c76,s188). registration(r634,c54,s188). registration(r635,c55,s188). registration(r636,c65,s189). registration(r637,c13,s189). registration(r638,c99,s189). registration(r639,c75,s190). registration(r640,c121,s190). registration(r641,c51,s190). registration(r642,c119,s191). registration(r643,c69,s191). registration(r644,c93,s191). registration(r645,c13,s192). registration(r646,c68,s192). registration(r647,c73,s192). registration(r648,c20,s192). registration(r649,c87,s193). registration(r650,c37,s193). registration(r651,c61,s193). registration(r652,c9,s194). registration(r653,c82,s194). registration(r654,c55,s194). registration(r655,c120,s195). registration(r656,c82,s195). registration(r657,c92,s195). registration(r658,c40,s195). registration(r659,c61,s196). registration(r660,c64,s196). registration(r661,c36,s196). registration(r662,c106,s197). registration(r663,c19,s197). registration(r664,c0,s197). registration(r665,c34,s197). registration(r666,c86,s198). registration(r667,c50,s198). registration(r668,c89,s198). registration(r669,c10,s198). registration(r670,c84,s199). registration(r671,c37,s199). registration(r672,c126,s199). registration(r673,c53,s200). registration(r674,c35,s200). registration(r675,c114,s200). registration(r676,c79,s201). registration(r677,c114,s201). registration(r678,c2,s201). registration(r679,c66,s202). registration(r680,c29,s202). registration(r681,c101,s202). registration(r682,c120,s202). registration(r683,c123,s203). registration(r684,c22,s203). registration(r685,c26,s203). registration(r686,c77,s204). registration(r687,c24,s204). registration(r688,c4,s204). registration(r689,c90,s204). registration(r690,c125,s205). registration(r691,c21,s205). registration(r692,c55,s205). registration(r693,c90,s206). registration(r694,c104,s206). registration(r695,c121,s206). registration(r696,c107,s207). registration(r697,c83,s207). registration(r698,c48,s207). registration(r699,c78,s207). registration(r700,c1,s208). registration(r701,c17,s208). registration(r702,c87,s208). registration(r703,c110,s208). registration(r704,c19,s209). registration(r705,c76,s209). registration(r706,c91,s209). registration(r707,c95,s210). registration(r708,c56,s210). registration(r709,c123,s210). registration(r710,c17,s211). registration(r711,c112,s211). registration(r712,c44,s211). registration(r713,c20,s212). registration(r714,c86,s212). registration(r715,c28,s212). registration(r716,c111,s213). registration(r717,c126,s213). registration(r718,c91,s213). registration(r719,c75,s213). registration(r720,c23,s214). registration(r721,c37,s214). registration(r722,c88,s214). registration(r723,c108,s214). registration(r724,c110,s215). registration(r725,c108,s215). registration(r726,c75,s215). registration(r727,c5,s216). registration(r728,c79,s216). registration(r729,c6,s216). registration(r730,c118,s217). registration(r731,c103,s217). registration(r732,c59,s217). registration(r733,c18,s218). registration(r734,c92,s218). registration(r735,c73,s218). registration(r736,c72,s219). registration(r737,c48,s219). registration(r738,c83,s219). registration(r739,c15,s219). registration(r740,c57,s220). registration(r741,c104,s220). registration(r742,c12,s220). registration(r743,c123,s221). registration(r744,c56,s221). registration(r745,c32,s221). registration(r746,c38,s221). registration(r747,c30,s222). registration(r748,c11,s222). registration(r749,c98,s222). registration(r750,c74,s222). registration(r751,c59,s223). registration(r752,c66,s223). registration(r753,c72,s223). registration(r754,c17,s224). registration(r755,c34,s224). registration(r756,c107,s224). registration(r757,c62,s225). registration(r758,c111,s225). registration(r759,c97,s225). registration(r760,c74,s226). registration(r761,c52,s226). registration(r762,c116,s226). registration(r763,c44,s227). registration(r764,c64,s227). registration(r765,c0,s227). registration(r766,c30,s228). registration(r767,c61,s228). registration(r768,c73,s228). registration(r769,c19,s229). registration(r770,c88,s229). registration(r771,c0,s229). registration(r772,c31,s230). registration(r773,c108,s230). registration(r774,c71,s230). registration(r775,c69,s230). registration(r776,c72,s231). registration(r777,c53,s231). registration(r778,c124,s231). registration(r779,c71,s232). registration(r780,c37,s232). registration(r781,c82,s232). registration(r782,c126,s233). registration(r783,c37,s233). registration(r784,c86,s233). registration(r785,c116,s233). registration(r786,c109,s234). registration(r787,c83,s234). registration(r788,c18,s234). registration(r789,c106,s235). registration(r790,c44,s235). registration(r791,c66,s235). registration(r792,c76,s235). registration(r793,c87,s236). registration(r794,c85,s236). registration(r795,c117,s236). registration(r796,c43,s237). registration(r797,c110,s237). registration(r798,c15,s237). registration(r799,c54,s237). registration(r800,c91,s238). registration(r801,c27,s238). registration(r802,c11,s238). registration(r803,c98,s239). registration(r804,c10,s239). registration(r805,c76,s239). registration(r806,c32,s240). registration(r807,c106,s240). registration(r808,c36,s240). registration(r809,c85,s240). registration(r810,c75,s241). registration(r811,c101,s241). registration(r812,c28,s241). registration(r813,c115,s242). registration(r814,c110,s242). registration(r815,c46,s242). registration(r816,c26,s242). registration(r817,c33,s243). registration(r818,c36,s243). registration(r819,c84,s243). registration(r820,c111,s244). registration(r821,c97,s244). registration(r822,c88,s244). registration(r823,c100,s245). registration(r824,c125,s245). registration(r825,c29,s245). registration(r826,c8,s246). registration(r827,c0,s246). registration(r828,c40,s246). registration(r829,c114,s247). registration(r830,c66,s247). registration(r831,c109,s247). registration(r832,c96,s247). registration(r833,c92,s248). registration(r834,c47,s248). registration(r835,c115,s248). registration(r836,c21,s249). registration(r837,c27,s249). registration(r838,c35,s249). registration(r839,c17,s250). registration(r840,c78,s250). registration(r841,c115,s250). registration(r842,c87,s250). registration(r843,c64,s251). registration(r844,c48,s251). registration(r845,c52,s251). registration(r846,c53,s252). registration(r847,c6,s252). registration(r848,c23,s252). registration(r849,c120,s252). registration(r850,c117,s253). registration(r851,c99,s253). registration(r852,c88,s253). registration(r853,c9,s254). registration(r854,c75,s254). registration(r855,c56,s254). registration(r856,c83,s255). registration(r857,c121,s255). registration(r858,c74,s255). registration(r859,c25,s255). registration(r860,c97,s256). registration(r861,c77,s256). registration(r862,c44,s256). registration(r863,c94,s256). registration(r864,c109,s257). registration(r865,c110,s257). registration(r866,c23,s257). registration(r867,c46,s258). registration(r868,c41,s258). registration(r869,c108,s258). registration(r870,c31,s258). registration(r871,c97,s259). registration(r872,c119,s259). registration(r873,c17,s259). registration(r874,c74,s260). registration(r875,c65,s260). registration(r876,c35,s260). registration(r877,c111,s261). registration(r878,c10,s261). registration(r879,c71,s261). registration(r880,c107,s261). registration(r881,c54,s261). registration(r882,c37,s262). registration(r883,c36,s262). registration(r884,c21,s262). registration(r885,c17,s262). registration(r886,c53,s263). registration(r887,c6,s263). registration(r888,c93,s263). registration(r889,c101,s264). registration(r890,c0,s264). registration(r891,c67,s264). registration(r892,c86,s265). registration(r893,c50,s265). registration(r894,c59,s265). registration(r895,c95,s266). registration(r896,c61,s266). registration(r897,c48,s266). registration(r898,c120,s267). registration(r899,c88,s267). registration(r900,c52,s267). registration(r901,c15,s267). registration(r902,c49,s268). registration(r903,c38,s268). registration(r904,c109,s268). registration(r905,c35,s269). registration(r906,c74,s269). registration(r907,c50,s269). registration(r908,c61,s269). registration(r909,c3,s269). registration(r910,c1,s270). registration(r911,c95,s270). registration(r912,c124,s270). registration(r913,c55,s270). registration(r914,c119,s271). registration(r915,c6,s271). registration(r916,c23,s271). registration(r917,c101,s272). registration(r918,c126,s272). registration(r919,c46,s272). registration(r920,c60,s273). registration(r921,c78,s273). registration(r922,c13,s273). registration(r923,c122,s274). registration(r924,c50,s274). registration(r925,c73,s274). registration(r926,c123,s275). registration(r927,c33,s275). registration(r928,c58,s275). registration(r929,c37,s275). registration(r930,c114,s276). registration(r931,c32,s276). registration(r932,c18,s276). registration(r933,c88,s276). registration(r934,c9,s276). registration(r935,c111,s277). registration(r936,c63,s277). registration(r937,c64,s277). registration(r938,c112,s278). registration(r939,c19,s278). registration(r940,c113,s278). registration(r941,c126,s279). registration(r942,c27,s279). registration(r943,c86,s279). registration(r944,c32,s280). registration(r945,c23,s280). registration(r946,c76,s280). registration(r947,c5,s281). registration(r948,c48,s281). registration(r949,c94,s281). registration(r950,c127,s282). registration(r951,c82,s282). registration(r952,c36,s282). registration(r953,c47,s283). registration(r954,c72,s283). registration(r955,c29,s283). registration(r956,c91,s284). registration(r957,c96,s284). registration(r958,c47,s284). registration(r959,c17,s284). registration(r960,c76,s285). registration(r961,c40,s285). registration(r962,c105,s285). registration(r963,c9,s286). registration(r964,c93,s286). registration(r965,c66,s286). registration(r966,c72,s286). registration(r967,c86,s287). registration(r968,c116,s287). registration(r969,c8,s287). registration(r970,c92,s288). registration(r971,c29,s288). registration(r972,c75,s288). registration(r973,c18,s289). registration(r974,c88,s289). registration(r975,c61,s289). registration(r976,c29,s290). registration(r977,c96,s290). registration(r978,c0,s290). registration(r979,c76,s291). registration(r980,c84,s291). registration(r981,c91,s291). registration(r982,c73,s291). registration(r983,c111,s292). registration(r984,c13,s292). registration(r985,c11,s292). registration(r986,c85,s292). registration(r987,c121,s293). registration(r988,c93,s293). registration(r989,c88,s293). registration(r990,c119,s294). registration(r991,c55,s294). registration(r992,c115,s294). registration(r993,c76,s295). registration(r994,c2,s295). registration(r995,c122,s295). registration(r996,c90,s296). registration(r997,c0,s296). registration(r998,c74,s296). registration(r999,c31,s297). registration(r1000,c39,s297). registration(r1001,c96,s297). registration(r1002,c79,s297). registration(r1003,c119,s298). registration(r1004,c23,s298). registration(r1005,c84,s298). registration(r1006,c78,s299). registration(r1007,c43,s299). registration(r1008,c83,s299). registration(r1009,c74,s300). registration(r1010,c114,s300). registration(r1011,c90,s300). registration(r1012,c59,s300). registration(r1013,c17,s301). registration(r1014,c55,s301). registration(r1015,c39,s301). registration(r1016,c41,s301). registration(r1017,c124,s302). registration(r1018,c92,s302). registration(r1019,c116,s302). registration(r1020,c83,s302). registration(r1021,c5,s303). registration(r1022,c17,s303). registration(r1023,c38,s303). registration(r1024,c122,s304). registration(r1025,c74,s304). registration(r1026,c31,s304). registration(r1027,c115,s305). registration(r1028,c2,s305). registration(r1029,c93,s305). registration(r1030,c57,s306). registration(r1031,c77,s306). registration(r1032,c49,s306). registration(r1033,c105,s307). registration(r1034,c8,s307). registration(r1035,c17,s307). registration(r1036,c13,s308). registration(r1037,c88,s308). registration(r1038,c38,s308). registration(r1039,c124,s309). registration(r1040,c46,s309). registration(r1041,c108,s309). registration(r1042,c21,s310). registration(r1043,c28,s310). registration(r1044,c120,s310). registration(r1045,c111,s311). registration(r1046,c40,s311). registration(r1047,c101,s311). registration(r1048,c91,s312). registration(r1049,c7,s312). registration(r1050,c52,s312). registration(r1051,c104,s312). registration(r1052,c119,s312). registration(r1053,c112,s313). registration(r1054,c35,s313). registration(r1055,c114,s313). registration(r1056,c75,s314). registration(r1057,c70,s314). registration(r1058,c90,s314). registration(r1059,c9,s315). registration(r1060,c23,s315). registration(r1061,c101,s315). registration(r1062,c0,s316). registration(r1063,c46,s316). registration(r1064,c97,s316). registration(r1065,c10,s317). registration(r1066,c74,s317). registration(r1067,c108,s317). registration(r1068,c115,s318). registration(r1069,c36,s318). registration(r1070,c51,s318). registration(r1071,c43,s319). registration(r1072,c76,s319). registration(r1073,c93,s319). registration(r1074,c14,s320). registration(r1075,c105,s320). registration(r1076,c52,s320). registration(r1077,c119,s320). registration(r1078,c114,s321). registration(r1079,c39,s321). registration(r1080,c91,s321). registration(r1081,c92,s322). registration(r1082,c85,s322). registration(r1083,c51,s322). registration(r1084,c62,s323). registration(r1085,c9,s323). registration(r1086,c96,s323). registration(r1087,c82,s324). registration(r1088,c85,s324). registration(r1089,c99,s324). registration(r1090,c14,s324). registration(r1091,c121,s325). registration(r1092,c105,s325). registration(r1093,c44,s325). registration(r1094,c22,s326). registration(r1095,c27,s326). registration(r1096,c98,s326). registration(r1097,c84,s326). registration(r1098,c80,s327). registration(r1099,c109,s327). registration(r1100,c124,s327). registration(r1101,c82,s328). registration(r1102,c89,s328). registration(r1103,c9,s328). registration(r1104,c20,s328). registration(r1105,c38,s329). registration(r1106,c71,s329). registration(r1107,c67,s329). registration(r1108,c38,s330). registration(r1109,c40,s330). registration(r1110,c43,s330). registration(r1111,c20,s331). registration(r1112,c98,s331). registration(r1113,c7,s331). registration(r1114,c120,s331). registration(r1115,c111,s332). registration(r1116,c32,s332). registration(r1117,c52,s332). registration(r1118,c33,s333). registration(r1119,c64,s333). registration(r1120,c21,s333). registration(r1121,c110,s333). registration(r1122,c117,s334). registration(r1123,c87,s334). registration(r1124,c5,s334). registration(r1125,c126,s334). registration(r1126,c76,s335). registration(r1127,c120,s335). registration(r1128,c104,s335). registration(r1129,c19,s336). registration(r1130,c41,s336). registration(r1131,c65,s336). registration(r1132,c74,s336). registration(r1133,c54,s337). registration(r1134,c4,s337). registration(r1135,c107,s337). registration(r1136,c31,s338). registration(r1137,c105,s338). registration(r1138,c22,s338). registration(r1139,c44,s339). registration(r1140,c45,s339). registration(r1141,c60,s339). registration(r1142,c20,s340). registration(r1143,c33,s340). registration(r1144,c44,s340). registration(r1145,c110,s340). registration(r1146,c11,s341). registration(r1147,c88,s341). registration(r1148,c107,s341). registration(r1149,c19,s342). registration(r1150,c107,s342). registration(r1151,c20,s342). registration(r1152,c73,s343). registration(r1153,c35,s343). registration(r1154,c31,s343). registration(r1155,c63,s344). registration(r1156,c89,s344). registration(r1157,c96,s344). registration(r1158,c2,s344). registration(r1159,c45,s344). registration(r1160,c62,s345). registration(r1161,c38,s345). registration(r1162,c80,s345). registration(r1163,c123,s346). registration(r1164,c100,s346). registration(r1165,c52,s346). registration(r1166,c13,s347). registration(r1167,c93,s347). registration(r1168,c28,s347). registration(r1169,c7,s348). registration(r1170,c13,s348). registration(r1171,c18,s348). registration(r1172,c51,s349). registration(r1173,c92,s349). registration(r1174,c69,s349). registration(r1175,c30,s350). registration(r1176,c92,s350). registration(r1177,c27,s350). registration(r1178,c73,s351). registration(r1179,c94,s351). registration(r1180,c15,s351). registration(r1181,c48,s351). registration(r1182,c20,s352). registration(r1183,c23,s352). registration(r1184,c12,s352). registration(r1185,c6,s352). registration(r1186,c99,s353). registration(r1187,c34,s353). registration(r1188,c18,s353). registration(r1189,c31,s354). registration(r1190,c101,s354). registration(r1191,c100,s354). registration(r1192,c64,s354). registration(r1193,c58,s355). registration(r1194,c21,s355). registration(r1195,c92,s355). registration(r1196,c119,s356). registration(r1197,c121,s356). registration(r1198,c89,s356). registration(r1199,c106,s357). registration(r1200,c89,s357). registration(r1201,c9,s357). registration(r1202,c31,s358). registration(r1203,c78,s358). registration(r1204,c117,s358). registration(r1205,c89,s359). registration(r1206,c72,s359). registration(r1207,c124,s359). registration(r1208,c27,s360). registration(r1209,c19,s360). registration(r1210,c88,s360). registration(r1211,c45,s360). registration(r1212,c76,s360). registration(r1213,c66,s361). registration(r1214,c117,s361). registration(r1215,c36,s361). registration(r1216,c30,s362). registration(r1217,c15,s362). registration(r1218,c47,s362). registration(r1219,c8,s363). registration(r1220,c0,s363). registration(r1221,c61,s363). registration(r1222,c10,s364). registration(r1223,c108,s364). registration(r1224,c70,s364). registration(r1225,c15,s365). registration(r1226,c111,s365). registration(r1227,c115,s365). registration(r1228,c10,s365). registration(r1229,c89,s365). registration(r1230,c28,s366). registration(r1231,c51,s366). registration(r1232,c115,s366). registration(r1233,c104,s367). registration(r1234,c12,s367). registration(r1235,c42,s367). registration(r1236,c57,s368). registration(r1237,c4,s368). registration(r1238,c34,s368). registration(r1239,c35,s368). registration(r1240,c112,s369). registration(r1241,c4,s369). registration(r1242,c66,s369). registration(r1243,c8,s370). registration(r1244,c111,s370). registration(r1245,c54,s370). registration(r1246,c94,s370). registration(r1247,c25,s371). registration(r1248,c105,s371). registration(r1249,c48,s371). registration(r1250,c98,s371). registration(r1251,c102,s372). registration(r1252,c109,s372). registration(r1253,c86,s372). registration(r1254,c2,s373). registration(r1255,c38,s373). registration(r1256,c39,s373). registration(r1257,c71,s374). registration(r1258,c112,s374). registration(r1259,c54,s374). registration(r1260,c59,s375). registration(r1261,c44,s375). registration(r1262,c92,s375). registration(r1263,c75,s376). registration(r1264,c98,s376). registration(r1265,c77,s376). registration(r1266,c104,s376). registration(r1267,c19,s377). registration(r1268,c60,s377). registration(r1269,c92,s377). registration(r1270,c31,s377). registration(r1271,c6,s378). registration(r1272,c119,s378). registration(r1273,c18,s378). registration(r1274,c121,s378). registration(r1275,c38,s379). registration(r1276,c54,s379). registration(r1277,c97,s379). registration(r1278,c24,s380). registration(r1279,c89,s380). registration(r1280,c7,s380). registration(r1281,c100,s380). registration(r1282,c127,s381). registration(r1283,c59,s381). registration(r1284,c46,s381). registration(r1285,c88,s381). registration(r1286,c108,s382). registration(r1287,c113,s382). registration(r1288,c106,s382). registration(r1289,c5,s383). registration(r1290,c72,s383). registration(r1291,c15,s383). registration(r1292,c63,s383). registration(r1293,c12,s384). registration(r1294,c57,s384). registration(r1295,c89,s384). registration(r1296,c58,s385). registration(r1297,c33,s385). registration(r1298,c20,s385). registration(r1299,c28,s386). registration(r1300,c38,s386). registration(r1301,c1,s386). registration(r1302,c60,s387). registration(r1303,c46,s387). registration(r1304,c6,s387). registration(r1305,c115,s387). registration(r1306,c54,s388). registration(r1307,c115,s388). registration(r1308,c27,s388). registration(r1309,c120,s388). registration(r1310,c18,s389). registration(r1311,c4,s389). registration(r1312,c35,s389). registration(r1313,c92,s389). registration(r1314,c12,s390). registration(r1315,c68,s390). registration(r1316,c74,s390). registration(r1317,c94,s391). registration(r1318,c24,s391). registration(r1319,c98,s391). registration(r1320,c98,s392). registration(r1321,c122,s392). registration(r1322,c97,s392). registration(r1323,c105,s393). registration(r1324,c100,s393). registration(r1325,c47,s393). registration(r1326,c35,s394). registration(r1327,c120,s394). registration(r1328,c30,s394). registration(r1329,c49,s395). registration(r1330,c31,s395). registration(r1331,c125,s395). registration(r1332,c89,s396). registration(r1333,c114,s396). registration(r1334,c117,s396). registration(r1335,c91,s397). registration(r1336,c1,s397). registration(r1337,c80,s397). registration(r1338,c15,s398). registration(r1339,c32,s398). registration(r1340,c119,s398). registration(r1341,c32,s399). registration(r1342,c92,s399). registration(r1343,c36,s399). registration(r1344,c64,s400). registration(r1345,c116,s400). registration(r1346,c47,s400). registration(r1347,c11,s400). registration(r1348,c17,s401). registration(r1349,c48,s401). registration(r1350,c9,s401). registration(r1351,c98,s402). registration(r1352,c104,s402). registration(r1353,c85,s402). registration(r1354,c32,s402). registration(r1355,c6,s403). registration(r1356,c114,s403). registration(r1357,c111,s403). registration(r1358,c1,s403). registration(r1359,c122,s403). registration(r1360,c116,s404). registration(r1361,c78,s404). registration(r1362,c26,s404). registration(r1363,c107,s405). registration(r1364,c8,s405). registration(r1365,c51,s405). registration(r1366,c18,s406). registration(r1367,c111,s406). registration(r1368,c68,s406). registration(r1369,c77,s407). registration(r1370,c26,s407). registration(r1371,c0,s407). registration(r1372,c88,s407). registration(r1373,c53,s408). registration(r1374,c35,s408). registration(r1375,c9,s408). registration(r1376,c121,s408). registration(r1377,c63,s409). registration(r1378,c23,s409). registration(r1379,c9,s409). registration(r1380,c89,s409). registration(r1381,c84,s410). registration(r1382,c92,s410). registration(r1383,c74,s410). registration(r1384,c127,s411). registration(r1385,c30,s411). registration(r1386,c29,s411). registration(r1387,c13,s411). registration(r1388,c54,s412). registration(r1389,c45,s412). registration(r1390,c47,s412). registration(r1391,c95,s413). registration(r1392,c83,s413). registration(r1393,c6,s413). registration(r1394,c120,s413). registration(r1395,c80,s413). registration(r1396,c14,s414). registration(r1397,c9,s414). registration(r1398,c18,s414). registration(r1399,c76,s414). registration(r1400,c50,s415). registration(r1401,c107,s415). registration(r1402,c31,s415). registration(r1403,c56,s415). registration(r1404,c115,s416). registration(r1405,c55,s416). registration(r1406,c125,s416). registration(r1407,c73,s416). registration(r1408,c113,s416). registration(r1409,c0,s417). registration(r1410,c58,s417). registration(r1411,c35,s417). registration(r1412,c2,s418). registration(r1413,c38,s418). registration(r1414,c111,s418). registration(r1415,c30,s418). registration(r1416,c105,s419). registration(r1417,c44,s419). registration(r1418,c8,s419). registration(r1419,c28,s420). registration(r1420,c70,s420). registration(r1421,c6,s420). registration(r1422,c102,s420). registration(r1423,c63,s420). registration(r1424,c68,s421). registration(r1425,c8,s421). registration(r1426,c119,s421). registration(r1427,c65,s422). registration(r1428,c78,s422). registration(r1429,c12,s422). registration(r1430,c47,s422). registration(r1431,c19,s423). registration(r1432,c113,s423). registration(r1433,c50,s423). registration(r1434,c73,s424). registration(r1435,c88,s424). registration(r1436,c95,s424). registration(r1437,c104,s424). registration(r1438,c46,s425). registration(r1439,c89,s425). registration(r1440,c4,s425). registration(r1441,c12,s426). registration(r1442,c90,s426). registration(r1443,c117,s426). registration(r1444,c125,s427). registration(r1445,c66,s427). registration(r1446,c96,s427). registration(r1447,c4,s427). registration(r1448,c36,s428). registration(r1449,c71,s428). registration(r1450,c56,s428). registration(r1451,c41,s429). registration(r1452,c5,s429). registration(r1453,c20,s429). registration(r1454,c80,s429). registration(r1455,c104,s430). registration(r1456,c3,s430). registration(r1457,c114,s430). registration(r1458,c75,s431). registration(r1459,c85,s431). registration(r1460,c36,s431). registration(r1461,c127,s432). registration(r1462,c31,s432). registration(r1463,c46,s432). registration(r1464,c113,s433). registration(r1465,c127,s433). registration(r1466,c51,s433). registration(r1467,c88,s434). registration(r1468,c60,s434). registration(r1469,c103,s434). registration(r1470,c15,s434). registration(r1471,c50,s435). registration(r1472,c43,s435). registration(r1473,c25,s435). registration(r1474,c23,s435). registration(r1475,c4,s435). registration(r1476,c10,s436). registration(r1477,c83,s436). registration(r1478,c54,s436). registration(r1479,c91,s437). registration(r1480,c0,s437). registration(r1481,c11,s437). registration(r1482,c56,s438). registration(r1483,c120,s438). registration(r1484,c61,s438). registration(r1485,c114,s439). registration(r1486,c30,s439). registration(r1487,c38,s439). registration(r1488,c13,s440). registration(r1489,c119,s440). registration(r1490,c114,s440). registration(r1491,c30,s441). registration(r1492,c55,s441). registration(r1493,c43,s441). registration(r1494,c48,s442). registration(r1495,c64,s442). registration(r1496,c11,s442). registration(r1497,c53,s442). registration(r1498,c66,s443). registration(r1499,c21,s443). registration(r1500,c62,s443). registration(r1501,c119,s444). registration(r1502,c21,s444). registration(r1503,c114,s444). registration(r1504,c100,s444). registration(r1505,c63,s445). registration(r1506,c51,s445). registration(r1507,c48,s445). registration(r1508,c40,s446). registration(r1509,c14,s446). registration(r1510,c94,s446). registration(r1511,c20,s447). registration(r1512,c125,s447). registration(r1513,c98,s447). registration(r1514,c35,s448). registration(r1515,c89,s448). registration(r1516,c20,s448). registration(r1517,c86,s448). registration(r1518,c79,s449). registration(r1519,c76,s449). registration(r1520,c115,s449). registration(r1521,c66,s449). registration(r1522,c121,s449). registration(r1523,c100,s450). registration(r1524,c22,s450). registration(r1525,c94,s450). registration(r1526,c15,s451). registration(r1527,c64,s451). registration(r1528,c10,s451). registration(r1529,c104,s452). registration(r1530,c10,s452). registration(r1531,c123,s452). registration(r1532,c93,s452). registration(r1533,c75,s453). registration(r1534,c54,s453). registration(r1535,c3,s453). registration(r1536,c60,s454). registration(r1537,c50,s454). registration(r1538,c33,s454). registration(r1539,c0,s454). registration(r1540,c18,s454). registration(r1541,c68,s455). registration(r1542,c31,s455). registration(r1543,c11,s455). registration(r1544,c106,s456). registration(r1545,c77,s456). registration(r1546,c0,s456). registration(r1547,c11,s456). registration(r1548,c49,s457). registration(r1549,c92,s457). registration(r1550,c116,s457). registration(r1551,c113,s458). registration(r1552,c67,s458). registration(r1553,c54,s458). registration(r1554,c58,s459). registration(r1555,c98,s459). registration(r1556,c70,s459). registration(r1557,c105,s459). registration(r1558,c3,s460). registration(r1559,c22,s460). registration(r1560,c126,s460). registration(r1561,c89,s460). registration(r1562,c33,s461). registration(r1563,c2,s461). registration(r1564,c84,s461). registration(r1565,c80,s461). registration(r1566,c5,s462). registration(r1567,c94,s462). registration(r1568,c95,s462). registration(r1569,c82,s463). registration(r1570,c115,s463). registration(r1571,c17,s463). registration(r1572,c73,s464). registration(r1573,c1,s464). registration(r1574,c51,s464). registration(r1575,c100,s464). registration(r1576,c122,s465). registration(r1577,c119,s465). registration(r1578,c96,s465). registration(r1579,c94,s465). registration(r1580,c20,s466). registration(r1581,c103,s466). registration(r1582,c126,s466). registration(r1583,c82,s467). registration(r1584,c64,s467). registration(r1585,c57,s467). registration(r1586,c24,s468). registration(r1587,c5,s468). registration(r1588,c126,s468). registration(r1589,c113,s469). registration(r1590,c100,s469). registration(r1591,c28,s469). registration(r1592,c30,s470). registration(r1593,c92,s470). registration(r1594,c50,s470). registration(r1595,c85,s470). registration(r1596,c122,s471). registration(r1597,c54,s471). registration(r1598,c42,s471). registration(r1599,c23,s471). registration(r1600,c111,s472). registration(r1601,c22,s472). registration(r1602,c118,s472). registration(r1603,c55,s473). registration(r1604,c19,s473). registration(r1605,c16,s473). registration(r1606,c22,s474). registration(r1607,c124,s474). registration(r1608,c127,s474). registration(r1609,c100,s475). registration(r1610,c11,s475). registration(r1611,c23,s475). registration(r1612,c43,s475). registration(r1613,c68,s476). registration(r1614,c44,s476). registration(r1615,c73,s476). registration(r1616,c127,s477). registration(r1617,c29,s477). registration(r1618,c47,s477). registration(r1619,c93,s477). registration(r1620,c46,s478). registration(r1621,c83,s478). registration(r1622,c119,s478). registration(r1623,c10,s478). registration(r1624,c40,s478). registration(r1625,c9,s479). registration(r1626,c55,s479). registration(r1627,c64,s479). registration(r1628,c54,s479). registration(r1629,c114,s480). registration(r1630,c26,s480). registration(r1631,c58,s480). registration(r1632,c44,s480). registration(r1633,c124,s481). registration(r1634,c112,s481). registration(r1635,c17,s481). registration(r1636,c56,s482). registration(r1637,c69,s482). registration(r1638,c0,s482). registration(r1639,c94,s483). registration(r1640,c5,s483). registration(r1641,c12,s483). registration(r1642,c36,s484). registration(r1643,c61,s484). registration(r1644,c8,s484). registration(r1645,c63,s485). registration(r1646,c12,s485). registration(r1647,c75,s485). registration(r1648,c61,s486). registration(r1649,c16,s486). registration(r1650,c117,s486). registration(r1651,c90,s487). registration(r1652,c67,s487). registration(r1653,c46,s487). registration(r1654,c17,s487). registration(r1655,c36,s488). registration(r1656,c78,s488). registration(r1657,c18,s488). registration(r1658,c44,s488). registration(r1659,c18,s489). registration(r1660,c55,s489). registration(r1661,c35,s489). registration(r1662,c92,s489). registration(r1663,c23,s490). registration(r1664,c41,s490). registration(r1665,c38,s490). registration(r1666,c113,s491). registration(r1667,c76,s491). registration(r1668,c112,s491). registration(r1669,c103,s492). registration(r1670,c118,s492). registration(r1671,c25,s492). registration(r1672,c73,s493). registration(r1673,c46,s493). registration(r1674,c68,s493). registration(r1675,c18,s494). registration(r1676,c110,s494). registration(r1677,c95,s494). registration(r1678,c114,s495). registration(r1679,c117,s495). registration(r1680,c3,s495). registration(r1681,c80,s495). registration(r1682,c25,s496). registration(r1683,c122,s496). registration(r1684,c9,s496). registration(r1685,c122,s497). registration(r1686,c61,s497). registration(r1687,c33,s497). registration(r1688,c9,s498). registration(r1689,c33,s498). registration(r1690,c54,s498). registration(r1691,c126,s499). registration(r1692,c121,s499). registration(r1693,c31,s499). registration(r1694,c50,s500). registration(r1695,c73,s500). registration(r1696,c45,s500). registration(r1697,c33,s501). registration(r1698,c102,s501). registration(r1699,c44,s501). registration(r1700,c15,s502). registration(r1701,c61,s502). registration(r1702,c49,s502). registration(r1703,c45,s502). registration(r1704,c19,s503). registration(r1705,c107,s503). registration(r1706,c4,s503). registration(r1707,c14,s503). registration(r1708,c94,s504). registration(r1709,c59,s504). registration(r1710,c89,s504). registration(r1711,c84,s505). registration(r1712,c90,s505). registration(r1713,c20,s505). registration(r1714,c94,s505). registration(r1715,c81,s506). registration(r1716,c126,s506). registration(r1717,c5,s506). registration(r1718,c50,s507). registration(r1719,c21,s507). registration(r1720,c28,s507). registration(r1721,c77,s508). registration(r1722,c91,s508). registration(r1723,c127,s508). registration(r1724,c106,s509). registration(r1725,c50,s509). registration(r1726,c43,s509). registration(r1727,c10,s510). registration(r1728,c45,s510). registration(r1729,c27,s510). registration(r1730,c111,s511). registration(r1731,c30,s511). registration(r1732,c123,s511). registration(r1733,c43,s511). registration(r1734,c100,s512). registration(r1735,c40,s512). registration(r1736,c94,s512). registration(r1737,c16,s512). registration(r1738,c108,s513). registration(r1739,c41,s513). registration(r1740,c82,s513). registration(r1741,c45,s514). registration(r1742,c63,s514). registration(r1743,c37,s514). registration(r1744,c89,s515). registration(r1745,c71,s515). registration(r1746,c26,s515). registration(r1747,c71,s516). registration(r1748,c53,s516). registration(r1749,c22,s516). registration(r1750,c53,s517). registration(r1751,c41,s517). registration(r1752,c56,s517). registration(r1753,c27,s517). registration(r1754,c9,s518). registration(r1755,c97,s518). registration(r1756,c114,s518). registration(r1757,c113,s518). registration(r1758,c64,s519). registration(r1759,c69,s519). registration(r1760,c30,s519). registration(r1761,c93,s520). registration(r1762,c92,s520). registration(r1763,c14,s520). registration(r1764,c54,s520). registration(r1765,c34,s521). registration(r1766,c82,s521). registration(r1767,c42,s521). registration(r1768,c65,s521). registration(r1769,c24,s522). registration(r1770,c44,s522). registration(r1771,c118,s522). registration(r1772,c87,s523). registration(r1773,c68,s523). registration(r1774,c127,s523). registration(r1775,c114,s524). registration(r1776,c120,s524). registration(r1777,c24,s524). registration(r1778,c94,s525). registration(r1779,c112,s525). registration(r1780,c113,s525). registration(r1781,c78,s526). registration(r1782,c95,s526). registration(r1783,c84,s526). registration(r1784,c53,s526). registration(r1785,c87,s527). registration(r1786,c96,s527). registration(r1787,c98,s527). registration(r1788,c122,s528). registration(r1789,c10,s528). registration(r1790,c25,s528). registration(r1791,c112,s529). registration(r1792,c2,s529). registration(r1793,c109,s529). registration(r1794,c96,s530). registration(r1795,c73,s530). registration(r1796,c65,s530). registration(r1797,c32,s530). registration(r1798,c34,s531). registration(r1799,c115,s531). registration(r1800,c112,s531). registration(r1801,c81,s532). registration(r1802,c68,s532). registration(r1803,c71,s532). registration(r1804,c59,s532). registration(r1805,c104,s533). registration(r1806,c30,s533). registration(r1807,c125,s533). registration(r1808,c24,s533). registration(r1809,c35,s533). registration(r1810,c86,s534). registration(r1811,c118,s534). registration(r1812,c18,s534). registration(r1813,c100,s535). registration(r1814,c2,s535). registration(r1815,c69,s535). registration(r1816,c119,s536). registration(r1817,c48,s536). registration(r1818,c102,s536). registration(r1819,c35,s536). registration(r1820,c9,s537). registration(r1821,c103,s537). registration(r1822,c41,s537). registration(r1823,c49,s538). registration(r1824,c11,s538). registration(r1825,c78,s538). registration(r1826,c42,s538). registration(r1827,c35,s539). registration(r1828,c67,s539). registration(r1829,c84,s539). registration(r1830,c74,s539). registration(r1831,c89,s540). registration(r1832,c114,s540). registration(r1833,c46,s540). registration(r1834,c116,s541). registration(r1835,c106,s541). registration(r1836,c58,s541). registration(r1837,c34,s542). registration(r1838,c5,s542). registration(r1839,c66,s542). registration(r1840,c41,s542). registration(r1841,c36,s543). registration(r1842,c93,s543). registration(r1843,c86,s543). registration(r1844,c36,s544). registration(r1845,c111,s544). registration(r1846,c18,s544). registration(r1847,c85,s544). registration(r1848,c66,s545). registration(r1849,c89,s545). registration(r1850,c111,s545). registration(r1851,c50,s545). registration(r1852,c60,s546). registration(r1853,c113,s546). registration(r1854,c87,s546). registration(r1855,c18,s547). registration(r1856,c29,s547). registration(r1857,c121,s547). registration(r1858,c58,s548). registration(r1859,c47,s548). registration(r1860,c48,s548). registration(r1861,c13,s549). registration(r1862,c58,s549). registration(r1863,c41,s549). registration(r1864,c24,s550). registration(r1865,c9,s550). registration(r1866,c77,s550). registration(r1867,c15,s551). registration(r1868,c5,s551). registration(r1869,c79,s551). registration(r1870,c49,s552). registration(r1871,c89,s552). registration(r1872,c41,s552). registration(r1873,c9,s552). registration(r1874,c27,s552). registration(r1875,c38,s553). registration(r1876,c0,s553). registration(r1877,c80,s553). registration(r1878,c127,s554). registration(r1879,c119,s554). registration(r1880,c29,s554). registration(r1881,c86,s554). registration(r1882,c124,s555). registration(r1883,c125,s555). registration(r1884,c52,s555). registration(r1885,c6,s555). registration(r1886,c64,s555). registration(r1887,c102,s556). registration(r1888,c18,s556). registration(r1889,c69,s556). registration(r1890,c126,s557). registration(r1891,c101,s557). registration(r1892,c8,s557). registration(r1893,c18,s558). registration(r1894,c47,s558). registration(r1895,c10,s558). registration(r1896,c90,s559). registration(r1897,c0,s559). registration(r1898,c106,s559). registration(r1899,c8,s560). registration(r1900,c45,s560). registration(r1901,c127,s560). registration(r1902,c124,s561). registration(r1903,c21,s561). registration(r1904,c63,s561). registration(r1905,c24,s561). registration(r1906,c105,s562). registration(r1907,c41,s562). registration(r1908,c69,s562). registration(r1909,c67,s563). registration(r1910,c5,s563). registration(r1911,c98,s563). registration(r1912,c116,s564). registration(r1913,c26,s564). registration(r1914,c127,s564). registration(r1915,c89,s565). registration(r1916,c44,s565). registration(r1917,c52,s565). registration(r1918,c60,s566). registration(r1919,c96,s566). registration(r1920,c35,s566). registration(r1921,c31,s566). registration(r1922,c49,s567). registration(r1923,c74,s567). registration(r1924,c35,s567). registration(r1925,c13,s568). registration(r1926,c115,s568). registration(r1927,c15,s568). registration(r1928,c82,s569). registration(r1929,c50,s569). registration(r1930,c46,s569). registration(r1931,c35,s570). registration(r1932,c89,s570). registration(r1933,c39,s570). registration(r1934,c1,s571). registration(r1935,c124,s571). registration(r1936,c86,s571). registration(r1937,c19,s572). registration(r1938,c22,s572). registration(r1939,c70,s572). registration(r1940,c102,s573). registration(r1941,c96,s573). registration(r1942,c106,s573). registration(r1943,c41,s573). registration(r1944,c24,s574). registration(r1945,c30,s574). registration(r1946,c67,s574). registration(r1947,c20,s575). registration(r1948,c119,s575). registration(r1949,c26,s575). registration(r1950,c61,s576). registration(r1951,c43,s576). registration(r1952,c72,s576). registration(r1953,c79,s576). registration(r1954,c9,s577). registration(r1955,c38,s577). registration(r1956,c125,s577). registration(r1957,c19,s578). registration(r1958,c112,s578). registration(r1959,c103,s578). registration(r1960,c73,s579). registration(r1961,c29,s579). registration(r1962,c98,s579). registration(r1963,c121,s580). registration(r1964,c17,s580). registration(r1965,c19,s580). registration(r1966,c39,s581). registration(r1967,c55,s581). registration(r1968,c21,s581). registration(r1969,c83,s582). registration(r1970,c38,s582). registration(r1971,c29,s582). registration(r1972,c103,s583). registration(r1973,c105,s583). registration(r1974,c26,s583). registration(r1975,c82,s583). registration(r1976,c120,s584). registration(r1977,c4,s584). registration(r1978,c59,s584). registration(r1979,c4,s585). registration(r1980,c74,s585). registration(r1981,c61,s585). registration(r1982,c55,s586). registration(r1983,c9,s586). registration(r1984,c45,s586). registration(r1985,c85,s586). registration(r1986,c45,s587). registration(r1987,c27,s587). registration(r1988,c80,s587). registration(r1989,c110,s587). registration(r1990,c34,s588). registration(r1991,c78,s588). registration(r1992,c108,s588). registration(r1993,c55,s588). registration(r1994,c112,s588). registration(r1995,c75,s589). registration(r1996,c90,s589). registration(r1997,c104,s589). registration(r1998,c20,s589). registration(r1999,c44,s590). registration(r2000,c26,s590). registration(r2001,c95,s590). registration(r2002,c121,s590). registration(r2003,c34,s591). registration(r2004,c27,s591). registration(r2005,c40,s591). registration(r2006,c33,s591). registration(r2007,c70,s592). registration(r2008,c60,s592). registration(r2009,c76,s592). registration(r2010,c65,s593). registration(r2011,c109,s593). registration(r2012,c121,s593). registration(r2013,c49,s594). registration(r2014,c53,s594). registration(r2015,c103,s594). registration(r2016,c80,s594). registration(r2017,c77,s595). registration(r2018,c36,s595). registration(r2019,c101,s595). registration(r2020,c67,s596). registration(r2021,c99,s596). registration(r2022,c82,s596). registration(r2023,c110,s596). registration(r2024,c100,s597). registration(r2025,c30,s597). registration(r2026,c15,s597). registration(r2027,c76,s598). registration(r2028,c42,s598). registration(r2029,c47,s598). registration(r2030,c29,s599). registration(r2031,c113,s599). registration(r2032,c25,s599). registration(r2033,c36,s599). registration(r2034,c124,s600). registration(r2035,c31,s600). registration(r2036,c93,s600). registration(r2037,c2,s601). registration(r2038,c49,s601). registration(r2039,c102,s601). registration(r2040,c73,s602). registration(r2041,c20,s602). registration(r2042,c50,s602). registration(r2043,c22,s602). registration(r2044,c110,s603). registration(r2045,c18,s603). registration(r2046,c118,s603). registration(r2047,c33,s604). registration(r2048,c3,s604). registration(r2049,c88,s604). registration(r2050,c32,s604). registration(r2051,c40,s605). registration(r2052,c53,s605). registration(r2053,c108,s605). registration(r2054,c11,s606). registration(r2055,c85,s606). registration(r2056,c126,s606). registration(r2057,c47,s607). registration(r2058,c95,s607). registration(r2059,c25,s607). registration(r2060,c46,s608). registration(r2061,c86,s608). registration(r2062,c120,s608). registration(r2063,c103,s609). registration(r2064,c68,s609). registration(r2065,c98,s609). registration(r2066,c4,s610). registration(r2067,c62,s610). registration(r2068,c123,s610). registration(r2069,c93,s610). registration(r2070,c59,s611). registration(r2071,c19,s611). registration(r2072,c49,s611). registration(r2073,c60,s612). registration(r2074,c7,s612). registration(r2075,c68,s612). registration(r2076,c114,s613). registration(r2077,c20,s613). registration(r2078,c121,s613). registration(r2079,c60,s613). registration(r2080,c108,s614). registration(r2081,c53,s614). registration(r2082,c89,s614). registration(r2083,c30,s615). registration(r2084,c60,s615). registration(r2085,c88,s615). registration(r2086,c22,s616). registration(r2087,c62,s616). registration(r2088,c84,s616). registration(r2089,c14,s616). registration(r2090,c7,s617). registration(r2091,c52,s617). registration(r2092,c66,s617). registration(r2093,c73,s618). registration(r2094,c16,s618). registration(r2095,c38,s618). registration(r2096,c58,s618). registration(r2097,c34,s619). registration(r2098,c24,s619). registration(r2099,c119,s619). registration(r2100,c46,s619). registration(r2101,c36,s620). registration(r2102,c95,s620). registration(r2103,c74,s620). registration(r2104,c35,s621). registration(r2105,c4,s621). registration(r2106,c92,s621). registration(r2107,c47,s622). registration(r2108,c45,s622). registration(r2109,c70,s622). registration(r2110,c121,s623). registration(r2111,c127,s623). registration(r2112,c2,s623). registration(r2113,c18,s624). registration(r2114,c15,s624). registration(r2115,c114,s624). registration(r2116,c73,s624). registration(r2117,c47,s624). registration(r2118,c64,s625). registration(r2119,c95,s625). registration(r2120,c51,s625). registration(r2121,c19,s625). registration(r2122,c57,s626). registration(r2123,c70,s626). registration(r2124,c46,s626). registration(r2125,c11,s627). registration(r2126,c23,s627). registration(r2127,c14,s627). registration(r2128,c83,s628). registration(r2129,c121,s628). registration(r2130,c120,s628). registration(r2131,c123,s629). registration(r2132,c54,s629). registration(r2133,c66,s629). registration(r2134,c70,s629). registration(r2135,c35,s630). registration(r2136,c15,s630). registration(r2137,c74,s630). registration(r2138,c41,s631). registration(r2139,c6,s631). registration(r2140,c64,s631). registration(r2141,c121,s632). registration(r2142,c115,s632). registration(r2143,c72,s632). registration(r2144,c84,s633). registration(r2145,c108,s633). registration(r2146,c76,s633). registration(r2147,c47,s633). registration(r2148,c9,s634). registration(r2149,c42,s634). registration(r2150,c110,s634). registration(r2151,c37,s634). registration(r2152,c69,s635). registration(r2153,c50,s635). registration(r2154,c108,s635). registration(r2155,c123,s636). registration(r2156,c68,s636). registration(r2157,c40,s636). registration(r2158,c47,s637). registration(r2159,c11,s637). registration(r2160,c28,s637). registration(r2161,c16,s637). registration(r2162,c18,s638). registration(r2163,c91,s638). registration(r2164,c79,s638). registration(r2165,c28,s639). registration(r2166,c119,s639). registration(r2167,c120,s639). registration(r2168,c33,s639). registration(r2169,c44,s640). registration(r2170,c4,s640). registration(r2171,c71,s640). registration(r2172,c121,s641). registration(r2173,c61,s641). registration(r2174,c68,s641). registration(r2175,c9,s642). registration(r2176,c121,s642). registration(r2177,c6,s642). registration(r2178,c18,s643). registration(r2179,c20,s643). registration(r2180,c114,s643). registration(r2181,c37,s643). registration(r2182,c115,s643). registration(r2183,c115,s644). registration(r2184,c107,s644). registration(r2185,c57,s644). registration(r2186,c99,s644). registration(r2187,c78,s645). registration(r2188,c101,s645). registration(r2189,c83,s645). registration(r2190,c27,s646). registration(r2191,c77,s646). registration(r2192,c51,s646). registration(r2193,c11,s646). registration(r2194,c101,s647). registration(r2195,c68,s647). registration(r2196,c0,s647). registration(r2197,c120,s648). registration(r2198,c7,s648). registration(r2199,c93,s648). registration(r2200,c122,s648). registration(r2201,c47,s649). registration(r2202,c126,s649). registration(r2203,c103,s649). registration(r2204,c34,s650). registration(r2205,c52,s650). registration(r2206,c80,s650). registration(r2207,c54,s650). registration(r2208,c41,s651). registration(r2209,c125,s651). registration(r2210,c30,s651). registration(r2211,c82,s652). registration(r2212,c89,s652). registration(r2213,c86,s652). registration(r2214,c27,s653). registration(r2215,c76,s653). registration(r2216,c30,s653). registration(r2217,c37,s654). registration(r2218,c68,s654). registration(r2219,c80,s654). registration(r2220,c0,s655). registration(r2221,c31,s655). registration(r2222,c34,s655). registration(r2223,c68,s655). registration(r2224,c87,s656). registration(r2225,c89,s656). registration(r2226,c23,s656). registration(r2227,c64,s656). registration(r2228,c87,s657). registration(r2229,c45,s657). registration(r2230,c5,s657). registration(r2231,c94,s657). registration(r2232,c121,s658). registration(r2233,c75,s658). registration(r2234,c28,s658). registration(r2235,c23,s658). registration(r2236,c123,s659). registration(r2237,c91,s659). registration(r2238,c96,s659). registration(r2239,c0,s660). registration(r2240,c121,s660). registration(r2241,c44,s660). registration(r2242,c80,s661). registration(r2243,c39,s661). registration(r2244,c94,s661). registration(r2245,c117,s661). registration(r2246,c1,s662). registration(r2247,c17,s662). registration(r2248,c55,s662). registration(r2249,c59,s663). registration(r2250,c124,s663). registration(r2251,c63,s663). registration(r2252,c12,s664). registration(r2253,c55,s664). registration(r2254,c10,s664). registration(r2255,c6,s665). registration(r2256,c127,s665). registration(r2257,c81,s665). registration(r2258,c82,s666). registration(r2259,c63,s666). registration(r2260,c89,s666). registration(r2261,c40,s667). registration(r2262,c24,s667). registration(r2263,c56,s667). registration(r2264,c45,s668). registration(r2265,c81,s668). registration(r2266,c42,s668). registration(r2267,c106,s669). registration(r2268,c31,s669). registration(r2269,c39,s669). registration(r2270,c29,s670). registration(r2271,c54,s670). registration(r2272,c113,s670). registration(r2273,c98,s671). registration(r2274,c46,s671). registration(r2275,c89,s671). registration(r2276,c5,s672). registration(r2277,c8,s672). registration(r2278,c54,s672). registration(r2279,c15,s673). registration(r2280,c6,s673). registration(r2281,c18,s673). registration(r2282,c43,s674). registration(r2283,c116,s674). registration(r2284,c40,s674). registration(r2285,c83,s675). registration(r2286,c64,s675). registration(r2287,c121,s675). registration(r2288,c51,s676). registration(r2289,c24,s676). registration(r2290,c33,s676). registration(r2291,c123,s677). registration(r2292,c6,s677). registration(r2293,c111,s677). registration(r2294,c101,s678). registration(r2295,c90,s678). registration(r2296,c65,s678). registration(r2297,c58,s679). registration(r2298,c42,s679). registration(r2299,c65,s679). registration(r2300,c23,s680). registration(r2301,c119,s680). registration(r2302,c102,s680). registration(r2303,c64,s681). registration(r2304,c19,s681). registration(r2305,c15,s681). registration(r2306,c122,s681). registration(r2307,c108,s682). registration(r2308,c40,s682). registration(r2309,c27,s682). registration(r2310,c105,s682). registration(r2311,c22,s682). registration(r2312,c90,s683). registration(r2313,c108,s683). registration(r2314,c81,s683). registration(r2315,c21,s684). registration(r2316,c91,s684). registration(r2317,c1,s684). registration(r2318,c66,s684). registration(r2319,c27,s685). registration(r2320,c119,s685). registration(r2321,c89,s685). registration(r2322,c94,s685). registration(r2323,c97,s686). registration(r2324,c30,s686). registration(r2325,c46,s686). registration(r2326,c61,s687). registration(r2327,c108,s687). registration(r2328,c68,s687). registration(r2329,c85,s687). registration(r2330,c79,s688). registration(r2331,c31,s688). registration(r2332,c108,s688). registration(r2333,c62,s688). registration(r2334,c105,s689). registration(r2335,c83,s689). registration(r2336,c84,s689). registration(r2337,c37,s690). registration(r2338,c74,s690). registration(r2339,c23,s690). registration(r2340,c113,s691). registration(r2341,c83,s691). registration(r2342,c32,s691). registration(r2343,c53,s691). registration(r2344,c57,s692). registration(r2345,c38,s692). registration(r2346,c22,s692). registration(r2347,c92,s692). registration(r2348,c92,s693). registration(r2349,c26,s693). registration(r2350,c48,s693). registration(r2351,c29,s694). registration(r2352,c86,s694). registration(r2353,c70,s694). registration(r2354,c26,s695). registration(r2355,c50,s695). registration(r2356,c4,s695). registration(r2357,c78,s696). registration(r2358,c7,s696). registration(r2359,c24,s696). registration(r2360,c121,s696). registration(r2361,c49,s697). registration(r2362,c4,s697). registration(r2363,c34,s697). registration(r2364,c72,s698). registration(r2365,c7,s698). registration(r2366,c52,s698). registration(r2367,c16,s699). registration(r2368,c117,s699). registration(r2369,c21,s699). registration(r2370,c49,s700). registration(r2371,c18,s700). registration(r2372,c118,s700). registration(r2373,c82,s700). registration(r2374,c64,s700). registration(r2375,c86,s701). registration(r2376,c1,s701). registration(r2377,c23,s701). registration(r2378,c47,s701). registration(r2379,c53,s702). registration(r2380,c2,s702). registration(r2381,c27,s702). registration(r2382,c62,s702). registration(r2383,c87,s703). registration(r2384,c67,s703). registration(r2385,c4,s703). registration(r2386,c96,s704). registration(r2387,c66,s704). registration(r2388,c8,s704). registration(r2389,c68,s705). registration(r2390,c5,s705). registration(r2391,c10,s705). registration(r2392,c23,s706). registration(r2393,c41,s706). registration(r2394,c13,s706). registration(r2395,c15,s707). registration(r2396,c111,s707). registration(r2397,c36,s707). registration(r2398,c30,s707). registration(r2399,c28,s708). registration(r2400,c57,s708). registration(r2401,c65,s708). registration(r2402,c24,s709). registration(r2403,c103,s709). registration(r2404,c122,s709). registration(r2405,c90,s710). registration(r2406,c59,s710). registration(r2407,c103,s710). registration(r2408,c42,s710). registration(r2409,c54,s711). registration(r2410,c28,s711). registration(r2411,c3,s711). registration(r2412,c44,s712). registration(r2413,c64,s712). registration(r2414,c12,s712). registration(r2415,c124,s713). registration(r2416,c79,s713). registration(r2417,c104,s713). registration(r2418,c5,s714). registration(r2419,c83,s714). registration(r2420,c106,s714). registration(r2421,c3,s715). registration(r2422,c15,s715). registration(r2423,c69,s715). registration(r2424,c31,s716). registration(r2425,c56,s716). registration(r2426,c85,s716). registration(r2427,c0,s717). registration(r2428,c6,s717). registration(r2429,c104,s717). registration(r2430,c57,s717). registration(r2431,c48,s718). registration(r2432,c121,s718). registration(r2433,c41,s718). registration(r2434,c37,s719). registration(r2435,c44,s719). registration(r2436,c51,s719). registration(r2437,c55,s720). registration(r2438,c19,s720). registration(r2439,c65,s720). registration(r2440,c67,s721). registration(r2441,c111,s721). registration(r2442,c32,s721). registration(r2443,c63,s722). registration(r2444,c118,s722). registration(r2445,c49,s722). registration(r2446,c66,s722). registration(r2447,c21,s723). registration(r2448,c43,s723). registration(r2449,c55,s723). registration(r2450,c103,s724). registration(r2451,c70,s724). registration(r2452,c113,s724). registration(r2453,c22,s724). registration(r2454,c110,s725). registration(r2455,c66,s725). registration(r2456,c87,s725). registration(r2457,c107,s726). registration(r2458,c4,s726). registration(r2459,c90,s726). registration(r2460,c74,s727). registration(r2461,c104,s727). registration(r2462,c7,s727). registration(r2463,c126,s728). registration(r2464,c88,s728). registration(r2465,c55,s728). registration(r2466,c76,s728). registration(r2467,c106,s729). registration(r2468,c65,s729). registration(r2469,c27,s729). registration(r2470,c98,s730). registration(r2471,c35,s730). registration(r2472,c108,s730). registration(r2473,c91,s731). registration(r2474,c54,s731). registration(r2475,c18,s731). registration(r2476,c125,s732). registration(r2477,c35,s732). registration(r2478,c12,s732). registration(r2479,c86,s733). registration(r2480,c45,s733). registration(r2481,c115,s733). registration(r2482,c113,s734). registration(r2483,c85,s734). registration(r2484,c13,s734). registration(r2485,c91,s735). registration(r2486,c28,s735). registration(r2487,c36,s735). registration(r2488,c77,s736). registration(r2489,c90,s736). registration(r2490,c114,s736). registration(r2491,c45,s737). registration(r2492,c20,s737). registration(r2493,c4,s737). registration(r2494,c53,s738). registration(r2495,c61,s738). registration(r2496,c89,s738). registration(r2497,c69,s738). registration(r2498,c25,s739). registration(r2499,c48,s739). registration(r2500,c57,s739). registration(r2501,c6,s739). registration(r2502,c109,s740). registration(r2503,c20,s740). registration(r2504,c91,s740). registration(r2505,c120,s741). registration(r2506,c115,s741). registration(r2507,c101,s741). registration(r2508,c64,s742). registration(r2509,c57,s742). registration(r2510,c123,s742). registration(r2511,c102,s742). registration(r2512,c17,s742). registration(r2513,c38,s743). registration(r2514,c69,s743). registration(r2515,c72,s743). registration(r2516,c10,s744). registration(r2517,c102,s744). registration(r2518,c98,s744). registration(r2519,c28,s744). registration(r2520,c58,s745). registration(r2521,c28,s745). registration(r2522,c71,s745). registration(r2523,c34,s746). registration(r2524,c119,s746). registration(r2525,c32,s746). registration(r2526,c7,s747). registration(r2527,c98,s747). registration(r2528,c45,s747). registration(r2529,c41,s748). registration(r2530,c86,s748). registration(r2531,c2,s748). registration(r2532,c41,s749). registration(r2533,c127,s749). registration(r2534,c49,s749). registration(r2535,c29,s749). registration(r2536,c114,s750). registration(r2537,c1,s750). registration(r2538,c94,s750). registration(r2539,c29,s750). registration(r2540,c37,s751). registration(r2541,c99,s751). registration(r2542,c65,s751). registration(r2543,c57,s751). registration(r2544,c119,s752). registration(r2545,c32,s752). registration(r2546,c37,s752). registration(r2547,c82,s752). registration(r2548,c70,s753). registration(r2549,c30,s753). registration(r2550,c124,s753). registration(r2551,c54,s754). registration(r2552,c6,s754). registration(r2553,c76,s754). registration(r2554,c88,s755). registration(r2555,c83,s755). registration(r2556,c115,s755). registration(r2557,c82,s756). registration(r2558,c84,s756). registration(r2559,c115,s756). registration(r2560,c86,s757). registration(r2561,c45,s757). registration(r2562,c79,s757). registration(r2563,c71,s758). registration(r2564,c125,s758). registration(r2565,c12,s758). registration(r2566,c95,s758). registration(r2567,c12,s759). registration(r2568,c32,s759). registration(r2569,c92,s759). registration(r2570,c18,s760). registration(r2571,c49,s760). registration(r2572,c13,s760). registration(r2573,c101,s761). registration(r2574,c28,s761). registration(r2575,c91,s761). registration(r2576,c46,s762). registration(r2577,c5,s762). registration(r2578,c100,s762). registration(r2579,c58,s763). registration(r2580,c73,s763). registration(r2581,c80,s763). registration(r2582,c47,s763). registration(r2583,c20,s763). registration(r2584,c61,s764). registration(r2585,c92,s764). registration(r2586,c21,s764). registration(r2587,c53,s765). registration(r2588,c121,s765). registration(r2589,c19,s765). registration(r2590,c68,s765). registration(r2591,c4,s766). registration(r2592,c84,s766). registration(r2593,c45,s766). registration(r2594,c8,s767). registration(r2595,c27,s767). registration(r2596,c98,s767). registration(r2597,c70,s768). registration(r2598,c81,s768). registration(r2599,c31,s768). registration(r2600,c24,s768). registration(r2601,c24,s769). registration(r2602,c74,s769). registration(r2603,c6,s769). registration(r2604,c99,s769). registration(r2605,c66,s770). registration(r2606,c36,s770). registration(r2607,c76,s770). registration(r2608,c95,s771). registration(r2609,c110,s771). registration(r2610,c40,s771). registration(r2611,c125,s772). registration(r2612,c80,s772). registration(r2613,c92,s772). registration(r2614,c120,s773). registration(r2615,c78,s773). registration(r2616,c15,s773). registration(r2617,c22,s773). registration(r2618,c56,s774). registration(r2619,c22,s774). registration(r2620,c122,s774). registration(r2621,c67,s775). registration(r2622,c45,s775). registration(r2623,c93,s775). registration(r2624,c30,s775). registration(r2625,c111,s776). registration(r2626,c92,s776). registration(r2627,c22,s776). registration(r2628,c60,s776). registration(r2629,c53,s776). registration(r2630,c96,s777). registration(r2631,c121,s777). registration(r2632,c50,s777). registration(r2633,c33,s778). registration(r2634,c10,s778). registration(r2635,c79,s778). registration(r2636,c103,s779). registration(r2637,c6,s779). registration(r2638,c123,s779). registration(r2639,c117,s780). registration(r2640,c71,s780). registration(r2641,c76,s780). registration(r2642,c40,s781). registration(r2643,c4,s781). registration(r2644,c8,s781). registration(r2645,c100,s782). registration(r2646,c94,s782). registration(r2647,c0,s782). registration(r2648,c54,s783). registration(r2649,c1,s783). registration(r2650,c94,s783). registration(r2651,c52,s784). registration(r2652,c10,s784). registration(r2653,c63,s784). registration(r2654,c123,s784). registration(r2655,c105,s785). registration(r2656,c1,s785). registration(r2657,c84,s785). registration(r2658,c30,s785). registration(r2659,c81,s786). registration(r2660,c106,s786). registration(r2661,c3,s786). registration(r2662,c8,s786). registration(r2663,c79,s787). registration(r2664,c91,s787). registration(r2665,c122,s787). registration(r2666,c123,s788). registration(r2667,c84,s788). registration(r2668,c30,s788). registration(r2669,c125,s789). registration(r2670,c27,s789). registration(r2671,c10,s789). registration(r2672,c72,s790). registration(r2673,c51,s790). registration(r2674,c33,s790). registration(r2675,c35,s791). registration(r2676,c118,s791). registration(r2677,c39,s791). registration(r2678,c121,s792). registration(r2679,c44,s792). registration(r2680,c67,s792). registration(r2681,c75,s793). registration(r2682,c16,s793). registration(r2683,c29,s793). registration(r2684,c87,s794). registration(r2685,c64,s794). registration(r2686,c25,s794). registration(r2687,c112,s795). registration(r2688,c115,s795). registration(r2689,c13,s795). registration(r2690,c52,s796). registration(r2691,c67,s796). registration(r2692,c88,s796). registration(r2693,c117,s797). registration(r2694,c122,s797). registration(r2695,c90,s797). registration(r2696,c28,s798). registration(r2697,c22,s798). registration(r2698,c106,s798). registration(r2699,c43,s799). registration(r2700,c42,s799). registration(r2701,c105,s799). registration(r2702,c45,s800). registration(r2703,c30,s800). registration(r2704,c51,s800). registration(r2705,c36,s800). registration(r2706,c55,s801). registration(r2707,c8,s801). registration(r2708,c50,s801). registration(r2709,c103,s802). registration(r2710,c117,s802). registration(r2711,c4,s802). registration(r2712,c122,s803). registration(r2713,c57,s803). registration(r2714,c53,s803). registration(r2715,c117,s803). registration(r2716,c45,s804). registration(r2717,c97,s804). registration(r2718,c50,s804). registration(r2719,c12,s804). registration(r2720,c111,s805). registration(r2721,c83,s805). registration(r2722,c76,s805). registration(r2723,c127,s806). registration(r2724,c99,s806). registration(r2725,c8,s806). registration(r2726,c16,s807). registration(r2727,c87,s807). registration(r2728,c77,s807). registration(r2729,c67,s808). registration(r2730,c65,s808). registration(r2731,c125,s808). registration(r2732,c54,s809). registration(r2733,c83,s809). registration(r2734,c84,s809). registration(r2735,c2,s810). registration(r2736,c15,s810). registration(r2737,c88,s810). registration(r2738,c28,s810). registration(r2739,c119,s811). registration(r2740,c110,s811). registration(r2741,c2,s811). registration(r2742,c96,s811). registration(r2743,c121,s811). registration(r2744,c106,s812). registration(r2745,c38,s812). registration(r2746,c20,s812). registration(r2747,c99,s813). registration(r2748,c55,s813). registration(r2749,c59,s813). registration(r2750,c56,s814). registration(r2751,c68,s814). registration(r2752,c54,s814). registration(r2753,c11,s814). registration(r2754,c28,s815). registration(r2755,c62,s815). registration(r2756,c13,s815). registration(r2757,c22,s815). registration(r2758,c69,s816). registration(r2759,c74,s816). registration(r2760,c13,s816). registration(r2761,c33,s817). registration(r2762,c22,s817). registration(r2763,c80,s817). registration(r2764,c118,s817). registration(r2765,c48,s818). registration(r2766,c123,s818). registration(r2767,c115,s818). registration(r2768,c51,s818). registration(r2769,c58,s819). registration(r2770,c45,s819). registration(r2771,c104,s819). registration(r2772,c87,s820). registration(r2773,c21,s820). registration(r2774,c113,s820). registration(r2775,c126,s821). registration(r2776,c31,s821). registration(r2777,c104,s821). registration(r2778,c99,s821). registration(r2779,c33,s822). registration(r2780,c24,s822). registration(r2781,c1,s822). registration(r2782,c81,s823). registration(r2783,c94,s823). registration(r2784,c47,s823). registration(r2785,c42,s823). registration(r2786,c59,s824). registration(r2787,c34,s824). registration(r2788,c95,s824). registration(r2789,c12,s825). registration(r2790,c83,s825). registration(r2791,c91,s825). registration(r2792,c113,s826). registration(r2793,c97,s826). registration(r2794,c31,s826). registration(r2795,c63,s827). registration(r2796,c46,s827). registration(r2797,c117,s827). registration(r2798,c22,s828). registration(r2799,c61,s828). registration(r2800,c100,s828). registration(r2801,c52,s829). registration(r2802,c57,s829). registration(r2803,c28,s829). registration(r2804,c71,s830). registration(r2805,c54,s830). registration(r2806,c106,s830). registration(r2807,c71,s831). registration(r2808,c50,s831). registration(r2809,c117,s831). registration(r2810,c33,s832). registration(r2811,c20,s832). registration(r2812,c7,s832). registration(r2813,c104,s833). registration(r2814,c0,s833). registration(r2815,c8,s833). registration(r2816,c106,s834). registration(r2817,c117,s834). registration(r2818,c96,s834). registration(r2819,c78,s835). registration(r2820,c3,s835). registration(r2821,c9,s835). registration(r2822,c80,s836). registration(r2823,c50,s836). registration(r2824,c54,s836). registration(r2825,c89,s837). registration(r2826,c1,s837). registration(r2827,c13,s837). registration(r2828,c49,s838). registration(r2829,c112,s838). registration(r2830,c56,s838). registration(r2831,c18,s839). registration(r2832,c34,s839). registration(r2833,c51,s839). registration(r2834,c87,s839). registration(r2835,c5,s840). registration(r2836,c117,s840). registration(r2837,c56,s840). registration(r2838,c6,s841). registration(r2839,c87,s841). registration(r2840,c77,s841). registration(r2841,c29,s842). registration(r2842,c37,s842). registration(r2843,c12,s842). registration(r2844,c102,s843). registration(r2845,c89,s843). registration(r2846,c9,s843). registration(r2847,c59,s844). registration(r2848,c37,s844). registration(r2849,c56,s844). registration(r2850,c74,s845). registration(r2851,c22,s845). registration(r2852,c8,s845). registration(r2853,c95,s845). registration(r2854,c105,s846). registration(r2855,c13,s846). registration(r2856,c23,s846). registration(r2857,c29,s847). registration(r2858,c19,s847). registration(r2859,c33,s847). registration(r2860,c106,s847). registration(r2861,c51,s848). registration(r2862,c119,s848). registration(r2863,c22,s848). registration(r2864,c113,s849). registration(r2865,c58,s849). registration(r2866,c18,s849). registration(r2867,c55,s850). registration(r2868,c40,s850). registration(r2869,c107,s850). registration(r2870,c115,s850). registration(r2871,c22,s850). registration(r2872,c88,s851). registration(r2873,c26,s851). registration(r2874,c118,s851). registration(r2875,c13,s852). registration(r2876,c127,s852). registration(r2877,c121,s852). registration(r2878,c27,s852). registration(r2879,c57,s853). registration(r2880,c125,s853). registration(r2881,c89,s853). registration(r2882,c112,s854). registration(r2883,c29,s854). registration(r2884,c82,s854). registration(r2885,c101,s855). registration(r2886,c81,s855). registration(r2887,c78,s855). registration(r2888,c59,s856). registration(r2889,c43,s856). registration(r2890,c110,s856). registration(r2891,c70,s857). registration(r2892,c88,s857). registration(r2893,c56,s857). registration(r2894,c0,s857). registration(r2895,c8,s858). registration(r2896,c122,s858). registration(r2897,c113,s858). registration(r2898,c44,s858). registration(r2899,c25,s859). registration(r2900,c111,s859). registration(r2901,c26,s859). registration(r2902,c95,s859). registration(r2903,c97,s860). registration(r2904,c64,s860). registration(r2905,c16,s860). registration(r2906,c96,s860). registration(r2907,c99,s861). registration(r2908,c14,s861). registration(r2909,c29,s861). registration(r2910,c125,s861). registration(r2911,c83,s862). registration(r2912,c67,s862). registration(r2913,c50,s862). registration(r2914,c77,s862). registration(r2915,c84,s863). registration(r2916,c85,s863). registration(r2917,c45,s863). registration(r2918,c67,s864). registration(r2919,c114,s864). registration(r2920,c9,s864). registration(r2921,c24,s864). registration(r2922,c18,s865). registration(r2923,c68,s865). registration(r2924,c121,s865). registration(r2925,c64,s866). registration(r2926,c103,s866). registration(r2927,c52,s866). registration(r2928,c82,s867). registration(r2929,c51,s867). registration(r2930,c116,s867). registration(r2931,c56,s867). registration(r2932,c96,s868). registration(r2933,c19,s868). registration(r2934,c5,s868). registration(r2935,c104,s868). registration(r2936,c65,s869). registration(r2937,c45,s869). registration(r2938,c75,s869). registration(r2939,c31,s869). registration(r2940,c56,s870). registration(r2941,c44,s870). registration(r2942,c109,s870). registration(r2943,c102,s871). registration(r2944,c30,s871). registration(r2945,c68,s871). registration(r2946,c122,s871). registration(r2947,c74,s872). registration(r2948,c123,s872). registration(r2949,c76,s872). registration(r2950,c121,s873). registration(r2951,c4,s873). registration(r2952,c40,s873). registration(r2953,c46,s873). registration(r2954,c109,s874). registration(r2955,c126,s874). registration(r2956,c7,s874). registration(r2957,c82,s875). registration(r2958,c53,s875). registration(r2959,c77,s875). registration(r2960,c122,s876). registration(r2961,c20,s876). registration(r2962,c57,s876). registration(r2963,c87,s877). registration(r2964,c47,s877). registration(r2965,c33,s877). registration(r2966,c108,s878). registration(r2967,c88,s878). registration(r2968,c118,s878). registration(r2969,c112,s879). registration(r2970,c109,s879). registration(r2971,c113,s879). registration(r2972,c29,s879). registration(r2973,c56,s880). registration(r2974,c4,s880). registration(r2975,c38,s880). registration(r2976,c121,s881). registration(r2977,c30,s881). registration(r2978,c127,s881). registration(r2979,c119,s881). registration(r2980,c52,s882). registration(r2981,c70,s882). registration(r2982,c100,s882). registration(r2983,c19,s883). registration(r2984,c81,s883). registration(r2985,c122,s883). registration(r2986,c83,s884). registration(r2987,c51,s884). registration(r2988,c38,s884). registration(r2989,c21,s885). registration(r2990,c13,s885). registration(r2991,c111,s885). registration(r2992,c40,s886). registration(r2993,c31,s886). registration(r2994,c83,s886). registration(r2995,c81,s886). registration(r2996,c47,s887). registration(r2997,c81,s887). registration(r2998,c108,s887). registration(r2999,c33,s888). registration(r3000,c1,s888). registration(r3001,c47,s888). registration(r3002,c65,s889). registration(r3003,c33,s889). registration(r3004,c25,s889). registration(r3005,c109,s890). registration(r3006,c50,s890). registration(r3007,c6,s890). registration(r3008,c87,s890). registration(r3009,c23,s891). registration(r3010,c71,s891). registration(r3011,c55,s891). registration(r3012,c87,s892). registration(r3013,c22,s892). registration(r3014,c127,s892). registration(r3015,c46,s893). registration(r3016,c122,s893). registration(r3017,c78,s893). registration(r3018,c112,s894). registration(r3019,c107,s894). registration(r3020,c114,s894). registration(r3021,c50,s894). registration(r3022,c98,s895). registration(r3023,c36,s895). registration(r3024,c50,s895). registration(r3025,c101,s895). registration(r3026,c72,s896). registration(r3027,c26,s896). registration(r3028,c60,s896). registration(r3029,c3,s897). registration(r3030,c28,s897). registration(r3031,c118,s897). registration(r3032,c12,s898). registration(r3033,c114,s898). registration(r3034,c29,s898). registration(r3035,c23,s899). registration(r3036,c62,s899). registration(r3037,c11,s899). registration(r3038,c119,s900). registration(r3039,c77,s900). registration(r3040,c110,s900). registration(r3041,c2,s900). registration(r3042,c39,s901). registration(r3043,c53,s901). registration(r3044,c19,s901). registration(r3045,c92,s902). registration(r3046,c83,s902). registration(r3047,c85,s902). registration(r3048,c89,s902). registration(r3049,c92,s903). registration(r3050,c124,s903). registration(r3051,c74,s903). registration(r3052,c60,s903). registration(r3053,c108,s904). registration(r3054,c120,s904). registration(r3055,c93,s904). registration(r3056,c53,s904). registration(r3057,c95,s905). registration(r3058,c101,s905). registration(r3059,c97,s905). registration(r3060,c100,s906). registration(r3061,c48,s906). registration(r3062,c38,s906). registration(r3063,c102,s906). registration(r3064,c68,s907). registration(r3065,c127,s907). registration(r3066,c23,s907). registration(r3067,c85,s907). registration(r3068,c30,s908). registration(r3069,c47,s908). registration(r3070,c54,s908). registration(r3071,c5,s909). registration(r3072,c36,s909). registration(r3073,c57,s909). registration(r3074,c22,s910). registration(r3075,c118,s910). registration(r3076,c82,s910). registration(r3077,c85,s910). registration(r3078,c98,s911). registration(r3079,c3,s911). registration(r3080,c13,s911). registration(r3081,c51,s912). registration(r3082,c82,s912). registration(r3083,c25,s912). registration(r3084,c24,s912). registration(r3085,c6,s913). registration(r3086,c47,s913). registration(r3087,c110,s913). registration(r3088,c29,s914). registration(r3089,c19,s914). registration(r3090,c104,s914). registration(r3091,c25,s914). registration(r3092,c81,s914). registration(r3093,c11,s915). registration(r3094,c40,s915). registration(r3095,c103,s915). registration(r3096,c123,s915). registration(r3097,c86,s916). registration(r3098,c50,s916). registration(r3099,c74,s916). registration(r3100,c17,s917). registration(r3101,c14,s917). registration(r3102,c116,s917). registration(r3103,c98,s918). registration(r3104,c122,s918). registration(r3105,c63,s918). registration(r3106,c47,s919). registration(r3107,c71,s919). registration(r3108,c118,s919). registration(r3109,c94,s920). registration(r3110,c101,s920). registration(r3111,c115,s920). registration(r3112,c126,s921). registration(r3113,c18,s921). registration(r3114,c29,s921). registration(r3115,c5,s921). registration(r3116,c86,s922). registration(r3117,c64,s922). registration(r3118,c80,s922). registration(r3119,c99,s922). registration(r3120,c62,s923). registration(r3121,c117,s923). registration(r3122,c70,s923). registration(r3123,c65,s924). registration(r3124,c38,s924). registration(r3125,c64,s924). registration(r3126,c7,s925). registration(r3127,c98,s925). registration(r3128,c35,s925). registration(r3129,c7,s926). registration(r3130,c86,s926). registration(r3131,c43,s926). registration(r3132,c62,s927). registration(r3133,c90,s927). registration(r3134,c83,s927). registration(r3135,c42,s928). registration(r3136,c14,s928). registration(r3137,c49,s928). registration(r3138,c19,s928). registration(r3139,c25,s929). registration(r3140,c5,s929). registration(r3141,c89,s929). registration(r3142,c93,s929). registration(r3143,c39,s930). registration(r3144,c29,s930). registration(r3145,c5,s930). registration(r3146,c103,s931). registration(r3147,c32,s931). registration(r3148,c6,s931). registration(r3149,c92,s932). registration(r3150,c82,s932). registration(r3151,c102,s932). registration(r3152,c62,s932). registration(r3153,c5,s933). registration(r3154,c95,s933). registration(r3155,c32,s933). registration(r3156,c79,s934). registration(r3157,c10,s934). registration(r3158,c124,s934). registration(r3159,c2,s935). registration(r3160,c59,s935). registration(r3161,c37,s935). registration(r3162,c76,s936). registration(r3163,c124,s936). registration(r3164,c91,s936). registration(r3165,c66,s937). registration(r3166,c107,s937). registration(r3167,c39,s937). registration(r3168,c4,s937). registration(r3169,c62,s938). registration(r3170,c121,s938). registration(r3171,c52,s938). registration(r3172,c58,s939). registration(r3173,c47,s939). registration(r3174,c90,s939). registration(r3175,c41,s940). registration(r3176,c116,s940). registration(r3177,c25,s940). registration(r3178,c23,s940). registration(r3179,c71,s941). registration(r3180,c60,s941). registration(r3181,c123,s941). registration(r3182,c118,s941). registration(r3183,c120,s942). registration(r3184,c82,s942). registration(r3185,c23,s942). registration(r3186,c64,s943). registration(r3187,c38,s943). registration(r3188,c83,s943). registration(r3189,c76,s944). registration(r3190,c121,s944). registration(r3191,c52,s944). registration(r3192,c50,s944). registration(r3193,c96,s945). registration(r3194,c28,s945). registration(r3195,c2,s945). registration(r3196,c17,s945). registration(r3197,c21,s946). registration(r3198,c42,s946). registration(r3199,c57,s946). registration(r3200,c51,s947). registration(r3201,c122,s947). registration(r3202,c111,s947). registration(r3203,c68,s948). registration(r3204,c66,s948). registration(r3205,c46,s948). registration(r3206,c2,s948). registration(r3207,c85,s949). registration(r3208,c70,s949). registration(r3209,c57,s949). registration(r3210,c112,s950). registration(r3211,c40,s950). registration(r3212,c115,s950). registration(r3213,c16,s950). registration(r3214,c87,s951). registration(r3215,c18,s951). registration(r3216,c34,s951). registration(r3217,c75,s952). registration(r3218,c44,s952). registration(r3219,c5,s952). registration(r3220,c0,s953). registration(r3221,c35,s953). registration(r3222,c11,s953). registration(r3223,c77,s954). registration(r3224,c35,s954). registration(r3225,c106,s954). registration(r3226,c63,s955). registration(r3227,c23,s955). registration(r3228,c52,s955). registration(r3229,c36,s956). registration(r3230,c9,s956). registration(r3231,c75,s956). registration(r3232,c92,s956). registration(r3233,c81,s957). registration(r3234,c36,s957). registration(r3235,c125,s957). registration(r3236,c72,s958). registration(r3237,c114,s958). registration(r3238,c83,s958). registration(r3239,c84,s959). registration(r3240,c29,s959). registration(r3241,c92,s959). registration(r3242,c41,s959). registration(r3243,c108,s960). registration(r3244,c110,s960). registration(r3245,c121,s960). registration(r3246,c17,s961). registration(r3247,c26,s961). registration(r3248,c14,s961). registration(r3249,c24,s962). registration(r3250,c52,s962). registration(r3251,c56,s962). registration(r3252,c9,s962). registration(r3253,c80,s963). registration(r3254,c12,s963). registration(r3255,c78,s963). registration(r3256,c65,s964). registration(r3257,c113,s964). registration(r3258,c80,s964). registration(r3259,c69,s964). registration(r3260,c112,s965). registration(r3261,c15,s965). registration(r3262,c115,s965). registration(r3263,c98,s966). registration(r3264,c19,s966). registration(r3265,c99,s966). registration(r3266,c36,s966). registration(r3267,c31,s967). registration(r3268,c12,s967). registration(r3269,c60,s967). registration(r3270,c115,s968). registration(r3271,c98,s968). registration(r3272,c78,s968). registration(r3273,c91,s969). registration(r3274,c75,s969). registration(r3275,c80,s969). registration(r3276,c65,s969). registration(r3277,c1,s970). registration(r3278,c33,s970). registration(r3279,c10,s970). registration(r3280,c26,s970). registration(r3281,c99,s971). registration(r3282,c42,s971). registration(r3283,c21,s971). registration(r3284,c121,s972). registration(r3285,c85,s972). registration(r3286,c98,s972). registration(r3287,c111,s973). registration(r3288,c49,s973). registration(r3289,c44,s973). registration(r3290,c16,s974). registration(r3291,c0,s974). registration(r3292,c35,s974). registration(r3293,c110,s975). registration(r3294,c20,s975). registration(r3295,c12,s975). registration(r3296,c13,s976). registration(r3297,c29,s976). registration(r3298,c98,s976). registration(r3299,c123,s977). registration(r3300,c96,s977). registration(r3301,c87,s977). registration(r3302,c38,s977). registration(r3303,c10,s977). registration(r3304,c125,s978). registration(r3305,c121,s978). registration(r3306,c1,s978). registration(r3307,c51,s979). registration(r3308,c32,s979). registration(r3309,c26,s979). registration(r3310,c26,s980). registration(r3311,c123,s980). registration(r3312,c115,s980). registration(r3313,c9,s981). registration(r3314,c3,s981). registration(r3315,c102,s981). registration(r3316,c2,s981). registration(r3317,c67,s982). registration(r3318,c15,s982). registration(r3319,c48,s982). registration(r3320,c9,s983). registration(r3321,c81,s983). registration(r3322,c24,s983). registration(r3323,c20,s984). registration(r3324,c28,s984). registration(r3325,c94,s984). registration(r3326,c5,s984). registration(r3327,c41,s984). registration(r3328,c32,s985). registration(r3329,c107,s985). registration(r3330,c88,s985). registration(r3331,c77,s986). registration(r3332,c50,s986). registration(r3333,c81,s986). registration(r3334,c54,s987). registration(r3335,c57,s987). registration(r3336,c72,s987). registration(r3337,c86,s988). registration(r3338,c105,s988). registration(r3339,c58,s988). registration(r3340,c12,s989). registration(r3341,c94,s989). registration(r3342,c21,s989). registration(r3343,c48,s990). registration(r3344,c70,s990). registration(r3345,c123,s990). registration(r3346,c35,s991). registration(r3347,c87,s991). registration(r3348,c67,s991). registration(r3349,c42,s991). registration(r3350,c73,s992). registration(r3351,c69,s992). registration(r3352,c123,s992). registration(r3353,c49,s993). registration(r3354,c88,s993). registration(r3355,c66,s993). registration(r3356,c25,s994). registration(r3357,c84,s994). registration(r3358,c15,s994). registration(r3359,c27,s995). registration(r3360,c63,s995). registration(r3361,c92,s995). registration(r3362,c50,s995). registration(r3363,c75,s995). registration(r3364,c45,s996). registration(r3365,c66,s996). registration(r3366,c33,s996). registration(r3367,c102,s996). registration(r3368,c77,s997). registration(r3369,c44,s997). registration(r3370,c15,s997). registration(r3371,c114,s997). registration(r3372,c54,s997). registration(r3373,c109,s998). registration(r3374,c59,s998). registration(r3375,c15,s998). registration(r3376,c100,s999). registration(r3377,c73,s999). registration(r3378,c122,s999). registration(r3379,c65,s1000). registration(r3380,c15,s1000). registration(r3381,c105,s1000). registration(r3382,c27,s1000). registration(r3383,c40,s1001). registration(r3384,c94,s1001). registration(r3385,c72,s1001). registration(r3386,c25,s1001). registration(r3387,c4,s1002). registration(r3388,c102,s1002). registration(r3389,c103,s1002). registration(r3390,c125,s1003). registration(r3391,c35,s1003). registration(r3392,c1,s1003). registration(r3393,c62,s1003). registration(r3394,c67,s1004). registration(r3395,c65,s1004). registration(r3396,c101,s1004). registration(r3397,c95,s1004). registration(r3398,c27,s1005). registration(r3399,c54,s1005). registration(r3400,c33,s1005). registration(r3401,c61,s1006). registration(r3402,c63,s1006). registration(r3403,c57,s1006). registration(r3404,c2,s1007). registration(r3405,c81,s1007). registration(r3406,c30,s1007). registration(r3407,c4,s1008). registration(r3408,c3,s1008). registration(r3409,c8,s1008). registration(r3410,c44,s1008). registration(r3411,c125,s1009). registration(r3412,c52,s1009). registration(r3413,c59,s1009). registration(r3414,c125,s1010). registration(r3415,c32,s1010). registration(r3416,c30,s1010). registration(r3417,c127,s1010). registration(r3418,c62,s1011). registration(r3419,c32,s1011). registration(r3420,c102,s1011). registration(r3421,c37,s1012). registration(r3422,c23,s1012). registration(r3423,c69,s1012). registration(r3424,c22,s1013). registration(r3425,c97,s1013). registration(r3426,c55,s1013). registration(r3427,c58,s1014). registration(r3428,c115,s1014). registration(r3429,c97,s1014). registration(r3430,c95,s1015). registration(r3431,c112,s1015). registration(r3432,c87,s1015). registration(r3433,c86,s1016). registration(r3434,c58,s1016). registration(r3435,c7,s1016). registration(r3436,c66,s1017). registration(r3437,c29,s1017). registration(r3438,c92,s1017). registration(r3439,c57,s1018). registration(r3440,c77,s1018). registration(r3441,c18,s1018). registration(r3442,c45,s1018). registration(r3443,c20,s1019). registration(r3444,c113,s1019). registration(r3445,c99,s1019). registration(r3446,c86,s1019). registration(r3447,c115,s1020). registration(r3448,c56,s1020). registration(r3449,c89,s1020). registration(r3450,c23,s1020). registration(r3451,c105,s1021). registration(r3452,c50,s1021). registration(r3453,c49,s1021). registration(r3454,c58,s1022). registration(r3455,c31,s1022). registration(r3456,c41,s1022). registration(r3457,c5,s1023). registration(r3458,c37,s1023). registration(r3459,c57,s1023).
we are going to do some live coding in Euterpea! > module LiveCoding where For now, we need a lot of imports and extra funcions. This should all go away as the Euterpea team develops the library. > import Euterpea > import Euterpea.IO.MIDI.MidiIO > import Control.Concurrent > import Euterpea.IO.MUI.MidiWidgets > import Control.Monad > import Codec.Midi (Time) > type MidiEvent = (Codec.Midi.Time, MidiMessage) > toMidi' :: Music Pitch -> [MidiEvent] > toMidi' m = musicToMsgs False [AcousticGrandPiano] (toMusic1 m) We will need to setup the system and get the device id we want to play on. getD is jsut going to grab the first midi device it sees, you might want to adjust this depending on your system. > setup :: IO () > setup = do > allDevs <- getAllDevices > let devID = fst $ head $ snd allDevs > forkIO $ forever $ outputMidi devID > return () > > getD :: IO (OutputDeviceID) > getD = do > allDevs <- getAllDevices > let devID = fst $ head $ snd allDevs > return devID The function we will use to do the actual live coding. > playLive id m = do > mapM_ (deliverMidiEvent id) (toMidi' m) Let give ourselves some music to play with > toNote pc = pc 4 qn > mel = line $ map toNote $ concat $ replicate 10 [c, d, e, c] > mel' = line $ map toNote $ concat $ replicate 10 [e, f, g, g] Since this is live coding, we will be using ghci. type in the following to see how it works. let d = getD playLive d mel playLive d mel' Notice that there is no syncronization. We are working on it...
Class { #name : #JacocoMultiprojectStats, #superclass : #JacocoStats, #category : #'Jacoco-TestSelection' } { #category : #'as yet unclassified' } JacocoMultiprojectStats >> isMethodAnchorInTheCoreDir: method [ ^ method sourceAnchor ifNil: [ method belongsTo sourceAnchor fileName includesSubstring: 'src/main' ] ifNotNil: [ :sa | sa fileName includesSubstring: 'src/main' ] ] { #category : #'as yet unclassified' } JacocoMultiprojectStats >> isMethodAnchorInTheTestDir: method [ ^ method sourceAnchor ifNil: [ method belongsTo sourceAnchor fileName includesSubstring: 'src/test' ] ifNotNil: [ :sa | sa fileName includesSubstring: 'src/test' ] ]
/* Copyright 2018 Profitbricks GmbH Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package com.profitbricks.sdk.annotation import java.lang.annotation.* /** * marks a field as transmittable in READ requests * * @author fudge <frank.geusch@profitbricks.com> */ @Documented @Retention(RetentionPolicy.RUNTIME) @Target([ElementType.FIELD]) @interface Readable {}
(define *output-table-file-name* "tmp/variant-dynamic-ordering-table.scm") (define allow-incomplete-search? #f) (define lookup-optimization? #f) (load "mk-vicare.scm") (load "mk.scm") (load "test-check.scm") (load "interp-core.scm") (load "construct-ordering.scm") (load "interp-simplified-dynamic.scm") (load "simplified-interp-tests.scm")
#!/usr/bin/env bash # # intended to be run from the ex/arch directory. # SNAPSHOT_VERSION=$1 shift KEYID=$1 shift PASSPHRASE=$* if [ ! "$SNAPSHOT_VERSION" -o ! "$KEYID" -o ! "$PASSPHRASE" ]; then echo "usage: $(basename $0) [snapshot_version] [keyid] [passphrase]" >&2 exit 1 fi echo "" echo "releasing (mvn clean deploy -P release)" echo "" mvn clean deploy -Prelease -DskipTests -Dpgp.secretkey=keyring:id=$KEYID -Dpgp.passphrase="literal:$PASSPHRASE" if [ $? != 0 ]; then echo "... failed" >&2 exit 1 fi echo "" echo "bumping archetype version to snapshot: $SNAPSHOT_VERSION" echo "" echo "" echo "... mvn versions:set -DnewVersion=$SNAPSHOT_VERSION" echo "" mvn versions:set -DnewVersion=$SNAPSHOT_VERSION > /dev/null echo "" echo "... git commit -am \"bumping archetype to snapshot: $SNAPSHOT_VERSION\"" echo "" git commit -am "bumping archetype to snapshot: $SNAPSHOT_VERSION" echo "" echo "now run:" echo "" echo "git push origin master" echo ""
$packageName = 'multipar.portable' $url = 'http://multipar.eu//download/archive/dl.php?fn=MultiPar1291.zip' $checksum = '4D116AEAB85378A83A5D3202A5DAEBA6AC1A5C8A' $checksumType = 'sha1' $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $installFile = Join-Path $toolsDir "MultiPar.exe" Install-ChocolateyZipPackage -PackageName "$packageName" ` -Url "$url" ` -UnzipLocation "$toolsDir" ` -Url64bit "" ` -Checksum "$checksum" ` -ChecksumType "$checksumType" Set-Content -Path ("$installFile.gui") ` -Value $null
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """Tests for the Hashing analyzer.""" from __future__ import unicode_literals import unittest from plaso.containers import analyzer_result from plaso.analyzers import hashing_analyzer from plaso.analyzers.hashers import manager from tests import test_lib as shared_test_lib from tests.analyzers.hashers import manager as manager_test class HashingAnalyzerTest(shared_test_lib.BaseTestCase): """Test the Hashing analyzer.""" # pylint: disable=protected-access @classmethod def setUpClass(cls): """Makes preparations before running any of the tests.""" manager.HashersManager.RegisterHasher(manager_test.TestHasher) @classmethod def tearDownClass(cls): """Cleans up after running all tests.""" manager.HashersManager.DeregisterHasher(manager_test.TestHasher) def testHasherInitialization(self): """Test the creation of the analyzer, and the enabling of hashers.""" analyzer = hashing_analyzer.HashingAnalyzer() analyzer.SetHasherNames('testhash') self.assertEqual(len(analyzer._hashers), 1) def testHashFile(self): """Tests that results are produced correctly.""" analyzer = hashing_analyzer.HashingAnalyzer() analyzer.SetHasherNames('testhash') analyzer.Analyze('test data') results = analyzer.GetResults() first_result = results[0] self.assertIsInstance(first_result, analyzer_result.AnalyzerResult) self.assertEqual(first_result.analyzer_name, 'hashing') self.assertEqual(first_result.attribute_name, 'testhash_hash') self.assertEqual(first_result.attribute_value, '4') self.assertEqual(len(results), 1) if __name__ == '__main__': unittest.main()
Beat 0 2 Beat 245 0 Beat 490 1 Beat 735 0 Beat 1015 4 Beat 1260 0 Beat 1505 1 Beat 1750 0 Beat 1995 2 Beat 2240 0 Beat 2485 1 Beat 2730 0 Beat 3010 3 Beat 3255 0 Beat 3500 1 Beat 3745 0 Beat 3990 2 Beat 4235 0 Beat 4480 1 Beat 4725 0 Beat 5005 4 Beat 5250 0 Beat 5495 1 Beat 5740 0 Beat 5985 2 Beat 6230 0 Beat 6475 1 Beat 6720 0 Beat 7000 3 Beat 7245 0 Beat 7490 1 Beat 7735 0 Beat 8015 2 Beat 8260 0 Beat 8505 1 Beat 8750 0 Beat 8995 4 Beat 9240 0 Beat 9485 1 Beat 9730 0 Beat 10010 2 Beat 10255 0 Beat 10500 1 Beat 10745 0 Beat 10990 3 Beat 11235 0 Beat 11515 1 Beat 11760 0 Beat 12005 2 Beat 12250 0 Beat 12495 1 Beat 12740 0 Beat 12985 4 Beat 13230 0 Beat 13475 1 Beat 13720 0 Beat 13965 2 Beat 14210 0 Beat 14455 1 Beat 14700 0 Beat 14980 3 Beat 15225 0 Beat 15470 1 Beat 15715 0 Beat 15995 2 Beat 16240 0 Beat 16485 1 Beat 16730 0 Beat 17010 4 Beat 17255 0 Beat 17500 1 Beat 17745 0 Beat 17990 2 Beat 18235 0 Beat 18480 1 Beat 18725 0 Beat 19005 3 Beat 19250 0 Beat 19495 1 Beat 19740 0 Beat 19985 2 Beat 20230 0 Beat 20475 1 Beat 20720 0 Beat 21000 4 Beat 21245 0 Beat 21490 1 Beat 21735 0 Beat 21980 2 Beat 22225 0 Beat 22470 1 Beat 22715 0 Beat 22995 3 Beat 23240 0 Beat 23485 1 Beat 23730 0 Beat 24010 2 Beat 24255 0 Beat 24500 1 Beat 24745 0 Beat 24990 4 Beat 25235 0 Beat 25480 1 Beat 25725 0 Beat 26005 2 Beat 26250 0 Beat 26495 1 Beat 26740 0 Beat 26985 3 Beat 27230 0 Beat 27510 1 Beat 27755 0 Beat 28000 2 Beat 28245 0 Beat 28490 1 Beat 28735 0 Beat 29015 4 Beat 29260 0 Beat 29505 1 Beat 29750 0 Beat 29995 2 Beat 30240 0 Beat 30485 1 Beat 30730 0 Beat 30975 3 Beat 31220 0 Beat 31465 1 Beat 31710 0 Beat 31990 2 Beat 32235 0 Beat 32480 1 Beat 32725 0 Beat 33005 4 Beat 33250 0 Beat 33495 1 Beat 33740 0 Beat 33985 2 Beat 34230 0 Beat 34475 1 Beat 34720 0 Beat 35000 3 Beat 35245 0 Beat 35490 1 Beat 35735 0 Beat 36015 2 Beat 36260 0 Beat 36505 1 Beat 36750 0 Beat 36995 4 Beat 37240 0 Beat 37485 1 Beat 37730 0 Beat 37975 2 Beat 38220 0 Beat 38465 1 Beat 38710 0 Beat 38990 3 Beat 39235 0 Beat 39480 1 Beat 39725 0 Beat 40005 2 Beat 40250 0 Beat 40495 1 Beat 40740 0 Beat 40985 4 Beat 41230 0 Beat 41475 1 Beat 41720 0 Beat 42000 2 Beat 42245 0 Beat 42490 1 Beat 42735 0 Beat 43015 3 Beat 43260 0 Beat 43505 1 Beat 43750 0 Beat 43995 2 Beat 44240 0 Beat 44485 1 Beat 44730 0 Beat 45010 4 Beat 45255 0 Beat 45500 1 Beat 45745 0 Beat 46025 2 Beat 46270 0 Beat 46515 1 Beat 46760 0 Beat 47005 3 Beat 47250 0 Beat 47495 1 Beat 47740 0 Beat 47985 2 Note 0 1015 64 Note 1015 1995 69 Note 1995 3010 67 Note 3010 3990 65 Note 3990 5005 64 Note 5005 7000 62 Note 7000 8015 64 | Note 8015 8995 71 Note 8995 10010 72 Note 10010 10990 72 Note 10990 11515 71 Note 11515 11760 72 Note 11760 12005 74 Note 12005 12985 71 Note 12985 15995 69 | Note 15995 17010 72 Note 17010 17500 71 Note 17500 17990 69 Note 17990 19005 67 Note 19005 19985 69 Note 19985 21000 71 Note 21000 22995 72 Note 22995 24010 72 | Note 24010 24990 67 Note 24990 26005 69 Note 26005 26985 67 Note 26985 27510 65 Note 27510 28000 64 Note 28000 29015 65 Note 29015 31990 64 | Note 31990 33005 72 Note 33005 33495 71 Note 33495 33985 72 Note 33985 35000 74 Note 35000 36015 72 Note 36015 36995 71 Note 36995 38990 69 Note 38990 40005 71 | Note 40005 40985 64 Note 40985 42000 65 Note 42000 43015 64 Note 43015 43995 62 Note 43995 44485 67 Note 44485 45010 65 Note 45010 47985 64 |
<?php /** * @link https://github.com/zhuravljov/yii2-queue-monitor * @copyright Copyright (c) 2017 Roman Zhuravlev * @license http://opensource.org/licenses/BSD-3-Clause */ namespace zhuravljov\yii\queue\monitor; use Yii; use yii\base\Behavior; use yii\base\InvalidConfigException; use yii\console\ExitCode; use yii\queue\cli\Queue; use yii\queue\cli\WorkerEvent; use zhuravljov\yii\queue\monitor\records\WorkerRecord; /** * Queue Worker Monitor * * @author Roman Zhuravlev <zhuravljov@gmail.com> */ class WorkerMonitor extends Behavior { /** * @var Queue * @inheritdoc */ public $owner; /** * @var Env */ protected $env; /** * @var WorkerRecord */ private $record; /** * @param Env $env * @param array $config */ public function __construct(Env $env, $config = []) { $this->env = $env; parent::__construct($config); } /** * @inheritdoc */ public function events() { $events = [ Queue::EVENT_WORKER_START => 'workerStart', Queue::EVENT_WORKER_STOP => 'workerStop', ]; if ($this->env->canListenWorkerLoop()) { $events[Queue::EVENT_WORKER_LOOP] = 'workerLoop'; } return $events; } /** * @param WorkerEvent $event */ public function workerStart(WorkerEvent $event) { $this->record = new WorkerRecord(); $this->record->sender_name = $this->getSenderName($event); $this->record->host = $this->env->getHost(); $this->record->pid = $event->sender->getWorkerPid(); $this->record->started_at = time(); $this->record->pinged_at = time(); $this->record->save(false); } /** * @param WorkerEvent $event */ public function workerLoop(WorkerEvent $event) { if ($this->record->pinged_at + $this->env->workerPingInterval > time()) { return; } if (!$this->record->refresh()) { $this->record->setIsNewRecord(true); } $this->record->pinged_at = time(); $this->record->save(false); if ($this->record->isStopped()) { $event->exitCode = ExitCode::OK; } } /** * @param WorkerEvent $event */ public function workerStop(WorkerEvent $event) { if (!$this->env->canListenWorkerLoop()) { $this->env->db->close(); // To reopen a lost connection } $this->record->finished_at = time(); $this->record->save(false); } /** * @param WorkerEvent $event * @throws * @return string */ protected function getSenderName(WorkerEvent $event) { foreach (Yii::$app->getComponents(false) as $id => $component) { if ($component === $event->sender) { return $id; } } throw new InvalidConfigException('Queue must be an application component.'); } }
# This file is a part of JuliaFEM. # License is MIT: see https://github.com/JuliaFEM/FEMBasis.jl/blob/master/LICENSE using FEMBasis using LinearAlgebra using Test # interpolate scalar field in unit square: # T(X,t) = t*(1 + X[1] + 3*X[2] - 2*X[1]*X[2]) B = Quad4() X = ((0.0, 0.0), (1.0, 0.0), (1.0, 1.0), (0.0, 1.0)) T = (1.0, 2.0, 3.0, 4.0) T_known(X) = 1 + X[1] + 3*X[2] - 2*X[1]*X[2] T_interpolated = interpolate(B, T, (0.0, 0.0)) @test isapprox(T_interpolated, T_known((0.5, 0.5))) # calculate gradient dB/dX B = Quad4() X = ([0.0, 0.0], [1.0, 0.0], [1.0, 1.0], [0.0, 1.0]) dBdX = grad(B, X, (0.0, 0.0)) @test isapprox(dBdX, 1/2*[-1 1 1 -1; -1 -1 1 1]) # interpolate gradient of scalar field in unit square: # grad(T)(X) = [1-2X[2], 3-2*X[1]] B = Quad4() X = ([0.0, 0.0], [1.0, 0.0], [1.0, 1.0], [0.0, 1.0]) T = (1.0, 2.0, 3.0, 4.0) dTdX = grad(B, T, X, (0.0, 0.0)) dTdX_expected(X) = [1-2*X[2] 3-2*X[1]] @test isapprox(dTdX, dTdX_expected([0.5, 0.5])) # interpolate vector field in unit square: # u(X,t) = [1/4*t*X[1]*X[2], 0, 0] B = Quad4() u = Vector[[0.0, 0.0], [0.0, 0.0], [1/4, 0.0], [0.0, 0.0]] u_known(X) = [1/4*X[1]*X[2], 0] u_interpolated = interpolate(B, u, (0.0, 0.0)) @test isapprox(u_interpolated, u_known((0.5, 0.5))) # interpolate gradient of vector field in unit square: # u(X) = t*[X[1]*(X[2]+1), X[1]*(4*X[2]-1)] # => u_i,j = t*[X[2]+1 X[1]; 4*X[2]-1 4*X[1]] B = Quad4() X = ([0.0, 0.0], [1.0, 0.0], [1.0, 1.0], [0.0, 1.0]) u = ([0.0, 0.0], [1.0, -1.0], [2.0, 3.0], [0.0, 0.0]) dudX = grad(B, u, X, (0.0, 0.0)) dudX_expected(X) = [X[2]+1 X[1]; 4*X[2]-1 4*X[1]] @test isapprox(dudX, dudX_expected([0.5, 0.5])) # test BasisInfo B = BasisInfo(Seg2) @test length(B) == 2 @test size(B) == (1, 2) X = ((0.0,), (1.1)) xi = (0.0,) eval_basis!(B, X, xi) @test isapprox(B.invJ, inv(B.J)) @test isapprox(B.detJ, det(B.J)) B = BasisInfo(Quad4) X = ((0.0,0.0), (1.1,0.0), (1.0,1.0), (0.0,1.0)) xi = (0.0,0.0) eval_basis!(B, X, xi) @test isapprox(B.invJ, inv(B.J)) @test isapprox(B.detJ, det(B.J)) B = BasisInfo(Hex8) X = ((0.0,0.0,0.0), (1.1,0.0,0.0), (1.0,1.0,0.0), (0.0,1.0,0.0), (0.0,0.0,1.0), (1.0,0.0,1.0), (1.0,1.0,1.0), (0.0,1.0,1.0)) xi = (0.0,0.0,0.0) eval_basis!(B, X, xi) @test isapprox(B.invJ, inv(B.J)) @test isapprox(B.detJ, det(B.J)) # evaluate gradient using BasisInfo B = BasisInfo(Quad4) X = ((0.0,0.0), (1.0,0.0), (1.0,1.0), (0.0,1.0)) xi = (0.0, 0.0) eval_basis!(B, X, xi) u = ((0.0, 0.0), (1.0, -1.0), (2.0, 3.0), (0.0, 0.0)) gradu = zeros(2, 2) grad!(B, gradu, u) gradu_expected = [1.5 0.5; 1.0 2.0] @test isapprox(gradu, gradu_expected) # test curves bi = BasisInfo(Seg2) X1 = ((0.0,0.0,0.0), (1.0,0.0,0.0)) X2 = ((0.0,0.0,0.0), (0.0,1.0,0.0)) X3 = ((0.0,0.0,0.0), (0.0,0.0,1.0)) xi = (0.0, 0.0) eval_basis!(bi, X1, xi) @test isapprox(bi.detJ, 0.5) eval_basis!(bi, X2, xi) @test isapprox(bi.detJ, 0.5) eval_basis!(bi, X3, xi) @test isapprox(bi.detJ, 0.5) @test isapprox(jacobian(Seg2(), X1, xi), [0.5 0.0 0.0]) @test isapprox(jacobian(Seg2(), X2, xi), [0.0 0.5 0.0]) @test isapprox(jacobian(Seg2(), X3, xi), [0.0 0.0 0.5]) # test manifolds bi = BasisInfo(Quad4) X1 = ((0.0,0.0,0.0), (1.0,0.0,0.0), (1.0,1.0,0.0), (0.0,1.0,0.0)) X2 = ((0.0,0.0,0.0), (0.0,1.0,0.0), (0.0,1.0,1.0), (0.0,0.0,1.0)) X3 = ((0.0,0.0,0.0), (0.0,0.0,1.0), (1.0,0.0,1.0), (1.0,0.0,0.0)) xi = (0.0, 0.0) eval_basis!(bi, X1, xi) @test isapprox(bi.detJ, 0.25) eval_basis!(bi, X2, xi) @test isapprox(bi.detJ, 0.25) eval_basis!(bi, X3, xi) @test isapprox(bi.detJ, 0.25) J1 = jacobian(Quad4(), X1, xi) J2 = jacobian(Quad4(), X2, xi) J3 = jacobian(Quad4(), X3, xi) @test isapprox(J1, [0.5 0.0 0.0; 0.0 0.5 0.0]) @test isapprox(J2, [0.0 0.5 0.0; 0.0 0.0 0.5]) @test isapprox(J3, [0.0 0.0 0.5; 0.5 0.0 0.0])
//Address: 0xb83109fe57aD735e747a6F633E5c52fa0572C760 //Contract name: UIOCOIN //Balance: 0 Ether //Verification Date: 3/14/2018 //Transacion Count: 4313 // CODE STARTS HERE contract Token { uint256 public totalSupply; function balanceOf(address _owner) constant returns (uint256 balance); function transfer(address _to, uint256 _value) returns (bool success); function transferFrom(address _from, address _to, uint256 _value) returns (bool success); function approve(address _spender, uint256 _value) returns (bool success); function allowance(address _owner, address _spender) constant returns (uint256 remaining); event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); } contract StandardToken is Token { function transfer(address _to, uint256 _value) returns (bool success) { if (balances[msg.sender] >= _value && _value > 0) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) { balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } else { return false; } } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; } contract UIOCOIN is StandardToken { function () { throw; } string public name; uint8 public decimals; string public symbol; string public version = 'H0.1'; function UIOCOIN( uint256 _initialAmount, string _tokenName, uint8 _decimalUnits, string _tokenSymbol ) { balances[msg.sender] = _initialAmount; totalSupply = _initialAmount; name = _tokenName; decimals = _decimalUnits; symbol = _tokenSymbol; } function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; } return true; } }
/* :name: class_test_0 :description: Test :tags: 6.15 8.3 */ class semicolon_classy; ; ;;; ; ; ;endclass module test; endmodule
#!/bin/sh kubectl apply -f productpage-pipeline kubectl apply -f tasks kubectl apply -f trigger
/* * Copyright 2017 - 2019 tsc4j project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package com.github.tsc4j.core.impl import com.github.tomakehurst.wiremock.core.WireMockConfiguration import com.github.tomakehurst.wiremock.junit.WireMockRule import com.github.tsc4j.core.AbstractConfigSource import com.github.tsc4j.core.AbstractConfigSourceSpec import com.github.tsc4j.core.ConfigQuery import com.github.tsc4j.core.ConfigSourceBuilder import com.github.tsc4j.core.Tsc4j import com.typesafe.config.ConfigFactory import groovy.util.logging.Slf4j import org.junit.Rule import spock.lang.Unroll import static com.github.tomakehurst.wiremock.client.WireMock.aResponse import static com.github.tomakehurst.wiremock.client.WireMock.get import static com.github.tomakehurst.wiremock.client.WireMock.givenThat import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo @Unroll @Slf4j class URLConfigSourceSpec extends AbstractConfigSourceSpec { static int PORT = 12891 static def cfgA = ConfigFactory.parseMap([ "foo": "bar"]) static def cfgB = ConfigFactory.parseMap([ "foo": "baz", "x" : "y"]) static def wiremockOpts = new WireMockConfiguration().port(PORT) @Rule WireMockRule wiremockRule = new WireMockRule(wiremockOpts, false) def "should fetch correct urls and produce expected config"() { given: def source = dummySource() def query = ConfigQuery.builder() .appName("myApp") .datacenter("someDc") .envs(["envA", "envB"]) .build() and: "setup wiremock" mockHttpResponses().each { givenThat(it) } when: "fetch config" def config = source.get(query) log.info("fetched config: {}", Tsc4j.render(config, true)) then: config.root().size() == 2 config.getString("foo") == "baz" config.getString("x") == "y" } def mockHttpResponses() { [ get(urlEqualTo('/someDc/envA/myApp/foo.conf')) .willReturn(aResponse() .withStatus(200) .withHeader("Content-Type", "text/plain") .withFixedDelay(10) .withBody(Tsc4j.render(cfgA))), get(urlEqualTo('/someDc/envB/myApp/bar.conf')) .willReturn(aResponse() .withStatus(200) .withHeader("Content-Type", "application/json") .withFixedDelay(500) .withBody(Tsc4j.render(cfgB))) ] } // TODO: implement some actual tests. @Override AbstractConfigSource dummySource(String appName) { dummyBuilder() .url("http://localhost:$PORT/" + '${datacenter}/${env}/${application}/foo.conf') .url("http://localhost:$PORT/" + '${datacenter}/${env}/${application}/bar.conf') .url("http://localhost:$PORT/non-existing.conf") .setFailOnMissing(false) .build() } @Override ConfigSourceBuilder dummyBuilder() { URLConfigSource.builder() } }
package compiler import ( "net/url" "os" "path/filepath" "strings" "github.com/woodpecker-ci/woodpecker/pipeline/frontend" ) // Option configures a compiler option. type Option func(*Compiler) // WithOption configures the compiler with the given option if // boolean b evaluates to true. func WithOption(option Option, b bool) Option { switch { case b: return option default: return func(compiler *Compiler) {} } } // WithVolumes configures the compiler with default volumes that // are mounted to each container in the pipeline. func WithVolumes(volumes ...string) Option { return func(compiler *Compiler) { compiler.volumes = volumes } } // WithRegistry configures the compiler with registry credentials // that should be used to download images. func WithRegistry(registries ...Registry) Option { return func(compiler *Compiler) { compiler.registries = registries } } // WithSecret configures the compiler with external secrets // to be injected into the container at runtime. func WithSecret(secrets ...Secret) Option { return func(compiler *Compiler) { for _, secret := range secrets { compiler.secrets[strings.ToLower(secret.Name)] = secret } } } // WithMetadata configures the compiler with the repository, build // and system metadata. The metadata is used to remove steps from // the compiled pipeline configuration that should be skipped. The // metadata is also added to each container as environment variables. func WithMetadata(metadata frontend.Metadata) Option { return func(compiler *Compiler) { compiler.metadata = metadata for k, v := range metadata.Environ() { compiler.env[k] = v } } } // WithNetrc configures the compiler with netrc authentication // credentials added by default to every container in the pipeline. func WithNetrc(username, password, machine string) Option { return func(compiler *Compiler) { compiler.cloneEnv["CI_NETRC_USERNAME"] = username compiler.cloneEnv["CI_NETRC_PASSWORD"] = password compiler.cloneEnv["CI_NETRC_MACHINE"] = machine } } // WithWorkspace configures the compiler with the workspace base // and path. The workspace base is a volume created at runtime and // mounted into all containers in the pipeline. The base and path // are joined to provide the working directory for all build and // plugin steps in the pipeline. func WithWorkspace(base, path string) Option { return func(compiler *Compiler) { compiler.base = base compiler.path = path } } // WithWorkspaceFromURL configures the compiler with the workspace // base and path based on the repository url. func WithWorkspaceFromURL(base, link string) Option { path := "src" parsed, err := url.Parse(link) if err == nil { path = filepath.Join(path, parsed.Hostname(), parsed.Path) } return WithWorkspace(base, path) } // WithEscalated configures the compiler to automatically execute // images as privileged containers if the match the given list. func WithEscalated(images ...string) Option { return func(compiler *Compiler) { compiler.escalated = images } } // WithPrefix configures the compiler with the prefix. The prefix is // used to prefix container, volume and network names to avoid // collision at runtime. func WithPrefix(prefix string) Option { return func(compiler *Compiler) { compiler.prefix = prefix } } // WithLocal configures the compiler with the local flag. The local // flag indicates the pipeline execution is running in a local development // environment with a mounted local working directory. func WithLocal(local bool) Option { return func(compiler *Compiler) { compiler.local = local } } // WithEnviron configures the compiler with environment variables // added by default to every container in the pipeline. func WithEnviron(env map[string]string) Option { return func(compiler *Compiler) { for k, v := range env { compiler.env[k] = v } } } // WithCacher configures the compiler with default cache settings. func WithCacher(cacher Cacher) Option { return func(compiler *Compiler) { compiler.cacher = cacher } } // WithVolumeCacher configures the compiler with default local volume // caching enabled. func WithVolumeCacher(base string) Option { return func(compiler *Compiler) { compiler.cacher = &volumeCacher{base: base} } } // WithS3Cacher configures the compiler with default amazon s3 // caching enabled. func WithS3Cacher(access, secret, region, bucket string) Option { return func(compiler *Compiler) { compiler.cacher = &s3Cacher{ access: access, secret: secret, bucket: bucket, region: region, } } } // WithProxy configures the compiler with HTTP_PROXY, HTTPS_PROXY, // and NO_PROXY environment variables added by default to every // container in the pipeline. func WithProxy() Option { return WithEnviron( map[string]string{ "no_proxy": noProxy, "NO_PROXY": noProxy, "http_proxy": httpProxy, "HTTP_PROXY": httpProxy, "HTTPS_PROXY": httpsProxy, "https_proxy": httpsProxy, }, ) } // WithNetworks configures the compiler with additional networks // to be connected to build containers func WithNetworks(networks ...string) Option { return func(compiler *Compiler) { compiler.networks = networks } } // WithResourceLimit configures the compiler with default resource limits that // are applied each container in the pipeline. func WithResourceLimit(swap, mem, shmsize, cpuQuota, cpuShares int64, cpuSet string) Option { return func(compiler *Compiler) { compiler.reslimit = ResourceLimit{ MemSwapLimit: swap, MemLimit: mem, ShmSize: shmsize, CPUQuota: cpuQuota, CPUShares: cpuShares, CPUSet: cpuSet, } } } // TODO(bradrydzewski) consider an alternate approach to // WithProxy where the proxy strings are passed directly // to the function as named parameters. // func WithProxy2(http, https, none string) Option { // return WithEnviron( // map[string]string{ // "no_proxy": none, // "NO_PROXY": none, // "http_proxy": http, // "HTTP_PROXY": http, // "HTTPS_PROXY": https, // "https_proxy": https, // }, // ) // } var ( noProxy = getenv("no_proxy") httpProxy = getenv("https_proxy") httpsProxy = getenv("https_proxy") ) // getenv returns the named environment variable. func getenv(name string) (value string) { name = strings.ToUpper(name) if value := os.Getenv(name); value != "" { return value } name = strings.ToLower(name) if value := os.Getenv(name); value != "" { return value } return }
{ "id": "c076ee78-457b-4f0d-af37-614b3626ad0d", "modelName": "GMScript", "mvc": "1.0", "name": "scr_dsmap_get_keys", "IsCompatibility": false, "IsDnD": false }
import game.world8.level6 def ne_iff_imp_false (a b : mynat) : a ≠ b ↔ ((a = b) → false) := iff.rfl -- hide /- Axiom : iff_imp_false (a b : mynat) : a ≠ b ↔ ((a = b) → false) -/ /- * `ne_iff_imp_false (a b : mynat) : (a ≠ b) ↔ ((a = b) → false) This means that `rw ne_iff_imp_false` will change all our `≠` to implications, and the tools we already have will be able to deal with them. -/
prefix ex: <http://www.example.org/schema#> prefix in: <http://www.example.org/instance#> select * where { in:a (ex:p1/ex:p2/ex:p3)* ?x }
LOCAL_PATH := $(call my-dir) SIRIUS_ROOT := $(LOCAL_PATH)/.. include $(CLEAR_VARS) LOCAL_SRC_FILES := ServerMain.cpp LOCAL_C_INCLUDES := \ $(SIRIUS_ROOT) \ $(SIRIUS_ROOT)/utils \ $(SIRIUS_ROOT)/log LOCAL_SHARED_LIBRARIES := libsirius LOCAL_CFLAGS := -Werror -DENABLE_LOGGER LOCAL_MODULE_TAGS := optional LOCAL_32_BIT_ONLY := $(BOARD_QTI_CAMERA_32BIT_ONLY) LOCAL_MODULE := sirius_test_server include $(BUILD_EXECUTABLE) include $(CLEAR_VARS) LOCAL_SRC_FILES := ClientMain.cpp LOCAL_C_INCLUDES := \ $(SIRIUS_ROOT) \ $(SIRIUS_ROOT)/utils \ $(SIRIUS_ROOT)/log LOCAL_SHARED_LIBRARIES := libsirius LOCAL_CFLAGS := -Werror -DENABLE_LOGGER LOCAL_MODULE_TAGS := optional LOCAL_32_BIT_ONLY := $(BOARD_QTI_CAMERA_32BIT_ONLY) LOCAL_MODULE := sirius_test_client include $(BUILD_EXECUTABLE)
<?php /** * Course information block. * * @package LifterLMS_Blocks/Abstracts * @since 1.0.0 * @version 1.1.0 * * @render_hook llms_course-information-block_render */ defined( 'ABSPATH' ) || exit; /** * Course information block class. */ class LLMS_Blocks_Course_Information_Block extends LLMS_Blocks_Abstract_Block { /** * Block ID. * * @var string */ protected $id = 'course-information'; /** * Is block dynamic (rendered in PHP). * * @var bool */ protected $is_dynamic = true; /** * Add actions attached to the render function action. * * @param array $attributes Optional. Block attributes. Default empty array. * @param string $content Optional. Block content. Default empty string. * @return void * @since 1.0.0 * @version 1.1.0 */ public function add_hooks( $attributes = array(), $content = '' ) { $attributes = wp_parse_args( $attributes, array( 'title' => __( 'Course Information', 'lifterlms' ), 'title_size' => 'h3', 'show_length' => true, 'show_difficulty' => true, 'show_tracks' => true, 'show_cats' => true, 'show_tags' => true, ) ); $show_wrappers = false; if ( $attributes['show_length'] ) { $show_wrappers = true; add_action( $this->get_render_hook(), 'lifterlms_template_single_length', 10 ); } if ( $attributes['show_difficulty'] ) { $show_wrappers = true; add_action( $this->get_render_hook(), 'lifterlms_template_single_difficulty', 20 ); } if ( $attributes['show_tracks'] ) { $show_wrappers = true; add_action( $this->get_render_hook(), 'lifterlms_template_single_course_tracks', 25 ); } if ( $attributes['show_cats'] ) { $show_wrappers = true; add_action( $this->get_render_hook(), 'lifterlms_template_single_course_categories', 30 ); } if ( $attributes['show_tags'] ) { $show_wrappers = true; add_action( $this->get_render_hook(), 'lifterlms_template_single_course_tags', 35 ); } if ( $show_wrappers ) { $this->title = $attributes['title']; $this->title_size = $attributes['title_size']; add_filter( 'llms_course_meta_info_title', array( $this, 'filter_title' ) ); add_filter( 'llms_course_meta_info_title_size', array( $this, 'filter_title_size' ) ); add_action( $this->get_render_hook(), 'lifterlms_template_single_meta_wrapper_start', 5 ); add_action( $this->get_render_hook(), 'lifterlms_template_single_meta_wrapper_end', 50 ); } } /** * Filters the title of the course information headline per block settings. * * @param string $title default title. * @return string * @since 1.0.0 * @version 1.0.0 */ public function filter_title( $title ) { return $this->title; } /** * Filters the title headline element size of the course information headline per block settings. * * @param string $size default size. * @return string * @since 1.0.0 * @version 1.0.0 */ public function filter_title_size( $size ) { return $this->title_size; } /** * Register meta attributes stub. * * Called after registering the block type. * * @return void * @since 1.0.0 * @version 1.0.0 */ public function register_meta() { register_meta( 'post', '_llms_length', array( 'object_subtype' => 'course', 'sanitize_callback' => 'sanitize_text_field', 'auth_callback' => array( $this, 'meta_auth_callback' ), 'type' => 'string', 'single' => true, 'show_in_rest' => true, ) ); } /** * Meta field update authorization callback. * * @param bool $allowed Is the update allowed. * @param string $meta_key Meta keyname. * @param int $object_id WP Object ID (post,comment,etc)... * @param int $user_id WP User ID. * @param string $cap requested capability. * @param array $caps user capabilities. * @return bool * @since 1.0.0 * @version 1.0.0 */ public function meta_auth_callback( $allowed, $meta_key, $object_id, $user_id, $cap, $caps ) { return true; } } return new LLMS_Blocks_Course_Information_Block();
<%@ page contentType="text/html;charset=UTF-8" %> <%@ include file="/WEB-INF/views/include/taglib.jsp" %> <%@ taglib prefix="sitemesh" uri="http://www.opensymphony.com/sitemesh/decorator" %> <html style="overflow-x:auto;overflow-y:auto;"> <head> <title><sitemesh:title/></title> <%@include file="/WEB-INF/views/include/head.jsp" %> <!-- Baidu tongji analytics --> <%-- <script> var _hmt=_hmt||[]; (function(){ var hm=document.createElement("script"); hm.src="//hm.baidu.com/hm.js?82116c626a8d504a5c0675073362ef6f"; var s=document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm,s); })(); </script>--%> <sitemesh:head/> </head> <body> <sitemesh:body/> </body> </html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <!DOCTYPE html> <html lang="zxx"> <head> <title>编辑公告</title> <!-- meta-tags --> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="keywords" content="" /> <script> addEventListener("load", function () { setTimeout(hideURLbar, 0); }, false); function hideURLbar() { window.scrollTo(0, 1); } </script> <!-- UEditor配置文件 --> <script type="text/javascript" src="/ueditor/ueditor.config.js"></script> <!-- 编辑器源码文件 --> <script type="text/javascript" src="/ueditor/ueditor.all.js"></script> <!-- //meta-tags --> <link href="/assets/css/bootstrap.css" rel="stylesheet" type="text/css" media="all" /> <link href="/assets/css/style.css" rel="stylesheet" type="text/css" media="all" /> <!-- font-awesome --> <link href="/assets/css/font-awesome.css" rel="stylesheet"> <!-- fonts --> <link href="http://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet"> <link href="http://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet"> </head> <body> <!-- header --> <div class="header-top"> <div class="container"> <div class="bottom_header_left"> <p> <span class="fa fa-map-marker" aria-hidden="true"></span>成都,中国 </p> </div> <div class="bottom_header_right" style="width: 80%;"> <c:choose> <c:when test="${!empty sessionScope.account}"> <div class="header-top-righ"> <a href="/logout"> <span class="fa fa-sign-out" aria-hidden="true"></span>注销 </a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="/u/s/menu"> <span class="fa fa-tasks" aria-hidden="true"></span>个人中心 </a> </div> </c:when> <c:otherwise> <div class="header-top-righ"> <a href="/login"> <span class="fa fa-sign-in" aria-hidden="true"></span>登录 </a> </div> </c:otherwise> </c:choose> <div class="clearfix"> </div> </div> <div class="clearfix"> </div> </div> </div> <div class="header"> <div class="content white"> <nav class="navbar navbar-default"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="/index"> <h1> <span><img src="/assets/images/graduate.png" height="60" width="60"></span>家校通 <label>Education& Courses</label> </h1> </a> </div> <!--/.navbar-header--> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <nav class="link-effect-2" id="link-effect-2"> <ul class="nav navbar-nav"> <li><a href="" class="effect-3"></a></li> <li><a href="" class="effect-3"></a></li> <li><a href="/index" class="">首页</a></li> <li><a href="#" class="">学校概况</a> <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">新闻资讯 <span class="caret"></span> </a> <ul class="dropdown-menu" role="menu"> <li><a href="/announceList/1">公告</a></li> <li><a href="/newsList/1">新闻</a></li> </ul></li> <li><a href="#" class="effect-3">校园风采</a></li> <li><a href="#" class="effect-3">师资队伍</a></li> </ul> </nav> </div> <!--/.navbar-collapse--> <!--/.navbar--> </div> </nav> </div> </div> <br/> <!-- banner --> <div class="inner_page_agile"> </div> <!--//banner --> <!-- short--> <div class="services-breadcrumb"> <div class="inner_breadcrumb"> <ul class="short_ls"> <li> <a href="/u/s/menu">个人中心</a> <span>| |</span> </li> <li>发布公告</li> </ul> </div> </div> <div class="register-form-main"> <div class="container"> <div class="title-div"> <h3 class="tittle"> 发布公告 </h3> <div class="tittle-style"> </div> </div> <div class="register-form" style="width: 70%"> <form action="#" method="post"> <div class="fields-grid"> <div class="styled-input"> <label class="header">公告标题</label> <input type="text" name="announceTitle" value="公告标题"> </div> <input type="hidden" name="announceWord" id="announceWord"> <div class="styled-input" > <label class="header">公告内容</label><br/> <!-- 加载编辑器的容器 --> <script id="container" name="announceContent" type="text/plain" style="height: 300px">请在此处输入公告正文</script> <!-- 配置文件 --> <script type="text/javascript" src="/ueditor/ueditor.config.js"></script> <!-- 编辑器源码文件 --> <script type="text/javascript" src="/ueditor/ueditor.all.min.js"></script> <!-- 实例化编辑器 --> <script type="text/javascript"> var ue = UE.getEditor('container',{toolbars: [['undo', 'redo', 'bold','italic','underline']]}); var domUtils = UE.dom.domUtils; ue.addListener("blur",function(){ $("#announceWord").val(ue.getContentTxt()); }); </script> </div> <div class="clearfix"> </div> </div> <input type="submit" value="发布"> </form> </div> </div> </div> <!-- footer --> <div class="mkl_footer"> <div class="sub-footer"> <div class="container"> <div class="mkls_footer_grid"> <div class="col-xs-4 mkls_footer_grid_left"> <h4>地址:</h4> <p>重庆市沙坪坝沙正街174号</p> </div> <div class="col-xs-4 mkls_footer_grid_left"> <h4>联系我们:</h4> <p> <span>电话 : </span>800 820 8820</p> <p> <span>邮箱 : </span> email@jxt.com </p> </div> <div class="col-xs-4 mkls_footer_grid_left"> <h4>上课时间</h4> <p>周一到周五</p> <p>8:20 - 16:30</p> </div> <div class="clearfix"> </div> </div> <div class="botttom-nav-allah"> <ul> <li> <a href="/about">关于我们</a> </li> <li> <a href="https://github.com/Mas211/hwadee">联系我们</a> </li> <li> <a href="https://github.com/Mas211/hwadee">反馈建议</a> </li> </ul> </div> </div> </div> <div class="footer-copy-right"> <div class="container"> <div class="allah-copy"> <p>Copyright &copy; 重庆市沙坪坝沙正街174号重庆大学龙爱家项目组 <a href="https://github.com/Mas211/hwadee" target="_blank" title="点击访问…">项目详情</a> </p> </div> <div class="clearfix"></div> </div> </div> </div> <!--/footer --> <!-- js files --> <!-- js --> <script src="/assets/js/jquery-2.1.4.min.js"></script> <!-- bootstrap --> <script src="/assets/js/bootstrap.js"></script> <!-- Calendar --> <link rel="stylesheet" href="/assets/css/jquery-ui.css" /> <script src="/assets/js/jquery-ui.js"></script> <script> $(function () { $("#datepicker,#datepicker1,#datepicker2,#datepicker3").datepicker(); }); </script> <!-- //Calendar --> <!-- smooth scrolling --> <script src="/assets/js/SmoothScroll.min.js"></script> <script src="/assets/js/move-top.js"></script> <script src="/assets/js/easing.js"></script> <!-- here stars scrolling icon --> <script> $(document).ready(function () { $().UItoTop({ easingType: 'easeOutQuart' }); }); </script> <!-- //here ends scrolling icon --> <!-- smooth scrolling --> <!-- //js-files --> </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"/><!-- using block title in layout.dt--><!-- using block ddox.defs in ddox.layout.dt--><!-- using block ddox.title in ddox.layout.dt--> <title>Function awe_webcore_clear_cookies</title> <link rel="stylesheet" type="text/css" href="../../styles/ddox.css"/> <link rel="stylesheet" href="../../prettify/prettify.css" type="text/css"/> <script type="text/javascript" src="../../scripts/jquery.js">/**/</script> <script type="text/javascript" src="../../prettify/prettify.js">/**/</script> <script type="text/javascript" src="../../scripts/ddox.js">/**/</script> </head> <body onload="prettyPrint(); setupDdox();"> <nav id="main-nav"><!-- using block navigation in layout.dt--> <ul class="tree-view"> <li class="collapsed tree-view"> <a href="#" class="package">components</a> <ul class="tree-view"> <li> <a href="../../components/animation.html" class=" module">animation</a> </li> <li> <a href="../../components/assets.html" class=" module">assets</a> </li> <li> <a href="../../components/behavior.html" class=" module">behavior</a> </li> <li> <a href="../../components/camera.html" class=" module">camera</a> </li> <li> <a href="../../components/icomponent.html" class=" module">icomponent</a> </li> <li> <a href="../../components/lights.html" class=" module">lights</a> </li> <li> <a href="../../components/material.html" class=" module">material</a> </li> <li> <a href="../../components/mesh.html" class=" module">mesh</a> </li> <li> <a href="../../components/userinterface.html" class=" module">userinterface</a> </li> </ul> </li> <li class="collapsed tree-view"> <a href="#" class="package">core</a> <ul class="tree-view"> <li> <a href="../../core/dgame.html" class=" module">dgame</a> </li> <li> <a href="../../core/gameobject.html" class=" module">gameobject</a> </li> <li> <a href="../../core/prefabs.html" class=" module">prefabs</a> </li> <li> <a href="../../core/properties.html" class=" module">properties</a> </li> <li> <a href="../../core/reflection.html" class=" module">reflection</a> </li> <li> <a href="../../core/scene.html" class=" module">scene</a> </li> </ul> </li> <li class="collapsed tree-view"> <a href="#" class="package">graphics</a> <ul class="tree-view"> <li class="collapsed tree-view"> <a href="#" class="package">adapters</a> <ul class="tree-view"> <li> <a href="../../graphics/adapters/adapter.html" class=" module">adapter</a> </li> <li> <a href="../../graphics/adapters/linux.html" class=" module">linux</a> </li> <li> <a href="../../graphics/adapters/mac.html" class=" module">mac</a> </li> <li> <a href="../../graphics/adapters/win32.html" class=" module">win32</a> </li> </ul> </li> <li class="collapsed tree-view"> <a href="#" class="package">shaders</a> <ul class="tree-view"> <li class="collapsed tree-view"> <a href="#" class="package">glsl</a> <ul class="tree-view"> <li> <a href="../../graphics/shaders/glsl/ambientlight.html" class=" module">ambientlight</a> </li> <li> <a href="../../graphics/shaders/glsl/animatedgeometry.html" class=" module">animatedgeometry</a> </li> <li> <a href="../../graphics/shaders/glsl/directionallight.html" class=" module">directionallight</a> </li> <li> <a href="../../graphics/shaders/glsl/geometry.html" class=" module">geometry</a> </li> <li> <a href="../../graphics/shaders/glsl/pointlight.html" class=" module">pointlight</a> </li> <li> <a href="../../graphics/shaders/glsl/shadowmap.html" class=" module">shadowmap</a> </li> <li> <a href="../../graphics/shaders/glsl/userinterface.html" class=" module">userinterface</a> </li> </ul> </li> <li> <a href="../../graphics/shaders/glsl.html" class=" module">glsl</a> </li> <li> <a href="../../graphics/shaders/shaders.html" class=" module">shaders</a> </li> </ul> </li> <li> <a href="../../graphics/adapters.html" class=" module">adapters</a> </li> <li> <a href="../../graphics/graphics.html" class=" module">graphics</a> </li> <li> <a href="../../graphics/shaders.html" class=" module">shaders</a> </li> </ul> </li> <li class=" tree-view"> <a href="#" class="package">utility</a> <ul class="tree-view"> <li> <a href="../../utility/awesomium.html" class="selected module">awesomium</a> </li> <li> <a href="../../utility/concurrency.html" class=" module">concurrency</a> </li> <li> <a href="../../utility/config.html" class=" module">config</a> </li> <li> <a href="../../utility/filepath.html" class=" module">filepath</a> </li> <li> <a href="../../utility/input.html" class=" module">input</a> </li> <li> <a href="../../utility/output.html" class=" module">output</a> </li> <li> <a href="../../utility/string.html" class=" module">string</a> </li> <li> <a href="../../utility/tasks.html" class=" module">tasks</a> </li> <li> <a href="../../utility/time.html" class=" module">time</a> </li> </ul> </li> <li> <a href="../../components.html" class=" module">components</a> </li> <li> <a href="../../core.html" class=" module">core</a> </li> <li> <a href="../../graphics.html" class=" module">graphics</a> </li> <li> <a href="../../utility.html" class=" module">utility</a> </li> </ul> <noscript> <p style="color: red">The search functionality needs JavaScript enabled</p> </noscript> <div id="symbolSearchPane" style="display: none"> <p> <input id="symbolSearch" type="text" placeholder="Search for symbols" onchange="performSymbolSearch(24);" onkeypress="this.onchange();" onpaste="this.onchange();" oninput="this.onchange();"/> </p> <ul id="symbolSearchResults" style="display: none"></ul> <script type="application/javascript" src="../../symbols.js"></script> <script type="application/javascript"> //<![CDATA[ var symbolSearchRootDir = "../../"; $('#symbolSearchPane').show(); //]]> </script> </div> </nav> <div id="main-contents"> <h1>Function awe_webcore_clear_cookies</h1><!-- using block body in layout.dt--><!-- Default block ddox.description in ddox.layout.dt--><!-- Default block ddox.sections in ddox.layout.dt--><!-- using block ddox.members in ddox.layout.dt--> <p> Clear all cookies. </p> <section> </section> <section> <h2>Prototype</h2> <pre class="code prettyprint lang-d prototype"> void awe_webcore_clear_cookies() extern(C);</pre> </section> <section> <h2>Authors</h2><!-- using block ddox.authors in ddox.layout.dt--> </section> <section> <h2>Copyright</h2><!-- using block ddox.copyright in ddox.layout.dt--> </section> <section> <h2>License</h2><!-- using block ddox.license in ddox.layout.dt--> </section> </div> </body> </html>
(* Content-type: application/vnd.wolfram.mathematica *) (*** Wolfram Notebook File ***) (* http://www.wolfram.com/nb *) (* CreatedBy='Mathematica 12.1' *) (*CacheID: 234*) (* Internal cache information: NotebookFileLineBreakTest NotebookFileLineBreakTest NotebookDataPosition[ 158, 7] NotebookDataLength[ 76114, 2256] NotebookOptionsPosition[ 59836, 1897] NotebookOutlinePosition[ 64237, 2018] CellTagsIndexPosition[ 63665, 1996] WindowFrame->Normal*) (* Beginning of Notebook Content *) Notebook[{ Cell[CellGroupData[{ Cell["Linear Algebra", "Title", CellChangeTimes->{{3.818164547943408*^9, 3.818164552685149*^9}, 3.819786856587254*^9},ExpressionUUID->"9acdf1f7-9c34-4f82-b162-\ ed54a7e38f1c"], Cell[BoxData[ RowBox[{"<<", "Q3`"}]], "Input", CellEpilog:>Get["QuantumWorkbook`Custom`"], CellChangeTimes->{{3.818165076257283*^9, 3.818165080552762*^9}, { 3.822802583890935*^9, 3.822802584757082*^9}, {3.824002707274425*^9, 3.824002712932271*^9}, {3.827028613839836*^9, 3.827028614188929*^9}}, CellLabel->"In[8]:=",ExpressionUUID->"875643b4-870d-4502-896e-a47600e22746"], Cell[BoxData[ RowBox[{"Let", "[", RowBox[{"Qubit", ",", "S"}], "]"}]], "Input", CellChangeTimes->{{3.8197868634276257`*^9, 3.8197868653280478`*^9}}, CellLabel->"In[9]:=",ExpressionUUID->"6e72e915-ad89-4c3d-8c60-3b443d0b8d6f"], Cell[BoxData[ FormBox[GridBox[{ { ButtonBox[ PaneSelectorBox[{False->"\<\"Vector Space\"\>", True-> StyleBox["\<\"Vector Space\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section24"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"\\tBasis\"\>", True-> StyleBox["\<\"\\tBasis\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section25"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"\\tHermitian products\"\>", True-> StyleBox["\<\"\\tHermitian products\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section26"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"\\tRepresentations\"\>", True-> StyleBox["\<\"\\tRepresentations\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section27"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"Linear Operators\"\>", True-> StyleBox["\<\"Linear Operators\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section28"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"\\tRepresentations\"\>", True-> StyleBox["\<\"\\tRepresentations\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section29"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"\\tHermitian conjugates\"\>", True-> StyleBox["\<\"\\tHermitian conjugates\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section30"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"\\tHermitian operators\"\>", True-> StyleBox["\<\"\\tHermitian operators\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section31"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"\\tUnitary operators\"\>", True-> StyleBox["\<\"\\tUnitary operators\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section32"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"Dirac's Bra-Ket Notation\"\>", True-> StyleBox["\<\"Dirac's Bra-Ket Notation\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section33"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"Spectrum Theorems\"\>", True-> StyleBox["\<\"Spectrum Theorems\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section34"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"\\tSpectral Decomposition\"\>", True-> StyleBox["\<\"\\tSpectral Decomposition\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section35"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"\\tFunctions of Operators\"\>", True-> StyleBox["\<\"\\tFunctions of Operators\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section36"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"Factorization of Operators\"\>", True-> StyleBox["\<\"Factorization of Operators\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section11"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"Tensor-Product Spaces\"\>", True-> StyleBox["\<\"Tensor-Product Spaces\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section37"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{False->"\<\"\\tVectors in a Tensor-Product Space\"\>", True-> StyleBox["\<\"\\tVectors in a Tensor-Product Space\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section38"], Evaluator->Automatic, Method->"Preemptive"]}, { ButtonBox[ PaneSelectorBox[{ False->"\<\"\\tOperators on a Tensor-Product Space\"\>", True-> StyleBox["\<\"\\tOperators on a Tensor-Product Space\"\>", "HyperlinkActive", StripOnInput->False]}, Dynamic[ CurrentValue["MouseOver"]], FrameMargins->0, ImageSize->Automatic], Alignment->Left, Appearance->None, BaseStyle->"Hyperlink", ButtonFunction:>NotebookLocate["Section39"], Evaluator->Automatic, Method->"Preemptive"]} }, DefaultBaseStyle->"Column", GridBoxAlignment->{"Columns" -> {{Left}}}, GridBoxItemSize->{"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], Column]], "Text", CellFrame->{{0, 0}, {0, 0.5}}, GeneratedCell->False, CellAutoOverwrite->False, CellFrameColor->GrayLevel[0.7], CellTags->"TableOfContents", CellID->753168464,ExpressionUUID->"e11c50e5-7dd3-4f3f-9eaf-97bf37279781"], Cell[CellGroupData[{ Cell["Vector Space", "Section", CellChangeTimes->{{3.8181645757173147`*^9, 3.818164578827939*^9}}, CellTags->"Section24", CellID->1076017913,ExpressionUUID->"7cd378f8-a574-4e2a-a990-565a356cc7cb"], Cell[CellGroupData[{ Cell["\<\ The set of complex numbers is the field used in quantum mechanics .\ \>", "MathCaption", CellChangeTimes->{{3.81816850311131*^9, 3.81816854086073*^9}, { 3.8240025180169563`*^9, 3.824002527520152*^9}}, CellID->1659370350,ExpressionUUID->"efb6b525-64f3-47ee-ba73-c547ac5f43f1"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{"ComplexQ", "[", RowBox[{"3", "-", RowBox[{"2", "I"}]}], "]"}]], "Input", CellChangeTimes->{{3.818168979961972*^9, 3.81816898225753*^9}, { 3.8181690515600653`*^9, 3.818169054360649*^9}}, CellLabel-> "In[214]:=",ExpressionUUID->"eb790a8f-b390-41f1-9dfe-f653509e1470"], Cell[BoxData["True"], "Output", CellChangeTimes->{{3.818169054768984*^9, 3.8181690563615017`*^9}, 3.8228061740013943`*^9, 3.826432836125099*^9, 3.830144350143784*^9}, CellLabel->"Out[214]=", CellID->1729441635,ExpressionUUID->"f28b6140-3c26-4041-b81d-34303092f4da"] }, Open ]], Cell["Q3 allows to define symbols to be complex numbers.", "Text", CellChangeTimes->{{3.818169079999506*^9, 3.818169111406399*^9}},ExpressionUUID->"e99d6ba4-b067-4989-a087-\ f77d91facd3a"], Cell[BoxData[ RowBox[{"Let", "[", RowBox[{"Complex", ",", "z"}], "]"}]], "Input", CellChangeTimes->{{3.818168543772944*^9, 3.8181685475163603`*^9}}, CellLabel->"In[215]:=", CellID->1814832508,ExpressionUUID->"94320fee-06df-4eb8-89d5-8dfa0f960f2b"], Cell[CellGroupData[{ Cell[BoxData[{ RowBox[{"w", "=", RowBox[{ RowBox[{"z", "[", "1", "]"}], RowBox[{"z", "[", "2", "]"}]}]}], "\[IndentingNewLine]", RowBox[{"ComplexQ", "[", "w", "]"}]}], "Input", CellChangeTimes->{{3.818168557124353*^9, 3.8181685608756933`*^9}, { 3.81816891970303*^9, 3.8181689363701267`*^9}}, CellLabel-> "In[216]:=",ExpressionUUID->"ef9a9121-f362-41d4-85aa-eb12c0cf8311"], Cell[BoxData[ RowBox[{ SubscriptBox[ TemplateBox[{"z"}, "RowDefault"], TemplateBox[{"1"}, "RowDefault"]], " ", SubscriptBox[ TemplateBox[{"z"}, "RowDefault"], TemplateBox[{"2"}, "RowDefault"]]}]], "Output", CellChangeTimes->{ 3.818168561207777*^9, {3.818168922669766*^9, 3.818168936672235*^9}, 3.8228061758030453`*^9, 3.826432838527116*^9, 3.8301443524054623`*^9}, CellLabel->"Out[216]=", CellID->1737121718,ExpressionUUID->"42802dd7-7288-409a-8909-b0aabfea28d6"], Cell[BoxData["True"], "Output", CellChangeTimes->{ 3.818168561207777*^9, {3.818168922669766*^9, 3.818168936672235*^9}, 3.8228061758030453`*^9, 3.826432838527116*^9, 3.830144352406869*^9}, CellLabel->"Out[217]=", CellID->764533461,ExpressionUUID->"3379ceee-3154-4ab8-896b-dbd0abc5d764"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[{ RowBox[{"w", "=", RowBox[{ RowBox[{"z", "[", "1", "]"}], "+", RowBox[{"z", "[", "2", "]"}]}]}], "\[IndentingNewLine]", RowBox[{"ComplexQ", "[", "w", "]"}]}], "Input", CellChangeTimes->{{3.818168562580627*^9, 3.8181685644913282`*^9}, { 3.818168939355155*^9, 3.8181689472980757`*^9}}, CellLabel-> "In[218]:=",ExpressionUUID->"9c2364a4-d3b2-43c3-880b-e67a7d3dc674"], Cell[BoxData[ RowBox[{ SubscriptBox[ TemplateBox[{"z"}, "RowDefault"], TemplateBox[{"1"}, "RowDefault"]], "+", SubscriptBox[ TemplateBox[{"z"}, "RowDefault"], TemplateBox[{"2"}, "RowDefault"]]}]], "Output", CellChangeTimes->{ 3.8181685648121147`*^9, {3.818168940714281*^9, 3.8181689475899963`*^9}, 3.8228061765912533`*^9, 3.826432839604075*^9, 3.83014435330518*^9}, CellLabel->"Out[218]=", CellID->1988858517,ExpressionUUID->"0df359a9-b4e4-4900-abb0-48e7cfee6401"], Cell[BoxData["True"], "Output", CellChangeTimes->{ 3.8181685648121147`*^9, {3.818168940714281*^9, 3.8181689475899963`*^9}, 3.8228061765912533`*^9, 3.826432839604075*^9, 3.830144353306588*^9}, CellLabel->"Out[219]=", CellID->1162129664,ExpressionUUID->"4dcf87bd-3451-4a4f-961f-a4686b4838e3"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{ RowBox[{"z", "[", "1", "]"}], "+", "0"}]], "Input", CellChangeTimes->{{3.818168577896655*^9, 3.818168579443205*^9}}, CellLabel-> "In[220]:=",ExpressionUUID->"87a78293-1e4b-4147-b438-f9851f2cab0f"], Cell[BoxData[ SubscriptBox[ TemplateBox[{"z"}, "RowDefault"], TemplateBox[{"1"}, "RowDefault"]]], "Output", CellChangeTimes->{3.818168579916005*^9, 3.818168950182309*^9, 3.822806177378922*^9, 3.826432840503005*^9, 3.830144354047793*^9}, CellLabel->"Out[220]=", CellID->1297106850,ExpressionUUID->"566d2774-faa5-49ed-99c3-f832a9f71606"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{ RowBox[{"z", "[", "1", "]"}], " ", "1"}]], "Input", CellChangeTimes->{{3.818168581155282*^9, 3.818168582634472*^9}}, CellLabel-> "In[221]:=",ExpressionUUID->"47d7d2c2-1409-4e79-a2d8-6a34b9f27b6b"], Cell[BoxData[ SubscriptBox[ TemplateBox[{"z"}, "RowDefault"], TemplateBox[{"1"}, "RowDefault"]]], "Output", CellChangeTimes->{3.818168583060268*^9, 3.818168950864294*^9, 3.822806177985009*^9, 3.826432841201108*^9, 3.830144354699676*^9}, CellLabel->"Out[221]=", CellID->220978149,ExpressionUUID->"245abf46-ef03-4491-a2d5-d707c1a24c60"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{"ComplexQ", "[", RowBox[{"1", "/", RowBox[{"z", "[", "1", "]"}]}], "]"}]], "Input", CellChangeTimes->{{3.8181688709962606`*^9, 3.818168874972107*^9}}, CellLabel-> "In[222]:=",ExpressionUUID->"71e660ab-f5a8-4014-83ca-cdd3a70223bb"], Cell[BoxData["True"], "Output", CellChangeTimes->{3.818168875297091*^9, 3.8228061785929813`*^9, 3.826432841853265*^9, 3.8301443553548*^9}, CellLabel->"Out[222]=", CellID->2085603271,ExpressionUUID->"7b7a5be8-8f8e-434c-918a-f981fa1c66cd"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{"ComplexQ", "[", RowBox[{"-", RowBox[{"z", "[", "1", "]"}]}], "]"}]], "Input", CellChangeTimes->{{3.81816863531208*^9, 3.81816865774975*^9}, { 3.818168691564884*^9, 3.818168692563982*^9}, {3.818168882084366*^9, 3.818168888867509*^9}}, CellLabel-> "In[223]:=",ExpressionUUID->"bb931cff-4575-4c26-87a7-5322eca9f443"], Cell[BoxData["True"], "Output", CellChangeTimes->{{3.818168692914831*^9, 3.818168695038971*^9}, 3.818168889256708*^9, 3.822806179335456*^9, 3.826432842572871*^9, 3.8301443560558357`*^9}, CellLabel->"Out[223]=", CellID->61103859,ExpressionUUID->"6e5036da-2de5-43b9-8ce4-c15b074590ba"] }, Open ]] }, Open ]], Cell["Basis", "Subsection", CellChangeTimes->{{3.818123262860198*^9, 3.818123263445006*^9}}, CellTags->"Section25", CellID->396524943,ExpressionUUID->"b95a62c0-6e7e-41d6-adc2-06fb62877d48"], Cell["Hermitian products", "Subsection", CellChangeTimes->{{3.818123239293128*^9, 3.8181232481907043`*^9}}, CellTags->"Section26", CellID->2138420,ExpressionUUID->"5fcda9e2-1981-4eb1-a857-16510ebc9b5d"], Cell["Representations", "Subsection", CellChangeTimes->{{3.8181233406707373`*^9, 3.8181233443604*^9}, 3.8181274621275673`*^9}, CellTags->"Section27", CellID->2005224525,ExpressionUUID->"6588a308-6819-47d2-8c0f-bfa7b60e8524"] }, Open ]], Cell[CellGroupData[{ Cell["Linear Operators", "Section", CellChangeTimes->{{3.8180133523857183`*^9, 3.8180133549511127`*^9}, { 3.818013404441695*^9, 3.818013411461646*^9}}, CellTags->"Section28", CellID->1670847277,ExpressionUUID->"181e5277-f4c1-453d-80dc-5bf3c674a61f"], Cell["Representations", "Subsection", CellChangeTimes->{{3.818127450428323*^9, 3.818127459090419*^9}}, CellTags->"Section29", CellID->819839510,ExpressionUUID->"f161d18e-4d29-43e5-bfb7-508ff3c3c992"], Cell["Hermitian conjugates", "Subsection", CellChangeTimes->{{3.818127477269389*^9, 3.818127487698201*^9}, { 3.818127544397162*^9, 3.8181275473100023`*^9}}, CellTags->"Section30", CellID->536851057,ExpressionUUID->"c118c36e-6680-4f57-846a-85821539fb21"], Cell["Hermitian operators", "Subsection", CellChangeTimes->{{3.818127552282468*^9, 3.8181275581879673`*^9}}, CellTags->"Section31", CellID->1124277901,ExpressionUUID->"0963cef8-5f2b-4937-a43d-d361226b5cc3"], Cell["Unitary operators", "Subsection", CellChangeTimes->{{3.818127537061872*^9, 3.818127562518676*^9}}, CellTags->"Section32", CellID->863578051,ExpressionUUID->"173df1a4-bf88-46f4-8493-e078cece3f89"] }, Open ]], Cell[CellGroupData[{ Cell["Dirac's Bra-Ket Notation", "Section", CellChangeTimes->{{3.818123318103456*^9, 3.818123329646008*^9}, { 3.818127416905196*^9, 3.8181274201901417`*^9}, 3.824604663582032*^9}, CellTags->"Section33", CellID->1906472959,ExpressionUUID->"17310dae-9330-4952-af85-3130ac53914e"], Cell[CellGroupData[{ Cell["\<\ Consider a system of two qubits. The associated Hilbert space is spanned by \ the standard basis.\ \>", "MathCaption", CellChangeTimes->{{3.8246110017969027`*^9, 3.8246110403554773`*^9}},ExpressionUUID->"eba87faa-fb5b-44e8-a990-\ cf62d2cae0b5"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{"bs", "=", RowBox[{"Basis", "[", "2", "]"}]}]], "Input", CellChangeTimes->{{3.824611041331523*^9, 3.824611044699992*^9}}, CellLabel-> "In[224]:=",ExpressionUUID->"a84f0b0b-3eae-4712-8803-cf630046d0ed"], Cell[BoxData[ RowBox[{"{", RowBox[{ TemplateBox[{ RowBox[{"0", ",", "0"}]}, "Ket"], ",", TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"], ",", TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"], ",", TemplateBox[{ RowBox[{"1", ",", "1"}]}, "Ket"]}], "}"}]], "Output", CellChangeTimes->{ 3.824611045404119*^9, {3.82461107571659*^9, 3.824611080976431*^9}, 3.826432861945986*^9, 3.830144361075305*^9}, CellLabel->"Out[224]=", CellID->332114172,ExpressionUUID->"b1d8fc22-6004-442c-a166-adcb590b369f"] }, Open ]], Cell["\<\ Consider a Hermitian operator, physically, corresponding to the Heisenberg \ exchange interaction between two S=1/2 spins.\ \>", "Text", CellChangeTimes->{{3.8236360119139643`*^9, 3.823636037886067*^9}, { 3.8246109462490664`*^9, 3.824610947346053*^9}, {3.8246111196952677`*^9, 3.824611129589499*^9}},ExpressionUUID->"7657276b-9d34-4763-a325-\ 98ac31d2fa61"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{"op", "=", RowBox[{ RowBox[{"Pauli", "[", RowBox[{"1", ",", "1"}], "]"}], "+", RowBox[{"Pauli", "[", RowBox[{"2", ",", "2"}], "]"}], "+", RowBox[{"Pauli", "[", RowBox[{"3", ",", "3"}], "]"}]}]}]], "Input", CellChangeTimes->{{3.8236360419835453`*^9, 3.8236360558517103`*^9}, { 3.823636371760548*^9, 3.8236363836847*^9}, {3.824611107281733*^9, 3.824611108401882*^9}, 3.824611165228441*^9}, CellLabel-> "In[225]:=",ExpressionUUID->"dfb2f6f4-75d5-4883-b309-cf290082cba3"], Cell[BoxData[ RowBox[{ TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "x"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "x"]}], DisplayForm], "+", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "y"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "y"]}], DisplayForm], "+", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "z"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "z"]}], DisplayForm]}]], "Output", CellChangeTimes->{3.824610966613297*^9, 3.824611138316497*^9, 3.82461118140596*^9, 3.826432863758957*^9, 3.83014436234487*^9}, CellLabel->"Out[225]=", CellID->1988193002,ExpressionUUID->"5a862c05-835e-4d7f-8e0b-1b306fe10410"] }, Open ]], Cell["This shows the matrix representation of the operator.", "Text", CellChangeTimes->{{3.824611142431719*^9, 3.82461115713415*^9}},ExpressionUUID->"93c25dd0-b403-49dd-8888-\ 53df1311ffc5"], Cell[CellGroupData[{ Cell[BoxData[{ RowBox[{ RowBox[{"mat", "=", RowBox[{"Matrix", "[", "op", "]"}]}], ";"}], "\[IndentingNewLine]", RowBox[{"mat", "//", "MatrixForm"}]}], "Input", CellChangeTimes->{{3.824611160115748*^9, 3.8246111783130198`*^9}}, CellLabel-> "In[226]:=",ExpressionUUID->"cafb1496-c184-4fa0-94b4-95422e5000c6"], Cell[BoxData[ TagBox[ RowBox[{"(", "\[NoBreak]", GridBox[{ {"1", "0", "0", "0"}, {"0", RowBox[{"-", "1"}], "2", "0"}, {"0", "2", RowBox[{"-", "1"}], "0"}, {"0", "0", "0", "1"} }, GridBoxAlignment->{"Columns" -> {{Center}}, "Rows" -> {{Baseline}}}, GridBoxSpacings->{"Columns" -> { Offset[0.27999999999999997`], { Offset[0.7]}, Offset[0.27999999999999997`]}, "Rows" -> { Offset[0.2], { Offset[0.4]}, Offset[0.2]}}], "\[NoBreak]", ")"}], Function[BoxForm`e$, MatrixForm[ SparseArray[ Automatic, {4, 4}, 0, { 1, {{0, 2, 4, 6, 8}, {{1}, {4}, {2}, {3}, {3}, {2}, {4}, {1}}}, {1, 0, -1, 2, -1, 2, 1, 0}}]]]]], "Output", CellChangeTimes->{{3.824611178666265*^9, 3.824611182464911*^9}, 3.826432865109692*^9, 3.830144363358378*^9}, CellLabel->"Out[227]//MatrixForm=", CellID->790497926,ExpressionUUID->"76bdcd1d-4237-434d-8383-f444dd5ad1a9"] }, Open ]], Cell["\<\ This is an expansion of the operator in the bra-ket notation.\ \>", "Text", CellChangeTimes->{{3.824611194612302*^9, 3.824611229809351*^9}},ExpressionUUID->"219f0fed-f32d-4269-977c-\ 7172ddfe3e46"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{"op2", "=", RowBox[{"MultiplyDot", "[", RowBox[{"bs", ",", "mat", ",", RowBox[{"Dagger", "[", "bs", "]"}]}], "]"}]}]], "Input", CellChangeTimes->{{3.8246111914861193`*^9, 3.8246111918424187`*^9}, { 3.824611242418635*^9, 3.8246112900528812`*^9}}, CellLabel-> "In[228]:=",ExpressionUUID->"c33e1326-f187-4976-9f64-afa7238d774e"], Cell[BoxData[ RowBox[{ TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"0", ",", "0"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"0", ",", "0"}]}, "Bra"], DisplayForm]}], DisplayForm], "-", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Bra"], DisplayForm]}], DisplayForm], "+", RowBox[{"2", " ", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Bra"], DisplayForm]}], DisplayForm]}], "+", RowBox[{"2", " ", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Bra"], DisplayForm]}], DisplayForm]}], "-", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Bra"], DisplayForm]}], DisplayForm], "+", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"1", ",", "1"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"1", ",", "1"}]}, "Bra"], DisplayForm]}], DisplayForm]}]], "Output", CellChangeTimes->{{3.8246112604804173`*^9, 3.824611293263564*^9}, 3.8264328681208897`*^9, 3.8301443643817*^9}, CellLabel->"Out[228]=", CellID->2046758545,ExpressionUUID->"86c3830b-e946-433d-aef3-8f7a3351d376"] }, Open ]], Cell["\<\ Verify the above expansion by evaluating the matrix representation.\ \>", "Text", CellChangeTimes->{{3.8246113038830853`*^9, 3.824611335162359*^9}},ExpressionUUID->"3ed235b1-e2f7-47a5-8892-\ 86e308b04c8a"], Cell[CellGroupData[{ Cell[BoxData[{ RowBox[{ RowBox[{"mat2", "=", RowBox[{"Outer", "[", RowBox[{"Multiply", ",", RowBox[{"Dagger", "[", "bs", "]"}], ",", RowBox[{"op2", "**", "bs"}]}], "]"}]}], ";"}], "\[IndentingNewLine]", RowBox[{"mat2", "//", "MatrixForm"}]}], "Input", CellChangeTimes->{{3.824611339687455*^9, 3.824611373014391*^9}}, CellLabel-> "In[229]:=",ExpressionUUID->"8e6e7a27-31d9-4337-bde7-7d1130e26bca"], Cell[BoxData[ TagBox[ RowBox[{"(", "\[NoBreak]", GridBox[{ {"1", "0", "0", "0"}, {"0", RowBox[{"-", "1"}], "2", "0"}, {"0", "2", RowBox[{"-", "1"}], "0"}, {"0", "0", "0", "1"} }, GridBoxAlignment->{"Columns" -> {{Center}}, "Rows" -> {{Baseline}}}, GridBoxSpacings->{"Columns" -> { Offset[0.27999999999999997`], { Offset[0.7]}, Offset[0.27999999999999997`]}, "Rows" -> { Offset[0.2], { Offset[0.4]}, Offset[0.2]}}], "\[NoBreak]", ")"}], Function[BoxForm`e$, MatrixForm[BoxForm`e$]]]], "Output", CellChangeTimes->{{3.824611360977315*^9, 3.824611373319414*^9}, 3.826432872016749*^9, 3.830144365872016*^9}, CellLabel->"Out[230]//MatrixForm=", CellID->274066162,ExpressionUUID->"f1b50e46-7d4c-4cbe-a361-5edf7f34774b"] }, Open ]] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell["Spectrum Theorems", "Section", CellChangeTimes->{{3.824619181659384*^9, 3.824619184714678*^9}}, CellTags->"Section34", CellID->482407734,ExpressionUUID->"51c62d6b-32f1-4252-b207-1d5283366bfa"], Cell["Spectral Decomposition", "Subsection", CellChangeTimes->{{3.8246194675887213`*^9, 3.824619472014648*^9}}, CellTags->"Section35", CellID->1544167447,ExpressionUUID->"abbeeeef-55f9-4e35-8c6c-008c9f1328f6"], Cell[CellGroupData[{ Cell["Functions of Operators", "Subsection", CellChangeTimes->{{3.82460467411735*^9, 3.8246046841233873`*^9}}, CellTags->"Section36", CellID->188301754,ExpressionUUID->"8da0546d-9f52-42cd-82c8-fb0897534130"], Cell[CellGroupData[{ Cell["\<\ Consider again a Hermitian operator describing the Heisenberg exchange \ interaction between two S=1/2 spins.\ \>", "MathCaption", CellChangeTimes->{{3.8236360119139643`*^9, 3.823636037886067*^9}, { 3.8246109462490664`*^9, 3.824610954607029*^9}, {3.824611091613119*^9, 3.824611114336728*^9}},ExpressionUUID->"cae9d88e-2cb5-4cca-a5e3-\ 6f76fa881418"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{"opH", "=", RowBox[{ RowBox[{"-", "J"}], "*", RowBox[{"(", RowBox[{ RowBox[{"Pauli", "[", RowBox[{"1", ",", "1"}], "]"}], "+", RowBox[{"Pauli", "[", RowBox[{"2", ",", "2"}], "]"}], "+", RowBox[{"Pauli", "[", RowBox[{"3", ",", "3"}], "]"}]}], ")"}]}]}]], "Input", CellChangeTimes->{{3.8236360419835453`*^9, 3.8236360558517103`*^9}, { 3.823636371760548*^9, 3.8236363836847*^9}}, CellLabel-> "In[231]:=",ExpressionUUID->"5cb8a05e-7974-4676-bf1a-e34caa22700b"], Cell[BoxData[ RowBox[{ RowBox[{"-", "J"}], " ", RowBox[{"(", RowBox[{ TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "x"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "x"]}], DisplayForm], "+", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "y"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "y"]}], DisplayForm], "+", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "z"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "z"]}], DisplayForm]}], ")"}]}]], "Output", CellChangeTimes->{{3.823636057133501*^9, 3.823636058783639*^9}, { 3.823636374305457*^9, 3.8236363859236403`*^9}, 3.823636564746832*^9, 3.8236884108619423`*^9, {3.82374306419123*^9, 3.823743072655448*^9}, 3.826432879277804*^9, 3.830144370372715*^9}, CellLabel->"Out[231]=", CellID->352225203,ExpressionUUID->"75b595aa-6df5-449a-9c7b-b9aaac955f01"] }, Open ]], Cell[TextData[{ "We want to consider functions of operators, for example, ", StyleBox["opH", "Input"], " in particular. To do it, it is most efficient to proceed with the spectral \ decomposition of the operator." }], "Text", CellChangeTimes->{{3.823636079250554*^9, 3.8236361641051817`*^9}},ExpressionUUID->"8efaab1a-482a-41c0-9e35-\ 9ad7ec5c77d7"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{ RowBox[{"{", RowBox[{"val", ",", "vec"}], "}"}], "=", RowBox[{"ProperSystem", "[", "opH", "]"}]}]], "Input", CellChangeTimes->{{3.823636064280373*^9, 3.823636076506028*^9}}, CellLabel-> "In[232]:=",ExpressionUUID->"6fa0e8cd-1008-4247-82a0-cd0aaf12561e"], Cell[BoxData[ RowBox[{"{", RowBox[{ RowBox[{"{", RowBox[{ RowBox[{"3", " ", "J"}], ",", RowBox[{"-", "J"}], ",", RowBox[{"-", "J"}], ",", RowBox[{"-", "J"}]}], "}"}], ",", RowBox[{"{", RowBox[{ RowBox[{ RowBox[{"-", TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"]}], "+", TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"]}], ",", TemplateBox[{ RowBox[{"1", ",", "1"}]}, "Ket"], ",", RowBox[{ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"], "+", TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"]}], ",", TemplateBox[{ RowBox[{"0", ",", "0"}]}, "Ket"]}], "}"}]}], "}"}]], "Output", CellChangeTimes->{3.8236361219292192`*^9, 3.823636165318202*^9, 3.823636566007235*^9, 3.823688412723423*^9, 3.8237430739960747`*^9, 3.82643288078369*^9, 3.830144371664508*^9}, CellLabel->"Out[232]=", CellID->203554561,ExpressionUUID->"02003c0c-35a5-4a0e-a425-95af312e5db3"] }, Open ]], Cell["\<\ The eigenvectors are orthogonal, but not properly normalized.\ \>", "Text", CellChangeTimes->{{3.8236361977415123`*^9, 3.823636213434634*^9}},ExpressionUUID->"f3b72c6a-95de-4c8a-8bfe-\ 054651a796d8"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{ RowBox[{"Outer", "[", RowBox[{"Multiply", ",", RowBox[{"Dagger", "[", "vec", "]"}], ",", "vec"}], "]"}], "//", "MatrixForm"}]], "Input", CellChangeTimes->{{3.823636173930171*^9, 3.823636187718554*^9}}, CellLabel-> "In[233]:=",ExpressionUUID->"e0d5bd2b-63d3-422b-8844-5c4035169192"], Cell[BoxData[ TagBox[ RowBox[{"(", "\[NoBreak]", GridBox[{ {"2", "0", "0", "0"}, {"0", "1", "0", "0"}, {"0", "0", "2", "0"}, {"0", "0", "0", "1"} }, GridBoxAlignment->{"Columns" -> {{Center}}, "Rows" -> {{Baseline}}}, GridBoxSpacings->{"Columns" -> { Offset[0.27999999999999997`], { Offset[0.7]}, Offset[0.27999999999999997`]}, "Rows" -> { Offset[0.2], { Offset[0.4]}, Offset[0.2]}}], "\[NoBreak]", ")"}], Function[BoxForm`e$, MatrixForm[BoxForm`e$]]]], "Output", CellChangeTimes->{{3.823636184421036*^9, 3.8236362147262783`*^9}, 3.823636567425241*^9, 3.823688413982448*^9, 3.823743074995429*^9, 3.826432882139729*^9, 3.830144372779334*^9}, CellLabel->"Out[233]//MatrixForm=", CellID->1458032796,ExpressionUUID->"6b764a43-675a-44f6-9fe2-6a751fa3c3be"] }, Open ]], Cell["Normalize them, and check again.", "Text", CellChangeTimes->{{3.82363626594685*^9, 3.823636274632023*^9}},ExpressionUUID->"791b6e11-97a3-4071-94fb-\ b9167cfd35c9"], Cell[CellGroupData[{ Cell[BoxData[{ RowBox[{"nvec", "=", RowBox[{"vec", "/", RowBox[{"Sqrt", "[", RowBox[{"{", RowBox[{"2", ",", "1", ",", "2", ",", "1"}], "}"}], "]"}]}]}], "\[IndentingNewLine]", RowBox[{ RowBox[{"Outer", "[", RowBox[{"Multiply", ",", RowBox[{"Dagger", "[", "nvec", "]"}], ",", "nvec"}], "]"}], "//", "MatrixForm"}]}], "Input", CellChangeTimes->{{3.823636220333197*^9, 3.8236362862298813`*^9}}, CellLabel-> "In[234]:=",ExpressionUUID->"06a1ce55-8301-48d0-9aa0-3fe42e6f52cd"], Cell[BoxData[ RowBox[{"{", RowBox[{ FractionBox[ RowBox[{ RowBox[{"-", TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"]}], "+", TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"]}], SqrtBox["2"]], ",", TemplateBox[{ RowBox[{"1", ",", "1"}]}, "Ket"], ",", FractionBox[ RowBox[{ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"], "+", TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"]}], SqrtBox["2"]], ",", TemplateBox[{ RowBox[{"0", ",", "0"}]}, "Ket"]}], "}"}]], "Output", CellChangeTimes->{{3.823636254534655*^9, 3.823636256542564*^9}, 3.823636286547858*^9, 3.823636568753804*^9, 3.8236884155108356`*^9, 3.823743076368153*^9, 3.826432883804378*^9, 3.8301443738491783`*^9}, CellLabel->"Out[234]=", CellID->1964316969,ExpressionUUID->"e1187180-cbef-4938-a0be-738dd62d1385"], Cell[BoxData[ TagBox[ RowBox[{"(", "\[NoBreak]", GridBox[{ {"1", "0", "0", "0"}, {"0", "1", "0", "0"}, {"0", "0", "1", "0"}, {"0", "0", "0", "1"} }, GridBoxAlignment->{"Columns" -> {{Center}}, "Rows" -> {{Baseline}}}, GridBoxSpacings->{"Columns" -> { Offset[0.27999999999999997`], { Offset[0.7]}, Offset[0.27999999999999997`]}, "Rows" -> { Offset[0.2], { Offset[0.4]}, Offset[0.2]}}], "\[NoBreak]", ")"}], Function[BoxForm`e$, MatrixForm[BoxForm`e$]]]], "Output", CellChangeTimes->{{3.823636254534655*^9, 3.823636256542564*^9}, 3.823636286547858*^9, 3.823636568753804*^9, 3.8236884155108356`*^9, 3.823743076368153*^9, 3.826432883804378*^9, 3.830144373851454*^9}, CellLabel->"Out[235]//MatrixForm=", CellID->1009192652,ExpressionUUID->"d1051cec-223e-451a-93e5-8c0e724e5639"] }, Open ]], Cell[TextData[{ "Suppose we want to get the exponential function of ", StyleBox["opH", "Input"], ". For example, the time-evolution operator is given by" }], "Text", CellChangeTimes->{{3.823636300517212*^9, 3.823636333409871*^9}},ExpressionUUID->"7f3530d3-e332-4118-a565-\ 2916da2d9a22"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{"opU", "=", RowBox[{"MultiplyExp", "[", RowBox[{ RowBox[{"-", "I"}], " ", "t", " ", "opH"}], "]"}]}]], "Input", CellChangeTimes->{{3.823636344707851*^9, 3.823636356201253*^9}}, CellLabel-> "In[240]:=",ExpressionUUID->"e96f13d7-c1ec-41f9-9fc0-e408ffa8e90d"], Cell[BoxData[ SuperscriptBox["\[ExponentialE]", RowBox[{"\[ImaginaryI]", " ", "J", " ", "t", " ", RowBox[{"(", RowBox[{ TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "x"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "x"]}], DisplayForm], "+", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "y"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "y"]}], DisplayForm], "+", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "z"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "z"]}], DisplayForm]}], ")"}]}]]], "Output", CellChangeTimes->{{3.823636356651763*^9, 3.82363636332227*^9}, 3.823636570778496*^9, 3.823688416882614*^9, 3.823743078377882*^9, 3.82643288580844*^9, {3.830144375287259*^9, 3.830144390085547*^9}}, CellLabel->"Out[240]=", CellID->2136235363,ExpressionUUID->"e96763cd-7c15-4756-9851-9d13294c364a"] }, Open ]], Cell["This uses the spectral decomposition.", "Text", CellChangeTimes->{{3.8236886425647087`*^9, 3.823688660867455*^9}},ExpressionUUID->"ac6df768-8ca3-4fcb-ac6b-\ 90a0d96eca3b"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{"newU", "=", RowBox[{"Total", "@", RowBox[{"Multiply", "[", RowBox[{"nvec", ",", RowBox[{"Exp", "[", RowBox[{ RowBox[{"-", "I"}], " ", "t", " ", "val"}], "]"}], ",", RowBox[{"Dagger", "[", "nvec", "]"}]}], "]"}]}]}]], "Input", CellChangeTimes->{{3.823636549190771*^9, 3.8236365812158747`*^9}, { 3.823636634747038*^9, 3.8236366493638983`*^9}, {3.8236885685882053`*^9, 3.823688571085663*^9}}, CellLabel-> "In[241]:=",ExpressionUUID->"51f2df26-0b4b-449c-a577-2ec59cbc4f7c"], Cell[BoxData[ RowBox[{ RowBox[{ SuperscriptBox["\[ExponentialE]", RowBox[{"\[ImaginaryI]", " ", "J", " ", "t"}]], " ", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"0", ",", "0"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"0", ",", "0"}]}, "Bra"], DisplayForm]}], DisplayForm]}], "+", RowBox[{ FractionBox["1", "2"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{"\[ImaginaryI]", " ", "J", " ", "t"}]], " ", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Bra"], DisplayForm]}], DisplayForm]}], "+", RowBox[{ FractionBox["1", "2"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{ RowBox[{"-", "3"}], " ", "\[ImaginaryI]", " ", "J", " ", "t"}]], " ", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Bra"], DisplayForm]}], DisplayForm]}], "+", RowBox[{ FractionBox["1", "2"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{"\[ImaginaryI]", " ", "J", " ", "t"}]], " ", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Bra"], DisplayForm]}], DisplayForm]}], "-", RowBox[{ FractionBox["1", "2"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{ RowBox[{"-", "3"}], " ", "\[ImaginaryI]", " ", "J", " ", "t"}]], " ", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Bra"], DisplayForm]}], DisplayForm]}], "+", RowBox[{ FractionBox["1", "2"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{"\[ImaginaryI]", " ", "J", " ", "t"}]], " ", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Bra"], DisplayForm]}], DisplayForm]}], "-", RowBox[{ FractionBox["1", "2"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{ RowBox[{"-", "3"}], " ", "\[ImaginaryI]", " ", "J", " ", "t"}]], " ", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Bra"], DisplayForm]}], DisplayForm]}], "+", RowBox[{ FractionBox["1", "2"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{"\[ImaginaryI]", " ", "J", " ", "t"}]], " ", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Bra"], DisplayForm]}], DisplayForm]}], "+", RowBox[{ FractionBox["1", "2"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{ RowBox[{"-", "3"}], " ", "\[ImaginaryI]", " ", "J", " ", "t"}]], " ", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Bra"], DisplayForm]}], DisplayForm]}], "+", RowBox[{ SuperscriptBox["\[ExponentialE]", RowBox[{"\[ImaginaryI]", " ", "J", " ", "t"}]], " ", TagBox[ RowBox[{ TagBox[ TemplateBox[{ RowBox[{"1", ",", "1"}]}, "Ket"], DisplayForm], TagBox[ TemplateBox[{ RowBox[{"1", ",", "1"}]}, "Bra"], DisplayForm]}], DisplayForm]}]}]], "Output", CellChangeTimes->{{3.82363658199044*^9, 3.8236366891225157`*^9}, 3.823636763980122*^9, 3.823636809834825*^9, 3.823688417734537*^9, 3.8236885718938837`*^9, 3.8236886624631643`*^9, 3.823743079955062*^9, 3.826432887386972*^9, {3.8301443784918823`*^9, 3.830144391913056*^9}}, CellLabel->"Out[241]=", CellID->229717461,ExpressionUUID->"fe741db6-c457-463b-b5d2-0d39768e33ea"] }, Open ]], Cell["\<\ This converts the bra-ket expression into a form in terms of the Pauli \ operators.\ \>", "Text", CellChangeTimes->{{3.8236886677523203`*^9, 3.823688698766693*^9}},ExpressionUUID->"db7757fe-36f7-4adb-a8d5-\ a8225d289e6c"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{"newU2", "=", RowBox[{"Elaborate", "@", RowBox[{"ExpressionFor", "@", RowBox[{"Matrix", "[", "newU", "]"}]}]}]}]], "Input", CellChangeTimes->{{3.8236884414944267`*^9, 3.823688457858611*^9}, { 3.823688561906188*^9, 3.823688580917638*^9}, 3.83014433738365*^9, { 3.830144416773491*^9, 3.830144417987494*^9}}, CellLabel-> "In[247]:=",ExpressionUUID->"d9e4bee8-d123-4fa8-a6f3-bb814375527f"], Cell[BoxData[ RowBox[{ RowBox[{ FractionBox["1", "4"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{ RowBox[{"-", "3"}], " ", "\[ImaginaryI]", " ", "J", " ", "t"}]], " ", RowBox[{"(", RowBox[{"1", "+", RowBox[{"3", " ", SuperscriptBox["\[ExponentialE]", RowBox[{"4", " ", "\[ImaginaryI]", " ", "J", " ", "t"}]]}]}], ")"}], " ", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "0"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "0"]}], DisplayForm]}], "+", RowBox[{ FractionBox["1", "4"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{ RowBox[{"-", "3"}], " ", "\[ImaginaryI]", " ", "J", " ", "t"}]], " ", RowBox[{"(", RowBox[{ RowBox[{"-", "1"}], "+", SuperscriptBox["\[ExponentialE]", RowBox[{"4", " ", "\[ImaginaryI]", " ", "J", " ", "t"}]]}], ")"}], " ", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "x"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "x"]}], DisplayForm]}], "+", RowBox[{ FractionBox["1", "4"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{ RowBox[{"-", "3"}], " ", "\[ImaginaryI]", " ", "J", " ", "t"}]], " ", RowBox[{"(", RowBox[{ RowBox[{"-", "1"}], "+", SuperscriptBox["\[ExponentialE]", RowBox[{"4", " ", "\[ImaginaryI]", " ", "J", " ", "t"}]]}], ")"}], " ", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "y"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "y"]}], DisplayForm]}], "+", RowBox[{ FractionBox["1", "4"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{ RowBox[{"-", "3"}], " ", "\[ImaginaryI]", " ", "J", " ", "t"}]], " ", RowBox[{"(", RowBox[{ RowBox[{"-", "1"}], "+", SuperscriptBox["\[ExponentialE]", RowBox[{"4", " ", "\[ImaginaryI]", " ", "J", " ", "t"}]]}], ")"}], " ", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "z"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "z"]}], DisplayForm]}]}]], "Output", CellChangeTimes->{{3.823688447779209*^9, 3.823688465850256*^9}, { 3.823688564961678*^9, 3.823688581326832*^9}, 3.823688701980379*^9, 3.823743081540958*^9, 3.826432889238167*^9, {3.830144380032558*^9, 3.830144418331593*^9}}, CellLabel->"Out[247]=", CellID->1829779602,ExpressionUUID->"1113ae53-85e8-4287-a0d4-1707e5ea7b9a"] }, Open ]], Cell["\<\ In many cases, MultiplyExp can be further evaluated by means of Elaborate.\ \>", "Text", CellChangeTimes->{{3.823688720244475*^9, 3.823688746543377*^9}},ExpressionUUID->"c8e62f8a-22c4-4ddb-93f6-\ b6d8a3894a2a"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{"opU2", "=", RowBox[{"Elaborate", "@", RowBox[{"Elaborate", "[", "opU", "]"}]}]}]], "Input", CellChangeTimes->{{3.823688583756675*^9, 3.8236886004684067`*^9}, { 3.830144406175963*^9, 3.8301444074803963`*^9}}, CellLabel-> "In[246]:=",ExpressionUUID->"e1a45fd3-2f4a-4c96-8dbb-9ef0f0b7c445"], Cell[BoxData[ RowBox[{ RowBox[{ FractionBox["1", "4"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{ RowBox[{"-", "3"}], " ", "\[ImaginaryI]", " ", "J", " ", "t"}]], " ", RowBox[{"(", RowBox[{"1", "+", RowBox[{"3", " ", SuperscriptBox["\[ExponentialE]", RowBox[{"4", " ", "\[ImaginaryI]", " ", "J", " ", "t"}]]}]}], ")"}], " ", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "0"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "0"]}], DisplayForm]}], "+", RowBox[{ FractionBox["1", "4"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{ RowBox[{"-", "3"}], " ", "\[ImaginaryI]", " ", "J", " ", "t"}]], " ", RowBox[{"(", RowBox[{ RowBox[{"-", "1"}], "+", SuperscriptBox["\[ExponentialE]", RowBox[{"4", " ", "\[ImaginaryI]", " ", "J", " ", "t"}]]}], ")"}], " ", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "x"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "x"]}], DisplayForm]}], "+", RowBox[{ FractionBox["1", "4"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{ RowBox[{"-", "3"}], " ", "\[ImaginaryI]", " ", "J", " ", "t"}]], " ", RowBox[{"(", RowBox[{ RowBox[{"-", "1"}], "+", SuperscriptBox["\[ExponentialE]", RowBox[{"4", " ", "\[ImaginaryI]", " ", "J", " ", "t"}]]}], ")"}], " ", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "y"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "y"]}], DisplayForm]}], "+", RowBox[{ FractionBox["1", "4"], " ", SuperscriptBox["\[ExponentialE]", RowBox[{ RowBox[{"-", "3"}], " ", "\[ImaginaryI]", " ", "J", " ", "t"}]], " ", RowBox[{"(", RowBox[{ RowBox[{"-", "1"}], "+", SuperscriptBox["\[ExponentialE]", RowBox[{"4", " ", "\[ImaginaryI]", " ", "J", " ", "t"}]]}], ")"}], " ", TagBox[ RowBox[{ SuperscriptBox["\[Sigma]", "z"], "\[CircleTimes]", SuperscriptBox["\[Sigma]", "z"]}], DisplayForm]}]}]], "Output", CellChangeTimes->{ 3.8236886012220707`*^9, 3.823688748047791*^9, 3.823743083155039*^9, 3.826432890857325*^9, {3.830144381549735*^9, 3.8301444107768784`*^9}}, CellLabel->"Out[246]=", CellID->619514672,ExpressionUUID->"0f82ba1e-3b58-465a-8cd7-1974c70daea7"] }, Open ]] }, Open ]] }, Open ]] }, Open ]], Cell["Factorization of Operators", "Section", CellChangeTimes->{{3.8384500693310547`*^9, 3.838450073321796*^9}}, CellTags->"Section11", CellID->2142634853,ExpressionUUID->"90841938-8d39-40ba-bac1-23e87a7c7a16"], Cell[CellGroupData[{ Cell["Tensor-Product Spaces", "Section", CellChangeTimes->{{3.8180133523857183`*^9, 3.8180133549511127`*^9}, { 3.818013494037428*^9, 3.818013498886034*^9}}, CellTags->"Section37", CellID->2071693926,ExpressionUUID->"7b4d57e9-d7ab-4b8b-adf3-e809e5e46894"], Cell[CellGroupData[{ Cell["Vectors in a Tensor-Product Space", "Subsection", CellChangeTimes->{{3.82400263985605*^9, 3.824002653196958*^9}}, CellTags->"Section38", CellID->1267776584,ExpressionUUID->"f4e2e25a-5d3f-494e-bd91-5f8a397ad527"], Cell[CellGroupData[{ Cell["\<\ Here is the standard basis (product basis) for a (unlabelled) two-qubit \ system.\ \>", "MathCaption", CellChangeTimes->{{3.8197870255978107`*^9, 3.819787045869858*^9}, { 3.824159335391501*^9, 3.824159338135289*^9}},ExpressionUUID->"a4facac5-494b-4150-840d-\ 8637dae23c3a"], Cell[CellGroupData[{ Cell[BoxData[{ RowBox[{ RowBox[{"bs", "=", RowBox[{"Basis", "[", "2", "]"}]}], ";"}], "\[IndentingNewLine]", RowBox[{"bs", "//", "LogicalForm"}]}], "Input", CellChangeTimes->{{3.819786993788621*^9, 3.8197870141458197`*^9}, { 3.824159236498516*^9, 3.824159238173356*^9}}, CellLabel-> "In[248]:=",ExpressionUUID->"5c0a35b7-83b0-4392-a3ca-56fb7716c13e"], Cell[BoxData[ RowBox[{"{", RowBox[{ TemplateBox[{ RowBox[{"0", ",", "0"}]}, "Ket"], ",", TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"], ",", TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"], ",", TemplateBox[{ RowBox[{"1", ",", "1"}]}, "Ket"]}], "}"}]], "Output", CellChangeTimes->{{3.819787006946958*^9, 3.819787016589727*^9}, 3.819787047345961*^9, 3.819787439254212*^9, 3.819791440664572*^9, 3.824158840287747*^9, {3.824159238504966*^9, 3.824159240432805*^9}, { 3.824159339465673*^9, 3.824159348331541*^9}, 3.826432894937395*^9, 3.8301444257728233`*^9}, CellLabel->"Out[249]=", CellID->631447351,ExpressionUUID->"3da707d9-90a5-4853-a037-07586b3864f0"] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell["Consider an arbitrary vector in the tensor-product space.", \ "MathCaption", CellChangeTimes->{{3.8197879682407837`*^9, 3.819787982563333*^9}},ExpressionUUID->"6dd55d7f-4056-4d8c-8451-\ c38fb6ff5294"], Cell[CellGroupData[{ Cell[BoxData[{ RowBox[{ RowBox[{"cc", "=", RowBox[{"Re", "@", RowBox[{"RandomVector", "[", "4", "]"}]}]}], ";"}], "\[IndentingNewLine]", RowBox[{ RowBox[{"vec", "=", RowBox[{"bs", ".", "cc"}]}], ";"}], "\[IndentingNewLine]", RowBox[{"vec", "//", "LogicalForm"}]}], "Input", CellChangeTimes->{{3.8197870554112997`*^9, 3.8197870903942738`*^9}, { 3.8197914466043262`*^9, 3.819791447121304*^9}}, CellLabel-> "In[250]:=",ExpressionUUID->"2842b5b3-74fe-43d9-a73d-a523457fb336"], Cell[BoxData[ RowBox[{ RowBox[{ RowBox[{"-", "0.3924374330590785`"}], " ", TemplateBox[{ RowBox[{"0", ",", "0"}]}, "Ket"]}], "+", RowBox[{"0.30922483004718604`", " ", TemplateBox[{ RowBox[{"0", ",", "1"}]}, "Ket"]}], "-", RowBox[{"0.352869292166885`", " ", TemplateBox[{ RowBox[{"1", ",", "0"}]}, "Ket"]}], "+", RowBox[{"0.7334051896188951`", " ", TemplateBox[{ RowBox[{"1", ",", "1"}]}, "Ket"]}]}]], "Output", CellChangeTimes->{{3.819787070694358*^9, 3.819787090643776*^9}, 3.819787439825862*^9, {3.8197879839476957`*^9, 3.8197879876835203`*^9}, 3.819791447474156*^9, 3.824158842050222*^9, {3.824159247500208*^9, 3.824159254315812*^9}, {3.824159340647293*^9, 3.824159349534482*^9}, 3.8264328962756433`*^9, 3.8301444274387608`*^9}, CellLabel->"Out[252]=", CellID->2005682050,ExpressionUUID->"48a26803-d6c9-4758-b5b4-b77e2322deb6"] }, Open ]], Cell["\<\ This is its Schmidt decomposition and shows that the state vector is \ entangled.\ \>", "Text", CellChangeTimes->{{3.819788001415221*^9, 3.819788025162488*^9}, { 3.824158897033415*^9, 3.824158909587902*^9}, {3.8241589945664167`*^9, 3.824159006378055*^9}},ExpressionUUID->"4f119916-12fe-4eaf-90e2-\ e2783ec78f0b"], Cell[CellGroupData[{ Cell[BoxData[{ RowBox[{ RowBox[{ RowBox[{"{", RowBox[{"ww", ",", "uu", ",", "vv"}], "}"}], "=", RowBox[{"SchmidtDecomposition", "[", RowBox[{"vec", ",", RowBox[{"{", "1", "}"}], ",", RowBox[{"{", "2", "}"}]}], "]"}]}], ";"}], "\[IndentingNewLine]", RowBox[{"ww", "//", "Normal"}], "\[IndentingNewLine]", "uu", "\[IndentingNewLine]", "vv"}], \ "Input", CellChangeTimes->{{3.81978709523463*^9, 3.819787106233433*^9}, { 3.8197871501746387`*^9, 3.819787165731674*^9}, {3.8197872075462503`*^9, 3.819787213923571*^9}, {3.8197874429406023`*^9, 3.819787446584749*^9}, { 3.824158855911381*^9, 3.824158885795579*^9}, {3.824158925967825*^9, 3.824158982496255*^9}, 3.824159268817006*^9, {3.824159299368362*^9, 3.824159302159671*^9}}, CellLabel-> "In[253]:=",ExpressionUUID->"c2ac12a8-c0df-4474-906e-81b37b3d9062"], Cell[BoxData[ RowBox[{"{", RowBox[{"0.9357107663700728`", ",", "0.1909775002379256`"}], "}"}]], "Output", CellChangeTimes->{ 3.819787106561152*^9, {3.8197871555971413`*^9, 3.819787167894785*^9}, { 3.81978720835345*^9, 3.819787214192141*^9}, {3.8197874469829683`*^9, 3.819787449444026*^9}, 3.819787494858453*^9, 3.8197878401448717`*^9, 3.819787942666315*^9, 3.819787988513653*^9, 3.8197880266143017`*^9, 3.819788416252865*^9, 3.8197914502604647`*^9, {3.824158844018415*^9, 3.8241588881997643`*^9}, {3.824158932009828*^9, 3.8241589359456863`*^9}, { 3.8241589831461477`*^9, 3.824159007726933*^9}, {3.824159256815564*^9, 3.824159306164879*^9}, {3.8241593441477547`*^9, 3.8241593507400637`*^9}, 3.826432897881126*^9, 3.830144428901919*^9}, CellLabel->"Out[254]=", CellID->1752364421,ExpressionUUID->"69455f58-4d1a-48b6-bc18-a3c4fa4f6e51"], Cell[BoxData[ RowBox[{"{", RowBox[{ RowBox[{ RowBox[{"0.5040170444637407`", " ", TemplateBox[{"0"}, "Ket"]}], "+", RowBox[{"0.8636937066402856`", " ", TemplateBox[{"1"}, "Ket"]}]}], ",", RowBox[{ RowBox[{ RowBox[{"-", "0.8636937066402856`"}], " ", TemplateBox[{"0"}, "Ket"]}], "+", RowBox[{"0.5040170444637407`", " ", TemplateBox[{"1"}, "Ket"]}]}]}], "}"}]], "Output", CellChangeTimes->{ 3.819787106561152*^9, {3.8197871555971413`*^9, 3.819787167894785*^9}, { 3.81978720835345*^9, 3.819787214192141*^9}, {3.8197874469829683`*^9, 3.819787449444026*^9}, 3.819787494858453*^9, 3.8197878401448717`*^9, 3.819787942666315*^9, 3.819787988513653*^9, 3.8197880266143017`*^9, 3.819788416252865*^9, 3.8197914502604647`*^9, {3.824158844018415*^9, 3.8241588881997643`*^9}, {3.824158932009828*^9, 3.8241589359456863`*^9}, { 3.8241589831461477`*^9, 3.824159007726933*^9}, {3.824159256815564*^9, 3.824159306164879*^9}, {3.8241593441477547`*^9, 3.8241593507400637`*^9}, 3.826432897881126*^9, 3.830144428903562*^9}, CellLabel->"Out[255]=", CellID->1398088789,ExpressionUUID->"32404397-6508-42b8-9469-6a523f67e829"], Cell[BoxData[ RowBox[{"{", RowBox[{ RowBox[{ RowBox[{ RowBox[{"-", "0.5370956070198301`"}], " ", TemplateBox[{"0"}, "Ket"]}], "+", RowBox[{"0.8435213743112857`", " ", TemplateBox[{"1"}, "Ket"]}]}], ",", RowBox[{ RowBox[{"0.8435213743112856`", " ", TemplateBox[{"0"}, "Ket"]}], "+", RowBox[{"0.5370956070198301`", " ", TemplateBox[{"1"}, "Ket"]}]}]}], "}"}]], "Output", CellChangeTimes->{ 3.819787106561152*^9, {3.8197871555971413`*^9, 3.819787167894785*^9}, { 3.81978720835345*^9, 3.819787214192141*^9}, {3.8197874469829683`*^9, 3.819787449444026*^9}, 3.819787494858453*^9, 3.8197878401448717`*^9, 3.819787942666315*^9, 3.819787988513653*^9, 3.8197880266143017`*^9, 3.819788416252865*^9, 3.8197914502604647`*^9, {3.824158844018415*^9, 3.8241588881997643`*^9}, {3.824158932009828*^9, 3.8241589359456863`*^9}, { 3.8241589831461477`*^9, 3.824159007726933*^9}, {3.824159256815564*^9, 3.824159306164879*^9}, {3.8241593441477547`*^9, 3.8241593507400637`*^9}, 3.826432897881126*^9, 3.830144428905822*^9}, CellLabel->"Out[256]=", CellID->2059694896,ExpressionUUID->"7b1942d7-3ad8-452c-b9f3-906fcacf5885"] }, Open ]], Cell[TextData[{ StyleBox["SchmidtForm", "Input"], " presents the Schmidt decomposition in a more intuitively-appealing form. \ For a thorough analysis of the result, use ", StyleBox["SchmidtDecomposition", "Input"], "." }], "Text", CellChangeTimes->{{3.82415902526584*^9, 3.8241591263421717`*^9}, { 3.8241591683364363`*^9, 3.8241591861777983`*^9}},ExpressionUUID->"881b939d-9f46-400f-9371-\ e891b3bb0fa7"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{"new", "=", RowBox[{"SchmidtForm", "[", RowBox[{"vec", ",", RowBox[{"{", "1", "}"}], ",", RowBox[{"{", "2", "}"}]}], "]"}]}]], "Input", CellChangeTimes->{{3.824159130135478*^9, 3.82415914304736*^9}, { 3.824159308313879*^9, 3.824159311462902*^9}}, CellLabel-> "In[257]:=",ExpressionUUID->"d144504e-8964-49d4-ad8f-27c24182f721"], Cell[BoxData[ RowBox[{ RowBox[{"0.1909775002379256`", " ", RowBox[{ RowBox[{"(", TagBox[ RowBox[{ RowBox[{ RowBox[{"-", "0.8636937066402856`"}], " ", TemplateBox[{"0"}, "Ket"]}], "+", RowBox[{"0.5040170444637407`", " ", TemplateBox[{"1"}, "Ket"]}]}], HoldForm], ")"}], "\[CircleTimes]", RowBox[{"(", TagBox[ RowBox[{ RowBox[{"0.8435213743112856`", " ", TemplateBox[{"0"}, "Ket"]}], "+", RowBox[{"0.5370956070198301`", " ", TemplateBox[{"1"}, "Ket"]}]}], HoldForm], ")"}]}]}], "+", RowBox[{"0.9357107663700728`", " ", RowBox[{ RowBox[{"(", TagBox[ RowBox[{ RowBox[{"0.5040170444637407`", " ", TemplateBox[{"0"}, "Ket"]}], "+", RowBox[{"0.8636937066402856`", " ", TemplateBox[{"1"}, "Ket"]}]}], HoldForm], ")"}], "\[CircleTimes]", RowBox[{"(", TagBox[ RowBox[{ RowBox[{ RowBox[{"-", "0.5370956070198301`"}], " ", TemplateBox[{"0"}, "Ket"]}], "+", RowBox[{"0.8435213743112857`", " ", TemplateBox[{"1"}, "Ket"]}]}], HoldForm], ")"}]}]}]}]], "Output", CellChangeTimes->{{3.824159143835443*^9, 3.824159159900432*^9}, { 3.824159311801874*^9, 3.824159313498721*^9}, 3.8241593536657476`*^9, 3.826432899916486*^9, 3.8301444304637127`*^9}, CellLabel->"Out[257]=", CellID->1312670903,ExpressionUUID->"b24a482e-b6a8-467e-89fb-376db13839a7"] }, Open ]], Cell["Check whether the two vectors are the same or not.", "Text", CellChangeTimes->{{3.819788726560844*^9, 3.819788762772318*^9}},ExpressionUUID->"ea3411ee-baa9-49a5-af0d-\ cfe99dca9dbe"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{ RowBox[{ RowBox[{"vec", "-", RowBox[{"ReleaseTimes", "[", "new", "]"}]}], "//", "Garner"}], "//", "Chop"}]], "Input", CellChangeTimes->{{3.8197884176428413`*^9, 3.8197884354155188`*^9}}, CellLabel-> "In[258]:=",ExpressionUUID->"3d8c5cea-dbae-4175-8c58-70367efe469b"], Cell[BoxData["0"], "Output", CellChangeTimes->{{3.819788428206604*^9, 3.819788435764172*^9}, 3.819791454300049*^9, 3.824159208655898*^9, 3.8241593147265043`*^9, 3.824159355191894*^9, 3.826432901586759*^9, 3.830144431903754*^9}, CellLabel->"Out[258]=", CellID->975387447,ExpressionUUID->"d013e403-a1e7-41f4-ac7f-7b830006b1ca"] }, Open ]] }, Open ]] }, Open ]], Cell["Operators on a Tensor-Product Space", "Subsection", CellChangeTimes->{{3.824002659339868*^9, 3.824002666673904*^9}}, CellTags->"Section39", CellID->588087554,ExpressionUUID->"ca928bed-28e5-4424-9910-ac226b892ca0"] }, Open ]] }, Open ]] }, Saveable->False, WindowToolbars->"EditBar", WindowSize->{854, 1340}, WindowMargins->{{Automatic, 533}, {Automatic, 0}}, DockedCells->Cell[ "Quantum Computation Workbook", "Text", Background -> GrayLevel[0.9], FontSize -> 12, CellFrameMargins -> {{22, 8}, {8, 8}}], PrintingCopies->1, PrintingPageRange->{1, Automatic}, PageFooters->{{ Cell["Quantum Computation Workbook", "Footer", CellMargins -> 4], None, None}, {None, None, Cell["Quantum Computation Workbook", "Footer", CellMargins -> 4]}}, PageFooterLines->{True, True}, CreateCellID->True, FrontEndVersion->"13.0 for Mac OS X ARM (64-bit) (December 2, 2021)", StyleDefinitions->"Workbook.nb", ExpressionUUID->"d8ec5c2a-3d68-4061-9c71-fe973853d6b1" ] (* End of Notebook Content *) (* Internal cache information *) (*CellTagsOutline CellTagsIndex->{ "TableOfContents"->{ Cell[1380, 41, 8583, 254, 462, "Text",ExpressionUUID->"e11c50e5-7dd3-4f3f-9eaf-97bf37279781", CellTags->"TableOfContents", CellID->753168464]}, "Section24"->{ Cell[9988, 299, 199, 3, 67, "Section",ExpressionUUID->"7cd378f8-a574-4e2a-a990-565a356cc7cb", CellTags->"Section24", CellID->1076017913]}, "Section25"->{ Cell[16535, 501, 192, 3, 54, "Subsection",ExpressionUUID->"b95a62c0-6e7e-41d6-adc2-06fb62877d48", CellTags->"Section25", CellID->396524943]}, "Section26"->{ Cell[16730, 506, 205, 3, 38, "Subsection",ExpressionUUID->"5fcda9e2-1981-4eb1-a857-16510ebc9b5d", CellTags->"Section26", CellID->2138420]}, "Section27"->{ Cell[16938, 511, 231, 4, 38, "Subsection",ExpressionUUID->"6588a308-6819-47d2-8c0f-bfa7b60e8524", CellTags->"Section27", CellID->2005224525]}, "Section28"->{ Cell[17206, 520, 254, 4, 67, "Section",ExpressionUUID->"181e5277-f4c1-453d-80dc-5bf3c674a61f", CellTags->"Section28", CellID->1670847277]}, "Section29"->{ Cell[17463, 526, 202, 3, 54, "Subsection",ExpressionUUID->"f161d18e-4d29-43e5-bfb7-508ff3c3c992", CellTags->"Section29", CellID->819839510]}, "Section30"->{ Cell[17668, 531, 258, 4, 38, "Subsection",ExpressionUUID->"c118c36e-6680-4f57-846a-85821539fb21", CellTags->"Section30", CellID->536851057]}, "Section31"->{ Cell[17929, 537, 209, 3, 38, "Subsection",ExpressionUUID->"0963cef8-5f2b-4937-a43d-d361226b5cc3", CellTags->"Section31", CellID->1124277901]}, "Section32"->{ Cell[18141, 542, 204, 3, 38, "Subsection",ExpressionUUID->"173df1a4-bf88-46f4-8493-e078cece3f89", CellTags->"Section32", CellID->863578051]}, "Section33"->{ Cell[18382, 550, 283, 4, 67, "Section",ExpressionUUID->"17310dae-9330-4952-af85-3130ac53914e", CellTags->"Section33", CellID->1906472959]}, "Section34"->{ Cell[26877, 850, 201, 3, 67, "Section",ExpressionUUID->"51c62d6b-32f1-4252-b207-1d5283366bfa", CellTags->"Section34", CellID->482407734]}, "Section35"->{ Cell[27081, 855, 212, 3, 54, "Subsection",ExpressionUUID->"abbeeeef-55f9-4e35-8c6c-008c9f1328f6", CellTags->"Section35", CellID->1544167447]}, "Section36"->{ Cell[27318, 862, 210, 3, 38, "Subsection",ExpressionUUID->"8da0546d-9f52-42cd-82c8-fb0897534130", CellTags->"Section36", CellID->188301754]}, "Section11"->{ Cell[47864, 1551, 213, 3, 67, "Section",ExpressionUUID->"90841938-8d39-40ba-bac1-23e87a7c7a16", CellTags->"Section11", CellID->2142634853]}, "Section37"->{ Cell[48102, 1558, 259, 4, 53, "Section",ExpressionUUID->"7b4d57e9-d7ab-4b8b-adf3-e809e5e46894", CellTags->"Section37", CellID->2071693926]}, "Section38"->{ Cell[48386, 1566, 220, 3, 54, "Subsection",ExpressionUUID->"f4e2e25a-5d3f-494e-bd91-5f8a397ad527", CellTags->"Section38", CellID->1267776584]}, "Section39"->{ Cell[59586, 1890, 222, 3, 54, "Subsection",ExpressionUUID->"ca928bed-28e5-4424-9910-ac226b892ca0", CellTags->"Section39", CellID->588087554]} } *) (*CellTagsIndex CellTagsIndex->{ {"TableOfContents", 60676, 1921}, {"Section24", 60844, 1925}, {"Section25", 61007, 1929}, {"Section26", 61173, 1933}, {"Section27", 61337, 1937}, {"Section28", 61504, 1941}, {"Section29", 61668, 1945}, {"Section30", 61834, 1949}, {"Section31", 62000, 1953}, {"Section32", 62167, 1957}, {"Section33", 62333, 1961}, {"Section34", 62497, 1965}, {"Section35", 62660, 1969}, {"Section36", 62827, 1973}, {"Section11", 62993, 1977}, {"Section37", 63158, 1981}, {"Section38", 63323, 1985}, {"Section39", 63491, 1989} } *) (*NotebookFileOutline Notebook[{ Cell[CellGroupData[{ Cell[580, 22, 180, 3, 98, "Title",ExpressionUUID->"9acdf1f7-9c34-4f82-b162-ed54a7e38f1c"], Cell[763, 27, 380, 6, 30, "Input",ExpressionUUID->"875643b4-870d-4502-896e-a47600e22746"], Cell[1146, 35, 231, 4, 31, "Input",ExpressionUUID->"6e72e915-ad89-4c3d-8c60-3b443d0b8d6f"], Cell[1380, 41, 8583, 254, 462, "Text",ExpressionUUID->"e11c50e5-7dd3-4f3f-9eaf-97bf37279781", CellTags->"TableOfContents", CellID->753168464], Cell[CellGroupData[{ Cell[9988, 299, 199, 3, 67, "Section",ExpressionUUID->"7cd378f8-a574-4e2a-a990-565a356cc7cb", CellTags->"Section24", CellID->1076017913], Cell[CellGroupData[{ Cell[10212, 306, 289, 5, 38, "MathCaption",ExpressionUUID->"efb6b525-64f3-47ee-ba73-c547ac5f43f1", CellID->1659370350], Cell[CellGroupData[{ Cell[10526, 315, 302, 7, 30, "Input",ExpressionUUID->"eb790a8f-b390-41f1-9dfe-f653509e1470"], Cell[10831, 324, 272, 4, 34, "Output",ExpressionUUID->"f28b6140-3c26-4041-b81d-34303092f4da", CellID->1729441635] }, Open ]], Cell[11118, 331, 192, 3, 35, "Text",ExpressionUUID->"e99d6ba4-b067-4989-a087-f77d91facd3a"], Cell[11313, 336, 254, 5, 30, "Input",ExpressionUUID->"94320fee-06df-4eb8-89d5-8dfa0f960f2b", CellID->1814832508], Cell[CellGroupData[{ Cell[11592, 345, 390, 9, 52, "Input",ExpressionUUID->"ef9a9121-f362-41d4-85aa-eb12c0cf8311"], Cell[11985, 356, 508, 16, 34, "Output",ExpressionUUID->"42802dd7-7288-409a-8909-b0aabfea28d6", CellID->1737121718], Cell[12496, 374, 294, 5, 34, "Output",ExpressionUUID->"3379ceee-3154-4ab8-896b-dbd0abc5d764", CellID->764533461] }, Open ]], Cell[CellGroupData[{ Cell[12827, 384, 396, 9, 52, "Input",ExpressionUUID->"9c2364a4-d3b2-43c3-880b-e67a7d3dc674"], Cell[13226, 395, 509, 16, 34, "Output",ExpressionUUID->"0df359a9-b4e4-4900-abb0-48e7cfee6401", CellID->1988858517], Cell[13738, 413, 299, 5, 34, "Output",ExpressionUUID->"4dcf87bd-3451-4a4f-961f-a4686b4838e3", CellID->1162129664] }, Open ]], Cell[CellGroupData[{ Cell[14074, 423, 226, 5, 30, "Input",ExpressionUUID->"87a78293-1e4b-4147-b438-f9851f2cab0f"], Cell[14303, 430, 353, 9, 34, "Output",ExpressionUUID->"566d2774-faa5-49ed-99c3-f832a9f71606", CellID->1297106850] }, Open ]], Cell[CellGroupData[{ Cell[14693, 444, 226, 5, 30, "Input",ExpressionUUID->"47d7d2c2-1409-4e79-a2d8-6a34b9f27b6b"], Cell[14922, 451, 352, 9, 34, "Output",ExpressionUUID->"245abf46-ef03-4491-a2d5-d707c1a24c60", CellID->220978149] }, Open ]], Cell[CellGroupData[{ Cell[15311, 465, 264, 6, 30, "Input",ExpressionUUID->"71e660ab-f5a8-4014-83ca-cdd3a70223bb"], Cell[15578, 473, 243, 4, 34, "Output",ExpressionUUID->"7b7a5be8-8f8e-434c-918a-f981fa1c66cd", CellID->2085603271] }, Open ]], Cell[CellGroupData[{ Cell[15858, 482, 353, 8, 30, "Input",ExpressionUUID->"bb931cff-4575-4c26-87a7-5322eca9f443"], Cell[16214, 492, 294, 5, 34, "Output",ExpressionUUID->"6e5036da-2de5-43b9-8ce4-c15b074590ba", CellID->61103859] }, Open ]] }, Open ]], Cell[16535, 501, 192, 3, 54, "Subsection",ExpressionUUID->"b95a62c0-6e7e-41d6-adc2-06fb62877d48", CellTags->"Section25", CellID->396524943], Cell[16730, 506, 205, 3, 38, "Subsection",ExpressionUUID->"5fcda9e2-1981-4eb1-a857-16510ebc9b5d", CellTags->"Section26", CellID->2138420], Cell[16938, 511, 231, 4, 38, "Subsection",ExpressionUUID->"6588a308-6819-47d2-8c0f-bfa7b60e8524", CellTags->"Section27", CellID->2005224525] }, Open ]], Cell[CellGroupData[{ Cell[17206, 520, 254, 4, 67, "Section",ExpressionUUID->"181e5277-f4c1-453d-80dc-5bf3c674a61f", CellTags->"Section28", CellID->1670847277], Cell[17463, 526, 202, 3, 54, "Subsection",ExpressionUUID->"f161d18e-4d29-43e5-bfb7-508ff3c3c992", CellTags->"Section29", CellID->819839510], Cell[17668, 531, 258, 4, 38, "Subsection",ExpressionUUID->"c118c36e-6680-4f57-846a-85821539fb21", CellTags->"Section30", CellID->536851057], Cell[17929, 537, 209, 3, 38, "Subsection",ExpressionUUID->"0963cef8-5f2b-4937-a43d-d361226b5cc3", CellTags->"Section31", CellID->1124277901], Cell[18141, 542, 204, 3, 38, "Subsection",ExpressionUUID->"173df1a4-bf88-46f4-8493-e078cece3f89", CellTags->"Section32", CellID->863578051] }, Open ]], Cell[CellGroupData[{ Cell[18382, 550, 283, 4, 67, "Section",ExpressionUUID->"17310dae-9330-4952-af85-3130ac53914e", CellTags->"Section33", CellID->1906472959], Cell[CellGroupData[{ Cell[18690, 558, 258, 6, 38, "MathCaption",ExpressionUUID->"eba87faa-fb5b-44e8-a990-cf62d2cae0b5"], Cell[CellGroupData[{ Cell[18973, 568, 231, 5, 30, "Input",ExpressionUUID->"a84f0b0b-3eae-4712-8803-cf630046d0ed"], Cell[19207, 575, 555, 19, 38, "Output",ExpressionUUID->"b1d8fc22-6004-442c-a166-adcb590b369f", CellID->332114172] }, Open ]], Cell[19777, 597, 373, 7, 58, "Text",ExpressionUUID->"7657276b-9d34-4763-a325-98ac31d2fa61"], Cell[CellGroupData[{ Cell[20175, 608, 530, 13, 30, "Input",ExpressionUUID->"dfb2f6f4-75d5-4883-b309-cf290082cba3"], Cell[20708, 623, 682, 20, 34, "Output",ExpressionUUID->"5a862c05-835e-4d7f-8e0b-1b306fe10410", CellID->1988193002] }, Open ]], Cell[21405, 646, 194, 3, 35, "Text",ExpressionUUID->"93c25dd0-b403-49dd-8888-53df1311ffc5"], Cell[CellGroupData[{ Cell[21624, 653, 319, 7, 52, "Input",ExpressionUUID->"cafb1496-c184-4fa0-94b4-95422e5000c6"], Cell[21946, 662, 965, 27, 94, "Output",ExpressionUUID->"76bdcd1d-4237-434d-8383-f444dd5ad1a9", CellID->790497926] }, Open ]], Cell[22926, 692, 211, 5, 35, "Text",ExpressionUUID->"219f0fed-f32d-4269-977c-7172ddfe3e46"], Cell[CellGroupData[{ Cell[23162, 701, 366, 8, 30, "Input",ExpressionUUID->"c33e1326-f187-4976-9f64-afa7238d774e"], Cell[23531, 711, 1771, 85, 38, "Output",ExpressionUUID->"86c3830b-e946-433d-aef3-8f7a3351d376", CellID->2046758545] }, Open ]], Cell[25317, 799, 219, 5, 35, "Text",ExpressionUUID->"3ed235b1-e2f7-47a5-8892-86e308b04c8a"], Cell[CellGroupData[{ Cell[25561, 808, 426, 10, 52, "Input",ExpressionUUID->"8e6e7a27-31d9-4337-bde7-7d1130e26bca"], Cell[25990, 820, 826, 23, 94, "Output",ExpressionUUID->"f1b50e46-7d4c-4cbe-a361-5edf7f34774b", CellID->274066162] }, Open ]] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell[26877, 850, 201, 3, 67, "Section",ExpressionUUID->"51c62d6b-32f1-4252-b207-1d5283366bfa", CellTags->"Section34", CellID->482407734], Cell[27081, 855, 212, 3, 54, "Subsection",ExpressionUUID->"abbeeeef-55f9-4e35-8c6c-008c9f1328f6", CellTags->"Section35", CellID->1544167447], Cell[CellGroupData[{ Cell[27318, 862, 210, 3, 38, "Subsection",ExpressionUUID->"8da0546d-9f52-42cd-82c8-fb0897534130", CellTags->"Section36", CellID->188301754], Cell[CellGroupData[{ Cell[27553, 869, 365, 7, 38, "MathCaption",ExpressionUUID->"cae9d88e-2cb5-4cca-a5e3-6f76fa881418"], Cell[CellGroupData[{ Cell[27943, 880, 538, 15, 30, "Input",ExpressionUUID->"5cb8a05e-7974-4676-bf1a-e34caa22700b"], Cell[28484, 897, 906, 25, 37, "Output",ExpressionUUID->"75b595aa-6df5-449a-9c7b-b9aaac955f01", CellID->352225203] }, Open ]], Cell[29405, 925, 356, 8, 58, "Text",ExpressionUUID->"8efaab1a-482a-41c0-9e35-9ad7ec5c77d7"], Cell[CellGroupData[{ Cell[29786, 937, 290, 7, 30, "Input",ExpressionUUID->"6fa0e8cd-1008-4247-82a0-cd0aaf12561e"], Cell[30079, 946, 1044, 36, 38, "Output",ExpressionUUID->"02003c0c-35a5-4a0e-a425-95af312e5db3", CellID->203554561] }, Open ]], Cell[31138, 985, 214, 5, 35, "Text",ExpressionUUID->"f3b72c6a-95de-4c8a-8bfe-054651a796d8"], Cell[CellGroupData[{ Cell[31377, 994, 323, 8, 30, "Input",ExpressionUUID->"e0d5bd2b-63d3-422b-8844-5c4035169192"], Cell[31703, 1004, 855, 22, 94, "Output",ExpressionUUID->"6b764a43-675a-44f6-9fe2-6a751fa3c3be", CellID->1458032796] }, Open ]], Cell[32573, 1029, 173, 3, 35, "Text",ExpressionUUID->"791b6e11-97a3-4071-94fb-b9167cfd35c9"], Cell[CellGroupData[{ Cell[32771, 1036, 515, 14, 52, "Input",ExpressionUUID->"06a1ce55-8301-48d0-9aa0-3fe42e6f52cd"], Cell[33289, 1052, 910, 32, 60, "Output",ExpressionUUID->"e1187180-cbef-4938-a0be-738dd62d1385", CellID->1964316969], Cell[34202, 1086, 877, 22, 94, "Output",ExpressionUUID->"d1051cec-223e-451a-93e5-8c0e724e5639", CellID->1009192652] }, Open ]], Cell[35094, 1111, 294, 7, 35, "Text",ExpressionUUID->"7f3530d3-e332-4118-a565-2916da2d9a22"], Cell[CellGroupData[{ Cell[35413, 1122, 294, 7, 30, "Input",ExpressionUUID->"e96f13d7-c1ec-41f9-9fc0-e408ffa8e90d"], Cell[35710, 1131, 921, 24, 37, "Output",ExpressionUUID->"e96763cd-7c15-4756-9851-9d13294c364a", CellID->2136235363] }, Open ]], Cell[36646, 1158, 181, 3, 35, "Text",ExpressionUUID->"ac6df768-8ca3-4fcb-ac6b-90a0d96eca3b"], Cell[CellGroupData[{ Cell[36852, 1165, 540, 13, 30, "Input",ExpressionUUID->"51f2df26-0b4b-449c-a577-2ec59cbc4f7c"], Cell[37395, 1180, 4435, 179, 126, "Output",ExpressionUUID->"fe741db6-c457-463b-b5d2-0d39768e33ea", CellID->229717461] }, Open ]], Cell[41845, 1362, 235, 6, 35, "Text",ExpressionUUID->"db7757fe-36f7-4adb-a8d5-a8225d289e6c"], Cell[CellGroupData[{ Cell[42105, 1372, 430, 9, 30, "Input",ExpressionUUID->"d9e4bee8-d123-4fa8-a6f3-bb814375527f"], Cell[42538, 1383, 2378, 71, 88, "Output",ExpressionUUID->"1113ae53-85e8-4287-a0d4-1707e5ea7b9a", CellID->1829779602] }, Open ]], Cell[44931, 1457, 224, 5, 35, "Text",ExpressionUUID->"c8e62f8a-22c4-4ddb-93f6-b6d8a3894a2a"], Cell[CellGroupData[{ Cell[45180, 1466, 324, 7, 30, "Input",ExpressionUUID->"e1a45fd3-2f4a-4c96-8dbb-9ef0f0b7c445"], Cell[45507, 1475, 2306, 70, 88, "Output",ExpressionUUID->"0f82ba1e-3b58-465a-8cd7-1974c70daea7", CellID->619514672] }, Open ]] }, Open ]] }, Open ]] }, Open ]], Cell[47864, 1551, 213, 3, 67, "Section",ExpressionUUID->"90841938-8d39-40ba-bac1-23e87a7c7a16", CellTags->"Section11", CellID->2142634853], Cell[CellGroupData[{ Cell[48102, 1558, 259, 4, 53, "Section",ExpressionUUID->"7b4d57e9-d7ab-4b8b-adf3-e809e5e46894", CellTags->"Section37", CellID->2071693926], Cell[CellGroupData[{ Cell[48386, 1566, 220, 3, 54, "Subsection",ExpressionUUID->"f4e2e25a-5d3f-494e-bd91-5f8a397ad527", CellTags->"Section38", CellID->1267776584], Cell[CellGroupData[{ Cell[48631, 1573, 289, 7, 38, "MathCaption",ExpressionUUID->"a4facac5-494b-4150-840d-8637dae23c3a"], Cell[CellGroupData[{ Cell[48945, 1584, 365, 8, 52, "Input",ExpressionUUID->"5c0a35b7-83b0-4392-a3ca-56fb7716c13e"], Cell[49313, 1594, 725, 21, 38, "Output",ExpressionUUID->"3da707d9-90a5-4853-a037-07586b3864f0", CellID->631447351] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell[50087, 1621, 210, 4, 38, "MathCaption",ExpressionUUID->"6dd55d7f-4056-4d8c-8451-c38fb6ff5294"], Cell[CellGroupData[{ Cell[50322, 1629, 499, 12, 73, "Input",ExpressionUUID->"2842b5b3-74fe-43d9-a73d-a523457fb336"], Cell[50824, 1643, 916, 25, 38, "Output",ExpressionUUID->"48a26803-d6c9-4758-b5b4-b77e2322deb6", CellID->2005682050] }, Open ]], Cell[51755, 1671, 328, 7, 35, "Text",ExpressionUUID->"4f119916-12fe-4eaf-90e2-e2783ec78f0b"], Cell[CellGroupData[{ Cell[52108, 1682, 860, 19, 94, "Input",ExpressionUUID->"c2ac12a8-c0df-4474-906e-81b37b3d9062"], Cell[52971, 1703, 875, 15, 34, "Output",ExpressionUUID->"69455f58-4d1a-48b6-bc18-a3c4fa4f6e51", CellID->1752364421], Cell[53849, 1720, 1213, 29, 38, "Output",ExpressionUUID->"32404397-6508-42b8-9469-6a523f67e829", CellID->1398088789], Cell[55065, 1751, 1213, 29, 38, "Output",ExpressionUUID->"7b1942d7-3ad8-452c-b9f3-906fcacf5885", CellID->2059694896] }, Open ]], Cell[56293, 1783, 415, 10, 58, "Text",ExpressionUUID->"881b939d-9f46-400f-9371-e891b3bb0fa7"], Cell[CellGroupData[{ Cell[56733, 1797, 372, 9, 30, "Input",ExpressionUUID->"d144504e-8964-49d4-ad8f-27c24182f721"], Cell[57108, 1808, 1561, 52, 63, "Output",ExpressionUUID->"b24a482e-b6a8-467e-89fb-376db13839a7", CellID->1312670903] }, Open ]], Cell[58684, 1863, 192, 3, 35, "Text",ExpressionUUID->"ea3411ee-baa9-49a5-af0d-cfe99dca9dbe"], Cell[CellGroupData[{ Cell[58901, 1870, 307, 8, 30, "Input",ExpressionUUID->"3d8c5cea-dbae-4175-8c58-70367efe469b"], Cell[59211, 1880, 336, 5, 34, "Output",ExpressionUUID->"d013e403-a1e7-41f4-ac7f-7b830006b1ca", CellID->975387447] }, Open ]] }, Open ]] }, Open ]], Cell[59586, 1890, 222, 3, 54, "Subsection",ExpressionUUID->"ca928bed-28e5-4424-9910-ac226b892ca0", CellTags->"Section39", CellID->588087554] }, Open ]] }, Open ]] } ] *)
namespace erlang tmbhv namespace java dev.vality.damsel.timeout_behaviour include "base.thrift" include "domain.thrift" typedef base.Opaque Callback union TimeoutBehaviour { /** Неуспешное завершение взаимодействия с пояснением возникшей проблемы. */ 1: domain.OperationFailure operation_failure /** Вызов прокси для обработки события истечения таймаута. */ 2: Callback callback }
/** Copyright 2013 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * Authors: Mike Hearn, Matt Corallo */ /* Notes: * - Endianness: All byte arrays that represent numbers (such as hashes and private keys) are Big Endian * - To regenerate after editing, run mvn clean package -DupdateProtobuf */ package paymentchannels; option java_package = "org.bitcoinj.protocols.channels"; option java_outer_classname = "ServerState"; // A set of StoredPaymentChannel's message StoredServerPaymentChannels { repeated StoredServerPaymentChannel channels = 1; } // A server-side payment channel in serialized form, which can be reloaded later if the server restarts message StoredServerPaymentChannel { required uint64 bestValueToMe = 1; optional bytes bestValueSignature = 2; required uint64 refundTransactionUnlockTimeSecs = 3; required bytes contractTransaction = 4; required bytes clientOutput = 5; required bytes myKey = 6; }
INVALID TEST disableCheckConstraint is not supported for H2 https://docs.liquibase.com/change-types/disable-check-constraint.html
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "https://github.com/javaknows/openzeppelin-contracts/blob/master/contracts/utils/cryptography/draft-EIP712.sol"; import "https://github.com/javaknows/openzeppelin-contracts/blob/master/contracts/utils/cryptography/ECDSA.sol"; contract EIP712External is EIP712 { constructor(string memory name, string memory version) EIP712(name, version) {} function domainSeparator() external view returns (bytes32) { return _domainSeparatorV4(); } function verify( bytes memory signature, address signer, address mailTo, string memory mailContents ) external view { bytes32 digest = _hashTypedDataV4( keccak256(abi.encode(keccak256("Mail(address to,string contents)"), mailTo, keccak256(bytes(mailContents)))) ); address recoveredSigner = ECDSA.recover(digest, signature); require(recoveredSigner == signer); } function getChainId() external view returns (uint256) { return block.chainid; } }
local map = require("map").map local surround = {} function surround.config() require("surround").setup({ load_keymaps = false, }) -- Mappings map("n", "ys", "<Cmd>set operatorfunc=SurroundAddOperatorMode<CR>g@") map("n", "cs", "<Cmd>lua require('surround').surround_replace()<CR>") map("n", "ds", "<Cmd>lua require('surround').surround_delete()<CR>") map("n", "cq", "<Cmd>lua require('surround').toggle_quotes()<CR>") map("v", "<Leader>s", "<Esc>gv<Cmd>lua require'surround'.surround_add()<CR>") end return surround
package authorizations import ( "context" "fmt" "net/http" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "github.com/hashicorp/go-azure-helpers/polling" ) type CreateOrUpdateResponse struct { Poller polling.LongRunningPoller HttpResponse *http.Response } // CreateOrUpdate ... func (c AuthorizationsClient) CreateOrUpdate(ctx context.Context, id AuthorizationId, input ExpressRouteAuthorization) (result CreateOrUpdateResponse, err error) { req, err := c.preparerForCreateOrUpdate(ctx, id, input) if err != nil { err = autorest.NewErrorWithError(err, "authorizations.AuthorizationsClient", "CreateOrUpdate", nil, "Failure preparing request") return } result, err = c.senderForCreateOrUpdate(ctx, req) if err != nil { err = autorest.NewErrorWithError(err, "authorizations.AuthorizationsClient", "CreateOrUpdate", result.HttpResponse, "Failure sending request") return } return } // CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed func (c AuthorizationsClient) CreateOrUpdateThenPoll(ctx context.Context, id AuthorizationId, input ExpressRouteAuthorization) error { result, err := c.CreateOrUpdate(ctx, id, input) if err != nil { return fmt.Errorf("performing CreateOrUpdate: %+v", err) } if err := result.Poller.PollUntilDone(); err != nil { return fmt.Errorf("polling after CreateOrUpdate: %+v", err) } return nil } // preparerForCreateOrUpdate prepares the CreateOrUpdate request. func (c AuthorizationsClient) preparerForCreateOrUpdate(ctx context.Context, id AuthorizationId, input ExpressRouteAuthorization) (*http.Request, error) { queryParameters := map[string]interface{}{ "api-version": defaultApiVersion, } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(c.baseUri), autorest.WithPath(id.ID()), autorest.WithJSON(input), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // senderForCreateOrUpdate sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. func (c AuthorizationsClient) senderForCreateOrUpdate(ctx context.Context, req *http.Request) (future CreateOrUpdateResponse, err error) { var resp *http.Response resp, err = c.Client.Send(req, azure.DoRetryWithRegistration(c.Client)) if err != nil { return } future.Poller, err = polling.NewLongRunningPollerFromResponse(ctx, resp, c.Client) return }
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading.Tasks; using Pulumi.Serialization; namespace Pulumi.Gcp.Dataproc.Inputs { public sealed class WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs : Pulumi.ResourceArgs { [Input("instanceGroupManagerName")] public Input<string>? InstanceGroupManagerName { get; set; } [Input("instanceTemplateName")] public Input<string>? InstanceTemplateName { get; set; } public WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs() { } } }
import Vue from 'vue' import axios from 'axios' export function request(){ // 1.创建axios实例 const instance = axios }
const __fixdfti = @import("fixdfti.zig").__fixdfti; const std = @import("std"); const math = std.math; const testing = std.testing; const warn = std.debug.warn; fn test__fixdfti(a: f64, expected: i128) void { const x = __fixdfti(a); //warn("a={}:{x} x={}:{x} expected={}:{x}:u64({x})\n", a, @bitCast(u64, a), x, x, expected, expected, @bitCast(u128, expected)); testing.expect(x == expected); } test "fixdfti" { //warn("\n"); test__fixdfti(-math.f64_max, math.minInt(i128)); test__fixdfti(-0x1.FFFFFFFFFFFFFp+1023, math.minInt(i128)); test__fixdfti(-0x1.FFFFFFFFFFFFFp+1023, -0x80000000000000000000000000000000); test__fixdfti(-0x1.0000000000000p+127, -0x80000000000000000000000000000000); test__fixdfti(-0x1.FFFFFFFFFFFFFp+126, -0x7FFFFFFFFFFFFC000000000000000000); test__fixdfti(-0x1.FFFFFFFFFFFFEp+126, -0x7FFFFFFFFFFFF8000000000000000000); test__fixdfti(-0x1.0000000000001p+63, -0x8000000000000800); test__fixdfti(-0x1.0000000000000p+63, -0x8000000000000000); test__fixdfti(-0x1.FFFFFFFFFFFFFp+62, -0x7FFFFFFFFFFFFC00); test__fixdfti(-0x1.FFFFFFFFFFFFEp+62, -0x7FFFFFFFFFFFF800); test__fixdfti(-0x1.FFFFFEp+62, -0x7fffff8000000000); test__fixdfti(-0x1.FFFFFCp+62, -0x7fffff0000000000); test__fixdfti(-2.01, -2); test__fixdfti(-2.0, -2); test__fixdfti(-1.99, -1); test__fixdfti(-1.0, -1); test__fixdfti(-0.99, 0); test__fixdfti(-0.5, 0); test__fixdfti(-math.f64_min, 0); test__fixdfti(0.0, 0); test__fixdfti(math.f64_min, 0); test__fixdfti(0.5, 0); test__fixdfti(0.99, 0); test__fixdfti(1.0, 1); test__fixdfti(1.5, 1); test__fixdfti(1.99, 1); test__fixdfti(2.0, 2); test__fixdfti(2.01, 2); test__fixdfti(0x1.FFFFFCp+62, 0x7FFFFF0000000000); test__fixdfti(0x1.FFFFFEp+62, 0x7FFFFF8000000000); test__fixdfti(0x1.FFFFFFFFFFFFEp+62, 0x7FFFFFFFFFFFF800); test__fixdfti(0x1.FFFFFFFFFFFFFp+62, 0x7FFFFFFFFFFFFC00); test__fixdfti(0x1.0000000000000p+63, 0x8000000000000000); test__fixdfti(0x1.0000000000001p+63, 0x8000000000000800); test__fixdfti(0x1.FFFFFFFFFFFFEp+126, 0x7FFFFFFFFFFFF8000000000000000000); test__fixdfti(0x1.FFFFFFFFFFFFFp+126, 0x7FFFFFFFFFFFFC000000000000000000); test__fixdfti(0x1.0000000000000p+127, 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); test__fixdfti(0x1.FFFFFFFFFFFFFp+1023, 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); test__fixdfti(0x1.FFFFFFFFFFFFFp+1023, math.maxInt(i128)); test__fixdfti(math.f64_max, math.maxInt(i128)); }
#!/bin/csh cd $GEMTBL/nwx echo " " echo " Copying guidata.tbl to guidata.tbl.old." echo " " cp guidata.tbl guidata.tbl.old echo " " echo " Copying master.tbl to master.tbl.old." echo " " cp master.tbl master.tbl.old echo " " echo " Copying guidata.tbl.new to guidata.tbl" echo " " cp guidata.tbl.new guidata.tbl echo " " echo " Copying master.tbl.new to master.tbl" echo " " cp master.tbl.new master.tbl echo " " echo " "
import FIFOF::*; Module#(Lookup) sysLookupU; sysLookupU = mkLookup; typedef Bit#(32) Address; typedef Bit#(32) Entry; typedef union tagged { void Start; void Step1; void Step2; void Step3; } Step deriving (Eq, Bits); function Bit#(16) bh(Address x); return (x[31:16]); endfunction: bh function Bit#(16) bl(Address x); return (x[15:0]); endfunction: bl function Bit#(28) pntr(Entry x); return (x[31:4]); endfunction: pntr function Bit#(4) offset(Entry x); return (x[3:0]); endfunction: offset function Bit#(8) nextHop(Address x); return (x[11:4]); endfunction: nextHop function Address cwloc(Address addr, Entry entry); Bit#(32) pointer; pointer = zeroExtend(pntr(entry)); Bit#(16) q; q = selectBits16(offset(entry), bl(addr)); Bit#(32) s; s = {20'b0, q[15:4]}; cwloc = pointer + s; endfunction: cwloc function Nat countBits16(Bit#(16) bs); return (countBits(0, 16, bs)); endfunction: countBits16 function Nat countBits(Integer l, Integer h, Bit#(n) bs); Nat ret; if (h == l + 1) ret = {0,bs[fromInteger(l)]}; else begin Integer m = h + l % 2; ret = countBits(l,m,bs) + countBits(m,h,bs); end return ret; endfunction: countBits function Bit#(16) selectBits16(Bit#(4) n, Bit#(16) bs); return (selectBits(0, 15, n, bs)); endfunction: selectBits16 function Bit#(m) selectBits(Integer l, Integer h, Bit#(n) n, Bit#(m) bs); return (l <= h ? n == fromInteger(h - l) ? bs[fromInteger(h):fromInteger(l)] : selectBits(l + 1, h, n, bs) : 0); endfunction: selectBits function Bit#(32) compCNHAIndex(Address addr, Entry e1, Entry e2); Bit#(16) q; Bit#(4) w; Bit#(32) wbars; Bit#(32) t; q = selectBits16(offset(e1), bl(addr)); w = q[3:0]; wbars = countBits16(selectBits16(w, bh(e2))); t = zeroExtend(bl(e2)) + wbars - 1; compCNHAIndex = t; endfunction: compCNHAIndex function Address compCNHALoc(Address addr, Entry e1, Bit#(32) index); Bit#(32) pointer; Nat offsetlen; pointer = zeroExtend(pntr(e1)); offsetlen = zeroExtend(offset(e1)); compCNHALoc = pointer + 1 << offsetlen - 3 + index >> 2; endfunction: compCNHALoc function Bit#(8) selectEntry(Bit#(2) index, Entry entries); selectEntry = (entries << Bit#(32)'(zeroExtend(index)) << 3)[31:24]; endfunction: selectEntry interface Lookup; method FIFOF#(Address) dar; method FIFOF#(Bit#(8)) drr; method FIFOF#(Address) sri; method FIFOF#(Entry) sro; endinterface: Lookup module mkLookup(Lookup); FIFOF#(Address) darS(); mkFIFOF the_darS(darS); FIFOF#(Bit#(8)) drrS(); mkFIFOF the_drrS(drrS); FIFOF#(Address) sriS(); mkFIFOF the_sriS(sriS); FIFOF#(Entry) sroS(); mkFIFOF the_sroS(sroS); Reg#(Step) lstate(); mkReg#(Start) the_lstate(lstate); Reg#(Entry) entry1(); mkRegU the_entry1(entry1); Reg#((Bit#(2))) index(); mkRegU the_index(index); addRules(mkLookupRules(darS, drrS, sriS, sroS, lstate, entry1, index)); method dar(); dar = darS; endmethod: dar method drr(); drr = drrS; endmethod: drr method sri(); sri = sriS; endmethod: sri method sro(); sro = sroS; endmethod: sro endmodule: mkLookup function Rules mkLookupRules(FIFOF#(Address) dar, FIFOF#((Bit#(8))) drr, FIFOF#(Address) sri, FIFOF#(Entry) sro, Reg#(Step) lstate, Reg#(Entry) entry1, Reg#((Bit#(2))) index); return (rules rule r1 (lstate == Start && dar.notEmpty && sri.notFull); sri.enq(zeroExtend(bh(dar.first))); lstate <= Step1; endrule rule r2 (lstate == Step1 && pntr(sro.first) <= 255 && dar.notEmpty && drr.notFull && sro.notEmpty); drr.enq(zeroExtend(nextHop(sro.first))); dar.deq; sro.deq; lstate <= Start; endrule rule r3 (lstate == Step1 && pntr(sro.first) > 255 && dar.notEmpty && sri.notFull && sro.notEmpty); entry1 <= sro.first; sro.deq; sri.enq(cwloc(dar.first, sro.first)); lstate <= Step2; endrule rule r4 (lstate == Step2 && sro.notEmpty && offset(entry1) < 3 && dar.notEmpty && drr.notFull); drr.enq(sro.first[7:0]); sro.deq; lstate <= Start; endrule rule r5 (lstate == Step2 && sro.notEmpty && offset(entry1) >= 3 && dar.notEmpty && sri.notFull); Bit#(32) t; t = compCNHAIndex(dar.first, entry1, sro.first); sri.enq(compCNHALoc(dar.first, entry1, t)); sro.deq; dar.deq; index <= t[1:0]; lstate <= Step3; endrule rule r6 (lstate == Step3 && sro.notEmpty && drr.notFull); drr.enq(selectEntry(index, sro.first)); sro.deq; lstate <= Start; endrule endrules); endfunction: mkLookupRules
COMMENT }%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1991 -- All Rights Reserved PROJECT: PC GEOS MODULE: Video driver FILE: simp4bitManager.asm AUTHOR: Jim DeFrisco REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 12/91 initial version DESCRIPTION: $Id: simp4bitManager.asm,v 1.1 97/04/18 11:43:47 newdeal Exp $ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%} ;-------------------------------------- ; Include files ;-------------------------------------- _VideoDriver = 1 IS_CLR4 = 1 BIT_CLR4 = 1 IS_BITMAP = 1 ifidn PRODUCT, <BOR1> USE_186 = 1 LEFT_PIXEL_IN_LOW_NIBBLE = TRUE INVERTED_CLR4 = 1 ;If BLACK = 0xf, and WHITE = 0x0 .186 endif ifdef WIN32 .386 endif ; ; Set if your video controller is some ass-backward device that has its ; leftmost pixels in the low nibble of each byte in the frame buffer. ; ifdef LEFT_PIXEL_IN_LOW_NIBBLE MASK_FOR_RIGHTMOST_PIXEL_IN_BYTE = 0xf0 MASK_FOR_LEFTMOST_PIXEL_IN_BYTE = 0x0f else MASK_FOR_RIGHTMOST_PIXEL_IN_BYTE = 0x0f MASK_FOR_LEFTMOST_PIXEL_IN_BYTE = 0xf0 endif VIDEO_STACK_SIZE equ 512 ; set size of local stack include vidcomGeode.def ; common includes ;--------------------------------------------------------------------- ; Constants and Macros ;--------------------------------------------------------------------- include simp4bitConstant.def include clr4Constant.def include vidcomConstant.def include clr4Macro.def include simp4bitMacro.def include dumbcomMacro.def include vidcomMacro.def if _BOR1 include Internal/E3G.def endif ;------------------------------------------------------------------------------ ; Variables ;------------------------------------------------------------------------------ idata segment include simp4bitDevInfo.asm ; device info block include vidcomTables.asm include simp4bitTables.asm idata ends udata segment include vidcomVariable.def include dumbcomVariable.def include clr4Variable.def include simp4bitVariable.def udata ends VideoDevices segment lmem LMEM_TYPE_GENERAL include simp4bitStringTab.asm ;define device strings VideoDevices ends ;------------------------------------------------------------------------------ ; Fixed Code ;------------------------------------------------------------------------------ idata segment include vidcomEntry.asm ; entry point, jump table include vidcomOutput.asm ; common output routines include vidcomChars.asm ; common character output routines include clr4GenChar.asm ; routines for larger chars include vidcomFont.asm ; routines for building, rotating chars include vidcomUnder.asm ; save under routines *** include vidcomUtils.asm ; utility routines include vidcomRegion.asm ; region drawing routine *** include vidcomXOR.asm ; xor region support *** include vidcomInfo.asm ; device info routines *** include vidcomEscape.asm ; support for some escape codes include vidcomDither.asm ; 4-bit color dither tables include vidcomPalette.asm ; support for VidGetPixel include simp4bitEscTab.asm ; escape code jump table include clr4Palette.asm ; color palette table include simp4bitPalette.asm ; sets the palette for the device include clr4Utils.asm ; misc utilities include clr4Output.asm ; basic output routines include clr4Chars.asm ; low level char drawing include dumbcomPointer.asm ; pointer support include simp4bitPointer.asm ; pointer support idata ends ;------------------------------------------------------------------------------ ; Moveable Code ;------------------------------------------------------------------------------ include vidcomPolygon.asm ; polygon drawing include vidcomLine.asm ; line drawing routine include vidcomPutLine.asm ; line drawing routine include vidcomRaster.asm ; raster primitive support include vidcomExclBounds.asm ; bounds accumulation include simp4bitRaster.asm ; low level bitmap routines include simp4bitAdmin.asm end
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Defines all the command-line switches used by gpu/command_buffer/service/. #ifndef GPU_COMMAND_BUFFER_SERVICE_GPU_SWITCHES_H_ #define GPU_COMMAND_BUFFER_SERVICE_GPU_SWITCHES_H_ #include "gpu/config/gpu_switches.h" #include "gpu/gpu_export.h" namespace switches { GPU_EXPORT extern const char kCompileShaderAlwaysSucceeds[]; GPU_EXPORT extern const char kDisableGLErrorLimit[]; GPU_EXPORT extern const char kDisableGLSLTranslator[]; GPU_EXPORT extern const char kDisableGpuDriverBugWorkarounds[]; GPU_EXPORT extern const char kDisableShaderNameHashing[]; GPU_EXPORT extern const char kEnableGPUCommandLogging[]; GPU_EXPORT extern const char kEnableGPUDebugging[]; GPU_EXPORT extern const char kEnableGPUServiceLoggingGPU[]; GPU_EXPORT extern const char kDisableGpuProgramCache[]; GPU_EXPORT extern const char kEnforceGLMinimums[]; GPU_EXPORT extern const char kForceGpuMemAvailableMb[]; GPU_EXPORT extern const char kGpuProgramCacheSizeKb[]; GPU_EXPORT extern const char kDisableGpuShaderDiskCache[]; GPU_EXPORT extern const char kEnableShareGroupAsyncTextureUpload[]; GPU_EXPORT extern const char kEnableThreadedTextureMailboxes[]; GPU_EXPORT extern const char kGLShaderIntermOutput[]; GPU_EXPORT extern const char kEmulateShaderPrecision[]; } // namespace switches #endif // GPU_COMMAND_BUFFER_SERVICE_GPU_SWITCHES_H_
# ***************************************************************************** # Written by Ritchie Lee, ritchie.lee@sv.cmu.edu # ***************************************************************************** # Copyright ã 2015, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. All # rights reserved. The Reinforcement Learning Encounter Simulator (RLES) # platform is licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. You # may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0. Unless required by applicable # law or agreed to in writing, software distributed under the License is # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the specific language # governing permissions and limitations under the License. # _____________________________________________________________________________ # Reinforcement Learning Encounter Simulator (RLES) includes the following # third party software. The SISLES.jl package is licensed under the MIT Expat # License: Copyright (c) 2014: Youngjun Kim. # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED # "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT # NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR # PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # ***************************************************************************** """ Create a decision tree to recursively split encounters in the ACASX Problem. SA algorithm. Example usage: config=configure(ACASX_SA_Tree,"normal","nvn_dasc"); acasx_sa_tree(;config...) """ module ACASX_SA_Tree export configure, acasx_sa_tree import Compat.ASCIIString using DecisionTrees using ExprSearch.SA using Datasets using RLESUtils, Obj2Dict, Configure using Reexport using GrammarExpts using ACASXProblem, SA_Tree_Logs using DerivTreeVis, DecisionTreeVis import Configure.configure include("dtree_callbacks.jl") const CONFIGDIR = joinpath(dirname(@__FILE__), "..", "config") configure(::Type{Val{:ACASX_SA_Tree}}, configs::AbstractString...) = configure_path(CONFIGDIR, configs...) function train_dtree{T}(psa_params::PSAESParams, problem::ACASXClustering, Dl::DFSetLabeled{T}, maxdepth::Int64, loginterval::Int64) logs = default_logs() add_folder!(logs, "members", [ASCIIString, ASCIIString, Int64], ["members_true", "members_false", "decision_id"]) num_data = length(Dl) T1 = Bool #predict_type T2 = Int64 #label_type p = DTParams(num_data, maxdepth, T1, T2) dtree = build_tree(p, Dl, problem, psa_params, logs, loginterval) #userargs... return dtree, logs end function acasx_sa_tree(;outdir::AbstractString="./ACASX_SA_Tree", seed=1, logfileroot::AbstractString="acasx_sa_tree_log", runtype::Symbol=:nmacs_vs_nonnmacs, data::AbstractString="dasc", manuals::AbstractString="dasc_manual", clusterdataname::AbstractString="josh1", maxsteps::Int64=20, T1::Float64=12.184, alpha::Float64=0.99976, n_epochs::Int64=50, n_starts::Int64=1, n_threads::Int64=1, maxdepth::Int64=1, loginterval::Int64=100, vis::Bool=true, plotpdf::Bool=true, limit_members::Int64=10) mkpath(outdir) problem = ACASXClustering(runtype, data, manuals, clusterdataname) observer = Observer() par_observer = Observer() sa_params = SAESParams(maxsteps, T1, alpha, n_epochs, n_starts, observer) psa_params = PSAESParams(n_threads, sa_params, par_observer) Dl = problem.Dl dtree, logs = train_dtree(psa_params, problem, Dl, maxdepth, loginterval) #add to log push!(logs, "parameters", ["seed", seed, 0]) push!(logs, "parameters", ["runtype", runtype, 0]) push!(logs, "parameters", ["clusterdataname", clusterdataname, 0]) outfile = joinpath(outdir, "$(logfileroot).txt") save_log(outfile, logs) #visualize if vis decisiontreevis(dtree, Dl, joinpath(outdir, "$(logfileroot)_vis"), limit_members, FMT_PRETTY, FMT_NATURAL; plotpdf=plotpdf) end return dtree, logs end end #module
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX meshv: <http://id.nlm.nih.gov/mesh/vocab#> PREFIX mesh: <http://id.nlm.nih.gov/mesh/> PREFIX text: <http://jena.apache.org/text#> PREFIX meshx: <http://mesh.medvik.cz/link/> PREFIX mesht: <http://www.medvik.cz/schema/mesh/vocab/#> SELECT distinct ?tstatus ?dui ?cui ?lang ?tty ?val ?tui ?scn WHERE { BIND('MH' as ?tty) BIND('CZE' as ?lang) ##BIND(mesh:D000998 as ?d) ?d rdf:type ?type FILTER(?type IN(meshv:TopicalDescriptor,meshv:GeographicalDescriptor,meshv:PublicationType,meshv:CheckTag,meshv:Qualifier)) ?d meshv:identifier ?dui . ?d meshv:active ?status . ?d meshv:preferredConcept ?c . ?c meshv:identifier ?cui . ?c mesht:preferredTerm ?t . ?t mesht:prefLabel ?val . BIND(STR(?val) AS ?str) OPTIONAL { ?t mesht:identifier ?tui } OPTIONAL { ?t mesht:active ?tstatus } OPTIONAL { ?c mesht:scopeNote ?scnval BIND(STR(?scnval) AS ?scn) } } LIMIT 100
/* * Copyright 2015 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.netflix.spinnaker.clouddriver.titus.deploy.converters import com.netflix.spinnaker.clouddriver.deploy.DeployAtomicOperation import com.netflix.spinnaker.clouddriver.orchestration.AtomicOperation import com.netflix.spinnaker.clouddriver.orchestration.AtomicOperations import com.netflix.spinnaker.clouddriver.security.AbstractAtomicOperationsCredentialsSupport import com.netflix.spinnaker.clouddriver.titus.TitusOperation import com.netflix.spinnaker.clouddriver.titus.deploy.description.TitusDeployDescription import org.springframework.stereotype.Component @TitusOperation(AtomicOperations.CREATE_SERVER_GROUP) @Component class TitusDeployAtomicOperationConverter extends AbstractAtomicOperationsCredentialsSupport { AtomicOperation convertOperation(Map input) { new DeployAtomicOperation(convertDescription(input)) } TitusDeployDescription convertDescription(Map input) { def converted = objectMapper.convertValue(input, TitusDeployDescription) converted.credentials = getCredentialsObject(input.credentials as String) converted } }
// SPDX-License-Identifier: MIT // Copyright (c) 2015-2021 Zig Contributors // This file is part of [zig](https://ziglang.org/), which is MIT licensed. // The MIT license requires this copyright notice to be included in all copies // and substantial portions of the software. const uefi = @import("std").os.uefi; const Guid = uefi.Guid; const Status = uefi.Status; const hii = uefi.protocols.hii; /// Display a popup window pub const HIIPopupProtocol = extern struct { revision: u64, _create_popup: fn (*const HIIPopupProtocol, HIIPopupStyle, HIIPopupType, hii.HIIHandle, u16, ?*HIIPopupSelection) callconv(.C) Status, /// Displays a popup window. pub fn createPopup(self: *const HIIPopupProtocol, style: HIIPopupStyle, popup_type: HIIPopupType, handle: hii.HIIHandle, msg: u16, user_selection: ?*HIIPopupSelection) Status { return self._create_popup(self, style, popup_type, handle, msg, user_selection); } pub const guid align(8) = Guid{ .time_low = 0x4311edc0, .time_mid = 0x6054, .time_high_and_version = 0x46d4, .clock_seq_high_and_reserved = 0x9e, .clock_seq_low = 0x40, .node = [_]u8{ 0x89, 0x3e, 0xa9, 0x52, 0xfc, 0xcc }, }; }; pub const HIIPopupStyle = extern enum(u32) { Info, Warning, Error, }; pub const HIIPopupType = extern enum(u32) { Ok, Cancel, YesNo, YesNoCancel, }; pub const HIIPopupSelection = extern enum(u32) { Ok, Cancel, Yes, No, };
/* * Copyright 2012-2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.boot.cli; import java.io.File; import java.net.URI; import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import static org.assertj.core.api.Assertions.assertThat; /** * Integration tests to exercise the samples. * * @author Dave Syer * @author Greg Turnquist * @author Roy Clarkson * @author Phillip Webb */ public class SampleIntegrationTests { @Rule public CliTester cli = new CliTester("samples/"); @Test public void appSample() throws Exception { String output = this.cli.run("app.groovy"); URI scriptUri = new File("samples/app.groovy").toURI(); assertThat(output).contains("Hello World! From " + scriptUri); } @Test public void retrySample() throws Exception { String output = this.cli.run("retry.groovy"); URI scriptUri = new File("samples/retry.groovy").toURI(); assertThat(output).contains("Hello World! From " + scriptUri); } @Test public void beansSample() throws Exception { this.cli.run("beans.groovy"); String output = this.cli.getHttpOutput(); assertThat(output).contains("Hello World!"); } @Test public void templateSample() throws Exception { String output = this.cli.run("template.groovy"); assertThat(output).contains("Hello World!"); } @Test public void jobSample() throws Exception { String output = this.cli.run("job.groovy", "foo=bar"); assertThat(output).contains("completed with the following parameters"); } @Test public void oauth2Sample() throws Exception { String output = this.cli.run("oauth2.groovy"); assertThat(output).contains("security.oauth2.client.client-id"); assertThat(output).contains("security.oauth2.client.client-secret ="); } @Test public void reactorSample() throws Exception { String output = this.cli.run("reactor.groovy", "Phil"); int count = 0; while (!output.contains("Hello Phil") && count++ < 5) { Thread.sleep(200); output = this.cli.getOutput(); } assertThat(output).contains("Hello Phil"); } @Test public void jobWebSample() throws Exception { String output = this.cli.run("job.groovy", "web.groovy", "foo=bar"); assertThat(output).contains("completed with the following parameters"); String result = this.cli.getHttpOutput(); assertThat(result).isEqualTo("World!"); } @Test public void webSample() throws Exception { this.cli.run("web.groovy"); assertThat(this.cli.getHttpOutput()).isEqualTo("World!"); } @Test public void uiSample() throws Exception { this.cli.run("ui.groovy", "--classpath=.:src/test/resources"); String result = this.cli.getHttpOutput(); assertThat(result).contains("Hello World"); result = this.cli.getHttpOutput("/css/bootstrap.min.css"); assertThat(result).contains("container"); } @Test public void actuatorSample() throws Exception { this.cli.run("actuator.groovy"); assertThat(this.cli.getHttpOutput()).isEqualTo("{\"message\":\"Hello World!\"}"); } @Test public void httpSample() throws Exception { String output = this.cli.run("http.groovy"); assertThat(output).contains("Hello World"); } @Test public void integrationSample() throws Exception { String output = this.cli.run("integration.groovy"); assertThat(output).contains("Hello, World"); } @Test public void xmlSample() throws Exception { String output = this.cli.run("runner.xml", "runner.groovy"); assertThat(output).contains("Hello World"); } @Test public void txSample() throws Exception { String output = this.cli.run("tx.groovy"); assertThat(output).contains("Foo count="); } @Test public void jmsSample() throws Exception { System.setProperty("spring.artemis.embedded.queues", "spring-boot"); try { String output = this.cli.run("jms.groovy"); assertThat(output).contains("Received Greetings from Spring Boot via Artemis"); } finally { System.clearProperty("spring.artemis.embedded.queues"); } } @Test @Ignore("Requires RabbitMQ to be run, so disable it be default") public void rabbitSample() throws Exception { String output = this.cli.run("rabbit.groovy"); assertThat(output).contains("Received Greetings from Spring Boot via RabbitMQ"); } @Test public void deviceSample() throws Exception { this.cli.run("device.groovy"); assertThat(this.cli.getHttpOutput()).isEqualTo("Hello Normal Device!"); } @Test public void caching() throws Exception { this.cli.run("caching.groovy"); assertThat(this.cli.getOutput()).contains("Hello World"); } }
package com.rubyfood.features.alarm.model /** * Created by Saikat on 21-02-2019. */ class VisitReportDataModel { var member_name: String? = null var member_id: String? = null var total_shop_count: String? = null var report_to: String? = null var total_distance_travelled: String? = null var visit_details_list: ArrayList<VisitDetailsDataModel>? = null }
<?php /** * @license Copyright 2011-2014 BitPay Inc., MIT License * see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE */ namespace Bitpay\Storage; /** * @package Bitcore */ interface StorageInterface { /** * @param KeyInterface $key */ public function persist(\Bitpay\KeyInterface $key); /** * @param string $id * * @return KeyInterface */ public function load($id); }
pragma solidity ^0.6.1; /* Our first contract is a faucet */ contract Faucet { // Give out ether to anyone who asks function withdraw(uint withdraw_amount) public { // Limit withdrawal amount require(withdraw_amount <= 100000000000000000); // Send the amount to the address that requested it msg.sender.transfer(withdraw_amount); } function getBalance() public view returns(uint256) { return address(this).balance; } // Accept any incoming amount receive() external payable {} }
<%@ taglib prefix="s" uri="http://www.springframework.org/tags"%> <%@ taglib prefix="sf" uri="http://www.springframework.org/tags/form" %> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>MyRetail - Create Product Form</title> <%-- Bootstrap --%> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> </head> <body> <div class="container"> <h2>Create Product</h2> <form method="post" action="createFromForm"> Name: <input type="text" name="name"/><br/><br/> Price: <input type="text" name="price"><br/><br/> Currency <input type="text" name="currency"><br/><br/> Department: <select name="department"> <option>Entertainment</option> <option>Outdoor</option> <option>Apparel</option> <option>Home</option> <option>Misc</option> </select><br/><br/> <button type="submit">Add Product</button> </form> </div> </body> </html>
unit EF.Sys.Linux; interface implementation uses SysUtils , Classes , Posix.Base , Posix.Fcntl , EF.Sys ; type TEFSysLinux = class(TEFSys) public function GetUserName: string; override; // Execute and wait. function ExecuteCommand(const ACommand: string): Integer; override; end; { TEFSysLinux } // http://man7.org/linux/man-pages/man3/system.3p.html function system(const command: MarshaledAString): Integer; cdecl; external libc name _PU + 'system'; function TEFSysLinux.ExecuteCommand(const ACommand: string): Integer; begin Result := system(@(TEncoding.ASCII.GetBytes(ACommand) + [0])[0]); end; function TEFSysLinux.GetUserName: string; begin Result := GetEnvironmentVariable('USER'); end; initialization EF.Sys.EFSys := TEFSysLinux.Create; end.
@; -*- coding: utf-8 -*- @subsection[:tag "text.html-lite"]{(text html-lite) - Simple HTML document builder library} @define[Library]{@name{(text html-lite)}} @desc{This library provides simple HTML builder procedures based on HTML5.} @define[Function]{@name{html-escape} @args{:optional (in (current-input-port))}} @define[Function]{@name{html-escape-string} @args{string}} @desc{Escapes the unsafe characters in HTML and returns escaped string. The @code{html-escape} reads the string from optional argument @var{in} which must be an textual input port and returns an escaped string. The @code{html-escape-string} takes a string and returns an escaped string. } @define[Function]{@name{html-doctype} @args{:key (type :html-4.01-strict)}} @desc{Returns a doctype declaration for an HTML document. @var{type} can be one of the followings; @dl-list{ @dl-item[@code{:html-5}]{ HTML 5 } @dl-item[@code{:html-4.01-strict :html-4.01, :strict, :html-strict}]{ HTML 4.01 Strict DTD } @dl-item[@code{:html-4.01-transitional :html-transitional, :transitional}]{ HTML 4.01 Transitional DTD } @dl-item[@code{:xhtml-1.0-strict :xhtml-1.0}]{ XHTML 1.0 Strict DTD } @dl-item[@code{:xhtml-1.0-transitional}]{ XHTML 1.0 Transitional DTD } @dl-item[@code{:xhtml-1.0-frameset}]{ XHTML 1.0 Frameset DTD } @dl-item[@code{:xhtml-1.1}]{ XHTML 1.1 DTD } } } @define[Function]{@name{html:@var{element}} @args{args @dots{}}} @desc{Construct an HTML element @var{element}. Currently following elements are provided. @codeblock{ a abbr address area article aside audio b base bdi bdo blockquote body br button canvas caption cite code col colgroup command datalist dd del details dfn div dl dt em embed fieldset figcaption figure footer form h1 h2 h3 h4 h5 h6 head header hgroup hr html i iframe img input ins kbd keygen label legend li link map mark menu meta meter nav noscript object ol optgroup option output p param pre progress q rp rt ruby s samp script section select small source span strong style sub summary sup table tbody td textarea tfoot th thead time title tr track u ul var video wbr } The result of these functions is a tree of text segments, which can be written out to a port by @code{write-tree} or can be converted to a string by @code{tree->string} @secref["text.tree"]{(text tree) - Lightweight text generation}. You can specify attributes of the element by using a keyword-value notation before the actual content. @snipet[=> "<a href=\"http://example.com\">example</a>"]{ (tree->string (html:a :href "http://example.com" "example")) } The boolean value given to the attribute has special meaning. If #t is given, the attribute is rendered without a value. If #f is given, the attribute is not rendered. @snipet[=> "<table border></table>"]{(tree->string (html:table :border #t))} @snipet[=> "<table></table>"]{(tree->string (html:table :border #f))} Special characters in attribute values are escaped by the function, but the ones in the content are not. @snipet[=> "<div foo=\"&lt;&gt;&amp;&quot;\"><not escaped></div>"]{ (tree->string (html:div :foo "<>&\"" "<not escaped>")) } }
#!/usr/bin/env bash GH_USERNAME=$1 IMAGE_ID=$2 IMAGE_NAME=$3 VERSION=$4 echo 'The following docker command deploys your docker built image' echo 'into the target github repository as a github package' # Step 1: Authenticate set -x cat ~/GH_TOKEN.txt | docker login docker.pkg.github.com -u ${GH_USERNAME} --password-stdin set +x # Step 2: Tag set -x docker tag ${IMAGE_ID} docker.pkg.github.com/${GH_USERNAME}/docker-packaging/${IMAGE_NAME}:${VERSION} set +x # Step 3: Publish set -x docker push docker.pkg.github.com/${GH_USERNAME}/docker-packaging/${IMAGE_NAME}:${VERSION} set +x
set env=%1 set plat=%2 xcopy ..\%plat%\%env%\WtDataWriter.dll ..\%plat%\%env%\WtDtPorter\ /C /Y xcopy ..\%plat%\%env%\ParserCTP.dll ..\%plat%\%env%\WtDtPorter\ /C /Y xcopy ..\%plat%\%env%\ParserXTP.dll ..\%plat%\%env%\WtDtPorter\ /C /Y xcopy ..\%plat%\%env%\ParserCTPMini.dll ..\%plat%\%env%\WtDtPorter\ /C /Y xcopy ..\%plat%\%env%\ParserFemas.dll ..\%plat%\%env%\WtDtPorter\ /C /Y xcopy ..\%plat%\%env%\ParseriTap.dll ..\%plat%\%env%\WtDtPorter\ /C /Y
--- title: wcsrtombs_s ms.date: 4/2/2020 api_name: - wcsrtombs_s - _o_wcsrtombs_s api_location: - msvcrt.dll - msvcr80.dll - msvcr90.dll - msvcr100.dll - msvcr100_clr0400.dll - msvcr110.dll - msvcr110_clr0400.dll - msvcr120.dll - msvcr120_clr0400.dll - ucrtbase.dll - api-ms-win-crt-convert-l1-1-0.dll - api-ms-win-crt-private-l1-1-0.dll api_type: - DLLExport topic_type: - apiref f1_keywords: - wcsrtombs_s helpviewer_keywords: - string conversion, wide characters - wcsrtombs_s function - wide characters, strings ms.assetid: 9dccb766-113c-44bb-9b04-07a634dddec8 ms.openlocfilehash: c804d232dbcce67b8d467eaa37ccf2b15282881a ms.sourcegitcommit: 5a069c7360f75b7c1cf9d4550446ec2fa2eb2293 ms.translationtype: MT ms.contentlocale: zh-CN ms.lasthandoff: 05/07/2020 ms.locfileid: "82910600" --- # <a name="wcsrtombs_s"></a>wcsrtombs_s 将宽字符字符串转换为多字节字符串表示形式。 [wcsrtombs](wcsrtombs.md) 的一个版本,具有 [CRT 中的安全功能](../../c-runtime-library/security-features-in-the-crt.md)中所述的安全增强功能。 ## <a name="syntax"></a>语法 ```C errno_t wcsrtombs_s( size_t *pReturnValue, char *mbstr, size_t sizeInBytes, const wchar_t **wcstr, sizeof count, mbstate_t *mbstate ); template <size_t size> errno_t wcsrtombs_s( size_t *pReturnValue, char (&mbstr)[size], const wchar_t **wcstr, sizeof count, mbstate_t *mbstate ); // C++ only ``` ### <a name="parameters"></a>参数 *pReturnValue*<br/> 转换后的字符串(包括 null 终止符)的大小(以字节为单位)。 *mbstr*<br/> 生成的已转换多字节字符字符串的缓冲区的地址。 *sizeInBytes*<br/> *Mbstr*缓冲区的大小(以字节为单位)。 *wcstr*<br/> 指向要转换的宽字符字符串的指针。 *计数*<br/> 要存储在*mbstr*缓冲区中的最大字节数,或[_TRUNCATE](../../c-runtime-library/truncate.md)。 *mbstate*<br/> 指向**mbstate_t**转换状态对象的指针。 ## <a name="return-value"></a>返回值 如果成功,返回零;如果失败,则返回错误代码。 |添加状态|返回值和**errno**| |---------------------|------------------------------| |*mbstr*为**NULL** , *sizeInBytes* > 0|**EINVAL**| |*wcstr*为**NULL**|**EINVAL**| |目标缓冲区太小,无法包含转换后的字符串(除非 **_TRUNCATE**了*count* ; 请参阅下面的备注)|**ERANGE**| 如果发生这些情况中的任何一个,都会调用无效参数异常,如[参数验证](../../c-runtime-library/parameter-validation.md)中所述。 如果允许执行继续,则该函数将返回错误代码并按表中所示设置**errno** 。 ## <a name="remarks"></a>备注 **Wcsrtombs_s**函数使用*mbstate*中包含的转换状态,将*wcstr*指向的宽字符字符串转换为存储在由*mbstr*指向的缓冲区中的多字节字符。 在满足以下条件之一前,该转换将一直对每个字符执行: - 遇到 null 宽字符 - 遇到无法转换的宽字符 - *Mbstr*缓冲区中存储的字节数等于*计数*。 目标字符串始终以 null 结尾(即使在出错时)。 如果*count*是[_TRUNCATE](../../c-runtime-library/truncate.md)的特殊值,则**wcsrtombs_s**会将尽可能多的字符串转换为目标缓冲区的大小,同时仍然为 null 终止符留下空间。 如果**wcsrtombs_s**成功转换源字符串,则会将转换后的字符串的大小(以字节为单位)放入 *&#42;pReturnValue* (提供的*pReturnValue*不为**null**)。 即使*mbstr*参数为**NULL** ,并且提供了一种方法来确定所需的缓冲区大小,也会发生这种情况。 请注意,如果*mbstr*为**NULL**,则忽略*count* 。 如果**wcsrtombs_s**遇到不能转换为多字节字符的宽字符,则它将* \*pReturnValue*中的-1,将目标缓冲区设置为空字符串,**将 errno**设置为**eilseq 且**,并返回**eilseq 且**。 如果由*wcstr*和*mbstr*指向的序列重叠,则**wcsrtombs_s**的行为是不确定的。 **wcsrtombs_s**受当前区域设置的 LC_TYPE 类别的影响。 > [!IMPORTANT] > 确保*wcstr*和*mbstr*不重叠,并且该*计数*正确反映了要转换的宽字符数。 **Wcsrtombs_s**函数不同于可重启性[_wcstombs_s_l wcstombs_s](wcstombs-s-wcstombs-s-l.md) 。 转换状态存储在*mbstate*中,以便后续调用相同的或其他可重启的函数。 混合使用可重启函数和不可重启函数时,结果不确定。 例如,如果使用了对**wcsrtombs_s**的后续调用而不是**wcstombs_s**,应用程序将使用**wcsrlen**而不是**wcslen**。 在 C++ 中,使用这些函数由模板重载简化;重载可以自动推导出缓冲区长度 (不再需要指定大小自变量),并且它们可以自动用以更新、更安全的对应物替换旧的、不安全的函数。 有关详细信息,请参阅[安全模板重载](../../c-runtime-library/secure-template-overloads.md)。 默认情况下,此函数的全局状态的作用域限定为应用程序。 若要更改此项,请参阅[CRT 中的全局状态](../global-state.md)。 ## <a name="exceptions"></a>例外 只要当前线程中的任何函数在执行此函数时都不会调用**setlocale** ,并且*mbstate*为 null, **wcsrtombs_s**函数就是多线程安全的。 ## <a name="example"></a>示例 ```cpp // crt_wcsrtombs_s.cpp // // This code example converts a wide // character string into a multibyte // character string. // #include <stdio.h> #include <memory.h> #include <wchar.h> #include <errno.h> #define MB_BUFFER_SIZE 100 int main() { const wchar_t wcString[] = {L"Every good boy does fine."}; const wchar_t *wcsIndirectString = wcString; char mbString[MB_BUFFER_SIZE]; size_t countConverted; errno_t err; mbstate_t mbstate; // Reset to initial shift state ::memset((void*)&mbstate, 0, sizeof(mbstate)); err = wcsrtombs_s(&countConverted, mbString, MB_BUFFER_SIZE, &wcsIndirectString, MB_BUFFER_SIZE, &mbstate); if (err == EILSEQ) { printf( "An encoding error was detected in the string.\n" ); } else { printf( "The string was successfully converted.\n" ); } } ``` ```Output The string was successfully converted. ``` ## <a name="requirements"></a>要求 |例程|必需的标头| |-------------|---------------------| |**wcsrtombs_s**|\<wchar.h>| ## <a name="see-also"></a>另请参阅 [数据转换](../../c-runtime-library/data-conversion.md)<br/> [本地](../../c-runtime-library/locale.md)<br/> [多字节字符序列的解释](../../c-runtime-library/interpretation-of-multibyte-character-sequences.md)<br/> [wcrtomb](wcrtomb.md)<br/> [wcrtomb_s](wcrtomb-s.md)<br/> [wctomb、_wctomb_l](wctomb-wctomb-l.md)<br/> [wcstombs、_wcstombs_l](wcstombs-wcstombs-l.md)<br/> [mbsinit](mbsinit.md)<br/>
package com.kbapps.ephemeris import com.kbapps.ephemeris.type.ElevationType import com.kbapps.ephemeris.type.TwilightType object Constants { /** * Radians to degrees. */ const val RAD_TO_DEG = 180.0 / Math.PI /** * Degrees to radians. */ const val DEG_TO_RAD = 1.0 / RAD_TO_DEG /** * Radians to hours. */ private const val RAD_TO_HOUR = 180.0 / (15.0 * Math.PI) /** * Radians to days. */ private const val RAD_TO_DAY = RAD_TO_HOUR / 24.0 /** * Astronomical Unit in km. As defined by JPL. */ const val AU = 149597870.691 /** * Earth equatorial radius in km. IERS 2003 Conventions. */ const val EARTH_RADIUS = 6378.1366 const val EARTH_RADIUS_AU = EARTH_RADIUS / AU /** * 2.0 * Pi. */ const val TWO_PI = 2.0 * Math.PI /** * The inverse of 2.0 * Pi. */ const val TWO_PI_INVERSE = 1.0 / (2.0 * Math.PI) /** * 4.0 * Pi. */ const val FOUR_PI = 4.0 * Math.PI /** * Pi / 2.0. */ const val PI_OVER_TWO = Math.PI / 2.0 /** * Length of a sidereal day in days according to IERS Conventions. */ private const val SIDEREAL_DAY_LENGTH = 1.00273781191135448 /** * Julian century conversion constant = 100 * days per year. */ const val JULIAN_DAYS_PER_CENTURY = 36525.0 /** * Seconds in one day. */ const val SECONDS_PER_DAY = 86400.0 /** * Our default epoch. * The Julian Day which represents noon on 2000-01-01. */ const val J2000 = 2451545.0 const val celestialHoursToEarthTime = RAD_TO_DAY / SIDEREAL_DAY_LENGTH var LUNAR_PERIOD = 29.530588853 val TWILIGHTS: Map<TwilightType, Array<ElevationType>> = mapOf( TwilightType.GOLDEN_HOURS to arrayOf(ElevationType.DEG_BELOW_4, ElevationType.DEG_ABOVE_6), TwilightType.BLUE_HOURS to arrayOf(ElevationType.DEG_BELOW_6, ElevationType.DEG_BELOW_4), TwilightType.CIVIL to arrayOf(ElevationType.DEG_BELOW_6, ElevationType.HORIZON), TwilightType.NAUTICAL to arrayOf(ElevationType.DEG_BELOW_12, ElevationType.DEG_BELOW_6), TwilightType.ASTRONOMICAL to arrayOf(ElevationType.DEG_BELOW_18, ElevationType.DEG_BELOW_12) ) }
module Test.Info2.Cyp.Proof where import Control.Monad.State import Test.Info2.Cyp.Env import Test.Info2.Cyp.Term import Test.Info2.Cyp.Types toInterpretedEqns :: EqnSeqq RawTerm -> Env -> (EqnSeqq Term, Env) toInterpretedEqns reqns env = runState (traverse (state . declareTerm) reqns) env
# label.tcl -- # # This demonstration script creates a toplevel window containing # several label widgets. # # RCS: @(#) $Id: label.tcl,v 1.6 2004/12/21 11:56:35 dkf Exp $ if {![info exists widgetDemo]} { error "This script should be run from the \"widget\" demo." } package require Tk set w .label catch {destroy $w} toplevel $w wm title $w "Label Demonstration" wm iconname $w "label" positionWindow $w label $w.msg -font $font -wraplength 4i -justify left -text "Five labels are displayed below: three textual ones on the left, and a bitmap label and a text label on the right. Labels are pretty boring because you can't do anything with them." pack $w.msg -side top ## See Code / Dismiss buttons set btns [addSeeDismiss $w.buttons $w] pack $btns -side bottom -fill x frame $w.left frame $w.right pack $w.left $w.right -side left -expand yes -padx 10 -pady 10 -fill both label $w.left.l1 -text "First label" label $w.left.l2 -text "Second label, raised" -relief raised label $w.left.l3 -text "Third label, sunken" -relief sunken pack $w.left.l1 $w.left.l2 $w.left.l3 -side top -expand yes -pady 2 -anchor w # Main widget program sets variable tk_demoDirectory label $w.right.bitmap -borderwidth 2 -relief sunken \ -bitmap @[file join $tk_demoDirectory images face.xbm] label $w.right.caption -text "Tcl/Tk Proprietor" pack $w.right.bitmap $w.right.caption -side top
# This file must be used with "source bin/activate.csh" *from csh*. # You cannot run it directly. # Created by Davide Di Blasi <davidedb@gmail.com>. # Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com> alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate' # Unset irrelevant variables. deactivate nondestructive setenv VIRTUAL_ENV "/Users/eric/Documents/GitHub/gmaps_popular_times_scraper" set _OLD_VIRTUAL_PATH="$PATH" setenv PATH "$VIRTUAL_ENV/bin:$PATH" set _OLD_VIRTUAL_PROMPT="$prompt" if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then set prompt = "(gmaps_popular_times_scraper) $prompt" endif alias pydoc python -m pydoc rehash
(defvar themes-megapack-packages '( afternoon-theme alect-themes ample-theme ample-zen-theme anti-zenburn-theme ;; contains errors ; badger-theme base16-theme birds-of-paradise-plus-theme bubbleberry-theme busybee-theme cherry-blossom-theme clues-theme color-theme-sanityinc-solarized color-theme-sanityinc-tomorrow color-theme-solarized colorsarenice-theme cyberpunk-theme dakrone-theme darkburn-theme darkmine-theme django-theme espresso-theme firebelly-theme flatland-theme flatui-theme gandalf-theme grandshell-theme gruber-darker-theme gruvbox-theme hc-zenburn-theme hemisu-theme heroku-theme inkpot-theme ir-black-theme leuven-theme light-soap-theme lush-theme minimal-theme moe-theme molokai-theme monokai-theme monochrome-theme mustang-theme naquadah-theme niflheim-theme noctilux-theme obsidian-theme occidental-theme oldlace-theme organic-green-theme pastels-on-dark-theme phoenix-dark-mono-theme phoenix-dark-pink-theme planet-theme professional-theme purple-haze-theme reverse-theme seti-theme smyx-theme soft-charcoal-theme soft-morning-theme soft-stone-theme soothe-theme spacegray-theme stekene-theme subatomic-theme subatomic256-theme sublime-themes sunny-day-theme tango-2-theme tango-plus-theme tangotango-theme ;; contains error ; tommyh-theme toxi-theme tronesque-theme twilight-anti-bright-theme twilight-bright-theme twilight-theme ujelly-theme underwater-theme zen-and-art-theme zenburn-theme zonokai-theme ) "List of all packages to install and/or initialized. Built-in packages which require an initialization must be listed explicitly in the list.")
(** * Copyright (c) 2019, Facebook, Inc. * All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the "hack" directory of this source tree. * *) val should_check_error : FileInfo.mode -> int -> bool
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.00.23506.0 TITLE D:\Projects\TaintAnalysis\AntiTaint\Epilog\src\func-rets.c .686P .XMM include listing.inc .model flat INCLUDELIB MSVCRT INCLUDELIB OLDNAMES PUBLIC ___local_stdio_printf_options PUBLIC __vfprintf_l PUBLIC _printf PUBLIC _func PUBLIC _main EXTRN __imp____acrt_iob_func:PROC EXTRN __imp____stdio_common_vfprintf:PROC EXTRN _gets:PROC _DATA SEGMENT COMM ?_OptionsStorage@?1??__local_stdio_printf_options@@9@9:QWORD ; `__local_stdio_printf_options'::`2'::_OptionsStorage _DATA ENDS ; Function compile flags: /Ogtp ; File d:\projects\taintanalysis\antitaint\epilog\src\func-rets.c ; COMDAT _main _TEXT SEGMENT $T1 = -80 ; size = 20 $T2 = -80 ; size = 20 _b$ = -80 ; size = 20 _a$2$ = -48 ; size = 16 _b$2$ = -32 ; size = 16 $T3 = -32 ; size = 20 _main PROC ; COMDAT ; 25 : { push ebx mov ebx, esp sub esp, 8 and esp, -16 ; fffffff0H add esp, 4 push ebp mov ebp, DWORD PTR [ebx+4] mov DWORD PTR [esp+4], ebp mov ebp, esp sub esp, 80 ; 00000050H ; 26 : struct S a,b,c; ; 27 : int z = 0; ; 28 : a = func(); lea eax, DWORD PTR $T3[ebp] push eax call _func movups xmm0, XMMWORD PTR [eax] ; 29 : z += a.a; ; 30 : b = func(); lea eax, DWORD PTR $T2[ebp] push eax movaps XMMWORD PTR _a$2$[ebp], xmm0 call _func movups xmm0, XMMWORD PTR [eax] mov eax, DWORD PTR [eax+16] mov DWORD PTR _b$[ebp+16], eax ; 31 : c = func(); lea eax, DWORD PTR $T1[ebp] push eax movaps XMMWORD PTR _b$2$[ebp], xmm0 call _func ; 32 : z += c.c + b.b; movaps xmm1, XMMWORD PTR _b$2$[ebp] add esp, 12 ; 0000000cH psrldq xmm1, 4 movd ecx, xmm1 movups xmm0, XMMWORD PTR [eax] psrldq xmm0, 8 movd eax, xmm0 movaps xmm0, XMMWORD PTR _a$2$[ebp] add eax, ecx movd ecx, xmm0 add eax, ecx ; 33 : return z; ; 34 : } mov esp, ebp pop ebp mov esp, ebx pop ebx ret 0 _main ENDP _TEXT ENDS ; Function compile flags: /Ogtp ; File d:\projects\taintanalysis\antitaint\epilog\src\func-rets.c ; COMDAT _func _TEXT SEGMENT _buf$ = -8 ; size = 8 $T1 = 8 ; size = 4 _func PROC ; COMDAT ; 15 : { push ebp mov ebp, esp sub esp, 8 ; 16 : char buf[8]; ; 17 : struct S s; ; 18 : s.a = (int)gets(buf) - (int)buf; lea eax, DWORD PTR _buf$[ebp] push esi push eax call _gets mov esi, DWORD PTR $T1[ebp] lea ecx, DWORD PTR _buf$[ebp] sub eax, ecx mov DWORD PTR [esi], eax ; 19 : s.b = printf(buf); mov eax, ecx push eax call _printf ; 20 : s.c = s.a + s.b; mov ecx, DWORD PTR [esi] add esp, 8 add ecx, eax mov DWORD PTR [esi+4], eax mov DWORD PTR [esi+8], ecx ; 21 : return s; mov eax, esi pop esi ; 22 : } mov esp, ebp pop ebp ret 0 _func ENDP _TEXT ENDS ; Function compile flags: /Ogtp ; File c:\program files (x86)\windows kits\10\include\10.0.10240.0\ucrt\stdio.h ; COMDAT _printf _TEXT SEGMENT __Format$ = 8 ; size = 4 _printf PROC ; COMDAT ; 950 : { push ebp mov ebp, esp ; 951 : int _Result; ; 952 : va_list _ArgList; ; 953 : __crt_va_start(_ArgList, _Format); ; 954 : _Result = _vfprintf_l(stdout, _Format, NULL, _ArgList); lea eax, DWORD PTR __Format$[ebp+4] push eax push 0 push DWORD PTR __Format$[ebp] push 1 call DWORD PTR __imp____acrt_iob_func add esp, 4 push eax call __vfprintf_l add esp, 16 ; 00000010H ; 955 : __crt_va_end(_ArgList); ; 956 : return _Result; ; 957 : } pop ebp ret 0 _printf ENDP _TEXT ENDS ; Function compile flags: /Ogtp ; File c:\program files (x86)\windows kits\10\include\10.0.10240.0\ucrt\stdio.h ; COMDAT __vfprintf_l _TEXT SEGMENT __Stream$ = 8 ; size = 4 __Format$ = 12 ; size = 4 __Locale$ = 16 ; size = 4 __ArgList$ = 20 ; size = 4 __vfprintf_l PROC ; COMDAT ; 638 : { push ebp mov ebp, esp ; 639 : return __stdio_common_vfprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, _Stream, _Format, _Locale, _ArgList); push DWORD PTR __ArgList$[ebp] push DWORD PTR __Locale$[ebp] push DWORD PTR __Format$[ebp] push DWORD PTR __Stream$[ebp] call ___local_stdio_printf_options push DWORD PTR [eax+4] push DWORD PTR [eax] call DWORD PTR __imp____stdio_common_vfprintf add esp, 24 ; 00000018H ; 640 : } pop ebp ret 0 __vfprintf_l ENDP _TEXT ENDS ; Function compile flags: /Ogtp ; File c:\program files (x86)\windows kits\10\include\10.0.10240.0\ucrt\corecrt_stdio_config.h ; COMDAT ___local_stdio_printf_options _TEXT SEGMENT ___local_stdio_printf_options PROC ; COMDAT ; 74 : static unsigned __int64 _OptionsStorage; ; 75 : return &_OptionsStorage; mov eax, OFFSET ?_OptionsStorage@?1??__local_stdio_printf_options@@9@9 ; `__local_stdio_printf_options'::`2'::_OptionsStorage ; 76 : } ret 0 ___local_stdio_printf_options ENDP _TEXT ENDS END
package cmd import ( "fmt" "os" "github.com/qorbani/mysql-toolkit/drivers" "github.com/spf13/cobra" "github.com/spf13/viper" ) var cfgFile string var sql *drivers.MySQL var err error // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ Use: "mysql-toolkit", Short: "MySQL Toolkit", Long: `MySQL Toolkit is a light-weight CLI to help you run queries via the command line.`, Run: func(cmd *cobra.Command, args []string) {}, } // Execute executes the root command. func Execute() error { return rootCmd.Execute() } func init() { cobra.OnInitialize(initConfig) rootCmd.PersistentFlags().StringVarP(&cfgFile, "config", "c", "", "config file (default is $HOME/.mysql-toolkit.yaml)") rootCmd.PersistentFlags().StringP("server", "s", "127.0.0.1", "MySQL server host name") rootCmd.PersistentFlags().StringP("user", "u", "root", "username for MySQL server") rootCmd.PersistentFlags().StringP("pass", "p", "password", "password for MySQL server") rootCmd.PersistentFlags().StringP("db", "d", "", "database name to select") viper.BindPFlag("server", rootCmd.PersistentFlags().Lookup("server")) viper.BindPFlag("user", rootCmd.PersistentFlags().Lookup("user")) viper.BindPFlag("pass", rootCmd.PersistentFlags().Lookup("pass")) viper.BindPFlag("db", rootCmd.PersistentFlags().Lookup("db")) } func initConfig() { if cfgFile != "" { // Use config file from the flag. viper.SetConfigFile(cfgFile) } else { viper.SetConfigName(".mysql-toolkit") viper.AddConfigPath(".") viper.AddConfigPath("$HOME/") } viper.SetEnvPrefix("MYSQL_TOOLKIT") viper.AutomaticEnv() if err := viper.ReadInConfig(); err != nil { if _, ok := err.(viper.ConfigFileNotFoundError); ok { // Config file not found; ignore error if desired } else { fmt.Fprintln(os.Stderr, "Using config file:", viper.ConfigFileUsed()) fmt.Fprintln(os.Stderr, err) } } }
begin_version 3 end_version begin_metric 0 end_metric 20 begin_variable corner_0 -1 24 Atom at_and_rotated-towards(cubie_corner_0, location_0, directions_0) Atom at_and_rotated-towards(cubie_corner_0, location_0, directions_1) Atom at_and_rotated-towards(cubie_corner_0, location_0, directions_2) Atom at_and_rotated-towards(cubie_corner_0, location_1, directions_0) Atom at_and_rotated-towards(cubie_corner_0, location_1, directions_1) Atom at_and_rotated-towards(cubie_corner_0, location_1, directions_2) Atom at_and_rotated-towards(cubie_corner_0, location_2, directions_0) Atom at_and_rotated-towards(cubie_corner_0, location_2, directions_1) Atom at_and_rotated-towards(cubie_corner_0, location_2, directions_2) Atom at_and_rotated-towards(cubie_corner_0, location_3, directions_0) Atom at_and_rotated-towards(cubie_corner_0, location_3, directions_1) Atom at_and_rotated-towards(cubie_corner_0, location_3, directions_2) Atom at_and_rotated-towards(cubie_corner_0, location_4, directions_0) Atom at_and_rotated-towards(cubie_corner_0, location_4, directions_1) Atom at_and_rotated-towards(cubie_corner_0, location_4, directions_2) Atom at_and_rotated-towards(cubie_corner_0, location_5, directions_0) Atom at_and_rotated-towards(cubie_corner_0, location_5, directions_1) Atom at_and_rotated-towards(cubie_corner_0, location_5, directions_2) Atom at_and_rotated-towards(cubie_corner_0, location_6, directions_0) Atom at_and_rotated-towards(cubie_corner_0, location_6, directions_1) Atom at_and_rotated-towards(cubie_corner_0, location_6, directions_2) Atom at_and_rotated-towards(cubie_corner_0, location_7, directions_0) Atom at_and_rotated-towards(cubie_corner_0, location_7, directions_1) Atom at_and_rotated-towards(cubie_corner_0, location_7, directions_2) end_variable begin_variable corner_1 -1 24 Atom at_and_rotated-towards(cubie_corner_1, location_0, directions_0) Atom at_and_rotated-towards(cubie_corner_1, location_0, directions_1) Atom at_and_rotated-towards(cubie_corner_1, location_0, directions_2) Atom at_and_rotated-towards(cubie_corner_1, location_1, directions_0) Atom at_and_rotated-towards(cubie_corner_1, location_1, directions_1) Atom at_and_rotated-towards(cubie_corner_1, location_1, directions_2) Atom at_and_rotated-towards(cubie_corner_1, location_2, directions_0) Atom at_and_rotated-towards(cubie_corner_1, location_2, directions_1) Atom at_and_rotated-towards(cubie_corner_1, location_2, directions_2) Atom at_and_rotated-towards(cubie_corner_1, location_3, directions_0) Atom at_and_rotated-towards(cubie_corner_1, location_3, directions_1) Atom at_and_rotated-towards(cubie_corner_1, location_3, directions_2) Atom at_and_rotated-towards(cubie_corner_1, location_4, directions_0) Atom at_and_rotated-towards(cubie_corner_1, location_4, directions_1) Atom at_and_rotated-towards(cubie_corner_1, location_4, directions_2) Atom at_and_rotated-towards(cubie_corner_1, location_5, directions_0) Atom at_and_rotated-towards(cubie_corner_1, location_5, directions_1) Atom at_and_rotated-towards(cubie_corner_1, location_5, directions_2) Atom at_and_rotated-towards(cubie_corner_1, location_6, directions_0) Atom at_and_rotated-towards(cubie_corner_1, location_6, directions_1) Atom at_and_rotated-towards(cubie_corner_1, location_6, directions_2) Atom at_and_rotated-towards(cubie_corner_1, location_7, directions_0) Atom at_and_rotated-towards(cubie_corner_1, location_7, directions_1) Atom at_and_rotated-towards(cubie_corner_1, location_7, directions_2) end_variable begin_variable corner_2 -1 24 Atom at_and_rotated-towards(cubie_corner_2, location_0, directions_0) Atom at_and_rotated-towards(cubie_corner_2, location_0, directions_1) Atom at_and_rotated-towards(cubie_corner_2, location_0, directions_2) Atom at_and_rotated-towards(cubie_corner_2, location_1, directions_0) Atom at_and_rotated-towards(cubie_corner_2, location_1, directions_1) Atom at_and_rotated-towards(cubie_corner_2, location_1, directions_2) Atom at_and_rotated-towards(cubie_corner_2, location_2, directions_0) Atom at_and_rotated-towards(cubie_corner_2, location_2, directions_1) Atom at_and_rotated-towards(cubie_corner_2, location_2, directions_2) Atom at_and_rotated-towards(cubie_corner_2, location_3, directions_0) Atom at_and_rotated-towards(cubie_corner_2, location_3, directions_1) Atom at_and_rotated-towards(cubie_corner_2, location_3, directions_2) Atom at_and_rotated-towards(cubie_corner_2, location_4, directions_0) Atom at_and_rotated-towards(cubie_corner_2, location_4, directions_1) Atom at_and_rotated-towards(cubie_corner_2, location_4, directions_2) Atom at_and_rotated-towards(cubie_corner_2, location_5, directions_0) Atom at_and_rotated-towards(cubie_corner_2, location_5, directions_1) Atom at_and_rotated-towards(cubie_corner_2, location_5, directions_2) Atom at_and_rotated-towards(cubie_corner_2, location_6, directions_0) Atom at_and_rotated-towards(cubie_corner_2, location_6, directions_1) Atom at_and_rotated-towards(cubie_corner_2, location_6, directions_2) Atom at_and_rotated-towards(cubie_corner_2, location_7, directions_0) Atom at_and_rotated-towards(cubie_corner_2, location_7, directions_1) Atom at_and_rotated-towards(cubie_corner_2, location_7, directions_2) end_variable begin_variable corner_3 -1 24 Atom at_and_rotated-towards(cubie_corner_3, location_0, directions_0) Atom at_and_rotated-towards(cubie_corner_3, location_0, directions_1) Atom at_and_rotated-towards(cubie_corner_3, location_0, directions_2) Atom at_and_rotated-towards(cubie_corner_3, location_1, directions_0) Atom at_and_rotated-towards(cubie_corner_3, location_1, directions_1) Atom at_and_rotated-towards(cubie_corner_3, location_1, directions_2) Atom at_and_rotated-towards(cubie_corner_3, location_2, directions_0) Atom at_and_rotated-towards(cubie_corner_3, location_2, directions_1) Atom at_and_rotated-towards(cubie_corner_3, location_2, directions_2) Atom at_and_rotated-towards(cubie_corner_3, location_3, directions_0) Atom at_and_rotated-towards(cubie_corner_3, location_3, directions_1) Atom at_and_rotated-towards(cubie_corner_3, location_3, directions_2) Atom at_and_rotated-towards(cubie_corner_3, location_4, directions_0) Atom at_and_rotated-towards(cubie_corner_3, location_4, directions_1) Atom at_and_rotated-towards(cubie_corner_3, location_4, directions_2) Atom at_and_rotated-towards(cubie_corner_3, location_5, directions_0) Atom at_and_rotated-towards(cubie_corner_3, location_5, directions_1) Atom at_and_rotated-towards(cubie_corner_3, location_5, directions_2) Atom at_and_rotated-towards(cubie_corner_3, location_6, directions_0) Atom at_and_rotated-towards(cubie_corner_3, location_6, directions_1) Atom at_and_rotated-towards(cubie_corner_3, location_6, directions_2) Atom at_and_rotated-towards(cubie_corner_3, location_7, directions_0) Atom at_and_rotated-towards(cubie_corner_3, location_7, directions_1) Atom at_and_rotated-towards(cubie_corner_3, location_7, directions_2) end_variable begin_variable corner_4 -1 24 Atom at_and_rotated-towards(cubie_corner_4, location_0, directions_0) Atom at_and_rotated-towards(cubie_corner_4, location_0, directions_1) Atom at_and_rotated-towards(cubie_corner_4, location_0, directions_2) Atom at_and_rotated-towards(cubie_corner_4, location_1, directions_0) Atom at_and_rotated-towards(cubie_corner_4, location_1, directions_1) Atom at_and_rotated-towards(cubie_corner_4, location_1, directions_2) Atom at_and_rotated-towards(cubie_corner_4, location_2, directions_0) Atom at_and_rotated-towards(cubie_corner_4, location_2, directions_1) Atom at_and_rotated-towards(cubie_corner_4, location_2, directions_2) Atom at_and_rotated-towards(cubie_corner_4, location_3, directions_0) Atom at_and_rotated-towards(cubie_corner_4, location_3, directions_1) Atom at_and_rotated-towards(cubie_corner_4, location_3, directions_2) Atom at_and_rotated-towards(cubie_corner_4, location_4, directions_0) Atom at_and_rotated-towards(cubie_corner_4, location_4, directions_1) Atom at_and_rotated-towards(cubie_corner_4, location_4, directions_2) Atom at_and_rotated-towards(cubie_corner_4, location_5, directions_0) Atom at_and_rotated-towards(cubie_corner_4, location_5, directions_1) Atom at_and_rotated-towards(cubie_corner_4, location_5, directions_2) Atom at_and_rotated-towards(cubie_corner_4, location_6, directions_0) Atom at_and_rotated-towards(cubie_corner_4, location_6, directions_1) Atom at_and_rotated-towards(cubie_corner_4, location_6, directions_2) Atom at_and_rotated-towards(cubie_corner_4, location_7, directions_0) Atom at_and_rotated-towards(cubie_corner_4, location_7, directions_1) Atom at_and_rotated-towards(cubie_corner_4, location_7, directions_2) end_variable begin_variable corner_5 -1 24 Atom at_and_rotated-towards(cubie_corner_5, location_0, directions_0) Atom at_and_rotated-towards(cubie_corner_5, location_0, directions_1) Atom at_and_rotated-towards(cubie_corner_5, location_0, directions_2) Atom at_and_rotated-towards(cubie_corner_5, location_1, directions_0) Atom at_and_rotated-towards(cubie_corner_5, location_1, directions_1) Atom at_and_rotated-towards(cubie_corner_5, location_1, directions_2) Atom at_and_rotated-towards(cubie_corner_5, location_2, directions_0) Atom at_and_rotated-towards(cubie_corner_5, location_2, directions_1) Atom at_and_rotated-towards(cubie_corner_5, location_2, directions_2) Atom at_and_rotated-towards(cubie_corner_5, location_3, directions_0) Atom at_and_rotated-towards(cubie_corner_5, location_3, directions_1) Atom at_and_rotated-towards(cubie_corner_5, location_3, directions_2) Atom at_and_rotated-towards(cubie_corner_5, location_4, directions_0) Atom at_and_rotated-towards(cubie_corner_5, location_4, directions_1) Atom at_and_rotated-towards(cubie_corner_5, location_4, directions_2) Atom at_and_rotated-towards(cubie_corner_5, location_5, directions_0) Atom at_and_rotated-towards(cubie_corner_5, location_5, directions_1) Atom at_and_rotated-towards(cubie_corner_5, location_5, directions_2) Atom at_and_rotated-towards(cubie_corner_5, location_6, directions_0) Atom at_and_rotated-towards(cubie_corner_5, location_6, directions_1) Atom at_and_rotated-towards(cubie_corner_5, location_6, directions_2) Atom at_and_rotated-towards(cubie_corner_5, location_7, directions_0) Atom at_and_rotated-towards(cubie_corner_5, location_7, directions_1) Atom at_and_rotated-towards(cubie_corner_5, location_7, directions_2) end_variable begin_variable corner_6 -1 24 Atom at_and_rotated-towards(cubie_corner_6, location_0, directions_0) Atom at_and_rotated-towards(cubie_corner_6, location_0, directions_1) Atom at_and_rotated-towards(cubie_corner_6, location_0, directions_2) Atom at_and_rotated-towards(cubie_corner_6, location_1, directions_0) Atom at_and_rotated-towards(cubie_corner_6, location_1, directions_1) Atom at_and_rotated-towards(cubie_corner_6, location_1, directions_2) Atom at_and_rotated-towards(cubie_corner_6, location_2, directions_0) Atom at_and_rotated-towards(cubie_corner_6, location_2, directions_1) Atom at_and_rotated-towards(cubie_corner_6, location_2, directions_2) Atom at_and_rotated-towards(cubie_corner_6, location_3, directions_0) Atom at_and_rotated-towards(cubie_corner_6, location_3, directions_1) Atom at_and_rotated-towards(cubie_corner_6, location_3, directions_2) Atom at_and_rotated-towards(cubie_corner_6, location_4, directions_0) Atom at_and_rotated-towards(cubie_corner_6, location_4, directions_1) Atom at_and_rotated-towards(cubie_corner_6, location_4, directions_2) Atom at_and_rotated-towards(cubie_corner_6, location_5, directions_0) Atom at_and_rotated-towards(cubie_corner_6, location_5, directions_1) Atom at_and_rotated-towards(cubie_corner_6, location_5, directions_2) Atom at_and_rotated-towards(cubie_corner_6, location_6, directions_0) Atom at_and_rotated-towards(cubie_corner_6, location_6, directions_1) Atom at_and_rotated-towards(cubie_corner_6, location_6, directions_2) Atom at_and_rotated-towards(cubie_corner_6, location_7, directions_0) Atom at_and_rotated-towards(cubie_corner_6, location_7, directions_1) Atom at_and_rotated-towards(cubie_corner_6, location_7, directions_2) end_variable begin_variable corner_7 -1 24 Atom at_and_rotated-towards(cubie_corner_7, location_0, directions_0) Atom at_and_rotated-towards(cubie_corner_7, location_0, directions_1) Atom at_and_rotated-towards(cubie_corner_7, location_0, directions_2) Atom at_and_rotated-towards(cubie_corner_7, location_1, directions_0) Atom at_and_rotated-towards(cubie_corner_7, location_1, directions_1) Atom at_and_rotated-towards(cubie_corner_7, location_1, directions_2) Atom at_and_rotated-towards(cubie_corner_7, location_2, directions_0) Atom at_and_rotated-towards(cubie_corner_7, location_2, directions_1) Atom at_and_rotated-towards(cubie_corner_7, location_2, directions_2) Atom at_and_rotated-towards(cubie_corner_7, location_3, directions_0) Atom at_and_rotated-towards(cubie_corner_7, location_3, directions_1) Atom at_and_rotated-towards(cubie_corner_7, location_3, directions_2) Atom at_and_rotated-towards(cubie_corner_7, location_4, directions_0) Atom at_and_rotated-towards(cubie_corner_7, location_4, directions_1) Atom at_and_rotated-towards(cubie_corner_7, location_4, directions_2) Atom at_and_rotated-towards(cubie_corner_7, location_5, directions_0) Atom at_and_rotated-towards(cubie_corner_7, location_5, directions_1) Atom at_and_rotated-towards(cubie_corner_7, location_5, directions_2) Atom at_and_rotated-towards(cubie_corner_7, location_6, directions_0) Atom at_and_rotated-towards(cubie_corner_7, location_6, directions_1) Atom at_and_rotated-towards(cubie_corner_7, location_6, directions_2) Atom at_and_rotated-towards(cubie_corner_7, location_7, directions_0) Atom at_and_rotated-towards(cubie_corner_7, location_7, directions_1) Atom at_and_rotated-towards(cubie_corner_7, location_7, directions_2) end_variable begin_variable edge_0 -1 24 Atom at_and_rotated-towards(cubie_edge_0, location_0, directions_0) Atom at_and_rotated-towards(cubie_edge_0, location_0, directions_1) Atom at_and_rotated-towards(cubie_edge_0, location_1, directions_0) Atom at_and_rotated-towards(cubie_edge_0, location_1, directions_1) Atom at_and_rotated-towards(cubie_edge_0, location_2, directions_0) Atom at_and_rotated-towards(cubie_edge_0, location_2, directions_1) Atom at_and_rotated-towards(cubie_edge_0, location_3, directions_0) Atom at_and_rotated-towards(cubie_edge_0, location_3, directions_1) Atom at_and_rotated-towards(cubie_edge_0, location_4, directions_0) Atom at_and_rotated-towards(cubie_edge_0, location_4, directions_1) Atom at_and_rotated-towards(cubie_edge_0, location_5, directions_0) Atom at_and_rotated-towards(cubie_edge_0, location_5, directions_1) Atom at_and_rotated-towards(cubie_edge_0, location_6, directions_0) Atom at_and_rotated-towards(cubie_edge_0, location_6, directions_1) Atom at_and_rotated-towards(cubie_edge_0, location_7, directions_0) Atom at_and_rotated-towards(cubie_edge_0, location_7, directions_1) Atom at_and_rotated-towards(cubie_edge_0, location_8, directions_0) Atom at_and_rotated-towards(cubie_edge_0, location_8, directions_1) Atom at_and_rotated-towards(cubie_edge_0, location_9, directions_0) Atom at_and_rotated-towards(cubie_edge_0, location_9, directions_1) Atom at_and_rotated-towards(cubie_edge_0, location_10, directions_0) Atom at_and_rotated-towards(cubie_edge_0, location_10, directions_1) Atom at_and_rotated-towards(cubie_edge_0, location_11, directions_0) Atom at_and_rotated-towards(cubie_edge_0, location_11, directions_1) end_variable begin_variable edge_1 -1 24 Atom at_and_rotated-towards(cubie_edge_1, location_0, directions_0) Atom at_and_rotated-towards(cubie_edge_1, location_0, directions_1) Atom at_and_rotated-towards(cubie_edge_1, location_1, directions_0) Atom at_and_rotated-towards(cubie_edge_1, location_1, directions_1) Atom at_and_rotated-towards(cubie_edge_1, location_2, directions_0) Atom at_and_rotated-towards(cubie_edge_1, location_2, directions_1) Atom at_and_rotated-towards(cubie_edge_1, location_3, directions_0) Atom at_and_rotated-towards(cubie_edge_1, location_3, directions_1) Atom at_and_rotated-towards(cubie_edge_1, location_4, directions_0) Atom at_and_rotated-towards(cubie_edge_1, location_4, directions_1) Atom at_and_rotated-towards(cubie_edge_1, location_5, directions_0) Atom at_and_rotated-towards(cubie_edge_1, location_5, directions_1) Atom at_and_rotated-towards(cubie_edge_1, location_6, directions_0) Atom at_and_rotated-towards(cubie_edge_1, location_6, directions_1) Atom at_and_rotated-towards(cubie_edge_1, location_7, directions_0) Atom at_and_rotated-towards(cubie_edge_1, location_7, directions_1) Atom at_and_rotated-towards(cubie_edge_1, location_8, directions_0) Atom at_and_rotated-towards(cubie_edge_1, location_8, directions_1) Atom at_and_rotated-towards(cubie_edge_1, location_9, directions_0) Atom at_and_rotated-towards(cubie_edge_1, location_9, directions_1) Atom at_and_rotated-towards(cubie_edge_1, location_10, directions_0) Atom at_and_rotated-towards(cubie_edge_1, location_10, directions_1) Atom at_and_rotated-towards(cubie_edge_1, location_11, directions_0) Atom at_and_rotated-towards(cubie_edge_1, location_11, directions_1) end_variable begin_variable edge_2 -1 24 Atom at_and_rotated-towards(cubie_edge_2, location_0, directions_0) Atom at_and_rotated-towards(cubie_edge_2, location_0, directions_1) Atom at_and_rotated-towards(cubie_edge_2, location_1, directions_0) Atom at_and_rotated-towards(cubie_edge_2, location_1, directions_1) Atom at_and_rotated-towards(cubie_edge_2, location_2, directions_0) Atom at_and_rotated-towards(cubie_edge_2, location_2, directions_1) Atom at_and_rotated-towards(cubie_edge_2, location_3, directions_0) Atom at_and_rotated-towards(cubie_edge_2, location_3, directions_1) Atom at_and_rotated-towards(cubie_edge_2, location_4, directions_0) Atom at_and_rotated-towards(cubie_edge_2, location_4, directions_1) Atom at_and_rotated-towards(cubie_edge_2, location_5, directions_0) Atom at_and_rotated-towards(cubie_edge_2, location_5, directions_1) Atom at_and_rotated-towards(cubie_edge_2, location_6, directions_0) Atom at_and_rotated-towards(cubie_edge_2, location_6, directions_1) Atom at_and_rotated-towards(cubie_edge_2, location_7, directions_0) Atom at_and_rotated-towards(cubie_edge_2, location_7, directions_1) Atom at_and_rotated-towards(cubie_edge_2, location_8, directions_0) Atom at_and_rotated-towards(cubie_edge_2, location_8, directions_1) Atom at_and_rotated-towards(cubie_edge_2, location_9, directions_0) Atom at_and_rotated-towards(cubie_edge_2, location_9, directions_1) Atom at_and_rotated-towards(cubie_edge_2, location_10, directions_0) Atom at_and_rotated-towards(cubie_edge_2, location_10, directions_1) Atom at_and_rotated-towards(cubie_edge_2, location_11, directions_0) Atom at_and_rotated-towards(cubie_edge_2, location_11, directions_1) end_variable begin_variable edge_3 -1 24 Atom at_and_rotated-towards(cubie_edge_3, location_0, directions_0) Atom at_and_rotated-towards(cubie_edge_3, location_0, directions_1) Atom at_and_rotated-towards(cubie_edge_3, location_1, directions_0) Atom at_and_rotated-towards(cubie_edge_3, location_1, directions_1) Atom at_and_rotated-towards(cubie_edge_3, location_2, directions_0) Atom at_and_rotated-towards(cubie_edge_3, location_2, directions_1) Atom at_and_rotated-towards(cubie_edge_3, location_3, directions_0) Atom at_and_rotated-towards(cubie_edge_3, location_3, directions_1) Atom at_and_rotated-towards(cubie_edge_3, location_4, directions_0) Atom at_and_rotated-towards(cubie_edge_3, location_4, directions_1) Atom at_and_rotated-towards(cubie_edge_3, location_5, directions_0) Atom at_and_rotated-towards(cubie_edge_3, location_5, directions_1) Atom at_and_rotated-towards(cubie_edge_3, location_6, directions_0) Atom at_and_rotated-towards(cubie_edge_3, location_6, directions_1) Atom at_and_rotated-towards(cubie_edge_3, location_7, directions_0) Atom at_and_rotated-towards(cubie_edge_3, location_7, directions_1) Atom at_and_rotated-towards(cubie_edge_3, location_8, directions_0) Atom at_and_rotated-towards(cubie_edge_3, location_8, directions_1) Atom at_and_rotated-towards(cubie_edge_3, location_9, directions_0) Atom at_and_rotated-towards(cubie_edge_3, location_9, directions_1) Atom at_and_rotated-towards(cubie_edge_3, location_10, directions_0) Atom at_and_rotated-towards(cubie_edge_3, location_10, directions_1) Atom at_and_rotated-towards(cubie_edge_3, location_11, directions_0) Atom at_and_rotated-towards(cubie_edge_3, location_11, directions_1) end_variable begin_variable edge_4 -1 24 Atom at_and_rotated-towards(cubie_edge_4, location_0, directions_0) Atom at_and_rotated-towards(cubie_edge_4, location_0, directions_1) Atom at_and_rotated-towards(cubie_edge_4, location_1, directions_0) Atom at_and_rotated-towards(cubie_edge_4, location_1, directions_1) Atom at_and_rotated-towards(cubie_edge_4, location_2, directions_0) Atom at_and_rotated-towards(cubie_edge_4, location_2, directions_1) Atom at_and_rotated-towards(cubie_edge_4, location_3, directions_0) Atom at_and_rotated-towards(cubie_edge_4, location_3, directions_1) Atom at_and_rotated-towards(cubie_edge_4, location_4, directions_0) Atom at_and_rotated-towards(cubie_edge_4, location_4, directions_1) Atom at_and_rotated-towards(cubie_edge_4, location_5, directions_0) Atom at_and_rotated-towards(cubie_edge_4, location_5, directions_1) Atom at_and_rotated-towards(cubie_edge_4, location_6, directions_0) Atom at_and_rotated-towards(cubie_edge_4, location_6, directions_1) Atom at_and_rotated-towards(cubie_edge_4, location_7, directions_0) Atom at_and_rotated-towards(cubie_edge_4, location_7, directions_1) Atom at_and_rotated-towards(cubie_edge_4, location_8, directions_0) Atom at_and_rotated-towards(cubie_edge_4, location_8, directions_1) Atom at_and_rotated-towards(cubie_edge_4, location_9, directions_0) Atom at_and_rotated-towards(cubie_edge_4, location_9, directions_1) Atom at_and_rotated-towards(cubie_edge_4, location_10, directions_0) Atom at_and_rotated-towards(cubie_edge_4, location_10, directions_1) Atom at_and_rotated-towards(cubie_edge_4, location_11, directions_0) Atom at_and_rotated-towards(cubie_edge_4, location_11, directions_1) end_variable begin_variable edge_5 -1 24 Atom at_and_rotated-towards(cubie_edge_5, location_0, directions_0) Atom at_and_rotated-towards(cubie_edge_5, location_0, directions_1) Atom at_and_rotated-towards(cubie_edge_5, location_1, directions_0) Atom at_and_rotated-towards(cubie_edge_5, location_1, directions_1) Atom at_and_rotated-towards(cubie_edge_5, location_2, directions_0) Atom at_and_rotated-towards(cubie_edge_5, location_2, directions_1) Atom at_and_rotated-towards(cubie_edge_5, location_3, directions_0) Atom at_and_rotated-towards(cubie_edge_5, location_3, directions_1) Atom at_and_rotated-towards(cubie_edge_5, location_4, directions_0) Atom at_and_rotated-towards(cubie_edge_5, location_4, directions_1) Atom at_and_rotated-towards(cubie_edge_5, location_5, directions_0) Atom at_and_rotated-towards(cubie_edge_5, location_5, directions_1) Atom at_and_rotated-towards(cubie_edge_5, location_6, directions_0) Atom at_and_rotated-towards(cubie_edge_5, location_6, directions_1) Atom at_and_rotated-towards(cubie_edge_5, location_7, directions_0) Atom at_and_rotated-towards(cubie_edge_5, location_7, directions_1) Atom at_and_rotated-towards(cubie_edge_5, location_8, directions_0) Atom at_and_rotated-towards(cubie_edge_5, location_8, directions_1) Atom at_and_rotated-towards(cubie_edge_5, location_9, directions_0) Atom at_and_rotated-towards(cubie_edge_5, location_9, directions_1) Atom at_and_rotated-towards(cubie_edge_5, location_10, directions_0) Atom at_and_rotated-towards(cubie_edge_5, location_10, directions_1) Atom at_and_rotated-towards(cubie_edge_5, location_11, directions_0) Atom at_and_rotated-towards(cubie_edge_5, location_11, directions_1) end_variable begin_variable edge_6 -1 24 Atom at_and_rotated-towards(cubie_edge_6, location_0, directions_0) Atom at_and_rotated-towards(cubie_edge_6, location_0, directions_1) Atom at_and_rotated-towards(cubie_edge_6, location_1, directions_0) Atom at_and_rotated-towards(cubie_edge_6, location_1, directions_1) Atom at_and_rotated-towards(cubie_edge_6, location_2, directions_0) Atom at_and_rotated-towards(cubie_edge_6, location_2, directions_1) Atom at_and_rotated-towards(cubie_edge_6, location_3, directions_0) Atom at_and_rotated-towards(cubie_edge_6, location_3, directions_1) Atom at_and_rotated-towards(cubie_edge_6, location_4, directions_0) Atom at_and_rotated-towards(cubie_edge_6, location_4, directions_1) Atom at_and_rotated-towards(cubie_edge_6, location_5, directions_0) Atom at_and_rotated-towards(cubie_edge_6, location_5, directions_1) Atom at_and_rotated-towards(cubie_edge_6, location_6, directions_0) Atom at_and_rotated-towards(cubie_edge_6, location_6, directions_1) Atom at_and_rotated-towards(cubie_edge_6, location_7, directions_0) Atom at_and_rotated-towards(cubie_edge_6, location_7, directions_1) Atom at_and_rotated-towards(cubie_edge_6, location_8, directions_0) Atom at_and_rotated-towards(cubie_edge_6, location_8, directions_1) Atom at_and_rotated-towards(cubie_edge_6, location_9, directions_0) Atom at_and_rotated-towards(cubie_edge_6, location_9, directions_1) Atom at_and_rotated-towards(cubie_edge_6, location_10, directions_0) Atom at_and_rotated-towards(cubie_edge_6, location_10, directions_1) Atom at_and_rotated-towards(cubie_edge_6, location_11, directions_0) Atom at_and_rotated-towards(cubie_edge_6, location_11, directions_1) end_variable begin_variable edge_7 -1 24 Atom at_and_rotated-towards(cubie_edge_7, location_0, directions_0) Atom at_and_rotated-towards(cubie_edge_7, location_0, directions_1) Atom at_and_rotated-towards(cubie_edge_7, location_1, directions_0) Atom at_and_rotated-towards(cubie_edge_7, location_1, directions_1) Atom at_and_rotated-towards(cubie_edge_7, location_2, directions_0) Atom at_and_rotated-towards(cubie_edge_7, location_2, directions_1) Atom at_and_rotated-towards(cubie_edge_7, location_3, directions_0) Atom at_and_rotated-towards(cubie_edge_7, location_3, directions_1) Atom at_and_rotated-towards(cubie_edge_7, location_4, directions_0) Atom at_and_rotated-towards(cubie_edge_7, location_4, directions_1) Atom at_and_rotated-towards(cubie_edge_7, location_5, directions_0) Atom at_and_rotated-towards(cubie_edge_7, location_5, directions_1) Atom at_and_rotated-towards(cubie_edge_7, location_6, directions_0) Atom at_and_rotated-towards(cubie_edge_7, location_6, directions_1) Atom at_and_rotated-towards(cubie_edge_7, location_7, directions_0) Atom at_and_rotated-towards(cubie_edge_7, location_7, directions_1) Atom at_and_rotated-towards(cubie_edge_7, location_8, directions_0) Atom at_and_rotated-towards(cubie_edge_7, location_8, directions_1) Atom at_and_rotated-towards(cubie_edge_7, location_9, directions_0) Atom at_and_rotated-towards(cubie_edge_7, location_9, directions_1) Atom at_and_rotated-towards(cubie_edge_7, location_10, directions_0) Atom at_and_rotated-towards(cubie_edge_7, location_10, directions_1) Atom at_and_rotated-towards(cubie_edge_7, location_11, directions_0) Atom at_and_rotated-towards(cubie_edge_7, location_11, directions_1) end_variable begin_variable edge_8 -1 24 Atom at_and_rotated-towards(cubie_edge_8, location_0, directions_0) Atom at_and_rotated-towards(cubie_edge_8, location_0, directions_1) Atom at_and_rotated-towards(cubie_edge_8, location_1, directions_0) Atom at_and_rotated-towards(cubie_edge_8, location_1, directions_1) Atom at_and_rotated-towards(cubie_edge_8, location_2, directions_0) Atom at_and_rotated-towards(cubie_edge_8, location_2, directions_1) Atom at_and_rotated-towards(cubie_edge_8, location_3, directions_0) Atom at_and_rotated-towards(cubie_edge_8, location_3, directions_1) Atom at_and_rotated-towards(cubie_edge_8, location_4, directions_0) Atom at_and_rotated-towards(cubie_edge_8, location_4, directions_1) Atom at_and_rotated-towards(cubie_edge_8, location_5, directions_0) Atom at_and_rotated-towards(cubie_edge_8, location_5, directions_1) Atom at_and_rotated-towards(cubie_edge_8, location_6, directions_0) Atom at_and_rotated-towards(cubie_edge_8, location_6, directions_1) Atom at_and_rotated-towards(cubie_edge_8, location_7, directions_0) Atom at_and_rotated-towards(cubie_edge_8, location_7, directions_1) Atom at_and_rotated-towards(cubie_edge_8, location_8, directions_0) Atom at_and_rotated-towards(cubie_edge_8, location_8, directions_1) Atom at_and_rotated-towards(cubie_edge_8, location_9, directions_0) Atom at_and_rotated-towards(cubie_edge_8, location_9, directions_1) Atom at_and_rotated-towards(cubie_edge_8, location_10, directions_0) Atom at_and_rotated-towards(cubie_edge_8, location_10, directions_1) Atom at_and_rotated-towards(cubie_edge_8, location_11, directions_0) Atom at_and_rotated-towards(cubie_edge_8, location_11, directions_1) end_variable begin_variable edge_9 -1 24 Atom at_and_rotated-towards(cubie_edge_9, location_0, directions_0) Atom at_and_rotated-towards(cubie_edge_9, location_0, directions_1) Atom at_and_rotated-towards(cubie_edge_9, location_1, directions_0) Atom at_and_rotated-towards(cubie_edge_9, location_1, directions_1) Atom at_and_rotated-towards(cubie_edge_9, location_2, directions_0) Atom at_and_rotated-towards(cubie_edge_9, location_2, directions_1) Atom at_and_rotated-towards(cubie_edge_9, location_3, directions_0) Atom at_and_rotated-towards(cubie_edge_9, location_3, directions_1) Atom at_and_rotated-towards(cubie_edge_9, location_4, directions_0) Atom at_and_rotated-towards(cubie_edge_9, location_4, directions_1) Atom at_and_rotated-towards(cubie_edge_9, location_5, directions_0) Atom at_and_rotated-towards(cubie_edge_9, location_5, directions_1) Atom at_and_rotated-towards(cubie_edge_9, location_6, directions_0) Atom at_and_rotated-towards(cubie_edge_9, location_6, directions_1) Atom at_and_rotated-towards(cubie_edge_9, location_7, directions_0) Atom at_and_rotated-towards(cubie_edge_9, location_7, directions_1) Atom at_and_rotated-towards(cubie_edge_9, location_8, directions_0) Atom at_and_rotated-towards(cubie_edge_9, location_8, directions_1) Atom at_and_rotated-towards(cubie_edge_9, location_9, directions_0) Atom at_and_rotated-towards(cubie_edge_9, location_9, directions_1) Atom at_and_rotated-towards(cubie_edge_9, location_10, directions_0) Atom at_and_rotated-towards(cubie_edge_9, location_10, directions_1) Atom at_and_rotated-towards(cubie_edge_9, location_11, directions_0) Atom at_and_rotated-towards(cubie_edge_9, location_11, directions_1) end_variable begin_variable edge_10 -1 24 Atom at_and_rotated-towards(cubie_edge_10, location_0, directions_0) Atom at_and_rotated-towards(cubie_edge_10, location_0, directions_1) Atom at_and_rotated-towards(cubie_edge_10, location_1, directions_0) Atom at_and_rotated-towards(cubie_edge_10, location_1, directions_1) Atom at_and_rotated-towards(cubie_edge_10, location_2, directions_0) Atom at_and_rotated-towards(cubie_edge_10, location_2, directions_1) Atom at_and_rotated-towards(cubie_edge_10, location_3, directions_0) Atom at_and_rotated-towards(cubie_edge_10, location_3, directions_1) Atom at_and_rotated-towards(cubie_edge_10, location_4, directions_0) Atom at_and_rotated-towards(cubie_edge_10, location_4, directions_1) Atom at_and_rotated-towards(cubie_edge_10, location_5, directions_0) Atom at_and_rotated-towards(cubie_edge_10, location_5, directions_1) Atom at_and_rotated-towards(cubie_edge_10, location_6, directions_0) Atom at_and_rotated-towards(cubie_edge_10, location_6, directions_1) Atom at_and_rotated-towards(cubie_edge_10, location_7, directions_0) Atom at_and_rotated-towards(cubie_edge_10, location_7, directions_1) Atom at_and_rotated-towards(cubie_edge_10, location_8, directions_0) Atom at_and_rotated-towards(cubie_edge_10, location_8, directions_1) Atom at_and_rotated-towards(cubie_edge_10, location_9, directions_0) Atom at_and_rotated-towards(cubie_edge_10, location_9, directions_1) Atom at_and_rotated-towards(cubie_edge_10, location_10, directions_0) Atom at_and_rotated-towards(cubie_edge_10, location_10, directions_1) Atom at_and_rotated-towards(cubie_edge_10, location_11, directions_0) Atom at_and_rotated-towards(cubie_edge_10, location_11, directions_1) end_variable begin_variable edge_11 -1 24 Atom at_and_rotated-towards(cubie_edge_11, location_0, directions_0) Atom at_and_rotated-towards(cubie_edge_11, location_0, directions_1) Atom at_and_rotated-towards(cubie_edge_11, location_1, directions_0) Atom at_and_rotated-towards(cubie_edge_11, location_1, directions_1) Atom at_and_rotated-towards(cubie_edge_11, location_2, directions_0) Atom at_and_rotated-towards(cubie_edge_11, location_2, directions_1) Atom at_and_rotated-towards(cubie_edge_11, location_3, directions_0) Atom at_and_rotated-towards(cubie_edge_11, location_3, directions_1) Atom at_and_rotated-towards(cubie_edge_11, location_4, directions_0) Atom at_and_rotated-towards(cubie_edge_11, location_4, directions_1) Atom at_and_rotated-towards(cubie_edge_11, location_5, directions_0) Atom at_and_rotated-towards(cubie_edge_11, location_5, directions_1) Atom at_and_rotated-towards(cubie_edge_11, location_6, directions_0) Atom at_and_rotated-towards(cubie_edge_11, location_6, directions_1) Atom at_and_rotated-towards(cubie_edge_11, location_7, directions_0) Atom at_and_rotated-towards(cubie_edge_11, location_7, directions_1) Atom at_and_rotated-towards(cubie_edge_11, location_8, directions_0) Atom at_and_rotated-towards(cubie_edge_11, location_8, directions_1) Atom at_and_rotated-towards(cubie_edge_11, location_9, directions_0) Atom at_and_rotated-towards(cubie_edge_11, location_9, directions_1) Atom at_and_rotated-towards(cubie_edge_11, location_10, directions_0) Atom at_and_rotated-towards(cubie_edge_11, location_10, directions_1) Atom at_and_rotated-towards(cubie_edge_11, location_11, directions_0) Atom at_and_rotated-towards(cubie_edge_11, location_11, directions_1) end_variable 20 begin_mutex_group 24 0 0 0 1 0 2 1 0 1 1 1 2 2 0 2 1 2 2 3 0 3 1 3 2 4 0 4 1 4 2 5 0 5 1 5 2 6 0 6 1 6 2 7 0 7 1 7 2 end_mutex_group begin_mutex_group 24 0 3 0 4 0 5 1 3 1 4 1 5 2 3 2 4 2 5 3 3 3 4 3 5 4 3 4 4 4 5 5 3 5 4 5 5 6 3 6 4 6 5 7 3 7 4 7 5 end_mutex_group begin_mutex_group 24 0 6 0 7 0 8 1 6 1 7 1 8 2 6 2 7 2 8 3 6 3 7 3 8 4 6 4 7 4 8 5 6 5 7 5 8 6 6 6 7 6 8 7 6 7 7 7 8 end_mutex_group begin_mutex_group 24 0 9 0 10 0 11 1 9 1 10 1 11 2 9 2 10 2 11 3 9 3 10 3 11 4 9 4 10 4 11 5 9 5 10 5 11 6 9 6 10 6 11 7 9 7 10 7 11 end_mutex_group begin_mutex_group 24 0 12 0 13 0 14 1 12 1 13 1 14 2 12 2 13 2 14 3 12 3 13 3 14 4 12 4 13 4 14 5 12 5 13 5 14 6 12 6 13 6 14 7 12 7 13 7 14 end_mutex_group begin_mutex_group 24 0 15 0 16 0 17 1 15 1 16 1 17 2 15 2 16 2 17 3 15 3 16 3 17 4 15 4 16 4 17 5 15 5 16 5 17 6 15 6 16 6 17 7 15 7 16 7 17 end_mutex_group begin_mutex_group 24 0 18 0 19 0 20 1 18 1 19 1 20 2 18 2 19 2 20 3 18 3 19 3 20 4 18 4 19 4 20 5 18 5 19 5 20 6 18 6 19 6 20 7 18 7 19 7 20 end_mutex_group begin_mutex_group 24 0 21 0 22 0 23 1 21 1 22 1 23 2 21 2 22 2 23 3 21 3 22 3 23 4 21 4 22 4 23 5 21 5 22 5 23 6 21 6 22 6 23 7 21 7 22 7 23 end_mutex_group begin_mutex_group 24 8 0 8 1 9 0 9 1 10 0 10 1 11 0 11 1 12 0 12 1 13 0 13 1 14 0 14 1 15 0 15 1 16 0 16 1 17 0 17 1 18 0 18 1 19 0 19 1 end_mutex_group begin_mutex_group 24 8 2 8 3 9 2 9 3 10 2 10 3 11 2 11 3 12 2 12 3 13 2 13 3 14 2 14 3 15 2 15 3 16 2 16 3 17 2 17 3 18 2 18 3 19 2 19 3 end_mutex_group begin_mutex_group 24 8 4 8 5 9 4 9 5 10 4 10 5 11 4 11 5 12 4 12 5 13 4 13 5 14 4 14 5 15 4 15 5 16 4 16 5 17 4 17 5 18 4 18 5 19 4 19 5 end_mutex_group begin_mutex_group 24 8 6 8 7 9 6 9 7 10 6 10 7 11 6 11 7 12 6 12 7 13 6 13 7 14 6 14 7 15 6 15 7 16 6 16 7 17 6 17 7 18 6 18 7 19 6 19 7 end_mutex_group begin_mutex_group 24 8 8 8 9 9 8 9 9 10 8 10 9 11 8 11 9 12 8 12 9 13 8 13 9 14 8 14 9 15 8 15 9 16 8 16 9 17 8 17 9 18 8 18 9 19 8 19 9 end_mutex_group begin_mutex_group 24 8 10 8 11 9 10 9 11 10 10 10 11 11 10 11 11 12 10 12 11 13 10 13 11 14 10 14 11 15 10 15 11 16 10 16 11 17 10 17 11 18 10 18 11 19 10 19 11 end_mutex_group begin_mutex_group 24 8 12 8 13 9 12 9 13 10 12 10 13 11 12 11 13 12 12 12 13 13 12 13 13 14 12 14 13 15 12 15 13 16 12 16 13 17 12 17 13 18 12 18 13 19 12 19 13 end_mutex_group begin_mutex_group 24 8 14 8 15 9 14 9 15 10 14 10 15 11 14 11 15 12 14 12 15 13 14 13 15 14 14 14 15 15 14 15 15 16 14 16 15 17 14 17 15 18 14 18 15 19 14 19 15 end_mutex_group begin_mutex_group 24 8 16 8 17 9 16 9 17 10 16 10 17 11 16 11 17 12 16 12 17 13 16 13 17 14 16 14 17 15 16 15 17 16 16 16 17 17 16 17 17 18 16 18 17 19 16 19 17 end_mutex_group begin_mutex_group 24 8 18 8 19 9 18 9 19 10 18 10 19 11 18 11 19 12 18 12 19 13 18 13 19 14 18 14 19 15 18 15 19 16 18 16 19 17 18 17 19 18 18 18 19 19 18 19 19 end_mutex_group begin_mutex_group 24 8 20 8 21 9 20 9 21 10 20 10 21 11 20 11 21 12 20 12 21 13 20 13 21 14 20 14 21 15 20 15 21 16 20 16 21 17 20 17 21 18 20 18 21 19 20 19 21 end_mutex_group begin_mutex_group 24 8 22 8 23 9 22 9 23 10 22 10 23 11 22 11 23 12 22 12 23 13 22 13 23 14 22 14 23 15 22 15 23 16 22 16 23 17 22 17 23 18 22 18 23 19 22 19 23 end_mutex_group begin_state 6 22 14 9 4 18 1 16 9 6 10 19 20 4 17 13 1 15 22 2 end_state begin_goal 20 0 0 1 3 2 6 3 9 4 12 5 15 6 18 7 21 8 0 9 2 10 4 11 6 12 8 13 10 14 12 15 14 16 16 17 18 18 20 19 22 end_goal 18 begin_operator F_0 0 192 1 0 0 0 -1 6 1 0 1 0 -1 7 1 0 2 0 -1 8 1 1 0 1 -1 6 1 1 1 1 -1 7 1 1 2 1 -1 8 1 2 0 2 -1 6 1 2 1 2 -1 7 1 2 2 2 -1 8 1 3 0 3 -1 6 1 3 1 3 -1 7 1 3 2 3 -1 8 1 4 0 4 -1 6 1 4 1 4 -1 7 1 4 2 4 -1 8 1 5 0 5 -1 6 1 5 1 5 -1 7 1 5 2 5 -1 8 1 6 0 6 -1 6 1 6 1 6 -1 7 1 6 2 6 -1 8 1 7 0 7 -1 6 1 7 1 7 -1 7 1 7 2 7 -1 8 1 0 3 0 -1 0 1 0 5 0 -1 2 1 0 4 0 -1 1 1 1 3 1 -1 0 1 1 5 1 -1 2 1 1 4 1 -1 1 1 2 3 2 -1 0 1 2 5 2 -1 2 1 2 4 2 -1 1 1 3 3 3 -1 0 1 3 5 3 -1 2 1 3 4 3 -1 1 1 4 3 4 -1 0 1 4 5 4 -1 2 1 4 4 4 -1 1 1 5 3 5 -1 0 1 5 5 5 -1 2 1 5 4 5 -1 1 1 6 3 6 -1 0 1 6 5 6 -1 2 1 6 4 6 -1 1 1 7 3 7 -1 0 1 7 5 7 -1 2 1 7 4 7 -1 1 1 0 6 0 -1 9 1 0 8 0 -1 11 1 0 7 0 -1 10 1 1 6 1 -1 9 1 1 8 1 -1 11 1 1 7 1 -1 10 1 2 6 2 -1 9 1 2 8 2 -1 11 1 2 7 2 -1 10 1 3 6 3 -1 9 1 3 8 3 -1 11 1 3 7 3 -1 10 1 4 6 4 -1 9 1 4 8 4 -1 11 1 4 7 4 -1 10 1 5 6 5 -1 9 1 5 8 5 -1 11 1 5 7 5 -1 10 1 6 6 6 -1 9 1 6 8 6 -1 11 1 6 7 6 -1 10 1 7 6 7 -1 9 1 7 8 7 -1 11 1 7 7 7 -1 10 1 0 9 0 -1 3 1 0 10 0 -1 4 1 0 11 0 -1 5 1 1 9 1 -1 3 1 1 10 1 -1 4 1 1 11 1 -1 5 1 2 9 2 -1 3 1 2 10 2 -1 4 1 2 11 2 -1 5 1 3 9 3 -1 3 1 3 10 3 -1 4 1 3 11 3 -1 5 1 4 9 4 -1 3 1 4 10 4 -1 4 1 4 11 4 -1 5 1 5 9 5 -1 3 1 5 10 5 -1 4 1 5 11 5 -1 5 1 6 9 6 -1 3 1 6 10 6 -1 4 1 6 11 6 -1 5 1 7 9 7 -1 3 1 7 10 7 -1 4 1 7 11 7 -1 5 1 8 0 8 -1 2 1 8 1 8 -1 3 1 9 0 9 -1 2 1 9 1 9 -1 3 1 10 0 10 -1 2 1 10 1 10 -1 3 1 11 0 11 -1 2 1 11 1 11 -1 3 1 12 0 12 -1 2 1 12 1 12 -1 3 1 13 0 13 -1 2 1 13 1 13 -1 3 1 14 0 14 -1 2 1 14 1 14 -1 3 1 15 0 15 -1 2 1 15 1 15 -1 3 1 16 0 16 -1 2 1 16 1 16 -1 3 1 17 0 17 -1 2 1 17 1 17 -1 3 1 18 0 18 -1 2 1 18 1 18 -1 3 1 19 0 19 -1 2 1 19 1 19 -1 3 1 8 2 8 -1 6 1 8 3 8 -1 7 1 9 2 9 -1 6 1 9 3 9 -1 7 1 10 2 10 -1 6 1 10 3 10 -1 7 1 11 2 11 -1 6 1 11 3 11 -1 7 1 12 2 12 -1 6 1 12 3 12 -1 7 1 13 2 13 -1 6 1 13 3 13 -1 7 1 14 2 14 -1 6 1 14 3 14 -1 7 1 15 2 15 -1 6 1 15 3 15 -1 7 1 16 2 16 -1 6 1 16 3 16 -1 7 1 17 2 17 -1 6 1 17 3 17 -1 7 1 18 2 18 -1 6 1 18 3 18 -1 7 1 19 2 19 -1 6 1 19 3 19 -1 7 1 8 4 8 -1 0 1 8 5 8 -1 1 1 9 4 9 -1 0 1 9 5 9 -1 1 1 10 4 10 -1 0 1 10 5 10 -1 1 1 11 4 11 -1 0 1 11 5 11 -1 1 1 12 4 12 -1 0 1 12 5 12 -1 1 1 13 4 13 -1 0 1 13 5 13 -1 1 1 14 4 14 -1 0 1 14 5 14 -1 1 1 15 4 15 -1 0 1 15 5 15 -1 1 1 16 4 16 -1 0 1 16 5 16 -1 1 1 17 4 17 -1 0 1 17 5 17 -1 1 1 18 4 18 -1 0 1 18 5 18 -1 1 1 19 4 19 -1 0 1 19 5 19 -1 1 1 8 6 8 -1 4 1 8 7 8 -1 5 1 9 6 9 -1 4 1 9 7 9 -1 5 1 10 6 10 -1 4 1 10 7 10 -1 5 1 11 6 11 -1 4 1 11 7 11 -1 5 1 12 6 12 -1 4 1 12 7 12 -1 5 1 13 6 13 -1 4 1 13 7 13 -1 5 1 14 6 14 -1 4 1 14 7 14 -1 5 1 15 6 15 -1 4 1 15 7 15 -1 5 1 16 6 16 -1 4 1 16 7 16 -1 5 1 17 6 17 -1 4 1 17 7 17 -1 5 1 18 6 18 -1 4 1 18 7 18 -1 5 1 19 6 19 -1 4 1 19 7 19 -1 5 1 end_operator begin_operator F2_0 0 192 1 0 0 0 -1 9 1 0 1 0 -1 10 1 0 2 0 -1 11 1 1 0 1 -1 9 1 1 1 1 -1 10 1 1 2 1 -1 11 1 2 0 2 -1 9 1 2 1 2 -1 10 1 2 2 2 -1 11 1 3 0 3 -1 9 1 3 1 3 -1 10 1 3 2 3 -1 11 1 4 0 4 -1 9 1 4 1 4 -1 10 1 4 2 4 -1 11 1 5 0 5 -1 9 1 5 1 5 -1 10 1 5 2 5 -1 11 1 6 0 6 -1 9 1 6 1 6 -1 10 1 6 2 6 -1 11 1 7 0 7 -1 9 1 7 1 7 -1 10 1 7 2 7 -1 11 1 0 3 0 -1 6 1 0 5 0 -1 8 1 0 4 0 -1 7 1 1 3 1 -1 6 1 1 5 1 -1 8 1 1 4 1 -1 7 1 2 3 2 -1 6 1 2 5 2 -1 8 1 2 4 2 -1 7 1 3 3 3 -1 6 1 3 5 3 -1 8 1 3 4 3 -1 7 1 4 3 4 -1 6 1 4 5 4 -1 8 1 4 4 4 -1 7 1 5 3 5 -1 6 1 5 5 5 -1 8 1 5 4 5 -1 7 1 6 3 6 -1 6 1 6 5 6 -1 8 1 6 4 6 -1 7 1 7 3 7 -1 6 1 7 5 7 -1 8 1 7 4 7 -1 7 1 0 6 0 -1 3 1 0 8 0 -1 5 1 0 7 0 -1 4 1 1 6 1 -1 3 1 1 8 1 -1 5 1 1 7 1 -1 4 1 2 6 2 -1 3 1 2 8 2 -1 5 1 2 7 2 -1 4 1 3 6 3 -1 3 1 3 8 3 -1 5 1 3 7 3 -1 4 1 4 6 4 -1 3 1 4 8 4 -1 5 1 4 7 4 -1 4 1 5 6 5 -1 3 1 5 8 5 -1 5 1 5 7 5 -1 4 1 6 6 6 -1 3 1 6 8 6 -1 5 1 6 7 6 -1 4 1 7 6 7 -1 3 1 7 8 7 -1 5 1 7 7 7 -1 4 1 0 9 0 -1 0 1 0 10 0 -1 1 1 0 11 0 -1 2 1 1 9 1 -1 0 1 1 10 1 -1 1 1 1 11 1 -1 2 1 2 9 2 -1 0 1 2 10 2 -1 1 1 2 11 2 -1 2 1 3 9 3 -1 0 1 3 10 3 -1 1 1 3 11 3 -1 2 1 4 9 4 -1 0 1 4 10 4 -1 1 1 4 11 4 -1 2 1 5 9 5 -1 0 1 5 10 5 -1 1 1 5 11 5 -1 2 1 6 9 6 -1 0 1 6 10 6 -1 1 1 6 11 6 -1 2 1 7 9 7 -1 0 1 7 10 7 -1 1 1 7 11 7 -1 2 1 8 0 8 -1 6 1 8 1 8 -1 7 1 9 0 9 -1 6 1 9 1 9 -1 7 1 10 0 10 -1 6 1 10 1 10 -1 7 1 11 0 11 -1 6 1 11 1 11 -1 7 1 12 0 12 -1 6 1 12 1 12 -1 7 1 13 0 13 -1 6 1 13 1 13 -1 7 1 14 0 14 -1 6 1 14 1 14 -1 7 1 15 0 15 -1 6 1 15 1 15 -1 7 1 16 0 16 -1 6 1 16 1 16 -1 7 1 17 0 17 -1 6 1 17 1 17 -1 7 1 18 0 18 -1 6 1 18 1 18 -1 7 1 19 0 19 -1 6 1 19 1 19 -1 7 1 8 2 8 -1 4 1 8 3 8 -1 5 1 9 2 9 -1 4 1 9 3 9 -1 5 1 10 2 10 -1 4 1 10 3 10 -1 5 1 11 2 11 -1 4 1 11 3 11 -1 5 1 12 2 12 -1 4 1 12 3 12 -1 5 1 13 2 13 -1 4 1 13 3 13 -1 5 1 14 2 14 -1 4 1 14 3 14 -1 5 1 15 2 15 -1 4 1 15 3 15 -1 5 1 16 2 16 -1 4 1 16 3 16 -1 5 1 17 2 17 -1 4 1 17 3 17 -1 5 1 18 2 18 -1 4 1 18 3 18 -1 5 1 19 2 19 -1 4 1 19 3 19 -1 5 1 8 4 8 -1 2 1 8 5 8 -1 3 1 9 4 9 -1 2 1 9 5 9 -1 3 1 10 4 10 -1 2 1 10 5 10 -1 3 1 11 4 11 -1 2 1 11 5 11 -1 3 1 12 4 12 -1 2 1 12 5 12 -1 3 1 13 4 13 -1 2 1 13 5 13 -1 3 1 14 4 14 -1 2 1 14 5 14 -1 3 1 15 4 15 -1 2 1 15 5 15 -1 3 1 16 4 16 -1 2 1 16 5 16 -1 3 1 17 4 17 -1 2 1 17 5 17 -1 3 1 18 4 18 -1 2 1 18 5 18 -1 3 1 19 4 19 -1 2 1 19 5 19 -1 3 1 8 6 8 -1 0 1 8 7 8 -1 1 1 9 6 9 -1 0 1 9 7 9 -1 1 1 10 6 10 -1 0 1 10 7 10 -1 1 1 11 6 11 -1 0 1 11 7 11 -1 1 1 12 6 12 -1 0 1 12 7 12 -1 1 1 13 6 13 -1 0 1 13 7 13 -1 1 1 14 6 14 -1 0 1 14 7 14 -1 1 1 15 6 15 -1 0 1 15 7 15 -1 1 1 16 6 16 -1 0 1 16 7 16 -1 1 1 17 6 17 -1 0 1 17 7 17 -1 1 1 18 6 18 -1 0 1 18 7 18 -1 1 1 19 6 19 -1 0 1 19 7 19 -1 1 1 end_operator begin_operator F'_0 0 192 1 0 0 0 -1 3 1 0 1 0 -1 4 1 0 2 0 -1 5 1 1 0 1 -1 3 1 1 1 1 -1 4 1 1 2 1 -1 5 1 2 0 2 -1 3 1 2 1 2 -1 4 1 2 2 2 -1 5 1 3 0 3 -1 3 1 3 1 3 -1 4 1 3 2 3 -1 5 1 4 0 4 -1 3 1 4 1 4 -1 4 1 4 2 4 -1 5 1 5 0 5 -1 3 1 5 1 5 -1 4 1 5 2 5 -1 5 1 6 0 6 -1 3 1 6 1 6 -1 4 1 6 2 6 -1 5 1 7 0 7 -1 3 1 7 1 7 -1 4 1 7 2 7 -1 5 1 0 3 0 -1 9 1 0 5 0 -1 11 1 0 4 0 -1 10 1 1 3 1 -1 9 1 1 5 1 -1 11 1 1 4 1 -1 10 1 2 3 2 -1 9 1 2 5 2 -1 11 1 2 4 2 -1 10 1 3 3 3 -1 9 1 3 5 3 -1 11 1 3 4 3 -1 10 1 4 3 4 -1 9 1 4 5 4 -1 11 1 4 4 4 -1 10 1 5 3 5 -1 9 1 5 5 5 -1 11 1 5 4 5 -1 10 1 6 3 6 -1 9 1 6 5 6 -1 11 1 6 4 6 -1 10 1 7 3 7 -1 9 1 7 5 7 -1 11 1 7 4 7 -1 10 1 0 6 0 -1 0 1 0 8 0 -1 2 1 0 7 0 -1 1 1 1 6 1 -1 0 1 1 8 1 -1 2 1 1 7 1 -1 1 1 2 6 2 -1 0 1 2 8 2 -1 2 1 2 7 2 -1 1 1 3 6 3 -1 0 1 3 8 3 -1 2 1 3 7 3 -1 1 1 4 6 4 -1 0 1 4 8 4 -1 2 1 4 7 4 -1 1 1 5 6 5 -1 0 1 5 8 5 -1 2 1 5 7 5 -1 1 1 6 6 6 -1 0 1 6 8 6 -1 2 1 6 7 6 -1 1 1 7 6 7 -1 0 1 7 8 7 -1 2 1 7 7 7 -1 1 1 0 9 0 -1 6 1 0 10 0 -1 7 1 0 11 0 -1 8 1 1 9 1 -1 6 1 1 10 1 -1 7 1 1 11 1 -1 8 1 2 9 2 -1 6 1 2 10 2 -1 7 1 2 11 2 -1 8 1 3 9 3 -1 6 1 3 10 3 -1 7 1 3 11 3 -1 8 1 4 9 4 -1 6 1 4 10 4 -1 7 1 4 11 4 -1 8 1 5 9 5 -1 6 1 5 10 5 -1 7 1 5 11 5 -1 8 1 6 9 6 -1 6 1 6 10 6 -1 7 1 6 11 6 -1 8 1 7 9 7 -1 6 1 7 10 7 -1 7 1 7 11 7 -1 8 1 8 0 8 -1 4 1 8 1 8 -1 5 1 9 0 9 -1 4 1 9 1 9 -1 5 1 10 0 10 -1 4 1 10 1 10 -1 5 1 11 0 11 -1 4 1 11 1 11 -1 5 1 12 0 12 -1 4 1 12 1 12 -1 5 1 13 0 13 -1 4 1 13 1 13 -1 5 1 14 0 14 -1 4 1 14 1 14 -1 5 1 15 0 15 -1 4 1 15 1 15 -1 5 1 16 0 16 -1 4 1 16 1 16 -1 5 1 17 0 17 -1 4 1 17 1 17 -1 5 1 18 0 18 -1 4 1 18 1 18 -1 5 1 19 0 19 -1 4 1 19 1 19 -1 5 1 8 2 8 -1 0 1 8 3 8 -1 1 1 9 2 9 -1 0 1 9 3 9 -1 1 1 10 2 10 -1 0 1 10 3 10 -1 1 1 11 2 11 -1 0 1 11 3 11 -1 1 1 12 2 12 -1 0 1 12 3 12 -1 1 1 13 2 13 -1 0 1 13 3 13 -1 1 1 14 2 14 -1 0 1 14 3 14 -1 1 1 15 2 15 -1 0 1 15 3 15 -1 1 1 16 2 16 -1 0 1 16 3 16 -1 1 1 17 2 17 -1 0 1 17 3 17 -1 1 1 18 2 18 -1 0 1 18 3 18 -1 1 1 19 2 19 -1 0 1 19 3 19 -1 1 1 8 4 8 -1 6 1 8 5 8 -1 7 1 9 4 9 -1 6 1 9 5 9 -1 7 1 10 4 10 -1 6 1 10 5 10 -1 7 1 11 4 11 -1 6 1 11 5 11 -1 7 1 12 4 12 -1 6 1 12 5 12 -1 7 1 13 4 13 -1 6 1 13 5 13 -1 7 1 14 4 14 -1 6 1 14 5 14 -1 7 1 15 4 15 -1 6 1 15 5 15 -1 7 1 16 4 16 -1 6 1 16 5 16 -1 7 1 17 4 17 -1 6 1 17 5 17 -1 7 1 18 4 18 -1 6 1 18 5 18 -1 7 1 19 4 19 -1 6 1 19 5 19 -1 7 1 8 6 8 -1 2 1 8 7 8 -1 3 1 9 6 9 -1 2 1 9 7 9 -1 3 1 10 6 10 -1 2 1 10 7 10 -1 3 1 11 6 11 -1 2 1 11 7 11 -1 3 1 12 6 12 -1 2 1 12 7 12 -1 3 1 13 6 13 -1 2 1 13 7 13 -1 3 1 14 6 14 -1 2 1 14 7 14 -1 3 1 15 6 15 -1 2 1 15 7 15 -1 3 1 16 6 16 -1 2 1 16 7 16 -1 3 1 17 6 17 -1 2 1 17 7 17 -1 3 1 18 6 18 -1 2 1 18 7 18 -1 3 1 19 6 19 -1 2 1 19 7 19 -1 3 1 end_operator begin_operator B_0 0 192 1 0 12 0 -1 15 1 0 14 0 -1 17 1 0 13 0 -1 16 1 1 12 1 -1 15 1 1 14 1 -1 17 1 1 13 1 -1 16 1 2 12 2 -1 15 1 2 14 2 -1 17 1 2 13 2 -1 16 1 3 12 3 -1 15 1 3 14 3 -1 17 1 3 13 3 -1 16 1 4 12 4 -1 15 1 4 14 4 -1 17 1 4 13 4 -1 16 1 5 12 5 -1 15 1 5 14 5 -1 17 1 5 13 5 -1 16 1 6 12 6 -1 15 1 6 14 6 -1 17 1 6 13 6 -1 16 1 7 12 7 -1 15 1 7 14 7 -1 17 1 7 13 7 -1 16 1 0 15 0 -1 21 1 0 16 0 -1 22 1 0 17 0 -1 23 1 1 15 1 -1 21 1 1 16 1 -1 22 1 1 17 1 -1 23 1 2 15 2 -1 21 1 2 16 2 -1 22 1 2 17 2 -1 23 1 3 15 3 -1 21 1 3 16 3 -1 22 1 3 17 3 -1 23 1 4 15 4 -1 21 1 4 16 4 -1 22 1 4 17 4 -1 23 1 5 15 5 -1 21 1 5 16 5 -1 22 1 5 17 5 -1 23 1 6 15 6 -1 21 1 6 16 6 -1 22 1 6 17 6 -1 23 1 7 15 7 -1 21 1 7 16 7 -1 22 1 7 17 7 -1 23 1 0 18 0 -1 12 1 0 19 0 -1 13 1 0 20 0 -1 14 1 1 18 1 -1 12 1 1 19 1 -1 13 1 1 20 1 -1 14 1 2 18 2 -1 12 1 2 19 2 -1 13 1 2 20 2 -1 14 1 3 18 3 -1 12 1 3 19 3 -1 13 1 3 20 3 -1 14 1 4 18 4 -1 12 1 4 19 4 -1 13 1 4 20 4 -1 14 1 5 18 5 -1 12 1 5 19 5 -1 13 1 5 20 5 -1 14 1 6 18 6 -1 12 1 6 19 6 -1 13 1 6 20 6 -1 14 1 7 18 7 -1 12 1 7 19 7 -1 13 1 7 20 7 -1 14 1 0 21 0 -1 18 1 0 23 0 -1 20 1 0 22 0 -1 19 1 1 21 1 -1 18 1 1 23 1 -1 20 1 1 22 1 -1 19 1 2 21 2 -1 18 1 2 23 2 -1 20 1 2 22 2 -1 19 1 3 21 3 -1 18 1 3 23 3 -1 20 1 3 22 3 -1 19 1 4 21 4 -1 18 1 4 23 4 -1 20 1 4 22 4 -1 19 1 5 21 5 -1 18 1 5 23 5 -1 20 1 5 22 5 -1 19 1 6 21 6 -1 18 1 6 23 6 -1 20 1 6 22 6 -1 19 1 7 21 7 -1 18 1 7 23 7 -1 20 1 7 22 7 -1 19 1 8 16 8 -1 20 1 8 17 8 -1 21 1 9 16 9 -1 20 1 9 17 9 -1 21 1 10 16 10 -1 20 1 10 17 10 -1 21 1 11 16 11 -1 20 1 11 17 11 -1 21 1 12 16 12 -1 20 1 12 17 12 -1 21 1 13 16 13 -1 20 1 13 17 13 -1 21 1 14 16 14 -1 20 1 14 17 14 -1 21 1 15 16 15 -1 20 1 15 17 15 -1 21 1 16 16 16 -1 20 1 16 17 16 -1 21 1 17 16 17 -1 20 1 17 17 17 -1 21 1 18 16 18 -1 20 1 18 17 18 -1 21 1 19 16 19 -1 20 1 19 17 19 -1 21 1 8 18 8 -1 16 1 8 19 8 -1 17 1 9 18 9 -1 16 1 9 19 9 -1 17 1 10 18 10 -1 16 1 10 19 10 -1 17 1 11 18 11 -1 16 1 11 19 11 -1 17 1 12 18 12 -1 16 1 12 19 12 -1 17 1 13 18 13 -1 16 1 13 19 13 -1 17 1 14 18 14 -1 16 1 14 19 14 -1 17 1 15 18 15 -1 16 1 15 19 15 -1 17 1 16 18 16 -1 16 1 16 19 16 -1 17 1 17 18 17 -1 16 1 17 19 17 -1 17 1 18 18 18 -1 16 1 18 19 18 -1 17 1 19 18 19 -1 16 1 19 19 19 -1 17 1 8 20 8 -1 22 1 8 21 8 -1 23 1 9 20 9 -1 22 1 9 21 9 -1 23 1 10 20 10 -1 22 1 10 21 10 -1 23 1 11 20 11 -1 22 1 11 21 11 -1 23 1 12 20 12 -1 22 1 12 21 12 -1 23 1 13 20 13 -1 22 1 13 21 13 -1 23 1 14 20 14 -1 22 1 14 21 14 -1 23 1 15 20 15 -1 22 1 15 21 15 -1 23 1 16 20 16 -1 22 1 16 21 16 -1 23 1 17 20 17 -1 22 1 17 21 17 -1 23 1 18 20 18 -1 22 1 18 21 18 -1 23 1 19 20 19 -1 22 1 19 21 19 -1 23 1 8 22 8 -1 18 1 8 23 8 -1 19 1 9 22 9 -1 18 1 9 23 9 -1 19 1 10 22 10 -1 18 1 10 23 10 -1 19 1 11 22 11 -1 18 1 11 23 11 -1 19 1 12 22 12 -1 18 1 12 23 12 -1 19 1 13 22 13 -1 18 1 13 23 13 -1 19 1 14 22 14 -1 18 1 14 23 14 -1 19 1 15 22 15 -1 18 1 15 23 15 -1 19 1 16 22 16 -1 18 1 16 23 16 -1 19 1 17 22 17 -1 18 1 17 23 17 -1 19 1 18 22 18 -1 18 1 18 23 18 -1 19 1 19 22 19 -1 18 1 19 23 19 -1 19 1 end_operator begin_operator B2_0 0 192 1 0 12 0 -1 21 1 0 14 0 -1 23 1 0 13 0 -1 22 1 1 12 1 -1 21 1 1 14 1 -1 23 1 1 13 1 -1 22 1 2 12 2 -1 21 1 2 14 2 -1 23 1 2 13 2 -1 22 1 3 12 3 -1 21 1 3 14 3 -1 23 1 3 13 3 -1 22 1 4 12 4 -1 21 1 4 14 4 -1 23 1 4 13 4 -1 22 1 5 12 5 -1 21 1 5 14 5 -1 23 1 5 13 5 -1 22 1 6 12 6 -1 21 1 6 14 6 -1 23 1 6 13 6 -1 22 1 7 12 7 -1 21 1 7 14 7 -1 23 1 7 13 7 -1 22 1 0 15 0 -1 18 1 0 16 0 -1 19 1 0 17 0 -1 20 1 1 15 1 -1 18 1 1 16 1 -1 19 1 1 17 1 -1 20 1 2 15 2 -1 18 1 2 16 2 -1 19 1 2 17 2 -1 20 1 3 15 3 -1 18 1 3 16 3 -1 19 1 3 17 3 -1 20 1 4 15 4 -1 18 1 4 16 4 -1 19 1 4 17 4 -1 20 1 5 15 5 -1 18 1 5 16 5 -1 19 1 5 17 5 -1 20 1 6 15 6 -1 18 1 6 16 6 -1 19 1 6 17 6 -1 20 1 7 15 7 -1 18 1 7 16 7 -1 19 1 7 17 7 -1 20 1 0 18 0 -1 15 1 0 19 0 -1 16 1 0 20 0 -1 17 1 1 18 1 -1 15 1 1 19 1 -1 16 1 1 20 1 -1 17 1 2 18 2 -1 15 1 2 19 2 -1 16 1 2 20 2 -1 17 1 3 18 3 -1 15 1 3 19 3 -1 16 1 3 20 3 -1 17 1 4 18 4 -1 15 1 4 19 4 -1 16 1 4 20 4 -1 17 1 5 18 5 -1 15 1 5 19 5 -1 16 1 5 20 5 -1 17 1 6 18 6 -1 15 1 6 19 6 -1 16 1 6 20 6 -1 17 1 7 18 7 -1 15 1 7 19 7 -1 16 1 7 20 7 -1 17 1 0 21 0 -1 12 1 0 23 0 -1 14 1 0 22 0 -1 13 1 1 21 1 -1 12 1 1 23 1 -1 14 1 1 22 1 -1 13 1 2 21 2 -1 12 1 2 23 2 -1 14 1 2 22 2 -1 13 1 3 21 3 -1 12 1 3 23 3 -1 14 1 3 22 3 -1 13 1 4 21 4 -1 12 1 4 23 4 -1 14 1 4 22 4 -1 13 1 5 21 5 -1 12 1 5 23 5 -1 14 1 5 22 5 -1 13 1 6 21 6 -1 12 1 6 23 6 -1 14 1 6 22 6 -1 13 1 7 21 7 -1 12 1 7 23 7 -1 14 1 7 22 7 -1 13 1 8 16 8 -1 22 1 8 17 8 -1 23 1 9 16 9 -1 22 1 9 17 9 -1 23 1 10 16 10 -1 22 1 10 17 10 -1 23 1 11 16 11 -1 22 1 11 17 11 -1 23 1 12 16 12 -1 22 1 12 17 12 -1 23 1 13 16 13 -1 22 1 13 17 13 -1 23 1 14 16 14 -1 22 1 14 17 14 -1 23 1 15 16 15 -1 22 1 15 17 15 -1 23 1 16 16 16 -1 22 1 16 17 16 -1 23 1 17 16 17 -1 22 1 17 17 17 -1 23 1 18 16 18 -1 22 1 18 17 18 -1 23 1 19 16 19 -1 22 1 19 17 19 -1 23 1 8 18 8 -1 20 1 8 19 8 -1 21 1 9 18 9 -1 20 1 9 19 9 -1 21 1 10 18 10 -1 20 1 10 19 10 -1 21 1 11 18 11 -1 20 1 11 19 11 -1 21 1 12 18 12 -1 20 1 12 19 12 -1 21 1 13 18 13 -1 20 1 13 19 13 -1 21 1 14 18 14 -1 20 1 14 19 14 -1 21 1 15 18 15 -1 20 1 15 19 15 -1 21 1 16 18 16 -1 20 1 16 19 16 -1 21 1 17 18 17 -1 20 1 17 19 17 -1 21 1 18 18 18 -1 20 1 18 19 18 -1 21 1 19 18 19 -1 20 1 19 19 19 -1 21 1 8 20 8 -1 18 1 8 21 8 -1 19 1 9 20 9 -1 18 1 9 21 9 -1 19 1 10 20 10 -1 18 1 10 21 10 -1 19 1 11 20 11 -1 18 1 11 21 11 -1 19 1 12 20 12 -1 18 1 12 21 12 -1 19 1 13 20 13 -1 18 1 13 21 13 -1 19 1 14 20 14 -1 18 1 14 21 14 -1 19 1 15 20 15 -1 18 1 15 21 15 -1 19 1 16 20 16 -1 18 1 16 21 16 -1 19 1 17 20 17 -1 18 1 17 21 17 -1 19 1 18 20 18 -1 18 1 18 21 18 -1 19 1 19 20 19 -1 18 1 19 21 19 -1 19 1 8 22 8 -1 16 1 8 23 8 -1 17 1 9 22 9 -1 16 1 9 23 9 -1 17 1 10 22 10 -1 16 1 10 23 10 -1 17 1 11 22 11 -1 16 1 11 23 11 -1 17 1 12 22 12 -1 16 1 12 23 12 -1 17 1 13 22 13 -1 16 1 13 23 13 -1 17 1 14 22 14 -1 16 1 14 23 14 -1 17 1 15 22 15 -1 16 1 15 23 15 -1 17 1 16 22 16 -1 16 1 16 23 16 -1 17 1 17 22 17 -1 16 1 17 23 17 -1 17 1 18 22 18 -1 16 1 18 23 18 -1 17 1 19 22 19 -1 16 1 19 23 19 -1 17 1 end_operator begin_operator B'_0 0 192 1 0 12 0 -1 18 1 0 14 0 -1 20 1 0 13 0 -1 19 1 1 12 1 -1 18 1 1 14 1 -1 20 1 1 13 1 -1 19 1 2 12 2 -1 18 1 2 14 2 -1 20 1 2 13 2 -1 19 1 3 12 3 -1 18 1 3 14 3 -1 20 1 3 13 3 -1 19 1 4 12 4 -1 18 1 4 14 4 -1 20 1 4 13 4 -1 19 1 5 12 5 -1 18 1 5 14 5 -1 20 1 5 13 5 -1 19 1 6 12 6 -1 18 1 6 14 6 -1 20 1 6 13 6 -1 19 1 7 12 7 -1 18 1 7 14 7 -1 20 1 7 13 7 -1 19 1 0 15 0 -1 12 1 0 16 0 -1 13 1 0 17 0 -1 14 1 1 15 1 -1 12 1 1 16 1 -1 13 1 1 17 1 -1 14 1 2 15 2 -1 12 1 2 16 2 -1 13 1 2 17 2 -1 14 1 3 15 3 -1 12 1 3 16 3 -1 13 1 3 17 3 -1 14 1 4 15 4 -1 12 1 4 16 4 -1 13 1 4 17 4 -1 14 1 5 15 5 -1 12 1 5 16 5 -1 13 1 5 17 5 -1 14 1 6 15 6 -1 12 1 6 16 6 -1 13 1 6 17 6 -1 14 1 7 15 7 -1 12 1 7 16 7 -1 13 1 7 17 7 -1 14 1 0 18 0 -1 21 1 0 19 0 -1 22 1 0 20 0 -1 23 1 1 18 1 -1 21 1 1 19 1 -1 22 1 1 20 1 -1 23 1 2 18 2 -1 21 1 2 19 2 -1 22 1 2 20 2 -1 23 1 3 18 3 -1 21 1 3 19 3 -1 22 1 3 20 3 -1 23 1 4 18 4 -1 21 1 4 19 4 -1 22 1 4 20 4 -1 23 1 5 18 5 -1 21 1 5 19 5 -1 22 1 5 20 5 -1 23 1 6 18 6 -1 21 1 6 19 6 -1 22 1 6 20 6 -1 23 1 7 18 7 -1 21 1 7 19 7 -1 22 1 7 20 7 -1 23 1 0 21 0 -1 15 1 0 23 0 -1 17 1 0 22 0 -1 16 1 1 21 1 -1 15 1 1 23 1 -1 17 1 1 22 1 -1 16 1 2 21 2 -1 15 1 2 23 2 -1 17 1 2 22 2 -1 16 1 3 21 3 -1 15 1 3 23 3 -1 17 1 3 22 3 -1 16 1 4 21 4 -1 15 1 4 23 4 -1 17 1 4 22 4 -1 16 1 5 21 5 -1 15 1 5 23 5 -1 17 1 5 22 5 -1 16 1 6 21 6 -1 15 1 6 23 6 -1 17 1 6 22 6 -1 16 1 7 21 7 -1 15 1 7 23 7 -1 17 1 7 22 7 -1 16 1 8 16 8 -1 18 1 8 17 8 -1 19 1 9 16 9 -1 18 1 9 17 9 -1 19 1 10 16 10 -1 18 1 10 17 10 -1 19 1 11 16 11 -1 18 1 11 17 11 -1 19 1 12 16 12 -1 18 1 12 17 12 -1 19 1 13 16 13 -1 18 1 13 17 13 -1 19 1 14 16 14 -1 18 1 14 17 14 -1 19 1 15 16 15 -1 18 1 15 17 15 -1 19 1 16 16 16 -1 18 1 16 17 16 -1 19 1 17 16 17 -1 18 1 17 17 17 -1 19 1 18 16 18 -1 18 1 18 17 18 -1 19 1 19 16 19 -1 18 1 19 17 19 -1 19 1 8 18 8 -1 22 1 8 19 8 -1 23 1 9 18 9 -1 22 1 9 19 9 -1 23 1 10 18 10 -1 22 1 10 19 10 -1 23 1 11 18 11 -1 22 1 11 19 11 -1 23 1 12 18 12 -1 22 1 12 19 12 -1 23 1 13 18 13 -1 22 1 13 19 13 -1 23 1 14 18 14 -1 22 1 14 19 14 -1 23 1 15 18 15 -1 22 1 15 19 15 -1 23 1 16 18 16 -1 22 1 16 19 16 -1 23 1 17 18 17 -1 22 1 17 19 17 -1 23 1 18 18 18 -1 22 1 18 19 18 -1 23 1 19 18 19 -1 22 1 19 19 19 -1 23 1 8 20 8 -1 16 1 8 21 8 -1 17 1 9 20 9 -1 16 1 9 21 9 -1 17 1 10 20 10 -1 16 1 10 21 10 -1 17 1 11 20 11 -1 16 1 11 21 11 -1 17 1 12 20 12 -1 16 1 12 21 12 -1 17 1 13 20 13 -1 16 1 13 21 13 -1 17 1 14 20 14 -1 16 1 14 21 14 -1 17 1 15 20 15 -1 16 1 15 21 15 -1 17 1 16 20 16 -1 16 1 16 21 16 -1 17 1 17 20 17 -1 16 1 17 21 17 -1 17 1 18 20 18 -1 16 1 18 21 18 -1 17 1 19 20 19 -1 16 1 19 21 19 -1 17 1 8 22 8 -1 20 1 8 23 8 -1 21 1 9 22 9 -1 20 1 9 23 9 -1 21 1 10 22 10 -1 20 1 10 23 10 -1 21 1 11 22 11 -1 20 1 11 23 11 -1 21 1 12 22 12 -1 20 1 12 23 12 -1 21 1 13 22 13 -1 20 1 13 23 13 -1 21 1 14 22 14 -1 20 1 14 23 14 -1 21 1 15 22 15 -1 20 1 15 23 15 -1 21 1 16 22 16 -1 20 1 16 23 16 -1 21 1 17 22 17 -1 20 1 17 23 17 -1 21 1 18 22 18 -1 20 1 18 23 18 -1 21 1 19 22 19 -1 20 1 19 23 19 -1 21 1 end_operator begin_operator L_0 0 192 1 0 0 0 -1 5 1 0 1 0 -1 3 1 0 2 0 -1 4 1 1 0 1 -1 5 1 1 1 1 -1 3 1 1 2 1 -1 4 1 2 0 2 -1 5 1 2 1 2 -1 3 1 2 2 2 -1 4 1 3 0 3 -1 5 1 3 1 3 -1 3 1 3 2 3 -1 4 1 4 0 4 -1 5 1 4 1 4 -1 3 1 4 2 4 -1 4 1 5 0 5 -1 5 1 5 1 5 -1 3 1 5 2 5 -1 4 1 6 0 6 -1 5 1 6 1 6 -1 3 1 6 2 6 -1 4 1 7 0 7 -1 5 1 7 1 7 -1 3 1 7 2 7 -1 4 1 0 3 0 -1 16 1 0 5 0 -1 15 1 0 4 0 -1 17 1 1 3 1 -1 16 1 1 5 1 -1 15 1 1 4 1 -1 17 1 2 3 2 -1 16 1 2 5 2 -1 15 1 2 4 2 -1 17 1 3 3 3 -1 16 1 3 5 3 -1 15 1 3 4 3 -1 17 1 4 3 4 -1 16 1 4 5 4 -1 15 1 4 4 4 -1 17 1 5 3 5 -1 16 1 5 5 5 -1 15 1 5 4 5 -1 17 1 6 3 6 -1 16 1 6 5 6 -1 15 1 6 4 6 -1 17 1 7 3 7 -1 16 1 7 5 7 -1 15 1 7 4 7 -1 17 1 0 12 0 -1 1 1 0 14 0 -1 0 1 0 13 0 -1 2 1 1 12 1 -1 1 1 1 14 1 -1 0 1 1 13 1 -1 2 1 2 12 2 -1 1 1 2 14 2 -1 0 1 2 13 2 -1 2 1 3 12 3 -1 1 1 3 14 3 -1 0 1 3 13 3 -1 2 1 4 12 4 -1 1 1 4 14 4 -1 0 1 4 13 4 -1 2 1 5 12 5 -1 1 1 5 14 5 -1 0 1 5 13 5 -1 2 1 6 12 6 -1 1 1 6 14 6 -1 0 1 6 13 6 -1 2 1 7 12 7 -1 1 1 7 14 7 -1 0 1 7 13 7 -1 2 1 0 15 0 -1 14 1 0 16 0 -1 12 1 0 17 0 -1 13 1 1 15 1 -1 14 1 1 16 1 -1 12 1 1 17 1 -1 13 1 2 15 2 -1 14 1 2 16 2 -1 12 1 2 17 2 -1 13 1 3 15 3 -1 14 1 3 16 3 -1 12 1 3 17 3 -1 13 1 4 15 4 -1 14 1 4 16 4 -1 12 1 4 17 4 -1 13 1 5 15 5 -1 14 1 5 16 5 -1 12 1 5 17 5 -1 13 1 6 15 6 -1 14 1 6 16 6 -1 12 1 6 17 6 -1 13 1 7 15 7 -1 14 1 7 16 7 -1 12 1 7 17 7 -1 13 1 8 0 8 -1 11 1 8 1 8 -1 10 1 9 0 9 -1 11 1 9 1 9 -1 10 1 10 0 10 -1 11 1 10 1 10 -1 10 1 11 0 11 -1 11 1 11 1 11 -1 10 1 12 0 12 -1 11 1 12 1 12 -1 10 1 13 0 13 -1 11 1 13 1 13 -1 10 1 14 0 14 -1 11 1 14 1 14 -1 10 1 15 0 15 -1 11 1 15 1 15 -1 10 1 16 0 16 -1 11 1 16 1 16 -1 10 1 17 0 17 -1 11 1 17 1 17 -1 10 1 18 0 18 -1 11 1 18 1 18 -1 10 1 19 0 19 -1 11 1 19 1 19 -1 10 1 8 8 8 -1 1 1 8 9 8 -1 0 1 9 8 9 -1 1 1 9 9 9 -1 0 1 10 8 10 -1 1 1 10 9 10 -1 0 1 11 8 11 -1 1 1 11 9 11 -1 0 1 12 8 12 -1 1 1 12 9 12 -1 0 1 13 8 13 -1 1 1 13 9 13 -1 0 1 14 8 14 -1 1 1 14 9 14 -1 0 1 15 8 15 -1 1 1 15 9 15 -1 0 1 16 8 16 -1 1 1 16 9 16 -1 0 1 17 8 17 -1 1 1 17 9 17 -1 0 1 18 8 18 -1 1 1 18 9 18 -1 0 1 19 8 19 -1 1 1 19 9 19 -1 0 1 8 10 8 -1 17 1 8 11 8 -1 16 1 9 10 9 -1 17 1 9 11 9 -1 16 1 10 10 10 -1 17 1 10 11 10 -1 16 1 11 10 11 -1 17 1 11 11 11 -1 16 1 12 10 12 -1 17 1 12 11 12 -1 16 1 13 10 13 -1 17 1 13 11 13 -1 16 1 14 10 14 -1 17 1 14 11 14 -1 16 1 15 10 15 -1 17 1 15 11 15 -1 16 1 16 10 16 -1 17 1 16 11 16 -1 16 1 17 10 17 -1 17 1 17 11 17 -1 16 1 18 10 18 -1 17 1 18 11 18 -1 16 1 19 10 19 -1 17 1 19 11 19 -1 16 1 8 16 8 -1 9 1 8 17 8 -1 8 1 9 16 9 -1 9 1 9 17 9 -1 8 1 10 16 10 -1 9 1 10 17 10 -1 8 1 11 16 11 -1 9 1 11 17 11 -1 8 1 12 16 12 -1 9 1 12 17 12 -1 8 1 13 16 13 -1 9 1 13 17 13 -1 8 1 14 16 14 -1 9 1 14 17 14 -1 8 1 15 16 15 -1 9 1 15 17 15 -1 8 1 16 16 16 -1 9 1 16 17 16 -1 8 1 17 16 17 -1 9 1 17 17 17 -1 8 1 18 16 18 -1 9 1 18 17 18 -1 8 1 19 16 19 -1 9 1 19 17 19 -1 8 1 end_operator begin_operator L2_0 0 192 1 0 0 0 -1 15 1 0 1 0 -1 16 1 0 2 0 -1 17 1 1 0 1 -1 15 1 1 1 1 -1 16 1 1 2 1 -1 17 1 2 0 2 -1 15 1 2 1 2 -1 16 1 2 2 2 -1 17 1 3 0 3 -1 15 1 3 1 3 -1 16 1 3 2 3 -1 17 1 4 0 4 -1 15 1 4 1 4 -1 16 1 4 2 4 -1 17 1 5 0 5 -1 15 1 5 1 5 -1 16 1 5 2 5 -1 17 1 6 0 6 -1 15 1 6 1 6 -1 16 1 6 2 6 -1 17 1 7 0 7 -1 15 1 7 1 7 -1 16 1 7 2 7 -1 17 1 0 3 0 -1 12 1 0 5 0 -1 14 1 0 4 0 -1 13 1 1 3 1 -1 12 1 1 5 1 -1 14 1 1 4 1 -1 13 1 2 3 2 -1 12 1 2 5 2 -1 14 1 2 4 2 -1 13 1 3 3 3 -1 12 1 3 5 3 -1 14 1 3 4 3 -1 13 1 4 3 4 -1 12 1 4 5 4 -1 14 1 4 4 4 -1 13 1 5 3 5 -1 12 1 5 5 5 -1 14 1 5 4 5 -1 13 1 6 3 6 -1 12 1 6 5 6 -1 14 1 6 4 6 -1 13 1 7 3 7 -1 12 1 7 5 7 -1 14 1 7 4 7 -1 13 1 0 12 0 -1 3 1 0 14 0 -1 5 1 0 13 0 -1 4 1 1 12 1 -1 3 1 1 14 1 -1 5 1 1 13 1 -1 4 1 2 12 2 -1 3 1 2 14 2 -1 5 1 2 13 2 -1 4 1 3 12 3 -1 3 1 3 14 3 -1 5 1 3 13 3 -1 4 1 4 12 4 -1 3 1 4 14 4 -1 5 1 4 13 4 -1 4 1 5 12 5 -1 3 1 5 14 5 -1 5 1 5 13 5 -1 4 1 6 12 6 -1 3 1 6 14 6 -1 5 1 6 13 6 -1 4 1 7 12 7 -1 3 1 7 14 7 -1 5 1 7 13 7 -1 4 1 0 15 0 -1 0 1 0 16 0 -1 1 1 0 17 0 -1 2 1 1 15 1 -1 0 1 1 16 1 -1 1 1 1 17 1 -1 2 1 2 15 2 -1 0 1 2 16 2 -1 1 1 2 17 2 -1 2 1 3 15 3 -1 0 1 3 16 3 -1 1 1 3 17 3 -1 2 1 4 15 4 -1 0 1 4 16 4 -1 1 1 4 17 4 -1 2 1 5 15 5 -1 0 1 5 16 5 -1 1 1 5 17 5 -1 2 1 6 15 6 -1 0 1 6 16 6 -1 1 1 6 17 6 -1 2 1 7 15 7 -1 0 1 7 16 7 -1 1 1 7 17 7 -1 2 1 8 0 8 -1 16 1 8 1 8 -1 17 1 9 0 9 -1 16 1 9 1 9 -1 17 1 10 0 10 -1 16 1 10 1 10 -1 17 1 11 0 11 -1 16 1 11 1 11 -1 17 1 12 0 12 -1 16 1 12 1 12 -1 17 1 13 0 13 -1 16 1 13 1 13 -1 17 1 14 0 14 -1 16 1 14 1 14 -1 17 1 15 0 15 -1 16 1 15 1 15 -1 17 1 16 0 16 -1 16 1 16 1 16 -1 17 1 17 0 17 -1 16 1 17 1 17 -1 17 1 18 0 18 -1 16 1 18 1 18 -1 17 1 19 0 19 -1 16 1 19 1 19 -1 17 1 8 8 8 -1 10 1 8 9 8 -1 11 1 9 8 9 -1 10 1 9 9 9 -1 11 1 10 8 10 -1 10 1 10 9 10 -1 11 1 11 8 11 -1 10 1 11 9 11 -1 11 1 12 8 12 -1 10 1 12 9 12 -1 11 1 13 8 13 -1 10 1 13 9 13 -1 11 1 14 8 14 -1 10 1 14 9 14 -1 11 1 15 8 15 -1 10 1 15 9 15 -1 11 1 16 8 16 -1 10 1 16 9 16 -1 11 1 17 8 17 -1 10 1 17 9 17 -1 11 1 18 8 18 -1 10 1 18 9 18 -1 11 1 19 8 19 -1 10 1 19 9 19 -1 11 1 8 10 8 -1 8 1 8 11 8 -1 9 1 9 10 9 -1 8 1 9 11 9 -1 9 1 10 10 10 -1 8 1 10 11 10 -1 9 1 11 10 11 -1 8 1 11 11 11 -1 9 1 12 10 12 -1 8 1 12 11 12 -1 9 1 13 10 13 -1 8 1 13 11 13 -1 9 1 14 10 14 -1 8 1 14 11 14 -1 9 1 15 10 15 -1 8 1 15 11 15 -1 9 1 16 10 16 -1 8 1 16 11 16 -1 9 1 17 10 17 -1 8 1 17 11 17 -1 9 1 18 10 18 -1 8 1 18 11 18 -1 9 1 19 10 19 -1 8 1 19 11 19 -1 9 1 8 16 8 -1 0 1 8 17 8 -1 1 1 9 16 9 -1 0 1 9 17 9 -1 1 1 10 16 10 -1 0 1 10 17 10 -1 1 1 11 16 11 -1 0 1 11 17 11 -1 1 1 12 16 12 -1 0 1 12 17 12 -1 1 1 13 16 13 -1 0 1 13 17 13 -1 1 1 14 16 14 -1 0 1 14 17 14 -1 1 1 15 16 15 -1 0 1 15 17 15 -1 1 1 16 16 16 -1 0 1 16 17 16 -1 1 1 17 16 17 -1 0 1 17 17 17 -1 1 1 18 16 18 -1 0 1 18 17 18 -1 1 1 19 16 19 -1 0 1 19 17 19 -1 1 1 end_operator begin_operator L'_0 0 192 1 0 0 0 -1 14 1 0 1 0 -1 12 1 0 2 0 -1 13 1 1 0 1 -1 14 1 1 1 1 -1 12 1 1 2 1 -1 13 1 2 0 2 -1 14 1 2 1 2 -1 12 1 2 2 2 -1 13 1 3 0 3 -1 14 1 3 1 3 -1 12 1 3 2 3 -1 13 1 4 0 4 -1 14 1 4 1 4 -1 12 1 4 2 4 -1 13 1 5 0 5 -1 14 1 5 1 5 -1 12 1 5 2 5 -1 13 1 6 0 6 -1 14 1 6 1 6 -1 12 1 6 2 6 -1 13 1 7 0 7 -1 14 1 7 1 7 -1 12 1 7 2 7 -1 13 1 0 3 0 -1 1 1 0 5 0 -1 0 1 0 4 0 -1 2 1 1 3 1 -1 1 1 1 5 1 -1 0 1 1 4 1 -1 2 1 2 3 2 -1 1 1 2 5 2 -1 0 1 2 4 2 -1 2 1 3 3 3 -1 1 1 3 5 3 -1 0 1 3 4 3 -1 2 1 4 3 4 -1 1 1 4 5 4 -1 0 1 4 4 4 -1 2 1 5 3 5 -1 1 1 5 5 5 -1 0 1 5 4 5 -1 2 1 6 3 6 -1 1 1 6 5 6 -1 0 1 6 4 6 -1 2 1 7 3 7 -1 1 1 7 5 7 -1 0 1 7 4 7 -1 2 1 0 12 0 -1 16 1 0 14 0 -1 15 1 0 13 0 -1 17 1 1 12 1 -1 16 1 1 14 1 -1 15 1 1 13 1 -1 17 1 2 12 2 -1 16 1 2 14 2 -1 15 1 2 13 2 -1 17 1 3 12 3 -1 16 1 3 14 3 -1 15 1 3 13 3 -1 17 1 4 12 4 -1 16 1 4 14 4 -1 15 1 4 13 4 -1 17 1 5 12 5 -1 16 1 5 14 5 -1 15 1 5 13 5 -1 17 1 6 12 6 -1 16 1 6 14 6 -1 15 1 6 13 6 -1 17 1 7 12 7 -1 16 1 7 14 7 -1 15 1 7 13 7 -1 17 1 0 15 0 -1 5 1 0 16 0 -1 3 1 0 17 0 -1 4 1 1 15 1 -1 5 1 1 16 1 -1 3 1 1 17 1 -1 4 1 2 15 2 -1 5 1 2 16 2 -1 3 1 2 17 2 -1 4 1 3 15 3 -1 5 1 3 16 3 -1 3 1 3 17 3 -1 4 1 4 15 4 -1 5 1 4 16 4 -1 3 1 4 17 4 -1 4 1 5 15 5 -1 5 1 5 16 5 -1 3 1 5 17 5 -1 4 1 6 15 6 -1 5 1 6 16 6 -1 3 1 6 17 6 -1 4 1 7 15 7 -1 5 1 7 16 7 -1 3 1 7 17 7 -1 4 1 8 0 8 -1 9 1 8 1 8 -1 8 1 9 0 9 -1 9 1 9 1 9 -1 8 1 10 0 10 -1 9 1 10 1 10 -1 8 1 11 0 11 -1 9 1 11 1 11 -1 8 1 12 0 12 -1 9 1 12 1 12 -1 8 1 13 0 13 -1 9 1 13 1 13 -1 8 1 14 0 14 -1 9 1 14 1 14 -1 8 1 15 0 15 -1 9 1 15 1 15 -1 8 1 16 0 16 -1 9 1 16 1 16 -1 8 1 17 0 17 -1 9 1 17 1 17 -1 8 1 18 0 18 -1 9 1 18 1 18 -1 8 1 19 0 19 -1 9 1 19 1 19 -1 8 1 8 8 8 -1 17 1 8 9 8 -1 16 1 9 8 9 -1 17 1 9 9 9 -1 16 1 10 8 10 -1 17 1 10 9 10 -1 16 1 11 8 11 -1 17 1 11 9 11 -1 16 1 12 8 12 -1 17 1 12 9 12 -1 16 1 13 8 13 -1 17 1 13 9 13 -1 16 1 14 8 14 -1 17 1 14 9 14 -1 16 1 15 8 15 -1 17 1 15 9 15 -1 16 1 16 8 16 -1 17 1 16 9 16 -1 16 1 17 8 17 -1 17 1 17 9 17 -1 16 1 18 8 18 -1 17 1 18 9 18 -1 16 1 19 8 19 -1 17 1 19 9 19 -1 16 1 8 10 8 -1 1 1 8 11 8 -1 0 1 9 10 9 -1 1 1 9 11 9 -1 0 1 10 10 10 -1 1 1 10 11 10 -1 0 1 11 10 11 -1 1 1 11 11 11 -1 0 1 12 10 12 -1 1 1 12 11 12 -1 0 1 13 10 13 -1 1 1 13 11 13 -1 0 1 14 10 14 -1 1 1 14 11 14 -1 0 1 15 10 15 -1 1 1 15 11 15 -1 0 1 16 10 16 -1 1 1 16 11 16 -1 0 1 17 10 17 -1 1 1 17 11 17 -1 0 1 18 10 18 -1 1 1 18 11 18 -1 0 1 19 10 19 -1 1 1 19 11 19 -1 0 1 8 16 8 -1 11 1 8 17 8 -1 10 1 9 16 9 -1 11 1 9 17 9 -1 10 1 10 16 10 -1 11 1 10 17 10 -1 10 1 11 16 11 -1 11 1 11 17 11 -1 10 1 12 16 12 -1 11 1 12 17 12 -1 10 1 13 16 13 -1 11 1 13 17 13 -1 10 1 14 16 14 -1 11 1 14 17 14 -1 10 1 15 16 15 -1 11 1 15 17 15 -1 10 1 16 16 16 -1 11 1 16 17 16 -1 10 1 17 16 17 -1 11 1 17 17 17 -1 10 1 18 16 18 -1 11 1 18 17 18 -1 10 1 19 16 19 -1 11 1 19 17 19 -1 10 1 end_operator begin_operator R_0 0 192 1 0 6 0 -1 19 1 0 8 0 -1 18 1 0 7 0 -1 20 1 1 6 1 -1 19 1 1 8 1 -1 18 1 1 7 1 -1 20 1 2 6 2 -1 19 1 2 8 2 -1 18 1 2 7 2 -1 20 1 3 6 3 -1 19 1 3 8 3 -1 18 1 3 7 3 -1 20 1 4 6 4 -1 19 1 4 8 4 -1 18 1 4 7 4 -1 20 1 5 6 5 -1 19 1 5 8 5 -1 18 1 5 7 5 -1 20 1 6 6 6 -1 19 1 6 8 6 -1 18 1 6 7 6 -1 20 1 7 6 7 -1 19 1 7 8 7 -1 18 1 7 7 7 -1 20 1 0 9 0 -1 8 1 0 10 0 -1 6 1 0 11 0 -1 7 1 1 9 1 -1 8 1 1 10 1 -1 6 1 1 11 1 -1 7 1 2 9 2 -1 8 1 2 10 2 -1 6 1 2 11 2 -1 7 1 3 9 3 -1 8 1 3 10 3 -1 6 1 3 11 3 -1 7 1 4 9 4 -1 8 1 4 10 4 -1 6 1 4 11 4 -1 7 1 5 9 5 -1 8 1 5 10 5 -1 6 1 5 11 5 -1 7 1 6 9 6 -1 8 1 6 10 6 -1 6 1 6 11 6 -1 7 1 7 9 7 -1 8 1 7 10 7 -1 6 1 7 11 7 -1 7 1 0 18 0 -1 23 1 0 19 0 -1 21 1 0 20 0 -1 22 1 1 18 1 -1 23 1 1 19 1 -1 21 1 1 20 1 -1 22 1 2 18 2 -1 23 1 2 19 2 -1 21 1 2 20 2 -1 22 1 3 18 3 -1 23 1 3 19 3 -1 21 1 3 20 3 -1 22 1 4 18 4 -1 23 1 4 19 4 -1 21 1 4 20 4 -1 22 1 5 18 5 -1 23 1 5 19 5 -1 21 1 5 20 5 -1 22 1 6 18 6 -1 23 1 6 19 6 -1 21 1 6 20 6 -1 22 1 7 18 7 -1 23 1 7 19 7 -1 21 1 7 20 7 -1 22 1 0 21 0 -1 10 1 0 23 0 -1 9 1 0 22 0 -1 11 1 1 21 1 -1 10 1 1 23 1 -1 9 1 1 22 1 -1 11 1 2 21 2 -1 10 1 2 23 2 -1 9 1 2 22 2 -1 11 1 3 21 3 -1 10 1 3 23 3 -1 9 1 3 22 3 -1 11 1 4 21 4 -1 10 1 4 23 4 -1 9 1 4 22 4 -1 11 1 5 21 5 -1 10 1 5 23 5 -1 9 1 5 22 5 -1 11 1 6 21 6 -1 10 1 6 23 6 -1 9 1 6 22 6 -1 11 1 7 21 7 -1 10 1 7 23 7 -1 9 1 7 22 7 -1 11 1 8 6 8 -1 13 1 8 7 8 -1 12 1 9 6 9 -1 13 1 9 7 9 -1 12 1 10 6 10 -1 13 1 10 7 10 -1 12 1 11 6 11 -1 13 1 11 7 11 -1 12 1 12 6 12 -1 13 1 12 7 12 -1 12 1 13 6 13 -1 13 1 13 7 13 -1 12 1 14 6 14 -1 13 1 14 7 14 -1 12 1 15 6 15 -1 13 1 15 7 15 -1 12 1 16 6 16 -1 13 1 16 7 16 -1 12 1 17 6 17 -1 13 1 17 7 17 -1 12 1 18 6 18 -1 13 1 18 7 18 -1 12 1 19 6 19 -1 13 1 19 7 19 -1 12 1 8 12 8 -1 23 1 8 13 8 -1 22 1 9 12 9 -1 23 1 9 13 9 -1 22 1 10 12 10 -1 23 1 10 13 10 -1 22 1 11 12 11 -1 23 1 11 13 11 -1 22 1 12 12 12 -1 23 1 12 13 12 -1 22 1 13 12 13 -1 23 1 13 13 13 -1 22 1 14 12 14 -1 23 1 14 13 14 -1 22 1 15 12 15 -1 23 1 15 13 15 -1 22 1 16 12 16 -1 23 1 16 13 16 -1 22 1 17 12 17 -1 23 1 17 13 17 -1 22 1 18 12 18 -1 23 1 18 13 18 -1 22 1 19 12 19 -1 23 1 19 13 19 -1 22 1 8 14 8 -1 7 1 8 15 8 -1 6 1 9 14 9 -1 7 1 9 15 9 -1 6 1 10 14 10 -1 7 1 10 15 10 -1 6 1 11 14 11 -1 7 1 11 15 11 -1 6 1 12 14 12 -1 7 1 12 15 12 -1 6 1 13 14 13 -1 7 1 13 15 13 -1 6 1 14 14 14 -1 7 1 14 15 14 -1 6 1 15 14 15 -1 7 1 15 15 15 -1 6 1 16 14 16 -1 7 1 16 15 16 -1 6 1 17 14 17 -1 7 1 17 15 17 -1 6 1 18 14 18 -1 7 1 18 15 18 -1 6 1 19 14 19 -1 7 1 19 15 19 -1 6 1 8 22 8 -1 15 1 8 23 8 -1 14 1 9 22 9 -1 15 1 9 23 9 -1 14 1 10 22 10 -1 15 1 10 23 10 -1 14 1 11 22 11 -1 15 1 11 23 11 -1 14 1 12 22 12 -1 15 1 12 23 12 -1 14 1 13 22 13 -1 15 1 13 23 13 -1 14 1 14 22 14 -1 15 1 14 23 14 -1 14 1 15 22 15 -1 15 1 15 23 15 -1 14 1 16 22 16 -1 15 1 16 23 16 -1 14 1 17 22 17 -1 15 1 17 23 17 -1 14 1 18 22 18 -1 15 1 18 23 18 -1 14 1 19 22 19 -1 15 1 19 23 19 -1 14 1 end_operator begin_operator R2_0 0 192 1 0 6 0 -1 21 1 0 8 0 -1 23 1 0 7 0 -1 22 1 1 6 1 -1 21 1 1 8 1 -1 23 1 1 7 1 -1 22 1 2 6 2 -1 21 1 2 8 2 -1 23 1 2 7 2 -1 22 1 3 6 3 -1 21 1 3 8 3 -1 23 1 3 7 3 -1 22 1 4 6 4 -1 21 1 4 8 4 -1 23 1 4 7 4 -1 22 1 5 6 5 -1 21 1 5 8 5 -1 23 1 5 7 5 -1 22 1 6 6 6 -1 21 1 6 8 6 -1 23 1 6 7 6 -1 22 1 7 6 7 -1 21 1 7 8 7 -1 23 1 7 7 7 -1 22 1 0 9 0 -1 18 1 0 10 0 -1 19 1 0 11 0 -1 20 1 1 9 1 -1 18 1 1 10 1 -1 19 1 1 11 1 -1 20 1 2 9 2 -1 18 1 2 10 2 -1 19 1 2 11 2 -1 20 1 3 9 3 -1 18 1 3 10 3 -1 19 1 3 11 3 -1 20 1 4 9 4 -1 18 1 4 10 4 -1 19 1 4 11 4 -1 20 1 5 9 5 -1 18 1 5 10 5 -1 19 1 5 11 5 -1 20 1 6 9 6 -1 18 1 6 10 6 -1 19 1 6 11 6 -1 20 1 7 9 7 -1 18 1 7 10 7 -1 19 1 7 11 7 -1 20 1 0 18 0 -1 9 1 0 19 0 -1 10 1 0 20 0 -1 11 1 1 18 1 -1 9 1 1 19 1 -1 10 1 1 20 1 -1 11 1 2 18 2 -1 9 1 2 19 2 -1 10 1 2 20 2 -1 11 1 3 18 3 -1 9 1 3 19 3 -1 10 1 3 20 3 -1 11 1 4 18 4 -1 9 1 4 19 4 -1 10 1 4 20 4 -1 11 1 5 18 5 -1 9 1 5 19 5 -1 10 1 5 20 5 -1 11 1 6 18 6 -1 9 1 6 19 6 -1 10 1 6 20 6 -1 11 1 7 18 7 -1 9 1 7 19 7 -1 10 1 7 20 7 -1 11 1 0 21 0 -1 6 1 0 23 0 -1 8 1 0 22 0 -1 7 1 1 21 1 -1 6 1 1 23 1 -1 8 1 1 22 1 -1 7 1 2 21 2 -1 6 1 2 23 2 -1 8 1 2 22 2 -1 7 1 3 21 3 -1 6 1 3 23 3 -1 8 1 3 22 3 -1 7 1 4 21 4 -1 6 1 4 23 4 -1 8 1 4 22 4 -1 7 1 5 21 5 -1 6 1 5 23 5 -1 8 1 5 22 5 -1 7 1 6 21 6 -1 6 1 6 23 6 -1 8 1 6 22 6 -1 7 1 7 21 7 -1 6 1 7 23 7 -1 8 1 7 22 7 -1 7 1 8 6 8 -1 22 1 8 7 8 -1 23 1 9 6 9 -1 22 1 9 7 9 -1 23 1 10 6 10 -1 22 1 10 7 10 -1 23 1 11 6 11 -1 22 1 11 7 11 -1 23 1 12 6 12 -1 22 1 12 7 12 -1 23 1 13 6 13 -1 22 1 13 7 13 -1 23 1 14 6 14 -1 22 1 14 7 14 -1 23 1 15 6 15 -1 22 1 15 7 15 -1 23 1 16 6 16 -1 22 1 16 7 16 -1 23 1 17 6 17 -1 22 1 17 7 17 -1 23 1 18 6 18 -1 22 1 18 7 18 -1 23 1 19 6 19 -1 22 1 19 7 19 -1 23 1 8 12 8 -1 14 1 8 13 8 -1 15 1 9 12 9 -1 14 1 9 13 9 -1 15 1 10 12 10 -1 14 1 10 13 10 -1 15 1 11 12 11 -1 14 1 11 13 11 -1 15 1 12 12 12 -1 14 1 12 13 12 -1 15 1 13 12 13 -1 14 1 13 13 13 -1 15 1 14 12 14 -1 14 1 14 13 14 -1 15 1 15 12 15 -1 14 1 15 13 15 -1 15 1 16 12 16 -1 14 1 16 13 16 -1 15 1 17 12 17 -1 14 1 17 13 17 -1 15 1 18 12 18 -1 14 1 18 13 18 -1 15 1 19 12 19 -1 14 1 19 13 19 -1 15 1 8 14 8 -1 12 1 8 15 8 -1 13 1 9 14 9 -1 12 1 9 15 9 -1 13 1 10 14 10 -1 12 1 10 15 10 -1 13 1 11 14 11 -1 12 1 11 15 11 -1 13 1 12 14 12 -1 12 1 12 15 12 -1 13 1 13 14 13 -1 12 1 13 15 13 -1 13 1 14 14 14 -1 12 1 14 15 14 -1 13 1 15 14 15 -1 12 1 15 15 15 -1 13 1 16 14 16 -1 12 1 16 15 16 -1 13 1 17 14 17 -1 12 1 17 15 17 -1 13 1 18 14 18 -1 12 1 18 15 18 -1 13 1 19 14 19 -1 12 1 19 15 19 -1 13 1 8 22 8 -1 6 1 8 23 8 -1 7 1 9 22 9 -1 6 1 9 23 9 -1 7 1 10 22 10 -1 6 1 10 23 10 -1 7 1 11 22 11 -1 6 1 11 23 11 -1 7 1 12 22 12 -1 6 1 12 23 12 -1 7 1 13 22 13 -1 6 1 13 23 13 -1 7 1 14 22 14 -1 6 1 14 23 14 -1 7 1 15 22 15 -1 6 1 15 23 15 -1 7 1 16 22 16 -1 6 1 16 23 16 -1 7 1 17 22 17 -1 6 1 17 23 17 -1 7 1 18 22 18 -1 6 1 18 23 18 -1 7 1 19 22 19 -1 6 1 19 23 19 -1 7 1 end_operator begin_operator R'_0 0 192 1 0 6 0 -1 10 1 0 8 0 -1 9 1 0 7 0 -1 11 1 1 6 1 -1 10 1 1 8 1 -1 9 1 1 7 1 -1 11 1 2 6 2 -1 10 1 2 8 2 -1 9 1 2 7 2 -1 11 1 3 6 3 -1 10 1 3 8 3 -1 9 1 3 7 3 -1 11 1 4 6 4 -1 10 1 4 8 4 -1 9 1 4 7 4 -1 11 1 5 6 5 -1 10 1 5 8 5 -1 9 1 5 7 5 -1 11 1 6 6 6 -1 10 1 6 8 6 -1 9 1 6 7 6 -1 11 1 7 6 7 -1 10 1 7 8 7 -1 9 1 7 7 7 -1 11 1 0 9 0 -1 23 1 0 10 0 -1 21 1 0 11 0 -1 22 1 1 9 1 -1 23 1 1 10 1 -1 21 1 1 11 1 -1 22 1 2 9 2 -1 23 1 2 10 2 -1 21 1 2 11 2 -1 22 1 3 9 3 -1 23 1 3 10 3 -1 21 1 3 11 3 -1 22 1 4 9 4 -1 23 1 4 10 4 -1 21 1 4 11 4 -1 22 1 5 9 5 -1 23 1 5 10 5 -1 21 1 5 11 5 -1 22 1 6 9 6 -1 23 1 6 10 6 -1 21 1 6 11 6 -1 22 1 7 9 7 -1 23 1 7 10 7 -1 21 1 7 11 7 -1 22 1 0 18 0 -1 8 1 0 19 0 -1 6 1 0 20 0 -1 7 1 1 18 1 -1 8 1 1 19 1 -1 6 1 1 20 1 -1 7 1 2 18 2 -1 8 1 2 19 2 -1 6 1 2 20 2 -1 7 1 3 18 3 -1 8 1 3 19 3 -1 6 1 3 20 3 -1 7 1 4 18 4 -1 8 1 4 19 4 -1 6 1 4 20 4 -1 7 1 5 18 5 -1 8 1 5 19 5 -1 6 1 5 20 5 -1 7 1 6 18 6 -1 8 1 6 19 6 -1 6 1 6 20 6 -1 7 1 7 18 7 -1 8 1 7 19 7 -1 6 1 7 20 7 -1 7 1 0 21 0 -1 19 1 0 23 0 -1 18 1 0 22 0 -1 20 1 1 21 1 -1 19 1 1 23 1 -1 18 1 1 22 1 -1 20 1 2 21 2 -1 19 1 2 23 2 -1 18 1 2 22 2 -1 20 1 3 21 3 -1 19 1 3 23 3 -1 18 1 3 22 3 -1 20 1 4 21 4 -1 19 1 4 23 4 -1 18 1 4 22 4 -1 20 1 5 21 5 -1 19 1 5 23 5 -1 18 1 5 22 5 -1 20 1 6 21 6 -1 19 1 6 23 6 -1 18 1 6 22 6 -1 20 1 7 21 7 -1 19 1 7 23 7 -1 18 1 7 22 7 -1 20 1 8 6 8 -1 15 1 8 7 8 -1 14 1 9 6 9 -1 15 1 9 7 9 -1 14 1 10 6 10 -1 15 1 10 7 10 -1 14 1 11 6 11 -1 15 1 11 7 11 -1 14 1 12 6 12 -1 15 1 12 7 12 -1 14 1 13 6 13 -1 15 1 13 7 13 -1 14 1 14 6 14 -1 15 1 14 7 14 -1 14 1 15 6 15 -1 15 1 15 7 15 -1 14 1 16 6 16 -1 15 1 16 7 16 -1 14 1 17 6 17 -1 15 1 17 7 17 -1 14 1 18 6 18 -1 15 1 18 7 18 -1 14 1 19 6 19 -1 15 1 19 7 19 -1 14 1 8 12 8 -1 7 1 8 13 8 -1 6 1 9 12 9 -1 7 1 9 13 9 -1 6 1 10 12 10 -1 7 1 10 13 10 -1 6 1 11 12 11 -1 7 1 11 13 11 -1 6 1 12 12 12 -1 7 1 12 13 12 -1 6 1 13 12 13 -1 7 1 13 13 13 -1 6 1 14 12 14 -1 7 1 14 13 14 -1 6 1 15 12 15 -1 7 1 15 13 15 -1 6 1 16 12 16 -1 7 1 16 13 16 -1 6 1 17 12 17 -1 7 1 17 13 17 -1 6 1 18 12 18 -1 7 1 18 13 18 -1 6 1 19 12 19 -1 7 1 19 13 19 -1 6 1 8 14 8 -1 23 1 8 15 8 -1 22 1 9 14 9 -1 23 1 9 15 9 -1 22 1 10 14 10 -1 23 1 10 15 10 -1 22 1 11 14 11 -1 23 1 11 15 11 -1 22 1 12 14 12 -1 23 1 12 15 12 -1 22 1 13 14 13 -1 23 1 13 15 13 -1 22 1 14 14 14 -1 23 1 14 15 14 -1 22 1 15 14 15 -1 23 1 15 15 15 -1 22 1 16 14 16 -1 23 1 16 15 16 -1 22 1 17 14 17 -1 23 1 17 15 17 -1 22 1 18 14 18 -1 23 1 18 15 18 -1 22 1 19 14 19 -1 23 1 19 15 19 -1 22 1 8 22 8 -1 13 1 8 23 8 -1 12 1 9 22 9 -1 13 1 9 23 9 -1 12 1 10 22 10 -1 13 1 10 23 10 -1 12 1 11 22 11 -1 13 1 11 23 11 -1 12 1 12 22 12 -1 13 1 12 23 12 -1 12 1 13 22 13 -1 13 1 13 23 13 -1 12 1 14 22 14 -1 13 1 14 23 14 -1 12 1 15 22 15 -1 13 1 15 23 15 -1 12 1 16 22 16 -1 13 1 16 23 16 -1 12 1 17 22 17 -1 13 1 17 23 17 -1 12 1 18 22 18 -1 13 1 18 23 18 -1 12 1 19 22 19 -1 13 1 19 23 19 -1 12 1 end_operator begin_operator U_0 0 192 1 0 0 0 -1 13 1 0 1 0 -1 14 1 0 2 0 -1 12 1 1 0 1 -1 13 1 1 1 1 -1 14 1 1 2 1 -1 12 1 2 0 2 -1 13 1 2 1 2 -1 14 1 2 2 2 -1 12 1 3 0 3 -1 13 1 3 1 3 -1 14 1 3 2 3 -1 12 1 4 0 4 -1 13 1 4 1 4 -1 14 1 4 2 4 -1 12 1 5 0 5 -1 13 1 5 1 5 -1 14 1 5 2 5 -1 12 1 6 0 6 -1 13 1 6 1 6 -1 14 1 6 2 6 -1 12 1 7 0 7 -1 13 1 7 1 7 -1 14 1 7 2 7 -1 12 1 0 6 0 -1 2 1 0 8 0 -1 1 1 0 7 0 -1 0 1 1 6 1 -1 2 1 1 8 1 -1 1 1 1 7 1 -1 0 1 2 6 2 -1 2 1 2 8 2 -1 1 1 2 7 2 -1 0 1 3 6 3 -1 2 1 3 8 3 -1 1 1 3 7 3 -1 0 1 4 6 4 -1 2 1 4 8 4 -1 1 1 4 7 4 -1 0 1 5 6 5 -1 2 1 5 8 5 -1 1 1 5 7 5 -1 0 1 6 6 6 -1 2 1 6 8 6 -1 1 1 6 7 6 -1 0 1 7 6 7 -1 2 1 7 8 7 -1 1 1 7 7 7 -1 0 1 0 12 0 -1 20 1 0 14 0 -1 19 1 0 13 0 -1 18 1 1 12 1 -1 20 1 1 14 1 -1 19 1 1 13 1 -1 18 1 2 12 2 -1 20 1 2 14 2 -1 19 1 2 13 2 -1 18 1 3 12 3 -1 20 1 3 14 3 -1 19 1 3 13 3 -1 18 1 4 12 4 -1 20 1 4 14 4 -1 19 1 4 13 4 -1 18 1 5 12 5 -1 20 1 5 14 5 -1 19 1 5 13 5 -1 18 1 6 12 6 -1 20 1 6 14 6 -1 19 1 6 13 6 -1 18 1 7 12 7 -1 20 1 7 14 7 -1 19 1 7 13 7 -1 18 1 0 18 0 -1 7 1 0 19 0 -1 8 1 0 20 0 -1 6 1 1 18 1 -1 7 1 1 19 1 -1 8 1 1 20 1 -1 6 1 2 18 2 -1 7 1 2 19 2 -1 8 1 2 20 2 -1 6 1 3 18 3 -1 7 1 3 19 3 -1 8 1 3 20 3 -1 6 1 4 18 4 -1 7 1 4 19 4 -1 8 1 4 20 4 -1 6 1 5 18 5 -1 7 1 5 19 5 -1 8 1 5 20 5 -1 6 1 6 18 6 -1 7 1 6 19 6 -1 8 1 6 20 6 -1 6 1 7 18 7 -1 7 1 7 19 7 -1 8 1 7 20 7 -1 6 1 8 2 8 -1 8 1 8 3 8 -1 9 1 9 2 9 -1 8 1 9 3 9 -1 9 1 10 2 10 -1 8 1 10 3 10 -1 9 1 11 2 11 -1 8 1 11 3 11 -1 9 1 12 2 12 -1 8 1 12 3 12 -1 9 1 13 2 13 -1 8 1 13 3 13 -1 9 1 14 2 14 -1 8 1 14 3 14 -1 9 1 15 2 15 -1 8 1 15 3 15 -1 9 1 16 2 16 -1 8 1 16 3 16 -1 9 1 17 2 17 -1 8 1 17 3 17 -1 9 1 18 2 18 -1 8 1 18 3 18 -1 9 1 19 2 19 -1 8 1 19 3 19 -1 9 1 8 8 8 -1 18 1 8 9 8 -1 19 1 9 8 9 -1 18 1 9 9 9 -1 19 1 10 8 10 -1 18 1 10 9 10 -1 19 1 11 8 11 -1 18 1 11 9 11 -1 19 1 12 8 12 -1 18 1 12 9 12 -1 19 1 13 8 13 -1 18 1 13 9 13 -1 19 1 14 8 14 -1 18 1 14 9 14 -1 19 1 15 8 15 -1 18 1 15 9 15 -1 19 1 16 8 16 -1 18 1 16 9 16 -1 19 1 17 8 17 -1 18 1 17 9 17 -1 19 1 18 8 18 -1 18 1 18 9 18 -1 19 1 19 8 19 -1 18 1 19 9 19 -1 19 1 8 12 8 -1 2 1 8 13 8 -1 3 1 9 12 9 -1 2 1 9 13 9 -1 3 1 10 12 10 -1 2 1 10 13 10 -1 3 1 11 12 11 -1 2 1 11 13 11 -1 3 1 12 12 12 -1 2 1 12 13 12 -1 3 1 13 12 13 -1 2 1 13 13 13 -1 3 1 14 12 14 -1 2 1 14 13 14 -1 3 1 15 12 15 -1 2 1 15 13 15 -1 3 1 16 12 16 -1 2 1 16 13 16 -1 3 1 17 12 17 -1 2 1 17 13 17 -1 3 1 18 12 18 -1 2 1 18 13 18 -1 3 1 19 12 19 -1 2 1 19 13 19 -1 3 1 8 18 8 -1 12 1 8 19 8 -1 13 1 9 18 9 -1 12 1 9 19 9 -1 13 1 10 18 10 -1 12 1 10 19 10 -1 13 1 11 18 11 -1 12 1 11 19 11 -1 13 1 12 18 12 -1 12 1 12 19 12 -1 13 1 13 18 13 -1 12 1 13 19 13 -1 13 1 14 18 14 -1 12 1 14 19 14 -1 13 1 15 18 15 -1 12 1 15 19 15 -1 13 1 16 18 16 -1 12 1 16 19 16 -1 13 1 17 18 17 -1 12 1 17 19 17 -1 13 1 18 18 18 -1 12 1 18 19 18 -1 13 1 19 18 19 -1 12 1 19 19 19 -1 13 1 end_operator begin_operator U2_0 0 192 1 0 0 0 -1 18 1 0 1 0 -1 19 1 0 2 0 -1 20 1 1 0 1 -1 18 1 1 1 1 -1 19 1 1 2 1 -1 20 1 2 0 2 -1 18 1 2 1 2 -1 19 1 2 2 2 -1 20 1 3 0 3 -1 18 1 3 1 3 -1 19 1 3 2 3 -1 20 1 4 0 4 -1 18 1 4 1 4 -1 19 1 4 2 4 -1 20 1 5 0 5 -1 18 1 5 1 5 -1 19 1 5 2 5 -1 20 1 6 0 6 -1 18 1 6 1 6 -1 19 1 6 2 6 -1 20 1 7 0 7 -1 18 1 7 1 7 -1 19 1 7 2 7 -1 20 1 0 6 0 -1 12 1 0 8 0 -1 14 1 0 7 0 -1 13 1 1 6 1 -1 12 1 1 8 1 -1 14 1 1 7 1 -1 13 1 2 6 2 -1 12 1 2 8 2 -1 14 1 2 7 2 -1 13 1 3 6 3 -1 12 1 3 8 3 -1 14 1 3 7 3 -1 13 1 4 6 4 -1 12 1 4 8 4 -1 14 1 4 7 4 -1 13 1 5 6 5 -1 12 1 5 8 5 -1 14 1 5 7 5 -1 13 1 6 6 6 -1 12 1 6 8 6 -1 14 1 6 7 6 -1 13 1 7 6 7 -1 12 1 7 8 7 -1 14 1 7 7 7 -1 13 1 0 12 0 -1 6 1 0 14 0 -1 8 1 0 13 0 -1 7 1 1 12 1 -1 6 1 1 14 1 -1 8 1 1 13 1 -1 7 1 2 12 2 -1 6 1 2 14 2 -1 8 1 2 13 2 -1 7 1 3 12 3 -1 6 1 3 14 3 -1 8 1 3 13 3 -1 7 1 4 12 4 -1 6 1 4 14 4 -1 8 1 4 13 4 -1 7 1 5 12 5 -1 6 1 5 14 5 -1 8 1 5 13 5 -1 7 1 6 12 6 -1 6 1 6 14 6 -1 8 1 6 13 6 -1 7 1 7 12 7 -1 6 1 7 14 7 -1 8 1 7 13 7 -1 7 1 0 18 0 -1 0 1 0 19 0 -1 1 1 0 20 0 -1 2 1 1 18 1 -1 0 1 1 19 1 -1 1 1 1 20 1 -1 2 1 2 18 2 -1 0 1 2 19 2 -1 1 1 2 20 2 -1 2 1 3 18 3 -1 0 1 3 19 3 -1 1 1 3 20 3 -1 2 1 4 18 4 -1 0 1 4 19 4 -1 1 1 4 20 4 -1 2 1 5 18 5 -1 0 1 5 19 5 -1 1 1 5 20 5 -1 2 1 6 18 6 -1 0 1 6 19 6 -1 1 1 6 20 6 -1 2 1 7 18 7 -1 0 1 7 19 7 -1 1 1 7 20 7 -1 2 1 8 2 8 -1 18 1 8 3 8 -1 19 1 9 2 9 -1 18 1 9 3 9 -1 19 1 10 2 10 -1 18 1 10 3 10 -1 19 1 11 2 11 -1 18 1 11 3 11 -1 19 1 12 2 12 -1 18 1 12 3 12 -1 19 1 13 2 13 -1 18 1 13 3 13 -1 19 1 14 2 14 -1 18 1 14 3 14 -1 19 1 15 2 15 -1 18 1 15 3 15 -1 19 1 16 2 16 -1 18 1 16 3 16 -1 19 1 17 2 17 -1 18 1 17 3 17 -1 19 1 18 2 18 -1 18 1 18 3 18 -1 19 1 19 2 19 -1 18 1 19 3 19 -1 19 1 8 8 8 -1 12 1 8 9 8 -1 13 1 9 8 9 -1 12 1 9 9 9 -1 13 1 10 8 10 -1 12 1 10 9 10 -1 13 1 11 8 11 -1 12 1 11 9 11 -1 13 1 12 8 12 -1 12 1 12 9 12 -1 13 1 13 8 13 -1 12 1 13 9 13 -1 13 1 14 8 14 -1 12 1 14 9 14 -1 13 1 15 8 15 -1 12 1 15 9 15 -1 13 1 16 8 16 -1 12 1 16 9 16 -1 13 1 17 8 17 -1 12 1 17 9 17 -1 13 1 18 8 18 -1 12 1 18 9 18 -1 13 1 19 8 19 -1 12 1 19 9 19 -1 13 1 8 12 8 -1 8 1 8 13 8 -1 9 1 9 12 9 -1 8 1 9 13 9 -1 9 1 10 12 10 -1 8 1 10 13 10 -1 9 1 11 12 11 -1 8 1 11 13 11 -1 9 1 12 12 12 -1 8 1 12 13 12 -1 9 1 13 12 13 -1 8 1 13 13 13 -1 9 1 14 12 14 -1 8 1 14 13 14 -1 9 1 15 12 15 -1 8 1 15 13 15 -1 9 1 16 12 16 -1 8 1 16 13 16 -1 9 1 17 12 17 -1 8 1 17 13 17 -1 9 1 18 12 18 -1 8 1 18 13 18 -1 9 1 19 12 19 -1 8 1 19 13 19 -1 9 1 8 18 8 -1 2 1 8 19 8 -1 3 1 9 18 9 -1 2 1 9 19 9 -1 3 1 10 18 10 -1 2 1 10 19 10 -1 3 1 11 18 11 -1 2 1 11 19 11 -1 3 1 12 18 12 -1 2 1 12 19 12 -1 3 1 13 18 13 -1 2 1 13 19 13 -1 3 1 14 18 14 -1 2 1 14 19 14 -1 3 1 15 18 15 -1 2 1 15 19 15 -1 3 1 16 18 16 -1 2 1 16 19 16 -1 3 1 17 18 17 -1 2 1 17 19 17 -1 3 1 18 18 18 -1 2 1 18 19 18 -1 3 1 19 18 19 -1 2 1 19 19 19 -1 3 1 end_operator begin_operator U'_0 0 192 1 0 0 0 -1 7 1 0 1 0 -1 8 1 0 2 0 -1 6 1 1 0 1 -1 7 1 1 1 1 -1 8 1 1 2 1 -1 6 1 2 0 2 -1 7 1 2 1 2 -1 8 1 2 2 2 -1 6 1 3 0 3 -1 7 1 3 1 3 -1 8 1 3 2 3 -1 6 1 4 0 4 -1 7 1 4 1 4 -1 8 1 4 2 4 -1 6 1 5 0 5 -1 7 1 5 1 5 -1 8 1 5 2 5 -1 6 1 6 0 6 -1 7 1 6 1 6 -1 8 1 6 2 6 -1 6 1 7 0 7 -1 7 1 7 1 7 -1 8 1 7 2 7 -1 6 1 0 6 0 -1 20 1 0 8 0 -1 19 1 0 7 0 -1 18 1 1 6 1 -1 20 1 1 8 1 -1 19 1 1 7 1 -1 18 1 2 6 2 -1 20 1 2 8 2 -1 19 1 2 7 2 -1 18 1 3 6 3 -1 20 1 3 8 3 -1 19 1 3 7 3 -1 18 1 4 6 4 -1 20 1 4 8 4 -1 19 1 4 7 4 -1 18 1 5 6 5 -1 20 1 5 8 5 -1 19 1 5 7 5 -1 18 1 6 6 6 -1 20 1 6 8 6 -1 19 1 6 7 6 -1 18 1 7 6 7 -1 20 1 7 8 7 -1 19 1 7 7 7 -1 18 1 0 12 0 -1 2 1 0 14 0 -1 1 1 0 13 0 -1 0 1 1 12 1 -1 2 1 1 14 1 -1 1 1 1 13 1 -1 0 1 2 12 2 -1 2 1 2 14 2 -1 1 1 2 13 2 -1 0 1 3 12 3 -1 2 1 3 14 3 -1 1 1 3 13 3 -1 0 1 4 12 4 -1 2 1 4 14 4 -1 1 1 4 13 4 -1 0 1 5 12 5 -1 2 1 5 14 5 -1 1 1 5 13 5 -1 0 1 6 12 6 -1 2 1 6 14 6 -1 1 1 6 13 6 -1 0 1 7 12 7 -1 2 1 7 14 7 -1 1 1 7 13 7 -1 0 1 0 18 0 -1 13 1 0 19 0 -1 14 1 0 20 0 -1 12 1 1 18 1 -1 13 1 1 19 1 -1 14 1 1 20 1 -1 12 1 2 18 2 -1 13 1 2 19 2 -1 14 1 2 20 2 -1 12 1 3 18 3 -1 13 1 3 19 3 -1 14 1 3 20 3 -1 12 1 4 18 4 -1 13 1 4 19 4 -1 14 1 4 20 4 -1 12 1 5 18 5 -1 13 1 5 19 5 -1 14 1 5 20 5 -1 12 1 6 18 6 -1 13 1 6 19 6 -1 14 1 6 20 6 -1 12 1 7 18 7 -1 13 1 7 19 7 -1 14 1 7 20 7 -1 12 1 8 2 8 -1 12 1 8 3 8 -1 13 1 9 2 9 -1 12 1 9 3 9 -1 13 1 10 2 10 -1 12 1 10 3 10 -1 13 1 11 2 11 -1 12 1 11 3 11 -1 13 1 12 2 12 -1 12 1 12 3 12 -1 13 1 13 2 13 -1 12 1 13 3 13 -1 13 1 14 2 14 -1 12 1 14 3 14 -1 13 1 15 2 15 -1 12 1 15 3 15 -1 13 1 16 2 16 -1 12 1 16 3 16 -1 13 1 17 2 17 -1 12 1 17 3 17 -1 13 1 18 2 18 -1 12 1 18 3 18 -1 13 1 19 2 19 -1 12 1 19 3 19 -1 13 1 8 8 8 -1 2 1 8 9 8 -1 3 1 9 8 9 -1 2 1 9 9 9 -1 3 1 10 8 10 -1 2 1 10 9 10 -1 3 1 11 8 11 -1 2 1 11 9 11 -1 3 1 12 8 12 -1 2 1 12 9 12 -1 3 1 13 8 13 -1 2 1 13 9 13 -1 3 1 14 8 14 -1 2 1 14 9 14 -1 3 1 15 8 15 -1 2 1 15 9 15 -1 3 1 16 8 16 -1 2 1 16 9 16 -1 3 1 17 8 17 -1 2 1 17 9 17 -1 3 1 18 8 18 -1 2 1 18 9 18 -1 3 1 19 8 19 -1 2 1 19 9 19 -1 3 1 8 12 8 -1 18 1 8 13 8 -1 19 1 9 12 9 -1 18 1 9 13 9 -1 19 1 10 12 10 -1 18 1 10 13 10 -1 19 1 11 12 11 -1 18 1 11 13 11 -1 19 1 12 12 12 -1 18 1 12 13 12 -1 19 1 13 12 13 -1 18 1 13 13 13 -1 19 1 14 12 14 -1 18 1 14 13 14 -1 19 1 15 12 15 -1 18 1 15 13 15 -1 19 1 16 12 16 -1 18 1 16 13 16 -1 19 1 17 12 17 -1 18 1 17 13 17 -1 19 1 18 12 18 -1 18 1 18 13 18 -1 19 1 19 12 19 -1 18 1 19 13 19 -1 19 1 8 18 8 -1 8 1 8 19 8 -1 9 1 9 18 9 -1 8 1 9 19 9 -1 9 1 10 18 10 -1 8 1 10 19 10 -1 9 1 11 18 11 -1 8 1 11 19 11 -1 9 1 12 18 12 -1 8 1 12 19 12 -1 9 1 13 18 13 -1 8 1 13 19 13 -1 9 1 14 18 14 -1 8 1 14 19 14 -1 9 1 15 18 15 -1 8 1 15 19 15 -1 9 1 16 18 16 -1 8 1 16 19 16 -1 9 1 17 18 17 -1 8 1 17 19 17 -1 9 1 18 18 18 -1 8 1 18 19 18 -1 9 1 19 18 19 -1 8 1 19 19 19 -1 9 1 end_operator begin_operator D_0 0 192 1 0 3 0 -1 11 1 0 5 0 -1 10 1 0 4 0 -1 9 1 1 3 1 -1 11 1 1 5 1 -1 10 1 1 4 1 -1 9 1 2 3 2 -1 11 1 2 5 2 -1 10 1 2 4 2 -1 9 1 3 3 3 -1 11 1 3 5 3 -1 10 1 3 4 3 -1 9 1 4 3 4 -1 11 1 4 5 4 -1 10 1 4 4 4 -1 9 1 5 3 5 -1 11 1 5 5 5 -1 10 1 5 4 5 -1 9 1 6 3 6 -1 11 1 6 5 6 -1 10 1 6 4 6 -1 9 1 7 3 7 -1 11 1 7 5 7 -1 10 1 7 4 7 -1 9 1 0 9 0 -1 22 1 0 10 0 -1 23 1 0 11 0 -1 21 1 1 9 1 -1 22 1 1 10 1 -1 23 1 1 11 1 -1 21 1 2 9 2 -1 22 1 2 10 2 -1 23 1 2 11 2 -1 21 1 3 9 3 -1 22 1 3 10 3 -1 23 1 3 11 3 -1 21 1 4 9 4 -1 22 1 4 10 4 -1 23 1 4 11 4 -1 21 1 5 9 5 -1 22 1 5 10 5 -1 23 1 5 11 5 -1 21 1 6 9 6 -1 22 1 6 10 6 -1 23 1 6 11 6 -1 21 1 7 9 7 -1 22 1 7 10 7 -1 23 1 7 11 7 -1 21 1 0 15 0 -1 4 1 0 16 0 -1 5 1 0 17 0 -1 3 1 1 15 1 -1 4 1 1 16 1 -1 5 1 1 17 1 -1 3 1 2 15 2 -1 4 1 2 16 2 -1 5 1 2 17 2 -1 3 1 3 15 3 -1 4 1 3 16 3 -1 5 1 3 17 3 -1 3 1 4 15 4 -1 4 1 4 16 4 -1 5 1 4 17 4 -1 3 1 5 15 5 -1 4 1 5 16 5 -1 5 1 5 17 5 -1 3 1 6 15 6 -1 4 1 6 16 6 -1 5 1 6 17 6 -1 3 1 7 15 7 -1 4 1 7 16 7 -1 5 1 7 17 7 -1 3 1 0 21 0 -1 17 1 0 23 0 -1 16 1 0 22 0 -1 15 1 1 21 1 -1 17 1 1 23 1 -1 16 1 1 22 1 -1 15 1 2 21 2 -1 17 1 2 23 2 -1 16 1 2 22 2 -1 15 1 3 21 3 -1 17 1 3 23 3 -1 16 1 3 22 3 -1 15 1 4 21 4 -1 17 1 4 23 4 -1 16 1 4 22 4 -1 15 1 5 21 5 -1 17 1 5 23 5 -1 16 1 5 22 5 -1 15 1 6 21 6 -1 17 1 6 23 6 -1 16 1 6 22 6 -1 15 1 7 21 7 -1 17 1 7 23 7 -1 16 1 7 22 7 -1 15 1 8 4 8 -1 14 1 8 5 8 -1 15 1 9 4 9 -1 14 1 9 5 9 -1 15 1 10 4 10 -1 14 1 10 5 10 -1 15 1 11 4 11 -1 14 1 11 5 11 -1 15 1 12 4 12 -1 14 1 12 5 12 -1 15 1 13 4 13 -1 14 1 13 5 13 -1 15 1 14 4 14 -1 14 1 14 5 14 -1 15 1 15 4 15 -1 14 1 15 5 15 -1 15 1 16 4 16 -1 14 1 16 5 16 -1 15 1 17 4 17 -1 14 1 17 5 17 -1 15 1 18 4 18 -1 14 1 18 5 18 -1 15 1 19 4 19 -1 14 1 19 5 19 -1 15 1 8 10 8 -1 4 1 8 11 8 -1 5 1 9 10 9 -1 4 1 9 11 9 -1 5 1 10 10 10 -1 4 1 10 11 10 -1 5 1 11 10 11 -1 4 1 11 11 11 -1 5 1 12 10 12 -1 4 1 12 11 12 -1 5 1 13 10 13 -1 4 1 13 11 13 -1 5 1 14 10 14 -1 4 1 14 11 14 -1 5 1 15 10 15 -1 4 1 15 11 15 -1 5 1 16 10 16 -1 4 1 16 11 16 -1 5 1 17 10 17 -1 4 1 17 11 17 -1 5 1 18 10 18 -1 4 1 18 11 18 -1 5 1 19 10 19 -1 4 1 19 11 19 -1 5 1 8 14 8 -1 20 1 8 15 8 -1 21 1 9 14 9 -1 20 1 9 15 9 -1 21 1 10 14 10 -1 20 1 10 15 10 -1 21 1 11 14 11 -1 20 1 11 15 11 -1 21 1 12 14 12 -1 20 1 12 15 12 -1 21 1 13 14 13 -1 20 1 13 15 13 -1 21 1 14 14 14 -1 20 1 14 15 14 -1 21 1 15 14 15 -1 20 1 15 15 15 -1 21 1 16 14 16 -1 20 1 16 15 16 -1 21 1 17 14 17 -1 20 1 17 15 17 -1 21 1 18 14 18 -1 20 1 18 15 18 -1 21 1 19 14 19 -1 20 1 19 15 19 -1 21 1 8 20 8 -1 10 1 8 21 8 -1 11 1 9 20 9 -1 10 1 9 21 9 -1 11 1 10 20 10 -1 10 1 10 21 10 -1 11 1 11 20 11 -1 10 1 11 21 11 -1 11 1 12 20 12 -1 10 1 12 21 12 -1 11 1 13 20 13 -1 10 1 13 21 13 -1 11 1 14 20 14 -1 10 1 14 21 14 -1 11 1 15 20 15 -1 10 1 15 21 15 -1 11 1 16 20 16 -1 10 1 16 21 16 -1 11 1 17 20 17 -1 10 1 17 21 17 -1 11 1 18 20 18 -1 10 1 18 21 18 -1 11 1 19 20 19 -1 10 1 19 21 19 -1 11 1 end_operator begin_operator D2_0 0 192 1 0 3 0 -1 21 1 0 5 0 -1 23 1 0 4 0 -1 22 1 1 3 1 -1 21 1 1 5 1 -1 23 1 1 4 1 -1 22 1 2 3 2 -1 21 1 2 5 2 -1 23 1 2 4 2 -1 22 1 3 3 3 -1 21 1 3 5 3 -1 23 1 3 4 3 -1 22 1 4 3 4 -1 21 1 4 5 4 -1 23 1 4 4 4 -1 22 1 5 3 5 -1 21 1 5 5 5 -1 23 1 5 4 5 -1 22 1 6 3 6 -1 21 1 6 5 6 -1 23 1 6 4 6 -1 22 1 7 3 7 -1 21 1 7 5 7 -1 23 1 7 4 7 -1 22 1 0 9 0 -1 15 1 0 10 0 -1 16 1 0 11 0 -1 17 1 1 9 1 -1 15 1 1 10 1 -1 16 1 1 11 1 -1 17 1 2 9 2 -1 15 1 2 10 2 -1 16 1 2 11 2 -1 17 1 3 9 3 -1 15 1 3 10 3 -1 16 1 3 11 3 -1 17 1 4 9 4 -1 15 1 4 10 4 -1 16 1 4 11 4 -1 17 1 5 9 5 -1 15 1 5 10 5 -1 16 1 5 11 5 -1 17 1 6 9 6 -1 15 1 6 10 6 -1 16 1 6 11 6 -1 17 1 7 9 7 -1 15 1 7 10 7 -1 16 1 7 11 7 -1 17 1 0 15 0 -1 9 1 0 16 0 -1 10 1 0 17 0 -1 11 1 1 15 1 -1 9 1 1 16 1 -1 10 1 1 17 1 -1 11 1 2 15 2 -1 9 1 2 16 2 -1 10 1 2 17 2 -1 11 1 3 15 3 -1 9 1 3 16 3 -1 10 1 3 17 3 -1 11 1 4 15 4 -1 9 1 4 16 4 -1 10 1 4 17 4 -1 11 1 5 15 5 -1 9 1 5 16 5 -1 10 1 5 17 5 -1 11 1 6 15 6 -1 9 1 6 16 6 -1 10 1 6 17 6 -1 11 1 7 15 7 -1 9 1 7 16 7 -1 10 1 7 17 7 -1 11 1 0 21 0 -1 3 1 0 23 0 -1 5 1 0 22 0 -1 4 1 1 21 1 -1 3 1 1 23 1 -1 5 1 1 22 1 -1 4 1 2 21 2 -1 3 1 2 23 2 -1 5 1 2 22 2 -1 4 1 3 21 3 -1 3 1 3 23 3 -1 5 1 3 22 3 -1 4 1 4 21 4 -1 3 1 4 23 4 -1 5 1 4 22 4 -1 4 1 5 21 5 -1 3 1 5 23 5 -1 5 1 5 22 5 -1 4 1 6 21 6 -1 3 1 6 23 6 -1 5 1 6 22 6 -1 4 1 7 21 7 -1 3 1 7 23 7 -1 5 1 7 22 7 -1 4 1 8 4 8 -1 20 1 8 5 8 -1 21 1 9 4 9 -1 20 1 9 5 9 -1 21 1 10 4 10 -1 20 1 10 5 10 -1 21 1 11 4 11 -1 20 1 11 5 11 -1 21 1 12 4 12 -1 20 1 12 5 12 -1 21 1 13 4 13 -1 20 1 13 5 13 -1 21 1 14 4 14 -1 20 1 14 5 14 -1 21 1 15 4 15 -1 20 1 15 5 15 -1 21 1 16 4 16 -1 20 1 16 5 16 -1 21 1 17 4 17 -1 20 1 17 5 17 -1 21 1 18 4 18 -1 20 1 18 5 18 -1 21 1 19 4 19 -1 20 1 19 5 19 -1 21 1 8 10 8 -1 14 1 8 11 8 -1 15 1 9 10 9 -1 14 1 9 11 9 -1 15 1 10 10 10 -1 14 1 10 11 10 -1 15 1 11 10 11 -1 14 1 11 11 11 -1 15 1 12 10 12 -1 14 1 12 11 12 -1 15 1 13 10 13 -1 14 1 13 11 13 -1 15 1 14 10 14 -1 14 1 14 11 14 -1 15 1 15 10 15 -1 14 1 15 11 15 -1 15 1 16 10 16 -1 14 1 16 11 16 -1 15 1 17 10 17 -1 14 1 17 11 17 -1 15 1 18 10 18 -1 14 1 18 11 18 -1 15 1 19 10 19 -1 14 1 19 11 19 -1 15 1 8 14 8 -1 10 1 8 15 8 -1 11 1 9 14 9 -1 10 1 9 15 9 -1 11 1 10 14 10 -1 10 1 10 15 10 -1 11 1 11 14 11 -1 10 1 11 15 11 -1 11 1 12 14 12 -1 10 1 12 15 12 -1 11 1 13 14 13 -1 10 1 13 15 13 -1 11 1 14 14 14 -1 10 1 14 15 14 -1 11 1 15 14 15 -1 10 1 15 15 15 -1 11 1 16 14 16 -1 10 1 16 15 16 -1 11 1 17 14 17 -1 10 1 17 15 17 -1 11 1 18 14 18 -1 10 1 18 15 18 -1 11 1 19 14 19 -1 10 1 19 15 19 -1 11 1 8 20 8 -1 4 1 8 21 8 -1 5 1 9 20 9 -1 4 1 9 21 9 -1 5 1 10 20 10 -1 4 1 10 21 10 -1 5 1 11 20 11 -1 4 1 11 21 11 -1 5 1 12 20 12 -1 4 1 12 21 12 -1 5 1 13 20 13 -1 4 1 13 21 13 -1 5 1 14 20 14 -1 4 1 14 21 14 -1 5 1 15 20 15 -1 4 1 15 21 15 -1 5 1 16 20 16 -1 4 1 16 21 16 -1 5 1 17 20 17 -1 4 1 17 21 17 -1 5 1 18 20 18 -1 4 1 18 21 18 -1 5 1 19 20 19 -1 4 1 19 21 19 -1 5 1 end_operator begin_operator D'_0 0 192 1 0 3 0 -1 17 1 0 5 0 -1 16 1 0 4 0 -1 15 1 1 3 1 -1 17 1 1 5 1 -1 16 1 1 4 1 -1 15 1 2 3 2 -1 17 1 2 5 2 -1 16 1 2 4 2 -1 15 1 3 3 3 -1 17 1 3 5 3 -1 16 1 3 4 3 -1 15 1 4 3 4 -1 17 1 4 5 4 -1 16 1 4 4 4 -1 15 1 5 3 5 -1 17 1 5 5 5 -1 16 1 5 4 5 -1 15 1 6 3 6 -1 17 1 6 5 6 -1 16 1 6 4 6 -1 15 1 7 3 7 -1 17 1 7 5 7 -1 16 1 7 4 7 -1 15 1 0 9 0 -1 4 1 0 10 0 -1 5 1 0 11 0 -1 3 1 1 9 1 -1 4 1 1 10 1 -1 5 1 1 11 1 -1 3 1 2 9 2 -1 4 1 2 10 2 -1 5 1 2 11 2 -1 3 1 3 9 3 -1 4 1 3 10 3 -1 5 1 3 11 3 -1 3 1 4 9 4 -1 4 1 4 10 4 -1 5 1 4 11 4 -1 3 1 5 9 5 -1 4 1 5 10 5 -1 5 1 5 11 5 -1 3 1 6 9 6 -1 4 1 6 10 6 -1 5 1 6 11 6 -1 3 1 7 9 7 -1 4 1 7 10 7 -1 5 1 7 11 7 -1 3 1 0 15 0 -1 22 1 0 16 0 -1 23 1 0 17 0 -1 21 1 1 15 1 -1 22 1 1 16 1 -1 23 1 1 17 1 -1 21 1 2 15 2 -1 22 1 2 16 2 -1 23 1 2 17 2 -1 21 1 3 15 3 -1 22 1 3 16 3 -1 23 1 3 17 3 -1 21 1 4 15 4 -1 22 1 4 16 4 -1 23 1 4 17 4 -1 21 1 5 15 5 -1 22 1 5 16 5 -1 23 1 5 17 5 -1 21 1 6 15 6 -1 22 1 6 16 6 -1 23 1 6 17 6 -1 21 1 7 15 7 -1 22 1 7 16 7 -1 23 1 7 17 7 -1 21 1 0 21 0 -1 11 1 0 23 0 -1 10 1 0 22 0 -1 9 1 1 21 1 -1 11 1 1 23 1 -1 10 1 1 22 1 -1 9 1 2 21 2 -1 11 1 2 23 2 -1 10 1 2 22 2 -1 9 1 3 21 3 -1 11 1 3 23 3 -1 10 1 3 22 3 -1 9 1 4 21 4 -1 11 1 4 23 4 -1 10 1 4 22 4 -1 9 1 5 21 5 -1 11 1 5 23 5 -1 10 1 5 22 5 -1 9 1 6 21 6 -1 11 1 6 23 6 -1 10 1 6 22 6 -1 9 1 7 21 7 -1 11 1 7 23 7 -1 10 1 7 22 7 -1 9 1 8 4 8 -1 10 1 8 5 8 -1 11 1 9 4 9 -1 10 1 9 5 9 -1 11 1 10 4 10 -1 10 1 10 5 10 -1 11 1 11 4 11 -1 10 1 11 5 11 -1 11 1 12 4 12 -1 10 1 12 5 12 -1 11 1 13 4 13 -1 10 1 13 5 13 -1 11 1 14 4 14 -1 10 1 14 5 14 -1 11 1 15 4 15 -1 10 1 15 5 15 -1 11 1 16 4 16 -1 10 1 16 5 16 -1 11 1 17 4 17 -1 10 1 17 5 17 -1 11 1 18 4 18 -1 10 1 18 5 18 -1 11 1 19 4 19 -1 10 1 19 5 19 -1 11 1 8 10 8 -1 20 1 8 11 8 -1 21 1 9 10 9 -1 20 1 9 11 9 -1 21 1 10 10 10 -1 20 1 10 11 10 -1 21 1 11 10 11 -1 20 1 11 11 11 -1 21 1 12 10 12 -1 20 1 12 11 12 -1 21 1 13 10 13 -1 20 1 13 11 13 -1 21 1 14 10 14 -1 20 1 14 11 14 -1 21 1 15 10 15 -1 20 1 15 11 15 -1 21 1 16 10 16 -1 20 1 16 11 16 -1 21 1 17 10 17 -1 20 1 17 11 17 -1 21 1 18 10 18 -1 20 1 18 11 18 -1 21 1 19 10 19 -1 20 1 19 11 19 -1 21 1 8 14 8 -1 4 1 8 15 8 -1 5 1 9 14 9 -1 4 1 9 15 9 -1 5 1 10 14 10 -1 4 1 10 15 10 -1 5 1 11 14 11 -1 4 1 11 15 11 -1 5 1 12 14 12 -1 4 1 12 15 12 -1 5 1 13 14 13 -1 4 1 13 15 13 -1 5 1 14 14 14 -1 4 1 14 15 14 -1 5 1 15 14 15 -1 4 1 15 15 15 -1 5 1 16 14 16 -1 4 1 16 15 16 -1 5 1 17 14 17 -1 4 1 17 15 17 -1 5 1 18 14 18 -1 4 1 18 15 18 -1 5 1 19 14 19 -1 4 1 19 15 19 -1 5 1 8 20 8 -1 14 1 8 21 8 -1 15 1 9 20 9 -1 14 1 9 21 9 -1 15 1 10 20 10 -1 14 1 10 21 10 -1 15 1 11 20 11 -1 14 1 11 21 11 -1 15 1 12 20 12 -1 14 1 12 21 12 -1 15 1 13 20 13 -1 14 1 13 21 13 -1 15 1 14 20 14 -1 14 1 14 21 14 -1 15 1 15 20 15 -1 14 1 15 21 15 -1 15 1 16 20 16 -1 14 1 16 21 16 -1 15 1 17 20 17 -1 14 1 17 21 17 -1 15 1 18 20 18 -1 14 1 18 21 18 -1 15 1 19 20 19 -1 14 1 19 21 19 -1 15 1 end_operator 0
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "./libraries/BoringMath.sol"; import "./libraries/SignedSafeMath.sol"; import "./libraries/BoringERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; /************************************************************************************************ Originally from https://github.com/sushiswap/sushiswap/blob/master/contracts/MasterChefV2.sol and https://github.com/sdaoswap/sushiswap/blob/master/contracts/MasterChef.sol This source code has been modified from the original, which was copied from the github repository at commit hash 10148a31d9192bc803dac5d24fe0319b52ae99a4. *************************************************************************************************/ contract SDAOTokenStaking is Ownable,ReentrancyGuard { using BoringMath for uint256; using BoringERC20 for IERC20; using SignedSafeMath for int256; //========== Structs ========== /// @dev Info of each user. /// @param amount LP token amount the user has provided. /// @param rewardDebt The amount of rewards entitled to the user. struct UserInfo { uint256 amount; int256 rewardDebt; } /// @dev Info of each rewards pool. /// @param tokenPerBlock Reward tokens per block number. /// @param lpSupply Total staked amount. /// @param accRewardsPerShare Total rewards accumulated per staked token. /// @param lastRewardBlock Last time rewards were updated for the pool. /// @param endOfEpochBlock End of epoc block number for compute and to avoid deposits. struct PoolInfo { uint256 tokenPerBlock; uint256 lpSupply; uint256 accRewardsPerShare; uint256 lastRewardBlock; uint256 endOfEpochBlock; } //========== Constants ========== /// @dev For percision calculation while computing the rewards. uint256 private constant ACC_REWARDS_PRECISION = 1e18; /// @dev ERC20 token used to distribute rewards. IERC20 public immutable rewardsToken; /** ========== Storage ========== */ /// @dev Indicates whether a staking pool exists for a given staking token. //mapping(address => bool) public stakingPoolExists; /// @dev Info of each staking pool. PoolInfo[] public poolInfo; /// @dev Address of the LP token for each staking pool. mapping(uint256 => IERC20) public lpToken; /// @dev Info of each user that stakes tokens. mapping(uint256 => mapping(address => UserInfo)) public userInfo; /// @dev Total rewards received from governance for distribution. /// Used to return remaining rewards if staking is canceled. uint256 public totalRewardsReceived; // ========== Events ========== event Deposit(address indexed user, uint256 indexed pid, uint256 amount, address indexed to); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount, address indexed to); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount, address indexed to); event Harvest(address indexed user, uint256 indexed pid, uint256 amount); event LogPoolAddition(uint256 indexed pid, IERC20 indexed lpToken); event LogUpdatePool(uint256 indexed pid, uint256 lastRewardBlock, uint256 lpSupply, uint256 accRewardsPerShare); event RewardsAdded(uint256 amount); event ExtendPool(uint256 indexed pid, uint256 rewardBlock, uint256 endOfEpochBlock); // ========== Constructor ========== /// @dev During the deployment of the contract pass the ERC-20 contract address used for rewards. constructor(address _rewardsToken) public { rewardsToken = IERC20(_rewardsToken); } /// @dev Add rewards to be distributed. /// Note: This function must be used to add rewards if the owner /// wants to retain the option to cancel distribution and reclaim /// undistributed tokens. function addRewards(uint256 amount) external onlyOwner { require(rewardsToken.balanceOf(msg.sender) > 0, "ERC20: not enough tokens to transfer"); totalRewardsReceived = totalRewardsReceived.add(amount); rewardsToken.safeTransferFrom(msg.sender, address(this), amount); emit RewardsAdded(amount); } // ========== Pools ========== /// @dev Add a new LP to the pool. /// Can only be called by the owner or the points allocator. /// @param _lpToken Address of the LP ERC-20 token. /// @param _sdaoPerBlock Rewards per block. /// @param _endOfEpochBlock Epocs end block number. function add(IERC20 _lpToken, uint256 _sdaoPerBlock, uint256 _endOfEpochBlock) public onlyOwner { //This is not needed as we are going to use the contract for multiple pools with the same LP Tokens //require(!stakingPoolExists[address(_lpToken)], " Staking pool already exists."); require(_endOfEpochBlock > block.number, "Cannot create the pool for past time."); uint256 pid = poolInfo.length; lpToken[pid] = _lpToken; poolInfo.push(PoolInfo({ tokenPerBlock: _sdaoPerBlock, endOfEpochBlock:_endOfEpochBlock, lastRewardBlock: block.number, lpSupply:0, accRewardsPerShare: 0 })); //stakingPoolExists[address(_lpToken)] = true; emit LogPoolAddition(pid, _lpToken); } /// @dev Add a new LP to the pool. /// Can only be called by the owner or the points allocator. /// @param _pid Pool Id to extend the schedule. /// @param _sdaoPerBlock Rewards per block. /// @param _endOfEpochBlock Epocs end block number. function extendPool(uint256 _pid, uint256 _sdaoPerBlock, uint256 _endOfEpochBlock) public onlyOwner { require(_endOfEpochBlock > block.number && _endOfEpochBlock > poolInfo[_pid].endOfEpochBlock, "Cannot extend the pool for past time."); // Update the accumulated rewards PoolInfo memory pool = updatePool(_pid); pool.tokenPerBlock = _sdaoPerBlock; pool.endOfEpochBlock = _endOfEpochBlock; pool.lastRewardBlock = block.number; // Update the Pool Storage poolInfo[_pid] = pool; emit ExtendPool(_pid, _sdaoPerBlock, _endOfEpochBlock); } /// @dev To get the rewards per block. function sdaoPerBlock(uint256 _pid) public view returns (uint256 amount) { PoolInfo memory pool = poolInfo[_pid]; amount = pool.tokenPerBlock; } /// @dev Update reward variables for all pools in `pids`. /// Note: This can become very expensive. /// @param pids Pool IDs of all to be updated. Make sure to update all active pools. function massUpdatePools(uint256[] calldata pids) external onlyOwner { uint256 len = pids.length; for (uint256 i = 0; i < len; ++i) { updatePool(pids[i]); } } /// @dev Update reward variables of the given pool. /// @param _pid The index of the pool. See `poolInfo`. /// @return pool Returns the pool that was updated. function updatePool(uint256 _pid) private returns (PoolInfo memory pool) { pool = poolInfo[_pid]; uint256 lpSupply = pool.lpSupply; if (block.number > pool.lastRewardBlock && pool.lastRewardBlock < pool.endOfEpochBlock) { if(lpSupply > 0){ uint256 blocks; if(block.number < pool.endOfEpochBlock) { blocks = block.number.sub(pool.lastRewardBlock); } else { blocks = pool.endOfEpochBlock.sub(pool.lastRewardBlock); } uint256 sdaoReward = blocks.mul(sdaoPerBlock(_pid)); pool.accRewardsPerShare = pool.accRewardsPerShare.add((sdaoReward.mul(ACC_REWARDS_PRECISION) / lpSupply)); } pool.lastRewardBlock = block.number; poolInfo[_pid] = pool; emit LogUpdatePool(_pid, pool.lastRewardBlock, lpSupply, pool.accRewardsPerShare); } } // ========== Users ========== /// @dev View function to see pending rewards on frontend. /// @param _pid The index of the pool. See `poolInfo`. /// @param _user Address of user. /// @return pending rewards for a given user. function pendingRewards(uint256 _pid, address _user) external view returns (uint256 pending) { PoolInfo memory pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accRewardsPerShare = pool.accRewardsPerShare; uint256 lpSupply = pool.lpSupply; if (block.number > pool.lastRewardBlock && pool.lastRewardBlock < pool.endOfEpochBlock) { if(lpSupply > 0){ uint256 blocks; if(block.number < pool.endOfEpochBlock) { blocks = block.number.sub(pool.lastRewardBlock); } else { blocks = pool.endOfEpochBlock.sub(pool.lastRewardBlock); } uint256 sdaoReward = blocks.mul(sdaoPerBlock(_pid)); accRewardsPerShare = accRewardsPerShare.add(sdaoReward.mul(ACC_REWARDS_PRECISION) / lpSupply); } } pending = int256(user.amount.mul(accRewardsPerShare) / ACC_REWARDS_PRECISION).sub(user.rewardDebt).toUInt256(); } /// @dev Deposit LP tokens to earn rewards. /// @param _pid The index of the pool. See `poolInfo`. /// @param _amount LP token amount to deposit. /// @param _to The receiver of `_amount` deposit benefit. function deposit(uint256 _pid, uint256 _amount, address _to) external nonReentrant { // Input Validation require(_amount > 0 && _to != address(0), "Invalid inputs for deposit."); PoolInfo memory pool = updatePool(_pid); UserInfo storage user = userInfo[_pid][_to]; // check if epoch as ended or if pool doesnot exist require (pool.endOfEpochBlock > block.number,"This pool epoch has ended. Please join staking new session."); user.amount = user.amount.add(_amount); user.rewardDebt = user.rewardDebt.add(int256(_amount.mul(pool.accRewardsPerShare) / ACC_REWARDS_PRECISION)); // Add to total supply pool.lpSupply = pool.lpSupply.add(_amount); // Update the pool back poolInfo[_pid] = pool; // Interactions lpToken[_pid].safeTransferFrom(msg.sender, address(this), _amount); emit Deposit(msg.sender, _pid, _amount, _to); } /// @dev Withdraw LP tokens from the staking contract. /// @param _pid The index of the pool. See `poolInfo`. /// @param _amount LP token amount to withdraw. /// @param _to Receiver of the LP tokens. function withdraw(uint256 _pid, uint256 _amount, address _to) external nonReentrant { require(_to != address(0), "ERC20: transfer to the zero address"); PoolInfo memory pool = updatePool(_pid); UserInfo storage user = userInfo[_pid][msg.sender]; // Check whether user has deposited stake require(user.amount >= _amount && _amount > 0, "Invalid amount to withdraw."); // Effects user.rewardDebt = user.rewardDebt.sub(int256(_amount.mul(pool.accRewardsPerShare) / ACC_REWARDS_PRECISION)); user.amount = user.amount.sub(_amount); // Subtract from total supply pool.lpSupply = pool.lpSupply.sub(_amount); // Update the pool back poolInfo[_pid] = pool; // Interactions lpToken[_pid].safeTransfer(_to, _amount); emit Withdraw(msg.sender, _pid, _amount, _to); } /// @dev Harvest proceeds for transaction sender to `_to`. /// @param _pid The index of the pool. See `poolInfo`. /// @param _to Receiver of rewards. function harvest(uint256 _pid, address _to) external nonReentrant { require(_to != address(0), "ERC20: transfer to the zero address"); PoolInfo memory pool = updatePool(_pid); UserInfo storage user = userInfo[_pid][msg.sender]; int256 accumulatedRewards = int256(user.amount.mul(pool.accRewardsPerShare) / ACC_REWARDS_PRECISION); uint256 _pendingRewards = accumulatedRewards.sub(user.rewardDebt).toUInt256(); // Effects user.rewardDebt = accumulatedRewards; // Interactions if(_pendingRewards > 0 ) { rewardsToken.safeTransfer(_to, _pendingRewards); } emit Harvest(msg.sender, _pid, _pendingRewards); } //// @dev Withdraw LP tokens and harvest accumulated rewards, sending both to `to`. /// @param _pid The index of the pool. See `poolInfo`. /// @param _amount LP token amount to withdraw. /// @param _to Receiver of the LP tokens and rewards. function withdrawAndHarvest(uint256 _pid, uint256 _amount, address _to) external nonReentrant { require(_to != address(0), "ERC20: transfer to the zero address"); PoolInfo memory pool = updatePool(_pid); UserInfo storage user = userInfo[_pid][msg.sender]; // Check if the user has stake in the pool require(user.amount >= _amount && _amount > 0, "Cannot withdraw more than staked."); int256 accumulatedRewards = int256(user.amount.mul(pool.accRewardsPerShare) / ACC_REWARDS_PRECISION); uint256 _pendingRewards = accumulatedRewards.sub(user.rewardDebt).toUInt256(); // Effects user.rewardDebt = accumulatedRewards.sub(int256(_amount.mul(pool.accRewardsPerShare) / ACC_REWARDS_PRECISION)); user.amount = user.amount.sub(_amount); // Subtract from total supply pool.lpSupply = pool.lpSupply.sub(_amount); // Update the pool back poolInfo[_pid] = pool; // Interactions if(_pendingRewards > 0) { rewardsToken.safeTransfer(_to, _pendingRewards); } lpToken[_pid].safeTransfer(_to, _amount); emit Harvest(msg.sender, _pid, _pendingRewards); emit Withdraw(msg.sender, _pid, _amount, _to); } /// @dev Withdraw without caring about rewards. EMERGENCY ONLY. /// @param _pid The index of the pool. See `poolInfo`. /// @param _to Receiver of the LP tokens. function emergencyWithdraw(uint256 _pid, address _to) external nonReentrant { require(_to != address(0), "ERC20: transfer to the zero address"); UserInfo storage user = userInfo[_pid][msg.sender]; uint256 amount = user.amount; user.amount = 0; user.rewardDebt = 0; PoolInfo memory pool = updatePool(_pid); pool.lpSupply = pool.lpSupply.sub(amount); // Update the pool back poolInfo[_pid] = pool; // Note: transfer can fail or succeed if `amount` is zero. lpToken[_pid].safeTransfer(_to, amount); emit EmergencyWithdraw(msg.sender, _pid, amount, _to); } function withdrawETHAndAnyTokens(address token) external onlyOwner { msg.sender.send(address(this).balance); IERC20 Token = IERC20(token); uint256 currentTokenBalance = Token.balanceOf(address(this)); Token.safeTransfer(msg.sender, currentTokenBalance); } // ========== Getter Functions ========== function poolLength() external view returns (uint256) { return poolInfo.length; } }
--- title: 数据迁移报表 (DB2ToSQL) |Microsoft Docs ms.prod: sql ms.custom: '' ms.date: 01/19/2017 ms.reviewer: '' ms.technology: ssma ms.topic: conceptual ms.assetid: 46ebada7-db36-4ae9-b7ae-baa4b854b237 author: Shamikg ms.author: Shamikg manager: craigg ms.openlocfilehash: 2305040ee7dc8541ff400f5f87c5c87fd85c118e ms.sourcegitcommit: 61381ef939415fe019285def9450d7583df1fed0 ms.translationtype: MT ms.contentlocale: zh-CN ms.lasthandoff: 10/01/2018 ms.locfileid: "47827045" --- # <a name="data-migration-report-db2tosql"></a>数据迁移报表 (DB2ToSQL) **数据迁移报表**迁移到的数据后,会出现对话框[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]。 ## <a name="options"></a>选项 **“状态”** 显示来自源数据迁移到目标数据库的状态。 **From** 源表。 **若要** 目标表中。 **总行数** 源表中的数据行数。 **已成功迁移的行数** 数据行数已成功迁移到目标表。 **比率** 已成功迁移的行的百分比。 **详细信息** 如果任何数据迁移失败,请单击要在报表中显示所选行的迁移详细信息。 SSMA 会显示失败的原因。 **保存报表** 保存到报表。CSV (逗号分隔值) 文件,可以使用 Microsoft Excel 进行检查。
get_l_a0_bernoulli <- function(y0, n0, cc, dd, a_0){ ans <- lbeta(a_0 * y0 + cc, a_0 *(n0 -y0) + dd)-lbeta(cc, dd) return(ans) } posterior_a0_Bernoulli_2 <- function(a_0, y0, n0, y, n, cc, dd, delta, nu, log = FALSE){ term1 <- get_l_a0_bernoulli(y0 = y0, n0 = n0, cc = cc, dd = dd, a_0 = a_0) term2 <- dbeta(a_0, shape1 = delta, shape2 = nu, log = TRUE) term3 <- lbeta(a_0 * y0 + y + cc - 1, a_0 * (n0 - y0) + dd + (n-y) - 1) ans <- -term1 + term2 + term3 if(!log) ans <- exp(ans) return(ans) } post_a0_2 <- function(x) { posterior_a0_Bernoulli_2(a_0 = x, y0 = y_0, n0 = N_0, y = y, n = N, cc = cc, dd = dd, nu = nu, delta = delta) } post_a0_2 <- Vectorize(post_a0_2) post_a0_2 <- Vectorize(post_a0_2) curve(post_a0_2) K2 <- integrate(post_a0_2, 0, 1)$value norm_post_a0_2 <- function(x) post_a0_2(x)/K2 norm_post_a0_2 <- Vectorize(norm_post_a0_2) curve(norm_post_a0_2)
$packageName = 'kvrt' $url = 'http://devbuilds.kaspersky-labs.com/devbuilds/KVRT/latest/full/KVRT.exe' $checksum = 'e48f5ee797e85f724cbf42e00c6e6c04fb3bc90f' $checksumType = 'sha1' $toolsPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $installFile = Join-Path $toolsPath "kvrt.exe" try { Get-ChocolateyWebFile -PackageName "$packageName" ` -FileFullPath "$installFile" ` -Url "$url" ` -Checksum "$checksum" ` -ChecksumType "$checksumType" # create empty sidecars so shimgen only creates one shim Set-Content -Path ("$installFile.ignore") ` -Value $null # create batch to start executable $batchStart = Join-Path $toolsPath "kvrt.bat" 'start kvrt.exe -accepteula' | Out-File -FilePath $batchStart -Encoding ASCII Install-BinFile "kvrt" "$batchStart" } catch { throw $_.Exception }
/* * Copyright (c) 2018, The OpenThread Authors. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holder nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ /** * @file * This file defines OpenThread String class. */ #ifndef STRING_HPP_ #define STRING_HPP_ #include "openthread-core-config.h" #include <stdarg.h> #include <stdint.h> #include <stdio.h> #include "common/code_utils.hpp" #include "common/error.hpp" namespace ot { /** * @addtogroup core-string * * @brief * This module includes definitions for OpenThread String class. * * @{ * */ /** * This function returns the number of characters that precede the terminating nullptr character. * * @param[in] aString A pointer to the string. * @param[in] aMaxLength The maximum length in bytes. * * @returns The number of characters that precede the terminating nullptr character or @p aMaxLength, whichever is * smaller. * */ uint16_t StringLength(const char *aString, uint16_t aMaxLength); /** * This function finds the first occurrence of a given character in a null-terminated string. * * @param[in] aString A pointer to the string. * @param[in] aChar A char to search for in the string. * * @returns The pointer to first occurrence of the @p aChar in @p aString, or nullptr if cannot be found. * */ const char *StringFind(const char *aString, char aChar); /** * This function checks whether a null-terminated string ends with a given character. * * @param[in] aString A pointer to the string. * @param[in] aChar A char to check. * * @retval TRUE If @p aString ends with character @p aChar. * @retval FALSE If @p aString does not end with character @p aChar. * */ bool StringEndsWith(const char *aString, char aChar); /** * This class implements writing to a string buffer. * */ class StringWriter { public: /** * This constructor initializes the object as cleared on the provided buffer. * * @param[in] aBuffer A pointer to the char buffer to write into. * @param[in] aSize The size of @p aBuffer. * */ StringWriter(char *aBuffer, uint16_t aSize); /** * This method clears the string writer. * * @returns The string writer. * */ StringWriter &Clear(void); /** * This method returns whether the output is truncated. * * @note If the output is truncated, the buffer is still null-terminated. * * @retval true The output is truncated. * @retval false The output is not truncated. * */ bool IsTruncated(void) const { return mLength >= mSize; } /** * This method gets the length of the wanted string. * * Similar to `strlen()` the length does not include the null character at the end of the string. * * @returns The string length. * */ uint16_t GetLength(void) const { return mLength; } /** * This method returns the size (number of chars) in the buffer. * * @returns The size of the buffer. * */ uint16_t GetSize(void) const { return mSize; } /** * This method appends `printf()` style formatted data to the buffer. * * @param[in] aFormat A pointer to the format string. * @param[in] ... Arguments for the format specification. * * @returns The string writer. * */ StringWriter &Append(const char *aFormat, ...); /** * This method appends `printf()` style formatted data to the buffer. * * @param[in] aFormat A pointer to the format string. * @param[in] aArgs Arguments for the format specification (as `va_list`). * * @returns The string writer. * */ StringWriter &AppendVarArgs(const char *aFormat, va_list aArgs); /** * This method appends an array of bytes in hex representation (using "%02x" style) to the buffer. * * @param[in] aBytes A pointer to buffer containing the bytes to append. * @param[in] aLength The length of @p aBytes buffer (in bytes). * * @returns The string writer. * */ StringWriter &AppendHexBytes(const uint8_t *aBytes, uint16_t aLength); private: char * mBuffer; uint16_t mLength; const uint16_t mSize; }; /** * This class defines a fixed-size string. * */ template <uint16_t kSize> class String : public StringWriter { static_assert(kSize > 0, "String buffer cannot be empty."); public: /** * This constructor initializes the string as empty. * */ String(void) : StringWriter(mBuffer, sizeof(mBuffer)) { } /** * This method returns the string as a null-terminated C string. * * @returns The null-terminated C string. * */ const char *AsCString(void) const { return mBuffer; } private: char mBuffer[kSize]; }; /** * This function validates whether a given byte sequence (string) follows UTF-8 encoding. * * @param[in] aString A null-terminated byte sequence. * * @retval TRUE The sequence is a valid UTF-8 string. * @retval FALSE The sequence is not a valid UTF-8 string. * */ bool IsValidUtf8String(const char *aString); /** * This function validates whether a given byte sequence (string) follows UTF-8 encoding. * * @param[in] aString A byte sequence. * @param[in] aLength Length of the sequence. * * @retval TRUE The sequence is a valid UTF-8 string. * @retval FALSE The sequence is not a valid UTF-8 string. * */ bool IsValidUtf8String(const char *aString, size_t aLength); /** * @} * */ } // namespace ot #endif // STRING_HPP_
Imports jp.co.systembase.json Imports jp.co.systembase.report Imports jp.co.systembase.report.data Imports jp.co.systembase.report.renderer.gdi Public Class Test_4_36_FooterIfSpace Public Overrides Function ToString() As String Return "4.36 隙間があればフッター出力(page_group_count版)" End Function Public Sub Run() Dim name As String = "test_4_36_footer_if_space" Dim report As New Report(Json.Read("rrpt\" & name & ".rrpt")) report.Fill(New ReportDataSource(GetDataTable)) Dim pages As ReportPages = report.GetPages() Dim preview As New FmPrintPreview(New Printer(pages)) preview.StartUpZoomFit = True preview.ShowDialog() End Sub Private Function GetDataTable() As DataTable Dim ret As New DataTable() ret.Columns.Add("k", GetType(Decimal)) ret.Columns.Add("v", GetType(Decimal)) For i As Integer = 1 To 5 For j As Integer = 1 To 3 + i ret.Rows.Add(i, j) Next Next Return ret End Function End Class
(TMP-DEFTYPES-STRINGP-OF-STR-FIX$INLINE) (VL::VL-BLAMEALIST-P) (VL::BOOLEANP-OF-STRINGP-FOR-VL-BLAMEALIST-P-KEY-LEMMA) (VL::BOOLEANP-OF-STRING-LISTP-FOR-VL-BLAMEALIST-P-VAL-LEMMA) (VL::STRINGP-OF-NIL-FOR-VL-BLAMEALIST-P-KEY-LEMMA) (VL::STRING-LISTP-OF-NIL-FOR-VL-BLAMEALIST-P-VAL-LEMMA) (VL::BOOLEANP-OF-STRINGP-FOR-VL-BLAMEALIST-P-KEY) (VL::BOOLEANP-OF-STRING-LISTP-FOR-VL-BLAMEALIST-P-VAL) (VL::STRING-LISTP-OF-NIL-FOR-VL-BLAMEALIST-P-VAL) (VL::VL-BLAMEALIST-P-OF-REVAPPEND) (VL::VL-BLAMEALIST-P-OF-REMOVE) (VL::VL-BLAMEALIST-P-OF-LAST) (VL::VL-BLAMEALIST-P-OF-NTHCDR) (VL::VL-BLAMEALIST-P-OF-BUTLAST) (VL::VL-BLAMEALIST-P-OF-UPDATE-NTH) (VL::VL-BLAMEALIST-P-OF-REPEAT) (VL::VL-BLAMEALIST-P-OF-TAKE) (VL::VL-BLAMEALIST-P-OF-UNION-EQUAL) (VL::VL-BLAMEALIST-P-OF-INTERSECTION-EQUAL-2) (VL::VL-BLAMEALIST-P-OF-INTERSECTION-EQUAL-1) (VL::VL-BLAMEALIST-P-OF-SET-DIFFERENCE-EQUAL) (VL::VL-BLAMEALIST-P-SET-EQUIV-CONGRUENCE) (VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL) (VL::VL-BLAMEALIST-P-OF-RCONS) (VL::VL-BLAMEALIST-P-OF-REV) (VL::VL-BLAMEALIST-P-OF-DUPLICATED-MEMBERS) (VL::VL-BLAMEALIST-P-OF-DIFFERENCE) (VL::VL-BLAMEALIST-P-OF-INTERSECT-2) (VL::VL-BLAMEALIST-P-OF-INTERSECT-1) (VL::VL-BLAMEALIST-P-OF-UNION) (VL::VL-BLAMEALIST-P-OF-MERGESORT) (VL::VL-BLAMEALIST-P-OF-DELETE) (VL::VL-BLAMEALIST-P-OF-INSERT) (VL::VL-BLAMEALIST-P-OF-SFIX) (VL::VL-BLAMEALIST-P-OF-LIST-FIX) (VL::VL-BLAMEALIST-P-OF-APPEND) (VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP) (VL::VL-BLAMEALIST-P-OF-CDR-WHEN-VL-BLAMEALIST-P) (VL::VL-BLAMEALIST-P-OF-CONS) (VL::VL-BLAMEALIST-P-OF-MAKE-FAL (74 10 (:REWRITE VL::VL-BLAMEALIST-P-OF-CDR-WHEN-VL-BLAMEALIST-P)) (32 32 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (16 16 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (1 1 (:TYPE-PRESCRIPTION VL::BOOLEANP-OF-STRINGP-FOR-VL-BLAMEALIST-P-KEY)) ) (VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P) (VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P) (VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P) (VL::STRING-LISTP-OF-CDR-OF-ASSOC-WHEN-VL-BLAMEALIST-P) (VL::VL-BLAMEALIST-P-OF-HONS-SHRINK-ALIST) (VL::VL-BLAMEALIST-P-OF-HONS-ACONS) (VL::STRING-LISTP-OF-CDR-OF-HONS-ASSOC-EQUAL-WHEN-VL-BLAMEALIST-P) (VL::STRINGP-OF-CAAR-WHEN-VL-BLAMEALIST-P) (VL::STRING-LISTP-OF-CDAR-WHEN-VL-BLAMEALIST-P) (VL::VL-BLAMEALIST-FIX$INLINE) (VL::VL-BLAMEALIST-P-OF-VL-BLAMEALIST-FIX (1926 7 (:REWRITE STR-FIX-WHEN-STRINGP)) (1144 4 (:REWRITE STR-FIX-DEFAULT)) (882 8 (:DEFINITION VL::VL-BLAMEALIST-P)) (880 19 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-BLAMEALIST-P)) (820 4 (:REWRITE VL::STRINGP-WHEN-TRUE-LISTP)) (780 12 (:REWRITE VL::VL-BLAMEALIST-P-OF-CDR-WHEN-VL-BLAMEALIST-P)) (620 7 (:REWRITE STR::STRING-LIST-FIX-WHEN-STRING-LISTP)) (524 22 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (296 8 (:REWRITE TRUE-LISTP-OF-CAR-WHEN-TRUE-LIST-LISTP)) (280 4 (:DEFINITION TRUE-LIST-LISTP)) (272 8 (:REWRITE TRUE-LISTP-WHEN-ATOM)) (264 10 (:REWRITE CONSP-OF-CAR-WHEN-ALISTP)) (238 10 (:REWRITE STRINGP-OF-CAR-WHEN-STRING-LISTP)) (232 22 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (224 14 (:REWRITE MEMBER-WHEN-ATOM)) (176 88 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (168 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (156 12 (:REWRITE OMAP::ALISTP-WHEN-MAPP)) (148 8 (:REWRITE TRUE-LIST-LISTP-WHEN-NOT-CONSP)) (144 4 (:REWRITE STR::STRING-LIST-FIX-WHEN-ATOM)) (136 6 (:REWRITE STRING-LISTP-OF-CDR-WHEN-STRING-LISTP)) (119 15 (:REWRITE VL::STRING-LISTP-OF-CDAR-WHEN-VL-BLAMEALIST-P)) (100 100 (:TYPE-PRESCRIPTION TRUE-LISTP)) (90 80 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (84 84 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (84 84 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (84 42 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (73 67 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (72 16 (:REWRITE VL::STRING-LISTP-OF-CAR-WHEN-STRING-LIST-LISTP)) (68 8 (:REWRITE TRUE-LISTP-WHEN-STRING-LISTP-REWRITE)) (67 67 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (64 10 (:REWRITE VL::CONSP-OF-CAR-WHEN-VL-COMMENTMAP-P)) (64 8 (:REWRITE TRUE-LISTP-WHEN-SYMBOL-LISTP-REWRITE)) (64 8 (:REWRITE SET::SETS-ARE-TRUE-LISTS-CHEAP)) (60 60 (:TYPE-PRESCRIPTION STRING-LISTP)) (60 12 (:REWRITE OMAP::MFIX-IMPLIES-MAPP)) (60 12 (:REWRITE OMAP::MAPP-WHEN-NOT-EMPTY)) (58 58 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (56 56 (:TYPE-PRESCRIPTION OMAP::MAPP)) (56 14 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (52 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-SCOPEITEM-ALIST-P)) (52 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-SCOPEDEF-ALIST-P)) (52 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-IMPORTRESULT-ALIST-P)) (52 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-DEPGRAPH-P)) (52 8 (:REWRITE TRUE-LISTP-WHEN-CHARACTER-LISTP-REWRITE)) (48 12 (:REWRITE ALISTP-WHEN-HONS-DUPLICITY-ALIST-P)) (48 8 (:REWRITE VL::TRUE-LISTP-OF-CAR-WHEN-TRUE-LIST-LISTP)) (44 44 (:REWRITE STRING-LISTP-WHEN-SUBSETP-EQUAL)) (44 44 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (44 2 (:REWRITE ALISTP-OF-CDR)) (42 42 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (42 42 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (42 42 (:REWRITE CONSP-BY-LEN)) (41 38 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (38 6 (:REWRITE VL::STRING-LISTP-OF-CDAR-WHEN-VL-DEPGRAPH-P)) (36 36 (:REWRITE DEFAULT-CAR)) (36 36 (:REWRITE CAR-WHEN-ALL-EQUALP)) (36 30 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-VARDECL-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-UDP-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-TYPEDEF-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-TASKDECL-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-PROGRAM-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-PORTDECL-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-PARAMDECL-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-PACKAGE-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-MODULE-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-MODPORT-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-MODINST-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-INTERFACEPORT-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-INTERFACE-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-GENVAR-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-GENELEMENT-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-GATEINST-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-FUNDECL-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-DPIIMPORT-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-CONFIG-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-CLASS-ALIST-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-CALL-NAMEDARGS-P)) (36 10 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-ATTS-P)) (28 28 (:TYPE-PRESCRIPTION VL::VL-DEPGRAPH-P)) (28 28 (:TYPE-PRESCRIPTION TRUE-LIST-LISTP)) (28 28 (:REWRITE VL::VL-DEPGRAPH-P-WHEN-SUBSETP-EQUAL)) (24 24 (:TYPE-PRESCRIPTION VL::STRING-LIST-LISTP)) (24 24 (:TYPE-PRESCRIPTION OMAP::MFIX)) (24 24 (:TYPE-PRESCRIPTION HONS-DUPLICITY-ALIST-P)) (24 24 (:TYPE-PRESCRIPTION OMAP::EMPTY)) (24 24 (:TYPE-PRESCRIPTION ALISTP)) (24 24 (:REWRITE DEFAULT-CDR)) (24 12 (:REWRITE OMAP::MFIX-WHEN-MAPP)) (24 12 (:REWRITE OMAP::MAPP-NON-NIL-IMPLIES-NON-EMPTY)) (22 22 (:TYPE-PRESCRIPTION VL::VL-COMMENTMAP-P)) (22 22 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (22 22 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (22 22 (:REWRITE CONSP-OF-CDR-BY-LEN)) (20 20 (:REWRITE VL::VL-COMMENTMAP-P-WHEN-SUBSETP-EQUAL)) (20 20 (:REWRITE STRINGP-WHEN-MEMBER-EQUAL-OF-STRING-LISTP)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-VARDECL-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-UDP-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-TYPEDEF-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-TASKDECL-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-PROGRAM-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-PORTDECL-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-PARAMDECL-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-PACKAGE-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-MODULE-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-MODPORT-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-MODINST-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-INTERFACEPORT-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-INTERFACE-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-GENVAR-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-GENELEMENT-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-GATEINST-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-FUNDECL-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-DPIIMPORT-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-CONFIG-ALIST-P)) (20 20 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-CLASS-ALIST-P)) (20 20 (:REWRITE VL::STRING-LIST-LISTP-WHEN-SUBSETP-EQUAL)) (20 10 (:REWRITE CONSP-OF-CAR-WHEN-CONS-LISTP)) (20 10 (:REWRITE CONSP-OF-CAR-WHEN-ATOM-LISTP)) (18 18 (:REWRITE FN-CHECK-DEF-FORMALS)) (17 17 (:REWRITE FTY::OPEN-MEMBER-EQUAL-ON-LIST-OF-TAGS)) (16 16 (:TYPE-PRESCRIPTION VL::VL-VARDECL-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-UDP-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-TYPEDEF-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-TASKDECL-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-SCOPEITEM-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-SCOPEDEF-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-PROGRAM-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-PORTDECL-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-PARAMDECL-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-PACKAGE-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-MODULE-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-MODPORT-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-MODINST-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-INTERFACEPORT-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-INTERFACE-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-IMPORTRESULT-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-GENVAR-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-GENELEMENT-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-GATEINST-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-FUNDECL-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-DPIIMPORT-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-CONFIG-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-CLASS-ALIST-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-CALL-NAMEDARGS-P)) (16 16 (:TYPE-PRESCRIPTION VL::VL-ATTS-P)) (16 16 (:TYPE-PRESCRIPTION VL::TRUE-LIST-LISTP)) (16 16 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (16 16 (:REWRITE VL::VL-SCOPEITEM-ALIST-P-WHEN-SUBSETP-EQUAL)) (16 16 (:REWRITE VL::VL-SCOPEDEF-ALIST-P-WHEN-SUBSETP-EQUAL)) (16 16 (:REWRITE VL::VL-IMPORTRESULT-ALIST-P-WHEN-SUBSETP-EQUAL)) (16 16 (:REWRITE VL::TRUE-LISTP-WHEN-MEMBER-EQUAL-OF-TRUE-LIST-LISTP)) (16 16 (:REWRITE VL::TRUE-LIST-LISTP-WHEN-SUBSETP-EQUAL)) (16 8 (:REWRITE OMAP::SETP-WHEN-MAPP)) (16 8 (:REWRITE SET::NONEMPTY-MEANS-SET)) (14 14 (:REWRITE VL::VL-DEPGRAPH-P-WHEN-NOT-CONSP)) (14 14 (:REWRITE SUBSETP-MEMBER . 4)) (14 14 (:REWRITE SUBSETP-MEMBER . 3)) (14 14 (:REWRITE SUBSETP-MEMBER . 2)) (14 14 (:REWRITE SUBSETP-MEMBER . 1)) (14 14 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (14 14 (:REWRITE INTERSECTP-MEMBER . 3)) (14 14 (:REWRITE INTERSECTP-MEMBER . 2)) (14 4 (:REWRITE VL::VL-DEPGRAPH-P-OF-CDR-WHEN-VL-DEPGRAPH-P)) (12 12 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P)) (12 12 (:REWRITE HONS-DUPLICITY-ALIST-P-WHEN-NOT-CONSP)) (12 12 (:REWRITE ALISTP-WHEN-ATOM)) (12 12 (:REWRITE VL::ALISTP-WHEN-ALL-HAVE-LEN)) (12 2 (:REWRITE VL::VL-SCOPEITEM-ALIST-P-OF-CDR-WHEN-VL-SCOPEITEM-ALIST-P)) (12 2 (:REWRITE VL::VL-SCOPEDEF-ALIST-P-OF-CDR-WHEN-VL-SCOPEDEF-ALIST-P)) (12 2 (:REWRITE VL::VL-IMPORTRESULT-ALIST-P-OF-CDR-WHEN-VL-IMPORTRESULT-ALIST-P)) (12 2 (:REWRITE VL::STRING-LIST-LISTP-OF-CDR-WHEN-STRING-LIST-LISTP)) (10 10 (:TYPE-PRESCRIPTION SUBSETP-EQUAL)) (10 10 (:TYPE-PRESCRIPTION CONS-LISTP)) (10 10 (:TYPE-PRESCRIPTION ATOM-LISTP)) (10 10 (:REWRITE VL::VL-COMMENTMAP-P-WHEN-NOT-CONSP)) (10 10 (:REWRITE VL::STRING-LIST-LISTP-WHEN-NOT-CONSP)) (8 8 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (8 8 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (8 8 (:TYPE-PRESCRIPTION CHARACTER-LISTP)) (8 8 (:REWRITE VL::VL-VARDECL-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-UDP-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-TYPEDEF-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-TASKDECL-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-SCOPEITEM-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-SCOPEDEF-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-PROGRAM-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-PORTDECL-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-PARAMDECL-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-PACKAGE-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-MODULE-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-MODPORT-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-MODINST-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-INTERFACEPORT-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-INTERFACE-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-IMPORTRESULT-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-GENVAR-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-GENELEMENT-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-GATEINST-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-FUNDECL-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-DPIIMPORT-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-CONFIG-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-CLASS-ALIST-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-CALL-NAMEDARGS-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE VL::VL-ATTS-P-WHEN-NOT-CONSP)) (8 8 (:REWRITE TRUE-LISTP-WHEN-UNSIGNED-BYTE-LISTP)) (8 8 (:REWRITE TRUE-LISTP-WHEN-SIGNED-BYTE-LISTP)) (8 8 (:REWRITE VL::TRUE-LIST-LISTP-WHEN-NOT-CONSP)) (8 8 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (8 8 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (8 8 (:REWRITE SET::IN-SET)) (8 8 (:REWRITE CHARACTER-LISTP-WHEN-SUBSETP-EQUAL)) (8 4 (:REWRITE TRUE-LIST-LISTP-OF-CDR-WHEN-TRUE-LIST-LISTP)) (8 4 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (8 4 (:REWRITE VL::SYMBOL-LISTP-OF-CAR-WHEN-SYMBOL-LIST-LISTP)) (8 4 (:REWRITE STR::CHARACTER-LISTP-WHEN-OCT-DIGIT-CHAR-LISTP)) (8 4 (:REWRITE STR::CHARACTER-LISTP-WHEN-HEX-DIGIT-CHAR-LISTP)) (8 4 (:REWRITE STR::CHARACTER-LISTP-WHEN-DEC-DIGIT-CHAR-LISTP)) (8 2 (:REWRITE VL::VL-VARDECL-ALIST-P-OF-CDR-WHEN-VL-VARDECL-ALIST-P)) (8 2 (:REWRITE VL::VL-UDP-ALIST-P-OF-CDR-WHEN-VL-UDP-ALIST-P)) (8 2 (:REWRITE VL::VL-TYPEDEF-ALIST-P-OF-CDR-WHEN-VL-TYPEDEF-ALIST-P)) (8 2 (:REWRITE VL::VL-TASKDECL-ALIST-P-OF-CDR-WHEN-VL-TASKDECL-ALIST-P)) (8 2 (:REWRITE VL::VL-PROGRAM-ALIST-P-OF-CDR-WHEN-VL-PROGRAM-ALIST-P)) (8 2 (:REWRITE VL::VL-PORTDECL-ALIST-P-OF-CDR-WHEN-VL-PORTDECL-ALIST-P)) (8 2 (:REWRITE VL::VL-PARAMDECL-ALIST-P-OF-CDR-WHEN-VL-PARAMDECL-ALIST-P)) (8 2 (:REWRITE VL::VL-PACKAGE-ALIST-P-OF-CDR-WHEN-VL-PACKAGE-ALIST-P)) (8 2 (:REWRITE VL::VL-MODULE-ALIST-P-OF-CDR-WHEN-VL-MODULE-ALIST-P)) (8 2 (:REWRITE VL::VL-MODPORT-ALIST-P-OF-CDR-WHEN-VL-MODPORT-ALIST-P)) (8 2 (:REWRITE VL::VL-MODINST-ALIST-P-OF-CDR-WHEN-VL-MODINST-ALIST-P)) (8 2 (:REWRITE VL::VL-INTERFACEPORT-ALIST-P-OF-CDR-WHEN-VL-INTERFACEPORT-ALIST-P)) (8 2 (:REWRITE VL::VL-INTERFACE-ALIST-P-OF-CDR-WHEN-VL-INTERFACE-ALIST-P)) (8 2 (:REWRITE VL::VL-GENVAR-ALIST-P-OF-CDR-WHEN-VL-GENVAR-ALIST-P)) (8 2 (:REWRITE VL::VL-GENELEMENT-ALIST-P-OF-CDR-WHEN-VL-GENELEMENT-ALIST-P)) (8 2 (:REWRITE VL::VL-GATEINST-ALIST-P-OF-CDR-WHEN-VL-GATEINST-ALIST-P)) (8 2 (:REWRITE VL::VL-FUNDECL-ALIST-P-OF-CDR-WHEN-VL-FUNDECL-ALIST-P)) (8 2 (:REWRITE VL::VL-DPIIMPORT-ALIST-P-OF-CDR-WHEN-VL-DPIIMPORT-ALIST-P)) (8 2 (:REWRITE VL::VL-CONFIG-ALIST-P-OF-CDR-WHEN-VL-CONFIG-ALIST-P)) (8 2 (:REWRITE VL::VL-CLASS-ALIST-P-OF-CDR-WHEN-VL-CLASS-ALIST-P)) (8 2 (:REWRITE VL::VL-CALL-NAMEDARGS-P-OF-CDR-WHEN-VL-CALL-NAMEDARGS-P)) (8 2 (:REWRITE VL::VL-ATTS-P-OF-CDR-WHEN-VL-ATTS-P)) (4 4 (:TYPE-PRESCRIPTION VL::SYMBOL-LIST-LISTP)) (4 4 (:TYPE-PRESCRIPTION STR::OCT-DIGIT-CHAR-LISTP)) (4 4 (:TYPE-PRESCRIPTION STR::HEX-DIGIT-CHAR-LISTP)) (4 4 (:TYPE-PRESCRIPTION STR::DEC-DIGIT-CHAR-LISTP)) (4 4 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (4 4 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (4 4 (:REWRITE CHARACTER-LISTP-WHEN-NOT-CONSP)) (4 2 (:REWRITE VL::VL-COMMENTMAP-P-OF-CDR-WHEN-VL-COMMENTMAP-P)) ) (VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P (1703 19 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-BLAMEALIST-P)) (1454 5 (:REWRITE VL::STRINGP-WHEN-TRUE-LISTP)) (1165 29 (:REWRITE VL::STRING-LISTP-OF-CDAR-WHEN-VL-BLAMEALIST-P)) (858 12 (:REWRITE TRUE-LISTP-OF-CAR-WHEN-TRUE-LIST-LISTP)) (849 6 (:DEFINITION TRUE-LIST-LISTP)) (590 122 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (574 14 (:REWRITE TRUE-LISTP-WHEN-ATOM)) (564 36 (:REWRITE SUBSETP-WHEN-ATOM-RIGHT)) (451 25 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (362 190 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (362 26 (:REWRITE VL::VL-BLAMEALIST-P-OF-CDR-WHEN-VL-BLAMEALIST-P)) (308 56 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (282 89 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (264 9 (:REWRITE CONSP-OF-CAR-WHEN-ALISTP)) (243 12 (:REWRITE SUBSETP-IMPLIES-SUBSETP-CDR)) (225 12 (:REWRITE SUBSETP-CAR-MEMBER)) (213 25 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (199 11 (:REWRITE MEMBER-WHEN-ATOM)) (193 56 (:REWRITE STRING-LISTP-WHEN-SUBSETP-EQUAL)) (191 191 (:TYPE-PRESCRIPTION TRUE-LISTP)) (188 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (156 12 (:REWRITE OMAP::ALISTP-WHEN-MAPP)) (150 150 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (147 9 (:REWRITE STRINGP-OF-CAR-WHEN-STRING-LISTP)) (146 14 (:REWRITE TRUE-LISTP-WHEN-STRING-LISTP-REWRITE)) (136 136 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (133 68 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (124 124 (:TYPE-PRESCRIPTION SUBSETP-EQUAL)) (123 9 (:REWRITE STRING-LISTP-OF-CDR-WHEN-STRING-LISTP)) (122 14 (:REWRITE TRUE-LISTP-WHEN-SYMBOL-LISTP-REWRITE)) (112 14 (:REWRITE SET::SETS-ARE-TRUE-LISTS-CHEAP)) (110 22 (:REWRITE STRINGP-WHEN-MEMBER-EQUAL-OF-STRING-LISTP)) (105 36 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (102 14 (:REWRITE TRUE-LISTP-WHEN-CHARACTER-LISTP-REWRITE)) (96 12 (:REWRITE VL::TRUE-LISTP-OF-CAR-WHEN-TRUE-LIST-LISTP)) (94 94 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (93 12 (:REWRITE TRUE-LIST-LISTP-WHEN-NOT-CONSP)) (89 89 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (84 25 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (82 82 (:REWRITE DEFAULT-CAR)) (82 82 (:REWRITE CAR-WHEN-ALL-EQUALP)) (68 68 (:TYPE-PRESCRIPTION OMAP::MAPP)) (66 3 (:REWRITE ALISTP-OF-CDR)) (63 63 (:REWRITE DEFAULT-CDR)) (60 12 (:REWRITE OMAP::MFIX-IMPLIES-MAPP)) (60 12 (:REWRITE OMAP::MAPP-WHEN-NOT-EMPTY)) (60 9 (:REWRITE VL::CONSP-OF-CAR-WHEN-VL-COMMENTMAP-P)) (51 25 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (50 50 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (48 48 (:REWRITE SUBSETP-TRANS2)) (48 48 (:REWRITE SUBSETP-TRANS)) (48 12 (:REWRITE VL::STRING-LISTP-OF-CAR-WHEN-STRING-LIST-LISTP)) (48 12 (:REWRITE ALISTP-WHEN-HONS-DUPLICITY-ALIST-P)) (48 6 (:REWRITE SET::DOUBLE-CONTAINMENT)) (47 47 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (47 47 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (47 47 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (47 47 (:REWRITE CONSP-BY-LEN)) (40 40 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (40 20 (:REWRITE OMAP::SETP-WHEN-MAPP)) (40 20 (:REWRITE SET::NONEMPTY-MEANS-SET)) (39 39 (:TYPE-PRESCRIPTION TRUE-LIST-LISTP)) (36 36 (:REWRITE SUBSETP-WHEN-ATOM-LEFT)) (31 31 (:REWRITE FTY::OPEN-MEMBER-EQUAL-ON-LIST-OF-TAGS)) (30 30 (:TYPE-PRESCRIPTION VL::TRUE-LIST-LISTP)) (30 30 (:REWRITE VL::TRUE-LIST-LISTP-WHEN-SUBSETP-EQUAL)) (28 28 (:REWRITE VL::TRUE-LISTP-WHEN-MEMBER-EQUAL-OF-TRUE-LIST-LISTP)) (27 27 (:REWRITE CONSP-OF-CDR-BY-LEN)) (25 25 (:REWRITE SUBSETP-MEMBER . 2)) (25 25 (:REWRITE SUBSETP-MEMBER . 1)) (25 25 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (25 25 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (24 24 (:TYPE-PRESCRIPTION OMAP::MFIX)) (24 24 (:TYPE-PRESCRIPTION HONS-DUPLICITY-ALIST-P)) (24 24 (:TYPE-PRESCRIPTION OMAP::EMPTY)) (24 24 (:TYPE-PRESCRIPTION ALISTP)) (24 12 (:REWRITE OMAP::MFIX-WHEN-MAPP)) (24 12 (:REWRITE OMAP::MAPP-NON-NIL-IMPLIES-NON-EMPTY)) (24 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-SCOPEITEM-ALIST-P)) (24 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-SCOPEDEF-ALIST-P)) (24 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-IMPORTRESULT-ALIST-P)) (24 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-DEPGRAPH-P)) (24 9 (:REWRITE VL::STRING-LISTP-OF-CDAR-WHEN-VL-DEPGRAPH-P)) (24 3 (:REWRITE VL::TRUE-LIST-LISTP-OF-CDR-WHEN-TRUE-LIST-LISTP)) (21 21 (:TYPE-PRESCRIPTION VL::VL-COMMENTMAP-P)) (20 20 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (20 20 (:REWRITE SET::IN-SET)) (19 19 (:REWRITE FN-CHECK-DEF-FORMALS)) (18 18 (:TYPE-PRESCRIPTION VL::STRING-LIST-LISTP)) (18 18 (:REWRITE VL::VL-COMMENTMAP-P-WHEN-SUBSETP-EQUAL)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-VARDECL-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-UDP-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-TYPEDEF-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-TASKDECL-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-PROGRAM-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-PORTDECL-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-PARAMDECL-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-PACKAGE-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-MODULE-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-MODPORT-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-MODINST-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-INTERFACEPORT-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-INTERFACE-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-GENVAR-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-GENELEMENT-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-GATEINST-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-FUNDECL-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-DPIIMPORT-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-CONFIG-ALIST-P)) (18 18 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-CLASS-ALIST-P)) (18 18 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P)) (18 9 (:REWRITE TRUE-LIST-LISTP-OF-CDR-WHEN-TRUE-LIST-LISTP)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-VARDECL-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-UDP-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-TYPEDEF-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-TASKDECL-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-PROGRAM-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-PORTDECL-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-PARAMDECL-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-PACKAGE-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-MODULE-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-MODPORT-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-MODINST-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-INTERFACEPORT-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-INTERFACE-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-GENVAR-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-GENELEMENT-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-GATEINST-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-FUNDECL-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-DPIIMPORT-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-CONFIG-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-CLASS-ALIST-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-CALL-NAMEDARGS-P)) (18 9 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-ATTS-P)) (18 9 (:REWRITE CONSP-OF-CAR-WHEN-CONS-LISTP)) (18 9 (:REWRITE CONSP-OF-CAR-WHEN-ATOM-LISTP)) (16 16 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (16 16 (:TYPE-PRESCRIPTION CHARACTER-LISTP)) (16 16 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (16 16 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (16 16 (:REWRITE CHARACTER-LISTP-WHEN-SUBSETP-EQUAL)) (16 8 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (16 8 (:REWRITE STR::CHARACTER-LISTP-WHEN-OCT-DIGIT-CHAR-LISTP)) (16 8 (:REWRITE STR::CHARACTER-LISTP-WHEN-HEX-DIGIT-CHAR-LISTP)) (16 8 (:REWRITE STR::CHARACTER-LISTP-WHEN-DEC-DIGIT-CHAR-LISTP)) (15 15 (:REWRITE VL::TRUE-LIST-LISTP-WHEN-NOT-CONSP)) (14 14 (:REWRITE TRUE-LISTP-WHEN-UNSIGNED-BYTE-LISTP)) (14 14 (:REWRITE TRUE-LISTP-WHEN-SIGNED-BYTE-LISTP)) (12 12 (:TYPE-PRESCRIPTION VL::VL-DEPGRAPH-P)) (12 12 (:REWRITE VL::VL-DEPGRAPH-P-WHEN-SUBSETP-EQUAL)) (12 12 (:REWRITE SUBSETP-REFL)) (12 12 (:REWRITE VL::STRING-LIST-LISTP-WHEN-SUBSETP-EQUAL)) (12 12 (:REWRITE HONS-DUPLICITY-ALIST-P-WHEN-NOT-CONSP)) (12 12 (:REWRITE ALISTP-WHEN-ATOM)) (12 12 (:REWRITE VL::ALISTP-WHEN-ALL-HAVE-LEN)) (12 6 (:REWRITE VL::SYMBOL-LISTP-OF-CAR-WHEN-SYMBOL-LIST-LISTP)) (11 11 (:REWRITE SUBSETP-MEMBER . 4)) (11 11 (:REWRITE SUBSETP-MEMBER . 3)) (11 11 (:REWRITE INTERSECTP-MEMBER . 3)) (11 11 (:REWRITE INTERSECTP-MEMBER . 2)) (9 9 (:TYPE-PRESCRIPTION CONS-LISTP)) (9 9 (:TYPE-PRESCRIPTION ATOM-LISTP)) (9 9 (:REWRITE VL::VL-COMMENTMAP-P-WHEN-NOT-CONSP)) (8 8 (:TYPE-PRESCRIPTION STR::OCT-DIGIT-CHAR-LISTP)) (8 8 (:TYPE-PRESCRIPTION STR::HEX-DIGIT-CHAR-LISTP)) (8 8 (:TYPE-PRESCRIPTION STR::DEC-DIGIT-CHAR-LISTP)) (8 8 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (8 8 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (8 8 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (8 8 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (8 8 (:REWRITE CHARACTER-LISTP-WHEN-NOT-CONSP)) (6 6 (:TYPE-PRESCRIPTION VL::VL-VARDECL-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-UDP-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-TYPEDEF-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-TASKDECL-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-SCOPEITEM-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-SCOPEDEF-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-PROGRAM-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-PORTDECL-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-PARAMDECL-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-PACKAGE-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-MODULE-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-MODPORT-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-MODINST-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-INTERFACEPORT-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-INTERFACE-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-IMPORTRESULT-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-GENVAR-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-GENELEMENT-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-GATEINST-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-FUNDECL-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-DPIIMPORT-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-CONFIG-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-CLASS-ALIST-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-CALL-NAMEDARGS-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-ATTS-P)) (6 6 (:TYPE-PRESCRIPTION VL::SYMBOL-LIST-LISTP)) (6 6 (:REWRITE VL::VL-SCOPEITEM-ALIST-P-WHEN-SUBSETP-EQUAL)) (6 6 (:REWRITE VL::VL-SCOPEDEF-ALIST-P-WHEN-SUBSETP-EQUAL)) (6 6 (:REWRITE VL::VL-IMPORTRESULT-ALIST-P-WHEN-SUBSETP-EQUAL)) (6 6 (:REWRITE VL::VL-DEPGRAPH-P-WHEN-NOT-CONSP)) (6 6 (:REWRITE VL::STRING-LIST-LISTP-WHEN-NOT-CONSP)) (6 6 (:META CANCEL_TIMES-EQUAL-CORRECT)) (6 6 (:META CANCEL_PLUS-EQUAL-CORRECT)) (6 3 (:REWRITE VL::VL-COMMENTMAP-P-OF-CDR-WHEN-VL-COMMENTMAP-P)) (3 3 (:REWRITE VL::VL-VARDECL-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-UDP-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-TYPEDEF-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-TASKDECL-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-SCOPEITEM-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-SCOPEDEF-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-PROGRAM-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-PORTDECL-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-PARAMDECL-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-PACKAGE-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-MODULE-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-MODPORT-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-MODINST-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-INTERFACEPORT-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-INTERFACE-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-IMPORTRESULT-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-GENVAR-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-GENELEMENT-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-GATEINST-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-FUNDECL-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-DPIIMPORT-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-CONFIG-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-CLASS-ALIST-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-CALL-NAMEDARGS-P-WHEN-NOT-CONSP)) (3 3 (:REWRITE VL::VL-ATTS-P-WHEN-NOT-CONSP)) ) (VL::VL-BLAMEALIST-FIX$INLINE (48 6 (:REWRITE VL::STRING-LISTP-OF-CDAR-WHEN-VL-BLAMEALIST-P)) (44 4 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-BLAMEALIST-P)) (34 26 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (33 5 (:REWRITE VL::VL-BLAMEALIST-P-OF-CDR-WHEN-VL-BLAMEALIST-P)) (25 13 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (18 12 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (11 8 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (11 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (9 9 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (8 8 (:TYPE-PRESCRIPTION SUBSETP-EQUAL)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (3 3 (:REWRITE FTY::OPEN-MEMBER-EQUAL-ON-LIST-OF-TAGS)) ) (FTY::TMP-DEFFIXTYPE-IDEMPOTENT (3 1 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (2 2 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (1 1 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (1 1 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) ) (VL::VL-BLAMEALIST-EQUIV$INLINE) (VL::VL-BLAMEALIST-EQUIV-IS-AN-EQUIVALENCE) (VL::VL-BLAMEALIST-EQUIV-IMPLIES-EQUAL-VL-BLAMEALIST-FIX-1) (VL::VL-BLAMEALIST-FIX-UNDER-VL-BLAMEALIST-EQUIV) (VL::EQUAL-OF-VL-BLAMEALIST-FIX-1-FORWARD-TO-VL-BLAMEALIST-EQUIV) (VL::EQUAL-OF-VL-BLAMEALIST-FIX-2-FORWARD-TO-VL-BLAMEALIST-EQUIV) (VL::VL-BLAMEALIST-EQUIV-OF-VL-BLAMEALIST-FIX-1-FORWARD) (VL::VL-BLAMEALIST-EQUIV-OF-VL-BLAMEALIST-FIX-2-FORWARD) (VL::CONS-OF-STR-FIX-K-UNDER-VL-BLAMEALIST-EQUIV (34 4 (:REWRITE VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P)) (23 2 (:REWRITE VL::VL-BLAMEALIST-P-OF-CONS)) (7 3 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (6 6 (:TYPE-PRESCRIPTION VL::VL-BLAMEALIST-P)) (6 6 (:TYPE-PRESCRIPTION STRING-LISTP)) (6 6 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (4 2 (:REWRITE STR::STRING-LIST-FIX-WHEN-STRING-LISTP)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) ) (VL::CONS-STREQV-CONGRUENCE-ON-K-UNDER-VL-BLAMEALIST-EQUIV) (VL::CONS-OF-STRING-LIST-FIX-V-UNDER-VL-BLAMEALIST-EQUIV (33 4 (:REWRITE VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P)) (22 2 (:REWRITE VL::VL-BLAMEALIST-P-OF-CONS)) (7 3 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (6 6 (:TYPE-PRESCRIPTION VL::VL-BLAMEALIST-P)) (6 6 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE STR-FIX-WHEN-STRINGP)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) ) (VL::CONS-STRING-LIST-EQUIV-CONGRUENCE-ON-V-UNDER-VL-BLAMEALIST-EQUIV) (VL::CONS-OF-VL-BLAMEALIST-FIX-Y-UNDER-VL-BLAMEALIST-EQUIV (26 2 (:REWRITE VL::VL-BLAMEALIST-P-OF-CONS)) (12 4 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (10 2 (:REWRITE STR::STRING-LIST-FIX-WHEN-STRING-LISTP)) (9 9 (:TYPE-PRESCRIPTION STRING-LISTP)) (8 8 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (8 8 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (8 8 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (6 2 (:REWRITE STR-FIX-WHEN-STRINGP)) ) (VL::CONS-VL-BLAMEALIST-EQUIV-CONGRUENCE-ON-Y-UNDER-VL-BLAMEALIST-EQUIV) (VL::VL-BLAMEALIST-FIX-OF-ACONS (20 3 (:REWRITE VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P)) (11 1 (:REWRITE VL::VL-BLAMEALIST-P-OF-CONS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-BLAMEALIST-P)) (4 4 (:TYPE-PRESCRIPTION STRING-LISTP)) (4 4 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (4 2 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (4 2 (:REWRITE STR::STRING-LIST-FIX-WHEN-STRING-LISTP)) (2 2 (:REWRITE STR-FIX-WHEN-STRINGP)) (1 1 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (1 1 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) ) (VL::VL-BLAMEALIST-FIX-OF-APPEND (138 6 (:REWRITE VL::VL-BLAMEALIST-P-OF-APPEND)) (100 100 (:TYPE-PRESCRIPTION BINARY-APPEND)) (90 78 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (51 11 (:REWRITE VL::VL-BLAMEALIST-P-OF-CDR-WHEN-VL-BLAMEALIST-P)) (50 1 (:REWRITE VL::VL-BLAMEALIST-P-OF-CONS)) (34 4 (:REWRITE STR::STRING-LIST-FIX-WHEN-STRING-LISTP)) (31 25 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (28 4 (:REWRITE STR-FIX-WHEN-STRINGP)) (25 25 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (24 4 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-BLAMEALIST-P)) (24 4 (:REWRITE VL::STRING-LISTP-OF-CDAR-WHEN-VL-BLAMEALIST-P)) (12 12 (:TYPE-PRESCRIPTION SUBSETP-EQUAL)) (8 8 (:TYPE-PRESCRIPTION STRING-LISTP)) (8 8 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (8 8 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (6 6 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) ) (VL::CONSP-CAR-OF-VL-BLAMEALIST-FIX (30 30 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (30 5 (:REWRITE VL::VL-BLAMEALIST-P-OF-CDR-WHEN-VL-BLAMEALIST-P)) (22 2 (:REWRITE STR::STRING-LIST-FIX-WHEN-STRING-LISTP)) (18 2 (:REWRITE STR-FIX-WHEN-STRINGP)) (13 13 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (13 13 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (12 2 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-BLAMEALIST-P)) (12 2 (:REWRITE VL::STRING-LISTP-OF-CDAR-WHEN-VL-BLAMEALIST-P)) (4 4 (:TYPE-PRESCRIPTION STRING-LISTP)) (4 4 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (4 4 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) ) (VL::VL-BLAMEALIST-COUNT (6 2 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (4 4 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (3 1 (:LINEAR ACL2-COUNT-OF-CONSP-POSITIVE)) ) (VL::NATP-OF-VL-BLAMEALIST-COUNT) (VL::VL-BLAMEALIST-COUNT (6 4 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (4 2 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (2 2 (:TYPE-PRESCRIPTION SUBSETP-EQUAL)) (1 1 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (1 1 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) ) (VL::VL-BLAMEALIST-COUNT-OF-VL-BLAMEALIST-FIX-X (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (3 1 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (2 2 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) ) (VL::VL-BLAMEALIST-COUNT-VL-BLAMEALIST-EQUIV-CONGRUENCE-ON-X) (VL::VL-BLAMEALIST-COUNT-OF-CONS (130 16 (:REWRITE VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P)) (45 15 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (30 30 (:TYPE-PRESCRIPTION VL::VL-BLAMEALIST-P)) (30 30 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (15 1 (:REWRITE VL::VL-BLAMEALIST-P-OF-CONS)) (10 2 (:REWRITE STR::STRING-LIST-FIX-WHEN-STRING-LISTP)) (6 6 (:TYPE-PRESCRIPTION STRING-LISTP)) (6 6 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (6 6 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (6 2 (:REWRITE STR-FIX-WHEN-STRINGP)) ) (VL::VL-BLAMEALIST-COUNT-OF-CDR (67 8 (:REWRITE VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P)) (26 26 (:TYPE-PRESCRIPTION VL::VL-BLAMEALIST-P)) (26 26 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (24 4 (:REWRITE VL::VL-BLAMEALIST-P-OF-CDR-WHEN-VL-BLAMEALIST-P)) (23 13 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (22 2 (:REWRITE STR::STRING-LIST-FIX-WHEN-STRING-LISTP)) (18 2 (:REWRITE STR-FIX-WHEN-STRINGP)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (12 2 (:REWRITE VL::STRINGP-OF-CAAR-WHEN-VL-BLAMEALIST-P)) (12 2 (:REWRITE VL::STRING-LISTP-OF-CDAR-WHEN-VL-BLAMEALIST-P)) (4 4 (:TYPE-PRESCRIPTION STRING-LISTP)) (4 4 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (4 4 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (1 1 (:REWRITE-QUOTED-CONSTANT VL::VL-BLAMEALIST-FIX-UNDER-VL-BLAMEALIST-EQUIV)) ) (VL::VL-BLAMEALIST-COUNT-OF-CDR-STRONG (37 1 (:LINEAR VL::VL-BLAMEALIST-COUNT-OF-CDR)) (14 10 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (10 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (8 8 (:REWRITE DEFAULT-CDR)) (5 5 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (5 5 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (4 4 (:TYPE-PRESCRIPTION SUBSETP-EQUAL)) ) (VL::VL-BLAME-ALIST-AUX1 (1373 27 (:REWRITE LOWER-BOUND-OF-LEN-WHEN-SUBLISTP)) (1159 9 (:REWRITE SUBLISTP-WHEN-PREFIXP)) (665 26 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (614 36 (:REWRITE PREFIXP-WHEN-EQUAL-LENGTHS)) (584 36 (:REWRITE PREFIXP-WHEN-PREFIXP)) (279 27 (:REWRITE LEN-WHEN-PREFIXP)) (278 2 (:REWRITE VL::STRINGP-WHEN-TRUE-LISTP)) (249 55 (:REWRITE LEN-WHEN-ATOM)) (205 27 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (203 57 (:REWRITE DEFAULT-CDR)) (201 24 (:REWRITE MEMBER-WHEN-ATOM)) (196 36 (:REWRITE PREFIXP-WHEN-NOT-CONSP-RIGHT)) (196 36 (:REWRITE PREFIXP-WHEN-NOT-CONSP-LEFT)) (180 180 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (172 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (154 1 (:REWRITE SUBSETP-OF-CONS)) (152 100 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (143 143 (:TYPE-PRESCRIPTION TRUE-LISTP)) (129 2 (:REWRITE SUBSETP-WHEN-ATOM-LEFT)) (120 4 (:REWRITE STRING-LISTP-OF-CDR-WHEN-STRING-LISTP)) (117 30 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (117 6 (:REWRITE HONS-ASSOC-EQUAL-WHEN-ATOM)) (111 3 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (109 3 (:REWRITE TRUE-LISTP-WHEN-ATOM)) (100 100 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (99 99 (:TYPE-PRESCRIPTION PREFIXP)) (99 9 (:REWRITE SUBLISTP-WHEN-ATOM-RIGHT)) (96 96 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (90 1 (:REWRITE SUBSETP-IMPLIES-SUBSETP-CDR)) (88 18 (:REWRITE STR::STRING-LIST-FIX-WHEN-ATOM)) (84 84 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (79 9 (:REWRITE SUBLISTP-WHEN-ATOM-LEFT)) (72 72 (:REWRITE VL::PREFIXP-WHEN-MEMBER-EQUAL-OF-PREFIX-OF-EACHP)) (54 27 (:REWRITE DEFAULT-<-2)) (54 27 (:REWRITE DEFAULT-<-1)) (52 52 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (48 2 (:REWRITE TRUE-LISTP-OF-CAR-WHEN-TRUE-LIST-LISTP)) (44 1 (:DEFINITION TRUE-LIST-LISTP)) (42 42 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (42 42 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (42 42 (:REWRITE CONSP-BY-LEN)) (39 39 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (39 39 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (38 38 (:LINEAR LOWER-BOUND-OF-LEN-WHEN-SUBLISTP)) (38 38 (:LINEAR LISTPOS-UPPER-BOUND-STRONG-2)) (38 38 (:LINEAR LEN-WHEN-PREFIXP)) (36 36 (:TYPE-PRESCRIPTION SUBLISTP)) (36 36 (:REWRITE VL::TRANSITIVITY-OF-PREFIXP)) (36 36 (:REWRITE PREFIXP-TRANSITIVE . 2)) (36 36 (:REWRITE PREFIXP-TRANSITIVE . 1)) (36 36 (:REWRITE PREFIXP-ONE-WAY-OR-ANOTHER . 2)) (36 36 (:REWRITE PREFIXP-ONE-WAY-OR-ANOTHER . 1)) (35 3 (:REWRITE TRUE-LISTP-WHEN-STRING-LISTP-REWRITE)) (30 30 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (29 29 (:REWRITE SUBSETP-MEMBER . 2)) (29 29 (:REWRITE SUBSETP-MEMBER . 1)) (29 3 (:REWRITE TRUE-LISTP-WHEN-SYMBOL-LISTP-REWRITE)) (28 26 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (27 27 (:META CANCEL_PLUS-LESSP-CORRECT)) (26 26 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (26 26 (:REWRITE FN-CHECK-DEF-FORMALS)) (25 3 (:REWRITE TRUE-LISTP-WHEN-CHARACTER-LISTP-REWRITE)) (24 24 (:REWRITE SUBSETP-MEMBER . 4)) (24 24 (:REWRITE SUBSETP-MEMBER . 3)) (24 24 (:REWRITE INTERSECTP-MEMBER . 3)) (24 24 (:REWRITE INTERSECTP-MEMBER . 2)) (24 3 (:REWRITE SET::SETS-ARE-TRUE-LISTS-CHEAP)) (23 10 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (22 1 (:REWRITE CONSP-OF-CAR-WHEN-ALISTP)) (21 21 (:REWRITE CONSP-OF-CDR-BY-LEN)) (19 19 (:LINEAR LEQ-POSITION-EQUAL-LEN)) (19 19 (:LINEAR INDEX-OF-<-LEN)) (19 19 (:LINEAR STR::COUNT-LEADING-CHARSET-LEN)) (15 2 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (13 1 (:REWRITE OMAP::ALISTP-WHEN-MAPP)) (12 2 (:REWRITE VL::TRUE-LISTP-OF-CAR-WHEN-TRUE-LIST-LISTP)) (11 2 (:REWRITE TRUE-LIST-LISTP-WHEN-NOT-CONSP)) (9 9 (:REWRITE SUBLISTP-COMPLETE)) (8 8 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P)) (7 7 (:TYPE-PRESCRIPTION TRUE-LIST-LISTP)) (7 7 (:TYPE-PRESCRIPTION OMAP::MAPP)) (7 7 (:REWRITE SUBSETP-TRANS2)) (7 7 (:REWRITE SUBSETP-TRANS)) (6 6 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (6 6 (:REWRITE VL::TRUE-LISTP-WHEN-MEMBER-EQUAL-OF-TRUE-LIST-LISTP)) (6 6 (:REWRITE HONS-ASSOC-EQUAL-WHEN-FOUND-BY-FAL-FIND-ANY)) (6 3 (:REWRITE OMAP::SETP-WHEN-MAPP)) (6 3 (:REWRITE SET::NONEMPTY-MEANS-SET)) (6 1 (:REWRITE VL::CONSP-OF-CAR-WHEN-VL-COMMENTMAP-P)) (5 1 (:REWRITE OMAP::MFIX-IMPLIES-MAPP)) (5 1 (:REWRITE OMAP::MAPP-WHEN-NOT-EMPTY)) (4 4 (:TYPE-PRESCRIPTION VL::TRUE-LIST-LISTP)) (4 4 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (4 4 (:TYPE-PRESCRIPTION CHARACTER-LISTP)) (4 4 (:REWRITE VL::TRUE-LIST-LISTP-WHEN-SUBSETP-EQUAL)) (4 4 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (4 4 (:REWRITE CHARACTER-LISTP-WHEN-SUBSETP-EQUAL)) (4 3 (:REWRITE DEFAULT-CAR)) (4 2 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (4 2 (:REWRITE STR::CHARACTER-LISTP-WHEN-OCT-DIGIT-CHAR-LISTP)) (4 2 (:REWRITE STR::CHARACTER-LISTP-WHEN-HEX-DIGIT-CHAR-LISTP)) (4 2 (:REWRITE STR::CHARACTER-LISTP-WHEN-DEC-DIGIT-CHAR-LISTP)) (4 1 (:REWRITE ALISTP-WHEN-HONS-DUPLICITY-ALIST-P)) (3 3 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (3 3 (:REWRITE TRUE-LISTP-WHEN-UNSIGNED-BYTE-LISTP)) (3 3 (:REWRITE TRUE-LISTP-WHEN-SIGNED-BYTE-LISTP)) (3 3 (:REWRITE SET::IN-SET)) (3 3 (:REWRITE CAR-WHEN-ALL-EQUALP)) (2 2 (:TYPE-PRESCRIPTION VL::VL-COMMENTMAP-P)) (2 2 (:TYPE-PRESCRIPTION STR::OCT-DIGIT-CHAR-LISTP)) (2 2 (:TYPE-PRESCRIPTION OMAP::MFIX)) (2 2 (:TYPE-PRESCRIPTION HONS-DUPLICITY-ALIST-P)) (2 2 (:TYPE-PRESCRIPTION STR::HEX-DIGIT-CHAR-LISTP)) (2 2 (:TYPE-PRESCRIPTION OMAP::EMPTY)) (2 2 (:TYPE-PRESCRIPTION STR::DEC-DIGIT-CHAR-LISTP)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:TYPE-PRESCRIPTION ALISTP)) (2 2 (:REWRITE VL::VL-COMMENTMAP-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::TRUE-LIST-LISTP-WHEN-NOT-CONSP)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (2 2 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (2 2 (:REWRITE SUBSETP-WHEN-ATOM-RIGHT)) (2 2 (:REWRITE CHARACTER-LISTP-WHEN-NOT-CONSP)) (2 1 (:REWRITE TRUE-LIST-LISTP-OF-CDR-WHEN-TRUE-LIST-LISTP)) (2 1 (:REWRITE VL::SYMBOL-LISTP-OF-CAR-WHEN-SYMBOL-LIST-LISTP)) (2 1 (:REWRITE VL::STRING-LISTP-OF-CAR-WHEN-STRING-LIST-LISTP)) (2 1 (:REWRITE OMAP::MFIX-WHEN-MAPP)) (2 1 (:REWRITE OMAP::MAPP-NON-NIL-IMPLIES-NON-EMPTY)) (2 1 (:REWRITE CONSP-OF-CAR-WHEN-CONS-LISTP)) (2 1 (:REWRITE CONSP-OF-CAR-WHEN-ATOM-LISTP)) (1 1 (:TYPE-PRESCRIPTION VL::SYMBOL-LIST-LISTP)) (1 1 (:TYPE-PRESCRIPTION VL::STRING-LIST-LISTP)) (1 1 (:TYPE-PRESCRIPTION CONS-LISTP)) (1 1 (:TYPE-PRESCRIPTION ATOM-LISTP)) (1 1 (:REWRITE VL::VL-COMMENTMAP-P-WHEN-NOT-CONSP)) (1 1 (:REWRITE HONS-DUPLICITY-ALIST-P-WHEN-NOT-CONSP)) (1 1 (:REWRITE ALISTP-WHEN-ATOM)) (1 1 (:REWRITE VL::ALISTP-WHEN-ALL-HAVE-LEN)) ) (VL::VL-BLAMEALIST-P-OF-VL-BLAME-ALIST-AUX1 (280 4 (:REWRITE STR-FIX-DEFAULT)) (270 3 (:REWRITE VL::STRINGP-WHEN-TRUE-LISTP)) (204 4 (:REWRITE VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P)) (187 5 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (139 10 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (108 3 (:REWRITE TRUE-LISTP-WHEN-ATOM)) (103 4 (:REWRITE DEFAULT-CDR)) (82 2 (:REWRITE SUBSETP-WHEN-ATOM-LEFT)) (80 36 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (75 4 (:REWRITE HONS-ASSOC-EQUAL-WHEN-ATOM)) (72 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (70 7 (:REWRITE STR::STRING-LIST-FIX-WHEN-STRING-LISTP)) (54 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (52 5 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (42 42 (:TYPE-PRESCRIPTION TRUE-LISTP)) (42 3 (:REWRITE TRUE-LISTP-WHEN-STRING-LISTP-REWRITE)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (39 3 (:REWRITE TRUE-LISTP-WHEN-SYMBOL-LISTP-REWRITE)) (39 2 (:REWRITE SUBSETP-WHEN-ATOM-RIGHT)) (36 3 (:REWRITE TRUE-LISTP-WHEN-CHARACTER-LISTP-REWRITE)) (34 34 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (24 3 (:REWRITE SET::SETS-ARE-TRUE-LISTS-CHEAP)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (19 19 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (17 17 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (17 17 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (17 17 (:REWRITE CONSP-BY-LEN)) (15 15 (:TYPE-PRESCRIPTION HONS-ASSOC-EQUAL)) (15 15 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (15 15 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (14 3 (:REWRITE DEFAULT-CAR)) (12 12 (:REWRITE STRINGP-WHEN-MEMBER-EQUAL-OF-STRING-LISTP)) (12 12 (:REWRITE STRING-LISTP-WHEN-SUBSETP-EQUAL)) (12 2 (:REWRITE CONSP-OF-HONS-ASSOC-EQUAL)) (11 11 (:TYPE-PRESCRIPTION STRING-LISTP)) (10 10 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (10 4 (:REWRITE STR-FIX-WHEN-STRINGP)) (8 2 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (7 6 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (6 6 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (6 6 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (6 6 (:TYPE-PRESCRIPTION CHARACTER-LISTP)) (6 6 (:REWRITE VL::TRUE-LISTP-WHEN-MEMBER-EQUAL-OF-TRUE-LIST-LISTP)) (6 6 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (6 6 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (6 6 (:REWRITE CHARACTER-LISTP-WHEN-SUBSETP-EQUAL)) (6 3 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (6 3 (:REWRITE OMAP::SETP-WHEN-MAPP)) (6 3 (:REWRITE SET::NONEMPTY-MEANS-SET)) (6 3 (:REWRITE STR::CHARACTER-LISTP-WHEN-OCT-DIGIT-CHAR-LISTP)) (6 3 (:REWRITE STR::CHARACTER-LISTP-WHEN-HEX-DIGIT-CHAR-LISTP)) (6 3 (:REWRITE STR::CHARACTER-LISTP-WHEN-DEC-DIGIT-CHAR-LISTP)) (5 5 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (5 5 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (5 5 (:REWRITE FN-CHECK-DEF-FORMALS)) (4 4 (:TYPE-PRESCRIPTION SUBSETP-EQUAL)) (4 4 (:REWRITE HONS-ASSOC-EQUAL-WHEN-FOUND-BY-FAL-FIND-ANY)) (3 3 (:TYPE-PRESCRIPTION STR::OCT-DIGIT-CHAR-LISTP)) (3 3 (:TYPE-PRESCRIPTION OMAP::MAPP)) (3 3 (:TYPE-PRESCRIPTION STR::HEX-DIGIT-CHAR-LISTP)) (3 3 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (3 3 (:TYPE-PRESCRIPTION STR::DEC-DIGIT-CHAR-LISTP)) (3 3 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (3 3 (:REWRITE TRUE-LISTP-WHEN-UNSIGNED-BYTE-LISTP)) (3 3 (:REWRITE TRUE-LISTP-WHEN-SIGNED-BYTE-LISTP)) (3 3 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (3 3 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (3 3 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (3 3 (:REWRITE SET::IN-SET)) (3 3 (:REWRITE CHARACTER-LISTP-WHEN-NOT-CONSP)) (3 3 (:REWRITE CAR-WHEN-ALL-EQUALP)) (2 2 (:REWRITE SUBSETP-TRANS2)) (2 2 (:REWRITE SUBSETP-TRANS)) (2 2 (:REWRITE SUBSETP-MEMBER . 4)) (2 2 (:REWRITE SUBSETP-MEMBER . 3)) (2 2 (:REWRITE SUBSETP-MEMBER . 2)) (2 2 (:REWRITE SUBSETP-MEMBER . 1)) (2 2 (:REWRITE MEMBER-WHEN-ATOM)) (2 2 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE INTERSECTP-MEMBER . 3)) (2 2 (:REWRITE INTERSECTP-MEMBER . 2)) ) (VL::VL-BLAME-ALIST-AUX1-OF-STR-FIX-BAD) (VL::VL-BLAME-ALIST-AUX1-STREQV-CONGRUENCE-ON-BAD) (VL::VL-BLAME-ALIST-AUX1-OF-STRING-LIST-FIX-DEPS) (VL::VL-BLAME-ALIST-AUX1-STRING-LIST-EQUIV-CONGRUENCE-ON-DEPS) (VL::VL-BLAME-ALIST-AUX1-OF-VL-BLAMEALIST-FIX-ALIST) (VL::VL-BLAME-ALIST-AUX1-VL-BLAMEALIST-EQUIV-CONGRUENCE-ON-ALIST) (VL::VL-BLAME-ALIST-AUX2 (184 1 (:REWRITE VL::STRINGP-WHEN-TRUE-LISTP)) (111 3 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (77 3 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (71 2 (:REWRITE TRUE-LISTP-WHEN-ATOM)) (61 2 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (53 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (48 2 (:REWRITE TRUE-LISTP-OF-CAR-WHEN-TRUE-LIST-LISTP)) (44 1 (:DEFINITION TRUE-LIST-LISTP)) (39 2 (:REWRITE SUBSETP-WHEN-ATOM-LEFT)) (38 1 (:REWRITE MEMBER-WHEN-ATOM)) (34 34 (:TYPE-PRESCRIPTION TRUE-LISTP)) (32 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (25 6 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (23 23 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (22 1 (:REWRITE CONSP-OF-CAR-WHEN-ALISTP)) (19 2 (:REWRITE TRUE-LISTP-WHEN-STRING-LISTP-REWRITE)) (16 16 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (16 4 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (16 2 (:REWRITE TRUE-LISTP-WHEN-SYMBOL-LISTP-REWRITE)) (16 2 (:REWRITE SET::SETS-ARE-TRUE-LISTS-CHEAP)) (15 2 (:REWRITE VL::STRINGP-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (15 2 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (13 2 (:REWRITE TRUE-LISTP-WHEN-CHARACTER-LISTP-REWRITE)) (13 1 (:REWRITE OMAP::ALISTP-WHEN-MAPP)) (12 2 (:REWRITE VL::TRUE-LISTP-OF-CAR-WHEN-TRUE-LIST-LISTP)) (11 2 (:REWRITE TRUE-LIST-LISTP-WHEN-NOT-CONSP)) (10 3 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (8 8 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (8 8 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (8 8 (:REWRITE SUBSETP-TRANS2)) (8 8 (:REWRITE SUBSETP-TRANS)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (8 8 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (8 8 (:REWRITE CONSP-BY-LEN)) (7 7 (:TYPE-PRESCRIPTION TRUE-LIST-LISTP)) (7 7 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (6 6 (:TYPE-PRESCRIPTION OMAP::MAPP)) (6 6 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (6 3 (:REWRITE SET::DOUBLE-CONTAINMENT)) (6 1 (:REWRITE VL::CONSP-OF-CAR-WHEN-VL-COMMENTMAP-P)) (5 5 (:REWRITE DEFAULT-CAR)) (5 5 (:REWRITE CAR-WHEN-ALL-EQUALP)) (5 1 (:REWRITE OMAP::MFIX-IMPLIES-MAPP)) (5 1 (:REWRITE OMAP::MAPP-WHEN-NOT-EMPTY)) (4 4 (:TYPE-PRESCRIPTION VL::TRUE-LIST-LISTP)) (4 4 (:REWRITE VL::TRUE-LISTP-WHEN-MEMBER-EQUAL-OF-TRUE-LIST-LISTP)) (4 4 (:REWRITE VL::TRUE-LIST-LISTP-WHEN-SUBSETP-EQUAL)) (4 4 (:REWRITE SUBSETP-MEMBER . 2)) (4 4 (:REWRITE SUBSETP-MEMBER . 1)) (4 4 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (4 4 (:REWRITE DEFAULT-CDR)) (4 2 (:REWRITE OMAP::SETP-WHEN-MAPP)) (4 2 (:REWRITE SET::NONEMPTY-MEANS-SET)) (4 1 (:REWRITE ALISTP-WHEN-HONS-DUPLICITY-ALIST-P)) (3 3 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (3 3 (:META CANCEL_TIMES-EQUAL-CORRECT)) (3 3 (:META CANCEL_PLUS-EQUAL-CORRECT)) (2 2 (:TYPE-PRESCRIPTION VL::VL-COMMENTMAP-P)) (2 2 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (2 2 (:TYPE-PRESCRIPTION OMAP::MFIX)) (2 2 (:TYPE-PRESCRIPTION HONS-DUPLICITY-ALIST-P)) (2 2 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (2 2 (:TYPE-PRESCRIPTION OMAP::EMPTY)) (2 2 (:TYPE-PRESCRIPTION CHARACTER-LISTP)) (2 2 (:TYPE-PRESCRIPTION ALISTP)) (2 2 (:REWRITE VL::VL-COMMENTMAP-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE TRUE-LISTP-WHEN-UNSIGNED-BYTE-LISTP)) (2 2 (:REWRITE TRUE-LISTP-WHEN-SIGNED-BYTE-LISTP)) (2 2 (:REWRITE VL::TRUE-LIST-LISTP-WHEN-NOT-CONSP)) (2 2 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE SUBSETP-WHEN-ATOM-RIGHT)) (2 2 (:REWRITE SET::IN-SET)) (2 2 (:REWRITE FN-CHECK-DEF-FORMALS)) (2 2 (:REWRITE CHARACTER-LISTP-WHEN-SUBSETP-EQUAL)) (2 1 (:REWRITE TRUE-LIST-LISTP-OF-CDR-WHEN-TRUE-LIST-LISTP)) (2 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (2 1 (:REWRITE VL::SYMBOL-LISTP-OF-CAR-WHEN-SYMBOL-LIST-LISTP)) (2 1 (:REWRITE VL::STRING-LISTP-OF-CAR-WHEN-STRING-LIST-LISTP)) (2 1 (:REWRITE OMAP::MFIX-WHEN-MAPP)) (2 1 (:REWRITE OMAP::MAPP-NON-NIL-IMPLIES-NON-EMPTY)) (2 1 (:REWRITE CONSP-OF-CAR-WHEN-CONS-LISTP)) (2 1 (:REWRITE CONSP-OF-CAR-WHEN-ATOM-LISTP)) (2 1 (:REWRITE STR::CHARACTER-LISTP-WHEN-OCT-DIGIT-CHAR-LISTP)) (2 1 (:REWRITE STR::CHARACTER-LISTP-WHEN-HEX-DIGIT-CHAR-LISTP)) (2 1 (:REWRITE STR::CHARACTER-LISTP-WHEN-DEC-DIGIT-CHAR-LISTP)) (1 1 (:TYPE-PRESCRIPTION VL::SYMBOL-LIST-LISTP)) (1 1 (:TYPE-PRESCRIPTION VL::STRING-LIST-LISTP)) (1 1 (:TYPE-PRESCRIPTION STR::OCT-DIGIT-CHAR-LISTP)) (1 1 (:TYPE-PRESCRIPTION STR::HEX-DIGIT-CHAR-LISTP)) (1 1 (:TYPE-PRESCRIPTION STR::DEC-DIGIT-CHAR-LISTP)) (1 1 (:TYPE-PRESCRIPTION CONS-LISTP)) (1 1 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (1 1 (:TYPE-PRESCRIPTION ATOM-LISTP)) (1 1 (:REWRITE-QUOTED-CONSTANT STR::STRING-LIST-FIX-UNDER-STRING-LIST-EQUIV)) (1 1 (:REWRITE VL::VL-COMMENTMAP-P-WHEN-NOT-CONSP)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (1 1 (:REWRITE SUBSETP-MEMBER . 4)) (1 1 (:REWRITE SUBSETP-MEMBER . 3)) (1 1 (:REWRITE INTERSECTP-MEMBER . 3)) (1 1 (:REWRITE INTERSECTP-MEMBER . 2)) (1 1 (:REWRITE HONS-DUPLICITY-ALIST-P-WHEN-NOT-CONSP)) (1 1 (:REWRITE CHARACTER-LISTP-WHEN-NOT-CONSP)) (1 1 (:REWRITE ALISTP-WHEN-ATOM)) (1 1 (:REWRITE VL::ALISTP-WHEN-ALL-HAVE-LEN)) ) (VL::VL-BLAMEALIST-P-OF-VL-BLAME-ALIST-AUX2 (108 3 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (40 1 (:REWRITE VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P)) (20 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (14 7 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (11 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (10 10 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (10 10 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (10 5 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (7 7 (:TYPE-PRESCRIPTION TRUE-LISTP)) (5 5 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (5 5 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (5 5 (:REWRITE CONSP-BY-LEN)) (2 2 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (1 1 (:REWRITE-QUOTED-CONSTANT STR::STRING-LIST-FIX-UNDER-STRING-LIST-EQUIV)) (1 1 (:REWRITE SUBSETP-TRANS2)) (1 1 (:REWRITE SUBSETP-TRANS)) (1 1 (:REWRITE DEFAULT-CAR)) (1 1 (:REWRITE CAR-WHEN-ALL-EQUALP)) ) (VL::VL-BLAME-ALIST-AUX2-WHEN-NOT-CONSP (80 2 (:REWRITE VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P)) (70 2 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (12 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (6 6 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (6 6 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (6 3 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (6 3 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (4 4 (:TYPE-PRESCRIPTION VL::VL-BLAMEALIST-P)) (4 4 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (3 3 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (3 3 (:TYPE-PRESCRIPTION TRUE-LISTP)) (3 3 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (3 3 (:REWRITE CONSP-BY-LEN)) ) (VL::VL-BLAME-ALIST-AUX2-OF-STRING-LIST-FIX-BADS (891 18 (:REWRITE STR::STRING-LIST-FIX-WHEN-STRING-LISTP)) (515 17 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (372 16 (:REWRITE VL::VL-BLAME-ALIST-AUX2-WHEN-NOT-CONSP)) (194 18 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (192 17 (:REWRITE MEMBER-WHEN-ATOM)) (168 84 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (161 5 (:REWRITE VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P)) (150 5 (:REWRITE STRING-LISTP-OF-CDR-WHEN-STRING-LISTP)) (140 4 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (132 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (84 84 (:TYPE-PRESCRIPTION TRUE-LISTP)) (84 84 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (83 10 (:REWRITE SET::DOUBLE-CONTAINMENT)) (68 17 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (66 66 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (51 51 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (42 42 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (36 36 (:REWRITE STRING-LISTP-WHEN-SUBSETP-EQUAL)) (35 35 (:TYPE-PRESCRIPTION STRING-LISTP)) (35 35 (:REWRITE CAR-WHEN-ALL-EQUALP)) (34 34 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (33 33 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (33 33 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (33 33 (:REWRITE DEFAULT-CAR)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (33 33 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (33 33 (:REWRITE CONSP-BY-LEN)) (23 23 (:REWRITE CONSP-OF-CDR-BY-LEN)) (20 20 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (20 10 (:REWRITE OMAP::SETP-WHEN-MAPP)) (20 10 (:REWRITE SET::NONEMPTY-MEANS-SET)) (19 19 (:REWRITE DEFAULT-CDR)) (17 17 (:REWRITE-QUOTED-CONSTANT STR::STRING-LIST-FIX-UNDER-STRING-LIST-EQUIV)) (17 17 (:REWRITE SUBSETP-MEMBER . 4)) (17 17 (:REWRITE SUBSETP-MEMBER . 3)) (17 17 (:REWRITE SUBSETP-MEMBER . 2)) (17 17 (:REWRITE SUBSETP-MEMBER . 1)) (17 17 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (17 17 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (17 17 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (17 17 (:REWRITE INTERSECTP-MEMBER . 3)) (17 17 (:REWRITE INTERSECTP-MEMBER . 2)) (17 17 (:REWRITE FN-CHECK-DEF-FORMALS)) (10 10 (:TYPE-PRESCRIPTION OMAP::MAPP)) (10 10 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (10 10 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P)) (10 10 (:REWRITE VL::STRING-LISTP-OF-CDR-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P)) (10 10 (:REWRITE SET::IN-SET)) (10 10 (:META CANCEL_TIMES-EQUAL-CORRECT)) (10 10 (:META CANCEL_PLUS-EQUAL-CORRECT)) (8 8 (:TYPE-PRESCRIPTION VL::VL-BLAMEALIST-P)) (8 8 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) ) (VL::VL-BLAME-ALIST-AUX2-STRING-LIST-EQUIV-CONGRUENCE-ON-BADS) (VL::VL-BLAME-ALIST-AUX2-OF-VL-DESIGN-FIX-DESIGN (72 2 (:REWRITE VL::VL-BLAME-ALIST-AUX2-WHEN-NOT-CONSP)) (41 2 (:REWRITE VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P)) (39 3 (:REWRITE VL::VL-DESIGN-FIX-WHEN-VL-DESIGN-P)) (35 1 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (20 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (15 3 (:REWRITE VL::VL-DESIGN-P-WHEN-VL-MAYBE-DESIGN-P)) (15 3 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (14 4 (:REWRITE SET::DOUBLE-CONTAINMENT)) (10 10 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (10 10 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (10 5 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (10 5 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (9 9 (:TYPE-PRESCRIPTION VL::VL-DESIGN-P)) (6 6 (:TYPE-PRESCRIPTION VL::VL-MAYBE-DESIGN-P)) (6 3 (:REWRITE VL::VL-MAYBE-DESIGN-P-WHEN-VL-DESIGN-P)) (5 5 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (5 5 (:TYPE-PRESCRIPTION TRUE-LISTP)) (5 5 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (5 5 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (5 5 (:REWRITE DEFAULT-CAR)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (5 5 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (5 5 (:REWRITE CONSP-BY-LEN)) (5 5 (:REWRITE CAR-WHEN-ALL-EQUALP)) (4 4 (:META CANCEL_TIMES-EQUAL-CORRECT)) (4 4 (:META CANCEL_PLUS-EQUAL-CORRECT)) (3 3 (:REWRITE-QUOTED-CONSTANT STR::STRING-LIST-FIX-UNDER-STRING-LIST-EQUIV)) (2 2 (:TYPE-PRESCRIPTION VL::VL-BLAMEALIST-P)) (2 2 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE DEFAULT-CDR)) (2 2 (:REWRITE CONSP-OF-CDR-BY-LEN)) (2 1 (:REWRITE OMAP::SETP-WHEN-MAPP)) (2 1 (:REWRITE SET::NONEMPTY-MEANS-SET)) (1 1 (:TYPE-PRESCRIPTION OMAP::MAPP)) (1 1 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (1 1 (:REWRITE SET::IN-SET)) ) (VL::VL-BLAME-ALIST-AUX2-VL-DESIGN-EQUIV-CONGRUENCE-ON-DESIGN) (VL::VL-BLAME-ALIST-AUX2-OF-VL-BLAMEALIST-FIX-ALIST (72 2 (:REWRITE VL::VL-BLAME-ALIST-AUX2-WHEN-NOT-CONSP)) (70 2 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (24 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (12 12 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (12 12 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (12 6 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (12 6 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (6 6 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (6 6 (:TYPE-PRESCRIPTION TRUE-LISTP)) (6 6 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (6 6 (:REWRITE CONSP-BY-LEN)) (5 5 (:REWRITE DEFAULT-CAR)) (5 5 (:REWRITE CAR-WHEN-ALL-EQUALP)) (4 4 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (3 3 (:REWRITE-QUOTED-CONSTANT STR::STRING-LIST-FIX-UNDER-STRING-LIST-EQUIV)) (2 2 (:REWRITE DEFAULT-CDR)) (2 2 (:REWRITE CONSP-OF-CDR-BY-LEN)) ) (VL::VL-BLAME-ALIST-AUX2-VL-BLAMEALIST-EQUIV-CONGRUENCE-ON-ALIST) (VL::VL-BLAME-ALIST (63 1 (:DEFINITION SET::MERGESORT)) (54 1 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (41 2 (:REWRITE SUBSETP-WHEN-ATOM-LEFT)) (40 2 (:REWRITE SET::MERGESORT-SET-IDENTITY)) (35 1 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE MEMBER-WHEN-ATOM)) (31 1 (:REWRITE SET::INSERT-IDENTITY)) (29 1 (:REWRITE SET::IN-MERGESORT-UNDER-IFF)) (26 2 (:REWRITE OMAP::SETP-WHEN-MAPP)) (17 10 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (15 3 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (15 2 (:REWRITE SUBSETP-CAR-MEMBER)) (13 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (13 2 (:REWRITE SUBSETP-WHEN-ATOM-RIGHT)) (12 12 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (12 4 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (11 6 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (10 2 (:REWRITE OMAP::MFIX-IMPLIES-MAPP)) (10 2 (:REWRITE OMAP::MAPP-WHEN-NOT-EMPTY)) (8 8 (:TYPE-PRESCRIPTION OMAP::MAPP)) (6 6 (:TYPE-PRESCRIPTION TRUE-LISTP)) (6 6 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (6 6 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (6 6 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (6 6 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (6 2 (:REWRITE SET::NONEMPTY-MEANS-SET)) (4 4 (:TYPE-PRESCRIPTION OMAP::MFIX)) (4 4 (:TYPE-PRESCRIPTION OMAP::EMPTY)) (4 4 (:REWRITE SUBSETP-TRANS2)) (4 4 (:REWRITE SUBSETP-TRANS)) (4 2 (:REWRITE OMAP::MFIX-WHEN-MAPP)) (4 2 (:REWRITE OMAP::MAPP-NON-NIL-IMPLIES-NON-EMPTY)) (4 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (3 3 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (3 3 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (3 3 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (3 3 (:REWRITE SUBSETP-MEMBER . 2)) (3 3 (:REWRITE SUBSETP-MEMBER . 1)) (3 3 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (3 3 (:REWRITE DEFAULT-CDR)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (3 3 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (3 3 (:REWRITE CONSP-BY-LEN)) (3 1 (:REWRITE SET::INSERT-WHEN-EMPTY)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (2 2 (:REWRITE SET::IN-SET)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) (1 1 (:TYPE-PRESCRIPTION SET::IN-TYPE)) (1 1 (:REWRITE SUBSETP-MEMBER . 4)) (1 1 (:REWRITE SUBSETP-MEMBER . 3)) (1 1 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (1 1 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (1 1 (:REWRITE INTERSECTP-MEMBER . 3)) (1 1 (:REWRITE INTERSECTP-MEMBER . 2)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) (1 1 (:REWRITE DEFAULT-CAR)) (1 1 (:REWRITE CAR-WHEN-ALL-EQUALP)) ) (VL::VL-BLAMEALIST-P-OF-VL-BLAME-ALIST (420 6 (:DEFINITION SET::MERGESORT)) (297 6 (:REWRITE STR::STRING-LIST-FIX-WHEN-STRING-LISTP)) (210 12 (:REWRITE SET::MERGESORT-SET-IDENTITY)) (192 6 (:REWRITE SET::INSERT-IDENTITY)) (180 6 (:REWRITE SET::IN-MERGESORT-UNDER-IFF)) (162 3 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (123 9 (:REWRITE OMAP::SETP-WHEN-MAPP)) (123 6 (:REWRITE VL::VL-BLAME-ALIST-AUX2-WHEN-NOT-CONSP)) (108 6 (:REWRITE STR::STRING-LIST-FIX-WHEN-ATOM)) (105 3 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (105 3 (:REWRITE MEMBER-WHEN-ATOM)) (96 12 (:REWRITE SUBSETP-CAR-MEMBER)) (84 50 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (78 15 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (76 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (75 3 (:REWRITE LAST-WHEN-ATOM-OF-CDR)) (72 29 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (64 2 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (51 51 (:TYPE-PRESCRIPTION STR::STRING-LIST-FIX)) (51 9 (:REWRITE OMAP::MFIX-IMPLIES-MAPP)) (48 6 (:REWRITE SUBSETP-WHEN-ATOM-RIGHT)) (45 9 (:REWRITE OMAP::MAPP-WHEN-NOT-EMPTY)) (36 36 (:TYPE-PRESCRIPTION OMAP::MAPP)) (34 34 (:TYPE-PRESCRIPTION TRUE-LISTP)) (34 34 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (30 30 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (28 22 (:REWRITE DEFAULT-CDR)) (27 9 (:REWRITE SET::NONEMPTY-MEANS-SET)) (25 5 (:TYPE-PRESCRIPTION FAST-ALIST-FORK)) (24 18 (:TYPE-PRESCRIPTION OMAP::MFIX)) (18 18 (:TYPE-PRESCRIPTION SUBSETP-EQUAL)) (18 18 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (18 18 (:TYPE-PRESCRIPTION OMAP::EMPTY)) (18 9 (:REWRITE OMAP::MFIX-WHEN-MAPP)) (18 9 (:REWRITE OMAP::MAPP-NON-NIL-IMPLIES-NON-EMPTY)) (18 6 (:REWRITE SET::INSERT-WHEN-EMPTY)) (17 17 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (17 17 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (17 17 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (17 17 (:REWRITE CONSP-BY-LEN)) (16 8 (:TYPE-PRESCRIPTION TRUE-LISTP-LAST)) (15 15 (:TYPE-PRESCRIPTION SET::MERGESORT)) (15 15 (:REWRITE SUBSETP-MEMBER . 2)) (15 15 (:REWRITE SUBSETP-MEMBER . 1)) (15 15 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (9 9 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (9 9 (:REWRITE SET::IN-SET)) (8 8 (:TYPE-PRESCRIPTION CONSP-LAST)) (6 6 (:TYPE-PRESCRIPTION STRING-LISTP)) (6 6 (:TYPE-PRESCRIPTION SET::IN-TYPE)) (6 6 (:REWRITE-QUOTED-CONSTANT VL::VL-BLAMEALIST-FIX-UNDER-VL-BLAMEALIST-EQUIV)) (6 6 (:REWRITE-QUOTED-CONSTANT STR::STRING-LIST-FIX-UNDER-STRING-LIST-EQUIV)) (6 6 (:REWRITE SUBSETP-WHEN-ATOM-LEFT)) (6 6 (:REWRITE SUBSETP-TRANS2)) (6 6 (:REWRITE SUBSETP-TRANS)) (6 6 (:REWRITE STRING-LISTP-WHEN-SUBSETP-EQUAL)) (6 6 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (6 6 (:REWRITE DEFAULT-CAR)) (6 6 (:REWRITE CAR-WHEN-ALL-EQUALP)) (5 5 (:TYPE-PRESCRIPTION ATOM-OF-CDR-LAST)) (4 4 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (3 3 (:REWRITE SUBSETP-MEMBER . 4)) (3 3 (:REWRITE SUBSETP-MEMBER . 3)) (3 3 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (3 3 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (3 3 (:REWRITE VL::LAST-WHEN-ATOM)) (3 3 (:REWRITE LAST-WHEN-ATOM)) (3 3 (:REWRITE INTERSECTP-MEMBER . 3)) (3 3 (:REWRITE INTERSECTP-MEMBER . 2)) (3 3 (:REWRITE FN-CHECK-DEF-FORMALS)) (2 2 (:REWRITE CONSP-OF-CDR-BY-LEN)) ) (VL::VL-BLAME-ALIST-OF-STRING-LIST-FIX-BADS) (VL::VL-BLAME-ALIST-STRING-LIST-EQUIV-CONGRUENCE-ON-BADS) (VL::VL-BLAME-ALIST-OF-VL-DESIGN-FIX-DESIGN) (VL::VL-BLAME-ALIST-VL-DESIGN-EQUIV-CONGRUENCE-ON-DESIGN) (VL::VL-BLAME-ALIST-TO-REPORTCARD (238 7 (:REWRITE VL::VL-REPORTCARD-P-WHEN-NOT-CONSP)) (206 1 (:REWRITE VL::VL-REPORTCARDKEY-P-OF-CAR-WHEN-VL-REPORTCARDKEYLIST-P)) (184 92 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (154 1 (:REWRITE VL::VL-REPORTCARDKEYLIST-P-WHEN-STRING-LISTP)) (154 1 (:REWRITE REMOVE-WHEN-NON-MEMBER)) (153 8 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (124 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (115 10 (:REWRITE CONSP-OF-CAR-WHEN-ALISTP)) (112 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (106 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (101 2 (:REWRITE SUBSETP-CAR-MEMBER)) (92 92 (:TYPE-PRESCRIPTION TRUE-LISTP)) (89 2 (:REWRITE MEMBER-WHEN-ATOM)) (84 3 (:REWRITE SUBSETP-WHEN-ATOM-RIGHT)) (78 6 (:REWRITE DEFAULT-CAR)) (73 1 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (66 1 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (65 5 (:REWRITE OMAP::ALISTP-WHEN-MAPP)) (62 62 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (62 62 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (62 31 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (61 61 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (52 1 (:REWRITE VL::VL-REPORTCARDKEY-P-OF-CAAR-WHEN-VL-REPORTCARD-P)) (51 5 (:REWRITE DEFAULT-CDR)) (49 3 (:REWRITE SUBSETP-WHEN-ATOM-LEFT)) (47 1 (:REWRITE VL::VL-REPORTCARDKEYLIST-P-WHEN-NOT-CONSP)) (42 1 (:REWRITE REMOVE-WHEN-ATOM)) (35 10 (:REWRITE VL::CONSP-OF-CAR-WHEN-VL-COMMENTMAP-P)) (31 31 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (31 31 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (31 31 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (31 31 (:REWRITE CONSP-BY-LEN)) (25 5 (:REWRITE OMAP::MFIX-IMPLIES-MAPP)) (25 5 (:REWRITE OMAP::MAPP-WHEN-NOT-EMPTY)) (22 2 (:REWRITE VL::VL-REPORTCARDKEY-P-OF-CAR-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P)) (20 20 (:TYPE-PRESCRIPTION OMAP::MAPP)) (20 10 (:REWRITE CONSP-OF-CAR-WHEN-CONS-LISTP)) (20 10 (:REWRITE CONSP-OF-CAR-WHEN-ATOM-LISTP)) (20 5 (:REWRITE ALISTP-WHEN-HONS-DUPLICITY-ALIST-P)) (15 1 (:REWRITE TRUE-LISTP-WHEN-SYMBOL-LISTP-REWRITE)) (12 3 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (10 10 (:TYPE-PRESCRIPTION VL::VL-COMMENTMAP-P)) (10 10 (:TYPE-PRESCRIPTION OMAP::MFIX)) (10 10 (:TYPE-PRESCRIPTION HONS-DUPLICITY-ALIST-P)) (10 10 (:TYPE-PRESCRIPTION OMAP::EMPTY)) (10 10 (:TYPE-PRESCRIPTION CONS-LISTP)) (10 10 (:TYPE-PRESCRIPTION ATOM-LISTP)) (10 10 (:TYPE-PRESCRIPTION ALISTP)) (10 10 (:REWRITE VL::VL-COMMENTMAP-P-WHEN-SUBSETP-EQUAL)) (10 5 (:REWRITE OMAP::MFIX-WHEN-MAPP)) (10 5 (:REWRITE OMAP::MAPP-NON-NIL-IMPLIES-NON-EMPTY)) (9 9 (:REWRITE SUBSETP-TRANS2)) (9 9 (:REWRITE SUBSETP-TRANS)) (6 6 (:REWRITE CAR-WHEN-ALL-EQUALP)) (6 1 (:REWRITE VL::STRING-LISTP-OF-CAR-WHEN-STRING-LIST-LISTP)) (5 5 (:REWRITE VL::VL-COMMENTMAP-P-WHEN-NOT-CONSP)) (5 5 (:REWRITE HONS-DUPLICITY-ALIST-P-WHEN-NOT-CONSP)) (5 5 (:REWRITE ALISTP-WHEN-ATOM)) (5 5 (:REWRITE VL::ALISTP-WHEN-ALL-HAVE-LEN)) (3 3 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (3 3 (:REWRITE SUBSETP-MEMBER . 2)) (3 3 (:REWRITE SUBSETP-MEMBER . 1)) (3 3 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (3 3 (:REWRITE CONSP-OF-CDR-BY-LEN)) (3 1 (:REWRITE DEFAULT-<-2)) (3 1 (:REWRITE DEFAULT-<-1)) (2 2 (:TYPE-PRESCRIPTION VL::VL-REPORTCARDKEYLIST-P)) (2 2 (:TYPE-PRESCRIPTION VL::STRING-LIST-LISTP)) (2 2 (:REWRITE VL::VL-WARNING-P-WHEN-MEMBER-EQUAL-OF-VL-WARNINGLIST-P)) (2 2 (:REWRITE VL::VL-REPORTCARDKEYLIST-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::VL-REPORTCARDKEY-P-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARDKEYLIST-P)) (2 2 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE SUBSETP-MEMBER . 4)) (2 2 (:REWRITE SUBSETP-MEMBER . 3)) (2 2 (:REWRITE STRING-LISTP-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (2 2 (:REWRITE VL::STRING-LIST-LISTP-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE INTERSECTP-MEMBER . 3)) (2 2 (:REWRITE INTERSECTP-MEMBER . 2)) (2 2 (:REWRITE FN-CHECK-DEF-FORMALS)) (2 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (2 1 (:REWRITE SYMBOL-LISTP-OF-CDR-WHEN-SYMBOL-LISTP)) (1 1 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (1 1 (:REWRITE-QUOTED-CONSTANT SYMBOL-FIX-UNDER-SYMBOL-EQUIV)) (1 1 (:REWRITE-QUOTED-CONSTANT VL::MAYBE-STRING-FIX-UNDER-MAYBE-STRING-EQUIV)) (1 1 (:REWRITE TRUE-LISTP-WHEN-UNSIGNED-BYTE-LISTP)) (1 1 (:REWRITE TRUE-LISTP-WHEN-SIGNED-BYTE-LISTP)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (1 1 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (1 1 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (1 1 (:REWRITE VL::STRING-LIST-LISTP-WHEN-NOT-CONSP)) (1 1 (:META CANCEL_PLUS-LESSP-CORRECT)) ) (VL::VL-REPORTCARD-P-OF-VL-BLAME-ALIST-TO-REPORTCARD (788 7 (:REWRITE REMOVE-WHEN-NON-MEMBER)) (727 67 (:REWRITE VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P)) (658 45 (:REWRITE SUBSETP-WHEN-ATOM-RIGHT)) (596 16 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (397 14 (:REWRITE SUBSETP-CONS-2)) (381 13 (:REWRITE SUBSETP-CAR-MEMBER)) (319 25 (:REWRITE SUBSETP-WHEN-ATOM-LEFT)) (290 146 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (270 7 (:REWRITE MEMBER-WHEN-ATOM)) (263 7 (:REWRITE VL::VL-REPORTCARD-P-WHEN-NOT-CONSP)) (244 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (205 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (186 14 (:REWRITE VL::VL-REPORTCARD-P-WHEN-SUBSETP-EQUAL)) (142 13 (:REWRITE SUBSETP-IMPLIES-SUBSETP-CDR)) (136 136 (:TYPE-PRESCRIPTION TRUE-LISTP)) (124 60 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (120 120 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (120 120 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (114 3 (:REWRITE REMOVE-WHEN-ATOM)) (110 49 (:REWRITE SUBSETP-TRANS)) (82 41 (:REWRITE VL::CONSP-CAR-OF-VL-BLAMEALIST-FIX)) (76 76 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (73 9 (:REWRITE SUBSETP-MEMBER . 4)) (60 60 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (60 60 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (60 60 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (60 60 (:REWRITE CONSP-BY-LEN)) (59 13 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (59 2 (:REWRITE SUBSETP-OF-CONS)) (47 29 (:REWRITE DEFAULT-CAR)) (40 1 (:REWRITE VL::VL-REPORTCARD-FIX-WHEN-VL-REPORTCARD-P)) (32 32 (:TYPE-PRESCRIPTION VL::VL-BLAMEALIST-P)) (32 32 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (30 12 (:REWRITE DEFAULT-CDR)) (29 29 (:REWRITE CAR-WHEN-ALL-EQUALP)) (28 28 (:REWRITE CONSP-OF-CDR-BY-LEN)) (19 13 (:REWRITE SUBSETP-MEMBER . 2)) (13 13 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (11 11 (:REWRITE SUBSETP-MEMBER . 1)) (9 9 (:REWRITE SUBSETP-MEMBER . 3)) (9 9 (:REWRITE INTERSECTP-MEMBER . 3)) (9 9 (:REWRITE INTERSECTP-MEMBER . 2)) (2 2 (:REWRITE-QUOTED-CONSTANT SYMBOL-FIX-UNDER-SYMBOL-EQUIV)) (1 1 (:REWRITE-QUOTED-CONSTANT VL::MAYBE-STRING-FIX-UNDER-MAYBE-STRING-EQUIV)) (1 1 (:REWRITE SUBSETP-NIL)) ) (VL::VL-BLAME-ALIST-TO-REPORTCARD-OF-VL-BLAMEALIST-FIX-BLAME-ALIST) (VL::VL-BLAME-ALIST-TO-REPORTCARD-VL-BLAMEALIST-EQUIV-CONGRUENCE-ON-BLAME-ALIST) (VL::VL-BLAME-ALIST-TO-REPORTCARD-OF-VL-REPORTCARD-FIX-REPORTCARD (623 8 (:REWRITE REMOVE-WHEN-NON-MEMBER)) (561 54 (:REWRITE VL::VL-BLAMEALIST-FIX-WHEN-VL-BLAMEALIST-P)) (455 13 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-NOT-CONSP)) (410 29 (:REWRITE SUBSETP-WHEN-ATOM-RIGHT)) (285 7 (:REWRITE SUBSETP-CAR-MEMBER)) (236 9 (:REWRITE SUBSETP-CONS-2)) (216 6 (:REWRITE MEMBER-WHEN-ATOM)) (176 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (170 16 (:REWRITE SUBSETP-WHEN-ATOM-LEFT)) (140 4 (:REWRITE VL::VL-REPORTCARD-P-WHEN-NOT-CONSP)) (128 65 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (110 5 (:REWRITE REMOVE-WHEN-ATOM)) (94 8 (:REWRITE SUBSETP-IMPLIES-SUBSETP-CDR)) (88 88 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (88 88 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (88 44 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (63 63 (:TYPE-PRESCRIPTION TRUE-LISTP)) (60 30 (:REWRITE VL::CONSP-CAR-OF-VL-BLAMEALIST-FIX)) (44 44 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (44 44 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (44 44 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (44 44 (:REWRITE CONSP-BY-LEN)) (41 27 (:REWRITE DEFAULT-CAR)) (39 7 (:REWRITE SUBSETP-MEMBER . 4)) (34 29 (:REWRITE SUBSETP-TRANS2)) (29 29 (:REWRITE SUBSETP-TRANS)) (29 15 (:REWRITE DEFAULT-CDR)) (27 27 (:REWRITE CAR-WHEN-ALL-EQUALP)) (26 26 (:TYPE-PRESCRIPTION VL::VL-BLAMEALIST-P)) (26 26 (:REWRITE VL::VL-BLAMEALIST-P-WHEN-SUBSETP-EQUAL)) (26 7 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (23 23 (:REWRITE CONSP-OF-CDR-BY-LEN)) (19 19 (:TYPE-PRESCRIPTION CONSP-MEMBER-EQUAL)) (19 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (10 7 (:REWRITE SUBSETP-MEMBER . 2)) (8 8 (:REWRITE VL::VL-REPORTCARD-P-WHEN-SUBSETP-EQUAL)) (7 7 (:REWRITE SUBSETP-MEMBER . 3)) (7 7 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (7 7 (:REWRITE INTERSECTP-MEMBER . 3)) (7 7 (:REWRITE INTERSECTP-MEMBER . 2)) (6 6 (:REWRITE SUBSETP-MEMBER . 1)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:REWRITE-QUOTED-CONSTANT SYMBOL-FIX-UNDER-SYMBOL-EQUIV)) (4 2 (:REWRITE OMAP::SETP-WHEN-MAPP)) (4 2 (:REWRITE SET::NONEMPTY-MEANS-SET)) (3 3 (:REWRITE-QUOTED-CONSTANT VL::MAYBE-STRING-FIX-UNDER-MAYBE-STRING-EQUIV)) (2 2 (:TYPE-PRESCRIPTION OMAP::MAPP)) (2 2 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (2 2 (:REWRITE SET::IN-SET)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) ) (VL::VL-BLAME-ALIST-TO-REPORTCARD-VL-REPORTCARD-EQUIV-CONGRUENCE-ON-REPORTCARD) (VL::VL-MODULELIST-ZOMBIES (245 7 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (80 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (56 28 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (48 4 (:REWRITE VL::VL-MODULE-P-WHEN-VL-MAYBE-MODULE-P)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (40 20 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (40 2 (:REWRITE VL::VL-MAYBE-MODULE-P-WHEN-VL-MODULE-P)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE VL::VL-MODULELIST-P-WHEN-NOT-CONSP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (28 28 (:TYPE-PRESCRIPTION TRUE-LISTP)) (20 20 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (20 20 (:REWRITE CONSP-BY-LEN)) (16 4 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (13 13 (:REWRITE CAR-WHEN-ALL-EQUALP)) (12 4 (:REWRITE VL::VL-MODULE-P-BY-TAG-WHEN-VL-SCOPEDEF-P)) (12 4 (:REWRITE VL::VL-MODULE-P-BY-TAG-WHEN-VL-SCOPE-P)) (9 9 (:REWRITE DEFAULT-CAR)) (8 4 (:REWRITE SET::DOUBLE-CONTAINMENT)) (7 7 (:REWRITE SUBSETP-TRANS2)) (7 7 (:REWRITE SUBSETP-TRANS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-MAYBE-MODULE-P)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (4 4 (:META CANCEL_TIMES-EQUAL-CORRECT)) (4 4 (:META CANCEL_PLUS-EQUAL-CORRECT)) (2 2 (:TYPE-PRESCRIPTION VL::VL-MODULE-P)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE DEFAULT-CDR)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::STRING-LISTP-OF-VL-MODULELIST-ZOMBIES (140 4 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (52 2 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (38 19 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (26 11 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (25 1 (:REWRITE SUBSETP-OF-CONS)) (22 22 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (21 3 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (20 2 (:REWRITE MEMBER-WHEN-ATOM)) (18 4 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (14 14 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (7 7 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (7 7 (:TYPE-PRESCRIPTION TRUE-LISTP)) (7 7 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (7 7 (:REWRITE CONSP-BY-LEN)) (5 5 (:REWRITE DEFAULT-CAR)) (5 5 (:REWRITE CAR-WHEN-ALL-EQUALP)) (4 4 (:REWRITE SUBSETP-TRANS2)) (4 4 (:REWRITE SUBSETP-TRANS)) (4 4 (:REWRITE SUBSETP-MEMBER . 2)) (4 4 (:REWRITE SUBSETP-MEMBER . 1)) (4 4 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (4 4 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE SUBSETP-MEMBER . 4)) (2 2 (:REWRITE SUBSETP-MEMBER . 3)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (2 2 (:REWRITE INTERSECTP-MEMBER . 3)) (2 2 (:REWRITE INTERSECTP-MEMBER . 2)) (2 2 (:REWRITE FN-CHECK-DEF-FORMALS)) (1 1 (:REWRITE DEFAULT-CDR)) ) (VL::VL-MODULELIST-ZOMBIES-OF-VL-MODULELIST-FIX-X (282 10 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (198 22 (:REWRITE DEFAULT-CDR)) (143 13 (:REWRITE SET::DOUBLE-CONTAINMENT)) (116 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (58 29 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (58 29 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (38 38 (:REWRITE VL::VL-MODULELIST-P-WHEN-SUBSETP-EQUAL)) (36 6 (:REWRITE VL::VL-MODULELIST-P-OF-CDR-WHEN-VL-MODULELIST-P)) (29 29 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (29 29 (:TYPE-PRESCRIPTION TRUE-LISTP)) (29 29 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (29 29 (:REWRITE CONSP-BY-LEN)) (26 26 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (26 13 (:REWRITE OMAP::SETP-WHEN-MAPP)) (26 13 (:REWRITE SET::NONEMPTY-MEANS-SET)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (17 17 (:REWRITE CAR-WHEN-ALL-EQUALP)) (16 14 (:REWRITE DEFAULT-CAR)) (13 13 (:TYPE-PRESCRIPTION OMAP::MAPP)) (13 13 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (13 13 (:REWRITE SET::IN-SET)) (13 13 (:META CANCEL_TIMES-EQUAL-CORRECT)) (13 13 (:META CANCEL_PLUS-EQUAL-CORRECT)) (6 6 (:REWRITE CONSP-OF-CDR-BY-LEN)) ) (VL::VL-MODULELIST-ZOMBIES-VL-MODULELIST-EQUIV-CONGRUENCE-ON-X) (VL::VL-MODULELIST-ZOMBIES-OF-SYMBOL-LIST-FIX-SUPPRESS-FATALS (340 4 (:REWRITE SYMBOL-LIST-FIX-WHEN-SYMBOL-LISTP)) (160 4 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (142 6 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (140 4 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (140 4 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (56 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (28 14 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 14 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (22 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (14 14 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (14 14 (:TYPE-PRESCRIPTION TRUE-LISTP)) (14 14 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (14 14 (:REWRITE CONSP-BY-LEN)) (8 8 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (8 8 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (8 8 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (8 8 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (8 8 (:REWRITE DEFAULT-CAR)) (8 8 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 8 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (4 4 (:REWRITE FN-CHECK-DEF-FORMALS)) (4 4 (:REWRITE DEFAULT-CDR)) (4 2 (:REWRITE OMAP::SETP-WHEN-MAPP)) (4 2 (:REWRITE SET::NONEMPTY-MEANS-SET)) (2 2 (:TYPE-PRESCRIPTION OMAP::MAPP)) (2 2 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (2 2 (:REWRITE SET::IN-SET)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) ) (VL::VL-MODULELIST-ZOMBIES-SYMBOL-LIST-EQUIV-CONGRUENCE-ON-SUPPRESS-FATALS) (VL::VL-INTERFACELIST-ZOMBIES (245 7 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (80 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (48 24 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (40 20 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE VL::VL-INTERFACELIST-P-WHEN-NOT-CONSP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (24 24 (:TYPE-PRESCRIPTION TRUE-LISTP)) (20 20 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (20 20 (:REWRITE CONSP-BY-LEN)) (10 2 (:REWRITE VL::VL-INTERFACE-P-BY-TAG-WHEN-VL-SCOPEDEF-P)) (10 2 (:REWRITE VL::VL-INTERFACE-P-BY-TAG-WHEN-VL-SCOPE-P)) (9 9 (:REWRITE DEFAULT-CAR)) (9 9 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 4 (:REWRITE SET::DOUBLE-CONTAINMENT)) (8 2 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (5 5 (:REWRITE SUBSETP-TRANS2)) (5 5 (:REWRITE SUBSETP-TRANS)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:META CANCEL_TIMES-EQUAL-CORRECT)) (4 4 (:META CANCEL_PLUS-EQUAL-CORRECT)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE DEFAULT-CDR)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::STRING-LISTP-OF-VL-INTERFACELIST-ZOMBIES (140 4 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (52 2 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (38 19 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (26 11 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (25 1 (:REWRITE SUBSETP-OF-CONS)) (22 22 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (21 3 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (20 2 (:REWRITE MEMBER-WHEN-ATOM)) (18 4 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (14 14 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (7 7 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (7 7 (:TYPE-PRESCRIPTION TRUE-LISTP)) (7 7 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (7 7 (:REWRITE CONSP-BY-LEN)) (5 5 (:REWRITE DEFAULT-CAR)) (5 5 (:REWRITE CAR-WHEN-ALL-EQUALP)) (4 4 (:REWRITE SUBSETP-TRANS2)) (4 4 (:REWRITE SUBSETP-TRANS)) (4 4 (:REWRITE SUBSETP-MEMBER . 2)) (4 4 (:REWRITE SUBSETP-MEMBER . 1)) (4 4 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (4 4 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE SUBSETP-MEMBER . 4)) (2 2 (:REWRITE SUBSETP-MEMBER . 3)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (2 2 (:REWRITE INTERSECTP-MEMBER . 3)) (2 2 (:REWRITE INTERSECTP-MEMBER . 2)) (2 2 (:REWRITE FN-CHECK-DEF-FORMALS)) (1 1 (:REWRITE DEFAULT-CDR)) ) (VL::VL-INTERFACELIST-ZOMBIES-OF-VL-INTERFACELIST-FIX-X (282 10 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (198 22 (:REWRITE DEFAULT-CDR)) (143 13 (:REWRITE SET::DOUBLE-CONTAINMENT)) (116 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (58 29 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (58 29 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (38 38 (:REWRITE VL::VL-INTERFACELIST-P-WHEN-SUBSETP-EQUAL)) (36 6 (:REWRITE VL::VL-INTERFACELIST-P-OF-CDR-WHEN-VL-INTERFACELIST-P)) (29 29 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (29 29 (:TYPE-PRESCRIPTION TRUE-LISTP)) (29 29 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (29 29 (:REWRITE CONSP-BY-LEN)) (26 26 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (26 13 (:REWRITE OMAP::SETP-WHEN-MAPP)) (26 13 (:REWRITE SET::NONEMPTY-MEANS-SET)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (17 17 (:REWRITE CAR-WHEN-ALL-EQUALP)) (16 14 (:REWRITE DEFAULT-CAR)) (13 13 (:TYPE-PRESCRIPTION OMAP::MAPP)) (13 13 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (13 13 (:REWRITE SET::IN-SET)) (13 13 (:META CANCEL_TIMES-EQUAL-CORRECT)) (13 13 (:META CANCEL_PLUS-EQUAL-CORRECT)) (6 6 (:REWRITE CONSP-OF-CDR-BY-LEN)) ) (VL::VL-INTERFACELIST-ZOMBIES-VL-INTERFACELIST-EQUIV-CONGRUENCE-ON-X) (VL::VL-INTERFACELIST-ZOMBIES-OF-SYMBOL-LIST-FIX-SUPPRESS-FATALS (340 4 (:REWRITE SYMBOL-LIST-FIX-WHEN-SYMBOL-LISTP)) (160 4 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (142 6 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (140 4 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (140 4 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (56 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (28 14 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 14 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (22 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (14 14 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (14 14 (:TYPE-PRESCRIPTION TRUE-LISTP)) (14 14 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (14 14 (:REWRITE CONSP-BY-LEN)) (8 8 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (8 8 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (8 8 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (8 8 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (8 8 (:REWRITE DEFAULT-CAR)) (8 8 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 8 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (4 4 (:REWRITE FN-CHECK-DEF-FORMALS)) (4 4 (:REWRITE DEFAULT-CDR)) (4 2 (:REWRITE OMAP::SETP-WHEN-MAPP)) (4 2 (:REWRITE SET::NONEMPTY-MEANS-SET)) (2 2 (:TYPE-PRESCRIPTION OMAP::MAPP)) (2 2 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (2 2 (:REWRITE SET::IN-SET)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) ) (VL::VL-INTERFACELIST-ZOMBIES-SYMBOL-LIST-EQUIV-CONGRUENCE-ON-SUPPRESS-FATALS) (VL::VL-PACKAGELIST-ZOMBIES (245 7 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (80 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (48 24 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (40 20 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE VL::VL-PACKAGELIST-P-WHEN-NOT-CONSP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (24 24 (:TYPE-PRESCRIPTION TRUE-LISTP)) (20 20 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (20 20 (:REWRITE CONSP-BY-LEN)) (10 2 (:REWRITE VL::VL-PACKAGE-P-BY-TAG-WHEN-VL-SCOPE-P)) (9 9 (:REWRITE DEFAULT-CAR)) (9 9 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 2 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (5 5 (:REWRITE SUBSETP-TRANS2)) (5 5 (:REWRITE SUBSETP-TRANS)) (4 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (2 2 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE DEFAULT-CDR)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::STRING-LISTP-OF-VL-PACKAGELIST-ZOMBIES (140 4 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (52 2 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (38 19 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (26 11 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (25 1 (:REWRITE SUBSETP-OF-CONS)) (22 22 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (21 3 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (20 2 (:REWRITE MEMBER-WHEN-ATOM)) (18 4 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (14 14 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (7 7 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (7 7 (:TYPE-PRESCRIPTION TRUE-LISTP)) (7 7 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (7 7 (:REWRITE CONSP-BY-LEN)) (5 5 (:REWRITE DEFAULT-CAR)) (5 5 (:REWRITE CAR-WHEN-ALL-EQUALP)) (4 4 (:REWRITE SUBSETP-TRANS2)) (4 4 (:REWRITE SUBSETP-TRANS)) (4 4 (:REWRITE SUBSETP-MEMBER . 2)) (4 4 (:REWRITE SUBSETP-MEMBER . 1)) (4 4 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (4 4 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE SUBSETP-MEMBER . 4)) (2 2 (:REWRITE SUBSETP-MEMBER . 3)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (2 2 (:REWRITE INTERSECTP-MEMBER . 3)) (2 2 (:REWRITE INTERSECTP-MEMBER . 2)) (2 2 (:REWRITE FN-CHECK-DEF-FORMALS)) (1 1 (:REWRITE DEFAULT-CDR)) ) (VL::VL-PACKAGELIST-ZOMBIES-OF-VL-PACKAGELIST-FIX-X (282 10 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (198 22 (:REWRITE DEFAULT-CDR)) (143 13 (:REWRITE SET::DOUBLE-CONTAINMENT)) (116 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (58 29 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (58 29 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (38 38 (:REWRITE VL::VL-PACKAGELIST-P-WHEN-SUBSETP-EQUAL)) (36 6 (:REWRITE VL::VL-PACKAGELIST-P-OF-CDR-WHEN-VL-PACKAGELIST-P)) (29 29 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (29 29 (:TYPE-PRESCRIPTION TRUE-LISTP)) (29 29 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (29 29 (:REWRITE CONSP-BY-LEN)) (26 26 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (26 13 (:REWRITE OMAP::SETP-WHEN-MAPP)) (26 13 (:REWRITE SET::NONEMPTY-MEANS-SET)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (17 17 (:REWRITE CAR-WHEN-ALL-EQUALP)) (16 14 (:REWRITE DEFAULT-CAR)) (13 13 (:TYPE-PRESCRIPTION OMAP::MAPP)) (13 13 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (13 13 (:REWRITE SET::IN-SET)) (13 13 (:META CANCEL_TIMES-EQUAL-CORRECT)) (13 13 (:META CANCEL_PLUS-EQUAL-CORRECT)) (6 6 (:REWRITE CONSP-OF-CDR-BY-LEN)) ) (VL::VL-PACKAGELIST-ZOMBIES-VL-PACKAGELIST-EQUIV-CONGRUENCE-ON-X) (VL::VL-PACKAGELIST-ZOMBIES-OF-SYMBOL-LIST-FIX-SUPPRESS-FATALS (340 4 (:REWRITE SYMBOL-LIST-FIX-WHEN-SYMBOL-LISTP)) (160 4 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (142 6 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (140 4 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (140 4 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (56 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (28 14 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 14 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (22 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (14 14 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (14 14 (:TYPE-PRESCRIPTION TRUE-LISTP)) (14 14 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (14 14 (:REWRITE CONSP-BY-LEN)) (8 8 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (8 8 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (8 8 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (8 8 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (8 8 (:REWRITE DEFAULT-CAR)) (8 8 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 8 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (4 4 (:REWRITE FN-CHECK-DEF-FORMALS)) (4 4 (:REWRITE DEFAULT-CDR)) (4 2 (:REWRITE OMAP::SETP-WHEN-MAPP)) (4 2 (:REWRITE SET::NONEMPTY-MEANS-SET)) (2 2 (:TYPE-PRESCRIPTION OMAP::MAPP)) (2 2 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (2 2 (:REWRITE SET::IN-SET)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) ) (VL::VL-PACKAGELIST-ZOMBIES-SYMBOL-LIST-EQUIV-CONGRUENCE-ON-SUPPRESS-FATALS) (VL::VL-UDPLIST-ZOMBIES (245 7 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (80 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (48 24 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (40 20 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE VL::VL-UDPLIST-P-WHEN-NOT-CONSP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (24 24 (:TYPE-PRESCRIPTION TRUE-LISTP)) (20 20 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (20 20 (:REWRITE CONSP-BY-LEN)) (10 2 (:REWRITE VL::VL-UDP-P-BY-TAG-WHEN-VL-SCOPEDEF-P)) (9 9 (:REWRITE DEFAULT-CAR)) (9 9 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 2 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (5 5 (:REWRITE SUBSETP-TRANS2)) (5 5 (:REWRITE SUBSETP-TRANS)) (4 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (2 2 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE DEFAULT-CDR)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::STRING-LISTP-OF-VL-UDPLIST-ZOMBIES (140 4 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (52 2 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (38 19 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (26 11 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (25 1 (:REWRITE SUBSETP-OF-CONS)) (22 22 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (21 3 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (20 2 (:REWRITE MEMBER-WHEN-ATOM)) (18 4 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (14 14 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (7 7 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (7 7 (:TYPE-PRESCRIPTION TRUE-LISTP)) (7 7 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (7 7 (:REWRITE CONSP-BY-LEN)) (5 5 (:REWRITE DEFAULT-CAR)) (5 5 (:REWRITE CAR-WHEN-ALL-EQUALP)) (4 4 (:REWRITE SUBSETP-TRANS2)) (4 4 (:REWRITE SUBSETP-TRANS)) (4 4 (:REWRITE SUBSETP-MEMBER . 2)) (4 4 (:REWRITE SUBSETP-MEMBER . 1)) (4 4 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (4 4 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE SUBSETP-MEMBER . 4)) (2 2 (:REWRITE SUBSETP-MEMBER . 3)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (2 2 (:REWRITE INTERSECTP-MEMBER . 3)) (2 2 (:REWRITE INTERSECTP-MEMBER . 2)) (2 2 (:REWRITE FN-CHECK-DEF-FORMALS)) (1 1 (:REWRITE DEFAULT-CDR)) ) (VL::VL-UDPLIST-ZOMBIES-OF-VL-UDPLIST-FIX-X (282 10 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (198 22 (:REWRITE DEFAULT-CDR)) (143 13 (:REWRITE SET::DOUBLE-CONTAINMENT)) (116 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (58 29 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (58 29 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (38 38 (:REWRITE VL::VL-UDPLIST-P-WHEN-SUBSETP-EQUAL)) (36 6 (:REWRITE VL::VL-UDPLIST-P-OF-CDR-WHEN-VL-UDPLIST-P)) (29 29 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (29 29 (:TYPE-PRESCRIPTION TRUE-LISTP)) (29 29 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (29 29 (:REWRITE CONSP-BY-LEN)) (26 26 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (26 13 (:REWRITE OMAP::SETP-WHEN-MAPP)) (26 13 (:REWRITE SET::NONEMPTY-MEANS-SET)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (17 17 (:REWRITE CAR-WHEN-ALL-EQUALP)) (16 14 (:REWRITE DEFAULT-CAR)) (13 13 (:TYPE-PRESCRIPTION OMAP::MAPP)) (13 13 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (13 13 (:REWRITE SET::IN-SET)) (13 13 (:META CANCEL_TIMES-EQUAL-CORRECT)) (13 13 (:META CANCEL_PLUS-EQUAL-CORRECT)) (6 6 (:REWRITE CONSP-OF-CDR-BY-LEN)) ) (VL::VL-UDPLIST-ZOMBIES-VL-UDPLIST-EQUIV-CONGRUENCE-ON-X) (VL::VL-UDPLIST-ZOMBIES-OF-SYMBOL-LIST-FIX-SUPPRESS-FATALS (340 4 (:REWRITE SYMBOL-LIST-FIX-WHEN-SYMBOL-LISTP)) (160 4 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (142 6 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (140 4 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (140 4 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (56 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (28 14 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 14 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (22 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (14 14 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (14 14 (:TYPE-PRESCRIPTION TRUE-LISTP)) (14 14 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (14 14 (:REWRITE CONSP-BY-LEN)) (8 8 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (8 8 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (8 8 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (8 8 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (8 8 (:REWRITE DEFAULT-CAR)) (8 8 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 8 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (4 4 (:REWRITE FN-CHECK-DEF-FORMALS)) (4 4 (:REWRITE DEFAULT-CDR)) (4 2 (:REWRITE OMAP::SETP-WHEN-MAPP)) (4 2 (:REWRITE SET::NONEMPTY-MEANS-SET)) (2 2 (:TYPE-PRESCRIPTION OMAP::MAPP)) (2 2 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (2 2 (:REWRITE SET::IN-SET)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) ) (VL::VL-UDPLIST-ZOMBIES-SYMBOL-LIST-EQUIV-CONGRUENCE-ON-SUPPRESS-FATALS) (VL::VL-PROGRAMLIST-ZOMBIES (245 7 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (80 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (48 24 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (40 20 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE VL::VL-PROGRAMLIST-P-WHEN-NOT-CONSP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (24 24 (:TYPE-PRESCRIPTION TRUE-LISTP)) (20 20 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (20 20 (:REWRITE CONSP-BY-LEN)) (10 2 (:REWRITE VL::VL-PROGRAM-P-BY-TAG-WHEN-VL-SCOPEDEF-P)) (9 9 (:REWRITE DEFAULT-CAR)) (9 9 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 2 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (5 5 (:REWRITE SUBSETP-TRANS2)) (5 5 (:REWRITE SUBSETP-TRANS)) (4 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (2 2 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE DEFAULT-CDR)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::STRING-LISTP-OF-VL-PROGRAMLIST-ZOMBIES (140 4 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (52 2 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (38 19 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (26 11 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (25 1 (:REWRITE SUBSETP-OF-CONS)) (22 22 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (21 3 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (20 2 (:REWRITE MEMBER-WHEN-ATOM)) (18 4 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (14 14 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (7 7 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (7 7 (:TYPE-PRESCRIPTION TRUE-LISTP)) (7 7 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (7 7 (:REWRITE CONSP-BY-LEN)) (5 5 (:REWRITE DEFAULT-CAR)) (5 5 (:REWRITE CAR-WHEN-ALL-EQUALP)) (4 4 (:REWRITE SUBSETP-TRANS2)) (4 4 (:REWRITE SUBSETP-TRANS)) (4 4 (:REWRITE SUBSETP-MEMBER . 2)) (4 4 (:REWRITE SUBSETP-MEMBER . 1)) (4 4 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (4 4 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE SUBSETP-MEMBER . 4)) (2 2 (:REWRITE SUBSETP-MEMBER . 3)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (2 2 (:REWRITE INTERSECTP-MEMBER . 3)) (2 2 (:REWRITE INTERSECTP-MEMBER . 2)) (2 2 (:REWRITE FN-CHECK-DEF-FORMALS)) (1 1 (:REWRITE DEFAULT-CDR)) ) (VL::VL-PROGRAMLIST-ZOMBIES-OF-VL-PROGRAMLIST-FIX-X (282 10 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (198 22 (:REWRITE DEFAULT-CDR)) (143 13 (:REWRITE SET::DOUBLE-CONTAINMENT)) (116 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (58 29 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (58 29 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (38 38 (:REWRITE VL::VL-PROGRAMLIST-P-WHEN-SUBSETP-EQUAL)) (36 6 (:REWRITE VL::VL-PROGRAMLIST-P-OF-CDR-WHEN-VL-PROGRAMLIST-P)) (29 29 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (29 29 (:TYPE-PRESCRIPTION TRUE-LISTP)) (29 29 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (29 29 (:REWRITE CONSP-BY-LEN)) (26 26 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (26 13 (:REWRITE OMAP::SETP-WHEN-MAPP)) (26 13 (:REWRITE SET::NONEMPTY-MEANS-SET)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (17 17 (:REWRITE CAR-WHEN-ALL-EQUALP)) (16 14 (:REWRITE DEFAULT-CAR)) (13 13 (:TYPE-PRESCRIPTION OMAP::MAPP)) (13 13 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (13 13 (:REWRITE SET::IN-SET)) (13 13 (:META CANCEL_TIMES-EQUAL-CORRECT)) (13 13 (:META CANCEL_PLUS-EQUAL-CORRECT)) (6 6 (:REWRITE CONSP-OF-CDR-BY-LEN)) ) (VL::VL-PROGRAMLIST-ZOMBIES-VL-PROGRAMLIST-EQUIV-CONGRUENCE-ON-X) (VL::VL-PROGRAMLIST-ZOMBIES-OF-SYMBOL-LIST-FIX-SUPPRESS-FATALS (340 4 (:REWRITE SYMBOL-LIST-FIX-WHEN-SYMBOL-LISTP)) (160 4 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (142 6 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (140 4 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (140 4 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (56 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (28 14 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 14 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (22 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (14 14 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (14 14 (:TYPE-PRESCRIPTION TRUE-LISTP)) (14 14 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (14 14 (:REWRITE CONSP-BY-LEN)) (8 8 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (8 8 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (8 8 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (8 8 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (8 8 (:REWRITE DEFAULT-CAR)) (8 8 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 8 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (4 4 (:REWRITE FN-CHECK-DEF-FORMALS)) (4 4 (:REWRITE DEFAULT-CDR)) (4 2 (:REWRITE OMAP::SETP-WHEN-MAPP)) (4 2 (:REWRITE SET::NONEMPTY-MEANS-SET)) (2 2 (:TYPE-PRESCRIPTION OMAP::MAPP)) (2 2 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (2 2 (:REWRITE SET::IN-SET)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) ) (VL::VL-PROGRAMLIST-ZOMBIES-SYMBOL-LIST-EQUIV-CONGRUENCE-ON-SUPPRESS-FATALS) (VL::VL-CLASSLIST-ZOMBIES (245 7 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (80 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (48 24 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (40 20 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE VL::VL-CLASSLIST-P-WHEN-NOT-CONSP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (24 24 (:TYPE-PRESCRIPTION TRUE-LISTP)) (20 20 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (20 20 (:REWRITE CONSP-BY-LEN)) (12 6 (:REWRITE SET::DOUBLE-CONTAINMENT)) (10 2 (:REWRITE VL::VL-CLASS-P-BY-TAG-WHEN-VL-SCOPEDEF-P)) (10 2 (:REWRITE VL::VL-CLASS-P-BY-TAG-WHEN-VL-MODELEMENT-P)) (10 2 (:REWRITE VL::VL-CLASS-P-BY-TAG-WHEN-VL-CTXELEMENT-P)) (9 9 (:REWRITE DEFAULT-CAR)) (9 9 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 2 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (6 6 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (6 6 (:META CANCEL_TIMES-EQUAL-CORRECT)) (6 6 (:META CANCEL_PLUS-EQUAL-CORRECT)) (5 5 (:REWRITE SUBSETP-TRANS2)) (5 5 (:REWRITE SUBSETP-TRANS)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE DEFAULT-CDR)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::STRING-LISTP-OF-VL-CLASSLIST-ZOMBIES (140 4 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (52 2 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (38 19 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (26 11 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (25 1 (:REWRITE SUBSETP-OF-CONS)) (22 22 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (21 3 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (20 2 (:REWRITE MEMBER-WHEN-ATOM)) (18 4 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (14 14 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (7 7 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (7 7 (:TYPE-PRESCRIPTION TRUE-LISTP)) (7 7 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (7 7 (:REWRITE CONSP-BY-LEN)) (5 5 (:REWRITE DEFAULT-CAR)) (5 5 (:REWRITE CAR-WHEN-ALL-EQUALP)) (4 4 (:REWRITE SUBSETP-TRANS2)) (4 4 (:REWRITE SUBSETP-TRANS)) (4 4 (:REWRITE SUBSETP-MEMBER . 2)) (4 4 (:REWRITE SUBSETP-MEMBER . 1)) (4 4 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (4 4 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE SUBSETP-MEMBER . 4)) (2 2 (:REWRITE SUBSETP-MEMBER . 3)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (2 2 (:REWRITE INTERSECTP-MEMBER . 3)) (2 2 (:REWRITE INTERSECTP-MEMBER . 2)) (2 2 (:REWRITE FN-CHECK-DEF-FORMALS)) (1 1 (:REWRITE DEFAULT-CDR)) ) (VL::VL-CLASSLIST-ZOMBIES-OF-VL-CLASSLIST-FIX-X (282 10 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (210 22 (:REWRITE DEFAULT-CDR)) (143 13 (:REWRITE SET::DOUBLE-CONTAINMENT)) (116 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (58 29 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (58 29 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (38 38 (:REWRITE VL::VL-CLASSLIST-P-WHEN-SUBSETP-EQUAL)) (36 6 (:REWRITE VL::VL-CLASSLIST-P-OF-CDR-WHEN-VL-CLASSLIST-P)) (29 29 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (29 29 (:TYPE-PRESCRIPTION TRUE-LISTP)) (29 29 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (29 29 (:REWRITE CONSP-BY-LEN)) (26 26 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (26 13 (:REWRITE OMAP::SETP-WHEN-MAPP)) (26 13 (:REWRITE SET::NONEMPTY-MEANS-SET)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (17 17 (:REWRITE CAR-WHEN-ALL-EQUALP)) (16 14 (:REWRITE DEFAULT-CAR)) (13 13 (:TYPE-PRESCRIPTION OMAP::MAPP)) (13 13 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (13 13 (:REWRITE SET::IN-SET)) (13 13 (:META CANCEL_TIMES-EQUAL-CORRECT)) (13 13 (:META CANCEL_PLUS-EQUAL-CORRECT)) (6 6 (:REWRITE CONSP-OF-CDR-BY-LEN)) ) (VL::VL-CLASSLIST-ZOMBIES-VL-CLASSLIST-EQUIV-CONGRUENCE-ON-X) (VL::VL-CLASSLIST-ZOMBIES-OF-SYMBOL-LIST-FIX-SUPPRESS-FATALS (340 4 (:REWRITE SYMBOL-LIST-FIX-WHEN-SYMBOL-LISTP)) (160 4 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (142 6 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (140 4 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (140 4 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (56 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (28 14 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 14 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (22 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (14 14 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (14 14 (:TYPE-PRESCRIPTION TRUE-LISTP)) (14 14 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (14 14 (:REWRITE CONSP-BY-LEN)) (8 8 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (8 8 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (8 8 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (8 8 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (8 8 (:REWRITE DEFAULT-CAR)) (8 8 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 8 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (4 4 (:REWRITE FN-CHECK-DEF-FORMALS)) (4 4 (:REWRITE DEFAULT-CDR)) (4 2 (:REWRITE OMAP::SETP-WHEN-MAPP)) (4 2 (:REWRITE SET::NONEMPTY-MEANS-SET)) (2 2 (:TYPE-PRESCRIPTION OMAP::MAPP)) (2 2 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (2 2 (:REWRITE SET::IN-SET)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) ) (VL::VL-CLASSLIST-ZOMBIES-SYMBOL-LIST-EQUIV-CONGRUENCE-ON-SUPPRESS-FATALS) (VL::VL-CONFIGLIST-ZOMBIES (245 7 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (80 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (48 24 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (40 20 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE VL::VL-CONFIGLIST-P-WHEN-NOT-CONSP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (24 24 (:TYPE-PRESCRIPTION TRUE-LISTP)) (20 20 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (20 20 (:REWRITE CONSP-BY-LEN)) (9 9 (:REWRITE DEFAULT-CAR)) (9 9 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 2 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (5 5 (:REWRITE SUBSETP-TRANS2)) (5 5 (:REWRITE SUBSETP-TRANS)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE DEFAULT-CDR)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::STRING-LISTP-OF-VL-CONFIGLIST-ZOMBIES (140 4 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (52 2 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (38 19 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (26 11 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (25 1 (:REWRITE SUBSETP-OF-CONS)) (22 22 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (21 3 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (20 2 (:REWRITE MEMBER-WHEN-ATOM)) (18 4 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (14 14 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (7 7 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (7 7 (:TYPE-PRESCRIPTION TRUE-LISTP)) (7 7 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (7 7 (:REWRITE CONSP-BY-LEN)) (5 5 (:REWRITE DEFAULT-CAR)) (5 5 (:REWRITE CAR-WHEN-ALL-EQUALP)) (4 4 (:REWRITE SUBSETP-TRANS2)) (4 4 (:REWRITE SUBSETP-TRANS)) (4 4 (:REWRITE SUBSETP-MEMBER . 2)) (4 4 (:REWRITE SUBSETP-MEMBER . 1)) (4 4 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (4 4 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE SUBSETP-MEMBER . 4)) (2 2 (:REWRITE SUBSETP-MEMBER . 3)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (2 2 (:REWRITE INTERSECTP-MEMBER . 3)) (2 2 (:REWRITE INTERSECTP-MEMBER . 2)) (2 2 (:REWRITE FN-CHECK-DEF-FORMALS)) (1 1 (:REWRITE DEFAULT-CDR)) ) (VL::VL-CONFIGLIST-ZOMBIES-OF-VL-CONFIGLIST-FIX-X (282 10 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (198 22 (:REWRITE DEFAULT-CDR)) (143 13 (:REWRITE SET::DOUBLE-CONTAINMENT)) (116 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (58 29 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (58 29 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (38 38 (:REWRITE VL::VL-CONFIGLIST-P-WHEN-SUBSETP-EQUAL)) (36 6 (:REWRITE VL::VL-CONFIGLIST-P-OF-CDR-WHEN-VL-CONFIGLIST-P)) (29 29 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (29 29 (:TYPE-PRESCRIPTION TRUE-LISTP)) (29 29 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (29 29 (:REWRITE CONSP-BY-LEN)) (26 26 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (26 13 (:REWRITE OMAP::SETP-WHEN-MAPP)) (26 13 (:REWRITE SET::NONEMPTY-MEANS-SET)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (17 17 (:REWRITE CAR-WHEN-ALL-EQUALP)) (16 14 (:REWRITE DEFAULT-CAR)) (13 13 (:TYPE-PRESCRIPTION OMAP::MAPP)) (13 13 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (13 13 (:REWRITE SET::IN-SET)) (13 13 (:META CANCEL_TIMES-EQUAL-CORRECT)) (13 13 (:META CANCEL_PLUS-EQUAL-CORRECT)) (6 6 (:REWRITE CONSP-OF-CDR-BY-LEN)) ) (VL::VL-CONFIGLIST-ZOMBIES-VL-CONFIGLIST-EQUIV-CONGRUENCE-ON-X) (VL::VL-CONFIGLIST-ZOMBIES-OF-SYMBOL-LIST-FIX-SUPPRESS-FATALS (340 4 (:REWRITE SYMBOL-LIST-FIX-WHEN-SYMBOL-LISTP)) (160 4 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (142 6 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (140 4 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (140 4 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (56 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (28 14 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 14 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (22 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (14 14 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (14 14 (:TYPE-PRESCRIPTION TRUE-LISTP)) (14 14 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (14 14 (:REWRITE CONSP-BY-LEN)) (8 8 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (8 8 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (8 8 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (8 8 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (8 8 (:REWRITE DEFAULT-CAR)) (8 8 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 8 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (4 4 (:REWRITE FN-CHECK-DEF-FORMALS)) (4 4 (:REWRITE DEFAULT-CDR)) (4 2 (:REWRITE OMAP::SETP-WHEN-MAPP)) (4 2 (:REWRITE SET::NONEMPTY-MEANS-SET)) (2 2 (:TYPE-PRESCRIPTION OMAP::MAPP)) (2 2 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (2 2 (:REWRITE SET::IN-SET)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) ) (VL::VL-CONFIGLIST-ZOMBIES-SYMBOL-LIST-EQUIV-CONGRUENCE-ON-SUPPRESS-FATALS) (VL::VL-TYPEDEFLIST-ZOMBIES (245 7 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (80 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (48 24 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (40 40 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (40 20 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE VL::VL-TYPEDEFLIST-P-WHEN-NOT-CONSP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (24 24 (:TYPE-PRESCRIPTION TRUE-LISTP)) (20 20 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (20 20 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (20 20 (:REWRITE CONSP-BY-LEN)) (16 8 (:REWRITE SET::DOUBLE-CONTAINMENT)) (10 2 (:REWRITE VL::VL-TYPEDEF-P-BY-TAG-WHEN-VL-SCOPEITEM-P)) (10 2 (:REWRITE VL::VL-TYPEDEF-P-BY-TAG-WHEN-VL-MODELEMENT-P)) (10 2 (:REWRITE VL::VL-TYPEDEF-P-BY-TAG-WHEN-VL-CTXELEMENT-P)) (10 2 (:REWRITE VL::VL-TYPEDEF-P-BY-TAG-WHEN-VL-BLOCKITEM-P)) (9 9 (:REWRITE DEFAULT-CAR)) (9 9 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 8 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (8 8 (:META CANCEL_TIMES-EQUAL-CORRECT)) (8 8 (:META CANCEL_PLUS-EQUAL-CORRECT)) (8 2 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (5 5 (:REWRITE SUBSETP-TRANS2)) (5 5 (:REWRITE SUBSETP-TRANS)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE DEFAULT-CDR)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::STRING-LISTP-OF-VL-TYPEDEFLIST-ZOMBIES (140 4 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (52 2 (:REWRITE VL::STRING-LISTP-WHEN-NO-NILS-IN-VL-MAYBE-STRING-LISTP)) (38 19 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (26 11 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (25 1 (:REWRITE SUBSETP-OF-CONS)) (22 22 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (21 3 (:REWRITE STRING-LISTP-WHEN-NOT-CONSP)) (20 2 (:REWRITE MEMBER-WHEN-ATOM)) (18 4 (:REWRITE VL::MEMBER-EQUAL-WHEN-MEMBER-EQUAL-OF-CDR-UNDER-IFF)) (14 14 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (11 11 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (7 7 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (7 7 (:TYPE-PRESCRIPTION TRUE-LISTP)) (7 7 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (7 7 (:REWRITE CONSP-BY-LEN)) (5 5 (:REWRITE DEFAULT-CAR)) (5 5 (:REWRITE CAR-WHEN-ALL-EQUALP)) (4 4 (:REWRITE SUBSETP-TRANS2)) (4 4 (:REWRITE SUBSETP-TRANS)) (4 4 (:REWRITE SUBSETP-MEMBER . 2)) (4 4 (:REWRITE SUBSETP-MEMBER . 1)) (4 4 (:REWRITE VL::STRING-LISTP-WHEN-MEMBER-EQUAL-OF-STRING-LIST-LISTP)) (4 4 (:REWRITE MEMBER-EQUAL-WHEN-ALL-EQUALP)) (2 2 (:REWRITE SUBSETP-MEMBER . 4)) (2 2 (:REWRITE SUBSETP-MEMBER . 3)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 2)) (2 2 (:REWRITE VL::STRING-LISTP-WHEN-SUBSETP-EQUAL-OF-STRING-LISTP . 1)) (2 2 (:REWRITE INTERSECTP-MEMBER . 3)) (2 2 (:REWRITE INTERSECTP-MEMBER . 2)) (2 2 (:REWRITE FN-CHECK-DEF-FORMALS)) (1 1 (:REWRITE DEFAULT-CDR)) ) (VL::VL-TYPEDEFLIST-ZOMBIES-OF-VL-TYPEDEFLIST-FIX-X (282 10 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (222 22 (:REWRITE DEFAULT-CDR)) (143 13 (:REWRITE SET::DOUBLE-CONTAINMENT)) (116 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (58 58 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (58 29 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (58 29 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (38 38 (:REWRITE VL::VL-TYPEDEFLIST-P-WHEN-SUBSETP-EQUAL)) (36 6 (:REWRITE VL::VL-TYPEDEFLIST-P-OF-CDR-WHEN-VL-TYPEDEFLIST-P)) (29 29 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (29 29 (:TYPE-PRESCRIPTION TRUE-LISTP)) (29 29 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (29 29 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (29 29 (:REWRITE CONSP-BY-LEN)) (26 26 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (26 13 (:REWRITE OMAP::SETP-WHEN-MAPP)) (26 13 (:REWRITE SET::NONEMPTY-MEANS-SET)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (21 21 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (17 17 (:REWRITE CAR-WHEN-ALL-EQUALP)) (16 14 (:REWRITE DEFAULT-CAR)) (13 13 (:TYPE-PRESCRIPTION OMAP::MAPP)) (13 13 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (13 13 (:REWRITE SET::IN-SET)) (13 13 (:META CANCEL_TIMES-EQUAL-CORRECT)) (13 13 (:META CANCEL_PLUS-EQUAL-CORRECT)) (6 6 (:REWRITE CONSP-OF-CDR-BY-LEN)) ) (VL::VL-TYPEDEFLIST-ZOMBIES-VL-TYPEDEFLIST-EQUIV-CONGRUENCE-ON-X) (VL::VL-TYPEDEFLIST-ZOMBIES-OF-SYMBOL-LIST-FIX-SUPPRESS-FATALS (340 4 (:REWRITE SYMBOL-LIST-FIX-WHEN-SYMBOL-LISTP)) (160 4 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (142 6 (:REWRITE VL::VL-SOME-WARNING-FATALP-WHEN-NOT-CONSP)) (140 4 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (140 4 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (56 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (28 28 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (28 14 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (28 14 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (22 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (14 14 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (14 14 (:TYPE-PRESCRIPTION TRUE-LISTP)) (14 14 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (14 14 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (14 14 (:REWRITE CONSP-BY-LEN)) (8 8 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (8 8 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (8 8 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (8 8 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (8 8 (:REWRITE DEFAULT-CAR)) (8 8 (:REWRITE CAR-WHEN-ALL-EQUALP)) (8 8 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (4 4 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (4 4 (:REWRITE FN-CHECK-DEF-FORMALS)) (4 4 (:REWRITE DEFAULT-CDR)) (4 2 (:REWRITE OMAP::SETP-WHEN-MAPP)) (4 2 (:REWRITE SET::NONEMPTY-MEANS-SET)) (2 2 (:TYPE-PRESCRIPTION OMAP::MAPP)) (2 2 (:TYPE-PRESCRIPTION SET::EMPTY-TYPE)) (2 2 (:REWRITE SET::IN-SET)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) ) (VL::VL-TYPEDEFLIST-ZOMBIES-SYMBOL-LIST-EQUIV-CONGRUENCE-ON-SUPPRESS-FATALS) (VL::VL-DESIGN-ZOMBIES (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (18 10 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (8 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (4 4 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (4 4 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (4 2 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (4 2 (:REWRITE SET::DOUBLE-CONTAINMENT)) (4 2 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (2 2 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (2 2 (:TYPE-PRESCRIPTION TRUE-LISTP)) (2 2 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (2 2 (:REWRITE CONSP-BY-LEN)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (2 2 (:META CANCEL_TIMES-EQUAL-CORRECT)) (2 2 (:META CANCEL_PLUS-EQUAL-CORRECT)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE SUBSETP-TRANS2)) (1 1 (:REWRITE SUBSETP-TRANS)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::STRING-LISTP-OF-VL-DESIGN-ZOMBIES (70 7 (:REWRITE APPEND-WHEN-NOT-CONSP)) (21 7 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (14 14 (:REWRITE STRING-LISTP-WHEN-SUBSETP-EQUAL)) (14 14 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) ) (VL::VL-DESIGN-ZOMBIES-OF-VL-DESIGN-FIX-X (77 14 (:REWRITE APPEND-WHEN-NOT-CONSP)) (21 7 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (14 14 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (13 1 (:REWRITE VL::VL-DESIGN-FIX-WHEN-VL-DESIGN-P)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (7 7 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (5 1 (:REWRITE VL::VL-DESIGN-P-WHEN-VL-MAYBE-DESIGN-P)) (5 1 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (3 3 (:TYPE-PRESCRIPTION VL::VL-DESIGN-P)) (2 2 (:TYPE-PRESCRIPTION VL::VL-MAYBE-DESIGN-P)) (2 1 (:REWRITE VL::VL-MAYBE-DESIGN-P-WHEN-VL-DESIGN-P)) (2 1 (:REWRITE SET::DOUBLE-CONTAINMENT)) (1 1 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (1 1 (:META CANCEL_TIMES-EQUAL-CORRECT)) (1 1 (:META CANCEL_PLUS-EQUAL-CORRECT)) ) (VL::VL-DESIGN-ZOMBIES-VL-DESIGN-EQUIV-CONGRUENCE-ON-X) (VL::VL-DESIGN-ZOMBIES-OF-SYMBOL-LIST-FIX-SUPPRESS-FATALS (85 1 (:REWRITE SYMBOL-LIST-FIX-WHEN-SYMBOL-LISTP)) (77 14 (:REWRITE APPEND-WHEN-NOT-CONSP)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (25 9 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (18 18 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (9 9 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (9 9 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (8 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (4 4 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (4 2 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (2 2 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (2 2 (:TYPE-PRESCRIPTION TRUE-LISTP)) (2 2 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (2 2 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (2 2 (:REWRITE CONSP-BY-LEN)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::VL-DESIGN-ZOMBIES-SYMBOL-LIST-EQUIV-CONGRUENCE-ON-SUPPRESS-FATALS) (VL::VL-DESIGN-FILTER-ZOMBIES (468 58 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (440 8 (:REWRITE APPEND-WHEN-NOT-CONSP)) (232 208 (:TYPE-PRESCRIPTION TRUE-LISTP-APPEND)) (208 208 (:TYPE-PRESCRIPTION BINARY-APPEND)) (116 116 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (104 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (70 2 (:REWRITE VL::VL-KEEP-UDPS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-TYPEDEFS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-PROGRAMS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-PACKAGES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-MODULES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-INTERFACES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-CONFIGS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-CLASSES-WHEN-ATOM)) (58 58 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (58 58 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (52 52 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (52 26 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (50 50 (:TYPE-PRESCRIPTION TRUE-LISTP)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (38 22 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (35 1 (:REWRITE VL::VL-DELETE-UDPS-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-TYPEDEFS-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-PROGRAMS-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-PACKAGES-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-MODULES-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-INTERFACES-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-CONFIGS-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-CLASSES-WHEN-ATOM)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (26 26 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (26 26 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (26 26 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (26 26 (:REWRITE CONSP-BY-LEN)) (20 2 (:REWRITE VL::VL-KEEP-UDPS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-TYPEDEFS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-PROGRAMS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-PACKAGES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-MODULES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-INTERFACES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-CONFIGS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-CLASSES-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-UDPS-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-TYPEDEFS-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-PROGRAMS-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-PACKAGES-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-MODULES-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-INTERFACES-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-CONFIGS-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-CLASSES-WHEN-ATOM-OF-NAMES)) (8 8 (:REWRITE SUBSETP-TRANS2)) (8 8 (:REWRITE SUBSETP-TRANS)) (8 4 (:REWRITE SET::DOUBLE-CONTAINMENT)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:META CANCEL_TIMES-EQUAL-CORRECT)) (4 4 (:META CANCEL_PLUS-EQUAL-CORRECT)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE VL::VL-UDPLIST-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::VL-TYPEDEFLIST-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::VL-PROGRAMLIST-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::VL-PACKAGELIST-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::VL-MODULELIST-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::VL-INTERFACELIST-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::VL-CONFIGLIST-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::VL-CLASSLIST-P-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::VL-DESIGN-P-OF-VL-DESIGN-FILTER-ZOMBIES.GOOD-- (464 56 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (440 8 (:REWRITE APPEND-WHEN-NOT-CONSP)) (112 112 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (96 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (70 2 (:REWRITE VL::VL-KEEP-UDPS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-TYPEDEFS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-PROGRAMS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-PACKAGES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-MODULES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-INTERFACES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-CONFIGS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-CLASSES-WHEN-ATOM)) (56 56 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (56 56 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (48 48 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (48 24 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (35 1 (:REWRITE VL::VL-DELETE-UDPS-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-TYPEDEFS-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-PROGRAMS-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-PACKAGES-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-MODULES-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-INTERFACES-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-CONFIGS-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-CLASSES-WHEN-ATOM)) (31 2 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (24 24 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (24 24 (:TYPE-PRESCRIPTION TRUE-LISTP)) (24 24 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (24 24 (:REWRITE CONSP-BY-LEN)) (20 2 (:REWRITE VL::VL-KEEP-UDPS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-TYPEDEFS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-PROGRAMS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-PACKAGES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-MODULES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-INTERFACES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-CONFIGS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-CLASSES-WHEN-ATOM-OF-NAMES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-UDPLIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-TYPEDEFLIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-PROGRAMLIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-PACKAGELIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-MODULELIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-INTERFACELIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-CONFIGLIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-CLASSLIST-ZOMBIES)) (10 1 (:REWRITE VL::VL-DELETE-UDPS-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-TYPEDEFS-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-PROGRAMS-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-PACKAGES-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-MODULES-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-INTERFACES-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-CONFIGS-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-CLASSES-WHEN-ATOM-OF-NAMES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-UDPS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-TYPEDEFS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-PROGRAMS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-PACKAGES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-MODULES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-INTERFACES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-CONFIGS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-CLASSES)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-SCOPEINFO-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-PACKAGE-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-MODULE-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-INTERFACE-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-GENBLOB-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-DESIGN-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-BLOCKSCOPE-P)) (2 2 (:TYPE-PRESCRIPTION VL::VL-SCOPE-P)) (2 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-MAYBE-SCOPE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-SCOPEINFO-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-PACKAGE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-MODULE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-MAYBE-SCOPE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-INTERFACE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-GENBLOB-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-BLOCKSCOPE-P)) (1 1 (:REWRITE VL::TAG-OF-VL-DESIGN)) ) (VL::VL-DESIGN-P-OF-VL-DESIGN-FILTER-ZOMBIES.BAD++ (464 56 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (440 8 (:REWRITE APPEND-WHEN-NOT-CONSP)) (112 112 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (96 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (70 2 (:REWRITE VL::VL-KEEP-UDPS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-TYPEDEFS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-PROGRAMS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-PACKAGES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-MODULES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-INTERFACES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-CONFIGS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-KEEP-CLASSES-WHEN-ATOM)) (56 56 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (56 56 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (48 48 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (48 24 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (35 1 (:REWRITE VL::VL-DELETE-UDPS-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-TYPEDEFS-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-PROGRAMS-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-PACKAGES-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-MODULES-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-INTERFACES-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-CONFIGS-WHEN-ATOM)) (35 1 (:REWRITE VL::VL-DELETE-CLASSES-WHEN-ATOM)) (31 2 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (24 24 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (24 24 (:TYPE-PRESCRIPTION TRUE-LISTP)) (24 24 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (24 24 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (24 24 (:REWRITE CONSP-BY-LEN)) (20 2 (:REWRITE VL::VL-KEEP-UDPS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-TYPEDEFS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-PROGRAMS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-PACKAGES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-MODULES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-INTERFACES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-CONFIGS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-KEEP-CLASSES-WHEN-ATOM-OF-NAMES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-UDPLIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-TYPEDEFLIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-PROGRAMLIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-PACKAGELIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-MODULELIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-INTERFACELIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-CONFIGLIST-ZOMBIES)) (12 12 (:TYPE-PRESCRIPTION VL::VL-CLASSLIST-ZOMBIES)) (10 1 (:REWRITE VL::VL-DELETE-UDPS-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-TYPEDEFS-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-PROGRAMS-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-PACKAGES-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-MODULES-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-INTERFACES-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-CONFIGS-WHEN-ATOM-OF-NAMES)) (10 1 (:REWRITE VL::VL-DELETE-CLASSES-WHEN-ATOM-OF-NAMES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-UDPS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-TYPEDEFS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-PROGRAMS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-PACKAGES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-MODULES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-INTERFACES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-CONFIGS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-CLASSES)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-SCOPEINFO-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-PACKAGE-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-MODULE-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-INTERFACE-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-GENBLOB-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-DESIGN-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-BLOCKSCOPE-P)) (2 2 (:TYPE-PRESCRIPTION VL::VL-SCOPE-P)) (2 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-MAYBE-SCOPE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-SCOPEINFO-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-PACKAGE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-MODULE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-MAYBE-SCOPE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-INTERFACE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-GENBLOB-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-BLOCKSCOPE-P)) (1 1 (:REWRITE VL::TAG-OF-VL-DESIGN)) ) (VL::VL-DESIGN-FILTER-ZOMBIES-OF-VL-DESIGN-FIX-GOOD (504 72 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (448 16 (:REWRITE APPEND-WHEN-NOT-CONSP)) (144 144 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (128 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (72 72 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (72 72 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (71 3 (:REWRITE VL::VL-KEEP-UDPS-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-TYPEDEFS-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-PROGRAMS-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-PACKAGES-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-MODULES-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-INTERFACES-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-CONFIGS-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-CLASSES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-UDPS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-TYPEDEFS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-PROGRAMS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-PACKAGES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-MODULES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-INTERFACES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-CONFIGS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-CLASSES-WHEN-ATOM)) (64 64 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (64 32 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (32 32 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (32 32 (:TYPE-PRESCRIPTION TRUE-LISTP)) (32 32 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (32 32 (:REWRITE CONSP-BY-LEN)) (21 3 (:REWRITE VL::VL-KEEP-UDPS-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-TYPEDEFS-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-PROGRAMS-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-PACKAGES-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-MODULES-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-INTERFACES-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-CONFIGS-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-CLASSES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-UDPS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-TYPEDEFS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-PROGRAMS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-PACKAGES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-MODULES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-INTERFACES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-CONFIGS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-CLASSES-WHEN-ATOM-OF-NAMES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-UDPLIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-TYPEDEFLIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-PROGRAMLIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-PACKAGELIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-MODULELIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-INTERFACELIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-CONFIGLIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-CLASSLIST-ZOMBIES)) (13 1 (:REWRITE VL::VL-DESIGN-FIX-WHEN-VL-DESIGN-P)) (5 1 (:REWRITE VL::VL-DESIGN-P-WHEN-VL-MAYBE-DESIGN-P)) (5 1 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-UDPS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-TYPEDEFS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-PROGRAMS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-PACKAGES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-MODULES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-INTERFACES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-CONFIGS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-CLASSES)) (3 3 (:TYPE-PRESCRIPTION VL::VL-DESIGN-P)) (2 2 (:TYPE-PRESCRIPTION VL::VL-MAYBE-DESIGN-P)) (2 1 (:REWRITE VL::VL-MAYBE-DESIGN-P-WHEN-VL-DESIGN-P)) (2 1 (:REWRITE SET::DOUBLE-CONTAINMENT)) (1 1 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (1 1 (:META CANCEL_TIMES-EQUAL-CORRECT)) (1 1 (:META CANCEL_PLUS-EQUAL-CORRECT)) ) (VL::VL-DESIGN-FILTER-ZOMBIES-VL-DESIGN-EQUIV-CONGRUENCE-ON-GOOD) (VL::VL-DESIGN-FILTER-ZOMBIES-OF-VL-DESIGN-FIX-BAD (504 72 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (448 16 (:REWRITE APPEND-WHEN-NOT-CONSP)) (144 144 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (128 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (72 72 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (72 72 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (71 3 (:REWRITE VL::VL-KEEP-UDPS-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-TYPEDEFS-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-PROGRAMS-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-PACKAGES-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-MODULES-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-INTERFACES-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-CONFIGS-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-CLASSES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-UDPS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-TYPEDEFS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-PROGRAMS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-PACKAGES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-MODULES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-INTERFACES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-CONFIGS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-CLASSES-WHEN-ATOM)) (64 64 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (64 32 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (32 32 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (32 32 (:TYPE-PRESCRIPTION TRUE-LISTP)) (32 32 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (32 32 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (32 32 (:REWRITE CONSP-BY-LEN)) (21 3 (:REWRITE VL::VL-KEEP-UDPS-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-TYPEDEFS-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-PROGRAMS-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-PACKAGES-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-MODULES-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-INTERFACES-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-CONFIGS-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-CLASSES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-UDPS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-TYPEDEFS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-PROGRAMS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-PACKAGES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-MODULES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-INTERFACES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-CONFIGS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-CLASSES-WHEN-ATOM-OF-NAMES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-UDPLIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-TYPEDEFLIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-PROGRAMLIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-PACKAGELIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-MODULELIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-INTERFACELIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-CONFIGLIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-CLASSLIST-ZOMBIES)) (13 1 (:REWRITE VL::VL-DESIGN-FIX-WHEN-VL-DESIGN-P)) (5 1 (:REWRITE VL::VL-DESIGN-P-WHEN-VL-MAYBE-DESIGN-P)) (5 1 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-UDPS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-TYPEDEFS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-PROGRAMS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-PACKAGES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-MODULES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-INTERFACES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-CONFIGS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-CLASSES)) (3 3 (:TYPE-PRESCRIPTION VL::VL-DESIGN-P)) (2 2 (:TYPE-PRESCRIPTION VL::VL-MAYBE-DESIGN-P)) (2 1 (:REWRITE VL::VL-MAYBE-DESIGN-P-WHEN-VL-DESIGN-P)) (2 1 (:REWRITE SET::DOUBLE-CONTAINMENT)) (1 1 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (1 1 (:META CANCEL_TIMES-EQUAL-CORRECT)) (1 1 (:META CANCEL_PLUS-EQUAL-CORRECT)) ) (VL::VL-DESIGN-FILTER-ZOMBIES-VL-DESIGN-EQUIV-CONGRUENCE-ON-BAD) (VL::VL-DESIGN-FILTER-ZOMBIES-OF-SYMBOL-LIST-FIX-SUPPRESS-FATALS (508 74 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (448 16 (:REWRITE APPEND-WHEN-NOT-CONSP)) (148 148 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (136 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (85 1 (:REWRITE SYMBOL-LIST-FIX-WHEN-SYMBOL-LISTP)) (74 74 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (74 74 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (71 3 (:REWRITE VL::VL-KEEP-UDPS-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-TYPEDEFS-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-PROGRAMS-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-PACKAGES-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-MODULES-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-INTERFACES-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-CONFIGS-WHEN-ATOM)) (71 3 (:REWRITE VL::VL-KEEP-CLASSES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-UDPS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-TYPEDEFS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-PROGRAMS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-PACKAGES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-MODULES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-INTERFACES-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-CONFIGS-WHEN-ATOM)) (70 2 (:REWRITE VL::VL-DELETE-CLASSES-WHEN-ATOM)) (68 68 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (68 34 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (34 34 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (34 34 (:TYPE-PRESCRIPTION TRUE-LISTP)) (34 34 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (34 34 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (34 34 (:REWRITE CONSP-BY-LEN)) (21 3 (:REWRITE VL::VL-KEEP-UDPS-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-TYPEDEFS-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-PROGRAMS-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-PACKAGES-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-MODULES-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-INTERFACES-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-CONFIGS-WHEN-ATOM-OF-NAMES)) (21 3 (:REWRITE VL::VL-KEEP-CLASSES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-UDPS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-TYPEDEFS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-PROGRAMS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-PACKAGES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-MODULES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-INTERFACES-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-CONFIGS-WHEN-ATOM-OF-NAMES)) (20 2 (:REWRITE VL::VL-DELETE-CLASSES-WHEN-ATOM-OF-NAMES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-UDPLIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-TYPEDEFLIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-PROGRAMLIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-PACKAGELIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-MODULELIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-INTERFACELIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-CONFIGLIST-ZOMBIES)) (16 16 (:TYPE-PRESCRIPTION VL::VL-CLASSLIST-ZOMBIES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-UDPS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-TYPEDEFS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-PROGRAMS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-PACKAGES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-MODULES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-INTERFACES)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-CONFIGS)) (4 4 (:TYPE-PRESCRIPTION VL::VL-KEEP-CLASSES)) (2 2 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::VL-DESIGN-FILTER-ZOMBIES-SYMBOL-LIST-EQUIV-CONGRUENCE-ON-SUPPRESS-FATALS) (VL::VL-DESIGN-PROPAGATE-ERRORS (42 10 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (16 8 (:REWRITE SET::DOUBLE-CONTAINMENT)) (8 8 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (8 8 (:META CANCEL_TIMES-EQUAL-CORRECT)) (8 8 (:META CANCEL_PLUS-EQUAL-CORRECT)) (8 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (4 4 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (4 4 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (4 2 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (4 2 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (2 2 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (2 2 (:TYPE-PRESCRIPTION TRUE-LISTP)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE SUBSETP-TRANS2)) (2 2 (:REWRITE SUBSETP-TRANS)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (2 2 (:REWRITE CONSP-BY-LEN)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (1 1 (:REWRITE-QUOTED-CONSTANT VL::VL-REPORTCARD-FIX-UNDER-VL-REPORTCARD-EQUIV)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::VL-DESIGN-P-OF-VL-DESIGN-PROPAGATE-ERRORS.GOOD-- (26 2 (:REWRITE VL::VL-DESIGN-FIX-WHEN-VL-DESIGN-P)) (19 4 (:REWRITE VL::VL-DESIGN-P-WHEN-VL-MAYBE-DESIGN-P)) (16 4 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (10 3 (:REWRITE VL::VL-MAYBE-DESIGN-P-WHEN-VL-DESIGN-P)) (7 7 (:TYPE-PRESCRIPTION VL::VL-MAYBE-DESIGN-P)) (6 3 (:REWRITE SET::DOUBLE-CONTAINMENT)) (3 3 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (3 3 (:META CANCEL_TIMES-EQUAL-CORRECT)) (3 3 (:META CANCEL_PLUS-EQUAL-CORRECT)) (1 1 (:REWRITE-QUOTED-CONSTANT VL::VL-REPORTCARD-FIX-UNDER-VL-REPORTCARD-EQUIV)) ) (VL::VL-DESIGN-P-OF-VL-DESIGN-PROPAGATE-ERRORS.BAD++ (26 2 (:REWRITE VL::VL-DESIGN-FIX-WHEN-VL-DESIGN-P)) (19 4 (:REWRITE VL::VL-DESIGN-P-WHEN-VL-MAYBE-DESIGN-P)) (16 4 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (10 3 (:REWRITE VL::VL-MAYBE-DESIGN-P-WHEN-VL-DESIGN-P)) (7 7 (:TYPE-PRESCRIPTION VL::VL-MAYBE-DESIGN-P)) (6 3 (:REWRITE SET::DOUBLE-CONTAINMENT)) (3 3 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (3 3 (:META CANCEL_TIMES-EQUAL-CORRECT)) (3 3 (:META CANCEL_PLUS-EQUAL-CORRECT)) (1 1 (:REWRITE-QUOTED-CONSTANT VL::VL-REPORTCARD-FIX-UNDER-VL-REPORTCARD-EQUIV)) ) (VL::VL-DESIGN-PROPAGATE-ERRORS-OF-VL-DESIGN-FIX-GOOD (50 5 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (26 5 (:REWRITE VL::VL-DESIGN-P-WHEN-VL-MAYBE-DESIGN-P)) (11 5 (:REWRITE VL::VL-MAYBE-DESIGN-P-WHEN-VL-DESIGN-P)) (10 10 (:TYPE-PRESCRIPTION VL::VL-MAYBE-DESIGN-P)) (8 4 (:REWRITE SET::DOUBLE-CONTAINMENT)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:META CANCEL_TIMES-EQUAL-CORRECT)) (4 4 (:META CANCEL_PLUS-EQUAL-CORRECT)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-SCOPEINFO-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-PACKAGE-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-MODULE-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-INTERFACE-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-GENBLOB-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-DESIGN-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-BLOCKSCOPE-P)) (2 2 (:TYPE-PRESCRIPTION VL::VL-SCOPE-P)) (2 2 (:REWRITE-QUOTED-CONSTANT VL::VL-REPORTCARD-FIX-UNDER-VL-REPORTCARD-EQUIV)) (2 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-MAYBE-SCOPE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-SCOPEINFO-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-PACKAGE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-MODULE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-MAYBE-SCOPE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-INTERFACE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-GENBLOB-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-BLOCKSCOPE-P)) (1 1 (:REWRITE VL::TAG-OF-VL-DESIGN-FIX)) ) (VL::VL-DESIGN-PROPAGATE-ERRORS-VL-DESIGN-EQUIV-CONGRUENCE-ON-GOOD) (VL::VL-DESIGN-PROPAGATE-ERRORS-OF-VL-DESIGN-FIX-BAD (50 5 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (26 5 (:REWRITE VL::VL-DESIGN-P-WHEN-VL-MAYBE-DESIGN-P)) (11 5 (:REWRITE VL::VL-MAYBE-DESIGN-P-WHEN-VL-DESIGN-P)) (10 10 (:TYPE-PRESCRIPTION VL::VL-MAYBE-DESIGN-P)) (8 4 (:REWRITE SET::DOUBLE-CONTAINMENT)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:META CANCEL_TIMES-EQUAL-CORRECT)) (4 4 (:META CANCEL_PLUS-EQUAL-CORRECT)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-SCOPEINFO-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-PACKAGE-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-MODULE-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-INTERFACE-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-GENBLOB-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-DESIGN-P)) (3 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-BLOCKSCOPE-P)) (2 2 (:TYPE-PRESCRIPTION VL::VL-SCOPE-P)) (2 2 (:REWRITE-QUOTED-CONSTANT VL::VL-REPORTCARD-FIX-UNDER-VL-REPORTCARD-EQUIV)) (2 1 (:REWRITE VL::VL-SCOPE-P-WHEN-VL-MAYBE-SCOPE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-SCOPEINFO-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-PACKAGE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-MODULE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-MAYBE-SCOPE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-INTERFACE-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-GENBLOB-P)) (1 1 (:TYPE-PRESCRIPTION VL::VL-BLOCKSCOPE-P)) (1 1 (:REWRITE VL::TAG-OF-VL-DESIGN-FIX)) ) (VL::VL-DESIGN-PROPAGATE-ERRORS-VL-DESIGN-EQUIV-CONGRUENCE-ON-BAD) (VL::VL-DESIGN-PROPAGATE-ERRORS-OF-SYMBOL-LIST-FIX-SUPPRESS-FATALS (85 1 (:REWRITE SYMBOL-LIST-FIX-WHEN-SYMBOL-LISTP)) (52 4 (:REWRITE VL::VL-DESIGN-FIX-WHEN-VL-DESIGN-P)) (40 1 (:REWRITE SYMBOL-LISTP-WHEN-BOOLEAN-LISTP)) (35 1 (:REWRITE SYMBOL-LISTP-WHEN-NOT-CONSP)) (35 1 (:REWRITE BOOLEAN-LISTP-WHEN-NOT-CONSP)) (20 4 (:REWRITE VL::VL-DESIGN-P-WHEN-VL-MAYBE-DESIGN-P)) (20 4 (:REWRITE VL::VL-DESIGN-P-BY-TAG-WHEN-VL-SCOPE-P)) (12 12 (:TYPE-PRESCRIPTION VL::VL-DESIGN-P)) (8 8 (:TYPE-PRESCRIPTION VL::VL-MAYBE-DESIGN-P)) (8 4 (:REWRITE VL::VL-MAYBE-DESIGN-P-WHEN-VL-DESIGN-P)) (8 4 (:REWRITE SET::DOUBLE-CONTAINMENT)) (8 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 1)) (4 4 (:TYPE-PRESCRIPTION SET::SETP-TYPE)) (4 4 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-CONS-LISTP)) (4 4 (:REWRITE CONSP-WHEN-MEMBER-EQUAL-OF-ATOM-LISTP)) (4 4 (:META CANCEL_TIMES-EQUAL-CORRECT)) (4 4 (:META CANCEL_PLUS-EQUAL-CORRECT)) (4 2 (:TYPE-PRESCRIPTION TRUE-LISTP-MEMBER-EQUAL)) (4 2 (:REWRITE CONSP-UNDER-IFF-WHEN-TRUE-LISTP)) (2 2 (:TYPE-PRESCRIPTION VL::VL-ELABSCOPES-INIT)) (2 2 (:TYPE-PRESCRIPTION TRUE-LISTP)) (2 2 (:TYPE-PRESCRIPTION SYMBOL-LISTP)) (2 2 (:TYPE-PRESCRIPTION BOOLEAN-LISTP)) (2 2 (:REWRITE-QUOTED-CONSTANT VL::VL-REPORTCARD-FIX-UNDER-VL-REPORTCARD-EQUIV)) (2 2 (:REWRITE VL::VL-ELABSCOPES-P-OF-VL-ELABSCOPES-INIT)) (2 2 (:REWRITE SYMBOL-LISTP-WHEN-SUBSETP-EQUAL)) (2 2 (:REWRITE VL::SYMBOL-LISTP-WHEN-MEMBER-EQUAL-OF-SYMBOL-LIST-LISTP)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEITEM-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-SCOPEDEF-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-REPORTCARD-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-IMPORTRESULT-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-GENCASELIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABTRAVERSAL-STACK-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPES-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-ELABSCOPE-ALIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-DEPGRAPH-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-COMMENTMAP-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-CASELIST-P . 1)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 2)) (2 2 (:REWRITE VL::CONSP-WHEN-MEMBER-EQUAL-OF-VL-BLAMEALIST-P . 1)) (2 2 (:REWRITE CONSP-BY-LEN)) (2 2 (:REWRITE BOOLEAN-LISTP-WHEN-SUBSETP-EQUAL)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 2)) (1 1 (:REWRITE VL::SYMBOL-LISTP-WHEN-SUBSETP-EQUAL-OF-SYMBOL-LISTP . 1)) (1 1 (:REWRITE FN-CHECK-DEF-FORMALS)) ) (VL::VL-DESIGN-PROPAGATE-ERRORS-SYMBOL-LIST-EQUIV-CONGRUENCE-ON-SUPPRESS-FATALS)
// THIS FILE IS COPIED FROM FBTHRIFT, DO NOT MODIFY ITS CONTENTS DIRECTLY // generated-by : fbcode/common/hs/thrift/exactprint/tests/sync-fbthrift-tests.sh // source: thrift/compiler/test/fixtures/* // @generated /* * Copyright (c) Facebook, Inc. and its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ service NullService {}
# # Annotation Whitespace # # Problem: An annotation has leading or trailing whitespace, usually a single space. # # Solution: Re-format the annotation to remove additional whitespace. PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?entity ?property ?value WHERE { {?property a owl:AnnotationProperty . ?entity ?property ?value . FILTER STRENDS(str(?value), " ")} UNION {?property a owl:AnnotationProperty . ?entity ?property ?value . FILTER STRSTARTS(str(?value), " ")} } ORDER BY ?entity
/* +----------------------------------------------------------------------+ | HipHop for PHP | +----------------------------------------------------------------------+ | Copyright (c) 2010-2015 Facebook, Inc. (http://www.facebook.com) | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ */ #ifndef HPHP_DWARF_H_ #define HPHP_DWARF_H_ #include <string> #include <folly/Optional.h> #include "hphp/runtime/vm/jit/translator.h" #include <libdwarf.h> #include <dwarf.h> #include <vector> namespace HPHP { namespace Debug { using jit::TCA; typedef enum { RAX, RDX, RCX, RBX, RSI, RDI, RBP, RSP, R8, R9, R10, R11, R12, R13, R14, R15, RIP } x86_64_regnum_t; const int DWARF_CODE_ALIGN = 1; const int DWARF_DATA_ALIGN = 8; #ifdef LIBDWARF_CONST_NAME #define LIBDWARF_CALLBACK_NAME_TYPE const char* #else #define LIBDWARF_CALLBACK_NAME_TYPE char* #endif extern int g_dwarfCallback( LIBDWARF_CALLBACK_NAME_TYPE name, int size, Dwarf_Unsigned type, Dwarf_Unsigned flags, Dwarf_Unsigned link, Dwarf_Unsigned info, Dwarf_Unsigned *sect_name_index, Dwarf_Ptr handle, int *error); class TCRange { TCA m_start, m_end; bool m_isAcold; void V() const { assert(isValid()); } public: TCRange() : m_start(nullptr), m_end(nullptr), m_isAcold(false) { assert(!isValid()); } TCRange(const TCA start, const TCA end, bool isAcold) : m_start(start), m_end(end), m_isAcold(isAcold) { V(); } TCRange& operator=(const TCRange& r) { m_start = r.m_start; m_end = r.m_end; m_isAcold = r.m_isAcold; V(); return *this; } bool isValid() const { assert(bool(m_start) == bool(m_end)); assert(!m_start || m_start < m_end); assert(!m_start || (m_end - m_start) < (1ll << 32)); return bool(m_start); } bool isAcold() const { return m_isAcold; } TCA begin() const { V(); return m_start; } TCA end() const { V(); return m_end; }; uint32_t size() const { V(); return m_end - m_start; } void extend(const TCA newEnd) { assert(newEnd >= m_end); m_end = newEnd; V(); } }; struct DwarfBuf { std::vector<uint8_t> m_buf; void byte(uint8_t c); void byte(int off, uint8_t c); void word(uint16_t w); void word(int off, uint16_t w); void dword(uint32_t d); void dword(int off, uint32_t d); void qword(uint64_t q); void clear(); int size(); uint8_t *getBuf(); void print(); void dwarf_op_const4s(int x); void dwarf_op_deref_size(uint8_t size); void dwarf_sfp_expr(int offset, int scale); void dwarf_cfa_sfp(uint8_t reg, int offset, int scale); void dwarf_cfa_unwind_rsp(); void dwarf_cfa_set_loc(uint64_t addr); void dwarf_cfa_same_value(uint8_t reg); void dwarf_cfa_def_cfa(uint8_t reg, uint8_t offset); void dwarf_cfa_offset(uint8_t reg, uint8_t offset); void dwarf_cfa_offset_extended_sf(uint8_t reg, int8_t offset); }; struct LineEntry { TCRange range; int lineNumber; LineEntry(TCRange r, int l) : range(r), lineNumber(l) {} }; struct DwarfChunk; struct FunctionInfo { std::string name; const char *file; TCRange range; bool exit; bool m_perfSynced; std::vector<LineEntry> m_lineTable; std::vector<std::string> m_namedLocals; DwarfChunk* m_chunk; FunctionInfo() : m_chunk(nullptr) { } FunctionInfo(TCRange r, bool ex) : range(r), exit(ex), m_perfSynced(false), m_namedLocals(std::vector<std::string>()), m_chunk(nullptr) {} void setPerfSynced() { m_perfSynced = true; } void clearPerfSynced() { m_perfSynced = false; } bool perfSynced() const { return m_perfSynced; } }; struct DwarfChunk { DwarfBuf m_buf; std::vector<FunctionInfo *> m_functions; char *m_symfile; bool m_synced; DwarfChunk() : m_symfile(nullptr), m_synced(false) {} void setSynced() { m_synced = true; } void clearSynced() { m_synced = false; } bool isSynced() const { return m_synced; } }; typedef std::map<TCA, FunctionInfo* > FuncDB; typedef std::vector<FunctionInfo* > FuncPtrDB; struct DwarfInfo { typedef std::map<TCA, jit::TransRec> TransDB; std::vector<DwarfChunk*> m_dwarfChunks; /* Array of chunks indexed by lg(#functions in chunk) + 1. * i.e. m_dwarfChunk[i] = pointer to chunk with * 2^(i-1) * RuntimeOption::EvalGdbSyncChunks functions, or NULL if * there is no such chunk. The first chunk m_dwarfChunks[0] is special in * that it can be partially full. All other chunks are completely full. */ FuncDB m_functions; const char *lookupFile(const Unit *unit); void addLineEntries(TCRange range, const Unit *unit, const Op* instr, FunctionInfo* f); void transferFuncs(DwarfChunk* from, DwarfChunk* to); void compactChunks(); DwarfChunk* addTracelet(TCRange range, folly::Optional<std::string> name, const Func* func, const Op* instr, bool exit, bool inPrologue); void syncChunks(); }; } } #endif
------------------------------------------------------------ -- Parameters ------------------------------------------------------------ set externalDisplay to "Acer CB281HK" set landscapeKey to "Standard" set portraitKey to "90" ------------------------------------------------------------ -- Toggle landscape/portrait view of external display ------------------------------------------------------------ tell application "System Preferences" reveal anchor "displaysDisplayTab" of pane id "com.apple.preference.displays" end tell tell application "System Events" tell process "System Preferences" set frontmost to true tell window externalDisplay set _rotation to pop up button "Rotation:" of tab group 1 if value of _rotation contains landscapeKey then log "Currently in landscape display." click _rotation keystroke portraitKey & return set _confirmed to false repeat until _confirmed try tell sheet 1 click button "Confirm" set _confirmed to true end tell on error _errorMessage log _errorMessage delay 1 end try end repeat else log "Currently in portrait display." click _rotation keystroke landscapeKey & return end if end tell end tell end tell quit application "System Preferences"
\begin{code} {-# OPTIONS --cubical --safe #-} module Data.List.Base where open import Prelude private module DisplayDefinition where \end{code} %<*list-def> \begin{code} data List (A : Type a) : Type a where [] : List A _∷_ : A → List A → List A \end{code} %</list-def> \begin{code} open import Agda.Builtin.List using (List; _∷_; []) public open import Data.Fin foldr : (A → B → B) → B → List A → B foldr f b [] = b foldr f b (x ∷ xs) = f x (foldr f b xs) infixr 5 _++_ _++_ : List A → List A → List A xs ++ ys = foldr _∷_ ys xs length : List A → ℕ length = foldr (const suc) zero infixl 6 _!_ _!_ : (xs : List A) → Fin (length xs) → A (x ∷ xs) ! f0 = x (x ∷ xs) ! fs i = xs ! i tabulate : ∀ n → (Fin n → A) → List A tabulate zero f = [] tabulate (suc n) f = f f0 ∷ tabulate n (f ∘ fs) concat : List (List A) → List A concat = foldr _++_ [] concatMap : (A → List B) → List A → List B concatMap f = foldr (λ x ys → f x ++ ys) [] map : (A → B) → List A → List B map f = foldr (λ x xs → f x ∷ xs) [] take : ℕ → List A → List A take zero _ = [] take (suc n) [] = [] take (suc n) (x ∷ xs) = x ∷ take n xs \end{code}
#lang scribble/doc @(require "mz.rkt") @title[#:style 'toc]{Macros} @guideintro["macros"]{Macros} See @secref["syntax-model"] for general information on how programs are parsed. In particular, the subsection @secref["expand-steps"] describes how parsing triggers macros, and @secref["transformer-model"] describes how macro transformers are called. @local-table-of-contents[] @include-section["stx-patterns.scrbl"] @include-section["stx-ops.scrbl"] @include-section["stx-comp.scrbl"] @include-section["stx-trans.scrbl"] @include-section["stx-param.scrbl"] @include-section["splicing.scrbl"] @include-section["stx-props.scrbl"] @include-section["stx-taints.scrbl"] @include-section["stx-expand.scrbl"] @include-section["include.scrbl"] @include-section["syntax-util.scrbl"]
docker rmi -f yadamu/base:latest set DOCKER_BUILDKIT=1 docker build -t yadamu/base:latest . -f docker/dockerfiles/yadamu
<?php namespace App\Traits; use Phalcon\Mvc\Model\Query\BuilderInterface; use Phalcon\Mvc\ModelInterface; use Phalcon\Paginator\Adapter\AdapterInterface; use Phalcon\Paginator\PaginatorFactory; use Phalcon\Paginator\RepositoryInterface; trait PaginatorTrait { /** * @param $source * @param array $parameters * @param int $page * @param int $pageSize * @return AdapterInterface */ public function paginator($source, array $parameters, int $page, int $pageSize): AdapterInterface { $adapter = ''; if ($source instanceof ModelInterface) { $adapter = 'model'; $options['model'] = get_class($source); $options['parameters'] = $parameters; } elseif ($source instanceof BuilderInterface) { $adapter = 'queryBuilder'; $options['builder'] = $source; $options['columns'] = $parameters; } elseif (is_array($source)) { $adapter = 'nativeArray'; $options['data'] = $source; } $options['page'] = $page; $options['limit'] = $pageSize; return (new PaginatorFactory())->newInstance($adapter, $options); } /** * @param $variable * @param int $page * @param int $pageSize * @param callable|null $formatter * @return array */ public function paginate($variable, int $page = 1, int $pageSize = 10, ?callable $formatter = null): array { $paginator = $this->paginator($variable, [], $page, $pageSize); return $this->paginateFormat($paginator->paginate(), $formatter); } /** * @param RepositoryInterface $paginate * @param callable|null $formatter * @return array */ private function paginateFormat(RepositoryInterface $paginate, ?callable $formatter = null): array { if (is_callable($formatter)) { $result = call_user_func($formatter, $paginate); } else { $result = [ 'items' => $paginate->getItems(), 'count' => $paginate->getTotalItems(), ]; } return $result; } }
/* * Pipeline API * * Pipeline is a feature rich application platform, built for containers on top of Kubernetes to automate the DevOps experience, continuous application development and the lifecycle of deployments. * * API version: latest * Contact: info@banzaicloud.com * Generated by: OpenAPI Generator (https://openapi-generator.tech) */ package pipeline import ( "time" ) type Process struct { Id string `json:"id,omitempty"` ParentId string `json:"parentId,omitempty"` OrgId int32 `json:"orgId,omitempty"` Type string `json:"type,omitempty"` Log string `json:"log,omitempty"` ResourceId string `json:"resourceId,omitempty"` ResourceType string `json:"resourceType,omitempty"` Status ProcessStatus `json:"status,omitempty"` StartedAt time.Time `json:"startedAt,omitempty"` FinishedAt *time.Time `json:"finishedAt,omitempty"` Events []ProcessEvent `json:"events,omitempty"` }
# encoding: UTF-8 Gem::Specification.new do |s| s.platform = Gem::Platform::RUBY s.name = 'spree_instock_alert' s.version = '2.3.3' s.summary = 'Adds table spree_instoc_subscribers to the database' s.description = 'Adds table spree_instoc_subscribers to the database' s.required_ruby_version = '>= 1.9.3' s.author = 'Arkhitech' #s.email = '' s.homepage = 'http://arkhitech.com/' #s.files = `git ls-files`.split("\n") #s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.require_path = 'lib' s.requirements << 'none' s.add_dependency 'spree_core', '~> 2.3.3' s.add_development_dependency 'capybara', '~> 2.4' s.add_development_dependency 'coffee-rails' s.add_development_dependency 'database_cleaner' s.add_development_dependency 'factory_girl', '~> 4.4' s.add_development_dependency 'ffaker' s.add_development_dependency 'rspec-rails', '~> 3.1' s.add_development_dependency 'sass-rails', '~> 4.0.2' s.add_development_dependency 'selenium-webdriver' s.add_development_dependency 'simplecov' s.add_development_dependency 'sqlite3' end
<?xml version="1.0"?> <!-- This file is generated from param.xweb --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <!-- ******************************************************************** $Id: param.xweb 9130 2011-10-11 08:05:37Z dpawson $ ******************************************************************** This file is part of the DocBook XSL Stylesheets distribution. See ../README or http://docbook.sf.net/release/xsl/current/ for copyright and other information. ******************************************************************** --> <xsl:param name="autolayout-file">autolayout.xml</xsl:param> <xsl:param name="header.hr" select="1"/> <xsl:param name="footer.hr" select="1"/> <xsl:param name="feedback.href"/> <xsl:param name="feedback.with.ids" select="0"/> <xsl:param name="feedback.link.text">Feedback</xsl:param> <xsl:param name="filename-prefix"/> <xsl:param name="output-root">.</xsl:param> <xsl:param name="dry-run" select="0"/> <xsl:param name="rebuild-all" select="0"/> <xsl:param name="nav.table.summary">Navigation</xsl:param> <xsl:param name="navtocwidth">220</xsl:param> <xsl:param name="navbodywidth"/> <xsl:param name="textbgcolor">white</xsl:param> <xsl:param name="navbgcolor">#4080FF</xsl:param> <xsl:param name="toc.spacer.graphic" select="1"/> <xsl:param name="toc.spacer.text">   </xsl:param> <xsl:param name="toc.spacer.image">graphics/blank.gif</xsl:param> <xsl:param name="toc.pointer.graphic" select="1"/> <xsl:param name="toc.pointer.text"> &gt; </xsl:param> <xsl:param name="toc.pointer.image">graphics/arrow.gif</xsl:param> <xsl:param name="toc.blank.graphic" select="1"/> <xsl:param name="toc.blank.text">   </xsl:param> <xsl:param name="toc.blank.image">graphics/blank.gif</xsl:param> <xsl:param name="suppress.homepage.title" select="1"/> <xsl:attribute-set name="body.attributes"> <xsl:attribute name="bgcolor">white</xsl:attribute> <xsl:attribute name="text">black</xsl:attribute> <xsl:attribute name="link">#0000FF</xsl:attribute> <xsl:attribute name="vlink">#840084</xsl:attribute> <xsl:attribute name="alink">#0000FF</xsl:attribute> </xsl:attribute-set> <xsl:param name="sequential.links" select="0"/> <xsl:param name="currentpage.marker">@</xsl:param> <xsl:param name="banner.before.navigation" select="1"/> <xsl:param name="table.spacer.image">graphics/spacer.gif</xsl:param> </xsl:stylesheet>
/*------------------------------------------------------------------------*\ ** Program : check-connection-to-sparql-service.sas ** Purpose : Basic test of SAS-SPARQLwrapper using a query and local server ** Endpoint: localhost ** Notes: SAS must be invoked with unicode support ** Status: ok \*------------------------------------------------------------------------*/ options mprint nocenter; %include "../../SAS-SPARQLwrapper/sparqlquery.sas"; /* %let sparqlendpoint=http://192.168.1.115:3030/arm/query; */ %let sparqlendpoint=http://localhost:3030/arm/query; %sparqlquery( endpoint=&sparqlendpoint., query=%str(select * where {?s ?p ?o} limit 20 ), sparqlquerysxlemap=%str(../../SAS-SPARQLwrapper/sparqlquery-sxlemap.map) ); proc print data=queryresult width=min; run;
-- Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. -- -------------------------------------------------------------------------------- -- Tool Version: Vivado v.2017.4 (lin64) Build 2086221 Fri Dec 15 20:54:30 MST 2017 -- Date : Fri Feb 21 17:58:58 2020 -- Host : ssg0 running 64-bit Arch Linux -- Command : write_vhdl -force -mode synth_stub -rename_top decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix -prefix -- decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix_ system_birdwtch_iface_0_0_stub.vhdl -- Design : system_birdwtch_iface_0_0 -- Purpose : Stub declaration of top-level module interface -- Device : xc7z007sclg400-1 -- -------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix is Port ( int_mb : out STD_LOGIC; s00_axi_aclk : in STD_LOGIC; s00_axi_aresetn : in STD_LOGIC; s00_axi_awaddr : in STD_LOGIC_VECTOR ( 3 downto 0 ); s00_axi_awprot : in STD_LOGIC_VECTOR ( 2 downto 0 ); s00_axi_awvalid : in STD_LOGIC; s00_axi_awready : out STD_LOGIC; s00_axi_wdata : in STD_LOGIC_VECTOR ( 31 downto 0 ); s00_axi_wstrb : in STD_LOGIC_VECTOR ( 3 downto 0 ); s00_axi_wvalid : in STD_LOGIC; s00_axi_wready : out STD_LOGIC; s00_axi_bresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); s00_axi_bvalid : out STD_LOGIC; s00_axi_bready : in STD_LOGIC; s00_axi_araddr : in STD_LOGIC_VECTOR ( 3 downto 0 ); s00_axi_arprot : in STD_LOGIC_VECTOR ( 2 downto 0 ); s00_axi_arvalid : in STD_LOGIC; s00_axi_arready : out STD_LOGIC; s00_axi_rdata : out STD_LOGIC_VECTOR ( 31 downto 0 ); s00_axi_rresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); s00_axi_rvalid : out STD_LOGIC; s00_axi_rready : in STD_LOGIC; s01_axi_aclk : in STD_LOGIC; s01_axi_aresetn : in STD_LOGIC; s01_axi_awaddr : in STD_LOGIC_VECTOR ( 3 downto 0 ); s01_axi_awprot : in STD_LOGIC_VECTOR ( 2 downto 0 ); s01_axi_awvalid : in STD_LOGIC; s01_axi_awready : out STD_LOGIC; s01_axi_wdata : in STD_LOGIC_VECTOR ( 31 downto 0 ); s01_axi_wstrb : in STD_LOGIC_VECTOR ( 3 downto 0 ); s01_axi_wvalid : in STD_LOGIC; s01_axi_wready : out STD_LOGIC; s01_axi_bresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); s01_axi_bvalid : out STD_LOGIC; s01_axi_bready : in STD_LOGIC; s01_axi_araddr : in STD_LOGIC_VECTOR ( 3 downto 0 ); s01_axi_arprot : in STD_LOGIC_VECTOR ( 2 downto 0 ); s01_axi_arvalid : in STD_LOGIC; s01_axi_arready : out STD_LOGIC; s01_axi_rdata : out STD_LOGIC_VECTOR ( 31 downto 0 ); s01_axi_rresp : out STD_LOGIC_VECTOR ( 1 downto 0 ); s01_axi_rvalid : out STD_LOGIC; s01_axi_rready : in STD_LOGIC ); end decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix; architecture stub of decalper_eb_ot_sdeen_pot_pi_dehcac_xnilix is attribute syn_black_box : boolean; attribute black_box_pad_pin : string; attribute syn_black_box of stub : architecture is true; attribute black_box_pad_pin of stub : architecture is "int_mb,s00_axi_aclk,s00_axi_aresetn,s00_axi_awaddr[3:0],s00_axi_awprot[2:0],s00_axi_awvalid,s00_axi_awready,s00_axi_wdata[31:0],s00_axi_wstrb[3:0],s00_axi_wvalid,s00_axi_wready,s00_axi_bresp[1:0],s00_axi_bvalid,s00_axi_bready,s00_axi_araddr[3:0],s00_axi_arprot[2:0],s00_axi_arvalid,s00_axi_arready,s00_axi_rdata[31:0],s00_axi_rresp[1:0],s00_axi_rvalid,s00_axi_rready,s01_axi_aclk,s01_axi_aresetn,s01_axi_awaddr[3:0],s01_axi_awprot[2:0],s01_axi_awvalid,s01_axi_awready,s01_axi_wdata[31:0],s01_axi_wstrb[3:0],s01_axi_wvalid,s01_axi_wready,s01_axi_bresp[1:0],s01_axi_bvalid,s01_axi_bready,s01_axi_araddr[3:0],s01_axi_arprot[2:0],s01_axi_arvalid,s01_axi_arready,s01_axi_rdata[31:0],s01_axi_rresp[1:0],s01_axi_rvalid,s01_axi_rready"; attribute X_CORE_INFO : string; attribute X_CORE_INFO of stub : architecture is "birdwtch_iface_v1_0,Vivado 2017.4"; begin end;
- How many accidents were there in Madrid in 2013? prefix mv: <http://example.org/myVocabulary#> prefix qb: <http://purl.org/linked-data/cube#> SELECT SUM(?x) WHERE { ?obs a qb:Observation; mv:numberOfAccidents ?x. } - Give me the number of accidents in Usera for each type of accident prefix mv: <http://example.org/myVocabulary#> prefix qb: <http://purl.org/linked-data/cube#> SELECT ?x ?type WHERE { ?obs a qb:Observation; mv:numberOfAccidents ?x; mv:relatedDistrict "USERA" ; mv:hasAccidentType ?type. } - Give me the number of multiple collisions for each district prefix mv: <http://example.org/myVocabulary#> prefix qb: <http://purl.org/linked-data/cube#> SELECT ?x ?dis WHERE { ?obs a qb:Observation; mv:numberOfAccidents ?x; mv:relatedDistrict ?dis ; mv:hasAccidentType mv:MultipleCollision. } - Which is the district were the number of bicycle falls was higher in 2013? prefix mv: <http://example.org/myVocabulary#> prefix qb: <http://purl.org/linked-data/cube#> SELECT MAX(?x) ?dis WHERE { ?obs a qb:Observation; mv:numberOfAccidents ?x; mv:relatedDistrict ?dis; mv:hasAccidentType mv:BicycleFall. } ORDER BY ?x - Give me the districts with more than 500 accidents in 2013 prefix mv: <http://example.org/myVocabulary#> prefix qb: <http://purl.org/linked-data/cube#> SELECT ?x ?dis WHERE { ?obs a qb:Observation; mv:numberOfAccidents ?x; mv:relatedDistrict ?dis. FILTER(?x>500)}
module DeprecatedFunction2 where foo :: Int foo = 23 {-# DEPRECATED foo "use bar instead" #-}
class NatsServer < Formula desc "Lightweight cloud messaging system" homepage "https://nats.io" url "https://github.com/nats-io/nats-server/archive/v2.1.9.tar.gz" sha256 "643b3688063f9a626798ccdac419fc6dd814219113559c9995556cbd12d28049" license "Apache-2.0" head "https://github.com/nats-io/nats-server.git" bottle do rebuild 1 sha256 cellar: :any_skip_relocation, arm64_big_sur: "8bb757471782b9f7bbfe028dc8039c35f0e07182e74dae9ca9c7b923b9ba7568" sha256 cellar: :any_skip_relocation, big_sur: "48e5ce9c0aac69f8ca0f27db652227900df5c772472bb391b8702457ecfe0caf" sha256 cellar: :any_skip_relocation, catalina: "42c81987bbcffffee20ece6c4534a77612496c2b082723681f4468eab7a0fd61" sha256 cellar: :any_skip_relocation, mojave: "c5e96271283bee73b7ff9cfa68f6d1f566765bf2e41374c67ae66c51e502e2d8" sha256 cellar: :any_skip_relocation, high_sierra: "e4d101f7ea1263dabd9a95a3b90925082a003274d1a45c2168b4bf7bbb8a1fa1" sha256 cellar: :any_skip_relocation, x86_64_linux: "e0aa4ce5f0ebe157e26d8b832fc4ac057c9c144b6f279a44b49a6e082e3e6680" end depends_on "go" => :build def install system "go", "build", "-ldflags", "-s -w", *std_go_args end plist_options manual: "nats-server" def plist <<~EOS <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>#{plist_name}</string> <key>ProgramArguments</key> <array> <string>#{opt_bin}/nats-server</string> </array> <key>RunAtLoad</key> <true/> </dict> </plist> EOS end test do port = free_port fork do exec bin/"nats-server", "--port=#{port}", "--pid=#{testpath}/pid", "--log=#{testpath}/log" end sleep 3 assert_match version.to_s, shell_output("curl localhost:#{port}") assert_predicate testpath/"log", :exist? end end
/- Copyright (c) 2020 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ import Lean.Meta.AppBuilder import Lean.Meta.CongrTheorems import Lean.Meta.Tactic.Simp.SimpTheorems import Lean.Meta.Tactic.Simp.SimpCongrTheorems namespace Lean.Meta namespace Simp structure Result where expr : Expr proof? : Option Expr := none -- If none, proof is assumed to be `refl` deriving Inhabited abbrev Cache := ExprMap Result abbrev CongrCache := ExprMap (Option CongrTheorem) structure Context where config : Config := {} simpTheorems : SimpTheorems := {} congrTheorems : SimpCongrTheorems := {} parent? : Option Expr := none dischargeDepth : Nat := 0 deriving Inhabited def Context.mkDefault : MetaM Context := return { config := {}, simpTheorems := (← getSimpTheorems), congrTheorems := (← getSimpCongrTheorems) } structure State where cache : Cache := {} congrCache : CongrCache := {} numSteps : Nat := 0 abbrev SimpM := ReaderT Context $ StateRefT State MetaM instance : MonadBacktrack SavedState SimpM where saveState := Meta.saveState restoreState s := s.restore inductive Step where | visit : Result → Step | done : Result → Step deriving Inhabited def Step.result : Step → Result | Step.visit r => r | Step.done r => r def Step.updateResult : Step → Result → Step | Step.visit _, r => Step.visit r | Step.done _, r => Step.done r structure Methods where pre : Expr → SimpM Step := fun e => return Step.visit { expr := e } post : Expr → SimpM Step := fun e => return Step.done { expr := e } discharge? : Expr → SimpM (Option Expr) := fun e => return none deriving Inhabited /- Internal monad -/ abbrev M := ReaderT Methods SimpM def pre (e : Expr) : M Step := do (← read).pre e def post (e : Expr) : M Step := do (← read).post e def discharge? (e : Expr) : M (Option Expr) := do (← read).discharge? e def getConfig : M Config := return (← readThe Context).config @[inline] def withParent (parent : Expr) (f : M α) : M α := withTheReader Context (fun ctx => { ctx with parent? := parent }) f def getSimpTheorems : M SimpTheorems := return (← readThe Context).simpTheorems def getSimpCongrTheorems : M SimpCongrTheorems := return (← readThe Context).congrTheorems @[inline] def withSimpTheorems (s : SimpTheorems) (x : M α) : M α := do let cacheSaved := (← get).cache modify fun s => { s with cache := {} } try withTheReader Context (fun ctx => { ctx with simpTheorems := s }) x finally modify fun s => { s with cache := cacheSaved } end Simp export Simp (SimpM) end Lean.Meta
Shader "FoxShaders/fox3DDF_TempolaryAlbedoView_LNM_VR" { Properties { _Base_Tex_SRGB("Base_Tex_SRGB", 2D) = "white" {} _Cutoff ("Alpha cutoff", Range(0,1)) = 0.5 } SubShader { Tags {"Queue"="AlphaTest" "IgnoreProjector"="True" "RenderType"="TransparentCutout"} LOD 400 CGPROGRAM #pragma surface surf BlinnPhong alphatest:_Cutoff #pragma target 3.0 sampler2D _Base_Tex_SRGB; struct Input { float2 uv_Base_Tex_SRGB; }; void surf (Input IN, inout SurfaceOutput o) { fixed4 tex = tex2D(_Base_Tex_SRGB, IN.uv_Base_Tex_SRGB); o.Albedo = tex.rgb; o.Gloss = tex.a; o.Alpha = tex.a; } ENDCG } FallBack "Standard" }
array_1 = [1 0 3; 5 3 8; 2 4 6]; array_2 = [2 3 7; 9 1 5; 8 8 3]; array_mul = array_1.*array_2 array_power = array_1.^array_2 array_div = array_1./array_2 array_rdiv = array_1.//array_2
<# Stored scriptblocks are available in [PsfValidateScript()] attributes. This makes it easier to centrally provide the same scriptblock multiple times, without having to maintain it in separate locations. It also prevents lengthy validation scriptblocks from making your parameter block hard to read. Set-PSFScriptblock -Name 'Krbtgt.ScriptBlockName' -Scriptblock { } #>
# This shell script executes Slurm jobs for running predictions # with adaptive threshold convolutional neural network # on BirdVox-70k, full audio. # Trial ID: 1. # Augmentation kind: none. sbatch 044_aug-none_test-unit01_trial-1_predict-unit07.sbatch sbatch 044_aug-none_test-unit01_trial-1_predict-unit10.sbatch sbatch 044_aug-none_test-unit01_trial-1_predict-unit01.sbatch sbatch 044_aug-none_test-unit02_trial-1_predict-unit10.sbatch sbatch 044_aug-none_test-unit02_trial-1_predict-unit01.sbatch sbatch 044_aug-none_test-unit02_trial-1_predict-unit02.sbatch sbatch 044_aug-none_test-unit03_trial-1_predict-unit01.sbatch sbatch 044_aug-none_test-unit03_trial-1_predict-unit02.sbatch sbatch 044_aug-none_test-unit03_trial-1_predict-unit03.sbatch sbatch 044_aug-none_test-unit05_trial-1_predict-unit02.sbatch sbatch 044_aug-none_test-unit05_trial-1_predict-unit03.sbatch sbatch 044_aug-none_test-unit05_trial-1_predict-unit05.sbatch sbatch 044_aug-none_test-unit07_trial-1_predict-unit03.sbatch sbatch 044_aug-none_test-unit07_trial-1_predict-unit05.sbatch sbatch 044_aug-none_test-unit07_trial-1_predict-unit07.sbatch sbatch 044_aug-none_test-unit10_trial-1_predict-unit05.sbatch sbatch 044_aug-none_test-unit10_trial-1_predict-unit07.sbatch sbatch 044_aug-none_test-unit10_trial-1_predict-unit10.sbatch
module Comment where import Date type alias Comment = { email: String , body: String , createdAt: Date.Date }
@article{LyuEtAl:MIA20, author = {P. Porwal and S. Pachade and M. Kokare and et al.}, bib2html_dl_pdf = {http://www.ece.ualberta.ca/~lcheng5/papers/LyuEtAl_MIA20.pdf}, bib2html_pubtype = {Journal}, journal = {Medical Image Analysis (MIA)}, title = {IDRiD: Diabetic Retinopathy - Segmentation and Grading Challenge}, volume = {59}, year = {2020} }
package uk.gov.justice.digital.hmpps.assessrisksandneeds.services import com.fasterxml.jackson.annotation.JsonFormat import com.fasterxml.jackson.annotation.JsonProperty import uk.gov.justice.digital.hmpps.assessrisksandneeds.api.model.EmploymentType import uk.gov.justice.digital.hmpps.assessrisksandneeds.api.model.Gender import uk.gov.justice.digital.hmpps.assessrisksandneeds.api.model.ProblemsLevel import java.time.LocalDate import java.time.LocalDateTime class SourceAnswers( val gender: Gender, val dob: LocalDate, @JsonProperty("assessment_date") val assessmentDate: LocalDateTime, @JsonProperty("offence_code") val offenceCode: String, @JsonProperty("offence_subcode") val offenceSubcode: String, @JsonFormat(pattern = "yyyy-MM-dd") @JsonProperty("date_first_sanction") val dateOfFirstSanction: LocalDate, @JsonProperty("total_sanctions") val totalOffences: Int, @JsonProperty("total_violent_offences") val totalViolentOffences: Int, @JsonFormat(pattern = "yyyy-MM-dd") @JsonProperty("date_current_conviction") val dateOfCurrentConviction: LocalDate, @JsonProperty("any_sexual_offences") val hasAnySexualOffences: Boolean, @JsonProperty("current_sexual_offence") val isCurrentSexualOffence: Boolean?, @JsonProperty("current_offence_victim_stranger") val isCurrentOffenceVictimStranger: Boolean?, @JsonFormat(pattern = "yyyy-MM-dd") @JsonProperty("most_recent_sexual_offence_date") val mostRecentSexualOffenceDate: LocalDate?, @JsonProperty("total_sexual_offences_adult") val totalSexualOffencesInvolvingAnAdult: Int?, @JsonProperty("total_sexual_offences_child") val totalSexualOffencesInvolvingAChild: Int?, @JsonProperty("total_sexual_offences_child_image") val totalSexualOffencesInvolvingChildImages: Int?, @JsonProperty("total_non_contact_sexual_offences") val totalNonContactSexualOffences: Int?, @JsonFormat(pattern = "yyyy-MM-dd") @JsonProperty("earliest_release_date") val earliestReleaseDate: LocalDate, @JsonProperty("completed_interview") val hasCompletedInterview: Boolean, @JsonProperty("suitable_accommodation") val hasSuitableAccommodation: ProblemsLevel?, @JsonProperty("unemployed_on_release") val employment: EmploymentType?, @JsonProperty("current_relationship_with_partner") val currentRelationshipWithPartner: ProblemsLevel?, @JsonProperty("evidence_domestic_violence") val evidenceOfDomesticViolence: Boolean?, @JsonProperty("perpetrator_domestic_violence") val isPerpetrator: Boolean?, @JsonProperty("use_of_alcohol") val alcoholUseIssues: ProblemsLevel?, @JsonProperty("binge_drinking") val bingeDrinkingIssues: ProblemsLevel?, @JsonProperty("impulsivity_issues") val impulsivityIssues: ProblemsLevel?, @JsonProperty("temper_control_issues") val temperControlIssues: ProblemsLevel?, @JsonProperty("pro_criminal_attitudes") val proCriminalAttitudes: ProblemsLevel?, @JsonProperty("previous_murder_attempt") val murderAttempt: Boolean?, @JsonProperty("previous_wounding") val wounding: Boolean?, @JsonProperty("previous_aggravated_burglary") val aggravatedBurglary: Boolean?, @JsonProperty("previous_arson") val arson: Boolean?, @JsonProperty("previous_criminal_damage") val criminalDamage: Boolean?, @JsonProperty("previous_kidnapping") val kidnapping: Boolean?, @JsonProperty("previous_possession_firearm") val firearmPossession: Boolean?, @JsonProperty("previous_robbery") val robbery: Boolean?, @JsonProperty("previous_offence_weapon") val offencesWithWeapon: Boolean?, @JsonProperty("current_possession_firearm") val currentFirearmPossession: Boolean?, @JsonProperty("current_offence_weapon") val currentOffencesWithWeapon: Boolean? )
PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX obo: <http://purl.obolibrary.org/obo/> SELECT distinct ?entity ?type ?label ?def ?parent ?parent_label WHERE { ?entity rdf:type ?type . OPTIONAL { ?entity rdfs:label ?slabel. } OPTIONAL { ?entity obo:IAO_0000115 ?definition . } OPTIONAL { ?entity rdfs:subClassOf ?parent . ?parent rdfs:label ?plabel . } FILTER (!isBlank(?entity)) BIND (str(?slabel) AS ?label) . BIND (str(?definition) AS ?def) . BIND (str(?plabel) AS ?parent_label) } order by ?ASC(?type) ASC (?entity)
import React, { useState } from 'react'; import './ToolbarComponent.css'; import AppBar from '@material-ui/core/AppBar'; import Toolbar from '@material-ui/core/Toolbar'; import Mic from '@material-ui/icons/Mic'; import MicOff from '@material-ui/icons/MicOff'; import Videocam from '@material-ui/icons/Videocam'; import VideocamOff from '@material-ui/icons/VideocamOff'; import Fullscreen from '@material-ui/icons/Fullscreen'; import FullscreenExit from '@material-ui/icons/FullscreenExit'; import ScreenShare from '@material-ui/icons/ScreenShare'; import StopScreenShare from '@material-ui/icons/StopScreenShare'; import Tooltip from '@material-ui/core/Tooltip'; import PowerSettingsNew from '@material-ui/icons/PowerSettingsNew'; import QuestionAnswer from '@material-ui/icons/QuestionAnswer'; import IconButton from '@material-ui/core/IconButton'; import PropTypes from 'prop-types'; const openViduLogo = require('../../assets/images/openvidu_logo.png'); function ToolbarComponent(props) { const { sessionId, showNotification, controls, logo, title, hideLogo, hideTitle, user: localUser, micStatusChanged: micStatusChangedCallback, camStatusChanged: camStatusChangedCallback, screenShare: screenShareCallback, stopScreenShare: stopScreenShareCallback, toggleFullscreen: toggleFullscreenCallback, leaveSession: leaveSessionCallback, toggleChat: toggleChatCallback, } = props; const [fullscreen, setFullscreen] = useState(false); const micStatusChanged = function () { micStatusChangedCallback(); }; const camStatusChanged = function () { camStatusChangedCallback(); }; const screenShare = function () { screenShareCallback(); }; const stopScreenShare = function () { stopScreenShareCallback(); }; const toggleFullscreen = function () { setFullscreen(!fullscreen); toggleFullscreenCallback(); }; const leaveSession = function () { leaveSessionCallback(); }; const toggleChat = function () { toggleChatCallback(); }; return ( <AppBar className="toolbar" id="header"> <Toolbar className="toolbar"> <div id="navSessionInfo"> {!hideLogo && logo} {!hideTitle && (!title ? sessionId && ( <div id="titleContent"> <span id="session-title">{sessionId}</span> </div> ) : null)} </div> <div className="buttonsContent"> {controls.microphone && ( <Tooltip title={ localUser !== undefined && localUser.isAudioActive() ? 'Mute' : 'Unmute' } > <IconButton style={{ color: 'white' }} className="navButton" id="navMicButton" onClick={micStatusChanged} > {localUser !== undefined && localUser.isAudioActive() ? ( <Mic /> ) : ( <MicOff color="secondary" /> )} </IconButton> </Tooltip> )} {controls.camera && ( <Tooltip title={ localUser !== undefined && localUser.isVideoActive() ? 'Close Video' : 'Open Video' } > <IconButton style={{ color: 'white' }} className="navButton" id="navCamButton" onClick={camStatusChanged} > {localUser !== undefined && localUser.isVideoActive() ? ( <Videocam /> ) : ( <VideocamOff color="secondary" /> )} </IconButton> </Tooltip> )} {controls.screenShare && (localUser !== undefined && localUser.isScreenShareActive() ? ( <Tooltip title={'Stop Screen Sharing'}> <IconButton style={{ color: 'white' }} onClick={stopScreenShare} id="navScreenButton" > <StopScreenShare color="secondary" /> </IconButton> </Tooltip> ) : ( <Tooltip title={'Share Screen'}> <IconButton style={{ color: 'white' }} className="navButton" onClick={screenShare} > <ScreenShare /> </IconButton> </Tooltip> ))} {controls.fullscreen && ( <Tooltip title={ localUser !== undefined && fullscreen ? 'Exit Fullscreen' : 'Fullscreen' } > <IconButton style={{ color: 'white' }} className="navButton" onClick={toggleFullscreen} > {localUser !== undefined && fullscreen ? ( <FullscreenExit /> ) : ( <Fullscreen /> )} </IconButton> </Tooltip> )} {controls.leave && ( <Tooltip title={'Leave Session'}> <IconButton color="secondary" className="navButton" onClick={leaveSession} id="navLeaveButton" > <PowerSettingsNew /> </IconButton> </Tooltip> )} {controls.chat && ( <Tooltip title="Chat"> <IconButton style={{ color: 'white' }} onClick={toggleChat} id="navChatButton" > {showNotification && <div id="point" className="" />} <QuestionAnswer /> </IconButton> </Tooltip> )} </div> </Toolbar> </AppBar> ); } ToolbarComponent.propTypes = { sessionId: PropTypes.string.isRequired, user: PropTypes.object, controls: PropTypes.object, hideLogo: PropTypes.bool, hideTitle: PropTypes.bool, logo: PropTypes.oneOfType([ PropTypes.node, PropTypes.element, PropTypes.elementType, ]), title: PropTypes.oneOfType([ PropTypes.node, PropTypes.element, PropTypes.elementType, ]), showNotification: PropTypes.func, micStatusChanged: PropTypes.func, camStatusChanged: PropTypes.func, screenShare: PropTypes.func, stopScreenShare: PropTypes.func, toggleFullscreen: PropTypes.func, leaveSession: PropTypes.func, toggleChat: PropTypes.func, }; ToolbarComponent.defaultProps = { controls: { microphone: true, camera: true, screenShare: true, fullscreen: true, leave: true, chat: true, }, logo: <img id="header_img" alt="OpenVidu Logo" src={openViduLogo} />, hideLogo: false, hideTitle: false, }; export default ToolbarComponent;
package com.ouattararomuald.saviezvousque.db import com.ouattararomuald.saviezvousque.common.Category import com.ouattararomuald.saviezvousque.common.Post import com.ouattararomuald.saviezvousque.db.daos.CategoryDao import com.ouattararomuald.saviezvousque.db.daos.PostDao import io.reactivex.Completable import io.reactivex.internal.operators.completable.CompletableFromAction import kotlinx.coroutines.flow.Flow import javax.inject.Inject class FeedRepository @Inject constructor( private val categoryDao: CategoryDao, private val postDao: PostDao ) { fun categoriesFlow(): Flow<List<CategoryIdAndName>> = categoryDao.getCategories() fun postsFlow(): Flow<List<PostWithCategory>> = postDao.getPosts() fun getPostsByCategory(categoryId: Int): List<PostWithCategory> = postDao.getPostsByCategory(categoryId) /** * Saves the given [Post]s. * * @param posts List of [Post]s to save. * @param categoryId ID of the category associated with the given [Post]s. * * @return a [Completable]. */ fun savePosts(posts: List<Post>, categoryId: Int): Completable { return CompletableFromAction { val postsWithCategory = posts.map { it.copy(categoryId = categoryId) } postDao.createPosts(postsWithCategory) } } /** * Saves the given [Category](ies). * * @param categories List of [Category](ies) to save. * * @return a [Completable]. */ fun saveCategories(categories: List<Category>): Completable { return CompletableFromAction { categoryDao.deleteCategories() categoryDao.createCategories(categories) } } }
local util = require("util") local nodemap = require("util.nodemap") local function get_test_backend_single() return { name = "access-router-production-web-80", endpoints = { { address = "10.184.7.40", port = "8080", maxFails = 0, failTimeout = 0 } } } end local function get_test_backend_multi() return { name = "access-router-production-web-80", endpoints = { { address = "10.184.7.40", port = "8080", maxFails = 0, failTimeout = 0 }, { address = "10.184.7.41", port = "8080", maxFails = 0, failTimeout = 0 } } } end local function get_test_nodes_ignore(endpoint) local ignore = {} ignore[endpoint] = true return ignore end describe("Node Map", function() local test_backend_single = get_test_backend_single() local test_backend_multi = get_test_backend_multi() local test_salt = test_backend_single.name local test_nodes_single = util.get_nodes(test_backend_single.endpoints) local test_nodes_multi = util.get_nodes(test_backend_multi.endpoints) local test_endpoint1 = test_backend_multi.endpoints[1].address .. ":" .. test_backend_multi.endpoints[1].port local test_endpoint2 = test_backend_multi.endpoints[2].address .. ":" .. test_backend_multi.endpoints[2].port local test_nodes_ignore = get_test_nodes_ignore(test_endpoint1) describe("new()", function() context("when no salt has been provided", function() it("random() returns an unsalted key", function() local nodemap_instance = nodemap:new(test_nodes_single, nil) local expected_endpoint = test_endpoint1 local expected_hash_key = ngx.md5(expected_endpoint) local actual_endpoint local actual_hash_key actual_endpoint, actual_hash_key = nodemap_instance:random() assert.equal(actual_endpoint, expected_endpoint) assert.equal(expected_hash_key, actual_hash_key) end) end) context("when a salt has been provided", function() it("random() returns a salted key", function() local nodemap_instance = nodemap:new(test_nodes_single, test_salt) local expected_endpoint = test_endpoint1 local expected_hash_key = ngx.md5(test_salt .. expected_endpoint) local actual_endpoint local actual_hash_key actual_endpoint, actual_hash_key = nodemap_instance:random() assert.equal(actual_endpoint, expected_endpoint) assert.equal(expected_hash_key, actual_hash_key) end) end) context("when no nodes have been provided", function() it("random() returns nil", function() local nodemap_instance = nodemap:new({}, test_salt) local actual_endpoint local actual_hash_key actual_endpoint, actual_hash_key = nodemap_instance:random() assert.equal(actual_endpoint, nil) assert.equal(expected_hash_key, nil) end) end) end) describe("find()", function() before_each(function() package.loaded["util.nodemap"] = nil nodemap = require("util.nodemap") end) context("when a hash key is valid", function() it("find() returns the correct endpoint", function() local nodemap_instance = nodemap:new(test_nodes_single, test_salt) local test_hash_key local expected_endpoint local actual_endpoint expected_endpoint, test_hash_key = nodemap_instance:random() assert.not_equal(expected_endpoint, nil) assert.not_equal(test_hash_key, nil) actual_endpoint = nodemap_instance:find(test_hash_key) assert.equal(actual_endpoint, expected_endpoint) end) end) context("when a hash key is invalid", function() it("find() returns nil", function() local nodemap_instance = nodemap:new(test_nodes_single, test_salt) local test_hash_key = "invalid or nonexistent hash key" local actual_endpoint actual_endpoint = nodemap_instance:find(test_hash_key) assert.equal(actual_endpoint, nil) end) end) end) describe("random_except()", function() before_each(function() package.loaded["util.nodemap"] = nil nodemap = require("util.nodemap") end) context("when nothing has been excluded", function() it("random_except() returns the correct endpoint", function() local nodemap_instance = nodemap:new(test_nodes_single, test_salt) local expected_endpoint = test_endpoint1 local test_hash_key local actual_endpoint actual_endpoint, test_hash_key = nodemap_instance:random_except({}) assert.equal(expected_endpoint, actual_endpoint) assert.not_equal(test_hash_key, nil) end) end) context("when everything has been excluded", function() it("random_except() returns nil", function() local nodemap_instance = nodemap:new(test_nodes_single, test_salt) local actual_hash_key local actual_endpoint actual_endpoint, actual_hash_key = nodemap_instance:random_except(test_nodes_ignore) assert.equal(actual_endpoint, nil) assert.equal(actual_hash_key, nil) end) end) context("when an endpoint has been excluded", function() it("random_except() does not return it", function() local nodemap_instance = nodemap:new(test_nodes_multi, test_salt) local expected_endpoint = test_endpoint2 local actual_endpoint local test_hash_key actual_endpoint, test_hash_key = nodemap_instance:random_except(test_nodes_ignore) assert.equal(actual_endpoint, expected_endpoint) assert.not_equal(test_hash_key, nil) end) end) end) end)
<?php declare (strict_types=1); namespace RectorPrefix20211020\Doctrine\Inflector\Rules\Spanish; use RectorPrefix20211020\Doctrine\Inflector\Rules\Patterns; use RectorPrefix20211020\Doctrine\Inflector\Rules\Ruleset; use RectorPrefix20211020\Doctrine\Inflector\Rules\Substitutions; use RectorPrefix20211020\Doctrine\Inflector\Rules\Transformations; final class Rules { public static function getSingularRuleset() : \RectorPrefix20211020\Doctrine\Inflector\Rules\Ruleset { return new \RectorPrefix20211020\Doctrine\Inflector\Rules\Ruleset(new \RectorPrefix20211020\Doctrine\Inflector\Rules\Transformations(...\RectorPrefix20211020\Doctrine\Inflector\Rules\Spanish\Inflectible::getSingular()), new \RectorPrefix20211020\Doctrine\Inflector\Rules\Patterns(...\RectorPrefix20211020\Doctrine\Inflector\Rules\Spanish\Uninflected::getSingular()), (new \RectorPrefix20211020\Doctrine\Inflector\Rules\Substitutions(...\RectorPrefix20211020\Doctrine\Inflector\Rules\Spanish\Inflectible::getIrregular()))->getFlippedSubstitutions()); } public static function getPluralRuleset() : \RectorPrefix20211020\Doctrine\Inflector\Rules\Ruleset { return new \RectorPrefix20211020\Doctrine\Inflector\Rules\Ruleset(new \RectorPrefix20211020\Doctrine\Inflector\Rules\Transformations(...\RectorPrefix20211020\Doctrine\Inflector\Rules\Spanish\Inflectible::getPlural()), new \RectorPrefix20211020\Doctrine\Inflector\Rules\Patterns(...\RectorPrefix20211020\Doctrine\Inflector\Rules\Spanish\Uninflected::getPlural()), new \RectorPrefix20211020\Doctrine\Inflector\Rules\Substitutions(...\RectorPrefix20211020\Doctrine\Inflector\Rules\Spanish\Inflectible::getIrregular())); } }