```mermaid flowchart TD %% Nodes subgraph Evidence A("Is the evidence relevant? (Part 3.1 Evidence Act") B("Does the hearsay rule apply? (Part 3.2, 3.4 or 3.8)") C("Does the opinion rule apply (Part 3.3, 3.4 or 3.8)") D("Does the evidence contravene the rule about evidence of judgments and convictions? (Part 3.5)") E("Does the tendency rule or coincidence rule apply (Part 3.6 or 3.8)") F("Does the credibility rule apply? (Part 3.7 or 3.8)") G("Does the evidence contravene the rules about identification evidence? (Part 3.9)") H("Does a privelege apply? (Part 3.10)") I("Should a discretion to exclude the evidence be exercides or must it be excluded? (Part 3.11)") end subgraph Inadmissible K("INADMISSIBLE") end subgraph admissible J("ADMISSIBLE") end %% Edge connections between nodes A -- YES --> B -- YES --> C -- YES --> D -- YES --> E -- YES --> F -- YES --> G -- YES --> H -- YES --> I -- YES --> admissible A & B & C & D & E & F & G & H & I -- NO --> Inadmissible ```