Fellow stata users, I am having trouble getting state to display the base category of the interaction between two variables that are both three-item categorical variables. Ideally, I should be seeing 9 points of interaction but I'm only seeing 6. And even then the base category is not displayed. When I output the results in an estout table, the base category is shown but not the base I was expecting. See below:

Code:
* Example generated by -dataex-. For more info, type help dataex
clear
input byte(Accountability_over_Speed Approval_of_Protest Religiousity_3)
 2  0  2
 2  1  2
 0  0  2
 2  1  0
.b  0  1
 0  0  2
 2  1  2
 1  0  1
 2  0  2
 0  0  2
 2  1  2
 2 .b  2
 2  1  2
 0  0  2
 2  0  2
 0  0  2
 0  1  2
 0  1  1
 0  0  2
 0  0  2
 0  1  2
 0  0  2
.b  0  2
 0  1  1
 2  1  2
 2  1  2
 2  0  2
 2  0  0
 0  0  2
 0  0  2
 0  0  0
 2  1  2
 2  0  2
 2 .b  1
 0  1  1
 2  0 .a
 2  0  2
 0  0  2
 0  0  1
 0  1  1
 2  0  1
 2  1  2
 0  1  2
 2  0  1
 2  1  1
 2  0  2
 0  1  2
 0  0  1
 2  1  1
 2  0  2
 2 .b  1
 0  0  2
 0  0  1
 0  0  1
.b  0  1
 0  1  1
 0  0  2
 0  0  2
 2  0  1
 0  0  2
 2  0  1
 0  1  2
 0  1  1
.b  0  1
 2  1  2
 1  0  2
 2  0  1
 0  0  2
 0  1  0
 2  1  1
 0 .b .b
 0  0  2
 0  0  2
 0  0  1
 2  0  1
 2  1  2
 2  0  2
 0  1  2
.b  0  2
 2  1  2
 0  1  1
 0  0  2
 1 .b .b
 0  0  1
 2  0  1
 2  1  2
 0  0  0
 0  0  1
.b .b  2
 2  1  2
 2  0  1
 0  1  2
 0  0  2
 2  1  2
 2  0  1
 0  0  2
 2  0  2
 0  0  2
.b  0  2
 0  1  2
end
label values Accountability_over_Speed Accountability_over_Speed
label def Accountability_over_Speed 0 "Speed", modify
label def Accountability_over_Speed 1 "Unsure", modify
label def Accountability_over_Speed 2 "Accountability", modify
label values Approval_of_Protest Approval_of_Protest
label def Approval_of_Protest 0 "No", modify
label def Approval_of_Protest 1 "Yes", modify
label values Religiousity_3 Religiousity_3
label def Religiousity_3 0 "Not Religious", modify
label def Religiousity_3 1 "Somewhat Religious", modify
label def Religiousity_3 2 "Highly Religious", modify
logit Approval_of_Protest i.Accountability_over_Speed##i.Religiousity_3, base
Results attached