better date parser
better date parser


Former-commit-id: 38a9a7c779e6b5552cfe6a66b7689a306e94d9e2

--- a/.gitmodules
+++ b/.gitmodules
@@ -4,16 +4,31 @@
 [submodule "couchdb/settee"]
 	path = couchdb/settee
 	url = https://github.com/inadarei/settee.git
-[submodule "lib/springy"]
-	path = lib/springy
-	url = https://github.com/dhotson/springy.git
 [submodule "lib/php-diff"]
 	path = lib/php-diff
 	url = https://github.com/chrisboulton/php-diff.git
 [submodule "lib/Requests"]
 	path = lib/Requests
 	url = https://github.com/rmccue/Requests.git
-[submodule "javascripts/flotr2"]
-	path = javascripts/flotr2
+[submodule "js/flotr2"]
+	path = js/flotr2
 	url = https://github.com/HumbleSoftware/Flotr2.git
+[submodule "lib/phpquery"]
+	path = lib/phpquery
+	url = https://github.com/TobiaszCudnik/phpquery.git
+[submodule "js/sigma"]
+	path = js/sigma
+	url = https://github.com/jacomyal/sigma.js.git
+[submodule "js/bubbletree"]
+	path = js/bubbletree
+	url = https://github.com/okfn/bubbletree.git
+[submodule "lib/querypath"]
+	path = lib/querypath
+	url = https://github.com/technosophos/querypath.git
+[submodule "lib/amon-php"]
+	path = lib/amon-php
+	url = https://github.com/martinrusev/amon-php.git
+[submodule "documents/lib/parsedatetime"]
+	path = documents/lib/parsedatetime
+	url = git://github.com/bear/parsedatetime.git
 

file:a/about.php -> file:b/about.php
--- a/about.php
+++ b/about.php
@@ -1,17 +1,19 @@
 <?php
 include_once('include/common.inc.php');
-include_header();
+include_header('About');
 ?>
 <div class="foundation-header">
     <h1><a href="about.php">About/FAQ</a></h1>
     <h4 class="subheader">Lorem ipsum.</h4>
 </div>
 <h2> What is this? </h2>
-Disclosr is a project to monitor Australian Federal Government agencies 
-compliance with their <a href="http://www.oaic.gov.au/publications/other_operational/foi_policy_frequently_asked_questions.html#_Toc291837571">"proactive disclosure requirements"</a>.
-OGRE (Open Government Realization Evaluation) is a ranking of compliance with these requirements.
-Prometheus is the agent which polls agency websites to assess compliance.
-
+Disclo.gs is a project to monitor Australian Federal Government agencies 
+compliance with their <a href="http://www.oaic.gov.au/publications/other_operational/foi_policy_frequently_asked_questions.html#_Toc291837571">"proactive disclosure requirements" to make a transparency league table as suggested by gov2 taskforce http://gov2.net.au/blog/2009/09/19/a-league-ladder-of-psi-openness/</a>.
+<h2> Attributions </h2>
+National Archives of Australia, Australian Governments’ Interactive Functions Thesaurus, 2nd edition, September 2005, published at http://www.naa.gov.au/recordkeeping/thesaurus/index.htm <br/>
+data.gov.au http://data.gov.au/dataset/directory-gov-au-full-data-export/ <br/>
+directory.gov.au <br/>
+australia.gov.au http://australia.gov.au/about/copyright <br/>
 <h2> Open everything </h2>
 All documents released CC-BY 3 AU
 Open source git @

file:b/admin/agls.php (new)
--- /dev/null
+++ b/admin/agls.php
@@ -1,1 +1,35 @@
+<?php
 
+include_once('include/common.inc.php');
+include_header('Webserver and Accessiblity');
+
+echo "<table>
+    <tr><th>name</th><th>function</th></tr>";
+$db = $server->get_db('disclosr-agencies');
+try {
+     $agencies = $db->get_view("app", "byCanonicalName", null, true)->rows;
+
+
+    if ($agencies) {
+        foreach ($agencies as $row) {
+
+            echo "<tr><td>" . $row->value->name . "</td>";
+            if (isset($row->value->metaTags)) {
+                if (is_array($row->value->metaTags)) {
+                        $tags =$row->value->metaTags;
+                } else {
+			$tags = object_to_array($row->value->metaTags);
+                }
+                if (isset($tags['AGLS.Function'])) {
+                    echo "<td>" . $tags['AGLS.Function'] . "</td>";
+                }
+            }
+            echo "</tr>";
+        }
+    }
+} catch (SetteeRestClientException $e) {
+    setteErrorHandler($e);
+}
+include_footer();
+?>
+

--- /dev/null
+++ b/admin/conflicts.php
@@ -1,1 +1,48 @@
+<?php
 
+include_once('../include/common.inc.php');
+include_header('Fix Conflicts');
+                require_once '../lib/php-diff/lib/Diff.php';
+                require_once '../lib/php-diff/lib/Diff/Renderer/Html/SideBySide.php';
+
+$db = $server->get_db('disclosr-agencies');
+
+try {
+    $rows = $db->get_view("app", "getConflicts", null, true)->rows;
+    //print_r($rows);
+    foreach ($rows as $row) {
+echo "<h2>".$row->id."</h2>";
+$request = Requests::get($serverAddr."disclosr-agencies/".$row->id);
+$origSort = object_to_array(json_decode($request->body));
+ksort($origSort);
+    $origDoc = explode(",",json_encode($origSort));
+	foreach($row->value as $conflictRev) {
+$conflictURL = $serverAddr."disclosr-agencies/".$row->id."?rev=".$conflictRev;
+$request = Requests::get($conflictURL);
+$conflictSort = object_to_array(json_decode($request->body));
+ksort($conflictSort);
+    $conflictDoc = explode(",",json_encode($conflictSort));
+echo "curl -X DELETE ".$conflictURL."<br>".PHP_EOL;
+                // Options for generating the diff
+                $options = array(
+                        //'ignoreWhitespace' => true,
+                        //'ignoreCase' => true,
+                );
+
+                // Initialize the diff class
+                $diff = new Diff($conflictDoc, $origDoc, $options);
+
+                // Generate a side by side diff
+                $renderer = new Diff_Renderer_Html_SideBySide;
+                echo $diff->Render($renderer);
+}
+die();
+	
+    }
+} catch (SetteeRestClientException $e) {
+    setteErrorHandler($e);
+}
+
+include_footer();
+?>
+

--- /dev/null
+++ b/admin/directory.gexf.php
@@ -1,1 +1,59 @@
+<?php
 
+$nodes = Array(Array("id" => "gov", "label" => "Federal Government"));
+$edges = Array();
+
+function addEdge($source, $target) {
+    global $edges;
+    $edges[] = Array("id" => md5($source . $target), "source" => $source, "target" => $target);
+}
+
+function addNode($id, $label, $pid) {
+    global $nodes;
+    $nodes[] = Array("id" => $id, "label" => $label , "pid" => $pid);
+}
+
+function addChildren($parentID, $parentXML) {
+    foreach ($parentXML as $childXML) {
+
+        if ($childXML->getName() == "organization" || $childXML->getName() == "organizationalUnit" || $childXML->getName() == "person") {
+            $attr = $childXML->attributes();
+            $id = $attr['UUID'];
+            if ($childXML->getName() == "organization" || $childXML->getName() == "organizationalUnit") {
+
+                $label = $childXML->name;
+            } else if ($childXML->getName() == "person") {
+                  $label = $childXML->fullName;
+            }
+            addNode($id, $label, $parentID);
+            addEdge($id, $parentID);
+            addChildren($id, $childXML);
+        }
+    }
+}
+
+if (file_exists('directoryexport.xml')) {
+    $xml = simplexml_load_file('directoryexport.xml');
+
+    addChildren("gov", $xml);
+} else {
+    exit('Failed to open directoryexport.xml');
+}
+  header('Content-Type: application/gexf+xml');
+echo '<?xml version="1.0" encoding="UTF-8"?>
+<gexf xmlns="http://www.gexf.net/1.2draft" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.gexf.net/1.2draft http://www.gexf.net/1.2draft/gexf.xsd" version="1.2">
+    <graph mode="static" defaultedgetype="directed">
+        <nodes>';
+foreach ($nodes as $node) {
+    echo '          <node id="' . $node['id'] . '" label="' . htmlentities($node['label'],ENT_XML1) . '" ' . (isset($node['pid']) ? 'pid="' . $node['pid'] . '"' : "") . ' />';
+}
+echo '</nodes>
+        <edges>';
+foreach ($edges as $edge) {
+    echo '            <edge id="' . $edge['id'] . '" source="' . $edge['source'] . '" target="' . $edge['target'] . '" />';
+}
+echo '</edges>
+    </graph>
+</gexf>';
+?>
+

--- /dev/null
+++ b/admin/directoryexport.xml

--- /dev/null
+++ b/admin/exportEmployees.csv.php
@@ -1,1 +1,86 @@
+<?php
 
+include_once("../include/common.inc.php");
+
+$format = "csv";
+//$format = "json";
+if (isset($_REQUEST['format']))  $format = $_REQUEST['format'];
+setlocale(LC_CTYPE, 'C');
+if ($format == "csv") {
+    $headers = Array("name");
+} else {
+    $headers = Array();
+}
+
+$db = $server->get_db('disclosr-agencies');
+try {
+    $rows = $db->get_view("app", "all", null, true)->rows;
+
+    $dataValues = Array();
+    foreach ($rows as $row) {
+        if (isset($row->value->statistics->employees)) {
+
+            $headers = array_unique(array_merge($headers, array_keys(object_to_array($row->value->statistics->employees))));
+
+        }
+    }
+} catch (SetteeRestClientException $e) {
+    setteErrorHandler($e);
+}
+
+$fp = fopen('php://output', 'w');
+if ($fp && $db) {
+    if ($format == "csv") {
+        header('Content-Type: text/csv; charset=utf-8');
+        header('Content-Disposition: attachment; filename="export.employeestats.' . date("c") . '.csv"');
+    }
+    header('Pragma: no-cache');
+    header('Expires: 0');
+    if ($format == "csv") {
+        fputcsv($fp, $headers);
+    } else if ($format == "json") {
+        echo '{
+            "labels" : ["' . implode('","', $headers) . '"],'.PHP_EOL;
+    }
+    try {
+        $agencies = $db->get_view("app", "all", null, true)->rows;
+        //print_r($agencies);
+        $first = true;
+        if ($format == "json") {
+        echo '"data" : ['.PHP_EOL;
+        
+        }
+        foreach ($agencies as $agency) {
+
+            if (isset($agency->value->statistics->employees)) {
+                $row = Array();
+                $agencyEmployeesArray = object_to_array($agency->value->statistics->employees);
+                foreach ($headers as $i => $fieldName) {
+                    if (isset($agencyEmployeesArray[$fieldName])) {
+                        $row[] = '['.$i.','.$agencyEmployeesArray[$fieldName]["value"].']';
+                    } else {
+                        $row[] = '['.$i.',0]';
+                    }
+                }
+                if ($format == "csv") {
+                    fputcsv($fp, array_values($row));
+                } else if ($format == "json") {
+                    if (!$first) echo ",";
+                    echo '{"data" : [' . implode(",", array_values($row)) . '], "label": "'.$agency->value->name.'", "lines" : { "show" : true }, "points" : { "show" : true }}'.PHP_EOL;
+                    $first = false;
+                }
+            }
+        }
+        if ($format == "json") {
+        echo ']
+            }'.PHP_EOL;
+        
+        }
+    } catch (SetteeRestClientException $e) {
+        setteErrorHandler($e);
+    }
+
+    die;
+}
+?>
+

--- /dev/null
+++ b/admin/exportScore.csv.php
@@ -1,1 +1,73 @@
+<?php
 
+include_once("../include/common.inc.php");
+
+$db = $server->get_db('disclosr-agencies');
+$format = "csv";
+//$format = "json";
+if (isset($_REQUEST['format']))  $format = $_REQUEST['format'];
+
+setlocale(LC_CTYPE, 'C');
+
+    $headers = Array();
+
+$fp = fopen('php://output', 'w');
+if ($fp && $db) {
+    if ($format == "csv") {
+        header('Content-Type: text/csv; charset=utf-8');
+        header('Content-Disposition: attachment; filename="export.score.' . date("c") . '.csv"');
+    }
+    header('Pragma: no-cache');
+    header('Expires: 0');
+    
+    try {
+        $agencies = $db->get_view("score", "score", null, true)->rows;
+        //print_r($agencies);
+        $first = true;
+        if ($format == "json") {
+        echo '"data" : ['.PHP_EOL;
+        
+        }
+        foreach ($agencies as $agency) {
+            $agencyArray = object_to_array($agency->value);
+            if ($first) {
+                $headers  = array_keys($agencyArray);
+if ($format == "csv") {
+        fputcsv($fp, $headers);
+    } else if ($format == "json") {
+        echo '{
+            "labels" : ["' . implode('","', $headers) . '"],'.PHP_EOL;
+    }
+            }
+                      $row = Array();
+            
+                foreach ($headers as $i => $fieldName) {
+                    if (isset($agencyArray[$fieldName])) {
+                        $row[] = $agencyArray[$fieldName];
+                    } else {
+                        $row[] = '';
+                    }
+                }
+                if ($format == "csv") {
+                    fputcsv($fp, array_values($row));
+                } else if ($format == "json") {
+                    if (!$first) echo ",";
+                    echo '{"data" : [' . implode(",", array_values($row)) . '], "label": "'.$agency->value->name.'", "lines" : { "show" : true }, "points" : { "show" : true }}'.PHP_EOL;
+                   
+                }
+                 $first = false;
+            }
+        
+        if ($format == "json") {
+        echo ']
+            }'.PHP_EOL;
+        
+        }
+    } catch (SetteeRestClientException $e) {
+        setteErrorHandler($e);
+    }
+
+    die;
+}
+?>
+

--- /dev/null
+++ b/admin/genericAgencyFixer.php
@@ -1,1 +1,44 @@
+<?php
 
+include_once("../include/common.inc.php");
+require($basePath . 'lib/phpquery/phpQuery/phpQuery.php');
+
+setlocale(LC_CTYPE, 'C');
+
+
+$db = $server->get_db('disclosr-agencies');
+
+try {
+    $agencies = $db->get_view("app", "byCanonicalName", null, true)->rows;
+    //print_r($rows);
+    foreach ($agencies as $agency) {
+        //echo $agency->value->name . " ".$agency->value->website."<br />\n";
+         // print_r($agency);
+        //hasRestricitiveLicence"	hasRestrictiveLicense -> has Restrictive Licence
+        // "hasYoutube" -> Tube
+        // "comment" -> "comments"
+        if (!isset($agency->value->metaTags) && isset($agency->value->website)) {
+                echo $agency->value->name . " ".$agency->value->website."<br />\n";
+            $agency->value->metaTags = Array();
+            $request = Requests::get($agency->value->website);
+            $html = phpQuery::newDocumentHTML($request->body);
+            phpQuery::selectDocument($html);
+            foreach (pq('meta')->elements as $meta) {
+                $tagName = $meta->getAttribute('name');;
+                $content = $meta->getAttribute('content');
+                if ($tagName != "") {
+echo "$tagName == $content <br>\n";
+                 $agency->value->metaTags[$tagName] = $content;
+                }
+            }
+            //print_r($agency->value->metaTags);
+            $db->save($agency->value);
+            echo "<hr>";
+            flush();
+        }
+    }
+} catch (SetteeRestClientException $e) {
+    setteErrorHandler($e);
+}
+?>
+

--- a/admin/importAPSCEmployees.php
+++ b/admin/importAPSCEmployees.php
@@ -32,23 +32,35 @@
                 @$sums[$id][$timePeriod] += $data[1];
             } else {
                 echo "<br>ERROR NAME MISSING FROM ID LIST<br><bR>" . PHP_EOL;
-                
+
                 die();
-               
             }
         }
         fclose($handle);
     }
 }
 foreach ($sums as $id => $sum) {
-    echo $id. "<br>" . PHP_EOL;
+    echo $id . "<br>" . PHP_EOL;
     $doc = $db->get($id);
-   // print_r($doc);
-    if (isset($doc->statistics)) $doc->statistics = Array();
+     echo $doc->name . "<br>" . PHP_EOL;
+    // print_r($doc);
+    $changed = false;
+    if (!isset($doc->statistics)) {
+        $changed = true;
+        $doc->statistics = Array();
+    }
     foreach ($sum as $timePeriod => $value) {
-        $doc->statistics["employees"][$timePeriod] = Array("value"=>$value, "source"=>"http://apsc.gov.au/stateoftheservice/");
+        if (!isset($doc->statistics->employees->$timePeriod->value) 
+                || $doc->statistics->employees->$timePeriod->value != $value) {
+            $changed = true;
+            $doc->statistics["employees"][$timePeriod] = Array("value" => $value, "source" => "http://apsc.gov.au/stateoftheservice/");
+        }
     }
-    $db->save($doc);
+    if ($changed) {
+        $db->save($doc);
+    } else {
+        echo "not changed" . "<br>" . PHP_EOL;
+    }
 }
 // employees: timeperiod, source = apsc state of service, value 
 ?>

--- /dev/null
+++ b/admin/importAustraliaGovAuGov2.php
@@ -1,1 +1,61 @@
+<?php
 
+require_once '../include/common.inc.php';
+
+$db = $server->get_db('disclosr-agencies');
+$rows = $db->get_view("app", "byName")->rows;
+$nametoid = Array();
+$accounts = Array();
+foreach ($rows as $row) {
+    $nametoid[trim($row->key)] = $row->value;
+}
+
+function extractCSVAccounts($url, $nameField, $accountField, $filter) {
+    global $accounts, $nametoid;
+    $request = Requests::get($url);
+    $Data = str_getcsv($request->body, "\n"); //parse the rows 
+    $headers = Array();
+    foreach ($Data as $num => $line) {
+        $Row = str_getcsv($line, ",");
+        if ($num == 0) {
+            
+        } else if ($num == 1) {
+            $headers = $Row;
+            //print_r($headers);
+        } else {
+            if (isset($Row[array_search($nameField, $headers)])) {
+                $agencyName = $Row[array_search($nameField, $headers)];
+                if (!$filter || $Row[array_search("State", $headers)] == "NAT") {
+                    if (!in_array(trim($agencyName), array_keys($nametoid))) {
+                        echo "$agencyName missing" . PHP_EOL;
+                    } else {
+                        // echo $Row[array_search($nameField, $headers)] . PHP_EOL;
+                    }
+                }
+            } else {
+                //echo "error finding agency" . $line . PHP_EOL;
+            }
+        }
+    }
+}
+
+// http://agimo.govspace.gov.au/page/gov2register/
+// twitter
+//extractCSVAccounts("https://docs.google.com/spreadsheet/pub?key=0Ap1exl80wB8OdHNKVmQ5RVlvQWpibDAxNHkzcU1nV2c&single=true&gid=0&output=csv", "Agency/Body/Event", "", true);
+// RSS
+// https://docs.google.com/spreadsheet/pub?hl=en_GB&hl=en_GB&key=0Ah41IAK0HzSTdGJxandJREhLSGlWWUZfZ2xKOTNHZ0E&output=csv
+// facebook 
+extractCSVAccounts("https://docs.google.com/spreadsheet/pub?hl=en_GB&hl=en_GB&key=0Ah41IAK0HzSTdGtjcW9vOXdyZ3pOV21vQU51VmhzQnc&single=true&gid=0&output=csv","Agency","Name");
+
+/*
+ * http://australia.gov.au/news-and-media/media-release-rss-feeds
+ * http://australia.gov.au/news-and-media/social-media/blogs
+ * http://australia.gov.au/news-and-media/social-media/twitter
+ * http://australia.gov.au/news-and-media/social-media/facebook
+ * http://australia.gov.au/news-and-media/social-media/youtube
+ * http://australia.gov.au/news-and-media/social-media/flickr
+ * http://australia.gov.au/news-and-media/social-media/apps http://www.harmony.gov.au/get-involved/app-downloads.htm http://www.em.gov.au/Resources/Pages/Before-the-Storm-phone-game.aspx
+ * http://australia.gov.au/news-and-media/social-media/podcasts
+ */
+?>
+

--- a/admin/importDirectoryUUIDs.php
+++ b/admin/importDirectoryUUIDs.php
@@ -1,13 +1,37 @@
 <?php
+
 // http://gold.gov.au/reports/department/index.xml
 require_once '../include/common.inc.php';
-try {
-    $server->create_db('disclosr-agencies');
-} catch (SetteeRestClientException $e) {
-    setteErrorHandler($e);
+$db = $server->get_db('disclosr-agencies');
+$rows = $db->get_view("app", "byName")->rows;
+$nametoid = Array();
+$sums = Array();
+foreach ($rows as $row) {
+    $nametoid[trim($row->key)] = $row->value;
 }
-$db = $server->get_db('disclosr-agencies');
-createAgencyDesignDoc();
 
+if (file_exists('index.xml')) {
+    $xml = simplexml_load_file('index.xml');
+
+    foreach ($xml as $agency) {
+        $names = Array();
+        $names[] = "".$agency->name;
+        
+        if (isset($agency->shortName)) {
+             $names[] = "".$agency->shortName;
+        }
+       foreach ($names as $name) {
+           if (!in_array($name, array_keys($nametoid))) {
+               echo "$name missing".PHP_EOL;
+               print_r($names);
+               echo $agency->dn;
+               echo PHP_EOL;
+               echo PHP_EOL;
+           }
+       }
+    }
+} else {
+    exit('Failed to open test.xml.');
+}
 ?>
 

--- a/admin/importGov2RegisterRSSFacebookTwitter.php
+++ b/admin/importGov2RegisterRSSFacebookTwitter.php
@@ -1,16 +1,100 @@
 <?php
 
 require_once '../include/common.inc.php';
-try {
-    $server->create_db('disclosr-agencies');
-} catch (SetteeRestClientException $e) {
-    setteErrorHandler($e);
+require($basePath . 'lib/phpquery/phpQuery/phpQuery.php');
+
+$db = $server->get_db('disclosr-agencies');
+$rows = $db->get_view("app", "byName")->rows;
+$nametoid = Array();
+$accounts = Array();
+foreach ($rows as $row) {
+    $nametoid[trim($row->key)] = $row->value;
 }
-$db = $server->get_db('disclosr-agencies');
-createAgencyDesignDoc();
 
-// twitter https://docs.google.com/spreadsheet/fm?id=tsJVd9EYoAjbl014y3qMgWg.03918275400592898296.8568379511161083736&hl=en&fmcmd=5&gid=0
-// RSS https://docs.google.com/spreadsheet/fm?id=tbqjwIDHKHiVYF_glJ93GgA.03918275400592898296.8789688748524615194&authkey=CJDP-uQG&hl=en_GB&fmcmd=5&gid=0
-// facebook https://docs.google.com/spreadsheet/fm?id=tkcqoo9wrgzNWmoANuVhsBw.03918275400592898296.3040387705062056060&authkey=CKzl7r0I&hl=en_GB&fmcmd=5&gid=0
+function extractHTMLAccounts($url, $accountType) {
+    global $accounts, $nametoid;
+    $request = Requests::get($url);
+    $doc = phpQuery::newDocumentHTML($request->body);
+    phpQuery::selectDocument($doc);
+    foreach (pq('tr')->elements as $tr) {
+        //echo $tr->nodeValue.PHP_EOL;
+        $agency = "";
+        $url = "";
+        foreach ($tr->childNodes as $td) {
+            $class = $td->getAttribute("class");
+            //echo "cccc $class ".$td->nodeValue.PHP_EOL;
+            if ($class == "s11" || $class == "s10" || $class == "s7") {
+                $agency = $td->nodeValue;
+            } else if ($class == "s6" || $class == "s9") {
+                $url = $td->nodeValue;
+                foreach ($td->childNodes as $a) {
+                    $href = $a->getAttribute("href");
+                    if ($href != "") {
+                        $url = $href;
+                    }
+                }
+            }
+        }
+        if ($agency != "" && $url != "") {
+            if (!in_array(trim($agency), array_keys($nametoid))) {
+                echo trim($agency) . " missing" . PHP_EOL;
+            } else {
+                //   echo $agency." = ".$url.PHP_EOL;
+                $accounts[$nametoid[trim($agency)]][$accountType][] = $url;
+            }
+        }
+    }
+}
+
+function extractCSVAccounts($url, $accountType, $nameField, $accountField, $filter) {
+    global $accounts, $nametoid;
+    $request = Requests::get($url);
+    $Data = str_getcsv($request->body, "\n"); //parse the rows 
+    $headers = Array();
+    foreach ($Data as $num => $line) {
+        $Row = str_getcsv($line, ",", '"');
+        if ($num == 0) {
+            
+        } else if ($num == 1) {
+            $headers = $Row;
+            //print_r($headers);
+        } else {
+            if (isset($Row[array_search($nameField, $headers)])) {
+                $agencyName = $Row[array_search($nameField, $headers)];
+                if (!$filter || $Row[array_search("State", $headers)] == "NAT") {
+                    if (!in_array(trim($agencyName), array_keys($nametoid))) {
+                        echo trim($agencyName) . " missing" . PHP_EOL;
+                    } else {
+                        // echo $Row[array_search($nameField, $headers)] . PHP_EOL;
+                        $accounts[$nametoid[trim($agencyName)]][$accountType][] = $Row[array_search($accountField, $headers)];
+                    }
+                }
+            } else {
+                //echo "error finding agency" . $line . PHP_EOL;
+            }
+        }
+    }
+}
+
+// http://agimo.govspace.gov.au/page/gov2register/
+// twitter
+extractCSVAccounts("https://docs.google.com/spreadsheet/pub?key=0Ap1exl80wB8OdHNKVmQ5RVlvQWpibDAxNHkzcU1nV2c&single=true&gid=0&output=csv", "Twitter", "Agency/Body/Event", "", true);
+// RSS
+extractHTMLAccounts("https://docs.google.com/spreadsheet/pub?hl=en_GB&hl=en_GB&key=0Ah41IAK0HzSTdGJxandJREhLSGlWWUZfZ2xKOTNHZ0E&output=html", "RSS");
+// facebook 
+extractHTMLAccounts("https://docs.google.com/spreadsheet/pub?hl=en_GB&hl=en_GB&key=0Ah41IAK0HzSTdGtjcW9vOXdyZ3pOV21vQU51VmhzQnc&single=true&gid=0&output=html", "Facebook");
+foreach ($accounts as $id => $accountTypes) {
+    echo $id . "<br>" . PHP_EOL;
+    $doc = object_to_array($db->get($id));
+    // print_r($doc);
+
+    foreach ($accountTypes as $accountType => $accounts) {
+        if (!isset($doc["has" . $accountType]) || !is_array($doc["has" . $accountType])) {
+            $doc["has" . $accountType] = Array();
+        }
+        $doc["has" . $accountType] = array_unique(array_merge($doc["has" . $accountType], $accounts));
+    }
+    $db->save($doc);
+}
 ?>
 

--- /dev/null
+++ b/admin/importRTKbodies.php
@@ -1,1 +1,56 @@
+<?php
 
+require_once '../include/common.inc.php';
+
+$db = $server->get_db('disclosr-agencies');
+$rows = $db->get_view("app", "byName")->rows;
+$nametoid = Array();
+$accounts = Array();
+foreach ($rows as $row) {
+    $nametoid[trim($row->key)] = $row->value;
+}
+
+function extractCSVAccounts($url, $nameField, $accountField, $filter) {
+    global $accounts, $nametoid;
+    $request = Requests::get($url);
+    echo $url;
+    $Data = str_getcsv($request->body, "\n"); //parse the rows 
+    $headers = Array();
+    foreach ($Data as $num => $line) {
+        $Row = str_getcsv($line, ",");
+        if ($num == 0) {
+            $headers = $Row;
+            print_r($headers);
+        } else {
+            if (isset($Row[array_search($nameField, $headers)])) {
+                $agencyName = $Row[array_search($nameField, $headers)];
+                    if (!in_array(trim($agencyName), array_keys($nametoid))) {
+                        echo "$agencyName missing" . PHP_EOL;
+                    } else {
+                        echo $Row[array_search($nameField, $headers)] . PHP_EOL;
+                             $accounts[$nametoid[trim($agencyName)]]["rtkURLs"][$agencyName] = 'http://www.righttoknow.org.au/body/'.$Row[array_search($accountField, $headers)];
+                    }
+               } else {
+                echo "error finding any agency" . $line . PHP_EOL;
+            }
+        }
+    }
+}
+
+extractCSVAccounts("http://www.righttoknow.org.au/body/all-authorities.csv","Agency","URL name");
+print_r($accounts);
+/* foreach ($accounts as $id => $accountTypes) {
+    echo $id . "<br>" . PHP_EOL;
+    $doc = object_to_array($db->get($id));
+    // print_r($doc);
+
+    foreach ($accountTypes as $accountType => $accounts) {
+        if (!isset($doc["has" . $accountType]) || !is_array($doc["has" . $accountType])) {
+            $doc["has" . $accountType] = Array();
+        }
+        $doc["has" . $accountType] = array_unique(array_merge($doc["has" . $accountType], $accounts));
+    }
+    $db->save($doc);
+}*/
+?>
+

file:b/admin/index.xml (new)
--- /dev/null
+++ b/admin/index.xml
@@ -1,1 +1,2607 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<entryList>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport321.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&a581ffe4-b532-4d81-bae3-9e937c6104e8]]></websiteURI>
+<dn><![CDATA[ou=Aboriginal Hostels Limited (AHL),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Aboriginal Hostels Limited (AHL)]]></name>
+<phone><![CDATA[(02) 6212 2000]]></phone>
+<email><![CDATA[ahlmarketing@ahl.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 30, Woden ACT 2606]]></postalAddress>
+<id><![CDATA[a581ffe4-b532-4d81-bae3-9e937c6104e8]]></id>
+<category>A</category>
+<lastModified><![CDATA[20101119150641.646+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport322.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e4471b59-3866-4e0e-bbca-260114348e3f]]></websiteURI>
+<dn><![CDATA[ou=Aboriginal Studies Press (ASP),ou=Australian Institute of Aboriginal and Torres Strait Islander Studies,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Aboriginal Studies Press (ASP)]]></name>
+<phone><![CDATA[(02) 6246 1186]]></phone>
+<email><![CDATA[asp@aiatsis.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 553, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[e4471b59-3866-4e0e-bbca-260114348e3f]]></id>
+<category>A</category>
+<lastModified><![CDATA[20101007150855.716+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport323.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2410b559-3606-43f6-ba4d-5819b5d44dd8]]></websiteURI>
+<dn><![CDATA[ou=Administrative Appeals Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Administrative Appeals Tribunal]]></name>
+<shortName><![CDATA[AAT]]></shortName>
+<phone><![CDATA[1300 366 700]]></phone>
+<postalAddress><![CDATA[GPO Box 9955, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[2410b559-3606-43f6-ba4d-5819b5d44dd8]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110322172221.506+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport324.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&9a72269b-2d86-4213-9809-b310d8fb8242]]></websiteURI>
+<dn><![CDATA[ou=Aged Care Standards and Accreditation Agency Ltd,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Aged Care Standards and Accreditation Agency Ltd]]></name>
+<phone><![CDATA[(02) 9633 1711]]></phone>
+<email><![CDATA[national@accreditation.org.au]]></email>
+<postalAddress><![CDATA[PO Box 773, Parramatta NSW 2124]]></postalAddress>
+<id><![CDATA[9a72269b-2d86-4213-9809-b310d8fb8242]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110316162117.955+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport325.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f6c7b75c-199a-4a83-873c-06aa2ff80b79]]></websiteURI>
+<dn><![CDATA[ou=Air Force Headquarters,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Air Force Headquarters]]></name>
+<id><![CDATA[f6c7b75c-199a-4a83-873c-06aa2ff80b79]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110927141313.630+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport326.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3abaa317-dfc0-4469-a07c-3d69e9bb1c38]]></websiteURI>
+<dn><![CDATA[ou=Airservices Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Airservices Australia]]></name>
+<shortName><![CDATA[Airservices]]></shortName>
+<phone><![CDATA[(02) 6268 4111]]></phone>
+<postalAddress><![CDATA[Airservices Australia, GPO Box 367, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[3abaa317-dfc0-4469-a07c-3d69e9bb1c38]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100624173807.346+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport327.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&0269409f-9ffb-4d37-adfd-d98d4f75c30a]]></websiteURI>
+<dn><![CDATA[ou=Albury-Wodonga Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Albury-Wodonga Corporation]]></name>
+<shortName><![CDATA[AWC]]></shortName>
+<phone><![CDATA[(02) 6023 8000]]></phone>
+<email><![CDATA[awc@awc.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 913, Albury NSW 2640]]></postalAddress>
+<id><![CDATA[0269409f-9ffb-4d37-adfd-d98d4f75c30a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120118093718.197+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport328.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&47820771-fcb1-4277-9423-96c18c715c7e]]></websiteURI>
+<dn><![CDATA[ou=AMC Search Ltd,ou=Australian Maritime College,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[AMC Search Ltd]]></name>
+<phone><![CDATA[(03) 6335 4850]]></phone>
+<postalAddress><![CDATA[AMC Search Ltd, Australian Maritime College, PO Box 986, Launceston TAS 7250]]></postalAddress>
+<id><![CDATA[47820771-fcb1-4277-9423-96c18c715c7e]]></id>
+<category>A</category>
+<lastModified><![CDATA[20080613122607.525+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport329.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&364e2973-e795-47b2-90f2-76bb9819207b]]></websiteURI>
+<dn><![CDATA[ou=Army Headquarters,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Army Headquarters]]></name>
+<id><![CDATA[364e2973-e795-47b2-90f2-76bb9819207b]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100624173848.550+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport330.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e4ea2b3c-40ce-4ab5-aead-1b1af78f5035]]></websiteURI>
+<dn><![CDATA[ou=ASC Pty Ltd,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[ASC Pty Ltd]]></name>
+<phone><![CDATA[(08) 8348 7000]]></phone>
+<postalAddress><![CDATA[GPO Box 2472, ADELAIDE, SA 5001]]></postalAddress>
+<id><![CDATA[e4ea2b3c-40ce-4ab5-aead-1b1af78f5035]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110401145040.388+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport331.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d227a935-064f-4089-a469-0614efa1352f]]></websiteURI>
+<dn><![CDATA[ou=Attorney-General's Department,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Attorney-General's Department]]></name>
+<shortName><![CDATA[AGD]]></shortName>
+<phone><![CDATA[(02) 6141 6666]]></phone>
+<id><![CDATA[d227a935-064f-4089-a469-0614efa1352f]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120116101325.717+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport332.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b79d7f58-1533-4dc4-8fab-d7b83fe6b41f]]></websiteURI>
+<dn><![CDATA[ou=AusIndustry,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[AusIndustry]]></name>
+<phone><![CDATA[AusIndustry Hotline 13 28 46]]></phone>
+<postalAddress><![CDATA[GPO Box 9839, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[b79d7f58-1533-4dc4-8fab-d7b83fe6b41f]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111219104922.932+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport333.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&1a071feb-53e0-48ba-ad51-6e98c2c48e85]]></websiteURI>
+<dn><![CDATA[ou=AusIndustry Hotline,ou=AusIndustry,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[AusIndustry Hotline]]></name>
+<phone><![CDATA[13 2846 - 8.00am - 6.00pm (AEST)]]></phone>
+<email><![CDATA[hotline@ausindustry.gov.au]]></email>
+<id><![CDATA[1a071feb-53e0-48ba-ad51-6e98c2c48e85]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111219105059.015+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport334.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&14e9ae65-9958-441c-b1b2-b2c906f8a9e3]]></websiteURI>
+<dn><![CDATA[ou=Australia Telescope National Facility,ou=Information Sciences,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australia Telescope National Facility]]></name>
+<phone><![CDATA[(02) 9372 4100]]></phone>
+<postalAddress><![CDATA[PO Box 76, Epping NSW 1710]]></postalAddress>
+<id><![CDATA[14e9ae65-9958-441c-b1b2-b2c906f8a9e3]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100222170235.683+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport335.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ed906056-af2b-4d53-bf0e-573c34d71784]]></websiteURI>
+<dn><![CDATA[ou=Australian Agency for International Development (AusAID),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Agency for International Development (AusAID)]]></name>
+<shortName><![CDATA[AusAID]]></shortName>
+<phone><![CDATA[(02) 6206 4000]]></phone>
+<postalAddress><![CDATA[GPO Box 887, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[ed906056-af2b-4d53-bf0e-573c34d71784]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110208120656.851+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport336.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&4556722d-45f5-40f5-a039-6a0da1374eb4]]></websiteURI>
+<dn><![CDATA[ou=Australian Astronomical Observatory,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Astronomical Observatory]]></name>
+<shortName><![CDATA[AAO]]></shortName>
+<phone><![CDATA[(02) 9372 4800]]></phone>
+<postalAddress><![CDATA[PO Box 296, Epping NSW 1710]]></postalAddress>
+<id><![CDATA[4556722d-45f5-40f5-a039-6a0da1374eb4]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110113133740.552+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport337.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8caaf9d1-17f1-4e68-9bf3-8cfa04503a5a]]></websiteURI>
+<dn><![CDATA[ou=Australian Broadcasting Corporation (ABC),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Broadband\, Communications and the Digital Economy,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Broadcasting Corporation (ABC)]]></name>
+<shortName><![CDATA[ABC]]></shortName>
+<phone><![CDATA[(02) 8333 1500]]></phone>
+<postalAddress><![CDATA[GPO Box 9994, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[8caaf9d1-17f1-4e68-9bf3-8cfa04503a5a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110317113926.470+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport338.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&269a027d-8d7e-4bfb-acf6-e0052512f162]]></websiteURI>
+<dn><![CDATA[ou=Australian Bureau of Agricultural and Resource Economics and Sciences,ou=Department of Agriculture\, Fisheries and Forestry,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Bureau of Agricultural and Resource Economics and Sciences]]></name>
+<shortName><![CDATA[ABARES]]></shortName>
+<phone><![CDATA[(02) 6272 2000]]></phone>
+<postalAddress><![CDATA[GPO Box 1563, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[269a027d-8d7e-4bfb-acf6-e0052512f162]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111123085639.454+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport339.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&5474218a-dd86-4cfb-9c83-ae92f29bfb56]]></websiteURI>
+<dn><![CDATA[ou=Australian Bureau of Statistics,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Bureau of Statistics]]></name>
+<shortName><![CDATA[ABS]]></shortName>
+<phone><![CDATA[(02) 6252 5000]]></phone>
+<postalAddress><![CDATA[Locked Bag 10, Belconnen ACT 2616]]></postalAddress>
+<id><![CDATA[5474218a-dd86-4cfb-9c83-ae92f29bfb56]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100624173756.051+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport340.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3c6f8fa6-80fd-4652-942a-362290a97cc2]]></websiteURI>
+<dn><![CDATA[ou=Australian Centre for International Agricultural Research (ACIAR),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Centre for International Agricultural Research (ACIAR)]]></name>
+<shortName><![CDATA[ACIAR]]></shortName>
+<phone><![CDATA[(02) 6217 0500]]></phone>
+<email><![CDATA[aciar@aciar.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 1571, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[3c6f8fa6-80fd-4652-942a-362290a97cc2]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110330162044.458+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport341.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&9d6e20ab-f0e1-422c-a248-ee031c4bd1a2]]></websiteURI>
+<dn><![CDATA[ou=Australian Commission for Law Enforcement Integrity,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Commission for Law Enforcement Integrity]]></name>
+<shortName><![CDATA[ACLEI]]></shortName>
+<phone><![CDATA[(02) 6229 9300]]></phone>
+<email><![CDATA[contact@aclei.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 305, Canberra, ACT 2601]]></postalAddress>
+<id><![CDATA[9d6e20ab-f0e1-422c-a248-ee031c4bd1a2]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110712095234.680+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport342.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b3c7ffa9-03a0-4237-84ee-c93e729e8bee]]></websiteURI>
+<dn><![CDATA[ou=Australian Communications and Media Authority (ACMA),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Broadband\, Communications and the Digital Economy,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Communications and Media Authority (ACMA)]]></name>
+<shortName><![CDATA[The ACMA]]></shortName>
+<id><![CDATA[b3c7ffa9-03a0-4237-84ee-c93e729e8bee]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120125153703.506+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport343.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&56183875-7b64-445e-aa3e-386b5469c45c]]></websiteURI>
+<dn><![CDATA[ou=Australian Competition and Consumer Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Competition and Consumer Commission]]></name>
+<shortName><![CDATA[ACCC]]></shortName>
+<phone><![CDATA[(02) 6243 1111]]></phone>
+<postalAddress><![CDATA[GPO Box 3131 Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[56183875-7b64-445e-aa3e-386b5469c45c]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110411160807.618+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport344.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3806e5f1-f0ac-4a93-89e6-c0dc91d9314f]]></websiteURI>
+<dn><![CDATA[ou=Australian Competition Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Competition Tribunal]]></name>
+<shortName><![CDATA[ACT]]></shortName>
+<phone><![CDATA[(03) 8600 3643]]></phone>
+<id><![CDATA[3806e5f1-f0ac-4a93-89e6-c0dc91d9314f]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100810150420.758+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport345.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&531a3a1f-6589-42f6-b1b1-c78cd3a2e1ba]]></websiteURI>
+<dn><![CDATA[ou=Australian Crime Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Crime Commission]]></name>
+<shortName><![CDATA[ACC]]></shortName>
+<phone><![CDATA[(02) 6243 6666]]></phone>
+<id><![CDATA[531a3a1f-6589-42f6-b1b1-c78cd3a2e1ba]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111104133803.096+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport346.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f0119ed8-690e-4203-9678-1d21c80891bf]]></websiteURI>
+<dn><![CDATA[ou=Australian Curriculum\, Assessment and Reporting Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Curriculum, Assessment and Reporting Authority]]></name>
+<shortName><![CDATA[ACARA]]></shortName>
+<phone><![CDATA[1300 895 563]]></phone>
+<email><![CDATA[info@acara.edu.au]]></email>
+<id><![CDATA[f0119ed8-690e-4203-9678-1d21c80891bf]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120206105101.204+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport347.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d655dc2d-2ae8-48a7-b479-5bb3f09a29b7]]></websiteURI>
+<dn><![CDATA[ou=Australian Customs and Border Protection Service,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Customs and Border Protection Service]]></name>
+<shortName><![CDATA[ACS]]></shortName>
+<phone><![CDATA[(02) 6275 6666]]></phone>
+<email><![CDATA[information@customs.gov.au]]></email>
+<postalAddress><![CDATA[5 Constitution Avenue, Canberra ACT 2600]]></postalAddress>
+<id><![CDATA[d655dc2d-2ae8-48a7-b479-5bb3f09a29b7]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120130125616.549+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport348.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&083f1f67-ec52-4f37-bfb8-e5b379744019]]></websiteURI>
+<dn><![CDATA[ou=Australian Electoral Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Electoral Commission]]></name>
+<shortName><![CDATA[AEC]]></shortName>
+<phone><![CDATA[(02) 6271 4411]]></phone>
+<postalAddress><![CDATA[PO Box 6172, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[083f1f67-ec52-4f37-bfb8-e5b379744019]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120202142654.881+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport349.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&9237496e-e929-4a04-99b5-c4fd9394d3d7]]></websiteURI>
+<dn><![CDATA[ou=Australian Energy Regulator,ou=Australian Competition and Consumer Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Energy Regulator]]></name>
+<phone><![CDATA[(03) 9290 1800]]></phone>
+<postalAddress><![CDATA[GPO Box 520 Melbourne VIC 3001]]></postalAddress>
+<id><![CDATA[9237496e-e929-4a04-99b5-c4fd9394d3d7]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100809150734.332+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport350.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&72f1c9fd-b5a8-4087-b21c-42d2eb973936]]></websiteURI>
+<dn><![CDATA[ou=Australian Federal Police,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Federal Police]]></name>
+<shortName><![CDATA[AFP]]></shortName>
+<phone><![CDATA[(02) 6131 3000]]></phone>
+<postalAddress><![CDATA[GPO Box 401, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[72f1c9fd-b5a8-4087-b21c-42d2eb973936]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111031164046.507+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport351.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&121dfbd9-7a44-4acf-b09b-8ff4d22d81fb]]></websiteURI>
+<dn><![CDATA[ou=Australian Film\, Television and Radio School,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Film, Television and Radio School]]></name>
+<shortName><![CDATA[AFTRS]]></shortName>
+<phone><![CDATA[(02) 9805 6611]]></phone>
+<email><![CDATA[infonsw@aftrs.edu.au]]></email>
+<postalAddress><![CDATA[PO Box 2286, Strawberry Hills  NSW 2012]]></postalAddress>
+<id><![CDATA[121dfbd9-7a44-4acf-b09b-8ff4d22d81fb]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110321150216.240+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport352.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&a275d593-2625-4643-8293-03f47520bd47]]></websiteURI>
+<dn><![CDATA[ou=Australian Fisheries Management Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Fisheries Management Authority]]></name>
+<shortName><![CDATA[AFMA]]></shortName>
+<phone><![CDATA[(02) 6225 5555]]></phone>
+<email><![CDATA[info@afma.gov.au]]></email>
+<postalAddress><![CDATA[Box 7051, Canberra Mail Centre ACT 2610]]></postalAddress>
+<id><![CDATA[a275d593-2625-4643-8293-03f47520bd47]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110322134017.575+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport353.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e6458760-2065-459d-9871-dbe3f481d8f5]]></websiteURI>
+<dn><![CDATA[ou=Australian Government Competitive Neutrality Complaints Office,ou=Productivity Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Government Competitive Neutrality Complaints Office]]></name>
+<shortName><![CDATA[AGCNCO]]></shortName>
+<phone><![CDATA[(02) 6240 3317]]></phone>
+<email><![CDATA[cnoffice@pc.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 1428, Canberra City ACT 2601]]></postalAddress>
+<id><![CDATA[e6458760-2065-459d-9871-dbe3f481d8f5]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110921115437.821+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport354.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&dda18f77-2967-4d44-a0f0-fa1289786973]]></websiteURI>
+<dn><![CDATA[ou=Australian Government Employees Superannuation Trust,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Government Employees Superannuation Trust]]></name>
+<shortName><![CDATA[AGEST Super]]></shortName>
+<phone><![CDATA[1300 7AGEST (that's 1300 724 378)]]></phone>
+<email><![CDATA[info@agest.com.au]]></email>
+<postalAddress><![CDATA[AGEST Administration Locked Bag 20,  Wollongong NSW 2500]]></postalAddress>
+<id><![CDATA[dda18f77-2967-4d44-a0f0-fa1289786973]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110317154049.077+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport355.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&fb22afcd-8bec-4c7f-9788-64c8401f88e4]]></websiteURI>
+<dn><![CDATA[ou=Australian Government Information Management Office,ou=Central Office,ou=Department of Finance and Deregulation,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Government Information Management Office]]></name>
+<shortName><![CDATA[AGIMO]]></shortName>
+<id><![CDATA[fb22afcd-8bec-4c7f-9788-64c8401f88e4]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110406113158.657+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport356.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&97c45479-45b3-410d-9f28-2b5992c94166]]></websiteURI>
+<dn><![CDATA[ou=Australian Government Solicitor,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Government Solicitor]]></name>
+<shortName><![CDATA[AGS]]></shortName>
+<phone><![CDATA[(02) 6253 7000]]></phone>
+<email><![CDATA[ags@ags.gov.au]]></email>
+<id><![CDATA[97c45479-45b3-410d-9f28-2b5992c94166]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120223110823.323+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport357.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3c7215cc-1fea-4544-8cf3-90640b90f803]]></websiteURI>
+<dn><![CDATA[ou=Australian Hearing,ou=Other Portfolio Bodies,o=Human Services,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Hearing]]></name>
+<shortName><![CDATA[AH]]></shortName>
+<phone><![CDATA[(02) 9412 6800]]></phone>
+<email><![CDATA[enquiry@hearing.com.au]]></email>
+<id><![CDATA[3c7215cc-1fea-4544-8cf3-90640b90f803]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110318103029.904+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport358.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&68652fdc-5b6b-40d6-94c7-23c54670fa4e]]></websiteURI>
+<dn><![CDATA[ou=Australian Human Rights Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Human Rights Commission]]></name>
+<phone><![CDATA[(02) 9284 9600]]></phone>
+<email><![CDATA[communications@humanrights.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 5218, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[68652fdc-5b6b-40d6-94c7-23c54670fa4e]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110615095903.406+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport359.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ca841194-5f24-4b09-b98d-89dd8a3ed257]]></websiteURI>
+<dn><![CDATA[ou=Australian Institute for Teaching and School Leadership Ltd,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Institute for Teaching and School Leadership Ltd]]></name>
+<phone><![CDATA[(03) 8330 9430]]></phone>
+<id><![CDATA[ca841194-5f24-4b09-b98d-89dd8a3ed257]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110907160446.595+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport360.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&faae7806-65de-4417-a437-af71b991d9a8]]></websiteURI>
+<dn><![CDATA[ou=Australian Institute of Aboriginal and Torres Strait Islander Studies,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Institute of Aboriginal and Torres Strait Islander Studies]]></name>
+<shortName><![CDATA[AIATSIS]]></shortName>
+<phone><![CDATA[(02) 6246 1111]]></phone>
+<email><![CDATA[reception@aiatsis.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 553, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[faae7806-65de-4417-a437-af71b991d9a8]]></id>
+<category>A</category>
+<lastModified><![CDATA[20101007150855.702+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport361.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&cd89f277-ff44-4212-8898-3d506827a93a]]></websiteURI>
+<dn><![CDATA[ou=Australian Institute of Criminology,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Institute of Criminology]]></name>
+<shortName><![CDATA[AIC]]></shortName>
+<phone><![CDATA[(02) 6260 9200]]></phone>
+<postalAddress><![CDATA[GPO Box 2944, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[cd89f277-ff44-4212-8898-3d506827a93a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110318154010.349+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport362.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7a59e628-d057-4df3-8532-18b99f0b03e3]]></websiteURI>
+<dn><![CDATA[ou=Australian Institute of Family Studies,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Institute of Family Studies]]></name>
+<shortName><![CDATA[AIFS]]></shortName>
+<phone><![CDATA[(03) 9214 7888]]></phone>
+<id><![CDATA[7a59e628-d057-4df3-8532-18b99f0b03e3]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120104104630.383+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport363.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&02318405-2c28-4a6f-a665-0780a4ae8f6b]]></websiteURI>
+<dn><![CDATA[ou=Australian Institute of Health and Welfare,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Institute of Health and Welfare]]></name>
+<shortName><![CDATA[AIHW]]></shortName>
+<phone><![CDATA[(02) 6244 1000]]></phone>
+<email><![CDATA[info@aihw.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 570, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[02318405-2c28-4a6f-a665-0780a4ae8f6b]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120305160223.613+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport364.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&6a7cddf0-9743-4c09-9a57-f3878099ea9a]]></websiteURI>
+<dn><![CDATA[ou=Australian Institute of Marine Science,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Institute of Marine Science]]></name>
+<shortName><![CDATA[AIMS]]></shortName>
+<phone><![CDATA[(07) 4753 4444]]></phone>
+<postalAddress><![CDATA[Private Mail Bag No. 3, Mail Centre, Townsville Qld 4810]]></postalAddress>
+<id><![CDATA[6a7cddf0-9743-4c09-9a57-f3878099ea9a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100624173757.280+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport365.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&adcf6eb7-cc4d-4a67-a90c-06062132a944]]></websiteURI>
+<dn><![CDATA[ou=Australian Law Reform Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Law Reform Commission]]></name>
+<shortName><![CDATA[ALRC]]></shortName>
+<phone><![CDATA[(02) 8238 6333]]></phone>
+<email><![CDATA[info@alrc.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 3708, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[adcf6eb7-cc4d-4a67-a90c-06062132a944]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110324155842.822+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport366.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&86d0a03e-eaba-4779-90be-7ae3e981d610]]></websiteURI>
+<dn><![CDATA[ou=Australian Maritime College,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Maritime College]]></name>
+<phone><![CDATA[(03) 6335 4711]]></phone>
+<postalAddress><![CDATA[Australian Maritime College, PO Box 986, Launceston TAS 7250]]></postalAddress>
+<id><![CDATA[86d0a03e-eaba-4779-90be-7ae3e981d610]]></id>
+<category>A</category>
+<lastModified><![CDATA[20090630112037.707+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport367.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&87c211d6-3f21-4e22-bcc2-2fb2b17026d8]]></websiteURI>
+<dn><![CDATA[ou=Australian Maritime Safety Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Maritime Safety Authority]]></name>
+<shortName><![CDATA[AMSA]]></shortName>
+<phone><![CDATA[(02) 6279 5000]]></phone>
+<postalAddress><![CDATA[GPO Box 2181, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[87c211d6-3f21-4e22-bcc2-2fb2b17026d8]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110927144238.905+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport368.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&73c8b5d8-2ffb-4e7d-aa27-33dacc59412c]]></websiteURI>
+<dn><![CDATA[ou=Australian Military Forces Relief Trust Fund,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Military Forces Relief Trust Fund]]></name>
+<phone><![CDATA[(02) 6265 6197]]></phone>
+<postalAddress><![CDATA[R1-1-C067, Department of Defence, CANBERRA  ACT  2600]]></postalAddress>
+<id><![CDATA[73c8b5d8-2ffb-4e7d-aa27-33dacc59412c]]></id>
+<category>A</category>
+<lastModified><![CDATA[20090202164003.266+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport369.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&38573a34-7f05-4f52-956d-c2ab90bac74d]]></websiteURI>
+<dn><![CDATA[ou=Australian National Audit Office,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian National Audit Office]]></name>
+<shortName><![CDATA[ANAO]]></shortName>
+<phone><![CDATA[(02) 6203 7300]]></phone>
+<email><![CDATA[ag1@anao.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 707, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[38573a34-7f05-4f52-956d-c2ab90bac74d]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100803101742.786+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport370.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&016aca68-3c13-4aab-a1a4-65ef3fa4f7ee]]></websiteURI>
+<dn><![CDATA[ou=Australian National Maritime Museum,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian National Maritime Museum]]></name>
+<shortName><![CDATA[ANMM]]></shortName>
+<phone><![CDATA[(02) 9298 3777]]></phone>
+<postalAddress><![CDATA[GPO Box 5131, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[016aca68-3c13-4aab-a1a4-65ef3fa4f7ee]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110317152836.306+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport371.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&177f0227-dbd2-4193-bd22-910cf208a48f]]></websiteURI>
+<dn><![CDATA[ou=Australian Nuclear Science and Technology Organisation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Nuclear Science and Technology Organisation]]></name>
+<shortName><![CDATA[ANSTO]]></shortName>
+<id><![CDATA[177f0227-dbd2-4193-bd22-910cf208a48f]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100222170238.439+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport372.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b4f919de-4a41-4778-8e1f-7db6438ecba9]]></websiteURI>
+<dn><![CDATA[ou=Australian Office of Financial Management,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Office of Financial Management]]></name>
+<shortName><![CDATA[AOFM]]></shortName>
+<phone><![CDATA[(02) 6263 1111]]></phone>
+<email><![CDATA[enquiries@aofm.gov.au]]></email>
+<id><![CDATA[b4f919de-4a41-4778-8e1f-7db6438ecba9]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110418131553.834+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport373.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3877f864-52d3-438d-be68-082401eca040]]></websiteURI>
+<dn><![CDATA[ou=Australian Organ and Tissue Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Organ and Tissue Authority]]></name>
+<phone><![CDATA[(02) 6198 9800]]></phone>
+<postalAddress><![CDATA[Post Office Box 295, CIVIC SQUARE ACT 2608]]></postalAddress>
+<id><![CDATA[3877f864-52d3-438d-be68-082401eca040]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110603104442.951+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport374.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&20caec96-eb5e-470a-84d5-795546e8325a]]></websiteURI>
+<dn><![CDATA[ou=Australian Pesticides and Veterinary Medicines Authority (formerly National Registration Authority for Agricultural and Veterinary Chemicals),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Pesticides and Veterinary Medicines Authority (formerly National Registration Authority for Agricultural and Veterinary Chemicals)]]></name>
+<shortName><![CDATA[APVMA]]></shortName>
+<phone><![CDATA[(02) 6210 4700]]></phone>
+<email><![CDATA[contact@apvma.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 6182, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[20caec96-eb5e-470a-84d5-795546e8325a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110321165856.985+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport375.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3382d264-da8d-49f0-92d2-f6a653234a0c]]></websiteURI>
+<dn><![CDATA[ou=Australian Postal Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Broadband\, Communications and the Digital Economy,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Postal Corporation]]></name>
+<shortName><![CDATA[APC Australia Post]]></shortName>
+<phone><![CDATA[(03) 9204 7171]]></phone>
+<postalAddress><![CDATA[GPO Box 1777, Melbourne Vic 3001]]></postalAddress>
+<id><![CDATA[3382d264-da8d-49f0-92d2-f6a653234a0c]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110805113827.167+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport376.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7b15f066-60e9-4562-bd25-1af12de7afe9]]></websiteURI>
+<dn><![CDATA[ou=Australian Prudential Regulation Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Prudential Regulation Authority]]></name>
+<shortName><![CDATA[APRA]]></shortName>
+<phone><![CDATA[1300 131 060]]></phone>
+<postalAddress><![CDATA[GPO Box 9836, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[7b15f066-60e9-4562-bd25-1af12de7afe9]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100818113955.325+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport377.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&68c4a1a8-e49b-474c-af11-29144a14220c]]></websiteURI>
+<dn><![CDATA[ou=Australian Public Service Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Public Service Commission]]></name>
+<shortName><![CDATA[APSC]]></shortName>
+<phone><![CDATA[(02) 6202 3500]]></phone>
+<postalAddress><![CDATA[Aviation House, 16 Furzer Street, Phillip ACT 2606]]></postalAddress>
+<id><![CDATA[68c4a1a8-e49b-474c-af11-29144a14220c]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110708140023.718+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport378.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7db7cff3-8d22-491c-a8ec-0e2be4d59df8]]></websiteURI>
+<dn><![CDATA[ou=Australian Radiation Protection and Nuclear Safety Agency,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Radiation Protection and Nuclear Safety Agency]]></name>
+<shortName><![CDATA[ARPANSA]]></shortName>
+<phone><![CDATA[(02) 9541 8333]]></phone>
+<email><![CDATA[carl-magnus.larsson@arpansa.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 655, Miranda NSW 1490]]></postalAddress>
+<id><![CDATA[7db7cff3-8d22-491c-a8ec-0e2be4d59df8]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110322113244.403+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport379.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c4bd0d42-1bc7-4200-9443-0ccf9b26b35f]]></websiteURI>
+<dn><![CDATA[ou=Australian Rail Track Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Rail Track Corporation]]></name>
+<shortName><![CDATA[ARTC]]></shortName>
+<phone><![CDATA[(08) 8217 4366]]></phone>
+<email><![CDATA[enquiries@artc.com.au]]></email>
+<postalAddress><![CDATA[Australian Rail Track Corporation, PO Box 10343, Gouger Street, Adelaide SA 5000]]></postalAddress>
+<id><![CDATA[c4bd0d42-1bc7-4200-9443-0ccf9b26b35f]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100521142025.392+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport380.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&5b1cccf0-7c57-4fc8-a00d-cec5edaba9e9]]></websiteURI>
+<dn><![CDATA[ou=Australian Reinsurance Pool Corporation,ou=Markets Group,ou=Central Office,ou=The Treasury,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Reinsurance Pool Corporation]]></name>
+<shortName><![CDATA[ARPC]]></shortName>
+<phone><![CDATA[(02) 6279 2103]]></phone>
+<email><![CDATA[arpc@treasury.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 3024, Canberra  ACT 2600]]></postalAddress>
+<id><![CDATA[5b1cccf0-7c57-4fc8-a00d-cec5edaba9e9]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111220173707.552+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport381.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&73375a65-c0e0-4503-b6de-6f4814004b43]]></websiteURI>
+<dn><![CDATA[ou=Australian River Co. Limited,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian River Co. Limited]]></name>
+<shortName><![CDATA[ARC]]></shortName>
+<postalAddress><![CDATA[GPO Box 7663, Melbourne VIC 3004]]></postalAddress>
+<id><![CDATA[73375a65-c0e0-4503-b6de-6f4814004b43]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110829141826.160+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport382.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&4bc312ef-96be-4715-b2ae-c557e22f0bc3]]></websiteURI>
+<dn><![CDATA[ou=Australian Safeguards and Non-Proliferation Office,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Safeguards and Non-Proliferation Office]]></name>
+<shortName><![CDATA[ASNO]]></shortName>
+<id><![CDATA[4bc312ef-96be-4715-b2ae-c557e22f0bc3]]></id>
+<category>A</category>
+<lastModified><![CDATA[20091222155630.223+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport383.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f6e1c391-3f4c-4b09-8daa-79b059f58390]]></websiteURI>
+<dn><![CDATA[ou=Australian Secret Intelligence Service,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Secret Intelligence Service]]></name>
+<phone><![CDATA[(02) 6261 1088]]></phone>
+<email><![CDATA[asis@asis.gov.au]]></email>
+<id><![CDATA[f6e1c391-3f4c-4b09-8daa-79b059f58390]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110316151901.524+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport384.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7c0bfe50-f550-4b8d-9c70-97bedb0f28c2]]></websiteURI>
+<dn><![CDATA[ou=Australian Securities and Investments Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Securities and Investments Commission]]></name>
+<shortName><![CDATA[ASIC]]></shortName>
+<phone><![CDATA[(02) 9911 2000]]></phone>
+<email><![CDATA[http://www.asic.gov.au/question]]></email>
+<postalAddress><![CDATA[GPO Box 9827, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[7c0bfe50-f550-4b8d-9c70-97bedb0f28c2]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111121130603.330+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport385.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&bce29f59-fb19-4d74-b11a-033e83996bdc]]></websiteURI>
+<dn><![CDATA[ou=Australian Security Intelligence Organisation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Security Intelligence Organisation]]></name>
+<shortName><![CDATA[ASIO]]></shortName>
+<phone><![CDATA[(02) 6249 6299]]></phone>
+<postalAddress><![CDATA[GPO Box 2176, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[bce29f59-fb19-4d74-b11a-033e83996bdc]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110317122037.404+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport386.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b31c8675-9eb9-44b1-b785-1193cfb8781c]]></websiteURI>
+<dn><![CDATA[ou=Australian Sports Anti-Doping Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Sports Anti-Doping Authority]]></name>
+<shortName><![CDATA[ASADA]]></shortName>
+<phone><![CDATA[(02) 6222 4200]]></phone>
+<email><![CDATA[asada@asada.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 1744, Fyshwick  ACT  2609]]></postalAddress>
+<id><![CDATA[b31c8675-9eb9-44b1-b785-1193cfb8781c]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110324125407.493+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport387.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c6bb4332-4509-4ca5-bf8c-f4cb52b9cbe4]]></websiteURI>
+<dn><![CDATA[ou=Australian Sports Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Sports Commission]]></name>
+<shortName><![CDATA[ASC]]></shortName>
+<phone><![CDATA[(02) 6214 1111]]></phone>
+<email><![CDATA[asc@ausport.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 176, Belconnen ACT 2617]]></postalAddress>
+<id><![CDATA[c6bb4332-4509-4ca5-bf8c-f4cb52b9cbe4]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110601100440.867+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport388.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&87adfc9c-43a9-4e02-abde-4b5c12cf183a]]></websiteURI>
+<dn><![CDATA[ou=Australian Sports Foundation Ltd,ou=Australian Sports Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Sports Foundation Ltd]]></name>
+<shortName><![CDATA[ASF]]></shortName>
+<phone><![CDATA[(02) 6214 7868]]></phone>
+<email><![CDATA[info@asf.org.au]]></email>
+<postalAddress><![CDATA[PO Box 176 Belconnen ACT 2616]]></postalAddress>
+<id><![CDATA[87adfc9c-43a9-4e02-abde-4b5c12cf183a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110318102029.484+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport389.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&38e0fed2-f10d-4c69-b4dd-980bc195f4ca]]></websiteURI>
+<dn><![CDATA[ou=Australian Taxation Office,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Taxation Office]]></name>
+<shortName><![CDATA[ATO]]></shortName>
+<phone><![CDATA[(02) 6216 1111]]></phone>
+<postalAddress><![CDATA[PO Box 9977, Civic Sq ACT 2608]]></postalAddress>
+<id><![CDATA[38e0fed2-f10d-4c69-b4dd-980bc195f4ca]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100624173812.146+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport390.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e04ae252-33f9-494f-8817-c41e848322a5]]></websiteURI>
+<dn><![CDATA[ou=Australian Trade Commission (Austrade),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Trade Commission (Austrade)]]></name>
+<shortName><![CDATA[AUSTRADE]]></shortName>
+<phone><![CDATA[+61 (2) 9392 2000]]></phone>
+<postalAddress><![CDATA[GPO Box 5301, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[e04ae252-33f9-494f-8817-c41e848322a5]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111006134040.960+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport391.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d25a37a7-1c6c-489e-bc78-3ee93e6c478c]]></websiteURI>
+<dn><![CDATA[ou=Australian Transaction Reports and Analysis Centre,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Transaction Reports and Analysis Centre]]></name>
+<shortName><![CDATA[AUSTRAC]]></shortName>
+<phone><![CDATA[1300 021 037]]></phone>
+<email><![CDATA[help_desk@austrac.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 5516, West Chatswood NSW 1515]]></postalAddress>
+<id><![CDATA[d25a37a7-1c6c-489e-bc78-3ee93e6c478c]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110322134307.511+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport392.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8c5b2676-714e-4ab3-a7f7-b2f3472e6fe7]]></websiteURI>
+<dn><![CDATA[ou=Australian Transport Safety Bureau,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Transport Safety Bureau]]></name>
+<shortName><![CDATA[ATSB]]></shortName>
+<phone><![CDATA[1800 020 616]]></phone>
+<email><![CDATA[atsbinfo@atsb.gov.au]]></email>
+<postalAddress><![CDATA[Australian Transport Safety Bureau PO Box 967, Civic Square ACT 2608]]></postalAddress>
+<id><![CDATA[8c5b2676-714e-4ab3-a7f7-b2f3472e6fe7]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110317100542.070+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport393.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&5c58ad20-e79e-4b19-9137-649a4a1311a1]]></websiteURI>
+<dn><![CDATA[ou=Australian Valuation Office,ou=Australian Taxation Office,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Valuation Office]]></name>
+<shortName><![CDATA[AVO]]></shortName>
+<phone><![CDATA[(02) 6216 5473]]></phone>
+<email><![CDATA[info@avo.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 707, Civic Square ACT 2608]]></postalAddress>
+<id><![CDATA[5c58ad20-e79e-4b19-9137-649a4a1311a1]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111026174801.545+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport394.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&12227d28-fad1-4a4a-9a46-0ec42d8c5be8]]></websiteURI>
+<dn><![CDATA[ou=Australian War Memorial,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,ou=Department of Veterans' Affairs,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian War Memorial]]></name>
+<shortName><![CDATA[AWM]]></shortName>
+<phone><![CDATA[(02) 6243 4211]]></phone>
+<email><![CDATA[info@awm.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 345, Canberra, ACT 2601]]></postalAddress>
+<id><![CDATA[12227d28-fad1-4a4a-9a46-0ec42d8c5be8]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100803164744.643+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport395.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&25ddabcb-fac2-44ce-9b30-2cdc77b24a3a]]></websiteURI>
+<dn><![CDATA[ou=Australian Wine and Brandy Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Wine and Brandy Corporation]]></name>
+<shortName><![CDATA[AWBC]]></shortName>
+<phone><![CDATA[(08) 8228 2000]]></phone>
+<email><![CDATA[awbc@awbc.com.au]]></email>
+<postalAddress><![CDATA[PO Box 2733, Kent Town SA 5071]]></postalAddress>
+<id><![CDATA[25ddabcb-fac2-44ce-9b30-2cdc77b24a3a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110330164203.853+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport396.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b24313c5-4d20-4c6f-908e-3d70506f4184]]></websiteURI>
+<dn><![CDATA[ou=Bundanon Trust,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Bundanon Trust]]></name>
+<shortName><![CDATA[BT]]></shortName>
+<phone><![CDATA[(02) 4422 2100]]></phone>
+<postalAddress><![CDATA[PO Box 3343, Nowra North NSW 2541]]></postalAddress>
+<id><![CDATA[b24313c5-4d20-4c6f-908e-3d70506f4184]]></id>
+<category>B</category>
+<lastModified><![CDATA[20110316164131.032+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport397.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e1e5c5fd-9c29-4c5c-8581-921301b02f05]]></websiteURI>
+<dn><![CDATA[ou=Bureau of Meteorology,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Bureau of Meteorology]]></name>
+<shortName><![CDATA[CBOM]]></shortName>
+<phone><![CDATA[(03) 9669 4000]]></phone>
+<postalAddress><![CDATA[GPO Box 1289, Melbourne Vic 3001]]></postalAddress>
+<id><![CDATA[e1e5c5fd-9c29-4c5c-8581-921301b02f05]]></id>
+<category>B</category>
+<lastModified><![CDATA[20110301162806.189+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport398.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&bc09c118-cb23-4902-88bc-3141e9bb5f10]]></websiteURI>
+<dn><![CDATA[ou=Centre for Environment and Life Sciences,ou=Livestock Industries,ou=Food Health and Life Science Industries,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Centre for Environment and Life Sciences]]></name>
+<phone><![CDATA[(08) 9333 6000]]></phone>
+<postalAddress><![CDATA[Private Bag 5, Wembley WA 6913]]></postalAddress>
+<id><![CDATA[bc09c118-cb23-4902-88bc-3141e9bb5f10]]></id>
+<category>C</category>
+<lastModified><![CDATA[20100222170238.986+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport399.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f52a23d1-0328-4410-b374-71a2830f0da7]]></websiteURI>
+<dn><![CDATA[ou=Civil Aviation Safety Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Civil Aviation Safety Authority]]></name>
+<shortName><![CDATA[CASA]]></shortName>
+<phone><![CDATA[13 1757]]></phone>
+<postalAddress><![CDATA[Civil Aviation Safety Authority, GPO Box 2005, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[f52a23d1-0328-4410-b374-71a2830f0da7]]></id>
+<category>C</category>
+<lastModified><![CDATA[20100903104540.904+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport400.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&97267cec-7cbf-4cb3-ae75-ac37fdec07ff]]></websiteURI>
+<dn><![CDATA[ou=Coal Mining Industry (Long Service Leave Funding) Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Coal Mining Industry (Long Service Leave Funding) Corporation]]></name>
+<shortName><![CDATA[CMILSLFC]]></shortName>
+<phone><![CDATA[1300 366 212]]></phone>
+<email><![CDATA[lsl@auscoal.net.au]]></email>
+<postalAddress><![CDATA[Locked Bag 1, Warners Bay NSW 2282]]></postalAddress>
+<id><![CDATA[97267cec-7cbf-4cb3-ae75-ac37fdec07ff]]></id>
+<category>C</category>
+<lastModified><![CDATA[20110318154615.336+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport401.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e2d056d3-3999-4c23-a13c-a96099aa1e6b]]></websiteURI>
+<dn><![CDATA[ou=Comcare\, the Safety\, Rehabilitation and Compensation Commission\, and the Seafarers' Safety\, Rehabilitation and Compensation Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Comcare, the Safety, Rehabilitation and Compensation Commission, and the Seafarers' Safety, Rehabilitation and Compensation Authority]]></name>
+<shortName><![CDATA[COMCARE]]></shortName>
+<phone><![CDATA[1300 366 979]]></phone>
+<email><![CDATA[general.enquiries@comcare.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 9905, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[e2d056d3-3999-4c23-a13c-a96099aa1e6b]]></id>
+<category>C</category>
+<lastModified><![CDATA[20110926140445.811+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport402.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&9903fad1-0f1b-4af2-bc2c-3e410384db97]]></websiteURI>
+<dn><![CDATA[ou=Commonwealth Director of Public Prosecutions,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Commonwealth Director of Public Prosecutions]]></name>
+<shortName><![CDATA[CDPP]]></shortName>
+<phone><![CDATA[(02) 6206 5666]]></phone>
+<email><![CDATA[inquiries@cdpp.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 3104, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[9903fad1-0f1b-4af2-bc2c-3e410384db97]]></id>
+<category>C</category>
+<lastModified><![CDATA[20110330164406.786+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport403.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&af9feed9-581d-47d3-ab54-a2db15ad62cb]]></websiteURI>
+<dn><![CDATA[ou=Commonwealth Ombudsman,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Commonwealth Ombudsman]]></name>
+<shortName><![CDATA[CO]]></shortName>
+<phone><![CDATA[1300 362 072]]></phone>
+<email><![CDATA[ombudsman@ombudsman.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 442, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[af9feed9-581d-47d3-ab54-a2db15ad62cb]]></id>
+<category>C</category>
+<lastModified><![CDATA[20110705120131.076+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport404.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&1fe08312-9dbe-4a09-aebd-d8c695ccfb75]]></websiteURI>
+<dn><![CDATA[ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Commonwealth Scientific and Industrial Research Organisation (CSIRO)]]></name>
+<shortName><![CDATA[CSIRO]]></shortName>
+<phone><![CDATA[1300 363 400]]></phone>
+<email><![CDATA[enquiries@csiro.au]]></email>
+<postalAddress><![CDATA[PO Box 225, Dickson ACT 2602]]></postalAddress>
+<id><![CDATA[1fe08312-9dbe-4a09-aebd-d8c695ccfb75]]></id>
+<category>C</category>
+<lastModified><![CDATA[20100624173703.007+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport405.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&91e08fef-67c7-49bf-9861-d6ed368afd2b]]></websiteURI>
+<dn><![CDATA[ou=ComSuper,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[ComSuper]]></name>
+<shortName><![CDATA[ComSuper]]></shortName>
+<phone><![CDATA[1300 000 177]]></phone>
+<email><![CDATA[enquiries@comsuper.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 22, Belconnen ACT 2616]]></postalAddress>
+<id><![CDATA[91e08fef-67c7-49bf-9861-d6ed368afd2b]]></id>
+<category>C</category>
+<lastModified><![CDATA[20120210170933.026+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport406.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&cf4082f0-7cd3-47af-a6a7-e2fca0a5d43a]]></websiteURI>
+<dn><![CDATA[ou=Copyright Tribunal of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Copyright Tribunal of Australia]]></name>
+<shortName><![CDATA[ACopyT]]></shortName>
+<phone><![CDATA[(02) 9230 8567]]></phone>
+<email><![CDATA[query@fedcourt.gov.au]]></email>
+<id><![CDATA[cf4082f0-7cd3-47af-a6a7-e2fca0a5d43a]]></id>
+<category>C</category>
+<lastModified><![CDATA[20110330135924.529+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport407.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c90afe15-bebb-4bf3-82aa-d8f2d24aad27]]></websiteURI>
+<dn><![CDATA[ou=Cotton Research and Development Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Cotton Research and Development Corporation]]></name>
+<shortName><![CDATA[CRDC]]></shortName>
+<phone><![CDATA[(02) 6792 4088]]></phone>
+<email><![CDATA[crdc@crdc.com.au]]></email>
+<postalAddress><![CDATA[PO Box 282, Narrabri NSW 2390]]></postalAddress>
+<id><![CDATA[c90afe15-bebb-4bf3-82aa-d8f2d24aad27]]></id>
+<category>C</category>
+<lastModified><![CDATA[20110330163547.587+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport408.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3dafa32d-3a92-4999-ad64-6f04f377d4d1]]></websiteURI>
+<dn><![CDATA[ou=CrimTrac Agency,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[CrimTrac Agency]]></name>
+<phone><![CDATA[(02) 6268 7000]]></phone>
+<email><![CDATA[crimtrac@crimtrac.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 1573, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[3dafa32d-3a92-4999-ad64-6f04f377d4d1]]></id>
+<category>C</category>
+<lastModified><![CDATA[20111110095841.122+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport409.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&6d33a9f9-8b67-4bd1-8645-855600e1b95b]]></websiteURI>
+<dn><![CDATA[ou=Dairy Adjustment Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Dairy Adjustment Authority]]></name>
+<phone><![CDATA[1800 503 603]]></phone>
+<postalAddress><![CDATA[Locked Bag 104, Flinders Lane Vic 8009]]></postalAddress>
+<id><![CDATA[6d33a9f9-8b67-4bd1-8645-855600e1b95b]]></id>
+<category>D</category>
+<lastModified><![CDATA[20060918144538.120+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport410.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&1a49cf93-0843-44fe-a41d-526c1ecad05d]]></websiteURI>
+<dn><![CDATA[ou=Dairy Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Dairy Australia]]></name>
+<phone><![CDATA[(03) 9694 3777]]></phone>
+<email><![CDATA[enquiries@dairyaustralia.com.au]]></email>
+<postalAddress><![CDATA[Locked Bag 104, Flinders Lane Vic 8009]]></postalAddress>
+<id><![CDATA[1a49cf93-0843-44fe-a41d-526c1ecad05d]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110321173005.680+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport411.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d799edaa-6292-4e3a-aad6-7d18ddafd27b]]></websiteURI>
+<dn><![CDATA[ou=Defence Force Discipline Appeal Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Defence Force Discipline Appeal Tribunal]]></name>
+<shortName><![CDATA[DFDAT]]></shortName>
+<phone><![CDATA[(03) 8600 3505]]></phone>
+<id><![CDATA[d799edaa-6292-4e3a-aad6-7d18ddafd27b]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110324165118.374+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport412.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&945de891-8b80-450f-8813-d04a6be80d95]]></websiteURI>
+<dn><![CDATA[ou=Defence Force Remuneration Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Defence Force Remuneration Tribunal]]></name>
+<shortName><![CDATA[DFRT]]></shortName>
+<phone><![CDATA[(02) 6257 3855]]></phone>
+<email><![CDATA[dfrt@dfrt.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 2761, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[945de891-8b80-450f-8813-d04a6be80d95]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110729142834.591+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport413.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&582f06e9-06c2-4798-86dc-212d6fbaccab]]></websiteURI>
+<dn><![CDATA[ou=Defence Housing Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Defence Housing Australia]]></name>
+<shortName><![CDATA[DHA]]></shortName>
+<phone><![CDATA[13 9342]]></phone>
+<email><![CDATA[info@dha.gov.au]]></email>
+<postalAddress><![CDATA[26 Brisbane Ave, Barton ACT 2600]]></postalAddress>
+<id><![CDATA[582f06e9-06c2-4798-86dc-212d6fbaccab]]></id>
+<category>D</category>
+<lastModified><![CDATA[20111025123614.666+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport414.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&262998a8-ba59-48fc-af4f-7bd2d11be29f]]></websiteURI>
+<dn><![CDATA[ou=Defence Science and Technology Organisation,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Defence Science and Technology Organisation]]></name>
+<shortName><![CDATA[DSTO]]></shortName>
+<id><![CDATA[262998a8-ba59-48fc-af4f-7bd2d11be29f]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110920101124.317+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport415.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&6d3dc345-707c-4a49-89ce-17d250e013c3]]></websiteURI>
+<dn><![CDATA[ou=Department of Agriculture\, Fisheries and Forestry,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Agriculture, Fisheries and Forestry]]></name>
+<shortName><![CDATA[DAFF]]></shortName>
+<phone><![CDATA[(02) 6272 3933]]></phone>
+<email><![CDATA[webmaster@daff.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 858, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[6d3dc345-707c-4a49-89ce-17d250e013c3]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116100542.535+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport416.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b51b39ea-0b53-4e43-8562-baab3ea22637]]></websiteURI>
+<dn><![CDATA[ou=Department of Broadband\, Communications and the Digital Economy,o=Broadband\, Communications and the Digital Economy,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Broadband, Communications and the Digital Economy]]></name>
+<shortName><![CDATA[DBCDE]]></shortName>
+<phone><![CDATA[(02) 6271 1000]]></phone>
+<postalAddress><![CDATA[GPO Box 2154, Canberra  ACT  2601]]></postalAddress>
+<id><![CDATA[b51b39ea-0b53-4e43-8562-baab3ea22637]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116101407.458+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport417.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ab78b045-88ab-4089-bbcf-f28d97951c1d]]></websiteURI>
+<dn><![CDATA[ou=Department of Climate Change and Energy Efficiency,o=Climate Change and Energy Efficiency,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Climate Change and Energy Efficiency]]></name>
+<phone><![CDATA[(02) 6159 7000]]></phone>
+<email><![CDATA[communications@climatechange.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 854, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[ab78b045-88ab-4089-bbcf-f28d97951c1d]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110901105344.971+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport418.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&968c6f8d-84b1-42e7-9119-bbfc56d6d14b]]></websiteURI>
+<dn><![CDATA[ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Defence]]></name>
+<shortName><![CDATA[DEFENCE]]></shortName>
+<phone><![CDATA[(02) 6265 9111]]></phone>
+<postalAddress><![CDATA[Department of Defence, Canberra ACT 2600]]></postalAddress>
+<id><![CDATA[968c6f8d-84b1-42e7-9119-bbfc56d6d14b]]></id>
+<category>D</category>
+<lastModified><![CDATA[20111202144401.477+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport419.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&13e3d0b7-e537-47cd-beec-3f152cf8eb23]]></websiteURI>
+<dn><![CDATA[ou=Department of Education\, Employment and Workplace Relations,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Education, Employment and Workplace Relations]]></name>
+<shortName><![CDATA[DEEWR]]></shortName>
+<phone><![CDATA[(02) 6121 6000]]></phone>
+<postalAddress><![CDATA[GPO Box 9880, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[13e3d0b7-e537-47cd-beec-3f152cf8eb23]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110330160615.467+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport420.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2860cb08-ef99-4c78-957b-92062eafa5bc]]></websiteURI>
+<dn><![CDATA[ou=Department of Families\, Housing\, Community Services and Indigenous Affairs,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Families, Housing, Community Services and Indigenous Affairs]]></name>
+<shortName><![CDATA[FaHCSIA]]></shortName>
+<phone><![CDATA[1300 653 227]]></phone>
+<postalAddress><![CDATA[PO Box 7576, Canberra Business Centre, ACT 2610]]></postalAddress>
+<id><![CDATA[2860cb08-ef99-4c78-957b-92062eafa5bc]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116101510.484+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport421.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ce43db83-1978-4d9d-9720-ed87cc592ac7]]></websiteURI>
+<dn><![CDATA[ou=Department of Finance and Deregulation,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Finance and Deregulation]]></name>
+<shortName><![CDATA[Finance]]></shortName>
+<phone><![CDATA[(02) 6215 2222]]></phone>
+<id><![CDATA[ce43db83-1978-4d9d-9720-ed87cc592ac7]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110322141355.019+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport422.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&36c12646-7adc-4d77-8520-d79df2ca3110]]></websiteURI>
+<dn><![CDATA[ou=Department of Foreign Affairs and Trade,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Foreign Affairs and Trade]]></name>
+<shortName><![CDATA[DFAT]]></shortName>
+<phone><![CDATA[(02) 6261 1111]]></phone>
+<id><![CDATA[36c12646-7adc-4d77-8520-d79df2ca3110]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110324162650.584+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport423.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b83d88c7-b7e0-49e7-bf19-9680d8c72c4e]]></websiteURI>
+<dn><![CDATA[ou=Department of Health and Ageing,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Health and Ageing]]></name>
+<phone><![CDATA[(02) 6289 1555]]></phone>
+<postalAddress><![CDATA[GPO Box 9848, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[b83d88c7-b7e0-49e7-bf19-9680d8c72c4e]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116095923.653+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport424.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&25f88ea8-5bea-4778-bfe3-38ecbc0b8551]]></websiteURI>
+<dn><![CDATA[ou=Department of Human Services,o=Human Services,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Human Services]]></name>
+<shortName><![CDATA[DHS]]></shortName>
+<phone><![CDATA[(02) 6223 4000]]></phone>
+<email><![CDATA[enquiries@humanservices.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 3959, Manuka ACT 2603   ]]></postalAddress>
+<id><![CDATA[25f88ea8-5bea-4778-bfe3-38ecbc0b8551]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110715111457.055+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport425.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&54f5b9c4-d6fc-484d-9e5d-6ddb7088f4fd]]></websiteURI>
+<dn><![CDATA[ou=Department of Immigration and Citizenship,o=Immigration and Citizenship,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Immigration and Citizenship]]></name>
+<shortName><![CDATA[DIAC]]></shortName>
+<phone><![CDATA[ 131 881]]></phone>
+<postalAddress><![CDATA[PO Box 25, Belconnen ACT 2616]]></postalAddress>
+<id><![CDATA[54f5b9c4-d6fc-484d-9e5d-6ddb7088f4fd]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120215161612.984+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport426.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&297902c5-c814-4457-aca2-cdeb8fd3bf6b]]></websiteURI>
+<dn><![CDATA[ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Industry, Innovation, Science, Research and Tertiary Education]]></name>
+<shortName><![CDATA[IISR]]></shortName>
+<phone><![CDATA[(02) 6213 6000]]></phone>
+<postalAddress><![CDATA[GPO Box 9839, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[297902c5-c814-4457-aca2-cdeb8fd3bf6b]]></id>
+<category>D</category>
+<lastModified><![CDATA[20111216155553.526+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport427.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&80bf2b57-8c53-4f03-9a81-8709e5bf18dd]]></websiteURI>
+<dn><![CDATA[ou=Department of Infrastructure and Transport,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Infrastructure and Transport]]></name>
+<shortName><![CDATA[DOIT]]></shortName>
+<phone><![CDATA[(02) 6274 7111]]></phone>
+<email><![CDATA[publicaffairs@infrastructure.gov.au]]></email>
+<postalAddress><![CDATA[Department of Infrastructure and Transport, GPO Box 594, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[80bf2b57-8c53-4f03-9a81-8709e5bf18dd]]></id>
+<category>D</category>
+<lastModified><![CDATA[20100921104123.745+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport428.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&1de747d7-9db8-4929-88a1-7ab1289ac924]]></websiteURI>
+<dn><![CDATA[ou=Department of Parliamentary Services,o=Commonwealth Parliament,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Parliamentary Services]]></name>
+<postalAddress><![CDATA[Parliament House,  PO Box 6000, Canberra  ACT 2600]]></postalAddress>
+<id><![CDATA[1de747d7-9db8-4929-88a1-7ab1289ac924]]></id>
+<category>D</category>
+<lastModified><![CDATA[20100114091854.040+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport429.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&fca299eb-9f91-4e68-b31b-ca4f2259c535]]></websiteURI>
+<dn><![CDATA[ou=Department of Regional Australia\, Local Government\, Arts & Sport,o=Regional Australia\, Local Government\, Arts & Sport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Regional Australia, Local Government, Arts & Sport]]></name>
+<phone><![CDATA[(02) 6274 7977]]></phone>
+<postalAddress><![CDATA[GPO Box 803, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[fca299eb-9f91-4e68-b31b-ca4f2259c535]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120118093434.074+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport430.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&db8b240b-3152-4b89-bf67-e444c6c2332e]]></websiteURI>
+<dn><![CDATA[ou=Department of Resources\, Energy and Tourism,o=Resources\, Energy and Tourism,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Resources, Energy and Tourism]]></name>
+<shortName><![CDATA[RET]]></shortName>
+<phone><![CDATA[(02) 6276 1000]]></phone>
+<postalAddress><![CDATA[GPO Box 1564, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[db8b240b-3152-4b89-bf67-e444c6c2332e]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116102014.346+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport431.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ac6cced1-72ee-476a-a071-a5035a1277a2]]></websiteURI>
+<dn><![CDATA[ou=Department of Sustainability\, Environment\, Water\, Population and Communities,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Sustainability, Environment, Water, Population and Communities]]></name>
+<shortName><![CDATA[SEWPaC]]></shortName>
+<phone><![CDATA[(02) 6274 1111]]></phone>
+<postalAddress><![CDATA[GPO Box 787, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[ac6cced1-72ee-476a-a071-a5035a1277a2]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116102102.102+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport432.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c79d0a77-9094-4656-9291-6fcb17bca1f0]]></websiteURI>
+<dn><![CDATA[ou=Department of the Prime Minister and Cabinet,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of the Prime Minister and Cabinet]]></name>
+<shortName><![CDATA[DPMC]]></shortName>
+<phone><![CDATA[(02) 6271 5111]]></phone>
+<postalAddress><![CDATA[PO Box 6500 Canberra ACT 2600]]></postalAddress>
+<id><![CDATA[c79d0a77-9094-4656-9291-6fcb17bca1f0]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116101709.243+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport433.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&a605c6b2-e558-46c5-acf9-8bdb09f11a00]]></websiteURI>
+<dn><![CDATA[ou=Department of Veterans' Affairs,ou=Department of Veterans' Affairs,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Veterans' Affairs]]></name>
+<shortName><![CDATA[DVA]]></shortName>
+<phone><![CDATA[13 3254]]></phone>
+<postalAddress><![CDATA[PO Box 9998, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[a605c6b2-e558-46c5-acf9-8bdb09f11a00]]></id>
+<category>D</category>
+<lastModified><![CDATA[20100804143247.129+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport434.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f2b0ee40-5871-44c5-9a44-428f11d20a05]]></websiteURI>
+<dn><![CDATA[ou=Director of National Parks,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Director of National Parks]]></name>
+<phone><![CDATA[(02) 6274 2221]]></phone>
+<postalAddress><![CDATA[GPO Box 787, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[f2b0ee40-5871-44c5-9a44-428f11d20a05]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110311145744.797+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport435.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2035df71-ee40-47e6-a169-4c47a1268a16]]></websiteURI>
+<dn><![CDATA[ou=Ecosystems Sciences,ou=Environment,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Ecosystems Sciences]]></name>
+<phone><![CDATA[(02) 6242 1600]]></phone>
+<postalAddress><![CDATA[GPO Box 1700, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[2035df71-ee40-47e6-a169-4c47a1268a16]]></id>
+<category>E</category>
+<lastModified><![CDATA[20111220150942.018+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport436.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c33fc9de-d580-4630-a90a-2fa75c76bd17]]></websiteURI>
+<dn><![CDATA[ou=Energy Technology,ou=Energy,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Energy Technology]]></name>
+<phone><![CDATA[(02) 4960 6000]]></phone>
+<postalAddress><![CDATA[PO Box 330 Newcastle 2300]]></postalAddress>
+<id><![CDATA[c33fc9de-d580-4630-a90a-2fa75c76bd17]]></id>
+<category>E</category>
+<lastModified><![CDATA[20100222170235.796+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport437.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3ae5c888-5594-4f01-acdc-750660c6be71]]></websiteURI>
+<dn><![CDATA[ou=Equal Opportunity for Women in the Workplace Agency,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Equal Opportunity for Women in the Workplace Agency]]></name>
+<shortName><![CDATA[EOWA]]></shortName>
+<phone><![CDATA[(02) 9448 8500]]></phone>
+<email><![CDATA[eowa@eowa.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 712, North Sydney NSW 2059]]></postalAddress>
+<id><![CDATA[3ae5c888-5594-4f01-acdc-750660c6be71]]></id>
+<category>E</category>
+<lastModified><![CDATA[20110330141305.465+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport438.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2ccc72b1-a562-4fb1-a948-22ec69c8dc62]]></websiteURI>
+<dn><![CDATA[ou=Export Finance and Insurance Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Export Finance and Insurance Corporation]]></name>
+<shortName><![CDATA[EFIC]]></shortName>
+<phone><![CDATA[(02) 9201 2111]]></phone>
+<email><![CDATA[info@efic.gov.au]]></email>
+<postalAddress><![CDATA[PO Box R65, Royal Exchange NSW 1223]]></postalAddress>
+<id><![CDATA[2ccc72b1-a562-4fb1-a948-22ec69c8dc62]]></id>
+<category>E</category>
+<lastModified><![CDATA[20100624173819.862+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport439.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&31bb7863-c018-475a-a496-7cd5c8882228]]></websiteURI>
+<dn><![CDATA[ou=Fair Work Australia,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Fair Work Australia]]></name>
+<phone><![CDATA[(03) 8661 7777]]></phone>
+<postalAddress><![CDATA[GPO Box 1994, Melbourne Vic 3001]]></postalAddress>
+<id><![CDATA[31bb7863-c018-475a-a496-7cd5c8882228]]></id>
+<category>F</category>
+<lastModified><![CDATA[20110401142455.528+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport440.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e713f18a-1d62-4295-9de4-36caff88040f]]></websiteURI>
+<dn><![CDATA[ou=Fair Work Ombudsman,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Fair Work Ombudsman]]></name>
+<shortName><![CDATA[FWO]]></shortName>
+<phone><![CDATA[Fair Work Infoline 13 13 94]]></phone>
+<postalAddress><![CDATA[Fair Work Ombudsman, GPO Box 9887, In your capital city]]></postalAddress>
+<id><![CDATA[e713f18a-1d62-4295-9de4-36caff88040f]]></id>
+<category>F</category>
+<lastModified><![CDATA[20110316160734.280+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport441.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ce3d3fd4-ca6a-4558-b97d-8e2d2e9c7158]]></websiteURI>
+<dn><![CDATA[ou=Family Court of Australia,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Family Court of Australia]]></name>
+<phone><![CDATA[(02) 6243 8600]]></phone>
+<postalAddress><![CDATA[GPO Box 9991 Canberra  ACT  2601]]></postalAddress>
+<id><![CDATA[ce3d3fd4-ca6a-4558-b97d-8e2d2e9c7158]]></id>
+<category>F</category>
+<lastModified><![CDATA[20110330142743.374+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport442.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&90ce659d-5b38-4409-8c83-34cd115335eb]]></websiteURI>
+<dn><![CDATA[ou=Federal Court of Australia,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Federal Court of Australia]]></name>
+<phone><![CDATA[(02) 9230 8473]]></phone>
+<email><![CDATA[query@fedcourt.gov.au]]></email>
+<id><![CDATA[90ce659d-5b38-4409-8c83-34cd115335eb]]></id>
+<category>F</category>
+<lastModified><![CDATA[20100624173750.518+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport443.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&763e6e72-5d02-4cf9-8165-db8cbaae67bc]]></websiteURI>
+<dn><![CDATA[ou=Federal Magistrates Court of Australia,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Federal Magistrates Court of Australia]]></name>
+<shortName><![CDATA[FMC]]></shortName>
+<phone><![CDATA[1300 352 000]]></phone>
+<email><![CDATA[customer.service@fmc.gov.au]]></email>
+<id><![CDATA[763e6e72-5d02-4cf9-8165-db8cbaae67bc]]></id>
+<category>F</category>
+<lastModified><![CDATA[20100818165457.809+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport444.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7c0d23c0-8d55-45ce-ae8f-44d416aa74f7]]></websiteURI>
+<dn><![CDATA[ou=Federal Police Disciplinary Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Federal Police Disciplinary Tribunal]]></name>
+<shortName><![CDATA[FPDT]]></shortName>
+<phone><![CDATA[(02) 9230 8567]]></phone>
+<id><![CDATA[7c0d23c0-8d55-45ce-ae8f-44d416aa74f7]]></id>
+<category>F</category>
+<lastModified><![CDATA[20110330170343.651+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport445.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f9c7e1f4-4f6b-4a3a-a51f-a5eaf2229147]]></websiteURI>
+<dn><![CDATA[ou=Fisheries Research and Development Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Fisheries Research and Development Corporation]]></name>
+<shortName><![CDATA[FRDC]]></shortName>
+<phone><![CDATA[(02) 6285 0400]]></phone>
+<email><![CDATA[frdc@frdc.com.au]]></email>
+<postalAddress><![CDATA[PO Box 222, Deakin West ACT 2600]]></postalAddress>
+<id><![CDATA[f9c7e1f4-4f6b-4a3a-a51f-a5eaf2229147]]></id>
+<category>F</category>
+<lastModified><![CDATA[20110321160340.494+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport446.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&fe226117-689f-4655-85b4-33599a6c80d9]]></websiteURI>
+<dn><![CDATA[ou=Food and Nutritional Sciences,ou=Food Health and Life Science Industries,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Food and Nutritional Sciences]]></name>
+<phone><![CDATA[1300 363 400]]></phone>
+<postalAddress><![CDATA[PO Box 52, North Ryde NSW 1670]]></postalAddress>
+<id><![CDATA[fe226117-689f-4655-85b4-33599a6c80d9]]></id>
+<category>F</category>
+<lastModified><![CDATA[20100429090640.811+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport447.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d5c32b62-fa7e-4d69-a962-4787683cd18f]]></websiteURI>
+<dn><![CDATA[ou=Food Standards Australia New Zealand,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Food Standards Australia New Zealand]]></name>
+<shortName><![CDATA[FSANZ]]></shortName>
+<id><![CDATA[d5c32b62-fa7e-4d69-a962-4787683cd18f]]></id>
+<category>F</category>
+<lastModified><![CDATA[20120220104417.955+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport448.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2cae7992-8cba-4b10-abe3-7c30c96582b1]]></websiteURI>
+<dn><![CDATA[ou=Forest and Wood Products Australia Limited,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Forest and Wood Products Australia Limited]]></name>
+<shortName><![CDATA[FWPRDC FWPAL]]></shortName>
+<phone><![CDATA[(03) 9614 7544]]></phone>
+<email><![CDATA[info@fwpa.com.au]]></email>
+<postalAddress><![CDATA[Level 4, 10-16 Queen Street Melbourne Vic 3000]]></postalAddress>
+<id><![CDATA[2cae7992-8cba-4b10-abe3-7c30c96582b1]]></id>
+<category>F</category>
+<lastModified><![CDATA[20110317153120.909+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport449.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7bddbdb7-6cd9-43d1-aa5a-f589d26009ea]]></websiteURI>
+<dn><![CDATA[ou=Future Fund Management Agency,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Future Fund Management Agency]]></name>
+<phone><![CDATA[(03) 8656 6400]]></phone>
+<postalAddress><![CDATA[Locked Bag 20010, Melbourne Vic 3000]]></postalAddress>
+<id><![CDATA[7bddbdb7-6cd9-43d1-aa5a-f589d26009ea]]></id>
+<category>F</category>
+<lastModified><![CDATA[20100430112436.365+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport450.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&660ab416-9b1a-4fc1-b5a7-4b6cb871e715]]></websiteURI>
+<dn><![CDATA[ou=Geoscience Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Resources\, Energy and Tourism,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Geoscience Australia]]></name>
+<phone><![CDATA[(02) 6249 9111]]></phone>
+<email><![CDATA[sales@ga.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 378, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[660ab416-9b1a-4fc1-b5a7-4b6cb871e715]]></id>
+<category>G</category>
+<lastModified><![CDATA[20111125153229.952+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport451.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d39c716a-c989-4268-a851-a43fe93526b1]]></websiteURI>
+<dn><![CDATA[ou=Governance and Reporting,ou=Corporate Services,ou=Department of Infrastructure and Transport,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Governance and Reporting]]></name>
+<phone><![CDATA[(02) 6274 7111]]></phone>
+<email><![CDATA[publicaffairs@infrastructure.gov.au]]></email>
+<postalAddress><![CDATA[Governance and Reporting, Corporate Services, GPO Box 594, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[d39c716a-c989-4268-a851-a43fe93526b1]]></id>
+<category>G</category>
+<lastModified><![CDATA[20100923173235.398+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport452.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&615d4375-a1e4-4628-846f-42d73e679eb5]]></websiteURI>
+<dn><![CDATA[ou=Grains Research and Development Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Grains Research and Development Corporation]]></name>
+<shortName><![CDATA[GRDC]]></shortName>
+<phone><![CDATA[(02) 6166 4500]]></phone>
+<email><![CDATA[grdc@grdc.com.au]]></email>
+<postalAddress><![CDATA[PO Box 5367, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[615d4375-a1e4-4628-846f-42d73e679eb5]]></id>
+<category>G</category>
+<lastModified><![CDATA[20110330134555.698+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport453.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&526d1dbd-b5a4-4708-ab6d-7c4127e10f8b]]></websiteURI>
+<dn><![CDATA[ou=Grape and Wine Research and Development Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Grape and Wine Research and Development Corporation]]></name>
+<shortName><![CDATA[GWRDC]]></shortName>
+<phone><![CDATA[(08) 8273 0500]]></phone>
+<email><![CDATA[gwrdc@gwrdc.com.au]]></email>
+<postalAddress><![CDATA[PO Box 221, Goodwood SA 5034]]></postalAddress>
+<id><![CDATA[526d1dbd-b5a4-4708-ab6d-7c4127e10f8b]]></id>
+<category>G</category>
+<lastModified><![CDATA[20110321150730.747+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport454.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&23ce4126-daa8-443f-b357-4af715c92f1b]]></websiteURI>
+<dn><![CDATA[ou=Great Barrier Reef Marine Park Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Great Barrier Reef Marine Park Authority]]></name>
+<shortName><![CDATA[GBRMPA]]></shortName>
+<phone><![CDATA[(07) 4750 0700]]></phone>
+<postalAddress><![CDATA[PO Box 1379, Townsville Qld 4810]]></postalAddress>
+<id><![CDATA[23ce4126-daa8-443f-b357-4af715c92f1b]]></id>
+<category>G</category>
+<lastModified><![CDATA[20110329131735.696+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport455.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&360d3210-ca6e-46e4-ac09-dc4fb8abff88]]></websiteURI>
+<dn><![CDATA[ou=High Court of Australia,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[High Court of Australia]]></name>
+<phone><![CDATA[(02) 6270 6811]]></phone>
+<postalAddress><![CDATA[PO Box 6309, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[360d3210-ca6e-46e4-ac09-dc4fb8abff88]]></id>
+<category>H</category>
+<lastModified><![CDATA[20100624173843.935+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport456.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d9103cac-5d65-47dc-a53e-0dd7900326c1]]></websiteURI>
+<dn><![CDATA[ou=Indigenous Business Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Indigenous Business Australia]]></name>
+<shortName><![CDATA[IBA]]></shortName>
+<phone><![CDATA[1800 107 107]]></phone>
+<postalAddress><![CDATA[PO Box 38, Woden ACT 2606]]></postalAddress>
+<id><![CDATA[d9103cac-5d65-47dc-a53e-0dd7900326c1]]></id>
+<category>I</category>
+<lastModified><![CDATA[20100921120433.699+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport457.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f9d333d8-238b-4528-ab7b-d1849a0ac47d]]></websiteURI>
+<dn><![CDATA[ou=Indigenous Land Corporation (ILC),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Indigenous Land Corporation (ILC)]]></name>
+<shortName><![CDATA[ILC]]></shortName>
+<phone><![CDATA[(08) 8100 7100]]></phone>
+<email><![CDATA[ilcinfo@ilc.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 652, Adelaide SA 5001]]></postalAddress>
+<id><![CDATA[f9d333d8-238b-4528-ab7b-d1849a0ac47d]]></id>
+<category>I</category>
+<lastModified><![CDATA[20110708155919.446+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport458.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&bbb6c0b8-c151-4918-8a44-5e96f64c50a1]]></websiteURI>
+<dn><![CDATA[ou=Industrial Relations Court of Australia,ou=Federal Court of Australia,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Industrial Relations Court of Australia]]></name>
+<shortName><![CDATA[IRCA]]></shortName>
+<phone><![CDATA[(02) 9230 8567]]></phone>
+<id><![CDATA[bbb6c0b8-c151-4918-8a44-5e96f64c50a1]]></id>
+<category>I</category>
+<lastModified><![CDATA[20110330134013.674+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport459.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7dc6ce1e-4899-4419-8333-dcbb51fda65b]]></websiteURI>
+<dn><![CDATA[ou=Insolvency and Trustee Service\, Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Insolvency and Trustee Service, Australia]]></name>
+<shortName><![CDATA[ITSA]]></shortName>
+<phone><![CDATA[(02) 6270 3400]]></phone>
+<email><![CDATA[itsa.national@itsa.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 821, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[7dc6ce1e-4899-4419-8333-dcbb51fda65b]]></id>
+<category>I</category>
+<lastModified><![CDATA[20110316163525.431+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport460.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2177d11c-8da3-4368-86f4-fc8066b90348]]></websiteURI>
+<dn><![CDATA[ou=Inspector-General of Intelligence and Security,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Inspector-General of Intelligence and Security]]></name>
+<shortName><![CDATA[IGIS]]></shortName>
+<phone><![CDATA[(02) 6271 5692]]></phone>
+<email><![CDATA[info@igis.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 6181, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[2177d11c-8da3-4368-86f4-fc8066b90348]]></id>
+<category>I</category>
+<lastModified><![CDATA[20100624173732.551+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport461.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8c0e5947-c394-435f-95f4-84fe22c21663]]></websiteURI>
+<dn><![CDATA[ou=Inspector-General of Taxation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Inspector-General of Taxation]]></name>
+<shortName><![CDATA[IGT]]></shortName>
+<phone><![CDATA[(02) 8239 2111]]></phone>
+<email><![CDATA[enquires@igt.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 551, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[8c0e5947-c394-435f-95f4-84fe22c21663]]></id>
+<category>I</category>
+<lastModified><![CDATA[20100624173815.648+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport462.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e62e5f08-db52-4568-b2dc-253097db8ae4]]></websiteURI>
+<dn><![CDATA[ou=Inspector-General of the Australian Defence Force,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Inspector-General of the Australian Defence Force]]></name>
+<shortName><![CDATA[IGADF]]></shortName>
+<phone><![CDATA[1800 688 042]]></phone>
+<email><![CDATA[ig.adf@defence.gov.au]]></email>
+<postalAddress><![CDATA[Department of Defence, 91NBA-2-44, Canberra ACT 2600]]></postalAddress>
+<id><![CDATA[e62e5f08-db52-4568-b2dc-253097db8ae4]]></id>
+<category>I</category>
+<lastModified><![CDATA[20100920154652.970+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport463.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&57510111-653c-4b5d-bfb6-bbee80fbc8bd]]></websiteURI>
+<dn><![CDATA[ou=International Air Services Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[International Air Services Commission]]></name>
+<shortName><![CDATA[IASC]]></shortName>
+<phone><![CDATA[(02) 6267 1100]]></phone>
+<email><![CDATA[iasc@infrastructure.gov.au]]></email>
+<postalAddress><![CDATA[International Air Services Commission, GPO Box 630, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[57510111-653c-4b5d-bfb6-bbee80fbc8bd]]></id>
+<category>I</category>
+<lastModified><![CDATA[20100624173816.433+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport464.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ebe0c538-e47a-45f5-a02d-66da091950b4]]></websiteURI>
+<dn><![CDATA[ou=Ionospheric Prediction Service (IPS),ou=Research and Systems Division,ou=Bureau of Meteorology,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Ionospheric Prediction Service (IPS)]]></name>
+<phone><![CDATA[(02) 9213 8000]]></phone>
+<postalAddress><![CDATA[PO Box 1386, Haymarket NSW 1240 Australia]]></postalAddress>
+<id><![CDATA[ebe0c538-e47a-45f5-a02d-66da091950b4]]></id>
+<category>I</category>
+<lastModified><![CDATA[20120103144554.048+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport465.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c64c5c84-9994-4358-b828-eaa690091a4d]]></websiteURI>
+<dn><![CDATA[ou=IP (Intellectual Property) Australia,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[IP (Intellectual Property) Australia]]></name>
+<shortName><![CDATA[IP IPA]]></shortName>
+<email><![CDATA[assist@ipaustralia.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 200, Woden ACT 2606]]></postalAddress>
+<id><![CDATA[c64c5c84-9994-4358-b828-eaa690091a4d]]></id>
+<category>I</category>
+<lastModified><![CDATA[20110404101954.489+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport466.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d41ce663-adc7-4fda-af62-d3707884fb15]]></websiteURI>
+<dn><![CDATA[ou=Land and Water Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Land and Water Australia]]></name>
+<shortName><![CDATA[Land & Water Australia LWA]]></shortName>
+<phone><![CDATA[(02) 6263 6000]]></phone>
+<email><![CDATA[Land&WaterAustralia@lwa.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 2182, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[d41ce663-adc7-4fda-af62-d3707884fb15]]></id>
+<category>L</category>
+<lastModified><![CDATA[20110317101939.083+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport467.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&a02e9587-54a9-4033-9c75-c1824ad735ec]]></websiteURI>
+<dn><![CDATA[ou=Marine and Atmospheric Research,ou=Environment,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Marine and Atmospheric Research]]></name>
+<phone><![CDATA[(03) 6232 5222]]></phone>
+<postalAddress><![CDATA[GPO Box 1538]]></postalAddress>
+<id><![CDATA[a02e9587-54a9-4033-9c75-c1824ad735ec]]></id>
+<category>M</category>
+<lastModified><![CDATA[20100222170236.333+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport468.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e0ead54d-4049-410e-9481-bebda8f7a833]]></websiteURI>
+<dn><![CDATA[ou=Maritime Development Branch,ou=Capability Systems,ou=Capability Development Group,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Maritime Development Branch]]></name>
+<phone><![CDATA[(02) 6265 6606]]></phone>
+<email><![CDATA[robert.elliott6@defence.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 7905, Russell Offices, CANBERRA  BC ACT 2610]]></postalAddress>
+<id><![CDATA[e0ead54d-4049-410e-9481-bebda8f7a833]]></id>
+<category>M</category>
+<lastModified><![CDATA[20111213122105.125+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport469.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&a40fbb78-6586-45c6-a671-17409c6d5c7a]]></websiteURI>
+<dn><![CDATA[ou=Materials Science and Engineering,ou=Manufacturing Materials & Minerals,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Materials Science and Engineering]]></name>
+<phone><![CDATA[(03) 9545 2777]]></phone>
+<postalAddress><![CDATA[Private Bag 33, Clayton South Vic 3169 ]]></postalAddress>
+<id><![CDATA[a40fbb78-6586-45c6-a671-17409c6d5c7a]]></id>
+<category>M</category>
+<lastModified><![CDATA[20110322172952.638+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport470.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&cd26aeec-5026-4d32-8cea-5fee3bf9f514]]></websiteURI>
+<dn><![CDATA[ou=Mathematics\, Informatics and Statistics,ou=Information Sciences,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Mathematics, Informatics and Statistics]]></name>
+<phone><![CDATA[(02) 9325 3100]]></phone>
+<postalAddress><![CDATA[Locked Bag 17, North Ryde NSW 1670]]></postalAddress>
+<id><![CDATA[cd26aeec-5026-4d32-8cea-5fee3bf9f514]]></id>
+<category>M</category>
+<lastModified><![CDATA[20110317153226.931+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport471.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&de3cfd8a-56f1-49d3-a1b0-f06df17897c0]]></websiteURI>
+<dn><![CDATA[ou=Meat and Livestock Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Meat and Livestock Australia]]></name>
+<shortName><![CDATA[MLA]]></shortName>
+<phone><![CDATA[(02) 9463 9333]]></phone>
+<postalAddress><![CDATA[Locked Bag 991, North Sydney NSW 2059]]></postalAddress>
+<id><![CDATA[de3cfd8a-56f1-49d3-a1b0-f06df17897c0]]></id>
+<category>M</category>
+<lastModified><![CDATA[20110317161745.155+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport472.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2f90ff64-79f5-450f-8397-c7662378b3d9]]></websiteURI>
+<dn><![CDATA[ou=Medibank Health Solutions Pty Ltd,ou=Medibank Private Ltd,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Medibank Health Solutions Pty Ltd]]></name>
+<phone><![CDATA[03 8622 5163 (for media inquires)]]></phone>
+<postalAddress><![CDATA[Medibank Health Solutions, GPO Box 9821 in your capital city]]></postalAddress>
+<id><![CDATA[2f90ff64-79f5-450f-8397-c7662378b3d9]]></id>
+<category>M</category>
+<lastModified><![CDATA[20101028150355.399+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport473.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8b721ff8-a3ff-494d-be55-eec06100b6f5]]></websiteURI>
+<dn><![CDATA[ou=Medibank Private Ltd,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Medibank Private Ltd]]></name>
+<phone><![CDATA[(03) 8622 5163 (for media inquiries)]]></phone>
+<postalAddress><![CDATA[Medibank Private, GPO Box 9999 (your capital city)]]></postalAddress>
+<id><![CDATA[8b721ff8-a3ff-494d-be55-eec06100b6f5]]></id>
+<category>M</category>
+<lastModified><![CDATA[20100430112434.850+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport474.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&bcc045f9-48e9-49ce-9607-b6b3886b4f67]]></websiteURI>
+<dn><![CDATA[ou=Migration Review Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Immigration and Citizenship,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Migration Review Tribunal]]></name>
+<shortName><![CDATA[MRT]]></shortName>
+<phone><![CDATA[(02) 9276 5000]]></phone>
+<email><![CDATA[enquiries@mrt-rrt.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 1333, Sydney  NSW  2001]]></postalAddress>
+<id><![CDATA[bcc045f9-48e9-49ce-9607-b6b3886b4f67]]></id>
+<category>M</category>
+<lastModified><![CDATA[20120106120717.922+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport475.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c27aedfb-2d8c-492e-9cdd-aa25982c0b05]]></websiteURI>
+<dn><![CDATA[ou=Museum of Australian Democracy at Old Parliament House,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Museum of Australian Democracy at Old Parliament House]]></name>
+<shortName><![CDATA[MOAD]]></shortName>
+<phone><![CDATA[(02) 6270 8222]]></phone>
+<postalAddress><![CDATA[PO Box 7088  Canberra  BC ACT  2610]]></postalAddress>
+<id><![CDATA[c27aedfb-2d8c-492e-9cdd-aa25982c0b05]]></id>
+<category>M</category>
+<lastModified><![CDATA[20110316172145.359+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport476.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&aaf23310-4c92-48c0-9ac9-c0e19be27677]]></websiteURI>
+<dn><![CDATA[ou=National Archives of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Archives of Australia]]></name>
+<shortName><![CDATA[NAA]]></shortName>
+<phone><![CDATA[(02) 6212 3600]]></phone>
+<email><![CDATA[archives@naa.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 7425, Canberra Business Centre ACT 2610]]></postalAddress>
+<id><![CDATA[aaf23310-4c92-48c0-9ac9-c0e19be27677]]></id>
+<category>N</category>
+<lastModified><![CDATA[20111122153106.267+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport477.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&641a9d13-93bf-4a04-b265-f26a2f096694]]></websiteURI>
+<dn><![CDATA[ou=National Capital Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Capital Authority]]></name>
+<shortName><![CDATA[NCA]]></shortName>
+<phone><![CDATA[(02) 6271 2888]]></phone>
+<email><![CDATA[natcap@natcap.gov.au]]></email>
+<postalAddress><![CDATA[National Capital Authority, GPO Box 373, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[641a9d13-93bf-4a04-b265-f26a2f096694]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110310153612.839+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport478.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&42296340-b8e6-473d-9a62-365b408708d8]]></websiteURI>
+<dn><![CDATA[ou=National Film and Sound Archive,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Film and Sound Archive]]></name>
+<shortName><![CDATA[NFSA]]></shortName>
+<phone><![CDATA[(02) 6248 2000]]></phone>
+<email><![CDATA[enquiries@nfsa.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 2002, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[42296340-b8e6-473d-9a62-365b408708d8]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110614140526.867+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport479.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&5f55f1e0-1baf-44d1-9da8-e1739527b9d7]]></websiteURI>
+<dn><![CDATA[ou=National Gallery of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Gallery of Australia]]></name>
+<shortName><![CDATA[NGA]]></shortName>
+<phone><![CDATA[(02) 6240 6411]]></phone>
+<postalAddress><![CDATA[GPO Box 1150, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[5f55f1e0-1baf-44d1-9da8-e1739527b9d7]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110330140654.339+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport480.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&759b92c3-579d-4b68-bff5-d7bc78d4a91d]]></websiteURI>
+<dn><![CDATA[ou=National Library of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Library of Australia]]></name>
+<shortName><![CDATA[NLA]]></shortName>
+<phone><![CDATA[(02) 6262 1111]]></phone>
+<email><![CDATA[info@nla.gov.au]]></email>
+<postalAddress><![CDATA[Parkes Place, Canberra  ACT 2600]]></postalAddress>
+<id><![CDATA[759b92c3-579d-4b68-bff5-d7bc78d4a91d]]></id>
+<category>N</category>
+<lastModified><![CDATA[20111201140057.098+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport481.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2127322f-2af5-49e8-a925-41dc1542a702]]></websiteURI>
+<dn><![CDATA[ou=National Marine Safety Committee,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Marine Safety Committee]]></name>
+<shortName><![CDATA[NMSC]]></shortName>
+<phone><![CDATA[(02) 9247 2124]]></phone>
+<id><![CDATA[2127322f-2af5-49e8-a925-41dc1542a702]]></id>
+<category>N</category>
+<lastModified><![CDATA[20100521142043.175+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport482.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&66cbe438-db1c-4da6-b3c3-88478520e38b]]></websiteURI>
+<dn><![CDATA[ou=National Measurement Institute,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Measurement Institute]]></name>
+<shortName><![CDATA[NMI]]></shortName>
+<phone><![CDATA[(02) 8467 3600]]></phone>
+<email><![CDATA[info@measurement.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 264, Lindfield NSW 2070]]></postalAddress>
+<id><![CDATA[66cbe438-db1c-4da6-b3c3-88478520e38b]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110317143507.299+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport483.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f6b2f75f-5792-4f6f-a6a8-04afba107eec]]></websiteURI>
+<dn><![CDATA[ou=National Museum of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Museum of Australia]]></name>
+<shortName><![CDATA[NMA]]></shortName>
+<phone><![CDATA[(02) 6208 5000]]></phone>
+<email><![CDATA[information@nma.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 1901, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[f6b2f75f-5792-4f6f-a6a8-04afba107eec]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110322113402.079+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport484.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d4466d97-1606-48b9-a34f-87b34e549c06]]></websiteURI>
+<dn><![CDATA[ou=National Native Title Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Native Title Tribunal]]></name>
+<shortName><![CDATA[NNTT]]></shortName>
+<phone><![CDATA[(08) 9425 1000]]></phone>
+<email><![CDATA[enquiries@nntt.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 9973 in your capital city]]></postalAddress>
+<id><![CDATA[d4466d97-1606-48b9-a34f-87b34e549c06]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110905114934.329+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport485.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&39b5513b-5dd0-4766-9189-42f71921bce3]]></websiteURI>
+<dn><![CDATA[ou=National Offshore Petroleum Safety and Environmental Management Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Resources\, Energy and Tourism,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Offshore Petroleum Safety and Environmental Management Authority]]></name>
+<shortName><![CDATA[NOPSEMA]]></shortName>
+<phone><![CDATA[(08) 6188 8700]]></phone>
+<email><![CDATA[communications@nopsema.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 2568, Perth WA 6001]]></postalAddress>
+<id><![CDATA[39b5513b-5dd0-4766-9189-42f71921bce3]]></id>
+<category>N</category>
+<lastModified><![CDATA[20120111164027.621+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport486.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&32764ed3-0e83-48ca-a3d7-f2e5353d9ff8]]></websiteURI>
+<dn><![CDATA[ou=National Transport Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Transport Commission]]></name>
+<shortName><![CDATA[NTC]]></shortName>
+<phone><![CDATA[(03) 9236 5000]]></phone>
+<email><![CDATA[ntc@ntc.gov.au]]></email>
+<postalAddress><![CDATA[L15/628 Bourke Street Melbourne VIC 3000]]></postalAddress>
+<id><![CDATA[32764ed3-0e83-48ca-a3d7-f2e5353d9ff8]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110321172355.125+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport487.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8bc0eef0-903b-49e3-bed5-8e8365a5595a]]></websiteURI>
+<dn><![CDATA[ou=National Water Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Water Commission]]></name>
+<phone><![CDATA[(02) 6102 6000]]></phone>
+<email><![CDATA[enquiries@nwc.gov.au]]></email>
+<postalAddress><![CDATA[95 Northbourne Avenue Canberra  ACT  2600]]></postalAddress>
+<id><![CDATA[8bc0eef0-903b-49e3-bed5-8e8365a5595a]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110330110804.367+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport488.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f8d3e86c-47f5-48f4-91cc-d675abe0dca5]]></websiteURI>
+<dn><![CDATA[ou=Navy,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Navy]]></name>
+<id><![CDATA[f8d3e86c-47f5-48f4-91cc-d675abe0dca5]]></id>
+<category>N</category>
+<lastModified><![CDATA[20100624173752.656+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport489.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&69c0c10b-8646-4d4e-b062-1f644015bb19]]></websiteURI>
+<dn><![CDATA[ou=Northern Territory Fisheries Joint Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Northern Territory Fisheries Joint Authority]]></name>
+<shortName><![CDATA[NTFJA]]></shortName>
+<phone><![CDATA[(08) 8999 2144]]></phone>
+<postalAddress><![CDATA[GPO Box 3000, Darwin NT 0801]]></postalAddress>
+<id><![CDATA[69c0c10b-8646-4d4e-b062-1f644015bb19]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110330171443.353+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport490.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7db9d29d-5444-45c2-8ed3-795e8324e400]]></websiteURI>
+<dn><![CDATA[ou=Northern Territory Land Councils,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Northern Territory Land Councils]]></name>
+<shortName><![CDATA[ALC]]></shortName>
+<phone><![CDATA[(08) 8981 1799]]></phone>
+<postalAddress><![CDATA[GPO Box 2289, Darwin NT 0801]]></postalAddress>
+<id><![CDATA[7db9d29d-5444-45c2-8ed3-795e8324e400]]></id>
+<category>N</category>
+<lastModified><![CDATA[20090203143546.949+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport491.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8c49fd67-47de-4add-b7c5-f4a7c596a74f]]></websiteURI>
+<dn><![CDATA[ou=Office of Best Practice Regulation,ou=Deregulation Group,ou=Central Office,ou=Department of Finance and Deregulation,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of Best Practice Regulation]]></name>
+<shortName><![CDATA[OBPR]]></shortName>
+<id><![CDATA[8c49fd67-47de-4add-b7c5-f4a7c596a74f]]></id>
+<category>O</category>
+<lastModified><![CDATA[20100430112435.104+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport492.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&39e54c6f-4929-4df6-b4fc-3d172faf7265]]></websiteURI>
+<dn><![CDATA[ou=Office of National Assessments,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of National Assessments]]></name>
+<shortName><![CDATA[ONA]]></shortName>
+<phone><![CDATA[(02) 6266 0900]]></phone>
+<postalAddress><![CDATA[Locked Bag 6310, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[39e54c6f-4929-4df6-b4fc-3d172faf7265]]></id>
+<category>O</category>
+<lastModified><![CDATA[20110727111504.549+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport493.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f126a1b5-7c88-4875-ae1a-3fe64ab3098e]]></websiteURI>
+<dn><![CDATA[ou=Office of Parliamentary Counsel,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of Parliamentary Counsel]]></name>
+<shortName><![CDATA[OPC]]></shortName>
+<phone><![CDATA[(02) 6270 1400]]></phone>
+<email><![CDATA[first name.last name@opc.gov.au (all lower case)]]></email>
+<postalAddress><![CDATA[Locked Bag 30, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[f126a1b5-7c88-4875-ae1a-3fe64ab3098e]]></id>
+<category>O</category>
+<lastModified><![CDATA[20111220161428.026+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport494.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&383f3e0e-7c64-4c61-902f-2818b923f12c]]></websiteURI>
+<dn><![CDATA[ou=Office of the Australian Information Commissioner,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of the Australian Information Commissioner]]></name>
+<shortName><![CDATA[OAIC]]></shortName>
+<phone><![CDATA[1300 363 992]]></phone>
+<email><![CDATA[enquiries@oaic.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 5218, Sydney NSW 2001 or GPO Box 2999, Canberra City, ACT, 2601]]></postalAddress>
+<id><![CDATA[383f3e0e-7c64-4c61-902f-2818b923f12c]]></id>
+<category>O</category>
+<lastModified><![CDATA[20111101133127.647+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport495.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&25178be1-d1b7-4225-9ff4-6681b56996b5]]></websiteURI>
+<dn><![CDATA[ou=Office of the Inspector of Transport Security,ou=Department of Infrastructure and Transport,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of the Inspector of Transport Security]]></name>
+<phone><![CDATA[(02) 6274 7111]]></phone>
+<email><![CDATA[publicaffairs@infrastructure.gov.au]]></email>
+<postalAddress><![CDATA[Office of the Inspector of Transport Security, Department of Infrastructure and Transport, GPO Box 594, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[25178be1-d1b7-4225-9ff4-6681b56996b5]]></id>
+<category>O</category>
+<lastModified><![CDATA[20100922152119.929+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport496.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&492a6640-49e5-44de-9275-62e97b37964e]]></websiteURI>
+<dn><![CDATA[ou=Office of the Productivity Commission,ou=Productivity Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of the Productivity Commission]]></name>
+<id><![CDATA[492a6640-49e5-44de-9275-62e97b37964e]]></id>
+<category>O</category>
+<lastModified><![CDATA[20110921115425.337+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport497.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&90b98793-9b54-4292-9f4e-ee5bd08070d8]]></websiteURI>
+<dn><![CDATA[ou=Office of the Renewable Energy Regulator,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Climate Change and Energy Efficiency,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of the Renewable Energy Regulator]]></name>
+<phone><![CDATA[(02) 6159 7700]]></phone>
+<email><![CDATA[orer@orer.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 621, Canberra  ACT 2601]]></postalAddress>
+<id><![CDATA[90b98793-9b54-4292-9f4e-ee5bd08070d8]]></id>
+<category>O</category>
+<lastModified><![CDATA[20100512163032.525+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport498.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3b0d33a3-2bd5-4986-a68c-c3d5a6098eab]]></websiteURI>
+<dn><![CDATA[ou=Office of the Secretary and Chief of the Defence Force,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of the Secretary and Chief of the Defence Force]]></name>
+<id><![CDATA[3b0d33a3-2bd5-4986-a68c-c3d5a6098eab]]></id>
+<category>O</category>
+<lastModified><![CDATA[20111209104650.794+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport499.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&19d3d2a8-c025-47f1-a5b6-012c5684ebe8]]></websiteURI>
+<dn><![CDATA[ou=Office of Transport Security,ou=Department of Infrastructure and Transport,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of Transport Security]]></name>
+<phone><![CDATA[(02) 6274 7111]]></phone>
+<email><![CDATA[publicaffairs@infrastructure.gov.au]]></email>
+<postalAddress><![CDATA[Office of Transport Security, Department of Infrastructure and Transport, GPO Box 594, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[19d3d2a8-c025-47f1-a5b6-012c5684ebe8]]></id>
+<category>O</category>
+<lastModified><![CDATA[20100922174515.679+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport500.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&a22840c7-cfa3-48a9-8d5a-202c7cae1ea0]]></websiteURI>
+<dn><![CDATA[ou=Official Establishments Trust,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Official Establishments Trust]]></name>
+<shortName><![CDATA[OTE]]></shortName>
+<phone><![CDATA[(02) 6271 6086]]></phone>
+<postalAddress><![CDATA[c/- Department of the Prime Minister and Cabinet, 1 National Circuit, Barton ACT 2600]]></postalAddress>
+<id><![CDATA[a22840c7-cfa3-48a9-8d5a-202c7cae1ea0]]></id>
+<category>O</category>
+<lastModified><![CDATA[20111108143001.958+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport501.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ff3d8352-7e9b-48d2-a79f-68bbaf770cc0]]></websiteURI>
+<dn><![CDATA[ou=Parliamentary Retiring Allowances Trust,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Parliamentary Retiring Allowances Trust]]></name>
+<shortName><![CDATA[PRAT]]></shortName>
+<phone><![CDATA[(02) 6215 3656]]></phone>
+<postalAddress><![CDATA[John Gorton Building, King Edward Terrace, PARKES ACT 2600]]></postalAddress>
+<id><![CDATA[ff3d8352-7e9b-48d2-a79f-68bbaf770cc0]]></id>
+<category>P</category>
+<lastModified><![CDATA[20110330152135.849+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport502.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&60f0b281-f841-4bbd-b919-7b364ae1e8b1]]></websiteURI>
+<dn><![CDATA[ou=Policy and Research,ou=Department of Infrastructure and Transport,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Policy and Research]]></name>
+<phone><![CDATA[(02) 6274 7111]]></phone>
+<email><![CDATA[publicaffairs@infrastructure.gov.au]]></email>
+<postalAddress><![CDATA[Policy and Resarch, Department of Infrastructure and Transport, GPO Box 594, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[60f0b281-f841-4bbd-b919-7b364ae1e8b1]]></id>
+<category>P</category>
+<lastModified><![CDATA[20110228134551.661+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport503.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3fdcbc1e-bfb6-4c52-b03f-88c45ccda555]]></websiteURI>
+<dn><![CDATA[ou=Produce and Grocery Industry Ombudsman,ou=Department of Agriculture\, Fisheries and Forestry,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Produce and Grocery Industry Ombudsman]]></name>
+<phone><![CDATA[1800 206 385]]></phone>
+<email><![CDATA[info@produceandgroceryombudsman.com.au]]></email>
+<id><![CDATA[3fdcbc1e-bfb6-4c52-b03f-88c45ccda555]]></id>
+<category>P</category>
+<lastModified><![CDATA[20111110150457.259+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport504.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7998598c-6b7b-4978-b39b-c46be1c68ab2]]></websiteURI>
+<dn><![CDATA[ou=Productivity Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Productivity Commission]]></name>
+<phone><![CDATA[(03) 9653 2100]]></phone>
+<email><![CDATA[maps@pc.gov.au]]></email>
+<postalAddress><![CDATA[Locked Bag 2, Collins St East, Melbourne Vic 8003]]></postalAddress>
+<id><![CDATA[7998598c-6b7b-4978-b39b-c46be1c68ab2]]></id>
+<category>P</category>
+<lastModified><![CDATA[20110921133519.211+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport505.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ed891765-dd6f-4164-8dbd-439045cf5c7b]]></websiteURI>
+<dn><![CDATA[ou=Queensland Fisheries Joint Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Queensland Fisheries Joint Authority]]></name>
+<shortName><![CDATA[QFJA]]></shortName>
+<phone><![CDATA[(07) 3225 1843]]></phone>
+<postalAddress><![CDATA[GPO Box 46, Brisbane QLD 4001]]></postalAddress>
+<id><![CDATA[ed891765-dd6f-4164-8dbd-439045cf5c7b]]></id>
+<category>Q</category>
+<lastModified><![CDATA[20110321172653.326+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport506.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&091508a8-c7d6-42e7-a5f7-8c0765573707]]></websiteURI>
+<dn><![CDATA[ou=Questacon - The National Science and Technology Centre,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Questacon - The National Science and Technology Centre]]></name>
+<shortName><![CDATA[NSTC]]></shortName>
+<phone><![CDATA[(02) 6270 2800]]></phone>
+<email><![CDATA[info@questacon.edu.au]]></email>
+<postalAddress><![CDATA[PO Box 5322, Kingston  ACT 2604]]></postalAddress>
+<id><![CDATA[091508a8-c7d6-42e7-a5f7-8c0765573707]]></id>
+<category>Q</category>
+<lastModified><![CDATA[20110321145851.549+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport507.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e206ac59-2055-45a5-b183-fbad6fcec1d5]]></websiteURI>
+<dn><![CDATA[ou=RAAF Veterans' Residences Trust,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[RAAF Veterans' Residences Trust]]></name>
+<shortName><![CDATA[RAAFVRT]]></shortName>
+<phone><![CDATA[(03) 9256 0002]]></phone>
+<email><![CDATA[raaf.vrt@defence.gov.au]]></email>
+<postalAddress><![CDATA[Ground Floor Building L474, Thorn Circle, RAAF Williams, LAVERTON VIC 3027]]></postalAddress>
+<id><![CDATA[e206ac59-2055-45a5-b183-fbad6fcec1d5]]></id>
+<category>R</category>
+<lastModified><![CDATA[20110317121810.277+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport508.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&430d4729-6dac-420f-8cad-f0778708ef01]]></websiteURI>
+<dn><![CDATA[ou=RAAF Welfare Trust Fund,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[RAAF Welfare Trust Fund]]></name>
+<shortName><![CDATA[RWTF]]></shortName>
+<phone><![CDATA[(02) 6128 7626]]></phone>
+<postalAddress><![CDATA[RAAF Welfare Trust Fund, F4-2-120, PO Box 7933, Canberra BC ACT 2610]]></postalAddress>
+<id><![CDATA[430d4729-6dac-420f-8cad-f0778708ef01]]></id>
+<category>R</category>
+<lastModified><![CDATA[20111206120036.958+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport509.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e029e21c-6ae5-4e67-856c-543177e9d852]]></websiteURI>
+<dn><![CDATA[ou=Refugee Review Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Immigration and Citizenship,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Refugee Review Tribunal]]></name>
+<shortName><![CDATA[RRT]]></shortName>
+<phone><![CDATA[(02) 9276 5000]]></phone>
+<email><![CDATA[enquiries@mrt-rrt.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 1333, Sydney  NSW  2001]]></postalAddress>
+<id><![CDATA[e029e21c-6ae5-4e67-856c-543177e9d852]]></id>
+<category>R</category>
+<lastModified><![CDATA[20120106120726.830+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport510.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&76d08e18-a876-4b60-a1de-ce349df39a50]]></websiteURI>
+<dn><![CDATA[ou=Remuneration Tribunal Secretariat,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Remuneration Tribunal Secretariat]]></name>
+<shortName><![CDATA[RT]]></shortName>
+<phone><![CDATA[(02) 6202 3930]]></phone>
+<email><![CDATA[enquiry@remtribunal.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 281, Civic Square ACT 2608]]></postalAddress>
+<id><![CDATA[76d08e18-a876-4b60-a1de-ce349df39a50]]></id>
+<category>R</category>
+<lastModified><![CDATA[20110817121735.844+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport511.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d9f01473-4817-4157-9f7b-ee63fc165ab6]]></websiteURI>
+<dn><![CDATA[ou=Repatriation Medical Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,ou=Department of Veterans' Affairs,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Repatriation Medical Authority]]></name>
+<shortName><![CDATA[RMA]]></shortName>
+<phone><![CDATA[(07) 3815 9404]]></phone>
+<postalAddress><![CDATA[GPO Box 1014, Brisbane, QLD 4001]]></postalAddress>
+<id><![CDATA[d9f01473-4817-4157-9f7b-ee63fc165ab6]]></id>
+<category>R</category>
+<lastModified><![CDATA[20120213163842.651+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport512.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&4af07b1f-a4c8-4e71-b826-f6948434aa40]]></websiteURI>
+<dn><![CDATA[ou=Reserve Bank of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Reserve Bank of Australia]]></name>
+<shortName><![CDATA[RBA]]></shortName>
+<phone><![CDATA[(02) 9551 8111]]></phone>
+<email><![CDATA[rbainfo@rba.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 3947, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[4af07b1f-a4c8-4e71-b826-f6948434aa40]]></id>
+<category>R</category>
+<lastModified><![CDATA[20120216100529.972+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport513.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&5b1fedf9-5330-4707-ac1a-b28373d5457f]]></websiteURI>
+<dn><![CDATA[ou=Resource Sharing Division,ou=National Library of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Resource Sharing Division]]></name>
+<id><![CDATA[5b1fedf9-5330-4707-ac1a-b28373d5457f]]></id>
+<category>R</category>
+<lastModified><![CDATA[20110913095847.625+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport514.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3810c59f-5f10-4eaf-a5a8-e96223f4df08]]></websiteURI>
+<dn><![CDATA[ou=Royal Australian Mint,ou=Markets Group,ou=Central Office,ou=The Treasury,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Royal Australian Mint]]></name>
+<shortName><![CDATA[The Mint]]></shortName>
+<phone><![CDATA[(02) 6202 6999]]></phone>
+<postalAddress><![CDATA[Royal Australian Mint, Locked Bag 31, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[3810c59f-5f10-4eaf-a5a8-e96223f4df08]]></id>
+<category>R</category>
+<lastModified><![CDATA[20111220173712.145+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport515.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c34f3508-81f4-4fab-a6ff-e82bfe59993e]]></websiteURI>
+<dn><![CDATA[ou=Rural Industries Research and Development Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Rural Industries Research and Development Corporation]]></name>
+<shortName><![CDATA[RIRDC]]></shortName>
+<phone><![CDATA[(02) 6271 4100]]></phone>
+<email><![CDATA[rirdc@rirdc.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 4776, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[c34f3508-81f4-4fab-a6ff-e82bfe59993e]]></id>
+<category>R</category>
+<lastModified><![CDATA[20110324170739.422+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport516.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&9ff2ad00-6eb4-416d-8cbc-b5235d0e6a09]]></websiteURI>
+<dn><![CDATA[ou=Safe Work Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Safe Work Australia]]></name>
+<phone><![CDATA[(02) 6121 5317]]></phone>
+<email><![CDATA[info@safeworkaustralia.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 641 ACT 2601]]></postalAddress>
+<id><![CDATA[9ff2ad00-6eb4-416d-8cbc-b5235d0e6a09]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110317122818.521+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport517.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&bd040744-02a3-46b7-9fdc-10c6a3a9599f]]></websiteURI>
+<dn><![CDATA[ou=Safety\, Rehabilitation and Compensation Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Safety, Rehabilitation and Compensation Commission]]></name>
+<shortName><![CDATA[SRCC]]></shortName>
+<postalAddress><![CDATA[GPO Box 9905 Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[bd040744-02a3-46b7-9fdc-10c6a3a9599f]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110324164912.121+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport518.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&82c7eb3e-8f72-4999-af08-0b7f20f5efad]]></websiteURI>
+<dn><![CDATA[ou=Screen Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Screen Australia]]></name>
+<shortName><![CDATA[SA]]></shortName>
+<phone><![CDATA[(02) 8113 5800]]></phone>
+<email><![CDATA[info@screenaustralia.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 3984, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[82c7eb3e-8f72-4999-af08-0b7f20f5efad]]></id>
+<category>S</category>
+<lastModified><![CDATA[20101116083929.306+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport519.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&4589c283-170f-42d2-98a1-f9b9ecde0fea]]></websiteURI>
+<dn><![CDATA[ou=Seafarers Safety\, Rehabilitation and Compensation Authority (Seacare Authority),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Seafarers Safety, Rehabilitation and Compensation Authority (Seacare Authority)]]></name>
+<shortName><![CDATA[SSRCA]]></shortName>
+<phone><![CDATA[1300 366 979 or (02) 6275 0070]]></phone>
+<email><![CDATA[seacare@comcare.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 9905, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[4589c283-170f-42d2-98a1-f9b9ecde0fea]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110317123955.600+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport520.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8211271a-bd28-446f-a2cf-2b074a928ea7]]></websiteURI>
+<dn><![CDATA[ou=Small Business Support Line,ou=AusIndustry,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Small Business Support Line]]></name>
+<phone><![CDATA[1800 777 275 - 8.00am - 8.00pm (ADST)]]></phone>
+<id><![CDATA[8211271a-bd28-446f-a2cf-2b074a928ea7]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110527150917.985+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport521.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e0b429b5-4809-4179-9649-5f138c46a836]]></websiteURI>
+<dn><![CDATA[ou=Social Security Appeals Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Social Security Appeals Tribunal]]></name>
+<shortName><![CDATA[SSAT]]></shortName>
+<phone><![CDATA[1800 011 140]]></phone>
+<email><![CDATA[info@ssat.gov.au]]></email>
+<id><![CDATA[e0b429b5-4809-4179-9649-5f138c46a836]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110509093836.905+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport522.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&204e9024-df48-4336-9e9e-068fef5f271b]]></websiteURI>
+<dn><![CDATA[ou=Special Broadcasting Service Corporation (SBS),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Broadband\, Communications and the Digital Economy,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Special Broadcasting Service Corporation (SBS)]]></name>
+<shortName><![CDATA[SBS]]></shortName>
+<phone><![CDATA[(02) 9430 2828]]></phone>
+<postalAddress><![CDATA[Locked Bag 028, Crows Nest NSW 1585]]></postalAddress>
+<id><![CDATA[204e9024-df48-4336-9e9e-068fef5f271b]]></id>
+<category>S</category>
+<lastModified><![CDATA[20120104113006.798+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport523.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&524c9f2e-c839-4bc5-9725-b3b248cfb89d]]></websiteURI>
+<dn><![CDATA[ou=Statutory Fishing Rights Allocation Review Panel,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Statutory Fishing Rights Allocation Review Panel]]></name>
+<shortName><![CDATA[SFRARP]]></shortName>
+<phone><![CDATA[(02) 6272 3036]]></phone>
+<postalAddress><![CDATA[GPO Box 858, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[524c9f2e-c839-4bc5-9725-b3b248cfb89d]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110324171821.833+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport524.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&54c4c38d-7cf1-40ba-8159-168e3a9b531a]]></websiteURI>
+<dn><![CDATA[ou=Sugar Research and Development Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Sugar Research and Development Corporation]]></name>
+<shortName><![CDATA[SRDC]]></shortName>
+<phone><![CDATA[(07) 3210 0495]]></phone>
+<email><![CDATA[srdc@srdc.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 12050, George St. Brisbane, Qld 4003]]></postalAddress>
+<id><![CDATA[54c4c38d-7cf1-40ba-8159-168e3a9b531a]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110330152718.966+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport525.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&66db96c7-d8c3-478b-a984-61fe68dc46ba]]></websiteURI>
+<dn><![CDATA[ou=Superannuation Complaints Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Superannuation Complaints Tribunal]]></name>
+<shortName><![CDATA[SCT]]></shortName>
+<phone><![CDATA[1300 884 114]]></phone>
+<email><![CDATA[info@sct.gov.au]]></email>
+<postalAddress><![CDATA[Locked Bag 3060, Melbourne Vic 3001]]></postalAddress>
+<id><![CDATA[66db96c7-d8c3-478b-a984-61fe68dc46ba]]></id>
+<category>S</category>
+<lastModified><![CDATA[20100921132128.094+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport526.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&089b19d0-b376-4599-aece-d1d5bf954689]]></websiteURI>
+<dn><![CDATA[ou=Supreme Court of Christmas Island,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Supreme Court of Christmas Island]]></name>
+<phone><![CDATA[(08) 9164 7901]]></phone>
+<postalAddress><![CDATA[c/- Department of Infrastructure, Transport, Regional Development and Local Government, PO Box 868, Christmas Island, Indian Ocean 6798]]></postalAddress>
+<id><![CDATA[089b19d0-b376-4599-aece-d1d5bf954689]]></id>
+<category>S</category>
+<lastModified><![CDATA[20100624173841.621+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport527.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&15d33980-af6f-4942-afab-999650bf6ca2]]></websiteURI>
+<dn><![CDATA[ou=Supreme Court of Norfolk Island,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Supreme Court of Norfolk Island]]></name>
+<phone><![CDATA[0011 672 3 23691]]></phone>
+<id><![CDATA[15d33980-af6f-4942-afab-999650bf6ca2]]></id>
+<category>S</category>
+<lastModified><![CDATA[20100624173755.287+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport528.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f16843a3-204b-4e85-a37b-f42f083cbcd9]]></websiteURI>
+<dn><![CDATA[ou=Supreme Court of the Cocos (Keeling) Islands,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Supreme Court of the Cocos (Keeling) Islands]]></name>
+<phone><![CDATA[(08) 9162 6600]]></phone>
+<email><![CDATA[cocosadmin@afp.gov.au]]></email>
+<postalAddress><![CDATA[c/- Australian Federal Police, Cocos (Keeling) Islands, Indian Ocean 6799]]></postalAddress>
+<id><![CDATA[f16843a3-204b-4e85-a37b-f42f083cbcd9]]></id>
+<category>S</category>
+<lastModified><![CDATA[20100624173839.777+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport529.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&83a79cf2-405c-4a26-a52c-f7823ef866ea]]></websiteURI>
+<dn><![CDATA[ou=Sydney Harbour Federation Trust,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Sydney Harbour Federation Trust]]></name>
+<phone><![CDATA[(02) 8969 2100]]></phone>
+<email><![CDATA[info@harbourtrust.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 607, Mosman  NSW 2088]]></postalAddress>
+<id><![CDATA[83a79cf2-405c-4a26-a52c-f7823ef866ea]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110218132817.959+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport530.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&702cad9b-0d4c-4f38-b8ad-db211c5266bb]]></websiteURI>
+<dn><![CDATA[ou=The Australian Learning and Teaching Council,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[The Australian Learning and Teaching Council]]></name>
+<phone><![CDATA[(02) 8667 8500]]></phone>
+<email><![CDATA[info@altc.edu.au]]></email>
+<postalAddress><![CDATA[PO Box 2375, Strawberry Hills NSW  2012]]></postalAddress>
+<id><![CDATA[702cad9b-0d4c-4f38-b8ad-db211c5266bb]]></id>
+<category>T</category>
+<lastModified><![CDATA[20090203123050.033+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport531.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&fe46f534-4361-4d1b-b639-ceeafad155fe]]></websiteURI>
+<dn><![CDATA[ou=The Governor-General,o=Governor-General and Commander-in-Chief,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[The Governor-General]]></name>
+<phone><![CDATA[(02) 6283 3533]]></phone>
+<id><![CDATA[fe46f534-4361-4d1b-b639-ceeafad155fe]]></id>
+<category>T</category>
+<lastModified><![CDATA[20080905135604.767+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport532.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&de8e04a8-969d-4459-9e78-6564673c4769]]></websiteURI>
+<dn><![CDATA[ou=The Treasury,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[The Treasury]]></name>
+<shortName><![CDATA[Treasury]]></shortName>
+<phone><![CDATA[(02) 6263 2111]]></phone>
+<id><![CDATA[de8e04a8-969d-4459-9e78-6564673c4769]]></id>
+<category>T</category>
+<lastModified><![CDATA[20111220173712.735+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport533.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8cf41d39-610d-43c9-9472-ed02e1969a27]]></websiteURI>
+<dn><![CDATA[ou=Therapeutic Goods Administration,ou=Department of Health and Ageing,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Therapeutic Goods Administration]]></name>
+<shortName><![CDATA[TGA]]></shortName>
+<phone><![CDATA[(02) 6232 8444]]></phone>
+<email><![CDATA[info@tga.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 100, Woden ACT 2606]]></postalAddress>
+<id><![CDATA[8cf41d39-610d-43c9-9472-ed02e1969a27]]></id>
+<category>T</category>
+<lastModified><![CDATA[20110317161930.102+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport534.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&fcf60be1-fca7-4b1c-8c1e-80ac8b79b912]]></websiteURI>
+<dn><![CDATA[ou=Torres Strait Protected Zone Joint Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Torres Strait Protected Zone Joint Authority]]></name>
+<shortName><![CDATA[TSPZJA]]></shortName>
+<postalAddress><![CDATA[Box 7051, Canberra Mail Centre ACT 2610]]></postalAddress>
+<id><![CDATA[fcf60be1-fca7-4b1c-8c1e-80ac8b79b912]]></id>
+<category>T</category>
+<lastModified><![CDATA[20110318154457.000+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport535.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&72808844-b6e5-432d-af52-bd40d56f0475]]></websiteURI>
+<dn><![CDATA[ou=Torres Strait Regional Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Torres Strait Regional Authority]]></name>
+<shortName><![CDATA[TSRA]]></shortName>
+<phone><![CDATA[(07) 4069 0700 or toll free 1800 079 093]]></phone>
+<email><![CDATA[info@tsra.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 261, Thursday Island QLD 4875]]></postalAddress>
+<id><![CDATA[72808844-b6e5-432d-af52-bd40d56f0475]]></id>
+<category>T</category>
+<lastModified><![CDATA[20090203143009.811+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport536.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e47dbafc-02d4-4b38-8ecc-85742c2853c9]]></websiteURI>
+<dn><![CDATA[ou=Tourism Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Resources\, Energy and Tourism,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Tourism Australia]]></name>
+<shortName><![CDATA[TA]]></shortName>
+<phone><![CDATA[(02) 9360 1111]]></phone>
+<email><![CDATA[ask.us@tourism.australia.com]]></email>
+<postalAddress><![CDATA[GPO Box 2721, Sydney NSW 1006]]></postalAddress>
+<id><![CDATA[e47dbafc-02d4-4b38-8ecc-85742c2853c9]]></id>
+<category>T</category>
+<lastModified><![CDATA[20101208150425.754+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport537.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&989ee65e-1eba-42b9-b49f-11fedcf2e31a]]></websiteURI>
+<dn><![CDATA[ou=Western Australian Fisheries Joint Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Western Australian Fisheries Joint Authority]]></name>
+<shortName><![CDATA[WAFJA]]></shortName>
+<phone><![CDATA[(08) 9482 7333]]></phone>
+<id><![CDATA[989ee65e-1eba-42b9-b49f-11fedcf2e31a]]></id>
+<category>W</category>
+<lastModified><![CDATA[20110316164329.240+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport538.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&18ef3546-236d-4613-a589-bca97c9142ea]]></websiteURI>
+<dn><![CDATA[ou=Wheat Exports Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Wheat Exports Australia]]></name>
+<shortName><![CDATA[WEA]]></shortName>
+<phone><![CDATA[(02) 6202 3400]]></phone>
+<email><![CDATA[secretariat@wea.gov.au]]></email>
+<id><![CDATA[18ef3546-236d-4613-a589-bca97c9142ea]]></id>
+<category>W</category>
+<lastModified><![CDATA[20100624173913.063+1000]]></lastModified>
+</department>
+</entryList>
 

file:b/admin/metadata.py (new)
--- /dev/null
+++ b/admin/metadata.py
@@ -1,1 +1,22 @@
+#http://packages.python.org/CouchDB/client.html
+import couchdb
+from BeautifulSoup import BeautifulSoup
 
+couch = couchdb.Server('http://127.0.0.1:5984/')
+
+# select database
+docsdb = couch['disclosr-documents']
+
+for row in docsdb.view('app/getMetadataExtractRequired'): 
+    print row.id
+    html = docsdb.get_attachment(row.id,row.value.iterkeys().next()).read()
+    metadata = []
+     # http://www.crummy.com/software/BeautifulSoup/documentation.html
+            soup = BeautifulSoup(html)
+metatags = soup.meta
+    for metatag in metatags:
+        print metatag['name']
+    doc = docsdb.get(row.id)
+    //doc['metadata'] = metadata
+    //docsdb.save(doc)
+

--- /dev/null
+++ b/admin/naa-agift-tree.php
@@ -1,1 +1,2504 @@
 
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+    "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+    <title>Demo of the tree layout in D3.js</title>
+<!-- source: http://blog.pixelingene.com/demos/d3_tree/
+http://javadude.wordpress.com/2012/06/20/d3-js-from-tree-to-cluster-and-radial-projection/
+http://bl.ocks.org/1249394-->
+    <style>
+        g.node {
+            font-family: Verdana, Helvetica;
+            font-size: 12px;
+            font-weight: bold;
+        }
+        circle.node-dot {
+            fill: lightsalmon;
+            stroke: red;
+            stroke-width: 1px;
+        }
+
+        path.link {
+            fill: none;
+            stroke: gray;
+        }
+        
+    </style>
+</head>
+<body>
+
+<div id="tree-container"></div>
+ <div id="viz"></div>
+
+<script type="text/javascript" src="../js/jquery-1.6.2.min.js"></script>
+<script type="text/javascript" src="../js/d3.min.js"></script>
+<script type="text/javascript" src="../js/d3.layout.min.js"></script>
+
+<script>
+    /**
+ * Created by JetBrains RubyMine.
+ * User: pavanpodila
+ * Date: 7/17/11
+ * Time: 4:30 PM
+ * To change this template use File | Settings | File Templates.
+ */
+
+var treeData = 
+    <?php
+   //     $json = file_get_children('naa-agift.json');
+   // $raw = json_decode($json);
+   // echo $json;
+   // print_r($raw);
+    $raw = json_decode('[
+   "Home",
+   "index.htm",
+   [
+      "BUSINESS SUPPORT AND REGULATION",
+      "000411.htm",
+      [
+         "Association registration",
+         "000396.htm"
+      ],
+      [
+         "Business process auditing",
+         "000413.htm"
+      ],
+      [
+         "Business registration and licensing",
+         "000414.htm"
+      ],
+      [
+         "Business sponsorship",
+         "001371.htm"
+      ],
+      [
+         "Consumer protection",
+         "000439.htm"
+      ],
+      [
+         "Fair trading compliance",
+         "000482.htm",
+         [
+            "Prices surveillance",
+            "000533.htm"
+         ],
+         [
+            "Product safety",
+            "000534.htm"
+         ],
+         [
+            "Trade practices compliance",
+            "000583.htm"
+         ]
+      ],
+      [
+         "Financial institutions regulation",
+         "000485.htm"
+      ],
+      [
+         "Government procurement regulation",
+         "000491.htm"
+      ],
+      [
+         "Industry assistance schemes",
+         "000499.htm"
+      ],
+      [
+         "Industry development",
+         "000500.htm"
+      ],
+      [
+         "Insurance regulation",
+         "000501.htm",
+         [
+            "General insurance",
+            "000489.htm"
+         ],
+         [
+            "Life insurance",
+            "000505.htm"
+         ]
+      ],
+      [
+         "Professional accreditation",
+         "000535.htm"
+      ],
+      [
+         "Small business services",
+         "000565.htm",
+         [
+            "Small business advocacy",
+            "000563.htm"
+         ],
+         [
+            "Small business development",
+            "000564.htm"
+         ]
+      ],
+      [
+         "Stock market regulation",
+         "000572.htm"
+      ]
+   ],
+   [
+      "CIVIC INFRASTRUCTURE",
+      "000424.htm",
+      [
+         "Civic management",
+         "000425.htm",
+         [
+            "Architectural services",
+            "000387.htm"
+         ],
+         [
+            "Building approval services",
+            "000406.htm"
+         ],
+         [
+            "Building regulations and standards",
+            "000408.htm"
+         ],
+         [
+            "Engineering services",
+            "000477.htm"
+         ],
+         [
+            "Town planning",
+            "000582.htm"
+         ]
+      ],
+      [
+         "Energy supply",
+         "000476.htm"
+      ],
+      [
+         "Integrated services planning",
+         "000503.htm"
+      ],
+      [
+         "Public housing",
+         "000536.htm",
+         [
+            "Public housing construction",
+            "000537.htm"
+         ],
+         [
+            "Public housing design",
+            "000538.htm"
+         ],
+         [
+            "Public housing maintenance",
+            "000540.htm"
+         ]
+      ],
+      [
+         "Public land management",
+         "000541.htm",
+         [
+            "Burial ground management",
+            "000410.htm"
+         ],
+         [
+            "Cultural centre management",
+            "000444.htm"
+         ],
+         [
+            "Garden management",
+            "000488.htm"
+         ],
+         [
+            "Memorial maintenance",
+            "000509.htm"
+         ],
+         [
+            "Recreational park management",
+            "000549.htm"
+         ],
+         [
+            "Sporting facilities management",
+            "000571.htm"
+         ]
+      ],
+      [
+         "Regional development",
+         "000552.htm"
+      ],
+      [
+         "Transport network maintenance",
+         "000586.htm"
+      ],
+      [
+         "Waste management",
+         "001349.htm"
+      ]
+   ],
+   [
+      "COMMUNICATIONS",
+      "000433.htm",
+      [
+         "Advertising standards",
+         "000381.htm"
+      ],
+      [
+         "Broadcasting",
+         "000403.htm",
+         [
+            "Broadcasting standards",
+            "000404.htm"
+         ],
+         [
+            "Radio broadcasting",
+            "000546.htm"
+         ],
+         [
+            "Television broadcasting",
+            "000580.htm"
+         ]
+      ],
+      [
+         "Call centre administration",
+         "000417.htm"
+      ],
+      [
+         "Electronic commerce",
+         "000468.htm",
+         [
+            "Authentication",
+            "000399.htm"
+         ],
+         [
+            "Online transaction standards",
+            "000526.htm"
+         ]
+      ],
+      [
+         "Government media",
+         "000490.htm"
+      ],
+      [
+         "Information management standards",
+         "000283.htm",
+         [
+            "Data management",
+            "000448.htm"
+         ],
+         [
+            "Information dissemination",
+            "000502.htm"
+         ],
+         [
+            "Information technology standards",
+            "000282.htm"
+         ]
+      ],
+      [
+         "Media ownership regulation",
+         "000508.htm"
+      ],
+      [
+         "Postal services",
+         "000530.htm",
+         [
+            "Courier services",
+            "000441.htm"
+         ],
+         [
+            "Electronic postal services",
+            "000469.htm"
+         ],
+         [
+            "Retail postal services",
+            "000554.htm"
+         ]
+      ],
+      [
+         "Publishing",
+         "000543.htm",
+         [
+            "Electronic publishing",
+            "000470.htm"
+         ],
+         [
+            "Publishing standards",
+            "000544.htm"
+         ],
+         [
+            "Website development",
+            "000591.htm"
+         ]
+      ],
+      [
+         "Radio communication",
+         "000547.htm",
+         [
+            "Apparatus licensing",
+            "000385.htm"
+         ],
+         [
+            "Spectrum management",
+            "000570.htm"
+         ]
+      ],
+      [
+         "Satellite communication",
+         "000560.htm"
+      ],
+      [
+         "Telecommunications",
+         "000578.htm",
+         [
+            "Carriage service providers",
+            "000420.htm"
+         ],
+         [
+            "Carrier licensing",
+            "000421.htm"
+         ],
+         [
+            "Equipment licensing",
+            "000480.htm"
+         ],
+         [
+            "Mobile telephone services",
+            "000516.htm"
+         ],
+         [
+            "Telephone services",
+            "000579.htm"
+         ]
+      ]
+   ],
+   [
+      "COMMUNITY SERVICES",
+      "000435.htm",
+      [
+         "Accommodation services",
+         "000377.htm",
+         [
+            "Defence housing",
+            "000458.htm"
+         ],
+         [
+            "Emergency accommodation",
+            "000471.htm"
+         ],
+         [
+            "Public housing entitlements",
+            "000539.htm"
+         ],
+         [
+            "Refuge support",
+            "000551.htm"
+         ]
+      ],
+      [
+         "Community support",
+         "000436.htm",
+         [
+            "Adoption services",
+            "000378.htm"
+         ],
+         [
+            "Aged care services",
+            "000382.htm"
+         ],
+         [
+            "Child and youth support",
+            "000422.htm"
+         ],
+         [
+            "Child-care services",
+            "000423.htm"
+         ],
+         [
+            "Defence community programs",
+            "000452.htm"
+         ],
+         [
+            "Family reunion programs",
+            "000483.htm"
+         ],
+         [
+            "Veterans\" entitlements",
+            "000587.htm"
+         ]
+      ],
+      [
+         "Counselling services",
+         "000440.htm"
+      ],
+      [
+         "Emergency services",
+         "000474.htm",
+         [
+            "Ambulance services",
+            "000384.htm"
+         ],
+         [
+            "Emergency funding",
+            "000472.htm"
+         ],
+         [
+            "Firefighting services",
+            "000487.htm"
+         ]
+      ],
+      [
+         "Financial assistance",
+         "000484.htm",
+         [
+            "Benefits",
+            "000402.htm"
+         ],
+         [
+            "Income support schemes",
+            "000494.htm"
+         ]
+      ],
+      [
+         "Natural disasters",
+         "000521.htm",
+         [
+            "Disaster recovery",
+            "000462.htm"
+         ],
+         [
+            "Disaster relief",
+            "000463.htm"
+         ]
+      ],
+      [
+         "Rural community development",
+         "000557.htm"
+      ],
+      [
+         "Social justice and equity",
+         "000566.htm"
+      ],
+      [
+         "Transport access schemes",
+         "000901.htm"
+      ]
+   ],
+   [
+      "CULTURAL AFFAIRS",
+      "000442.htm",
+      [
+         "Arts development",
+         "000391.htm",
+         [
+            "Arts funding",
+            "000393.htm"
+         ],
+         [
+            "Arts incentive schemes",
+            "000394.htm"
+         ],
+         [
+            "Arts promotion",
+            "000395.htm"
+         ]
+      ],
+      [
+         "Collection access",
+         "000427.htm",
+         [
+            "Descriptive standards",
+            "000461.htm"
+         ],
+         [
+            "Finding aids development",
+            "000486.htm"
+         ],
+         [
+            "Reference services",
+            "000550.htm"
+         ]
+      ],
+      [
+         "Collection management",
+         "000430.htm",
+         [
+            "Artefact export regulation",
+            "000390.htm"
+         ],
+         [
+            "Collection accessioning",
+            "000428.htm"
+         ],
+         [
+            "Collection acquisition",
+            "000429.htm"
+         ],
+         [
+            "Collection storage",
+            "000432.htm"
+         ],
+         [
+            "Preservation services",
+            "000532.htm"
+         ]
+      ],
+      [
+         "Collection promotion",
+         "000431.htm",
+         [
+            "Exhibition programs",
+            "000481.htm"
+         ],
+         [
+            "Publicity programs",
+            "000542.htm"
+         ]
+      ],
+      [
+         "Cultural awards and scholarships",
+         "000443.htm"
+      ],
+      [
+         "Cultural festivals",
+         "000445.htm"
+      ],
+      [
+         "Cultural gifts programs",
+         "000446.htm"
+      ],
+      [
+         "Multicultural heritage promotion",
+         "000518.htm",
+         [
+            "Multicultural festivals",
+            "000517.htm"
+         ],
+         [
+            "Multicultural services",
+            "000519.htm"
+         ]
+      ]
+   ],
+   [
+      "DEFENCE",
+      "000449.htm",
+      [
+         "Australian Defence Forces",
+         "000397.htm",
+         [
+            "Air Force",
+            "002266.htm"
+         ],
+         [
+            "Army",
+            "000388.htm"
+         ],
+         [
+            "Badges and insignia",
+            "000401.htm"
+         ],
+         [
+            "Cadets",
+            "000416.htm"
+         ],
+         [
+            "Defence force commands",
+            "000456.htm"
+         ],
+         [
+            "Military bands",
+            "000510.htm"
+         ],
+         [
+            "Navy",
+            "000524.htm"
+         ],
+         [
+            "Reserves",
+            "000553.htm"
+         ],
+         [
+            "Roulettes",
+            "000556.htm"
+         ]
+      ],
+      [
+         "Defence estate management",
+         "000454.htm"
+      ],
+      [
+         "Defence force careers",
+         "000455.htm",
+         [
+            "Defence career development",
+            "000450.htm"
+         ],
+         [
+            "Military employment services",
+            "000512.htm"
+         ]
+      ],
+      [
+         "Defence strategic development",
+         "000574.htm",
+         [
+            "Defence efficiency review",
+            "000453.htm"
+         ],
+         [
+            "Defence reform program",
+            "000460.htm"
+         ]
+      ],
+      [
+         "Defence strategic policy",
+         "000576.htm",
+         [
+            "Strategic decisions",
+            "000573.htm"
+         ],
+         [
+            "Strategic planning",
+            "000575.htm"
+         ]
+      ],
+      [
+         "Defence strategic support",
+         "000577.htm",
+         [
+            "Capital equipment programs",
+            "000419.htm"
+         ],
+         [
+            "Defence industry",
+            "000459.htm"
+         ],
+         [
+            "Defence science and technology",
+            "000905.htm"
+         ],
+         [
+            "Logistics",
+            "000506.htm"
+         ]
+      ],
+      [
+         "Emergency management",
+         "000473.htm",
+         [
+            "Civil community assistance",
+            "000426.htm"
+         ],
+         [
+            "Disaster support",
+            "000464.htm"
+         ]
+      ],
+      [
+         "Military law",
+         "001814.htm"
+      ],
+      [
+         "Military operations",
+         "000515.htm",
+         [
+            "Australian theatre of war",
+            "000398.htm"
+         ],
+         [
+            "Military exercises",
+            "000514.htm"
+         ],
+         [
+            "Special operations",
+            "000569.htm"
+         ],
+         [
+            "Warfare",
+            "000589.htm"
+         ]
+      ]
+   ],
+   [
+      "EDUCATION AND TRAINING",
+      "000467.htm",
+      [
+         "Arts education",
+         "000392.htm"
+      ],
+      [
+         "Community education",
+         "000434.htm",
+         [
+            "Adult education programs",
+            "000379.htm"
+         ],
+         [
+            "Adult migrant education",
+            "000380.htm"
+         ],
+         [
+            "Road safety awareness",
+            "000555.htm"
+         ]
+      ],
+      [
+         "Curriculum development",
+         "000447.htm"
+      ],
+      [
+         "Early childhood education",
+         "000466.htm"
+      ],
+      [
+         "Military education and training",
+         "000511.htm",
+         [
+            "Army reserve training",
+            "000389.htm"
+         ],
+         [
+            "Defence college training",
+            "000451.htm"
+         ]
+      ],
+      [
+         "Overseas skills recognition",
+         "000527.htm"
+      ],
+      [
+         "School education",
+         "000561.htm",
+         [
+            "Discipline programs",
+            "000465.htm"
+         ],
+         [
+            "School transport regulation",
+            "000562.htm"
+         ],
+         [
+            "Special needs programs",
+            "000568.htm"
+         ]
+      ],
+      [
+         "Tertiary education",
+         "000581.htm"
+      ],
+      [
+         "Vocational education",
+         "000588.htm",
+         [
+            "Apprenticeship programs",
+            "000386.htm"
+         ],
+         [
+            "Hospital teaching programs",
+            "000493.htm"
+         ],
+         [
+            "Trainee programs",
+            "000584.htm"
+         ],
+         [
+            "Workplace training",
+            "000595.htm"
+         ]
+      ]
+   ],
+   [
+      "EMPLOYMENT",
+      "000016.htm",
+      [
+         "Human resources development",
+         "000348.htm",
+         [
+            "Occupational health and safety",
+            "000355.htm"
+         ],
+         [
+            "Recruitment programs",
+            "000356.htm"
+         ],
+         [
+            "Termination processes",
+            "002103.htm"
+         ],
+         [
+            "Workers compensation schemes",
+            "000363.htm"
+         ],
+         [
+            "Workplace discrimination monitoring",
+            "000364.htm"
+         ],
+         [
+            "Workplace equity and justice programs",
+            "000365.htm"
+         ]
+      ],
+      [
+         "Industrial awards and conditions",
+         "000349.htm",
+         [
+            "Award conditions",
+            "000366.htm"
+         ],
+         [
+            "Remuneration review",
+            "000368.htm"
+         ]
+      ],
+      [
+         "Labour market programs",
+         "000347.htm",
+         [
+            "Employment services marketing",
+            "000351.htm"
+         ],
+         [
+            "Job placement programs",
+            "000352.htm"
+         ],
+         [
+            "Job vacancy data management",
+            "000353.htm"
+         ]
+      ],
+      [
+         "Workplace agreement processes",
+         "000350.htm",
+         [
+            "Agreement bargaining processes",
+            "002141.htm"
+         ],
+         [
+            "Agreement dispute mediation",
+            "000370.htm"
+         ],
+         [
+            "Certified employment conditions",
+            "000371.htm"
+         ],
+         [
+            "Employment advocacy services",
+            "000374.htm"
+         ]
+      ]
+   ],
+   [
+      "ENVIRONMENT",
+      "000478.htm",
+      [
+         "Built environment",
+         "000409.htm",
+         [
+            "Building acoustics",
+            "000405.htm"
+         ],
+         [
+            "Building preservation",
+            "000407.htm"
+         ]
+      ],
+      [
+         "Climate information services",
+         "000203.htm"
+      ],
+      [
+         "Conservation programs",
+         "000438.htm",
+         [
+            "Endangered species protection",
+            "000475.htm"
+         ],
+         [
+            "Landcare programs",
+            "000504.htm"
+         ],
+         [
+            "Soil preservation programs",
+            "000567.htm"
+         ]
+      ],
+      [
+         "Environmental impact assessment",
+         "000479.htm"
+      ],
+      [
+         "Historic relic protection",
+         "000492.htm"
+      ],
+      [
+         "Marine life protection programs",
+         "000507.htm"
+      ],
+      [
+         "Natural heritage protection",
+         "000522.htm",
+         [
+            "National park management",
+            "000520.htm"
+         ],
+         [
+            "Nature reserve management",
+            "000523.htm"
+         ],
+         [
+            "Wilderness area management",
+            "000593.htm"
+         ],
+         [
+            "Wildlife sanctuary management",
+            "000594.htm"
+         ]
+      ],
+      [
+         "Oceans governance",
+         "000525.htm"
+      ],
+      [
+         "Pollutant prevention programs",
+         "000529.htm"
+      ],
+      [
+         "World heritage listings",
+         "000596.htm"
+      ]
+   ],
+   [
+      "FINANCE MANAGEMENT",
+      "000001.htm",
+      [
+         "Commonwealth State funding",
+         "000017.htm"
+      ],
+      [
+         "Currency",
+         "000018.htm",
+         [
+            "Counterfeiting control",
+            "000027.htm"
+         ]
+      ],
+      [
+         "Financial investment",
+         "000021.htm",
+         [
+            "Investment scheme regulation",
+            "000031.htm"
+         ]
+      ],
+      [
+         "Financial system management",
+         "002302.htm",
+         [
+            "Financial system monitoring",
+            "002306.htm"
+         ],
+         [
+            "Payments management",
+            "002297.htm"
+         ]
+      ],
+      [
+         "Fiscal policy",
+         "000022.htm",
+         [
+            "Public borrowing",
+            "000032.htm"
+         ],
+         [
+            "Public debt",
+            "000033.htm"
+         ],
+         [
+            "Public expenditure",
+            "000034.htm"
+         ]
+      ],
+      [
+         "Foreign investment control",
+         "000030.htm"
+      ],
+      [
+         "International monetary regulation",
+         "000023.htm"
+      ],
+      [
+         "Monetary policy",
+         "000020.htm",
+         [
+            "Exchange rates",
+            "000028.htm"
+         ],
+         [
+            "Inflation",
+            "000029.htm"
+         ],
+         [
+            "Interest rates",
+            "002295.htm"
+         ]
+      ],
+      [
+         "Resource management",
+         "000024.htm",
+         [
+            "Contract management",
+            "000037.htm"
+         ],
+         [
+            "Financial administration",
+            "000035.htm"
+         ],
+         [
+            "Financial budgeting",
+            "000036.htm"
+         ]
+      ],
+      [
+         "Retirement income",
+         "000025.htm",
+         [
+            "Asset assessment",
+            "000038.htm"
+         ],
+         [
+            "Retirement saving",
+            "000039.htm"
+         ],
+         [
+            "Superannuation regulation",
+            "000040.htm"
+         ]
+      ],
+      [
+         "Statistical analysis",
+         "000019.htm"
+      ],
+      [
+         "Taxation",
+         "000026.htm",
+         [
+            "Income assessment",
+            "000041.htm"
+         ],
+         [
+            "Revenue raising",
+            "000042.htm"
+         ],
+         [
+            "Taxation compliance",
+            "000043.htm"
+         ]
+      ]
+   ],
+   [
+      "GOVERNANCE",
+      "000002.htm",
+      [
+         "Civic celebrations",
+         "000046.htm"
+      ],
+      [
+         "Constitutional matters",
+         "000048.htm",
+         [
+            "Constitutional conventions",
+            "000061.htm"
+         ],
+         [
+            "Constitutional referenda",
+            "000062.htm"
+         ]
+      ],
+      [
+         "Electoral matters",
+         "000049.htm",
+         [
+            "Declaration of interests",
+            "000063.htm"
+         ],
+         [
+            "Election campaigning",
+            "000064.htm"
+         ],
+         [
+            "Electoral boundary assessment",
+            "000065.htm"
+         ]
+      ],
+      [
+         "Honours and awards programs",
+         "000050.htm"
+      ],
+      [
+         "Intergovernmental relations",
+         "000052.htm",
+         [
+            "Cross-border cooperation",
+            "000067.htm"
+         ],
+         [
+            "Intergovernment policy dissemination",
+            "000069.htm"
+         ]
+      ],
+      [
+         "Legislative drafting",
+         "000053.htm",
+         [
+            "Draft Bill amendment process",
+            "000070.htm"
+         ],
+         [
+            "Legislation review",
+            "000071.htm"
+         ],
+         [
+            "Preparation of legislative regulations",
+            "000072.htm"
+         ]
+      ],
+      [
+         "Official protocol",
+         "000054.htm",
+         [
+            "Ceremonial events and representation",
+            "000073.htm"
+         ],
+         [
+            "Head of Government protocol",
+            "000074.htm"
+         ],
+         [
+            "Official establishment management",
+            "000075.htm"
+         ],
+         [
+            "Official hospitality",
+            "000076.htm"
+         ],
+         [
+            "Official visits",
+            "000077.htm"
+         ]
+      ],
+      [
+         "Parliamentary chamber support",
+         "000045.htm",
+         [
+            "Hansard services",
+            "000058.htm"
+         ],
+         [
+            "Parliamentary papers",
+            "000059.htm"
+         ],
+         [
+            "Tabling of official documents",
+            "000060.htm"
+         ]
+      ],
+      [
+         "Parliamentary committee and member support",
+         "000047.htm"
+      ],
+      [
+         "Population census",
+         "000044.htm",
+         [
+            "Demographic surveys",
+            "000055.htm"
+         ],
+         [
+            "Household census",
+            "000056.htm"
+         ],
+         [
+            "Population distribution analysis",
+            "000057.htm"
+         ]
+      ],
+      [
+         "Public administration",
+         "002290.htm",
+         [
+            "Government auditing",
+            "002291.htm"
+         ],
+         [
+            "Public service",
+            "002292.htm"
+         ],
+         [
+            "Territories administration",
+            "002293.htm"
+         ]
+      ],
+      [
+         "Statistics",
+         "002289.htm"
+      ]
+   ],
+   [
+      "HEALTH CARE",
+      "000003.htm",
+      [
+         "Community health services",
+         "000078.htm",
+         [
+            "Clinical health services",
+            "000087.htm"
+         ],
+         [
+            "Health promotion",
+            "000089.htm"
+         ],
+         [
+            "Primary health care",
+            "000090.htm"
+         ]
+      ],
+      [
+         "Health insurance schemes",
+         "000079.htm"
+      ],
+      [
+         "Health protocol administration",
+         "000080.htm",
+         [
+            "Drugs and poisons regulation",
+            "000091.htm"
+         ],
+         [
+            "Food hygiene regulation",
+            "000092.htm"
+         ],
+         [
+            "Practitioner discipline",
+            "000093.htm"
+         ],
+         [
+            "Practitioner registration",
+            "000095.htm"
+         ]
+      ],
+      [
+         "Hospital services",
+         "000081.htm",
+         [
+            "Hospital administration",
+            "000096.htm"
+         ],
+         [
+            "Patient care",
+            "000097.htm"
+         ],
+         [
+            "Pharmaceutical and drug support",
+            "000098.htm"
+         ]
+      ],
+      [
+         "Medical research",
+         "000083.htm",
+         [
+            "Ethical compliance",
+            "000099.htm"
+         ],
+         [
+            "Medical aids regulation",
+            "000100.htm"
+         ],
+         [
+            "Medical research funding",
+            "000101.htm"
+         ],
+         [
+            "National referral laboratory services",
+            "000102.htm"
+         ],
+         [
+            "Population-based research",
+            "000103.htm"
+         ]
+      ],
+      [
+         "Public health services",
+         "000084.htm",
+         [
+            "Epidemiology",
+            "000104.htm"
+         ],
+         [
+            "Health disaster preparedness",
+            "000106.htm"
+         ],
+         [
+            "Health hazard prevention",
+            "000105.htm"
+         ],
+         [
+            "Medical quarantine services",
+            "000108.htm"
+         ],
+         [
+            "Notifiable disease management",
+            "000109.htm"
+         ]
+      ],
+      [
+         "Special needs services",
+         "000085.htm",
+         [
+            "Dental health services",
+            "000111.htm"
+         ],
+         [
+            "Independent living services",
+            "000112.htm"
+         ],
+         [
+            "Mental health services",
+            "000113.htm"
+         ],
+         [
+            "Residential services",
+            "000114.htm"
+         ]
+      ],
+      [
+         "Veterans\" health services",
+         "000086.htm"
+      ]
+   ],
+   [
+      "IMMIGRATION",
+      "000004.htm",
+      [
+         "Citizenship",
+         "000115.htm",
+         [
+            "Naturalisation assessment",
+            "000121.htm"
+         ],
+         [
+            "Presentation arrangements",
+            "000122.htm"
+         ]
+      ],
+      [
+         "Deportation",
+         "000116.htm"
+      ],
+      [
+         "Detention programs",
+         "000117.htm"
+      ],
+      [
+         "Migrant services",
+         "000118.htm",
+         [
+            "Interpreter services",
+            "000123.htm"
+         ],
+         [
+            "Migrant accommodation services",
+            "000125.htm"
+         ],
+         [
+            "Migrant settlement programs",
+            "000126.htm"
+         ]
+      ],
+      [
+         "Refugee services",
+         "000119.htm"
+      ],
+      [
+         "Travel authorisation",
+         "000120.htm",
+         [
+            "Permanent entry arrangements",
+            "000127.htm"
+         ],
+         [
+            "Temporary entry arrangements",
+            "000128.htm"
+         ]
+      ]
+   ],
+   [
+      "INDIGENOUS AFFAIRS",
+      "002285.htm",
+      [
+         "Indigenous cultural heritage",
+         "000495.htm",
+         [
+            "Cultural artefact repatriation",
+            "001772.htm"
+         ]
+      ],
+      [
+         "Indigenous enterprise development",
+         "000496.htm"
+      ],
+      [
+         "Indigenous health services",
+         "000082.htm"
+      ],
+      [
+         "Indigenous heritage conservation",
+         "000497.htm"
+      ],
+      [
+         "Indigenous reconciliation",
+         "000051.htm"
+      ],
+      [
+         "Indigenous welfare programs",
+         "000498.htm"
+      ]
+   ],
+   [
+      "INTERNATIONAL RELATIONS",
+      "000005.htm",
+      [
+         "Consular services",
+         "000129.htm"
+      ],
+      [
+         "Defence liaison",
+         "000132.htm",
+         [
+            "Defence attach�s",
+            "000140.htm"
+         ],
+         [
+            "Defence cooperation programs",
+            "000141.htm"
+         ],
+         [
+            "Defence personnel exchanges",
+            "000142.htm"
+         ],
+         [
+            "Military advisors",
+            "000143.htm"
+         ]
+      ],
+      [
+         "Diplomatic missions",
+         "000130.htm"
+      ],
+      [
+         "International affairs",
+         "000131.htm",
+         [
+            "Disarmament and arms control",
+            "000137.htm"
+         ],
+         [
+            "Nuclear safeguards",
+            "000139.htm"
+         ]
+      ],
+      [
+         "International treaties",
+         "000133.htm",
+         [
+            "Treaty administration",
+            "001384.htm"
+         ]
+      ],
+      [
+         "Overseas aid programs",
+         "000134.htm",
+         [
+            "Development assistance programs",
+            "000146.htm"
+         ],
+         [
+            "Overseas student scholarship programs",
+            "000147.htm"
+         ]
+      ],
+      [
+         "Overseas promotion",
+         "000135.htm"
+      ],
+      [
+         "Passport services",
+         "000136.htm"
+      ]
+   ],
+   [
+      "JUSTICE ADMINISTRATION",
+      "000006.htm",
+      [
+         "Administrative law",
+         "000149.htm",
+         [
+            "Administrative decision appeal",
+            "000163.htm"
+         ],
+         [
+            "Administrative decision review",
+            "000164.htm"
+         ],
+         [
+            "Censorship standards",
+            "000165.htm"
+         ],
+         [
+            "Copyright regulation",
+            "000166.htm"
+         ],
+         [
+            "Recordkeeping standards",
+            "000167.htm"
+         ]
+      ],
+      [
+         "Associations and corporate law",
+         "000150.htm",
+         [
+            "Bankruptcy proceedings",
+            "000168.htm"
+         ],
+         [
+            "Merger regulation",
+            "000169.htm"
+         ]
+      ],
+      [
+         "Civil law",
+         "000151.htm",
+         [
+            "Civil registration",
+            "000170.htm"
+         ],
+         [
+            "Conveyancing",
+            "000171.htm"
+         ],
+         [
+            "Dispute mediation programs",
+            "000174.htm"
+         ],
+         [
+            "Family law proceedings",
+            "000172.htm"
+         ],
+         [
+            "Probate applications",
+            "000173.htm"
+         ]
+      ],
+      [
+         "Commissions of inquiry",
+         "000152.htm"
+      ],
+      [
+         "Coronial law",
+         "000153.htm"
+      ],
+      [
+         "Court reporting",
+         "000154.htm"
+      ],
+      [
+         "Criminal law",
+         "000155.htm"
+      ],
+      [
+         "Human rights obligations",
+         "000156.htm"
+      ],
+      [
+         "Juvenile justice",
+         "000157.htm"
+      ],
+      [
+         "Legal aid services",
+         "000158.htm"
+      ],
+      [
+         "Local laws and ordinances",
+         "000159.htm"
+      ],
+      [
+         "Native title claims",
+         "000160.htm",
+         [
+            "Native title mediation programs",
+            "000180.htm"
+         ],
+         [
+            "Native title settlement negotiations",
+            "000181.htm"
+         ]
+      ],
+      [
+         "Privacy guideline monitoring",
+         "000161.htm"
+      ],
+      [
+         "Prosecution services",
+         "000162.htm"
+      ]
+   ],
+   [
+      "MARITIME SERVICES",
+      "000007.htm",
+      [
+         "Cargo control",
+         "000198.htm"
+      ],
+      [
+         "Harbour management",
+         "000183.htm"
+      ],
+      [
+         "Marina management",
+         "000184.htm"
+      ],
+      [
+         "Navigation",
+         "000185.htm",
+         [
+            "Charting sea lanes",
+            "000191.htm"
+         ],
+         [
+            "Light station maintenance",
+            "000192.htm"
+         ],
+         [
+            "Navigation systems development",
+            "000193.htm"
+         ]
+      ],
+      [
+         "Pilotage management",
+         "000182.htm"
+      ],
+      [
+         "Port regulation",
+         "001471.htm"
+      ],
+      [
+         "Sea passengers",
+         "001487.htm"
+      ],
+      [
+         "Search and rescue",
+         "000187.htm",
+         [
+            "Rescue coordination",
+            "000194.htm"
+         ],
+         [
+            "Search technology development",
+            "000195.htm"
+         ]
+      ],
+      [
+         "Ship personnel",
+         "000188.htm",
+         [
+            "Personnel safety standards",
+            "000196.htm"
+         ],
+         [
+            "Pilot licensing",
+            "000197.htm"
+         ]
+      ],
+      [
+         "Ship safety",
+         "000189.htm",
+         [
+            "Seaworthiness",
+            "000201.htm"
+         ],
+         [
+            "Ship commissioning",
+            "000199.htm"
+         ],
+         [
+            "Ship inspection",
+            "000200.htm"
+         ]
+      ]
+   ],
+   [
+      "NATURAL RESOURCES",
+      "000009.htm",
+      [
+         "Crown land administration",
+         "000218.htm"
+      ],
+      [
+         "Energy resources",
+         "001451.htm",
+         [
+            "Fossil fuel management",
+            "000226.htm"
+         ],
+         [
+            "Renewable energy development",
+            "000227.htm"
+         ]
+      ],
+      [
+         "Land use planning",
+         "000220.htm",
+         [
+            "Land use zoning",
+            "001429.htm"
+         ]
+      ],
+      [
+         "Land valuation",
+         "000222.htm"
+      ],
+      [
+         "Mineral resources",
+         "000223.htm",
+         [
+            "Land rehabilitation programs",
+            "000231.htm"
+         ],
+         [
+            "Mining regulations",
+            "000232.htm"
+         ]
+      ],
+      [
+         "Pollution emission control",
+         "000224.htm"
+      ],
+      [
+         "Water resources",
+         "000225.htm",
+         [
+            "Water conservation plans",
+            "000233.htm"
+         ],
+         [
+            "Water quality monitoring",
+            "000234.htm"
+         ],
+         [
+            "Water usage management",
+            "000235.htm"
+         ],
+         [
+            "Waterway management",
+            "000236.htm"
+         ]
+      ]
+   ],
+   [
+      "PRIMARY INDUSTRIES",
+      "000008.htm",
+      [
+         "Chemical and pesticide regulation",
+         "000202.htm"
+      ],
+      [
+         "Marine and rural regulation",
+         "000204.htm",
+         [
+            "Agricultural industry",
+            "000208.htm"
+         ],
+         [
+            "Fisheries industry",
+            "000209.htm"
+         ],
+         [
+            "Food quality assurance",
+            "000213.htm"
+         ],
+         [
+            "Forestry industry",
+            "000210.htm"
+         ]
+      ],
+      [
+         "Marine and rural support",
+         "000205.htm",
+         [
+            "Aquaculture industry",
+            "000212.htm"
+         ],
+         [
+            "Horticultural industry",
+            "000214.htm"
+         ],
+         [
+            "Pastoral industry",
+            "000215.htm"
+         ],
+         [
+            "Silvicultural industry",
+            "000216.htm"
+         ],
+         [
+            "Viticultural industry",
+            "000217.htm"
+         ]
+      ],
+      [
+         "Quarantine",
+         "000211.htm"
+      ],
+      [
+         "Rural field day promotion",
+         "000206.htm"
+      ],
+      [
+         "Rural partnership programs",
+         "000207.htm"
+      ]
+   ],
+   [
+      "SCIENCE",
+      "000010.htm",
+      [
+         "Agricultural sciences",
+         "000237.htm"
+      ],
+      [
+         "Animal and veterinary sciences",
+         "000238.htm"
+      ],
+      [
+         "Applied sciences",
+         "000239.htm",
+         [
+            "Engineering and technology sciences",
+            "000246.htm"
+         ],
+         [
+            "Weights and measures standards",
+            "000247.htm"
+         ]
+      ],
+      [
+         "Biological sciences",
+         "000240.htm",
+         [
+            "Biochemistry",
+            "000248.htm"
+         ],
+         [
+            "Biodiversity preservation",
+            "000249.htm"
+         ],
+         [
+            "Biotechnology development",
+            "000250.htm"
+         ],
+         [
+            "Botany",
+            "000251.htm"
+         ],
+         [
+            "Entomology",
+            "000252.htm"
+         ],
+         [
+            "Genetic engineering",
+            "000253.htm"
+         ],
+         [
+            "Physiology",
+            "000254.htm"
+         ]
+      ],
+      [
+         "Earth sciences",
+         "000241.htm",
+         [
+            "Atmospheric sciences",
+            "000255.htm"
+         ],
+         [
+            "Hydrology",
+            "000256.htm"
+         ],
+         [
+            "Mineral exploration",
+            "000257.htm"
+         ],
+         [
+            "Oceanography",
+            "000258.htm"
+         ],
+         [
+            "Seismology",
+            "000259.htm"
+         ]
+      ],
+      [
+         "Mathematical sciences",
+         "000242.htm"
+      ],
+      [
+         "Medical and health sciences",
+         "001229.htm"
+      ],
+      [
+         "Physical sciences",
+         "000244.htm",
+         [
+            "Astronomical sciences",
+            "000260.htm"
+         ],
+         [
+            "Atomic and molecular sciences",
+            "000261.htm"
+         ],
+         [
+            "Nuclear sciences",
+            "000262.htm"
+         ]
+      ],
+      [
+         "Spatial information research",
+         "000245.htm"
+      ]
+   ],
+   [
+      "SECURITY",
+      "000011.htm",
+      [
+         "Corrective services",
+         "000263.htm",
+         [
+            "Community based corrections",
+            "000270.htm"
+         ],
+         [
+            "Detention centre management",
+            "000271.htm"
+         ]
+      ],
+      [
+         "External security",
+         "000264.htm",
+         [
+            "Peacekeeping forces",
+            "000273.htm"
+         ]
+      ],
+      [
+         "Information security",
+         "000265.htm"
+      ],
+      [
+         "Intelligence",
+         "000266.htm",
+         [
+            "Forensic analysis",
+            "000275.htm"
+         ],
+         [
+            "Intelligence liaison",
+            "001159.htm"
+         ],
+         [
+            "Intelligence support",
+            "000277.htm"
+         ]
+      ],
+      [
+         "Law enforcement",
+         "000267.htm",
+         [
+            "Community policing",
+            "000278.htm"
+         ],
+         [
+            "Criminology",
+            "000279.htm"
+         ],
+         [
+            "Police administration",
+            "000280.htm"
+         ],
+         [
+            "Protective services",
+            "000281.htm"
+         ]
+      ],
+      [
+         "National security",
+         "001548.htm",
+         [
+            "Coastal surveillance",
+            "000269.htm"
+         ]
+      ]
+   ],
+   [
+      "SPORT AND RECREATION",
+      "000012.htm",
+      [
+         "Caravan and camping services",
+         "000284.htm"
+      ],
+      [
+         "Community recreational programs",
+         "000285.htm",
+         [
+            "Gambling support services",
+            "000290.htm"
+         ],
+         [
+            "Public fitness promotion",
+            "000291.htm"
+         ],
+         [
+            "Social club support",
+            "000292.htm"
+         ],
+         [
+            "Volunteer support programs",
+            "000293.htm"
+         ]
+      ],
+      [
+         "Gaming industry regulation",
+         "000286.htm"
+      ],
+      [
+         "Park and reserve services",
+         "000289.htm"
+      ],
+      [
+         "Sport and fitness development",
+         "000287.htm",
+         [
+            "Athlete scholarship programs",
+            "000295.htm"
+         ],
+         [
+            "Fundraising and donation schemes",
+            "000296.htm"
+         ],
+         [
+            "Games administration",
+            "000297.htm"
+         ],
+         [
+            "Games promotion",
+            "000298.htm"
+         ],
+         [
+            "Sporting grants administration",
+            "000299.htm"
+         ]
+      ],
+      [
+         "Sports drugs monitoring",
+         "000288.htm",
+         [
+            "Doping detection research",
+            "000300.htm"
+         ]
+      ]
+   ],
+   [
+      "TOURISM",
+      "000013.htm",
+      [
+         "Tourism industry development",
+         "000301.htm"
+      ],
+      [
+         "Tourist event promotion",
+         "000302.htm",
+         [
+            "Advertising campaigns",
+            "000305.htm"
+         ]
+      ],
+      [
+         "Travel missions",
+         "000303.htm"
+      ]
+   ],
+   [
+      "TRADE",
+      "000014.htm",
+      [
+         "Export regulation",
+         "000311.htm",
+         [
+            "Export promotion",
+            "000320.htm"
+         ],
+         [
+            "Prohibited export control",
+            "000321.htm"
+         ]
+      ],
+      [
+         "Import regulation",
+         "000312.htm",
+         [
+            "Prohibited import control",
+            "000323.htm"
+         ],
+         [
+            "Tariff regulation",
+            "000322.htm"
+         ]
+      ],
+      [
+         "Intellectual property management",
+         "000910.htm",
+         [
+            "Copyright registration",
+            "000308.htm"
+         ],
+         [
+            "Design registration",
+            "000310.htm"
+         ],
+         [
+            "Patent registration",
+            "000315.htm"
+         ],
+         [
+            "Trademark registration",
+            "000318.htm"
+         ]
+      ],
+      [
+         "International trade agreements",
+         "000313.htm"
+      ],
+      [
+         "Interstate trade agreements",
+         "000314.htm"
+      ],
+      [
+         "Trade development programs",
+         "000316.htm"
+      ],
+      [
+         "Trade expositions",
+         "000317.htm"
+      ]
+   ],
+   [
+      "TRANSPORT",
+      "000015.htm",
+      [
+         "Air transport",
+         "000324.htm",
+         [
+            "Air transport safety",
+            "000332.htm"
+         ],
+         [
+            "Aircraft standards",
+            "000330.htm"
+         ],
+         [
+            "Airport services",
+            "000331.htm"
+         ]
+      ],
+      [
+         "Freight movement regulation",
+         "000325.htm"
+      ],
+      [
+         "Passenger services",
+         "000326.htm"
+      ],
+      [
+         "Rail transport",
+         "000327.htm",
+         [
+            "Rail harmonisation standards",
+            "000333.htm"
+         ],
+         [
+            "Rail land acquisition regulation",
+            "000336.htm"
+         ],
+         [
+            "Rail transport safety",
+            "000337.htm"
+         ],
+         [
+            "Railway maintenance",
+            "000338.htm"
+         ],
+         [
+            "Rolling stock regulation",
+            "000339.htm"
+         ]
+      ],
+      [
+         "Road transport",
+         "000328.htm",
+         [
+            "Driving licences administration",
+            "000340.htm"
+         ],
+         [
+            "Road surface maintenance",
+            "000341.htm"
+         ],
+         [
+            "Road traffic regulation",
+            "000342.htm"
+         ],
+         [
+            "Road transport safety",
+            "000343.htm"
+         ],
+         [
+            "Vehicle registration",
+            "000344.htm"
+         ],
+         [
+            "Vehicle standards",
+            "000345.htm"
+         ]
+      ],
+      [
+         "Transport infrastructure development",
+         "000329.htm"
+      ]
+   ]
+]');
+class ArrayUtil
+{
+    public static function FilterRecursive(Array $source, $fn)
+    {
+        $result = array();
+        foreach ($source as $key => $value)
+        {
+            if (is_array($value))
+            {
+                $result[$key] = self::FilterRecursive($value, $fn);
+                continue;
+            }
+            if ($fn($key, $value))
+            {
+                $result[$key] = $value; // KEEP
+                continue;
+            }
+        }
+        return $result;
+    }
+        public static function DoRecursive(Array $source)
+    {
+        $result = array();
+        foreach ($source as $key => $value)
+        {
+            if (is_array($value))
+            {
+                $result["children"][] = self::DoRecursive($value);
+           
+            } else {
+                $result["name"] =  $value; // KEEP
+                
+            }
+        }
+        return $result;
+    }
+}
+
+// EXAMPLE ANONYMOUS CALLBACK FUNCTION
+$fn = function ($key, $value)
+{
+    if (strpos($value, '.htm') !== FALSE)
+    {
+        return FALSE; // DROP
+    }
+    return TRUE; // KEEP
+};
+
+
+$postFilter = ArrayUtil::FilterRecursive($raw, $fn);
+$postWrangle = ArrayUtil::DoRecursive($postFilter);
+
+echo json_encode($postWrangle);
+    ?>
+;
+ // Create a svg canvas
+            var vis = d3.select("#viz").append("svg:svg")
+            .attr("width", 1400)
+            .attr("height", 1400)
+            .append("svg:g")
+            .attr("transform", "translate(450, 450)");
+
+            // Create a cluster "canvas"
+            var cluster = d3.layout.cluster()
+            .size([500,500]);
+
+            var diagonal = d3.svg.diagonal.radial()
+            .projection(function(d) { return [d.y, d.x / 180 * Math.PI]; });
+
+            var nodes = cluster.nodes(treeData);
+            var links = cluster.links(nodes);
+
+            var link = vis.selectAll("pathlink")
+            .data(links)
+            .enter().append("svg:path")
+            .attr("class", "link")
+            .attr("d", diagonal)
+
+            var node = vis.selectAll("g.node")
+            .data(nodes)
+            .enter().append("svg:g")
+            .attr("transform", function(d) { return "rotate(" + (d.x - 90) + ")translate(" + d.y + ")"; })
+
+            // Add the dot at every node
+            node.append("svg:circle")
+            .attr("r", 3.5);
+
+            node.append("svg:text")
+            .attr("dx", function(d) { return d.x < 180 ? 8 : -8; })
+            .attr("dy", ".31em")
+            .attr("text-anchor", function(d) { return d.x < 180 ? "start" : "end"; })
+            .attr("transform", function(d) { return d.x < 180 ? null : "rotate(180)"; })
+            .text(function(d) { return d.name; });
+            
+            // alt
+            
+function visit(parent, visitFn, childrenFn)
+{
+    if (!parent) return;
+
+    visitFn(parent);
+
+    var children = childrenFn(parent);
+    if (children) {
+        var count = children.length;
+        for (var i = 0; i < count; i++) {
+            visit(children[i], visitFn, childrenFn);
+        }
+    }
+}
+
+function buildTree(containerName, customOptions)
+{
+    // build the options object
+    var options = $.extend({
+        nodeRadius: 5, fontSize: 12
+    }, customOptions);
+
+    
+    // Calculate total nodes, max label length
+    var totalNodes = 0;
+    var maxLabelLength = 0;
+    visit(treeData, function(d)
+    {
+        totalNodes++;
+        maxLabelLength = Math.max(d.name.length, maxLabelLength);
+    }, function(d)
+    {
+        return d.children && d.children.length > 0 ? d.children : null;
+    });
+
+    // size of the diagram
+    var size = { width:$(containerName).outerWidth(), height: totalNodes * 15};
+
+    var tree = d3.layout.tree()
+        .sort(null)
+        .size([size.height, size.width - maxLabelLength*options.fontSize])
+        .children(function(d)
+        {
+            return (!d.children || d.children.length === 0) ? null : d.children;
+        });
+
+    var nodes = tree.nodes(treeData);
+    var links = tree.links(nodes);
+
+    
+    /*
+        <svg>
+            <g class="container" />
+        </svg>
+     */
+    var layoutRoot = d3.select(containerName)
+        .append("svg:svg").attr("width", size.width).attr("height", size.height)
+        .append("svg:g")
+        .attr("class", "container")
+        .attr("transform", "translate(" + maxLabelLength + ",0)");
+
+
+    // Edges between nodes as a <path class="link" />
+    var link = d3.svg.diagonal()
+        .projection(function(d)
+        {
+            return [d.y, d.x];
+        });
+
+
+    layoutRoot.selectAll("path.link")
+        .data(links)
+        .enter()
+        .append("svg:path")
+        .attr("class", "link")
+        .attr("d", link);
+
+
+    /*
+        Nodes as
+        <g class="node">
+            <circle class="node-dot" />
+            <text />
+        </g>
+     */
+    var nodeGroup = layoutRoot.selectAll("g.node")
+        .data(nodes)
+        .enter()
+        .append("svg:g")
+        .attr("class", "node")
+        .attr("transform", function(d)
+        {
+            return "translate(" + d.y + "," + d.x + ")";
+        });
+
+    nodeGroup.append("svg:circle")
+        .attr("class", "node-dot")
+        .attr("r", options.nodeRadius);
+
+    nodeGroup.append("svg:text")
+        .attr("text-anchor", function(d)
+        {
+            return d.children ? "end" : "start";
+        })
+        .attr("dx", function(d)
+        {
+            var gap = 2 * options.nodeRadius;
+            return d.children ? -gap : gap;
+        })
+        .attr("dy", 3)
+        .text(function(d)
+        {
+            return d.name;
+        });
+
+}
+    $(function(){
+        buildTree("#tree-container");
+    });
+</script>
+
+
+</body>
+</html>

 Binary files /dev/null and b/admin/naa-agift.7z differ
--- /dev/null
+++ b/admin/naa-agift.json
@@ -1,1 +1,2232 @@
-
+[
+   "Home",
+   "index.htm",
+   [
+      "BUSINESS SUPPORT AND REGULATION",
+      "000411.htm",
+      [
+         "Association registration",
+         "000396.htm"
+      ],
+      [
+         "Business process auditing",
+         "000413.htm"
+      ],
+      [
+         "Business registration and licensing",
+         "000414.htm"
+      ],
+      [
+         "Business sponsorship",
+         "001371.htm"
+      ],
+      [
+         "Consumer protection",
+         "000439.htm"
+      ],
+      [
+         "Fair trading compliance",
+         "000482.htm",
+         [
+            "Prices surveillance",
+            "000533.htm"
+         ],
+         [
+            "Product safety",
+            "000534.htm"
+         ],
+         [
+            "Trade practices compliance",
+            "000583.htm"
+         ]
+      ],
+      [
+         "Financial institutions regulation",
+         "000485.htm"
+      ],
+      [
+         "Government procurement regulation",
+         "000491.htm"
+      ],
+      [
+         "Industry assistance schemes",
+         "000499.htm"
+      ],
+      [
+         "Industry development",
+         "000500.htm"
+      ],
+      [
+         "Insurance regulation",
+         "000501.htm",
+         [
+            "General insurance",
+            "000489.htm"
+         ],
+         [
+            "Life insurance",
+            "000505.htm"
+         ]
+      ],
+      [
+         "Professional accreditation",
+         "000535.htm"
+      ],
+      [
+         "Small business services",
+         "000565.htm",
+         [
+            "Small business advocacy",
+            "000563.htm"
+         ],
+         [
+            "Small business development",
+            "000564.htm"
+         ]
+      ],
+      [
+         "Stock market regulation",
+         "000572.htm"
+      ]
+   ],
+   [
+      "CIVIC INFRASTRUCTURE",
+      "000424.htm",
+      [
+         "Civic management",
+         "000425.htm",
+         [
+            "Architectural services",
+            "000387.htm"
+         ],
+         [
+            "Building approval services",
+            "000406.htm"
+         ],
+         [
+            "Building regulations and standards",
+            "000408.htm"
+         ],
+         [
+            "Engineering services",
+            "000477.htm"
+         ],
+         [
+            "Town planning",
+            "000582.htm"
+         ]
+      ],
+      [
+         "Energy supply",
+         "000476.htm"
+      ],
+      [
+         "Integrated services planning",
+         "000503.htm"
+      ],
+      [
+         "Public housing",
+         "000536.htm",
+         [
+            "Public housing construction",
+            "000537.htm"
+         ],
+         [
+            "Public housing design",
+            "000538.htm"
+         ],
+         [
+            "Public housing maintenance",
+            "000540.htm"
+         ]
+      ],
+      [
+         "Public land management",
+         "000541.htm",
+         [
+            "Burial ground management",
+            "000410.htm"
+         ],
+         [
+            "Cultural centre management",
+            "000444.htm"
+         ],
+         [
+            "Garden management",
+            "000488.htm"
+         ],
+         [
+            "Memorial maintenance",
+            "000509.htm"
+         ],
+         [
+            "Recreational park management",
+            "000549.htm"
+         ],
+         [
+            "Sporting facilities management",
+            "000571.htm"
+         ]
+      ],
+      [
+         "Regional development",
+         "000552.htm"
+      ],
+      [
+         "Transport network maintenance",
+         "000586.htm"
+      ],
+      [
+         "Waste management",
+         "001349.htm"
+      ]
+   ],
+   [
+      "COMMUNICATIONS",
+      "000433.htm",
+      [
+         "Advertising standards",
+         "000381.htm"
+      ],
+      [
+         "Broadcasting",
+         "000403.htm",
+         [
+            "Broadcasting standards",
+            "000404.htm"
+         ],
+         [
+            "Radio broadcasting",
+            "000546.htm"
+         ],
+         [
+            "Television broadcasting",
+            "000580.htm"
+         ]
+      ],
+      [
+         "Call centre administration",
+         "000417.htm"
+      ],
+      [
+         "Electronic commerce",
+         "000468.htm",
+         [
+            "Authentication",
+            "000399.htm"
+         ],
+         [
+            "Online transaction standards",
+            "000526.htm"
+         ]
+      ],
+      [
+         "Government media",
+         "000490.htm"
+      ],
+      [
+         "Information management standards",
+         "000283.htm",
+         [
+            "Data management",
+            "000448.htm"
+         ],
+         [
+            "Information dissemination",
+            "000502.htm"
+         ],
+         [
+            "Information technology standards",
+            "000282.htm"
+         ]
+      ],
+      [
+         "Media ownership regulation",
+         "000508.htm"
+      ],
+      [
+         "Postal services",
+         "000530.htm",
+         [
+            "Courier services",
+            "000441.htm"
+         ],
+         [
+            "Electronic postal services",
+            "000469.htm"
+         ],
+         [
+            "Retail postal services",
+            "000554.htm"
+         ]
+      ],
+      [
+         "Publishing",
+         "000543.htm",
+         [
+            "Electronic publishing",
+            "000470.htm"
+         ],
+         [
+            "Publishing standards",
+            "000544.htm"
+         ],
+         [
+            "Website development",
+            "000591.htm"
+         ]
+      ],
+      [
+         "Radio communication",
+         "000547.htm",
+         [
+            "Apparatus licensing",
+            "000385.htm"
+         ],
+         [
+            "Spectrum management",
+            "000570.htm"
+         ]
+      ],
+      [
+         "Satellite communication",
+         "000560.htm"
+      ],
+      [
+         "Telecommunications",
+         "000578.htm",
+         [
+            "Carriage service providers",
+            "000420.htm"
+         ],
+         [
+            "Carrier licensing",
+            "000421.htm"
+         ],
+         [
+            "Equipment licensing",
+            "000480.htm"
+         ],
+         [
+            "Mobile telephone services",
+            "000516.htm"
+         ],
+         [
+            "Telephone services",
+            "000579.htm"
+         ]
+      ]
+   ],
+   [
+      "COMMUNITY SERVICES",
+      "000435.htm",
+      [
+         "Accommodation services",
+         "000377.htm",
+         [
+            "Defence housing",
+            "000458.htm"
+         ],
+         [
+            "Emergency accommodation",
+            "000471.htm"
+         ],
+         [
+            "Public housing entitlements",
+            "000539.htm"
+         ],
+         [
+            "Refuge support",
+            "000551.htm"
+         ]
+      ],
+      [
+         "Community support",
+         "000436.htm",
+         [
+            "Adoption services",
+            "000378.htm"
+         ],
+         [
+            "Aged care services",
+            "000382.htm"
+         ],
+         [
+            "Child and youth support",
+            "000422.htm"
+         ],
+         [
+            "Child-care services",
+            "000423.htm"
+         ],
+         [
+            "Defence community programs",
+            "000452.htm"
+         ],
+         [
+            "Family reunion programs",
+            "000483.htm"
+         ],
+         [
+            "Veterans\" entitlements",
+            "000587.htm"
+         ]
+      ],
+      [
+         "Counselling services",
+         "000440.htm"
+      ],
+      [
+         "Emergency services",
+         "000474.htm",
+         [
+            "Ambulance services",
+            "000384.htm"
+         ],
+         [
+            "Emergency funding",
+            "000472.htm"
+         ],
+         [
+            "Firefighting services",
+            "000487.htm"
+         ]
+      ],
+      [
+         "Financial assistance",
+         "000484.htm",
+         [
+            "Benefits",
+            "000402.htm"
+         ],
+         [
+            "Income support schemes",
+            "000494.htm"
+         ]
+      ],
+      [
+         "Natural disasters",
+         "000521.htm",
+         [
+            "Disaster recovery",
+            "000462.htm"
+         ],
+         [
+            "Disaster relief",
+            "000463.htm"
+         ]
+      ],
+      [
+         "Rural community development",
+         "000557.htm"
+      ],
+      [
+         "Social justice and equity",
+         "000566.htm"
+      ],
+      [
+         "Transport access schemes",
+         "000901.htm"
+      ]
+   ],
+   [
+      "CULTURAL AFFAIRS",
+      "000442.htm",
+      [
+         "Arts development",
+         "000391.htm",
+         [
+            "Arts funding",
+            "000393.htm"
+         ],
+         [
+            "Arts incentive schemes",
+            "000394.htm"
+         ],
+         [
+            "Arts promotion",
+            "000395.htm"
+         ]
+      ],
+      [
+         "Collection access",
+         "000427.htm",
+         [
+            "Descriptive standards",
+            "000461.htm"
+         ],
+         [
+            "Finding aids development",
+            "000486.htm"
+         ],
+         [
+            "Reference services",
+            "000550.htm"
+         ]
+      ],
+      [
+         "Collection management",
+         "000430.htm",
+         [
+            "Artefact export regulation",
+            "000390.htm"
+         ],
+         [
+            "Collection accessioning",
+            "000428.htm"
+         ],
+         [
+            "Collection acquisition",
+            "000429.htm"
+         ],
+         [
+            "Collection storage",
+            "000432.htm"
+         ],
+         [
+            "Preservation services",
+            "000532.htm"
+         ]
+      ],
+      [
+         "Collection promotion",
+         "000431.htm",
+         [
+            "Exhibition programs",
+            "000481.htm"
+         ],
+         [
+            "Publicity programs",
+            "000542.htm"
+         ]
+      ],
+      [
+         "Cultural awards and scholarships",
+         "000443.htm"
+      ],
+      [
+         "Cultural festivals",
+         "000445.htm"
+      ],
+      [
+         "Cultural gifts programs",
+         "000446.htm"
+      ],
+      [
+         "Multicultural heritage promotion",
+         "000518.htm",
+         [
+            "Multicultural festivals",
+            "000517.htm"
+         ],
+         [
+            "Multicultural services",
+            "000519.htm"
+         ]
+      ]
+   ],
+   [
+      "DEFENCE",
+      "000449.htm",
+      [
+         "Australian Defence Forces",
+         "000397.htm",
+         [
+            "Air Force",
+            "002266.htm"
+         ],
+         [
+            "Army",
+            "000388.htm"
+         ],
+         [
+            "Badges and insignia",
+            "000401.htm"
+         ],
+         [
+            "Cadets",
+            "000416.htm"
+         ],
+         [
+            "Defence force commands",
+            "000456.htm"
+         ],
+         [
+            "Military bands",
+            "000510.htm"
+         ],
+         [
+            "Navy",
+            "000524.htm"
+         ],
+         [
+            "Reserves",
+            "000553.htm"
+         ],
+         [
+            "Roulettes",
+            "000556.htm"
+         ]
+      ],
+      [
+         "Defence estate management",
+         "000454.htm"
+      ],
+      [
+         "Defence force careers",
+         "000455.htm",
+         [
+            "Defence career development",
+            "000450.htm"
+         ],
+         [
+            "Military employment services",
+            "000512.htm"
+         ]
+      ],
+      [
+         "Defence strategic development",
+         "000574.htm",
+         [
+            "Defence efficiency review",
+            "000453.htm"
+         ],
+         [
+            "Defence reform program",
+            "000460.htm"
+         ]
+      ],
+      [
+         "Defence strategic policy",
+         "000576.htm",
+         [
+            "Strategic decisions",
+            "000573.htm"
+         ],
+         [
+            "Strategic planning",
+            "000575.htm"
+         ]
+      ],
+      [
+         "Defence strategic support",
+         "000577.htm",
+         [
+            "Capital equipment programs",
+            "000419.htm"
+         ],
+         [
+            "Defence industry",
+            "000459.htm"
+         ],
+         [
+            "Defence science and technology",
+            "000905.htm"
+         ],
+         [
+            "Logistics",
+            "000506.htm"
+         ]
+      ],
+      [
+         "Emergency management",
+         "000473.htm",
+         [
+            "Civil community assistance",
+            "000426.htm"
+         ],
+         [
+            "Disaster support",
+            "000464.htm"
+         ]
+      ],
+      [
+         "Military law",
+         "001814.htm"
+      ],
+      [
+         "Military operations",
+         "000515.htm",
+         [
+            "Australian theatre of war",
+            "000398.htm"
+         ],
+         [
+            "Military exercises",
+            "000514.htm"
+         ],
+         [
+            "Special operations",
+            "000569.htm"
+         ],
+         [
+            "Warfare",
+            "000589.htm"
+         ]
+      ]
+   ],
+   [
+      "EDUCATION AND TRAINING",
+      "000467.htm",
+      [
+         "Arts education",
+         "000392.htm"
+      ],
+      [
+         "Community education",
+         "000434.htm",
+         [
+            "Adult education programs",
+            "000379.htm"
+         ],
+         [
+            "Adult migrant education",
+            "000380.htm"
+         ],
+         [
+            "Road safety awareness",
+            "000555.htm"
+         ]
+      ],
+      [
+         "Curriculum development",
+         "000447.htm"
+      ],
+      [
+         "Early childhood education",
+         "000466.htm"
+      ],
+      [
+         "Military education and training",
+         "000511.htm",
+         [
+            "Army reserve training",
+            "000389.htm"
+         ],
+         [
+            "Defence college training",
+            "000451.htm"
+         ]
+      ],
+      [
+         "Overseas skills recognition",
+         "000527.htm"
+      ],
+      [
+         "School education",
+         "000561.htm",
+         [
+            "Discipline programs",
+            "000465.htm"
+         ],
+         [
+            "School transport regulation",
+            "000562.htm"
+         ],
+         [
+            "Special needs programs",
+            "000568.htm"
+         ]
+      ],
+      [
+         "Tertiary education",
+         "000581.htm"
+      ],
+      [
+         "Vocational education",
+         "000588.htm",
+         [
+            "Apprenticeship programs",
+            "000386.htm"
+         ],
+         [
+            "Hospital teaching programs",
+            "000493.htm"
+         ],
+         [
+            "Trainee programs",
+            "000584.htm"
+         ],
+         [
+            "Workplace training",
+            "000595.htm"
+         ]
+      ]
+   ],
+   [
+      "EMPLOYMENT",
+      "000016.htm",
+      [
+         "Human resources development",
+         "000348.htm",
+         [
+            "Occupational health and safety",
+            "000355.htm"
+         ],
+         [
+            "Recruitment programs",
+            "000356.htm"
+         ],
+         [
+            "Termination processes",
+            "002103.htm"
+         ],
+         [
+            "Workers compensation schemes",
+            "000363.htm"
+         ],
+         [
+            "Workplace discrimination monitoring",
+            "000364.htm"
+         ],
+         [
+            "Workplace equity and justice programs",
+            "000365.htm"
+         ]
+      ],
+      [
+         "Industrial awards and conditions",
+         "000349.htm",
+         [
+            "Award conditions",
+            "000366.htm"
+         ],
+         [
+            "Remuneration review",
+            "000368.htm"
+         ]
+      ],
+      [
+         "Labour market programs",
+         "000347.htm",
+         [
+            "Employment services marketing",
+            "000351.htm"
+         ],
+         [
+            "Job placement programs",
+            "000352.htm"
+         ],
+         [
+            "Job vacancy data management",
+            "000353.htm"
+         ]
+      ],
+      [
+         "Workplace agreement processes",
+         "000350.htm",
+         [
+            "Agreement bargaining processes",
+            "002141.htm"
+         ],
+         [
+            "Agreement dispute mediation",
+            "000370.htm"
+         ],
+         [
+            "Certified employment conditions",
+            "000371.htm"
+         ],
+         [
+            "Employment advocacy services",
+            "000374.htm"
+         ]
+      ]
+   ],
+   [
+      "ENVIRONMENT",
+      "000478.htm",
+      [
+         "Built environment",
+         "000409.htm",
+         [
+            "Building acoustics",
+            "000405.htm"
+         ],
+         [
+            "Building preservation",
+            "000407.htm"
+         ]
+      ],
+      [
+         "Climate information services",
+         "000203.htm"
+      ],
+      [
+         "Conservation programs",
+         "000438.htm",
+         [
+            "Endangered species protection",
+            "000475.htm"
+         ],
+         [
+            "Landcare programs",
+            "000504.htm"
+         ],
+         [
+            "Soil preservation programs",
+            "000567.htm"
+         ]
+      ],
+      [
+         "Environmental impact assessment",
+         "000479.htm"
+      ],
+      [
+         "Historic relic protection",
+         "000492.htm"
+      ],
+      [
+         "Marine life protection programs",
+         "000507.htm"
+      ],
+      [
+         "Natural heritage protection",
+         "000522.htm",
+         [
+            "National park management",
+            "000520.htm"
+         ],
+         [
+            "Nature reserve management",
+            "000523.htm"
+         ],
+         [
+            "Wilderness area management",
+            "000593.htm"
+         ],
+         [
+            "Wildlife sanctuary management",
+            "000594.htm"
+         ]
+      ],
+      [
+         "Oceans governance",
+         "000525.htm"
+      ],
+      [
+         "Pollutant prevention programs",
+         "000529.htm"
+      ],
+      [
+         "World heritage listings",
+         "000596.htm"
+      ]
+   ],
+   [
+      "FINANCE MANAGEMENT",
+      "000001.htm",
+      [
+         "Commonwealth State funding",
+         "000017.htm"
+      ],
+      [
+         "Currency",
+         "000018.htm",
+         [
+            "Counterfeiting control",
+            "000027.htm"
+         ]
+      ],
+      [
+         "Financial investment",
+         "000021.htm",
+         [
+            "Investment scheme regulation",
+            "000031.htm"
+         ]
+      ],
+      [
+         "Financial system management",
+         "002302.htm",
+         [
+            "Financial system monitoring",
+            "002306.htm"
+         ],
+         [
+            "Payments management",
+            "002297.htm"
+         ]
+      ],
+      [
+         "Fiscal policy",
+         "000022.htm",
+         [
+            "Public borrowing",
+            "000032.htm"
+         ],
+         [
+            "Public debt",
+            "000033.htm"
+         ],
+         [
+            "Public expenditure",
+            "000034.htm"
+         ]
+      ],
+      [
+         "Foreign investment control",
+         "000030.htm"
+      ],
+      [
+         "International monetary regulation",
+         "000023.htm"
+      ],
+      [
+         "Monetary policy",
+         "000020.htm",
+         [
+            "Exchange rates",
+            "000028.htm"
+         ],
+         [
+            "Inflation",
+            "000029.htm"
+         ],
+         [
+            "Interest rates",
+            "002295.htm"
+         ]
+      ],
+      [
+         "Resource management",
+         "000024.htm",
+         [
+            "Contract management",
+            "000037.htm"
+         ],
+         [
+            "Financial administration",
+            "000035.htm"
+         ],
+         [
+            "Financial budgeting",
+            "000036.htm"
+         ]
+      ],
+      [
+         "Retirement income",
+         "000025.htm",
+         [
+            "Asset assessment",
+            "000038.htm"
+         ],
+         [
+            "Retirement saving",
+            "000039.htm"
+         ],
+         [
+            "Superannuation regulation",
+            "000040.htm"
+         ]
+      ],
+      [
+         "Statistical analysis",
+         "000019.htm"
+      ],
+      [
+         "Taxation",
+         "000026.htm",
+         [
+            "Income assessment",
+            "000041.htm"
+         ],
+         [
+            "Revenue raising",
+            "000042.htm"
+         ],
+         [
+            "Taxation compliance",
+            "000043.htm"
+         ]
+      ]
+   ],
+   [
+      "GOVERNANCE",
+      "000002.htm",
+      [
+         "Civic celebrations",
+         "000046.htm"
+      ],
+      [
+         "Constitutional matters",
+         "000048.htm",
+         [
+            "Constitutional conventions",
+            "000061.htm"
+         ],
+         [
+            "Constitutional referenda",
+            "000062.htm"
+         ]
+      ],
+      [
+         "Electoral matters",
+         "000049.htm",
+         [
+            "Declaration of interests",
+            "000063.htm"
+         ],
+         [
+            "Election campaigning",
+            "000064.htm"
+         ],
+         [
+            "Electoral boundary assessment",
+            "000065.htm"
+         ]
+      ],
+      [
+         "Honours and awards programs",
+         "000050.htm"
+      ],
+      [
+         "Intergovernmental relations",
+         "000052.htm",
+         [
+            "Cross-border cooperation",
+            "000067.htm"
+         ],
+         [
+            "Intergovernment policy dissemination",
+            "000069.htm"
+         ]
+      ],
+      [
+         "Legislative drafting",
+         "000053.htm",
+         [
+            "Draft Bill amendment process",
+            "000070.htm"
+         ],
+         [
+            "Legislation review",
+            "000071.htm"
+         ],
+         [
+            "Preparation of legislative regulations",
+            "000072.htm"
+         ]
+      ],
+      [
+         "Official protocol",
+         "000054.htm",
+         [
+            "Ceremonial events and representation",
+            "000073.htm"
+         ],
+         [
+            "Head of Government protocol",
+            "000074.htm"
+         ],
+         [
+            "Official establishment management",
+            "000075.htm"
+         ],
+         [
+            "Official hospitality",
+            "000076.htm"
+         ],
+         [
+            "Official visits",
+            "000077.htm"
+         ]
+      ],
+      [
+         "Parliamentary chamber support",
+         "000045.htm",
+         [
+            "Hansard services",
+            "000058.htm"
+         ],
+         [
+            "Parliamentary papers",
+            "000059.htm"
+         ],
+         [
+            "Tabling of official documents",
+            "000060.htm"
+         ]
+      ],
+      [
+         "Parliamentary committee and member support",
+         "000047.htm"
+      ],
+      [
+         "Population census",
+         "000044.htm",
+         [
+            "Demographic surveys",
+            "000055.htm"
+         ],
+         [
+            "Household census",
+            "000056.htm"
+         ],
+         [
+            "Population distribution analysis",
+            "000057.htm"
+         ]
+      ],
+      [
+         "Public administration",
+         "002290.htm",
+         [
+            "Government auditing",
+            "002291.htm"
+         ],
+         [
+            "Public service",
+            "002292.htm"
+         ],
+         [
+            "Territories administration",
+            "002293.htm"
+         ]
+      ],
+      [
+         "Statistics",
+         "002289.htm"
+      ]
+   ],
+   [
+      "HEALTH CARE",
+      "000003.htm",
+      [
+         "Community health services",
+         "000078.htm",
+         [
+            "Clinical health services",
+            "000087.htm"
+         ],
+         [
+            "Health promotion",
+            "000089.htm"
+         ],
+         [
+            "Primary health care",
+            "000090.htm"
+         ]
+      ],
+      [
+         "Health insurance schemes",
+         "000079.htm"
+      ],
+      [
+         "Health protocol administration",
+         "000080.htm",
+         [
+            "Drugs and poisons regulation",
+            "000091.htm"
+         ],
+         [
+            "Food hygiene regulation",
+            "000092.htm"
+         ],
+         [
+            "Practitioner discipline",
+            "000093.htm"
+         ],
+         [
+            "Practitioner registration",
+            "000095.htm"
+         ]
+      ],
+      [
+         "Hospital services",
+         "000081.htm",
+         [
+            "Hospital administration",
+            "000096.htm"
+         ],
+         [
+            "Patient care",
+            "000097.htm"
+         ],
+         [
+            "Pharmaceutical and drug support",
+            "000098.htm"
+         ]
+      ],
+      [
+         "Medical research",
+         "000083.htm",
+         [
+            "Ethical compliance",
+            "000099.htm"
+         ],
+         [
+            "Medical aids regulation",
+            "000100.htm"
+         ],
+         [
+            "Medical research funding",
+            "000101.htm"
+         ],
+         [
+            "National referral laboratory services",
+            "000102.htm"
+         ],
+         [
+            "Population-based research",
+            "000103.htm"
+         ]
+      ],
+      [
+         "Public health services",
+         "000084.htm",
+         [
+            "Epidemiology",
+            "000104.htm"
+         ],
+         [
+            "Health disaster preparedness",
+            "000106.htm"
+         ],
+         [
+            "Health hazard prevention",
+            "000105.htm"
+         ],
+         [
+            "Medical quarantine services",
+            "000108.htm"
+         ],
+         [
+            "Notifiable disease management",
+            "000109.htm"
+         ]
+      ],
+      [
+         "Special needs services",
+         "000085.htm",
+         [
+            "Dental health services",
+            "000111.htm"
+         ],
+         [
+            "Independent living services",
+            "000112.htm"
+         ],
+         [
+            "Mental health services",
+            "000113.htm"
+         ],
+         [
+            "Residential services",
+            "000114.htm"
+         ]
+      ],
+      [
+         "Veterans\" health services",
+         "000086.htm"
+      ]
+   ],
+   [
+      "IMMIGRATION",
+      "000004.htm",
+      [
+         "Citizenship",
+         "000115.htm",
+         [
+            "Naturalisation assessment",
+            "000121.htm"
+         ],
+         [
+            "Presentation arrangements",
+            "000122.htm"
+         ]
+      ],
+      [
+         "Deportation",
+         "000116.htm"
+      ],
+      [
+         "Detention programs",
+         "000117.htm"
+      ],
+      [
+         "Migrant services",
+         "000118.htm",
+         [
+            "Interpreter services",
+            "000123.htm"
+         ],
+         [
+            "Migrant accommodation services",
+            "000125.htm"
+         ],
+         [
+            "Migrant settlement programs",
+            "000126.htm"
+         ]
+      ],
+      [
+         "Refugee services",
+         "000119.htm"
+      ],
+      [
+         "Travel authorisation",
+         "000120.htm",
+         [
+            "Permanent entry arrangements",
+            "000127.htm"
+         ],
+         [
+            "Temporary entry arrangements",
+            "000128.htm"
+         ]
+      ]
+   ],
+   [
+      "INDIGENOUS AFFAIRS",
+      "002285.htm",
+      [
+         "Indigenous cultural heritage",
+         "000495.htm",
+         [
+            "Cultural artefact repatriation",
+            "001772.htm"
+         ]
+      ],
+      [
+         "Indigenous enterprise development",
+         "000496.htm"
+      ],
+      [
+         "Indigenous health services",
+         "000082.htm"
+      ],
+      [
+         "Indigenous heritage conservation",
+         "000497.htm"
+      ],
+      [
+         "Indigenous reconciliation",
+         "000051.htm"
+      ],
+      [
+         "Indigenous welfare programs",
+         "000498.htm"
+      ]
+   ],
+   [
+      "INTERNATIONAL RELATIONS",
+      "000005.htm",
+      [
+         "Consular services",
+         "000129.htm"
+      ],
+      [
+         "Defence liaison",
+         "000132.htm",
+         [

+            "000140.htm"
+         ],
+         [
+            "Defence cooperation programs",
+            "000141.htm"
+         ],
+         [
+            "Defence personnel exchanges",
+            "000142.htm"
+         ],
+         [
+            "Military advisors",
+            "000143.htm"
+         ]
+      ],
+      [
+         "Diplomatic missions",
+         "000130.htm"
+      ],
+      [
+         "International affairs",
+         "000131.htm",
+         [
+            "Disarmament and arms control",
+            "000137.htm"
+         ],
+         [
+            "Nuclear safeguards",
+            "000139.htm"
+         ]
+      ],
+      [
+         "International treaties",
+         "000133.htm",
+         [
+            "Treaty administration",
+            "001384.htm"
+         ]
+      ],
+      [
+         "Overseas aid programs",
+         "000134.htm",
+         [
+            "Development assistance programs",
+            "000146.htm"
+         ],
+         [
+            "Overseas student scholarship programs",
+            "000147.htm"
+         ]
+      ],
+      [
+         "Overseas promotion",
+         "000135.htm"
+      ],
+      [
+         "Passport services",
+         "000136.htm"
+      ]
+   ],
+   [
+      "JUSTICE ADMINISTRATION",
+      "000006.htm",
+      [
+         "Administrative law",
+         "000149.htm",
+         [
+            "Administrative decision appeal",
+            "000163.htm"
+         ],
+         [
+            "Administrative decision review",
+            "000164.htm"
+         ],
+         [
+            "Censorship standards",
+            "000165.htm"
+         ],
+         [
+            "Copyright regulation",
+            "000166.htm"
+         ],
+         [
+            "Recordkeeping standards",
+            "000167.htm"
+         ]
+      ],
+      [
+         "Associations and corporate law",
+         "000150.htm",
+         [
+            "Bankruptcy proceedings",
+            "000168.htm"
+         ],
+         [
+            "Merger regulation",
+            "000169.htm"
+         ]
+      ],
+      [
+         "Civil law",
+         "000151.htm",
+         [
+            "Civil registration",
+            "000170.htm"
+         ],
+         [
+            "Conveyancing",
+            "000171.htm"
+         ],
+         [
+            "Dispute mediation programs",
+            "000174.htm"
+         ],
+         [
+            "Family law proceedings",
+            "000172.htm"
+         ],
+         [
+            "Probate applications",
+            "000173.htm"
+         ]
+      ],
+      [
+         "Commissions of inquiry",
+         "000152.htm"
+      ],
+      [
+         "Coronial law",
+         "000153.htm"
+      ],
+      [
+         "Court reporting",
+         "000154.htm"
+      ],
+      [
+         "Criminal law",
+         "000155.htm"
+      ],
+      [
+         "Human rights obligations",
+         "000156.htm"
+      ],
+      [
+         "Juvenile justice",
+         "000157.htm"
+      ],
+      [
+         "Legal aid services",
+         "000158.htm"
+      ],
+      [
+         "Local laws and ordinances",
+         "000159.htm"
+      ],
+      [
+         "Native title claims",
+         "000160.htm",
+         [
+            "Native title mediation programs",
+            "000180.htm"
+         ],
+         [
+            "Native title settlement negotiations",
+            "000181.htm"
+         ]
+      ],
+      [
+         "Privacy guideline monitoring",
+         "000161.htm"
+      ],
+      [
+         "Prosecution services",
+         "000162.htm"
+      ]
+   ],
+   [
+      "MARITIME SERVICES",
+      "000007.htm",
+      [
+         "Cargo control",
+         "000198.htm"
+      ],
+      [
+         "Harbour management",
+         "000183.htm"
+      ],
+      [
+         "Marina management",
+         "000184.htm"
+      ],
+      [
+         "Navigation",
+         "000185.htm",
+         [
+            "Charting sea lanes",
+            "000191.htm"
+         ],
+         [
+            "Light station maintenance",
+            "000192.htm"
+         ],
+         [
+            "Navigation systems development",
+            "000193.htm"
+         ]
+      ],
+      [
+         "Pilotage management",
+         "000182.htm"
+      ],
+      [
+         "Port regulation",
+         "001471.htm"
+      ],
+      [
+         "Sea passengers",
+         "001487.htm"
+      ],
+      [
+         "Search and rescue",
+         "000187.htm",
+         [
+            "Rescue coordination",
+            "000194.htm"
+         ],
+         [
+            "Search technology development",
+            "000195.htm"
+         ]
+      ],
+      [
+         "Ship personnel",
+         "000188.htm",
+         [
+            "Personnel safety standards",
+            "000196.htm"
+         ],
+         [
+            "Pilot licensing",
+            "000197.htm"
+         ]
+      ],
+      [
+         "Ship safety",
+         "000189.htm",
+         [
+            "Seaworthiness",
+            "000201.htm"
+         ],
+         [
+            "Ship commissioning",
+            "000199.htm"
+         ],
+         [
+            "Ship inspection",
+            "000200.htm"
+         ]
+      ]
+   ],
+   [
+      "NATURAL RESOURCES",
+      "000009.htm",
+      [
+         "Crown land administration",
+         "000218.htm"
+      ],
+      [
+         "Energy resources",
+         "001451.htm",
+         [
+            "Fossil fuel management",
+            "000226.htm"
+         ],
+         [
+            "Renewable energy development",
+            "000227.htm"
+         ]
+      ],
+      [
+         "Land use planning",
+         "000220.htm",
+         [
+            "Land use zoning",
+            "001429.htm"
+         ]
+      ],
+      [
+         "Land valuation",
+         "000222.htm"
+      ],
+      [
+         "Mineral resources",
+         "000223.htm",
+         [
+            "Land rehabilitation programs",
+            "000231.htm"
+         ],
+         [
+            "Mining regulations",
+            "000232.htm"
+         ]
+      ],
+      [
+         "Pollution emission control",
+         "000224.htm"
+      ],
+      [
+         "Water resources",
+         "000225.htm",
+         [
+            "Water conservation plans",
+            "000233.htm"
+         ],
+         [
+            "Water quality monitoring",
+            "000234.htm"
+         ],
+         [
+            "Water usage management",
+            "000235.htm"
+         ],
+         [
+            "Waterway management",
+            "000236.htm"
+         ]
+      ]
+   ],
+   [
+      "PRIMARY INDUSTRIES",
+      "000008.htm",
+      [
+         "Chemical and pesticide regulation",
+         "000202.htm"
+      ],
+      [
+         "Marine and rural regulation",
+         "000204.htm",
+         [
+            "Agricultural industry",
+            "000208.htm"
+         ],
+         [
+            "Fisheries industry",
+            "000209.htm"
+         ],
+         [
+            "Food quality assurance",
+            "000213.htm"
+         ],
+         [
+            "Forestry industry",
+            "000210.htm"
+         ]
+      ],
+      [
+         "Marine and rural support",
+         "000205.htm",
+         [
+            "Aquaculture industry",
+            "000212.htm"
+         ],
+         [
+            "Horticultural industry",
+            "000214.htm"
+         ],
+         [
+            "Pastoral industry",
+            "000215.htm"
+         ],
+         [
+            "Silvicultural industry",
+            "000216.htm"
+         ],
+         [
+            "Viticultural industry",
+            "000217.htm"
+         ]
+      ],
+      [
+         "Quarantine",
+         "000211.htm"
+      ],
+      [
+         "Rural field day promotion",
+         "000206.htm"
+      ],
+      [
+         "Rural partnership programs",
+         "000207.htm"
+      ]
+   ],
+   [
+      "SCIENCE",
+      "000010.htm",
+      [
+         "Agricultural sciences",
+         "000237.htm"
+      ],
+      [
+         "Animal and veterinary sciences",
+         "000238.htm"
+      ],
+      [
+         "Applied sciences",
+         "000239.htm",
+         [
+            "Engineering and technology sciences",
+            "000246.htm"
+         ],
+         [
+            "Weights and measures standards",
+            "000247.htm"
+         ]
+      ],
+      [
+         "Biological sciences",
+         "000240.htm",
+         [
+            "Biochemistry",
+            "000248.htm"
+         ],
+         [
+            "Biodiversity preservation",
+            "000249.htm"
+         ],
+         [
+            "Biotechnology development",
+            "000250.htm"
+         ],
+         [
+            "Botany",
+            "000251.htm"
+         ],
+         [
+            "Entomology",
+            "000252.htm"
+         ],
+         [
+            "Genetic engineering",
+            "000253.htm"
+         ],
+         [
+            "Physiology",
+            "000254.htm"
+         ]
+      ],
+      [
+         "Earth sciences",
+         "000241.htm",
+         [
+            "Atmospheric sciences",
+            "000255.htm"
+         ],
+         [
+            "Hydrology",
+            "000256.htm"
+         ],
+         [
+            "Mineral exploration",
+            "000257.htm"
+         ],
+         [
+            "Oceanography",
+            "000258.htm"
+         ],
+         [
+            "Seismology",
+            "000259.htm"
+         ]
+      ],
+      [
+         "Mathematical sciences",
+         "000242.htm"
+      ],
+      [
+         "Medical and health sciences",
+         "001229.htm"
+      ],
+      [
+         "Physical sciences",
+         "000244.htm",
+         [
+            "Astronomical sciences",
+            "000260.htm"
+         ],
+         [
+            "Atomic and molecular sciences",
+            "000261.htm"
+         ],
+         [
+            "Nuclear sciences",
+            "000262.htm"
+         ]
+      ],
+      [
+         "Spatial information research",
+         "000245.htm"
+      ]
+   ],
+   [
+      "SECURITY",
+      "000011.htm",
+      [
+         "Corrective services",
+         "000263.htm",
+         [
+            "Community based corrections",
+            "000270.htm"
+         ],
+         [
+            "Detention centre management",
+            "000271.htm"
+         ]
+      ],
+      [
+         "External security",
+         "000264.htm",
+         [
+            "Peacekeeping forces",
+            "000273.htm"
+         ]
+      ],
+      [
+         "Information security",
+         "000265.htm"
+      ],
+      [
+         "Intelligence",
+         "000266.htm",
+         [
+            "Forensic analysis",
+            "000275.htm"
+         ],
+         [
+            "Intelligence liaison",
+            "001159.htm"
+         ],
+         [
+            "Intelligence support",
+            "000277.htm"
+         ]
+      ],
+      [
+         "Law enforcement",
+         "000267.htm",
+         [
+            "Community policing",
+            "000278.htm"
+         ],
+         [
+            "Criminology",
+            "000279.htm"
+         ],
+         [
+            "Police administration",
+            "000280.htm"
+         ],
+         [
+            "Protective services",
+            "000281.htm"
+         ]
+      ],
+      [
+         "National security",
+         "001548.htm",
+         [
+            "Coastal surveillance",
+            "000269.htm"
+         ]
+      ]
+   ],
+   [
+      "SPORT AND RECREATION",
+      "000012.htm",
+      [
+         "Caravan and camping services",
+         "000284.htm"
+      ],
+      [
+         "Community recreational programs",
+         "000285.htm",
+         [
+            "Gambling support services",
+            "000290.htm"
+         ],
+         [
+            "Public fitness promotion",
+            "000291.htm"
+         ],
+         [
+            "Social club support",
+            "000292.htm"
+         ],
+         [
+            "Volunteer support programs",
+            "000293.htm"
+         ]
+      ],
+      [
+         "Gaming industry regulation",
+         "000286.htm"
+      ],
+      [
+         "Park and reserve services",
+         "000289.htm"
+      ],
+      [
+         "Sport and fitness development",
+         "000287.htm",
+         [
+            "Athlete scholarship programs",
+            "000295.htm"
+         ],
+         [
+            "Fundraising and donation schemes",
+            "000296.htm"
+         ],
+         [
+            "Games administration",
+            "000297.htm"
+         ],
+         [
+            "Games promotion",
+            "000298.htm"
+         ],
+         [
+            "Sporting grants administration",
+            "000299.htm"
+         ]
+      ],
+      [
+         "Sports drugs monitoring",
+         "000288.htm",
+         [
+            "Doping detection research",
+            "000300.htm"
+         ]
+      ]
+   ],
+   [
+      "TOURISM",
+      "000013.htm",
+      [
+         "Tourism industry development",
+         "000301.htm"
+      ],
+      [
+         "Tourist event promotion",
+         "000302.htm",
+         [
+            "Advertising campaigns",
+            "000305.htm"
+         ]
+      ],
+      [
+         "Travel missions",
+         "000303.htm"
+      ]
+   ],
+   [
+      "TRADE",
+      "000014.htm",
+      [
+         "Export regulation",
+         "000311.htm",
+         [
+            "Export promotion",
+            "000320.htm"
+         ],
+         [
+            "Prohibited export control",
+            "000321.htm"
+         ]
+      ],
+      [
+         "Import regulation",
+         "000312.htm",
+         [
+            "Prohibited import control",
+            "000323.htm"
+         ],
+         [
+            "Tariff regulation",
+            "000322.htm"
+         ]
+      ],
+      [
+         "Intellectual property management",
+         "000910.htm",
+         [
+            "Copyright registration",
+            "000308.htm"
+         ],
+         [
+            "Design registration",
+            "000310.htm"
+         ],
+         [
+            "Patent registration",
+            "000315.htm"
+         ],
+         [
+            "Trademark registration",
+            "000318.htm"
+         ]
+      ],
+      [
+         "International trade agreements",
+         "000313.htm"
+      ],
+      [
+         "Interstate trade agreements",
+         "000314.htm"
+      ],
+      [
+         "Trade development programs",
+         "000316.htm"
+      ],
+      [
+         "Trade expositions",
+         "000317.htm"
+      ]
+   ],
+   [
+      "TRANSPORT",
+      "000015.htm",
+      [
+         "Air transport",
+         "000324.htm",
+         [
+            "Air transport safety",
+            "000332.htm"
+         ],
+         [
+            "Aircraft standards",
+            "000330.htm"
+         ],
+         [
+            "Airport services",
+            "000331.htm"
+         ]
+      ],
+      [
+         "Freight movement regulation",
+         "000325.htm"
+      ],
+      [
+         "Passenger services",
+         "000326.htm"
+      ],
+      [
+         "Rail transport",
+         "000327.htm",
+         [
+            "Rail harmonisation standards",
+            "000333.htm"
+         ],
+         [
+            "Rail land acquisition regulation",
+            "000336.htm"
+         ],
+         [
+            "Rail transport safety",
+            "000337.htm"
+         ],
+         [
+            "Railway maintenance",
+            "000338.htm"
+         ],
+         [
+            "Rolling stock regulation",
+            "000339.htm"
+         ]
+      ],
+      [
+         "Road transport",
+         "000328.htm",
+         [
+            "Driving licences administration",
+            "000340.htm"
+         ],
+         [
+            "Road surface maintenance",
+            "000341.htm"
+         ],
+         [
+            "Road traffic regulation",
+            "000342.htm"
+         ],
+         [
+            "Road transport safety",
+            "000343.htm"
+         ],
+         [
+            "Vehicle registration",
+            "000344.htm"
+         ],
+         [
+            "Vehicle standards",
+            "000345.htm"
+         ]
+      ],
+      [
+         "Transport infrastructure development",
+         "000329.htm"
+      ]
+   ]
+]

--- /dev/null
+++ b/admin/validation.py
@@ -1,1 +1,30 @@
+#http://packages.python.org/CouchDB/client.html
+import couchdb
+import json
+import pprint
+import re
+from tidylib import tidy_document
 
+couch = couchdb.Server('http://127.0.0.1:5984/')
+
+# select database
+docsdb = couch['disclosr-documents']
+
+def f(x):
+	invalid = re.compile(r"ensure|testing|flicker|updating|longdesc|Accessibility Checks|not recognized")
+	valid = re.compile(r"line")
+	return (not invalid.search(x)) and valid.search(x) and x != ''
+
+for row in docsdb.view('app/getValidationRequired'): 
+    print row.id
+    html = docsdb.get_attachment(row.id,row.value.iterkeys().next()).read()
+    #print html
+    document, errors = tidy_document(html,options={'accessibility-check':1,'show-warnings':0,'markup':0},keep_doc=True)
+    #http://www.aprompt.ca/Tidy/accessibilitychecks.html
+    #print document
+    errors = '\n'.join(filter(f,errors.split('\n')))
+    #print errors
+    doc = docsdb.get(row.id)
+    doc['validation'] = errors
+    docsdb.save(doc)
+

--- a/alaveteli/exportAgencies.csv.php
+++ b/alaveteli/exportAgencies.csv.php
@@ -1,20 +1,6 @@
 <?php
 
 include_once("../include/common.inc.php");
-
-function shortName($name) {
-    $name = trim($name);
-    if (strstr($name,"Minister ") || strstr($name,"Treasurer") || strstr($name,"Parliamentary Secretary")) {
-        $badWords = Array ("Assisting the Prime Minister on","Assisting on"," the "," of "," for "," on "," and "," to ",","," ","'","`");
-        return str_replace($badWords,"",$name);
-    }
-            
-    else {
-    $out = Array();
-    preg_match_all('/[A-Z]/', $name, $out);
-    return implode("", $out[0]);
-    }
-}
 
 setlocale(LC_CTYPE, 'C');
 
@@ -63,38 +49,36 @@
                 $row = Array();
                 $row["#id"] = $agency->id;
                 $row["name"] = trim($agency->value->name);
-                if (isset($agency->value->foiEmail)) {
-                    $row["request_email"] = $agency->value->foiEmail;
-                } else {
-                    if ($agency->value->orgType == "FMA-DepartmentOfState") {
-                        $row["request_email"] = "foi@" . GetDomain($agency->value->website);
-                    } else {
-                        $row["request_email"] = $foiEmail[$agency->value->parentOrg];
+                $row["request_email"] = (isset($agency->value->foiEmail) ? $agency->value->foiEmail : "");
+                $row["short_name"] = (isset($agency->value->shortName) ? $agency->value->shortName : "");
+                $row["notes"] = (isset($agency->value->description) ? $agency->value->description : "");
+
+                $otherBodies = Array();
+                if (isset($agency->value->foiBodies)) {
+                    $otherBodies = array_merge($otherBodies, $agency->value->foiBodies);
+                }
+                if (isset($agency->value->positions)) {
+                    $positions = Array();
+                    foreach ($agency->value->positions as $position) {
+                        $positions[] = "Office of the ".$position;
                     }
+                    $otherBodies = array_merge($otherBodies, $positions);
                 }
-                if (isset($agency->value->shortName)) {
-                    $row["short_name"] = $agency->value->shortName;
-                } else {
-                    $row["short_name"] = shortName($agency->value->name);
+                sort($otherBodies);
+                if (count($otherBodies) > 0) {
+                    $row["notes"] .= "<br/> This department also responds to requests for information held by " . implode(", ", $otherBodies);
                 }
-                $row["notes"] = "";
+
                 $row["publication_scheme"] = (isset($agency->value->infoPublicationSchemeURL) ? $agency->value->infoPublicationSchemeURL : "");
                 $row["home_page"] = (isset($agency->value->website) ? $agency->value->website : "");
                 if ($agency->value->orgType == "FMA-DepartmentOfState") {
-                    $row["tag_string"] = $tag[$agency->value->_id] . " " . $agency->value->orgType;
+                    $row["tag_string"] = $tag[$agency->value->_id];
                 } else {
-                    $row["tag_string"] = $tag[$agency->value->parentOrg] . " " . $agency->value->orgType;
+                    $row["tag_string"] = $tag[$agency->value->parentOrg];
                 }
-
+                $row["tag_string"] .= " " . $agency->value->orgType;
+                $row["tag_string"] .= " federal";
                 fputcsv($fp, array_values($row));
-
-                if (isset($agency->value->foiBodies)) {
-                    foreach ($agency->value->foiBodies as $foiBody) {
-                        $row['name'] = iconv("UTF-8", "ASCII//TRANSLIT",$foiBody);
-                        $row["short_name"] = shortName($foiBody);
-                        fputcsv($fp, array_values($row));
-                    }
-                }
             }
         }
     } catch (SetteeRestClientException $e) {

file:b/bubbletree.php (new)
--- /dev/null
+++ b/bubbletree.php
@@ -1,1 +1,126 @@
 
+<!DOCTYPE html> 
+<html xmlns="http://www.w3.org/1999/xhtml"> 
+    <head> 
+        <meta charset="UTF-8"/> 
+        <title>Minimal BubbleTree Demo</title> 
+        <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.js"></script> 
+        <script type="text/javascript" src="js/bubbletree/lib/jquery.history.js"></script> 
+        <script type="text/javascript" src="js/bubbletree/lib/raphael.js"></script> 
+        <script type="text/javascript" src="js/bubbletree/lib/vis4.js"></script> 
+        <script type="text/javascript" src="js/bubbletree/lib/Tween.js"></script> 
+        <script type="text/javascript" src="js/bubbletree/build/bubbletree.js"></script> 
+        <link rel="stylesheet" type="text/css" href="js/bubbletree/build/bubbletree.css" /> 
+        <script type="text/javascript" src="js/bubbletree/styles/cofog.js"></script> 
+
+
+        <script type="text/javascript"> 
+       
+            $(function() {
+<?php
+include_once('include/common.inc.php');
+
+include("lib/Color.php");
+$color = new Lux_Color();
+
+$portfolios = Array();
+$total = 0;
+$db = $server->get_db('disclosr-agencies');
+try {
+    $rows = $db->get_view("app", "byDeptStateName", null, true)->rows;
+    foreach ($rows as $row) {
+        $portfolios[trim(str_replace(Array("Department of", "Department", "the", "'", "`"), "", $row->key))] = $row->value;
+    }
+} catch (SetteeRestClientException $e) {
+    setteErrorHandler($e);
+}
+
+$agencies = Array();
+try {
+    $rows = $db->get_view("app", "byCanonicalName", null, true)->rows;
+//print_r($rows);
+    foreach ($rows as $row) {
+        $employees = 0;
+        $portfolioid = 0;
+        if (isset($row->value->employees)) {
+            $employees = $row->value->employees;
+        }
+        if (isset($row->value->statistics->employees)) {
+            $agencyEmployeesArray = object_to_array($row->value->statistics->employees);
+            if (isset($agencyEmployeesArray["2010-2011"]["value"])) {
+                $employees = $agencyEmployeesArray["2010-2011"]["value"];
+            } else {
+                // bailout for agencies that are closed for business
+                continue;
+            }
+        }
+        if (!($employees > 0)) {
+            $employees = 0;
+        }
+        if (isset($row->value->parentOrg)) {
+            $portfolioid = $row->value->parentOrg;
+        }
+        if (isset($row->value->orgType) && $row->value->orgType == "FMA-DepartmentOfState") {
+            $portfolioid = $row->id;
+        }
+        $agencies[$portfolioid][$row->value->name] = $employees;
+    }
+} catch (SetteeRestClientException $e) {
+    setteErrorHandler($e);
+}
+//print_r($portfolios);
+//print_r($agencies);
+
+// http://martin.ankerl.com/2009/12/09/how-to-create-random-colors-programmatically/
+$golden_ratio_conjugate = 0.618033988749895;
+$h = 0.00+rand(0,10)/10; # use random start value
+foreach ($portfolios as $portfolioName => $portfolioID) {
+  $h += $golden_ratio_conjugate;
+  
+  $h =  fmod($h,1);
+    $portfolioColor = $color->hsv2hex(Array($h, .3, .99));
+    $subnodes = Array();
+    $portfolioEmployees = 0;
+    foreach ($agencies[$portfolioID] as $agencyName => $agencyEmployees) {
+        $agencyColor = $color->hsv2hex(Array($h / 10, rand(1, 10) / 10, abs(($h * (1 / 10)) - .5) + .5));
+        $subnodes[] = Array(
+            "label" => str_replace(Array("'", "`"), "", $agencyName),
+            "amount" => $agencyEmployees,
+            //"color" => "#" . $agencyColor
+        );
+        $portfolioEmployees += $agencyEmployees;
+    }
+    $nodes[] = Array(
+        "label" => $portfolioName,
+        "amount" => $portfolioEmployees,
+        //"color" => "#" . $portfolioColor,
+        "children" => $subnodes
+    );
+    $total += $portfolioEmployees;
+}
+$data = Array(
+    "label" => "Australian Federal Government",
+    "amount" => $total,
+    //"color" => "#000000",
+    "children" => $nodes
+);
+echo "var data =eval('('+'" . json_encode($data) . "'+')');";
+?>
+
+        new BubbleTree({
+            data: data,
+            container: '.bubbletree'
+        });
+		
+			
+    });
+     
+        </script> 
+    </head> 
+    <body> 
+        <div class="bubbletree-wrapper"> 
+            <div class="bubbletree"></div> 
+        </div> 
+    </body> 
+</html> 
+

file:a/charts.php -> file:b/charts.php
--- a/charts.php
+++ b/charts.php
@@ -1,100 +1,131 @@
 <?php
 include_once('include/common.inc.php');
-include_header();
+include_header('Charts');
 $db = $server->get_db('disclosr-agencies');
- 
-
 ?>
 <div class="foundation-header">
     <h1><a href="about.php">Charts</a></h1>
     <h4 class="subheader">Lorem ipsum.</h4>
 </div>
-<div id="placeholder" style="width:900px;height:600px;"></div>
+<div id="scores" style="width:900px;height:500px;"></div>
+<div id="employees" style="width:1000px;height:900px;"></div>
 <script id="source">
-window.onload = function() {
-            $(document).ready(function() {
-    var d1 = [];
-    var labels = [];
+    window.onload = function() {
+        $(document).ready(function() {
+            var d1 = [];
+            var scorelabels = [];
     <?php
     try {
-    $rows = $db->get_view("app", "scoreHas?group=true", null, true)->rows;
+        $rows = $db->get_view("app", "scoreHas?group=true", null, true)->rows;
 
-    /*foreach ($rows as $key => $row) {
-        echo "       d1.push([$key, {$row->value}]);".PHP_EOL;
-        echo "        labels.push('{$row->key}');".PHP_EOL;
-    }*/
-    $dataValues = Array();
-    foreach ($rows as $row) {
-        $dataValues[$row->value] = $row->key;
+
+        $dataValues = Array();
+        foreach ($rows as $row) {
+            $dataValues[$row->value] = $row->key;
+        }
+        $i = 0;
+        ksort($dataValues);
+        foreach ($dataValues as $value => $key) {
+
+            echo "       d1.push([$i, $value]);" . PHP_EOL;
+            echo "        scorelabels.push('$key');" . PHP_EOL;
+            $i++;
+        }
+    } catch (SetteeRestClientException $e) {
+        setteErrorHandler($e);
     }
-    $i = 0;
-    ksort($dataValues);
-    foreach($dataValues as $value => $key) {
+    ?>
+                function scoretrackformatter(obj) {
+                    if (scorelabels[Math.floor(obj.x)]) {
+                        return (scorelabels[Math.floor(obj.x)])+"="+obj.y;
+                     
+                    } else {
+                        return "";
+                    }
+                }
+                function scoretickformatter(val, axis) {
+                    if (scorelabels[Math.floor(val)]) {
+                        return '<p style="margin-top:8em;-webkit-transform:rotate(-90deg);">'+(scorelabels[Math.floor(val)])+"</b>";
+                     
+                    } else {
+                        return "";
+                    }
+                }
+                Flotr.draw(document.getElementById("scores"), [ {data: d1}], {
+                    HtmlText: true,
+                    bars : {
+                        show : true
+                    },
+                    mouse : {
+                        track : true,
+                        relative : true,
+                        trackFormatter: scoretrackformatter
+                    },yaxis: {
+                        autoscaling: true
+                    },
+                    xaxis: {
+                    autoscaling: true,
+                        minorTickFreq: 0.6,
+                        noTicks : scorelabels.length,
+                        tickFormatter: scoretickformatter
+                    }
+                });
+                
+                
+                
+                
+                
+                
+                
+                
+var emplabels = [];
+function emptrackformatter(obj) {
+                   
+                        return (obj.series.label)+" = "+obj.y+" in "+emplabels[Math.floor(obj.x)];
+                     
+                }
+                function emptickformatter(val, axis) {
+                    if (emplabels[Math.floor(val)]) {
+                        return '<p style="margin-top:8em;-webkit-transform:rotate(-90deg);">'+(emplabels[Math.floor(val)])+"</b>";
+                     
+                    } else {
+                        return "";
+                    }
+                }
+function onDataReceived(series) {
+    emplabels = series.labels;
+                       Flotr.draw(document.getElementById("employees"), series.data, {
+                    mouse : {
+                        track : true,
+                        relative : true,
+                    trackFormatter: emptrackformatter
+                    },yaxis: {
+                        max: 10000,
+                        scaling: 'logarithmic'
+                    },
+                    xaxis: {
+                    minorTickFreq: 1,
+                    noTicks: emplabels.length,
+                    showMinorLabels: true,
+                        tickFormatter: emptickformatter
+                    },
+                    legend: {
+                        show: false
+                    }
+                });
+                }
         
-        echo "       d1.push([$i, $value]);".PHP_EOL;
-        echo "        labels.push('$key');".PHP_EOL;
-        $i++;
-    }
-} catch (SetteeRestClientException $e) {
-    setteErrorHandler($e);
-}
-?>
-    
-        $.plot($("#placeholder"), [ d1], {
-             grid: { hoverable: true },
-             
-            series: {
-                bars: { show: true, barWidth: 0.6 }
-            },
-            xaxis: {
-                 tickFormatter: function formatter(val, axis) {
-                     if (labels[val]) {
-                         return(labels[val]);
-                     
-                 } else {
-                     return "";
-                 }
-           
-        },
-                labelAngle: 90
-            }
-        });
-    
-var previousPoint = null;
-$("#placeholder").bind("plothover", function (event, pos, item) {
-    if (item) {
-        if (previousPoint != item.datapoint) {
-            previousPoint = item.datapoint;
-
-            $("#tooltip").remove();
-            var x = item.datapoint[0],
-                y = item.datapoint[1] - item.datapoint[2];
-
-            showTooltip(item.pageX, item.pageY, y );
-        }
-    }
-    else {
-        $("#tooltip").remove();
-        previousPoint = null;            
-    }
-});
+                $.ajax({
+                    url: "admin/exportEmployees.csv.php?format=json",
+                    method: 'GET',
+                    dataType: 'json',
+                    success: onDataReceived
+                });
 
     
-    
-});
-};
- function showTooltip(x, y, contents) {
-        $('<div id="tooltip">' + contents + '</div>').css( {
-            position: 'absolute',
-            display: 'none',
-            top: y + 5,
-            left: x + 5,
-            border: '1px solid #fdd',
-            padding: '2px',
-            'background-color': '#fee',
-            opacity: 0.80
-        }).appendTo("body").fadeIn(200);
-    }
+            });
+        };
+ 
 </script>
 
 <?php

directory:a/couchdb/settee -> directory:b/couchdb/settee
--- a/couchdb/settee
+++ b/couchdb/settee

--- /dev/null
+++ b/documents/404.html
@@ -1,1 +1,44 @@
+<!doctype html>
+<html lang="en">
+<head>
+  <meta charset="utf-8">
+  <title>Page Not Found :(</title>
+  <style>
+    ::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
+    ::selection { background: #fe57a1; color: #fff; text-shadow: none; }
+    html { padding: 30px 10px; font-size: 20px; line-height: 1.4; color: #737373; background: #f0f0f0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
+    html, input { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
+    body { max-width: 500px; _width: 500px; padding: 30px 20px 50px; border: 1px solid #b3b3b3; border-radius: 4px; margin: 0 auto; box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff; background: #fcfcfc; }
+    h1 { margin: 0 10px; font-size: 50px; text-align: center; }
+    h1 span { color: #bbb; }
+    h3 { margin: 1.5em 0 0.5em; }
+    p { margin: 1em 0; }
+    ul { padding: 0 0 0 40px; margin: 1em 0; }
+    .container { max-width: 380px; _width: 380px; margin: 0 auto; }
+    /* google search */
+    #goog-fixurl ul { list-style: none; padding: 0; margin: 0; }
+    #goog-fixurl form { margin: 0; }
+    #goog-wm-qt, #goog-wm-sb { border: 1px solid #bbb; font-size: 16px; line-height: normal; vertical-align: top; color: #444; border-radius: 2px; }
+    #goog-wm-qt { width: 220px; height: 20px; padding: 5px; margin: 5px 10px 0 0; box-shadow: inset 0 1px 1px #ccc; }
+    #goog-wm-sb { display: inline-block; height: 32px; padding: 0 10px; margin: 5px 0 0; white-space: nowrap; cursor: pointer; background-color: #f5f5f5; background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1); background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1); background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1); background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1); -webkit-appearance: none; -moz-appearance: none; appearance: none; *overflow: visible; *display: inline; *zoom: 1; }
+    #goog-wm-sb:hover, #goog-wm-sb:focus { border-color: #aaa; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); background-color: #f8f8f8; }
+    #goog-wm-qt:focus, #goog-wm-sb:focus { border-color: #105cb6; outline: 0; color: #222; }
+    input::-moz-focus-inner { padding: 0; border: 0; }
+  </style>
+</head>
+<body>
+  <div class="container">
+    <h1>Not found <span>:(</span></h1>
+    <p>Sorry, but the page you were trying to view does not exist.</p>
+    <p>It looks like this was the result of either:</p>
+    <ul>
+      <li>a mistyped address</li>
+      <li>an out-of-date link</li>
+    </ul>
+    <script>
+      var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host;
+    </script>
+    <script src="http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
+  </div>
 
+

 Binary files /dev/null and b/documents/apple-touch-icon-114x114-precomposed.png differ
 Binary files /dev/null and b/documents/apple-touch-icon-57x57-precomposed.png differ
 Binary files /dev/null and b/documents/apple-touch-icon-72x72-precomposed.png differ
 Binary files /dev/null and b/documents/apple-touch-icon-precomposed.png differ
 Binary files /dev/null and b/documents/apple-touch-icon.png differ
--- /dev/null
+++ b/documents/crossdomain.xml
@@ -1,1 +1,26 @@
+<?xml version="1.0"?>
+<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
+<cross-domain-policy>
 
+
+<!-- Read this: www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html -->
+
+<!-- Most restrictive policy: -->
+	<site-control permitted-cross-domain-policies="none"/>
+
+
+
+<!-- Least restrictive policy: -->
+<!--
+	<site-control permitted-cross-domain-policies="all"/>
+	<allow-access-from domain="*" to-ports="*" secure="false"/>
+	<allow-http-request-headers-from domain="*" headers="*" secure="false"/>
+-->
+<!--
+  If you host a crossdomain.xml file with allow-access-from domain="*"
+  and don’t understand all of the points described here, you probably
+  have a nasty security vulnerability. ~ simon willison
+-->
+
+</cross-domain-policy>
+

--- /dev/null
+++ b/documents/css/bootstrap-responsive.css
@@ -1,1 +1,1089 @@
-
+/*!
+ * Bootstrap Responsive v2.2.1
+ *
+ * Copyright 2012 Twitter, Inc
+ * Licensed under the Apache License v2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Designed and built with all the love in the world @twitter by @mdo and @fat.
+ */
+
+.clearfix {
+  *zoom: 1;
+}
+
+.clearfix:before,
+.clearfix:after {
+  display: table;
+  line-height: 0;
+  content: "";
+}
+
+.clearfix:after {
+  clear: both;
+}
+
+.hide-text {
+  font: 0/0 a;
+  color: transparent;
+  text-shadow: none;
+  background-color: transparent;
+  border: 0;
+}
+
+.input-block-level {
+  display: block;
+  width: 100%;
+  min-height: 30px;
+  -webkit-box-sizing: border-box;
+     -moz-box-sizing: border-box;
+          box-sizing: border-box;
+}
+
+.hidden {
+  display: none;
+  visibility: hidden;
+}
+
+.visible-phone {
+  display: none !important;
+}
+
+.visible-tablet {
+  display: none !important;
+}
+
+.hidden-desktop {
+  display: none !important;
+}
+
+.visible-desktop {
+  display: inherit !important;
+}
+
+@media (min-width: 768px) and (max-width: 979px) {
+  .hidden-desktop {
+    display: inherit !important;
+  }
+  .visible-desktop {
+    display: none !important ;
+  }
+  .visible-tablet {
+    display: inherit !important;
+  }
+  .hidden-tablet {
+    display: none !important;
+  }
+}
+
+@media (max-width: 767px) {
+  .hidden-desktop {
+    display: inherit !important;
+  }
+  .visible-desktop {
+    display: none !important;
+  }
+  .visible-phone {
+    display: inherit !important;
+  }
+  .hidden-phone {
+    display: none !important;
+  }
+}
+
+@media (min-width: 1200px) {
+  .row {
+    margin-left: -30px;
+    *zoom: 1;
+  }
+  .row:before,
+  .row:after {
+    display: table;
+    line-height: 0;
+    content: "";
+  }
+  .row:after {
+    clear: both;
+  }
+  [class*="span"] {
+    float: left;
+    min-height: 1px;
+    margin-left: 30px;
+  }
+  .container,
+  .navbar-static-top .container,
+  .navbar-fixed-top .container,
+  .navbar-fixed-bottom .container {
+    width: 1170px;
+  }
+  .span12 {
+    width: 1170px;
+  }
+  .span11 {
+    width: 1070px;
+  }
+  .span10 {
+    width: 970px;
+  }
+  .span9 {
+    width: 870px;
+  }
+  .span8 {
+    width: 770px;
+  }
+  .span7 {
+    width: 670px;
+  }
+  .span6 {
+    width: 570px;
+  }
+  .span5 {
+    width: 470px;
+  }
+  .span4 {
+    width: 370px;
+  }
+  .span3 {
+    width: 270px;
+  }
+  .span2 {
+    width: 170px;
+  }
+  .span1 {
+    width: 70px;
+  }
+  .offset12 {
+    margin-left: 1230px;
+  }
+  .offset11 {
+    margin-left: 1130px;
+  }
+  .offset10 {
+    margin-left: 1030px;
+  }
+  .offset9 {
+    margin-left: 930px;
+  }
+  .offset8 {
+    margin-left: 830px;
+  }
+  .offset7 {
+    margin-left: 730px;
+  }
+  .offset6 {
+    margin-left: 630px;
+  }
+  .offset5 {
+    margin-left: 530px;
+  }
+  .offset4 {
+    margin-left: 430px;
+  }
+  .offset3 {
+    margin-left: 330px;
+  }
+  .offset2 {
+    margin-left: 230px;
+  }
+  .offset1 {
+    margin-left: 130px;
+  }
+  .row-fluid {
+    width: 100%;
+    *zoom: 1;
+  }
+  .row-fluid:before,
+  .row-fluid:after {
+    display: table;
+    line-height: 0;
+    content: "";
+  }
+  .row-fluid:after {
+    clear: both;
+  }
+  .row-fluid [class*="span"] {
+    display: block;
+    float: left;
+    width: 100%;
+    min-height: 30px;
+    margin-left: 2.564102564102564%;
+    *margin-left: 2.5109110747408616%;
+    -webkit-box-sizing: border-box;
+       -moz-box-sizing: border-box;
+            box-sizing: border-box;
+  }
+  .row-fluid [class*="span"]:first-child {
+    margin-left: 0;
+  }
+  .row-fluid .controls-row [class*="span"] + [class*="span"] {
+    margin-left: 2.564102564102564%;
+  }
+  .row-fluid .span12 {
+    width: 100%;
+    *width: 99.94680851063829%;
+  }
+  .row-fluid .span11 {
+    width: 91.45299145299145%;
+    *width: 91.39979996362975%;
+  }
+  .row-fluid .span10 {
+    width: 82.90598290598291%;
+    *width: 82.8527914166212%;
+  }
+  .row-fluid .span9 {
+    width: 74.35897435897436%;
+    *width: 74.30578286961266%;
+  }
+  .row-fluid .span8 {
+    width: 65.81196581196582%;
+    *width: 65.75877432260411%;
+  }
+  .row-fluid .span7 {
+    width: 57.26495726495726%;
+    *width: 57.21176577559556%;
+  }
+  .row-fluid .span6 {
+    width: 48.717948717948715%;
+    *width: 48.664757228587014%;
+  }
+  .row-fluid .span5 {
+    width: 40.17094017094017%;
+    *width: 40.11774868157847%;
+  }
+  .row-fluid .span4 {
+    width: 31.623931623931625%;
+    *width: 31.570740134569924%;
+  }
+  .row-fluid .span3 {
+    width: 23.076923076923077%;
+    *width: 23.023731587561375%;
+  }
+  .row-fluid .span2 {
+    width: 14.52991452991453%;
+    *width: 14.476723040552828%;
+  }
+  .row-fluid .span1 {
+    width: 5.982905982905983%;
+    *width: 5.929714493544281%;
+  }
+  .row-fluid .offset12 {
+    margin-left: 105.12820512820512%;
+    *margin-left: 105.02182214948171%;
+  }
+  .row-fluid .offset12:first-child {
+    margin-left: 102.56410256410257%;
+    *margin-left: 102.45771958537915%;
+  }
+  .row-fluid .offset11 {
+    margin-left: 96.58119658119658%;
+    *margin-left: 96.47481360247316%;
+  }
+  .row-fluid .offset11:first-child {
+    margin-left: 94.01709401709402%;
+    *margin-left: 93.91071103837061%;
+  }
+  .row-fluid .offset10 {
+    margin-left: 88.03418803418803%;
+    *margin-left: 87.92780505546462%;
+  }
+  .row-fluid .offset10:first-child {
+    margin-left: 85.47008547008548%;
+    *margin-left: 85.36370249136206%;
+  }
+  .row-fluid .offset9 {
+    margin-left: 79.48717948717949%;
+    *margin-left: 79.38079650845607%;
+  }
+  .row-fluid .offset9:first-child {
+    margin-left: 76.92307692307693%;
+    *margin-left: 76.81669394435352%;
+  }
+  .row-fluid .offset8 {
+    margin-left: 70.94017094017094%;
+    *margin-left: 70.83378796144753%;
+  }
+  .row-fluid .offset8:first-child {
+    margin-left: 68.37606837606839%;
+    *margin-left: 68.26968539734497%;
+  }
+  .row-fluid .offset7 {
+    margin-left: 62.393162393162385%;
+    *margin-left: 62.28677941443899%;
+  }
+  .row-fluid .offset7:first-child {
+    margin-left: 59.82905982905982%;
+    *margin-left: 59.72267685033642%;
+  }
+  .row-fluid .offset6 {
+    margin-left: 53.84615384615384%;
+    *margin-left: 53.739770867430444%;
+  }
+  .row-fluid .offset6:first-child {
+    margin-left: 51.28205128205128%;
+    *margin-left: 51.175668303327875%;
+  }
+  .row-fluid .offset5 {
+    margin-left: 45.299145299145295%;
+    *margin-left: 45.1927623204219%;
+  }
+  .row-fluid .offset5:first-child {
+    margin-left: 42.73504273504273%;
+    *margin-left: 42.62865975631933%;
+  }
+  .row-fluid .offset4 {
+    margin-left: 36.75213675213675%;
+    *margin-left: 36.645753773413354%;
+  }
+  .row-fluid .offset4:first-child {
+    margin-left: 34.18803418803419%;
+    *margin-left: 34.081651209310785%;
+  }
+  .row-fluid .offset3 {
+    margin-left: 28.205128205128204%;
+    *margin-left: 28.0987452264048%;
+  }
+  .row-fluid .offset3:first-child {
+    margin-left: 25.641025641025642%;
+    *margin-left: 25.53464266230224%;
+  }
+  .row-fluid .offset2 {
+    margin-left: 19.65811965811966%;
+    *margin-left: 19.551736679396257%;
+  }
+  .row-fluid .offset2:first-child {
+    margin-left: 17.094017094017094%;
+    *margin-left: 16.98763411529369%;
+  }
+  .row-fluid .offset1 {
+    margin-left: 11.11111111111111%;
+    *margin-left: 11.004728132387708%;
+  }
+  .row-fluid .offset1:first-child {
+    margin-left: 8.547008547008547%;
+    *margin-left: 8.440625568285142%;
+  }
+  input,
+  textarea,
+  .uneditable-input {
+    margin-left: 0;
+  }
+  .controls-row [class*="span"] + [class*="span"] {
+    margin-left: 30px;
+  }
+  input.span12,
+  textarea.span12,
+  .uneditable-input.span12 {
+    width: 1156px;
+  }
+  input.span11,
+  textarea.span11,
+  .uneditable-input.span11 {
+    width: 1056px;
+  }
+  input.span10,
+  textarea.span10,
+  .uneditable-input.span10 {
+    width: 956px;
+  }
+  input.span9,
+  textarea.span9,
+  .uneditable-input.span9 {
+    width: 856px;
+  }
+  input.span8,
+  textarea.span8,
+  .uneditable-input.span8 {
+    width: 756px;
+  }
+  input.span7,
+  textarea.span7,
+  .uneditable-input.span7 {
+    width: 656px;
+  }
+  input.span6,
+  textarea.span6,
+  .uneditable-input.span6 {
+    width: 556px;
+  }
+  input.span5,
+  textarea.span5,
+  .uneditable-input.span5 {
+    width: 456px;
+  }
+  input.span4,
+  textarea.span4,
+  .uneditable-input.span4 {
+    width: 356px;
+  }
+  input.span3,
+  textarea.span3,
+  .uneditable-input.span3 {
+    width: 256px;
+  }
+  input.span2,
+  textarea.span2,
+  .uneditable-input.span2 {
+    width: 156px;
+  }
+  input.span1,
+  textarea.span1,
+  .uneditable-input.span1 {
+    width: 56px;
+  }
+  .thumbnails {
+    margin-left: -30px;
+  }
+  .thumbnails > li {
+    margin-left: 30px;
+  }
+  .row-fluid .thumbnails {
+    margin-left: 0;
+  }
+}
+
+@media (min-width: 768px) and (max-width: 979px) {
+  .row {
+    margin-left: -20px;
+    *zoom: 1;
+  }
+  .row:before,
+  .row:after {
+    display: table;
+    line-height: 0;
+    content: "";
+  }
+  .row:after {
+    clear: both;
+  }
+  [class*="span"] {
+    float: left;
+    min-height: 1px;
+    margin-left: 20px;
+  }
+  .container,
+  .navbar-static-top .container,
+  .navbar-fixed-top .container,
+  .navbar-fixed-bottom .container {
+    width: 724px;
+  }
+  .span12 {
+    width: 724px;
+  }
+  .span11 {
+    width: 662px;
+  }
+  .span10 {
+    width: 600px;
+  }
+  .span9 {
+    width: 538px;
+  }
+  .span8 {
+    width: 476px;
+  }
+  .span7 {
+    width: 414px;
+  }
+  .span6 {
+    width: 352px;
+  }
+  .span5 {
+    width: 290px;
+  }
+  .span4 {
+    width: 228px;
+  }
+  .span3 {
+    width: 166px;
+  }
+  .span2 {
+    width: 104px;
+  }
+  .span1 {
+    width: 42px;
+  }
+  .offset12 {
+    margin-left: 764px;
+  }
+  .offset11 {
+    margin-left: 702px;
+  }
+  .offset10 {
+    margin-left: 640px;
+  }
+  .offset9 {
+    margin-left: 578px;
+  }
+  .offset8 {
+    margin-left: 516px;
+  }
+  .offset7 {
+    margin-left: 454px;
+  }
+  .offset6 {
+    margin-left: 392px;
+  }
+  .offset5 {
+    margin-left: 330px;
+  }
+  .offset4 {
+    margin-left: 268px;
+  }
+  .offset3 {
+    margin-left: 206px;
+  }
+  .offset2 {
+    margin-left: 144px;
+  }
+  .offset1 {
+    margin-left: 82px;
+  }
+  .row-fluid {
+    width: 100%;
+    *zoom: 1;
+  }
+  .row-fluid:before,
+  .row-fluid:after {
+    display: table;
+    line-height: 0;
+    content: "";
+  }
+  .row-fluid:after {
+    clear: both;
+  }
+  .row-fluid [class*="span"] {
+    display: block;
+    float: left;
+    width: 100%;
+    min-height: 30px;
+    margin-left: 2.7624309392265194%;
+    *margin-left: 2.709239449864817%;
+    -webkit-box-sizing: border-box;
+       -moz-box-sizing: border-box;
+            box-sizing: border-box;
+  }
+  .row-fluid [class*="span"]:first-child {
+    margin-left: 0;
+  }
+  .row-fluid .controls-row [class*="span"] + [class*="span"] {
+    margin-left: 2.7624309392265194%;
+  }
+  .row-fluid .span12 {
+    width: 100%;
+    *width: 99.94680851063829%;
+  }
+  .row-fluid .span11 {
+    width: 91.43646408839778%;
+    *width: 91.38327259903608%;
+  }
+  .row-fluid .span10 {
+    width: 82.87292817679558%;
+    *width: 82.81973668743387%;
+  }
+  .row-fluid .span9 {
+    width: 74.30939226519337%;
+    *width: 74.25620077583166%;
+  }
+  .row-fluid .span8 {
+    width: 65.74585635359117%;
+    *width: 65.69266486422946%;
+  }
+  .row-fluid .span7 {
+    width: 57.18232044198895%;
+    *width: 57.12912895262725%;
+  }
+  .row-fluid .span6 {
+    width: 48.61878453038674%;
+    *width: 48.56559304102504%;
+  }
+  .row-fluid .span5 {
+    width: 40.05524861878453%;
+    *width: 40.00205712942283%;
+  }
+  .row-fluid .span4 {
+    width: 31.491712707182323%;
+    *width: 31.43852121782062%;
+  }
+  .row-fluid .span3 {
+    width: 22.92817679558011%;
+    *width: 22.87498530621841%;
+  }
+  .row-fluid .span2 {
+    width: 14.3646408839779%;
+    *width: 14.311449394616199%;
+  }
+  .row-fluid .span1 {
+    width: 5.801104972375691%;
+    *width: 5.747913483013988%;
+  }
+  .row-fluid .offset12 {
+    margin-left: 105.52486187845304%;
+    *margin-left: 105.41847889972962%;
+  }
+  .row-fluid .offset12:first-child {
+    margin-left: 102.76243093922652%;
+    *margin-left: 102.6560479605031%;
+  }
+  .row-fluid .offset11 {
+    margin-left: 96.96132596685082%;
+    *margin-left: 96.8549429881274%;
+  }
+  .row-fluid .offset11:first-child {
+    margin-left: 94.1988950276243%;
+    *margin-left: 94.09251204890089%;
+  }
+  .row-fluid .offset10 {
+    margin-left: 88.39779005524862%;
+    *margin-left: 88.2914070765252%;
+  }
+  .row-fluid .offset10:first-child {
+    margin-left: 85.6353591160221%;
+    *margin-left: 85.52897613729868%;
+  }
+  .row-fluid .offset9 {
+    margin-left: 79.8342541436464%;
+    *margin-left: 79.72787116492299%;
+  }
+  .row-fluid .offset9:first-child {
+    margin-left: 77.07182320441989%;
+    *margin-left: 76.96544022569647%;
+  }
+  .row-fluid .offset8 {
+    margin-left: 71.2707182320442%;
+    *margin-left: 71.16433525332079%;
+  }
+  .row-fluid .offset8:first-child {
+    margin-left: 68.50828729281768%;
+    *margin-left: 68.40190431409427%;
+  }
+  .row-fluid .offset7 {
+    margin-left: 62.70718232044199%;
+    *margin-left: 62.600799341718584%;
+  }
+  .row-fluid .offset7:first-child {
+    margin-left: 59.94475138121547%;
+    *margin-left: 59.838368402492065%;
+  }
+  .row-fluid .offset6 {
+    margin-left: 54.14364640883978%;
+    *margin-left: 54.037263430116376%;
+  }
+  .row-fluid .offset6:first-child {
+    margin-left: 51.38121546961326%;
+    *margin-left: 51.27483249088986%;
+  }
+  .row-fluid .offset5 {
+    margin-left: 45.58011049723757%;
+    *margin-left: 45.47372751851417%;
+  }
+  .row-fluid .offset5:first-child {
+    margin-left: 42.81767955801105%;
+    *margin-left: 42.71129657928765%;
+  }
+  .row-fluid .offset4 {
+    margin-left: 37.01657458563536%;
+    *margin-left: 36.91019160691196%;
+  }
+  .row-fluid .offset4:first-child {
+    margin-left: 34.25414364640884%;
+    *margin-left: 34.14776066768544%;
+  }
+  .row-fluid .offset3 {
+    margin-left: 28.45303867403315%;
+    *margin-left: 28.346655695309746%;
+  }
+  .row-fluid .offset3:first-child {
+    margin-left: 25.69060773480663%;
+    *margin-left: 25.584224756083227%;
+  }
+  .row-fluid .offset2 {
+    margin-left: 19.88950276243094%;
+    *margin-left: 19.783119783707537%;
+  }
+  .row-fluid .offset2:first-child {
+    margin-left: 17.12707182320442%;
+    *margin-left: 17.02068884448102%;
+  }
+  .row-fluid .offset1 {
+    margin-left: 11.32596685082873%;
+    *margin-left: 11.219583872105325%;
+  }
+  .row-fluid .offset1:first-child {
+    margin-left: 8.56353591160221%;
+    *margin-left: 8.457152932878806%;
+  }
+  input,
+  textarea,
+  .uneditable-input {
+    margin-left: 0;
+  }
+  .controls-row [class*="span"] + [class*="span"] {
+    margin-left: 20px;
+  }
+  input.span12,
+  textarea.span12,
+  .uneditable-input.span12 {
+    width: 710px;
+  }
+  input.span11,
+  textarea.span11,
+  .uneditable-input.span11 {
+    width: 648px;
+  }
+  input.span10,
+  textarea.span10,
+  .uneditable-input.span10 {
+    width: 586px;
+  }
+  input.span9,
+  textarea.span9,
+  .uneditable-input.span9 {
+    width: 524px;
+  }
+  input.span8,
+  textarea.span8,
+  .uneditable-input.span8 {
+    width: 462px;
+  }
+  input.span7,
+  textarea.span7,
+  .uneditable-input.span7 {
+    width: 400px;
+  }
+  input.span6,
+  textarea.span6,
+  .uneditable-input.span6 {
+    width: 338px;
+  }
+  input.span5,
+  textarea.span5,
+  .uneditable-input.span5 {
+    width: 276px;
+  }
+  input.span4,
+  textarea.span4,
+  .uneditable-input.span4 {
+    width: 214px;
+  }
+  input.span3,
+  textarea.span3,
+  .uneditable-input.span3 {
+    width: 152px;
+  }
+  input.span2,
+  textarea.span2,
+  .uneditable-input.span2 {
+    width: 90px;
+  }
+  input.span1,
+  textarea.span1,
+  .uneditable-input.span1 {
+    width: 28px;
+  }
+}
+
+@media (max-width: 767px) {
+  body {
+    padding-right: 20px;
+    padding-left: 20px;
+  }
+  .navbar-fixed-top,
+  .navbar-fixed-bottom,
+  .navbar-static-top {
+    margin-right: -20px;
+    margin-left: -20px;
+  }
+  .container-fluid {
+    padding: 0;
+  }
+  .dl-horizontal dt {
+    float: none;
+    width: auto;
+    clear: none;
+    text-align: left;
+  }
+  .dl-horizontal dd {
+    margin-left: 0;
+  }
+  .container {
+    width: auto;
+  }
+  .row-fluid {
+    width: 100%;
+  }
+  .row,
+  .thumbnails {
+    margin-left: 0;
+  }
+  .thumbnails > li {
+    float: none;
+    margin-left: 0;
+  }
+  [class*="span"],
+  .uneditable-input[class*="span"],
+  .row-fluid [class*="span"] {
+    display: block;
+    float: none;
+    width: 100%;
+    margin-left: 0;
+    -webkit-box-sizing: border-box;
+       -moz-box-sizing: border-box;
+            box-sizing: border-box;
+  }
+  .span12,
+  .row-fluid .span12 {
+    width: 100%;
+    -webkit-box-sizing: border-box;
+       -moz-box-sizing: border-box;
+            box-sizing: border-box;
+  }
+  .row-fluid [class*="offset"]:first-child {
+    margin-left: 0;
+  }
+  .input-large,
+  .input-xlarge,
+  .input-xxlarge,
+  input[class*="span"],
+  select[class*="span"],
+  textarea[class*="span"],
+  .uneditable-input {
+    display: block;
+    width: 100%;
+    min-height: 30px;
+    -webkit-box-sizing: border-box;
+       -moz-box-sizing: border-box;
+            box-sizing: border-box;
+  }
+  .input-prepend input,
+  .input-append input,
+  .input-prepend input[class*="span"],
+  .input-append input[class*="span"] {
+    display: inline-block;
+    width: auto;
+  }
+  .controls-row [class*="span"] + [class*="span"] {
+    margin-left: 0;
+  }
+  .modal {
+    position: fixed;
+    top: 20px;
+    right: 20px;
+    left: 20px;
+    width: auto;
+    margin: 0;
+  }
+  .modal.fade {
+    top: -100px;
+  }
+  .modal.fade.in {
+    top: 20px;
+  }
+}
+
+@media (max-width: 480px) {
+  .nav-collapse {
+    -webkit-transform: translate3d(0, 0, 0);
+  }
+  .page-header h1 small {
+    display: block;
+    line-height: 20px;
+  }
+  input[type="checkbox"],
+  input[type="radio"] {
+    border: 1px solid #ccc;
+  }
+  .form-horizontal .control-label {
+    float: none;
+    width: auto;
+    padding-top: 0;
+    text-align: left;
+  }
+  .form-horizontal .controls {
+    margin-left: 0;
+  }
+  .form-horizontal .control-list {
+    padding-top: 0;
+  }
+  .form-horizontal .form-actions {
+    padding-right: 10px;
+    padding-left: 10px;
+  }
+  .media .pull-left,
+  .media .pull-right {
+    display: block;
+    float: none;
+    margin-bottom: 10px;
+  }
+  .media-object {
+    margin-right: 0;
+    margin-left: 0;
+  }
+  .modal {
+    top: 10px;
+    right: 10px;
+    left: 10px;
+  }
+  .modal-header .close {
+    padding: 10px;
+    margin: -10px;
+  }
+  .carousel-caption {
+    position: static;
+  }
+}
+
+@media (max-width: 979px) {
+  body {
+    padding-top: 0;
+  }
+  .navbar-fixed-top,
+  .navbar-fixed-bottom {
+    position: static;
+  }
+  .navbar-fixed-top {
+    margin-bottom: 20px;
+  }
+  .navbar-fixed-bottom {
+    margin-top: 20px;
+  }
+  .navbar-fixed-top .navbar-inner,
+  .navbar-fixed-bottom .navbar-inner {
+    padding: 5px;
+  }
+  .navbar .container {
+    width: auto;
+    padding: 0;
+  }
+  .navbar .brand {
+    padding-right: 10px;
+    padding-left: 10px;
+    margin: 0 0 0 -5px;
+  }
+  .nav-collapse {
+    clear: both;
+  }
+  .nav-collapse .nav {
+    float: none;
+    margin: 0 0 10px;
+  }
+  .nav-collapse .nav > li {
+    float: none;
+  }
+  .nav-collapse .nav > li > a {
+    margin-bottom: 2px;
+  }
+  .nav-collapse .nav > .divider-vertical {
+    display: none;
+  }
+  .nav-collapse .nav .nav-header {
+    color: #777777;
+    text-shadow: none;
+  }
+  .nav-collapse .nav > li > a,
+  .nav-collapse .dropdown-menu a {
+    padding: 9px 15px;
+    font-weight: bold;
+    color: #777777;
+    -webkit-border-radius: 3px;
+       -moz-border-radius: 3px;
+            border-radius: 3px;
+  }
+  .nav-collapse .btn {
+    padding: 4px 10px 4px;
+    font-weight: normal;
+    -webkit-border-radius: 4px;
+       -moz-border-radius: 4px;
+            border-radius: 4px;
+  }
+  .nav-collapse .dropdown-menu li + li a {
+    margin-bottom: 2px;
+  }
+  .nav-collapse .nav > li > a:hover,
+  .nav-collapse .dropdown-menu a:hover {
+    background-color: #f2f2f2;
+  }
+  .navbar-inverse .nav-collapse .nav > li > a,
+  .navbar-inverse .nav-collapse .dropdown-menu a {
+    color: #999999;
+  }
+  .navbar-inverse .nav-collapse .nav > li > a:hover,
+  .navbar-inverse .nav-collapse .dropdown-menu a:hover {
+    background-color: #111111;
+  }
+  .nav-collapse.in .btn-group {
+    padding: 0;
+    margin-top: 5px;
+  }
+  .nav-collapse .dropdown-menu {
+    position: static;
+    top: auto;
+    left: auto;
+    display: none;
+    float: none;
+    max-width: none;
+    padding: 0;
+    margin: 0 15px;
+    background-color: transparent;
+    border: none;
+    -webkit-border-radius: 0;
+       -moz-border-radius: 0;
+            border-radius: 0;
+    -webkit-box-shadow: none;
+       -moz-box-shadow: none;
+            box-shadow: none;
+  }
+  .nav-collapse .open > .dropdown-menu {
+    display: block;
+  }
+  .nav-collapse .dropdown-menu:before,
+  .nav-collapse .dropdown-menu:after {
+    display: none;
+  }
+  .nav-collapse .dropdown-menu .divider {
+    display: none;
+  }
+  .nav-collapse .nav > li > .dropdown-menu:before,
+  .nav-collapse .nav > li > .dropdown-menu:after {
+    display: none;
+  }
+  .nav-collapse .navbar-form,
+  .nav-collapse .navbar-search {
+    float: none;
+    padding: 10px 15px;
+    margin: 10px 0;
+    border-top: 1px solid #f2f2f2;
+    border-bottom: 1px solid #f2f2f2;
+    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+       -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+  }
+  .navbar-inverse .nav-collapse .navbar-form,
+  .navbar-inverse .nav-collapse .navbar-search {
+    border-top-color: #111111;
+    border-bottom-color: #111111;
+  }
+  .navbar .nav-collapse .nav.pull-right {
+    float: none;
+    margin-left: 0;
+  }
+  .nav-collapse,
+  .nav-collapse.collapse {
+    height: 0;
+    overflow: hidden;
+  }
+  .navbar .btn-navbar {
+    display: block;
+  }
+  .navbar-static .navbar-inner {
+    padding-right: 10px;
+    padding-left: 10px;
+  }
+}
+
+@media (min-width: 980px) {
+  .nav-collapse.collapse {
+    height: auto !important;
+    overflow: visible !important;
+  }
+}
+

--- /dev/null
+++ b/documents/css/bootstrap-responsive.min.css
@@ -1,1 +1,10 @@
+/*!
+ * Bootstrap Responsive v2.2.1
+ *
+ * Copyright 2012 Twitter, Inc
+ * Licensed under the Apache License v2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Designed and built with all the love in the world @twitter by @mdo and @fat.
+ */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.hidden{display:none;visibility:hidden}.visible-phone{display:none!important}.visible-tablet{display:none!important}.hidden-desktop{display:none!important}.visible-desktop{display:inherit!important}@media(min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-tablet{display:inherit!important}.hidden-tablet{display:none!important}}@media(max-width:767px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-phone{display:inherit!important}.hidden-phone{display:none!important}}@media(min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:30px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px}.span12{width:1170px}.span11{width:1070px}.span10{width:970px}.span9{width:870px}.span8{width:770px}.span7{width:670px}.span6{width:570px}.span5{width:470px}.span4{width:370px}.span3{width:270px}.span2{width:170px}.span1{width:70px}.offset12{margin-left:1230px}.offset11{margin-left:1130px}.offset10{margin-left:1030px}.offset9{margin-left:930px}.offset8{margin-left:830px}.offset7{margin-left:730px}.offset6{margin-left:630px}.offset5{margin-left:530px}.offset4{margin-left:430px}.offset3{margin-left:330px}.offset2{margin-left:230px}.offset1{margin-left:130px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%}.row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%}.row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%}.row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%}.row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%}.row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%}.row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%}.row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%}.row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%}.row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%}.row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%}.row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%}.row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%}.row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%}.row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%}.row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%}.row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%}.row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%}.row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%}.row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%}.row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%}.row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%}.row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%}.row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%}.row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%}.row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%}.row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%}.row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%}.row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%}.row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%}.row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%}.row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%}.row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%}.row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%}.row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:30px}input.span12,textarea.span12,.uneditable-input.span12{width:1156px}input.span11,textarea.span11,.uneditable-input.span11{width:1056px}input.span10,textarea.span10,.uneditable-input.span10{width:956px}input.span9,textarea.span9,.uneditable-input.span9{width:856px}input.span8,textarea.span8,.uneditable-input.span8{width:756px}input.span7,textarea.span7,.uneditable-input.span7{width:656px}input.span6,textarea.span6,.uneditable-input.span6{width:556px}input.span5,textarea.span5,.uneditable-input.span5{width:456px}input.span4,textarea.span4,.uneditable-input.span4{width:356px}input.span3,textarea.span3,.uneditable-input.span3{width:256px}input.span2,textarea.span2,.uneditable-input.span2{width:156px}input.span1,textarea.span1,.uneditable-input.span1{width:56px}.thumbnails{margin-left:-30px}.thumbnails>li{margin-left:30px}.row-fluid .thumbnails{margin-left:0}}@media(min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px}.span12{width:724px}.span11{width:662px}.span10{width:600px}.span9{width:538px}.span8{width:476px}.span7{width:414px}.span6{width:352px}.span5{width:290px}.span4{width:228px}.span3{width:166px}.span2{width:104px}.span1{width:42px}.offset12{margin-left:764px}.offset11{margin-left:702px}.offset10{margin-left:640px}.offset9{margin-left:578px}.offset8{margin-left:516px}.offset7{margin-left:454px}.offset6{margin-left:392px}.offset5{margin-left:330px}.offset4{margin-left:268px}.offset3{margin-left:206px}.offset2{margin-left:144px}.offset1{margin-left:82px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%}.row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%}.row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%}.row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%}.row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%}.row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%}.row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%}.row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%}.row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%}.row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%}.row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%}.row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%}.row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%}.row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%}.row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%}.row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%}.row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%}.row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%}.row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%}.row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%}.row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%}.row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%}.row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%}.row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%}.row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%}.row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%}.row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%}.row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%}.row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%}.row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%}.row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%}.row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%}.row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%}.row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%}.row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:710px}input.span11,textarea.span11,.uneditable-input.span11{width:648px}input.span10,textarea.span10,.uneditable-input.span10{width:586px}input.span9,textarea.span9,.uneditable-input.span9{width:524px}input.span8,textarea.span8,.uneditable-input.span8{width:462px}input.span7,textarea.span7,.uneditable-input.span7{width:400px}input.span6,textarea.span6,.uneditable-input.span6{width:338px}input.span5,textarea.span5,.uneditable-input.span5{width:276px}input.span4,textarea.span4,.uneditable-input.span4{width:214px}input.span3,textarea.span3,.uneditable-input.span3{width:152px}input.span2,textarea.span2,.uneditable-input.span2{width:90px}input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media(max-width:767px){body{padding-right:20px;padding-left:20px}.navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-right:-20px;margin-left:-20px}.container-fluid{padding:0}.dl-horizontal dt{float:none;width:auto;clear:none;text-align:left}.dl-horizontal dd{margin-left:0}.container{width:auto}.row-fluid{width:100%}.row,.thumbnails{margin-left:0}.thumbnails>li{float:none;margin-left:0}[class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{display:block;float:none;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="offset"]:first-child{margin-left:0}.input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto}.controls-row [class*="span"]+[class*="span"]{margin-left:0}.modal{position:fixed;top:20px;right:20px;left:20px;width:auto;margin:0}.modal.fade{top:-100px}.modal.fade.in{top:20px}}@media(max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0)}.page-header h1 small{display:block;line-height:20px}input[type="checkbox"],input[type="radio"]{border:1px solid #ccc}.form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left}.form-horizontal .controls{margin-left:0}.form-horizontal .control-list{padding-top:0}.form-horizontal .form-actions{padding-right:10px;padding-left:10px}.media .pu