function Togl(btn,state,newhash) {var show=(state.style.display=="none") ? 1 : 0;state.style.display=show ? "block" : state.style.display="none";t=btn.innerHTML;t1=t.replace(show ? "Show" : "Hide", show ? "Hide" : "Show");t=t1.replace(show ? "▽" : "△", show ? "△" : "▽");btn.innerHTML=t;if (show) {window.location.replace = "#"+newhash;}return false;}function ShowHide(btn,state,newhash,wanted) {if (state.style.display!=wanted) {return Togl(btn,state,newhash);}return false;}function ExpCon(wanted) {var btns = document.querySelectorAll("button.b0, button.b1");for (var i = 0 ; i < btns.length; i++) {oc = btns[i].getAttribute("onclick");if (!oc.includes("Togl")) continue;arr = oc.substring(12, oc.length - 1).split(",");div = document.getElementById(arr[1]);ShowHide (btns[i],div,arr[2],wanted);}return false;}function clk(element) {document.getElementById("img01").src = element.src;document.getElementById("modal01").style.display = "flex";}document.write('')